beyond-rails 0.0.139

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/src/font/icomoon.eot +0 -0
  3. data/src/font/icomoon.svg +125 -0
  4. data/src/font/icomoon.ttf +0 -0
  5. data/src/font/icomoon.woff +0 -0
  6. data/src/img/black-cat.svg +15 -0
  7. data/src/img/cart.svg +16 -0
  8. data/src/img/china-flag.svg +16 -0
  9. data/src/img/ecpay.svg +12 -0
  10. data/src/img/family-mart.svg +13 -0
  11. data/src/img/fb-messenger.svg +12 -0
  12. data/src/img/fb.svg +10 -0
  13. data/src/img/hct.svg +16 -0
  14. data/src/img/hi-life.svg +23 -0
  15. data/src/img/line.svg +14 -0
  16. data/src/img/ok-mart.svg +9 -0
  17. data/src/img/pelican.svg +33 -0
  18. data/src/img/seven-eleven.svg +13 -0
  19. data/src/img/smilepay.svg +13 -0
  20. data/src/img/taiwan-flag.svg +17 -0
  21. data/src/js/components/Alert.js +23 -0
  22. data/src/js/components/Autocomplete.js +110 -0
  23. data/src/js/components/AutocompleteMenu.js +88 -0
  24. data/src/js/components/Btn.js +41 -0
  25. data/src/js/components/Checkbox.js +24 -0
  26. data/src/js/components/DateInput.js +74 -0
  27. data/src/js/components/DateMenu.js +370 -0
  28. data/src/js/components/DateTimeRanger.js +436 -0
  29. data/src/js/components/Datepicker.js +250 -0
  30. data/src/js/components/DatepickerBtnArrow.js +18 -0
  31. data/src/js/components/Dropdown.js +137 -0
  32. data/src/js/components/Menu.js +43 -0
  33. data/src/js/components/Modal.js +76 -0
  34. data/src/js/components/Navbar.js +47 -0
  35. data/src/js/components/Radio.js +24 -0
  36. data/src/js/components/SearchDropdown.js +339 -0
  37. data/src/js/components/Sidebar.js +56 -0
  38. data/src/js/components/Tabbox.js +229 -0
  39. data/src/js/components/TimeInput.js +71 -0
  40. data/src/js/components/TimeMenu.js +117 -0
  41. data/src/js/components/Toast.js +47 -0
  42. data/src/js/components/ToastItem.js +62 -0
  43. data/src/js/components/Tooltip.js +94 -0
  44. data/src/js/consts/createdComponents.js +1 -0
  45. data/src/js/consts/index.js +5 -0
  46. data/src/js/helpers/bind.js +53 -0
  47. data/src/js/helpers/dateEq.js +5 -0
  48. data/src/js/helpers/dateGt.js +5 -0
  49. data/src/js/helpers/dateLt.js +5 -0
  50. data/src/js/helpers/docReady.js +10 -0
  51. data/src/js/helpers/getFloatedTargetPos.js +250 -0
  52. data/src/js/helpers/getKey.js +14 -0
  53. data/src/js/helpers/isTouchDevice.js +3 -0
  54. data/src/js/helpers/msToS.js +3 -0
  55. data/src/js/helpers/promisify.js +9 -0
  56. data/src/js/helpers/range.js +7 -0
  57. data/src/js/helpers/supportDom.js +46 -0
  58. data/src/js/helpers/toPixel.js +3 -0
  59. data/src/js/helpers/unbindAll.js +6 -0
  60. data/src/js/index.js +47 -0
  61. data/src/js/jquery/bindAlertFn.js +13 -0
  62. data/src/js/jquery/bindAutocompleteFn.js +13 -0
  63. data/src/js/jquery/bindBtnFn.js +17 -0
  64. data/src/js/jquery/bindCheckboxFn.js +13 -0
  65. data/src/js/jquery/bindDateTimeRangerFn.js +14 -0
  66. data/src/js/jquery/bindDatepickerFn.js +14 -0
  67. data/src/js/jquery/bindDropdownFn.js +14 -0
  68. data/src/js/jquery/bindMenuFn.js +13 -0
  69. data/src/js/jquery/bindModalFn.js +14 -0
  70. data/src/js/jquery/bindNavbarFn.js +13 -0
  71. data/src/js/jquery/bindRadioFn.js +13 -0
  72. data/src/js/jquery/bindSearchDropdownFn.js +14 -0
  73. data/src/js/jquery/bindSidebarFn.js +13 -0
  74. data/src/js/jquery/bindTabboxFn.js +13 -0
  75. data/src/js/jquery/bindToastFn.js +6 -0
  76. data/src/js/jquery/bindTooltipFn.js +13 -0
  77. data/src/js/jquery/index.js +52 -0
  78. data/src/js/polyfills/classList.js +263 -0
  79. data/src/js/polyfills/elementDataset.js +3 -0
  80. data/src/js/polyfills/nodeContains.js +17 -0
  81. data/src/js/polyfills/nodeHasAttribute.js +5 -0
  82. data/src/js/polyfills/nodeRemove.js +19 -0
  83. data/src/sass/_beyond-sprockets.scss +1 -0
  84. data/src/sass/_beyond.scss +50 -0
  85. data/src/sass/_main.scss +141 -0
  86. data/src/sass/abstracts/_mixins.scss +129 -0
  87. data/src/sass/abstracts/_placeholders.scss +43 -0
  88. data/src/sass/abstracts/_variables.scss +355 -0
  89. data/src/sass/base/_background.scss +10 -0
  90. data/src/sass/base/_typography.scss +183 -0
  91. data/src/sass/components/_alert.scss +50 -0
  92. data/src/sass/components/_autocomplete.scss +29 -0
  93. data/src/sass/components/_avatar.scss +28 -0
  94. data/src/sass/components/_badge.scss +29 -0
  95. data/src/sass/components/_breadcrumb.scss +17 -0
  96. data/src/sass/components/_btn-group.scss +19 -0
  97. data/src/sass/components/_btn.scss +172 -0
  98. data/src/sass/components/_card.scss +183 -0
  99. data/src/sass/components/_checkbox.scss +99 -0
  100. data/src/sass/components/_date-input.scss +28 -0
  101. data/src/sass/components/_date-menu.scss +85 -0
  102. data/src/sass/components/_date-time-ranger.scss +21 -0
  103. data/src/sass/components/_datepicker.scss +3 -0
  104. data/src/sass/components/_dropdown.scss +144 -0
  105. data/src/sass/components/_form.scss +383 -0
  106. data/src/sass/components/_icon.scss +371 -0
  107. data/src/sass/components/_input.scss +48 -0
  108. data/src/sass/components/_list.scss +23 -0
  109. data/src/sass/components/_modal.scss +72 -0
  110. data/src/sass/components/_nav.scss +75 -0
  111. data/src/sass/components/_navbar.scss +211 -0
  112. data/src/sass/components/_pagination.scss +64 -0
  113. data/src/sass/components/_radio.scss +71 -0
  114. data/src/sass/components/_search-dropdown.scss +28 -0
  115. data/src/sass/components/_select.scss +54 -0
  116. data/src/sass/components/_sidebar.scss +35 -0
  117. data/src/sass/components/_spinner.scss +79 -0
  118. data/src/sass/components/_tabbox.scss +83 -0
  119. data/src/sass/components/_table.scss +65 -0
  120. data/src/sass/components/_tag.scss +43 -0
  121. data/src/sass/components/_time-input.scss +28 -0
  122. data/src/sass/components/_time-menu.scss +24 -0
  123. data/src/sass/components/_toast.scss +51 -0
  124. data/src/sass/components/_tooltip.scss +10 -0
  125. data/src/sass/img/arrow-dropdown.svg +4 -0
  126. data/src/sass/img/arrow-select-ex.svg +18 -0
  127. data/src/sass/img/arrow-select.svg +18 -0
  128. data/src/sass/layout/_border-util.scss +36 -0
  129. data/src/sass/layout/_col.scss +90 -0
  130. data/src/sass/layout/_container.scss +44 -0
  131. data/src/sass/layout/_flex-util.scss +18 -0
  132. data/src/sass/layout/_offset-util.scss +20 -0
  133. data/src/sass/layout/_sizing-util.scss +14 -0
  134. data/src/sass/layout/_spacing-util.scss +9 -0
  135. data/src/sass/layout/_visibility-util.scss +25 -0
  136. data/src/sass/vendor/_normalize.scss +578 -0
  137. data/src/sass/vendor/_turbolink.scss +5 -0
  138. metadata +235 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 592ae3dd345377a49b822b3a1223ea0a13077eee054748912e4d855e690f45d2
4
+ data.tar.gz: 9663ae1fc9d58aa550e97f709b743df9b70df6a86eac6ec3c63734aaeebe5c10
5
+ SHA512:
6
+ metadata.gz: 15ee01502197072d055ffec726fa09e11620b693ffa8c189daf064bfe7f78ddb29a741f43453a5ed1f54ec9c4494df6bd95e548e6d466a74ddf7cf08bcaa0981
7
+ data.tar.gz: 35caf6d1ea5c2852923e8c0f0e01f458933630d459f6400f98d01a7bac0b7cf850f46acb27e6869a8979975ab60d194aa5346472ca4ae78cd591f44ceb9ac273
Binary file
@@ -0,0 +1,125 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="icomoon" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xe900;" glyph-name="a" d="M0 960h1024v-1024h-1024v1024zM132 164.005h225.297v11.991l-45.090 55.057v12.582l75.16 108.597h226.228l47.892-108.597-2.762-8.649-67.13-59.682v-13.765h300.405v11.825l-62.068 57.689-4.768 9.862-233.569 495.085h-153.443l-247.137-492.364-9.785-12.582-49.23-55.057v-11.991zM428.961 457.797l83.039 176 63.125-174-146.164-2z" />
11
+ <glyph unicode="&#xe901;" glyph-name="arrow-down" d="M511.83-65.772h-1.087c-18.33 0.045-34.845 7.786-46.486 20.16-1.031 0.918-2.039 1.874-3.023 2.87l-442.531 448c-24.84 25.147-24.591 65.668 0.556 90.508s65.668 24.591 90.508-0.556l337.438-341.608 1.561 740.767c0.074 35.346 28.789 63.939 64.135 63.865s63.939-28.789 63.865-64.135l-1.563-741.713 339.057 342.85c24.854 25.132 65.376 25.358 90.508 0.503s25.358-65.376 0.503-90.508l-447-452c-12.754-12.896-29.633-19.234-46.442-19.004v0z" />
12
+ <glyph unicode="&#xe902;" glyph-name="arrow-left" d="M0 448.936c0 0.362 0 0.724 0 1.087 0.039 18.33 7.78 34.845 20.154 46.486 0.918 1.031 1.874 2.039 2.87 3.023l448 442.531c25.147 24.84 65.668 24.591 90.508-0.556s24.591-65.668-0.556-90.508l-341.608-337.438 740.767-1.561c35.346-0.074 63.939-28.789 63.865-64.135s-28.789-63.939-64.135-63.865l-741.713 1.563 342.85-339.057c25.132-24.854 25.358-65.376 0.503-90.508s-65.376-25.358-90.508-0.503l-452 447c-12.896 12.754-19.234 29.633-18.998 46.442v0z" />
13
+ <glyph unicode="&#xe903;" glyph-name="arrow-right" d="M1023.002 449.402c0.236-16.776-6.089-33.622-18.961-46.351l-451.119-446.129c-25.083-24.806-65.526-24.581-90.332 0.502s-24.581 65.526 0.502 90.332l342.182 338.396-740.267-1.56c-35.277-0.074-63.935 28.463-64.010 63.741s28.464 63.935 63.741 64.010l739.323 1.558-340.942 336.78c-25.098 24.791-25.346 65.234-0.555 90.332s65.234 25.346 90.332 0.555l447.127-441.668c0.994-0.982 1.949-1.988 2.865-3.017 12.35-11.619 20.076-28.101 20.115-46.396 0-0.362 0-0.724 0-1.085z" />
14
+ <glyph unicode="&#xe904;" glyph-name="arrow-up" d="M512.17 960.241h1.087c18.33-0.045 34.845-7.786 46.486-20.16 1.031-0.918 2.039-1.874 3.023-2.87l442.531-448c24.84-25.147 24.591-65.668-0.556-90.508s-65.668-24.591-90.508 0.556l-337.438 341.608-1.561-740.767c-0.074-35.346-28.789-63.939-64.135-63.865s-63.939 28.789-63.865 64.135l1.563 741.713-339.057-342.85c-24.854-25.132-65.376-25.358-90.508-0.503s-25.358 65.376-0.503 90.508l447 452c12.754 12.896 29.633 19.234 46.442 19.004v0z" />
15
+ <glyph unicode="&#xe905;" glyph-name="bank" d="M20 0h984c11.046 0 20-8.954 20-20v-24c0-11.046-8.954-20-20-20h-984c-11.046 0-20 8.954-20 20v24c0 11.046 8.954 20 20 20zM110 124h804c16.569 0 30-13.431 30-30v-32c0-16.569-13.431-30-30-30h-804c-16.569 0-30 13.431-30 30v32c0 16.569 13.431 30 30 30zM896.931 546.694l17.069-390.694h-164l17.069 390.694h-13.069c-6.627 0-12 5.373-12 12v17.306c0 6.627 5.373 12 12 12h156c6.627 0 12-5.373 12-12v-17.306c0-6.627-5.373-12-12-12h-13.069zM576.931 546.694l17.069-390.694h-164l17.069 390.694h-13.069c-6.627 0-12 5.373-12 12v17.306c0 6.627 5.373 12 12 12h156c6.627 0 12-5.373 12-12v-17.306c0-6.627-5.373-12-12-12h-13.069zM256.931 546.694l17.069-390.694h-164l17.069 390.694h-13.069c-6.627 0-12 5.373-12 12v17.306c0 6.627 5.373 12 12 12h156c6.627 0 12-5.373 12-12v-17.306c0-6.627-5.373-12-12-12h-13.069zM512 960l512-340h-1024l512 340zM527.971 686.284c8.096 0.452 15.59 1.41 22.481 2.875 9.966 2.118 18.461 5.161 25.485 9.128s12.427 8.839 16.209 14.616c3.782 5.777 5.673 12.363 5.673 19.758 0 6.933-1.501 13.153-4.503 18.661s-7.564 10.457-13.688 14.848c-6.124 4.391-13.748 8.319-22.873 11.786s-19.811 6.625-32.059 9.475c-5.883 1.618-11.257 3.274-16.119 4.968s-9.005 3.505-12.427 5.431c-3.422 1.926-6.064 4.006-7.925 6.239s-2.792 4.737-2.792 7.51c0 2.696 0.6 5.238 1.801 7.626s3.002 4.448 5.403 6.182c2.401 1.733 5.433 3.1 9.095 4.102s8.015 1.502 13.058 1.502c5.403 0 10.026-0.597 13.868-1.791s6.994-2.85 9.455-4.968c2.461-2.118 4.262-4.66 5.403-7.626s1.711-6.22 1.711-9.764h52.771c0 7.626-1.921 14.616-5.763 20.971s-9.335 11.824-16.48 16.407c-7.144 4.583-15.789 8.165-25.935 10.746-7.092 1.804-14.785 2.977-23.079 3.52v12.698c0 8.183-6.601 14.816-14.743 14.816s-14.743-6.633-14.743-14.816v-13.288c-5.288-0.567-10.34-1.389-15.155-2.468-10.146-2.272-18.911-5.45-26.295-9.532s-13.118-9.032-17.2-14.848c-4.082-5.816-6.124-12.228-6.124-19.238 0-7.318 2.011-13.731 6.034-19.238s9.425-10.361 16.209-14.559c6.784-4.198 14.648-7.838 23.594-10.919s18.341-5.816 28.186-8.204c8.285-2.157 14.919-4.198 19.902-6.124s8.825-3.909 11.527-5.951c2.702-2.041 4.473-4.217 5.313-6.528s1.261-4.93 1.261-7.857c0-2.696-0.48-5.2-1.441-7.51s-2.551-4.294-4.773-5.951c-2.221-1.656-5.103-2.966-8.645-3.929s-7.835-1.444-12.877-1.444c-6.244 0-11.707 0.481-16.39 1.444s-8.615 2.542-11.797 4.737c-3.182 2.195-5.553 5.065-7.114 8.608s-2.341 7.857-2.341 12.941h-53.131c0-9.552 2.611-17.794 7.835-24.727s12.097-12.671 20.622-17.216c8.525-4.545 18.221-7.915 29.087-10.11 4.937-0.998 9.918-1.768 14.942-2.313v-12.146c0-8.183 6.601-14.816 14.743-14.816s14.743 6.633 14.743 14.816v11.468z" />
16
+ <glyph unicode="&#xe906;" glyph-name="bell-alt" d="M513.258-64c92.364 0 167.239 57.097 167.239 127.53v24.1h-334.478v-24.1c0-70.433 74.876-127.53 167.239-127.53zM596.81 25.334c-0.989-0.822-2.012-1.637-3.071-2.444-20.059-15.296-48.884-24.593-80.481-24.593s-60.422 9.297-80.481 24.593c-1.059 0.807-2.082 1.622-3.071 2.444h167.104zM991.735 312.694c-50.857 44.672-114.021 15.943-114.021 233.016 0 159.403-131.028 299.559-305.516 316.882-45.762 4.543-89.172 4.543-120.398 0-173.33-25.219-305.516-157.479-305.516-316.882 0-217.073-63.184-188.344-114.041-233.016-68.912-60.531-20.073-164.516 77.579-164.516h804.332c97.458 0 146.631 103.862 77.579 164.516zM942.219 240.067c-3.818-8.084-13.391-14.018-28.064-14.018h-804.332c-14.719 0-24.246 5.912-28.045 13.981-2.57 5.458-1.786 9.451 4.53 14.999 2.406 2.113 5.633 4.259 11.385 7.437 2.213 1.223 3.122 1.708 9.258 4.954 19.089 10.099 29.768 16.556 42.989 27.516 18.494 15.332 33.451 34.115 45.006 57.284 22.071 44.254 31.79 104.868 31.79 193.491 0 117.59 99.699 219.896 237.024 239.876 23.823 3.466 60.696 3.466 100.231-0.459 132.285-13.133 233.274-118.863 233.274-239.417 0-88.622 9.716-149.233 31.779-193.484 11.552-23.169 26.507-41.954 44.997-57.286 13.22-10.962 23.9-17.42 42.986-27.519 6.149-3.254 7.061-3.74 9.279-4.966 5.739-3.172 8.962-5.316 11.365-7.427 6.347-5.575 7.119-9.518 4.548-14.962zM461.945 855.587c-2.397 11.553-0.605 21.691 5.66 31.863 6.845 11.114 24.692 18.040 43.036 18.040 19.183 0 36.597-5.212 45.659-14.674 6.026-6.292 9.926-19.582 9.926-40.767h54.51c0 33.945-7.764 60.401-25.068 78.469-21.207 22.144-52.402 31.482-85.027 31.482-14.636 0-30.511-2.708-44.919-8.3-18.724-7.266-34.281-19.024-44.53-35.665-13.548-21.998-17.849-46.323-12.619-71.524l53.372 11.076z" />
17
+ <glyph unicode="&#xe907;" glyph-name="bell" d="M513-62c70.14 0 127 56.86 127 127v24h-254v-24c0-70.14 56.86-127 127-127zM416.050 849.088h-2.050v14.912c0 44.183 44.772 96 100 96s100-51.817 100-96v-14.227c127.808-38.070 218.8-164.313 218.8-305.773 0-216.236 55.268-187.618 99.768-232.118 60.42-60.42 17.394-163.882-67.882-163.882h-703.79c-85.446 0-128.18 103.584-67.882 163.882 44.5 44.5 99.786 15.882 99.786 232.118 0 143.006 93.814 264.082 223.25 305.088zM474 861.482c22.705 2.292 50.554 2.078 80-0.643v3.161c0 8.486-2.129 21.429-8.868 30.512-7.295 9.833-19.648 15.488-31.132 15.488-11.222 0-23.364-5.309-30.628-14.818-7.036-9.211-9.372-22.486-9.372-31.182v-2.518z" />
18
+ <glyph unicode="&#xe908;" glyph-name="birthday-cake" d="M778.143 482.486l0.857 199.651 63.999-0.275-0.876-204.103c52.556-4.31 104.609-9.645 155.819-16.003l28.057-3.484v-522.273h-1026v522.080l27.842 3.649c49.923 6.542 101.189 12.001 153.43 16.377l-0.272 203.851 64 0.085 0.266-199.149c76.935 5.080 155.608 7.876 234.884 8.387l0.85 238.833 64-0.228-0.849-238.687c78.067-0.703 156.423-3.607 233.993-8.713zM64 229.482v-229.482h898v217.366c-24.34-23.442-53.718-35.683-86.734-35.683-26.903 0-50.802 9.79-73.083 27.573-15.421 12.308-27.166 25.177-47.468 50.072-0.898 1.101-3.936 4.832-4.126 5.064-1.615 1.982-2.848 3.491-4.041 4.946-26.882 32.767-41.23 44.082-55.65 44.082-14.835 0-28.94-11.708-56.991-47.269-0.738-0.936-1.497-1.9-2.499-3.173-0.017-0.022-1.968-2.502-2.531-3.217-19.966-25.371-30.822-37.771-45.555-50.065-21.611-18.033-44.912-28.014-71.323-28.014-26.085 0-49.699 9.723-72.353 27.304-15.695 12.18-28.265 25.274-49.309 49.658-0.841 0.974-6.325 7.341-7.901 9.164-2.953 3.416-5.347 6.16-7.626 8.733-23.511 26.548-37.763 36.879-48.96 36.879-10.184 0-20.525-9.627-40.602-40.12-1.511-2.295-6.769-10.343-7.395-11.297-16.221-24.735-26.7-38.545-40.85-51.412-20.46-18.605-43.917-28.909-71.208-28.909-38.686 0-72.536 16.375-101.797 47.798zM64 351.726c30.493-73.098 64.869-106.043 101.797-106.043 19.226 0 33.084 12.602 58.539 51.418 0.57 0.869 5.873 8.986 7.459 11.395 13.673 20.767 22.916 32.959 34.633 43.867 17.227 16.037 36.795 25.059 59.423 25.059 20.24 0 38.881-7.224 56.815-20.224 12.963-9.397 24.879-21.084 40.057-38.223 2.473-2.793 5.025-5.718 8.132-9.312 1.621-1.875 7.127-8.268 7.933-9.201 35.024-40.582 53.316-54.777 73.211-54.777 19.027 0 34.549 12.951 66.585 53.659 0.557 0.707 2.502 3.18 2.524 3.208 1.017 1.293 1.792 2.277 2.551 3.239 17.769 22.526 28.567 34.744 42.16 46.027 19.826 16.457 41.098 25.605 65.080 25.605 23.058 0 43.736-8.48 63.159-23.797 13.588-10.716 24.977-22.978 41.971-43.693 1.246-1.519 2.52-3.079 4.176-5.111 0.201-0.247 3.228-3.964 4.11-5.045 33.174-40.68 49.979-54.093 70.952-54.093 36.417 0 65.572 31.596 86.734 104.226v51.703c-295.381 34.284-617.192 34.334-898 0.175v-50.062zM513 800c-35.899 0-65 21.938-65 49 0 18.041 21.667 55.041 65 111 43.333-55.959 65-92.959 65-111 0-27.062-29.101-49-65-49zM213 746c-35.899 0-65 21.938-65 49 0 18.041 21.667 55.041 65 111 43.333-55.959 65-92.959 65-111 0-27.062-29.101-49-65-49zM811 746c-35.899 0-65 21.938-65 49 0 18.041 21.667 55.041 65 111 43.333-55.959 65-92.959 65-111 0-27.062-29.101-49-65-49z" />
19
+ <glyph unicode="&#xe909;" glyph-name="black-cat" d="M396.882 264.261l65.116 65.078 24.785-126.313-42.251-16.519-47.651 77.755zM181.34 422.432c6.205-5.478 13.523-10.14 21.952-13.986s17.665-6.737 27.708-8.672c11.714-1.186 21.2-1.186 28.46 0 10.889 1.779 21.384 4.411 36.108 12.522s16.31 10.375 27.292 22.402c7.322 8.018 13.977 17.8 19.966 29.348 12.737 0.606 23.695 3.254 32.875 7.942 13.77 7.032 11.227 5.334 23.31 14.477s10.39 9.143 20.698 19.674c6.872 7.020 13.429 18.096 19.671 33.226h262.298l219.089 91.022 13.332-34.183-200.376-133.615 69.033-241.369-33.833-23.987-109.242 112.513-92.836-123.239-38.053 22.006 38.053 140.991h-97.246l-166.879-162.997-43.26 31.703 33.712 57.205-73.408-43.326-12.030 16.033 6.239 15.184-12.949-5.559-12.127 15.080 32.976 39.511v39.981l-36.738 12.631-2.446 19.224 20.603 5.56-38.838 8.261v18.835l16.886 5.602zM318.595 406.899v-88.772l26.792 37.659-26.792 51.113zM131.563 568.858l71.674-55.183 82.554 2.44 67.045 33.114c0.522-8.91-0.022-17.731-1.633-26.461-2.416-13.096-2.967-18.27-9.848-35.77s-11.571-26.469-18.187-35.53c-6.616-9.061-9.604-11.501-16.045-16.973s-15.232-10.179-21.331-13.901c-4.066-2.481-12.707-5.394-25.923-8.738-10.661-1.616-20.628-1.616-29.899 0s-25.946 7.776-32.496 11.815c-2.949 1.819-15.175 11.537-20.037 16.706-5.936 6.312-12.255 14.474-15.283 19.307-8.264 13.186-5.675 10.137-12.129 23.584-4.302 8.965-8.308 20.512-12.017 34.642l-6.444 50.949zM172.5 477.067c0-1.943 0.272-3.417 1.468-4.66 0.798-0.829 1.91-1.604 3.337-2.327 0.539-0.229 1.332-0.343 2.381-0.343 1.573 0 3.795 0.967 7.146 0.897s6.18-0.294 9.843-0.897c3.663-0.603 3.656-0.808 8.509-1.984s6.753-2.566 8.029-3.666c1.275-1.1 1.661-1.1 3.852-1.1 1.461 0 2.687 0.367 3.678 1.1 2.357 2.037 3.536 3.439 3.536 4.207 0 1.152 1.158 3.325-1.824 6.178s-3.732 3.625-10.032 6.096c-4.2 1.648-8.334 2.805-12.401 3.473-3.568 0.631-7.624 0.947-12.168 0.947s-7.799-0.316-9.767-0.947c-1.55-0.797-2.737-1.666-3.561-2.606-1.236-1.411-2.025-2.424-2.025-4.368zM308.030 475.582c0 1.982-0.148 3.286-1.485 4.725-0.891 0.96-2.094 1.862-3.608 2.706-2.742 1.184-6.569 1.777-11.482 1.777s-9.023-0.322-12.331-0.967c-5.117-1.488-9.946-3.073-14.487-4.754-6.813-2.521-6.977-2.334-10.201-5.244-2.15-1.94-2.858-4.459-2.127-7.557l2.127-3.039c1.072-0.748 3.931-2.439 5.511-2.439 2.369 0 2.941 0.248 4.165 1.122s3.391 2.050 8.681 3.739c5.29 1.689 5.239 1.408 9.2 2.024s7.020 0.844 10.643 0.916c3.623 0.071 6.027-0.916 7.727-0.916 1.134 0 1.992 0.117 2.574 0.35 1.391 0.19 2.593 0.982 3.608 2.374 1.523 2.089 1.485 3.2 1.485 5.183zM142.527 732.377l90.126-77.022 123.961 1.746 108.243 78.761c1.202-17.302 1.202-34.998 0-53.088-1.804-27.134-4.163-38.842-7.52-54.458s-15.029-56.919-20.577-71.161c-5.548-14.242-9.102-20.026-23.054-39.26s-23.668-24.732-32.135-30.044c-5.644-3.541-16.217-7.303-31.718-11.285 5.503 13.596 9.448 27.373 11.835 41.329s3.581 30.226 3.582 48.808l-85.478-40.087h-71.655c-13.458 10.179-24.010 21.542-31.658 34.088s-13.597 28.255-17.848 47.128c-4.943 17.781-8.594 35.791-10.953 54.030s-4.076 41.744-5.152 70.515zM203.455 599.11l1.626-6.093c1.029-1.159 2.464-2.243 4.306-3.254 0.695-0.32 1.719-0.48 3.071-0.48 2.029 0 4.897 1.353 9.22 1.255s7.973-0.411 12.7-1.255c4.726-0.844 4.718-1.13 10.978-2.774s8.713-3.588 10.359-5.126c1.646-1.538 2.144-1.538 4.971-1.538 1.885 0 3.466 0.513 4.745 1.538 3.042 2.848 4.562 4.809 4.562 5.883 0 1.611 1.494 4.649-2.354 8.638s-4.815 5.069-12.944 8.525c-5.419 2.304-10.753 3.923-16 4.856-4.604 0.882-9.837 1.324-15.7 1.324s-10.063-0.441-12.602-1.324c-2-1.114-3.531-2.329-4.595-3.645-1.595-1.973-2.344-3.814-2.344-6.531zM386.24 596.95c0 2.723-0.032 5.526-1.68 7.503-1.098 1.318-2.581 2.557-4.447 3.717-3.379 1.627-8.096 2.44-14.151 2.44s-11.12-0.443-15.197-1.328c-6.306-2.044-12.258-4.22-17.855-6.529-8.396-3.463-8.401-4.444-12.375-8.441-2.649-2.665-3.589-5.711-2.818-9.139l4.512-5.983c1.321-1.027 2.954-1.541 4.901-1.541 2.92 0 3.625 0.341 5.134 1.541s4.18 2.816 10.699 5.136c6.519 2.32 6.457 1.934 11.339 2.779s8.651 1.159 13.117 1.257c4.465 0.098 7.428-1.257 9.523-1.257 1.397 0 2.455 0.16 3.172 0.481 1.714 0.261 3.196 1.348 4.447 3.261l1.68 6.105zM74.904 711.21c-7.113-11.088-15.38-25.877-24.803-44.367s-16.961-37.234-22.615-56.234c-8.227-30.378-13.819-52.080-16.776-65.107-4.436-19.54-4.449-28.673-5.938-39.406-0.993-7.156-2.584-26.521-4.772-58.097 0.63-25.286 2.22-47.846 4.772-67.678s6.361-39.249 11.43-58.251c9.718-32.509 20.037-61.227 30.957-86.153s23.633-48.782 38.139-71.568c21.208-27.666 40.191-50.551 56.948-68.653 25.136-27.154 28.501-30.079 56.818-52.796 18.878-15.145 39.051-28.924 60.518-41.336 20.985-11.209 44.475-21.661 70.47-31.354 38.993-14.54 43.056-15.833 77.322-23.755 22.844-5.281 46.394-8.766 70.649-10.455h71.253c21.597 3.142 45.432 7.785 71.505 13.932s50.613 12.906 73.619 20.279c37.251 15.392 63.023 27.807 77.314 37.243s40.040 28.214 77.244 56.334c21.554 19.935 41.015 40.504 58.382 61.705s32.397 42.737 45.089 64.606c19.492 38.85 33.905 70.909 43.241 96.177s16.081 50.472 20.234 75.615c2.881 15.684 4.848 34.259 5.901 55.723s1.054 42.962 0 64.494c-2.837 30.292-6.464 55.724-10.88 76.294-2.944 13.713-5.809 25.233-8.595 34.558l-58.45-38.557c6.286-17.728 10.614-31.656 12.986-41.782 5.336-22.785 6.806-34.078 7.53-45.822s1.307-43.671 0-54.608c-1.307-10.938-7.53-32.821-11.158-42.981s-8.782-27.395-22.624-54.070c-13.842-26.674-15.254-29.691-32.662-52.473s-19.299-24.455-41.012-43.942c-21.713-19.487-26.092-21.299-49.011-36.852s-18.248-14.549-48.878-29.577c-30.63-15.028-31.829-15.631-66.033-26.802s-34.691-10.87-72.238-18.357c-25.032-4.992-50.758-8.804-77.178-11.438-22.292-1.976-46.649-1.976-73.071 0-16.056 1.201-51.923 4.896-79.879 11.438-46.994 10.997-51.983 13.26-90.053 27.907s-37.927 14.595-70.748 33.963c-32.821 19.368-33.363 20.735-58.946 42.571s-24.699 21.349-44.961 46.116c-20.262 24.767-20.119 25.203-34.627 51.166s-16.152 31.059-23.555 52.953c-7.403 21.895-6.213 23.355-9.358 44.389s-3.587 20.071-3.587 42.203c0 22.132 1.345 30.28 3.587 44.267s5.941 27.61 9.358 39.73c3.416 12.12 7.536 23.94 17.535 42.284 6.666 12.23 7.715 15.834 17.439 27.481-7.612 23.336-13.425 42.896-17.439 58.68s-7.478 32.572-10.394 50.365zM248.983 735.863c15.222 10.602 28.089 16.429 33.773 18.915 33.726 14.75 44.974 18.171 76.815 26.898s62.714 14.227 74.070 15.985c11.355 1.758 38.693 4.908 78.359 4.908s38.655-1.18 65.995-4.908c27.34-3.728 47.978-6.714 82.229-15.985s44.652-12.716 76.201-26.898c31.549-14.182 45.635-20.366 76.586-41.785 13.756-9.52 36.369-27.849 67.838-54.989l80.561 29.923c-6.472 14.768-17.576 32.939-33.31 54.513s-33.47 42.944-53.206 64.109c-20.075 20.132-40.703 37.983-61.883 53.554s-44.704 30.179-70.573 43.824c-29.090 13.338-54.89 23.63-77.402 30.879-33.767 10.872-48.969 14.265-76.92 18.81-18.634 3.030-41.544 5.158-68.73 6.385h-42.649c-16.791-0.083-40.818-3.866-72.084-11.348-46.898-11.223-69.715-20.695-87.087-26.742s-48.841-21.39-80.701-42.391c-31.86-21.001-55.022-39.465-69.484-55.391l81.6-88.266z" />
20
+ <glyph unicode="&#xe90a;" glyph-name="bolt-alt" d="M122 960h530.602l-97.492-271.702 348.664-2-516-752.298 70.141 474.984h-249.695z" />
21
+ <glyph unicode="&#xe90b;" glyph-name="bolt" d="M158.69 960h529.567l-97.302-271.173 347.984-1.996-514.994-750.831 70.004 474.058h-249.209l-86.051 549.942zM270.661 864.187l56.067-358.316h278.222l-25.703-174.061 178.502 260.246-302.688 1.736 97.023 270.395h-281.423z" />
22
+ <glyph unicode="&#xe90c;" glyph-name="brush" d="M895.693 940.743c39.535 21.353 73.331 18.001 101.388-10.056s31.529-61.973 10.415-101.747c-143.315-175.012-239.296-288.064-287.944-339.154-72.972-76.635-157.854-139.003-163.736-133.121-6.569 6.569-118.875 118.875-132.999 132.999 0 0-26.317 11.172 133.364 163.493 106.454 101.547 219.625 197.409 339.512 287.586zM354.82 430.539c43.447-43.447 87.986-87.092 133.617-130.937 0.461-110.050-52.691-190.068-159.457-240.055s-216.426 4.111-328.98 162.293c77.634-4.996 125.092 4.308 142.375 27.91 26.195 35.773 7.996 84.241 73.273 146.441 36.047 34.348 107.648 34.348 139.172 34.348z" />
23
+ <glyph unicode="&#xe90d;" glyph-name="calculator" d="M172 960h684c44.183 0 80-35.817 80-80v-864c0-44.183-35.817-80-80-80h-684c-44.183 0-80 35.817-80 80v864c0 44.183 35.817 80 80 80zM212 860c-11.046 0-20-8.954-20-20v-272c0-11.046 8.954-20 20-20h604c11.046 0 20 8.954 20 20v272c0 11.046-8.954 20-20 20h-604zM700 448c-11.046 0-20-8.954-20-20v-372c0-11.046 8.954-20 20-20h116c11.046 0 20 8.954 20 20v372c0 11.046-8.954 20-20 20h-116zM270 292c43.078 0 78 34.922 78 78s-34.922 78-78 78c-43.078 0-78-34.922-78-78s34.922-78 78-78zM512 292c43.078 0 78 34.922 78 78s-34.922 78-78 78c-43.078 0-78-34.922-78-78s34.922-78 78-78zM512 36c43.078 0 78 34.922 78 78s-34.922 78-78 78c-43.078 0-78-34.922-78-78s34.922-78 78-78zM270 36c43.078 0 78 34.922 78 78s-34.922 78-78 78c-43.078 0-78-34.922-78-78s34.922-78 78-78z" />
24
+ <glyph unicode="&#xe90e;" glyph-name="caret-square-up" d="M40 960h944c22.091 0 40-17.909 40-40v-944c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v944c0 22.091 17.909 40 40 40zM96 864v-832h832v832h-832zM511.353 594l-227.353-224h456l-228.647 224z" />
25
+ <glyph unicode="&#xe90f;" glyph-name="cart-empty" d="M285.155-62.69c45.801 0 82.93 37.129 82.93 82.93s-37.129 82.93-82.93 82.93c-45.801 0-82.93-37.129-82.93-82.93s37.129-82.93 82.93-82.93zM285.155-5c-13.939 0-25.239 11.3-25.239 25.239s11.3 25.239 25.239 25.239c13.939 0 25.239-11.3 25.239-25.239s-11.3-25.239-25.239-25.239zM834.366-62.69c45.801 0 82.93 37.129 82.93 82.93s-37.129 82.93-82.93 82.93c-45.801 0-82.93-37.129-82.93-82.93s37.129-82.93 82.93-82.93zM834.366-5c-13.939 0-25.239 11.3-25.239 25.239s11.3 25.239 25.239 25.239c13.939 0 25.239-11.3 25.239-25.239s-11.3-25.239-25.239-25.239zM344.207 376.617l494.438 36.317c57.625 235.105 90.536 362.682 98.734 382.73s22.424 29.118 42.677 27.209c30.087 0 50.989-29.948 40.613-58.189l-110.845-407.69c-5.857-15.941-20.497-26.981-37.434-28.229l-511.223-37.664c-0.181-4.343-2.432-10.724-6.752-19.143l-16.948-71.408h535.096c23.896 0 43.268-19.372 43.268-43.268s-19.372-43.268-43.268-43.268h-624.31c-33.274 0-32.462 39.597-15.875 68.442l40.612 105.019-114.469 585.989h-115.254c-23.896 0-43.268 19.372-43.268 43.268s19.372 43.268 43.268 43.268h148.966c19.822 0 37.108-13.469 41.955-32.689l110.018-550.694zM579 852l-21 108h80l-17.727-108zM782.492 781.852l-34.043 22.74 56.936 98.147 68.229-41zM417.26 767.943l-78.875 75.796 76.229 51 38.579-101.874z" />
26
+ <glyph unicode="&#xe910;" glyph-name="cart" d="M285.155-62.69c45.801 0 82.93 37.129 82.93 82.93s-37.129 82.93-82.93 82.93c-45.801 0-82.93-37.129-82.93-82.93s37.129-82.93 82.93-82.93zM285.155-5c-13.939 0-25.239 11.3-25.239 25.239s11.3 25.239 25.239 25.239c13.939 0 25.239-11.3 25.239-25.239s-11.3-25.239-25.239-25.239zM834.366-62.69c45.801 0 82.93 37.129 82.93 82.93s-37.129 82.93-82.93 82.93c-45.801 0-82.93-37.129-82.93-82.93s37.129-82.93 82.93-82.93zM834.366-5c-13.939 0-25.239 11.3-25.239 25.239s11.3 25.239 25.239 25.239c13.939 0 25.239-11.3 25.239-25.239s-11.3-25.239-25.239-25.239zM255.053 822.873h725.003c30.087 0 50.989-29.948 40.613-58.189l-110.845-407.69c-5.857-15.941-20.497-26.981-37.434-28.229l-511.223-37.664c-0.181-4.343-2.432-10.724-6.752-19.143l-16.948-71.408h535.096c23.896 0 43.268-19.372 43.268-43.268s-19.372-43.268-43.268-43.268h-624.31c-33.274 0-32.462 39.597-15.875 68.442l40.612 105.019-114.469 585.989h-115.254c-23.896 0-43.268 19.372-43.268 43.268s19.372 43.268 43.268 43.268h148.966c19.822 0 37.108-13.469 41.955-32.689l20.865-104.438zM272.341 736.338l31.956-159.955 146.87 4.357-18.837 144.756c-0.481 3.7-0.425 7.35 0.1 10.842h-160.088zM315.76 519.008l28.446-142.387 132.255 9.744-17.813 136.882-142.889-4.239zM533.756 390.586l142.928 10.53 2.509 128.674-162.923-4.833 17.486-134.37zM488.755 736.338c0.038-0.254 0.074-0.51 0.107-0.766l19.926-153.122 171.531 5.089 2.8 143.577c0.035 1.78 0.185 3.524 0.444 5.222h-194.807zM739.55 736.338c0.334-2.194 0.487-4.46 0.442-6.775l-2.736-140.335 145.544 4.318 35.264 142.793h-178.513zM868.441 535.404l-132.312-3.925-2.46-126.164 104.547 7.703 30.224 122.387z" />
27
+ <glyph unicode="&#xe911;" glyph-name="chart-bar" d="M59.793-63.881c-1.253-0.079-2.518-0.119-3.793-0.119-30.928 0-56 23.617-56 52.75v738.5c0 29.133 25.072 52.75 56 52.75s56-23.617 56-52.75v-679.25h848c35.346 0 64-25.072 64-56s-28.654-56-64-56h-896c-1.414 0-2.816 0.040-4.207 0.119zM828.528 428c38.651 0 70.13-7.972 70.136-17.351v-235.641c-0.014-9.396-31.415-17.007-70.136-17.007s-70.1 7.623-70.088 17.019v235.629c0 8.543 31.437 17.351 70.088 17.351zM562.308 888c38.651 0 70.13-7.972 70.136-17.351v-695.641c-0.014-9.396-31.415-17.007-70.136-17.007s-70.1 7.623-70.088 17.019v695.629c0 8.543 31.437 17.351 70.088 17.351zM296.088 628c38.651 0 70.13-7.972 70.136-17.351v-435.641c-0.014-9.396-31.415-17.007-70.136-17.007s-70.1 7.623-70.088 17.019v435.629c0 8.543 31.437 17.351 70.088 17.351z" />
28
+ <glyph unicode="&#xe912;" glyph-name="check-circle" d="M512-64c-282.77 0-512 229.23-512 512s229.23 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM260.317 457.541c-24.599 25.382-65.117 26.016-90.499 1.417s-26.016-65.117-1.417-90.499l186.172-192.094c25.627-26.442 68.226-25.858 93.118 1.276l357.125 389.281c23.895 26.046 22.15 66.531-3.896 90.426s-66.531 22.15-90.426-3.896l-311.242-339.267-138.936 143.356z" />
29
+ <glyph unicode="&#xe913;" glyph-name="check" d="M374.419 216.593l-264.272 275.017c-24.491 25.486-65.005 26.294-90.492 1.803s-26.294-65.005-1.803-90.492l312.047-324.734c25.79-26.839 68.955-26.092 93.802 1.623l582.234 649.469c23.594 26.319 21.385 66.781-4.933 90.375s-66.781 21.385-90.375-4.933l-536.208-598.128z" />
30
+ <glyph unicode="&#xe914;" glyph-name="chevron-down" d="M119.222 719.023l391.361-391.361 391.291 391.361c27.371 27.39 71.763 27.406 99.153 0.035s27.406-71.763 0.035-99.153l-440.99-440.99c-27.334-27.326-71.643-27.326-98.978 0l-440.99 440.99c-17.706 17.706-24.621 43.512-18.14 67.699s25.372 43.078 49.559 49.559c24.186 6.481 49.993-0.434 67.699-18.14z" />
31
+ <glyph unicode="&#xe915;" glyph-name="chevron-left" d="M782.021 56.645c17.706-17.706 24.621-43.512 18.14-67.699s-25.372-43.078-49.559-49.559c-24.186-6.481-49.993 0.434-67.699 18.14l-440.99 440.99c-27.326 27.334-27.326 71.643 0 98.978l440.99 440.99c27.39 27.371 71.782 27.355 99.153-0.035s27.355-71.782-0.035-99.153l-391.361-391.291 391.361-391.361z" />
32
+ <glyph unicode="&#xe916;" glyph-name="chevron-right" d="M242.275 839.079c-17.706 17.706-24.621 43.512-18.14 67.699s25.372 43.078 49.559 49.559c24.186 6.481 49.993-0.434 67.699-18.14l440.99-440.99c27.326-27.334 27.326-71.643 0-98.978l-440.99-440.99c-27.39-27.371-71.782-27.355-99.153 0.035s-27.355 71.782 0.035 99.153l391.361 391.291-391.361 391.361z" />
33
+ <glyph unicode="&#xe917;" glyph-name="chevron-up" d="M119.222 178.974c-17.706-17.706-43.512-24.621-67.699-18.14s-43.078 25.372-49.559 49.559c-6.481 24.186 0.434 49.993 18.14 67.699l440.99 440.99c27.334 27.326 71.643 27.326 98.978 0l440.99-440.99c27.371-27.39 27.355-71.782-0.035-99.153s-71.782-27.355-99.153 0.035l-391.291 391.361-391.361-391.361z" />
34
+ <glyph unicode="&#xe918;" glyph-name="clock" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM313.199 354.839c-26.244-23.677-28.325-64.146-4.647-90.39s64.146-28.325 90.39-4.647l177.058 159.742v311.082c0 35.346-28.654 64-64 64s-64-28.654-64-64v-254.168l-134.801-121.618z" />
35
+ <glyph unicode="&#xe919;" glyph-name="code" d="M128.889 447.422l192.104 192.104-63.993 63.993-255.973-255.973 256.472-255.474 63.369 63.369-191.979 191.979zM897.111 447.671l-191.979 191.979 63.868 63.868 255.973-255.973-255.973-255.973-63.993 63.993 192.104 192.104zM598.665 954.978l-265.031-989.109 92.729-24.847 265.031 989.109-92.729 24.847z" />
36
+ <glyph unicode="&#xe91a;" glyph-name="cog" d="M415.613 93.653c-30.111 8.15-59.052 20.128-86.116 35.639l-107.799-89.336c-7.947-6.586-19.6-6.043-26.9 1.253l-89.642 89.592c-7.302 7.298-7.85 18.954-1.264 26.904l89.336 107.857c-15.511 27.064-27.489 56.006-35.639 86.116l-139.447 13.016c-10.281 0.96-18.141 9.588-18.141 19.913v126.728c0 10.322 7.856 18.949 18.133 19.913l139.455 13.074c8.229 30.455 20.282 59.355 35.639 86.116l-89.336 107.799c-6.586 7.947-6.043 19.6 1.253 26.9l89.603 89.654c7.293 7.297 18.939 7.849 26.89 1.276l107.924-89.229c27.064 15.511 56.006 27.489 86.116 35.639l12.957 139.375c0.956 10.284 9.586 18.149 19.914 18.149h126.721c10.322 0 18.949-7.856 19.913-18.133l13.074-139.455c30.455-8.229 59.355-20.282 86.116-35.639l107.799 89.336c7.947 6.586 19.6 6.043 26.9-1.253l89.654-89.603c7.297-7.293 7.849-18.939 1.276-26.89l-89.229-107.924c15.357-26.762 27.409-55.661 35.639-86.116l139.455-13.074c10.277-0.964 18.133-9.59 18.133-19.913v-126.736c0-10.322-7.856-18.949-18.133-19.913l-139.455-13.074c-8.229-30.455-20.282-59.355-35.639-86.116l89.336-107.799c6.586-7.947 6.043-19.6-1.253-26.9l-89.592-89.642c-7.298-7.302-18.954-7.85-26.904-1.264l-107.857 89.336c-27.064-15.511-56.006-27.489-86.116-35.639l-13.074-139.455c-0.964-10.277-9.59-18.133-19.913-18.133h-126.742c-10.32 0-18.945 7.852-19.912 18.126l-13.133 139.527zM511.968 256.042c106.033 0 191.99 85.957 191.99 191.99s-85.957 191.99-191.99 191.99c-106.033 0-191.99-85.957-191.99-191.99s85.957-191.99 191.99-191.99z" />
37
+ <glyph unicode="&#xe91b;" glyph-name="cogs" d="M298.722 49.313c-21.642 5.858-42.444 14.467-61.896 25.615l-73.538-60.942c-7.947-6.586-19.6-6.043-26.9 1.253l-57.184 57.152c-7.302 7.298-7.85 18.954-1.264 26.904l60.943 73.577c-11.149 19.452-19.757 40.254-25.615 61.896l-95.125 8.879c-10.281 0.96-18.141 9.588-18.141 19.913v80.839c0 10.322 7.856 18.949 18.133 19.913l95.133 8.919c5.915 21.89 14.577 42.661 25.615 61.896l-60.942 73.538c-6.586 7.947-6.043 19.6 1.253 26.9l57.164 57.196c7.293 7.297 18.939 7.849 26.89 1.276l73.626-60.872c19.452 11.149 40.254 19.757 61.896 25.615l8.838 95.071c0.956 10.284 9.586 18.149 19.914 18.149h80.832c10.322 0 18.949-7.856 19.913-18.133l8.919-95.133c21.89-5.915 42.661-14.577 61.896-25.615l73.538 60.942c7.947 6.586 19.6 6.043 26.9-1.253l57.196-57.164c7.297-7.293 7.849-18.939 1.276-26.89l-60.872-73.626c11.038-19.235 19.701-40.007 25.615-61.896l95.133-8.919c10.277-0.964 18.133-9.59 18.133-19.913v-80.847c0-10.322-7.856-18.949-18.133-19.913l-95.133-8.919c-5.915-21.89-14.577-42.661-25.615-61.896l60.942-73.538c6.586-7.947 6.043-19.6-1.253-26.9l-57.152-57.184c-7.298-7.302-18.954-7.85-26.904-1.264l-73.577 60.943c-19.452-11.149-40.254-19.757-61.896-25.615l-8.919-95.133c-0.964-10.277-9.59-18.133-19.913-18.133h-80.853c-10.32 0-18.945 7.852-19.912 18.126l-8.959 95.187zM368 166c76.215 0 138 61.785 138 138s-61.785 138-138 138c-76.215 0-138-61.785-138-138s61.785-138 138-138zM804.173 646.964c-10.88 2.945-21.337 7.273-31.116 12.877l-29.997-24.859c-7.947-6.586-19.6-6.043-26.9 1.253l-15.936 15.927c-7.302 7.298-7.85 18.954-1.264 26.904l24.859 30.013c-5.605 9.779-9.932 20.236-12.877 31.116l-38.8 3.622c-10.281 0.96-18.141 9.588-18.141 19.913v22.522c0 10.322 7.856 18.949 18.133 19.913l38.808 3.638c2.973 11.004 7.328 21.447 12.877 31.116l-24.859 29.997c-6.586 7.947-6.043 19.6 1.253 26.9l15.939 15.948c7.293 7.297 18.939 7.849 26.89 1.276l30.038-24.835c9.779 5.605 20.236 9.932 31.116 12.877l3.604 38.769c0.956 10.284 9.586 18.149 19.914 18.149h22.515c10.322 0 18.949-7.856 19.913-18.133l3.638-38.808c11.004-2.973 21.447-7.328 31.116-12.877l29.997 24.859c7.947 6.586 19.6 6.043 26.9-1.253l15.948-15.939c7.297-7.293 7.849-18.939 1.276-26.89l-24.835-30.038c5.549-9.67 9.904-20.112 12.877-31.116l38.808-3.638c10.277-0.964 18.133-9.59 18.133-19.913v-22.529c0-10.322-7.856-18.949-18.133-19.913l-38.808-3.638c-2.973-11.004-7.328-21.447-12.877-31.116l24.859-29.997c6.586-7.947 6.043-19.6-1.253-26.9l-15.927-15.936c-7.298-7.302-18.954-7.85-26.904-1.264l-30.013 24.859c-9.779-5.605-20.236-9.932-31.116-12.877l-3.638-38.808c-0.964-10.277-9.59-18.133-19.913-18.133h-22.536c-10.32 0-18.945 7.852-19.912 18.126l-3.656 38.839zM839 706c38.108 0 69 30.892 69 69s-30.892 69-69 69c-38.108 0-69-30.892-69-69s30.892-69 69-69z" />
38
+ <glyph unicode="&#xe91c;" glyph-name="comments" d="M722.809 50.482c-39.472-10.716-81.382-16.482-124.809-16.482-60.388 0-147.591 37.794-261.609 113.383 182.729-19.682 327.169 17.385 433.32 111.203s150.979 229.473 134.483 406.965c79.871-112.078 119.806-196.596 119.806-253.551 0-96.31-40.593-184.208-107.425-250.958-30.922-51.786-42.482-93.915-34.679-126.388 8.051-33.503 32.085-65.721 72.104-96.654-67.178 9.61-117.574 24.412-151.188 44.405-33.169 19.728-59.836 42.42-80.003 68.077zM301.191 214.482c-20.166-25.656-46.834-48.349-80.003-68.077-33.614-19.993-84.011-34.795-151.188-44.405 40.019 30.934 64.053 63.152 72.104 96.654 7.803 32.473-3.756 74.602-34.679 126.388-66.833 66.749-107.425 154.647-107.425 250.958 0 208.764 190.727 378 426 378s426-169.236 426-378c0-208.764-190.727-378-426-378-43.427 0-85.337 5.766-124.809 16.482z" />
39
+ <glyph unicode="&#xe91d;" glyph-name="copy" d="M0 639.608c0 25.621 21.49 46.392 48 46.392h600c26.51 0 48-20.77 48-46.392v-657.216c0-25.621-21.49-46.392-48-46.392h-600c-26.51 0-48 20.77-48 46.392v657.216zM96 594v-564h504v564h-504zM424 864.256h504v-584h-119.135v-96h167.135c26.51 0 48 21.49 48 48v680c0 26.51-21.49 48-48 48h-600c-26.51 0-48-21.49-48-48v-136.495h96v88.495z" />
40
+ <glyph unicode="&#xe91e;" glyph-name="cross-circle" d="M514 539.349l-164.329 163.957c-25.022 24.965-65.544 24.919-90.51-0.102s-24.919-65.544 0.102-90.51l164.124-163.752-164.124-163.752c-25.022-24.965-25.068-65.488-0.102-90.51s65.488-25.068 90.51-0.102l164.329 163.957 164.329-163.957c25.022-24.965 65.544-24.919 90.51 0.102s24.919 65.544-0.102 90.51l-164.124 163.752 164.124 163.752c25.022 24.965 25.068 65.488 0.102 90.51s-65.488 25.068-90.51 0.102l-164.329-163.957zM514-64c-282.77 0-512 229.23-512 512s229.23 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512z" />
41
+ <glyph unicode="&#xe91f;" glyph-name="cross" d="M512 539.474l329.916 329.79c24.998 24.989 65.521 24.981 90.51-0.017s24.981-65.521-0.017-90.51l-329.882-329.755 329.882-329.755c24.998-24.989 25.006-65.511 0.017-90.51s-65.511-25.006-90.51-0.017l-329.916 329.79-329.916-329.79c-24.998-24.989-65.521-24.981-90.51 0.017s-24.981 65.521 0.017 90.51l329.882 329.755-329.882 329.755c-24.998 24.989-25.006 65.511-0.017 90.51s65.511 25.006 90.51 0.017l329.916-329.79z" />
42
+ <glyph unicode="&#xe920;" glyph-name="doc" d="M516.792 642h-163.042c-64 0-64 96 0 96h163.042v126h-330v-832h650v536h-272c-26.51 0-48 21.49-48 48v26zM612.792 664h148.169l-148.169 139.672v-139.672zM90.792 912c0 26.51 21.49 48 48 48h429.060c12.24 0 24.018-4.676 32.925-13.072l316.94-298.766c9.621-9.069 15.075-21.706 15.075-34.928v-629.234c0-26.51-21.49-48-48-48h-746c-26.51 0-48 21.49-48 48v928zM451.875 642v0zM512.5 400v0zM512.5 400h-158.75c-64 0-64 96 0 96h317.5c64 0 64-96 0-96h-158.75zM512.5 158v0zM512.5 158h-158.75c-64 0-64 96 0 96h317.5c64 0 64-96 0-96h-158.75z" />
43
+ <glyph unicode="&#xe921;" glyph-name="dollar-alt" d="M512-64c-282.77 0-512 229.23-512 512s229.23 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM568.756 141.040c28.802 1.6 55.46 4.992 79.974 10.177 35.453 7.499 65.673 18.269 90.66 32.312s44.209 31.289 57.664 51.74c13.455 20.451 20.182 43.764 20.182 69.941 0 24.541-5.339 46.559-16.018 66.055s-26.91 37.015-48.694 52.558c-21.784 15.542-48.907 29.449-81.37 41.719s-70.478 23.45-114.046 33.539c-20.93 5.726-40.044 11.589-57.344 17.587s-32.035 12.407-44.209 19.223c-12.174 6.817-21.571 14.179-28.191 22.087s-9.931 16.769-9.931 26.586c0 9.544 2.136 18.542 6.407 26.995s10.678 15.747 19.221 21.882c8.543 6.135 19.328 10.975 32.356 14.52s28.512 5.317 46.451 5.317c19.221 0 35.666-2.113 49.335-6.34s24.881-10.089 33.637-17.587c8.756-7.499 15.163-16.497 19.221-26.995s6.087-22.018 6.087-34.561h187.728c0 26.995-6.834 51.74-20.503 74.235s-33.21 41.855-58.625 58.079c-25.415 16.224-56.169 28.903-92.262 38.038-25.229 6.385-52.596 10.538-82.102 12.46v44.947c0 28.966-23.481 52.447-52.447 52.447s-52.447-23.481-52.447-52.447v-47.037c-18.812-2.006-36.782-4.917-53.911-8.735-36.094-8.044-67.274-19.292-93.544-33.743s-46.665-31.971-61.188-52.558c-14.523-20.587-21.784-43.287-21.784-68.1 0-25.904 7.155-48.604 21.464-68.1s33.53-36.674 57.664-51.535c24.134-14.861 52.111-27.744 83.933-38.651s65.245-20.587 100.271-29.040c29.473-7.635 53.072-14.861 70.798-21.678s31.395-13.838 41.005-21.064c9.611-7.226 15.911-14.929 18.901-23.109s4.485-17.451 4.485-27.813c0-9.544-1.709-18.405-5.126-26.586s-9.077-15.201-16.979-21.064c-7.902-5.862-18.153-10.498-30.754-13.906s-27.871-5.113-45.811-5.113c-22.211 0-41.646 1.704-58.305 5.113s-30.647 8.998-41.967 16.769c-11.319 7.771-19.755 17.928-25.308 30.471s-8.329 27.813-8.329 45.809h-189.009c0-33.812 9.29-62.987 27.871-87.528s43.034-44.855 73.361-60.942c30.327-16.088 64.818-28.017 103.475-35.788 17.564-3.531 35.283-6.26 53.156-8.186v-42.993c0-28.966 23.481-52.447 52.447-52.447s52.447 23.481 52.447 52.447v40.594z" />
44
+ <glyph unicode="&#xe922;" glyph-name="dollar" d="M586.328 55.092v-51.96c0-37.076-30.056-67.132-67.132-67.132s-67.132 30.056-67.132 67.132v55.031c-22.877 2.466-45.557 5.959-68.040 10.479-49.48 9.947-93.629 25.217-132.448 45.809s-70.119 46.594-93.902 78.006c-23.783 31.412-35.675 68.757-35.675 112.036h241.932c0-23.036 3.554-42.581 10.661-58.636s17.906-29.056 32.394-39.003c14.489-9.947 32.394-17.102 53.717-21.465s46.199-6.544 74.63-6.544c22.963 0 42.509 2.181 58.638 6.544s29.251 10.296 39.365 17.8c10.115 7.504 17.359 16.491 21.733 26.962s6.561 21.814 6.561 34.030c0 13.263-1.914 25.129-5.741 35.6s-11.892 20.33-24.193 29.58c-12.302 9.249-29.797 18.236-52.487 26.962s-52.897 17.975-90.622 27.747c-44.833 10.82-87.615 23.21-128.347 37.171s-76.543 30.452-107.434 49.474c-30.891 19.022-55.494 41.010-73.81 65.965s-27.474 54.011-27.474 87.168c0 31.761 9.294 60.817 27.884 87.168s44.696 48.776 78.32 67.274c33.625 18.498 73.536 32.895 119.736 43.191 21.925 4.886 44.927 8.613 69.006 11.18v60.207c0 37.076 30.056 67.132 67.132 67.132s67.132-30.056 67.132-67.132v-57.532c37.768-2.46 72.799-7.776 105.091-15.949 46.2-11.692 85.565-27.922 118.096-48.688s57.544-45.547 75.040-74.342c17.496-28.794 26.243-60.468 26.243-95.021h-240.292c0 16.055-2.597 30.801-7.791 44.238s-13.395 24.955-24.603 34.553c-11.208 9.598-25.56 17.102-43.056 22.512s-38.545 8.115-63.148 8.115c-22.963 0-42.782-2.269-59.458-6.806s-30.481-10.732-41.416-18.585c-10.935-7.853-19.136-17.189-24.603-28.009s-8.201-22.337-8.201-34.553c0-12.565 4.237-23.908 12.712-34.030s20.503-19.545 36.085-28.271c15.582-8.726 34.444-16.928 56.588-24.606s46.609-15.182 73.4-22.512c55.768-12.914 104.427-27.224 145.979-42.93s76.27-33.506 104.154-53.4c27.884-19.894 48.66-42.319 62.328-67.274s20.503-53.138 20.503-84.55c0-33.506-8.611-63.347-25.833-89.524s-41.825-48.252-73.81-66.227c-31.984-17.975-70.666-31.761-116.045-41.359-31.378-6.637-65.5-10.979-102.367-13.027z" />
45
+ <glyph unicode="&#xe923;" glyph-name="dot-circle-alt" d="M512-64c-282.77 0-512 229.23-512 512s229.23 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM512 278c93.888 0 170 76.112 170 170s-76.112 170-170 170c-93.888 0-170-76.112-170-170s76.112-170 170-170z" />
46
+ <glyph unicode="&#xe924;" glyph-name="dot-circle" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM512 64c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384s-171.923-384-384-384zM512 278c93.888 0 170 76.112 170 170s-76.112 170-170 170c-93.888 0-170-76.112-170-170s76.112-170 170-170z" />
47
+ <glyph unicode="&#xe925;" glyph-name="download" d="M40 256h301.4c85.765-89.875 142.631-134.813 170.6-134.813s84.835 44.938 170.6 134.813h301.4c22.091 0 40-17.909 40-40v-240c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v240c0 22.091 17.909 40 40 40zM92 56c22.091 0 40 17.909 40 40s-17.909 40-40 40c-22.091 0-40-17.909-40-40s17.909-40 40-40zM308 72c13.255 0 24 10.745 24 24s-10.745 24-24 24c-13.255 0-24-10.745-24-24s10.745-24 24-24zM208 72c13.255 0 24 10.745 24 24s-10.745 24-24 24c-13.255 0-24-10.745-24-24s10.745-24 24-24zM698 164h270v-20h-270v20zM698 96h270v-20h-270v20zM698 28h270v-20h-270v20zM560 365.018l215.277 215.985c18.714 18.776 49.106 18.826 67.882 0.111s18.826-49.106 0.111-67.882l-297.373-298.352c-18.65-18.711-48.913-18.835-67.715-0.277l-302.283 298.352c-18.867 18.622-19.066 49.013-0.444 67.881s49.013 19.066 67.881 0.444l220.665-217.795v546.515c0 26.51 21.49 48 48 48s48-21.49 48-48v-544.982z" />
48
+ <glyph unicode="&#xe926;" glyph-name="earth" d="M464.761 34.653l-23.531 32.004 34.77 53.211-50.766 60.102-57.305 51 65.301-28.969 42.77-2.734 38.531-93.5-38.531-25.109c6.331-8.888 19.174-16.974 38.531-24.258 8.359-3.145 70.264 3.698 185.714 20.53 10.633 5.405 21.002 11.253 31.084 17.521l23.241 55.816v-40.262c105.030 75.51 173.43 198.766 173.43 337.997 0 30.313-3.242 59.868-9.399 88.339l-27.937-88.339 18.602-65.375-11.908-55.488-114.022-130.419-45.727 121.656v83.977l23.57 72.773-64.279 19.195-159.666 28.211-72.004 93.469 48.004 78.367 89.297 51.039 145.508-77.039 51.141 21.633 77.391-96.742 31.728-18.385c-53.645 167.704-210.792 289.127-396.298 289.127-5.937 0-11.845-0.124-17.721-0.371l-172.728-55.676-74.316-77.219h86.992l163.156 97.094 171.391-40.887h-166.219l-153.695-98.316h-101.625l-28.68-32.5-49.393 27.566c-44.581-64.724-71.308-142.699-73.069-226.811l72.891 65.652 128.156-107.453 101.594-50.313-20.25-71-81.687-36.719-4-96.25 108.527-113.913c20.553-5.658 41.742-9.779 63.437-12.231zM512-64c-282.77 0-512 229.23-512 512s229.23 512 512 512c282.77 0 512-229.23 512-512s-229.23-512-512-512zM543.367 482.594h77.781l30.547-34.594-54.164-18.648-54.164 53.242z" />
49
+ <glyph unicode="&#xe927;" glyph-name="ecpay" d="M21.239 52.531h716.768l56.514 120.027h199.935l-80.729-185.219h-898.887l6.399 65.192zM805.639 218.918l22.728 44.096h193.447l-16.558-44.096h-199.618zM722.208 614.776h145.966c0 50.632-0.918 88.373-2.753 113.223-2.753 37.275-18.016 84.555-31.115 103.925s-17.15 25.003-29.516 38.146c-12.366 13.143-24.757 18.456-44.364 28.492s-62.061 12.074-97.907 8.143c-23.897-2.621-47.445-11.497-70.643-26.629-24.501-16.522-44.311-32.572-59.432-48.151-22.681-23.369-65.524-86.661-90.529-151.756-16.67-43.397-27.327-83.958-31.971-121.684-11.545-66.158-17.093-120.783-16.644-163.874 0.673-64.637 3.749-105.969 19.77-136.267s40.759-63.794 69.274-86.842c28.515-23.049 47.868-27.404 62.501-30.549s36.388-4.083 50.169-4.083c13.782 0 35.379 2.611 49.037 6.711s43.743 20.751 80.463 55.363c36.72 34.611 57.945 72.14 66.77 88.646s13.782 26.041 18.241 35.574c4.459 9.533 12.615 33.648 15.515 41.266 3.823 10.044 11.501 36.816 23.035 80.316h-150.381c-2.24-13.067-5.106-24.58-8.597-34.539s-7.869-19.106-13.132-27.439c-14.172-24.951-26.513-40.852-37.023-47.705-15.765-10.279-36.672-13.49-53.597-9.308s-24.423 15.228-30.889 30.172c-6.466 14.944-9.611 66.822-9.611 88.82s-0.51 46.742 13.039 104.898c13.548 58.157 17.727 73.436 33.992 108.472s27.379 44.854 44.142 59.831c16.763 14.977 33.893 18.615 50.261 14.977s27.151-19.726 30.044-29.396c2.893-9.67 5.885-25.863 5.885-40.513 0-9.766 0-25.846 0-48.238zM429.729 145.344c-262.347-1.405-394.837-1.405-397.47 0-3.95 2.108-14.441 21.576-17.065 28.188-1.113 2.805-2.884 11.367-4.363 17.566-0.985 4.133-2.123 10.217-3.411 18.255l106.231 654.571c2.905 13.558 7.731 23.892 14.479 31.004s14.269 11.662 22.562 13.652h405.83c-22.202-13.702-37.44-23.615-45.715-29.74-10.126-7.495-28.349-24.725-33.181-31.256-16.133-21.807-7.211-8.208-23.478-33.471s-21.18-34.601-30.51-51.185c-6.22-11.056-15.053-27.795-26.498-50.217h-144.787l-21.955-99.496h130.375c-8.349-29.491-14.853-56.973-19.513-82.448s-8.023-51.985-10.091-79.533h-123.651l-22.724-119.463h146.375c1.371-16.552 2.598-28.131 3.681-34.737 1.747-10.661 3.996-27.401 6.41-36.492 2.066-7.777 8.57-21.79 19.513-42.039 7.591-12.335 15.827-24.053 24.708-35.153s23.63-23.769 44.248-38.004z" />
50
+ <glyph unicode="&#xe928;" glyph-name="ellipsis-h" d="M768 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM384 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128z" />
51
+ <glyph unicode="&#xe929;" glyph-name="ellipsis-v" d="M512 704c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM512 320c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM512-64c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128z" />
52
+ <glyph unicode="&#xe92a;" glyph-name="envelop" d="M56.109 49.008c-30.988 0-56.109 27.46-56.109 61.334v676.219c0 37.469 29.178 63.299 59.53 61.334h904.964c30.362 1.956 59.506-23.902 59.506-61.334v-676.219c0-33.874-25.121-61.334-56.109-61.334v-1.008h-911.782v1.008zM108.69 88.889h806.619c-2.281 6.677-3.528 13.906-3.528 21.453v560.943l-371.646-273.7c-19.062-14.038-44.028-13.949-63.005 0.226l-364.913 272.558v-560.026c0-7.547-1.247-14.775-3.528-21.453v0zM128.192 807.006l380.815-284.436 386.224 284.436h-767.039z" />
53
+ <glyph unicode="&#xe92b;" glyph-name="exchange" d="M852.568 753.956l-132.002 121.645c-19.494 17.965-20.734 48.331-2.769 67.826s48.331 20.734 67.826 2.769l222.258-204.82c20.482-18.875 20.652-51.162 0.369-70.251l-222.258-209.18c-19.304-18.169-49.682-17.248-67.851 2.057s-17.248 49.682 2.057 67.851l133.982 126.099-806.301 2.049c-26.51 0.067-47.945 21.612-47.878 48.122s21.613 47.945 48.122 47.878l804.446-2.044zM171.19 241.057l132.002 121.645c19.494 17.965 20.734 48.331 2.769 67.826s-48.331 20.734-67.826 2.769l-222.258-204.82c-20.482-18.875-20.652-51.162-0.369-70.251l222.258-209.18c19.304-18.169 49.682-17.248 67.851 2.057s17.248 49.682-2.057 67.851l-133.982 126.099 806.301 2.049c26.51 0.067 47.945 21.612 47.878 48.122s-21.613 47.945-48.122 47.878l-804.446-2.044z" />
54
+ <glyph unicode="&#xe92c;" glyph-name="exclamation-triangle" d="M573.712 809.508l432.455-638.098c22.928-33.831 14.090-79.844-19.742-102.773-12.253-8.304-26.714-12.743-41.516-12.743h-864.91c-40.869 0-74 33.131-74 74 0 14.802 4.439 29.263 12.743 41.516l432.455 638.098c22.928 33.831 68.941 42.67 102.773 19.742 7.774-5.268 14.473-11.968 19.742-19.742zM442 260v-115.036h130.417v115.036h-130.417zM442 626v-273.036h130.417v273.036h-130.417z" />
55
+ <glyph unicode="&#xe92d;" glyph-name="external-link" d="M809.351 832h-297.351v128h514v-512h-128v291.633l-406.792-405.936-90.414 90.605 408.557 407.698zM762.648 64l1.353 216.4 127.997-0.8-2.148-343.6h-889.851v886h340v-128h-212v-630h634.648z" />
56
+ <glyph unicode="&#xe92e;" glyph-name="family-mart" d="M937.041 350.557c0-9.931 0.363-19.136-0.136-28.25-0.363-6.62 2.041-8.389 8.434-8.298 13.921 0.227 13.241-0.181 14.148-14.193 0.635-9.704-2.63-12.878-11.79-11.336-8.117 1.36-11.835-1.406-10.837-10.339 0.816-6.983 0-14.148 0.181-21.267 0.363-11.518 5.623-16.097 16.596-13.195 5.986 1.587 7.437-0.045 6.394-5.169-1.406-6.802 4.761-16.506-3.628-20.088-11.064-4.716-27.978-3.174-36.593 5.487-5.94 6.031-8.797 13.331-9.024 21.63-0.317 11.699-0.544 23.443-0.227 35.142 0.136 5.94-1.542 8.797-7.754 7.845-6.122-0.952-7.437 2.267-6.892 7.527 0.317 3.038 0.363 6.212 0 9.25-0.726 6.303 0.68 10.203 8.207 8.933 4.807-0.816 7.301 1.678 6.258 6.348-3.9 16.778 5.305 23.897 19.68 27.524 2.041 0.453 3.99 1.315 6.983 2.449zM886.788 283.401c-5.124 1.406-8.888 2.857-12.787 3.356-13.286 1.814-20.949-4.943-20.949-18.183 0-14.782-0.181-29.565 0.091-44.347 0.091-5.169-1.542-6.756-6.802-6.847-20.451-0.453-20.451-0.635-20.451 19.725 0 23.081 0.181 46.206-0.136 69.287-0.091 5.895 1.36 8.525 7.618 7.799 3.628-0.453 7.437-0.408 11.064 0 5.305 0.589 8.162-1.134 7.301-8.117 8.797 7.618 17.594 11.246 28.023 8.797 4.716-1.088 7.482-3.31 7.119-8.888-0.453-7.301-0.091-14.692-0.091-22.582zM740.732 286.666c0 2.902 0 5.577 0 8.298-0.045 18.138 0.272 18.773 18.41 20.496 9.795 0.952 19.68 1.496 29.338-1.406 14.692-4.489 22.582-14.42 22.854-29.792 0.227-13.558 0.136-27.116 0.045-40.674-0.091-8.661 0.544-17.14 5.532-26.572-11.2 2.857-21.902-3.945-31.288 4.398-1.587 1.406-3.99-0.816-5.94-1.587-8.616-3.401-17.548-3.764-26.3-1.451-16.506 4.353-23.897 16.687-21.947 35.414 1.587 15.508 14.012 26.754 31.515 28.341 7.028 0.635 14.012 0.136 21.085-1.451-2.585 14.51-11.971 15.735-43.304 5.986zM784.853 251.75c0.091 9.976-1.179 11.427-10.52 11.699-8.978 0.272-16.324-5.26-16.506-12.425-0.181-6.303 5.351-11.2 12.923-11.427 9.386-0.227 14.012 3.718 14.102 12.152zM688.676 309.339c-9.069-11.835-18.546-23.398-27.026-35.686-4.852-7.028-7.301-6.802-12.062 0.091-8.48 12.243-17.957 23.851-28.839 35.052 0-19.272 0-38.498 0-57.769 0-3.99 0-8.026 0-12.016 0-24.033 0-23.897-24.26-21.584-4.172 0.408-5.124 1.995-5.124 5.713 0.091 42.534 0.091 85.067 0 127.601 0 3.854 1.315 5.623 5.396 5.487 6.756-0.181 13.558-0.181 20.36 0 3.673 0.091 5.487-2.177 7.482-4.625 8.752-10.747 17.685-21.357 26.209-32.286 3.537-4.534 5.804-5.215 9.613-0.227 7.074 9.341 15.236 17.866 21.902 27.434 5.396 7.709 11.699 10.248 20.904 9.84 16.959-0.68 17.004-0.181 17.004-17.050 0-37.908-0.136-75.817 0.137-113.725 0.045-6.53-1.86-8.253-8.254-8.207-21.63 0.136-21.63-0.136-21.63 21.494 0 23.262 0 46.524 0 69.786-0.635 0.227-1.224 0.453-1.814 0.68zM536.090 263.495c5.668 15.78 10.973 29.247 15.236 43.032 1.95 6.258 4.943 8.207 11.2 7.709 6.711-0.544 13.467-0.136 21.312-0.136-5.351-14.646-10.293-28.159-15.281-41.672-9.024-24.532-18.229-49.018-26.98-73.686-1.723-4.852-4.036-6.575-9.25-6.666-24.033-0.363-24.441-0.317-15.236 21.494 3.9 9.25 3.9 17.004-0.227 26.164-9.795 21.584-18.229 43.758-27.751 65.433-3.401 7.754-1.315 9.16 6.348 9.069 21.131-0.272 21.131 0 28.749-19.906 3.628-9.432 7.255-18.863 11.88-30.835zM450.298 286.983c0 20.632 0.181 41.264-0.091 61.941-0.091 5.577 1.496 7.346 7.255 7.437 20.224 0.272 20.224 0.499 20.224-19.362 0-36.956-0.181-73.958 0.181-110.914 0.045-6.938-1.768-8.842-8.706-8.706-18.818 0.363-18.818 0-18.818 18.773-0.045 16.914-0.045 33.873-0.045 50.832zM404.087 266.624c0 13.558 0.181 27.116-0.091 40.674-0.091 5.124 1.406 6.847 6.756 6.983 20.723 0.589 20.723 0.816 20.723-19.725 0-23.126-0.181-46.206 0.136-69.332 0.091-5.986-1.587-7.8-7.709-7.8-19.77 0-19.77-0.272-19.77 19.635-0.045 9.84-0.045 19.68-0.045 29.565zM435.149 340.309c-0.181-9.84-8.117-17.322-18.047-17.050-9.432 0.272-16.868 7.845-16.914 17.322-0.045 9.658 7.981 17.639 17.685 17.594 9.84-0.046 17.458-7.936 17.276-17.866zM253.95 265.581c0 12.016-0.091 24.033 0.045 36.095 0.136 14.284-1.995 12.561 11.971 12.243 4.716-0.091 11.246 3.582 14.057-4.353 0.635-1.814 2.675 0.136 3.854 0.726 14.102 7.482 27.842 7.391 40.584-2.721 3.673-2.902 5.396-0.453 7.845 1.179 10.067 6.756 21.040 8.253 32.694 5.351 14.012-3.492 22.083-13.467 22.219-27.932 0.181-20.677-0.091-41.309 0.137-61.987 0.044-5.169-1.361-6.756-6.712-6.847-20.995-0.408-20.995-0.635-20.995 20.315 0 12.334 0.136 24.668-0.045 37.001-0.136 10.067-4.444 15.009-12.47 14.964-8.434 0-13.241-5.396-13.241-15.009-0.045-16.642-0.227-33.329 0.091-49.97 0.091-5.577-1.406-7.301-7.21-7.346-20.405-0.181-20.405-0.408-20.405 20.042 0 12.334 0.136 24.668-0.045 37.001-0.136 10.112-4.444 15.327-12.152 15.236-8.434-0.091-13.059-5.396-13.059-15.145-0.045-16.324-0.181-32.694 0.091-49.018 0.091-5.532-0.816-8.162-7.437-8.162-19.816 0.045-19.816-0.317-19.816 19.589 0 9.658 0 19.181 0 28.749zM211.373 280.771c-3.31 14.782-15.191 16.279-43.622 5.532 0 7.028 0.091 13.649-0.045 20.224-0.091 4.036 2.63 5.033 5.713 6.031 13.195 4.172 26.754 4.943 40.13 1.995 16.642-3.673 25.257-15.145 25.484-32.694 0.181-13.241 0.136-26.481 0-39.722-0.091-8.298-0.181-16.551 5.079-24.577-8.933 0-18.637-2.857-24.532 0.68-8.48 5.033-14.238 0.045-21.085-0.771-29.111-3.446-47.34 16.687-38.679 42.942 4.126 12.47 16.143 20.904 31.379 21.856 6.711 0.363 13.377 0.136 20.178-1.496zM211.736 253.519c2.177 8.343-3.99 9.568-10.565 9.885-9.16 0.453-16.052-5.351-15.735-12.923 0.363-8.343 5.986-10.747 13.195-10.747 9.795-0.091 13.15 3.31 13.105 13.785zM65.263 286.53c0 20.632 0.181 41.264-0.136 61.896-0.091 5.94 1.451 7.935 7.663 7.845 24.35-0.363 48.655-0.363 73.005 0 6.167 0.091 7.845-1.768 7.89-7.799 0.136-19.906 0.363-19.906-19.544-19.906-11.11 0-22.174-0.363-33.283 0.136-6.348 0.272-7.754-2.131-7.573-7.935 0.544-19-2.041-15.644 15.372-15.916 12.334-0.181 24.668-0.272 36.956 0.091 5.26 0.136 6.711-1.542 6.802-6.802 0.453-20.813 0.635-20.813-20.496-20.813-10.157 0-20.36-0.363-30.472 0.136-6.666 0.317-8.343-2.177-8.162-8.48 0.408-14.782-0.136-29.565 0.227-44.347 0.136-5.623-1.496-7.255-7.255-7.301-20.949-0.181-20.949-0.408-20.949 20.178-0.045 16.37-0.045 32.694-0.045 49.018zM511.239 46.248c166.739 0 333.478-0.017 500.217 0.068 9.552 0 12.596-0.662 12.544-3.936-0.421-34.050-0.368-68.1 0-102.15 0.052-3.291-2.468-4.224-12.912-4.224-332.743 0.085-665.538 0.085-998.282 0-10.444 0-12.807 0.848-12.807 4.157 0.421 33.931 0.421 67.863 0 101.794-0.052 3.376 1.995 4.394 13.174 4.394 166.057-0.153 332.061-0.102 498.065-0.102zM512.499 959.719c166.389 0 332.777-0.14 499.166 0.281 9.658 0 12.387-3.017 12.336-16.275-0.368-140.794-0.421-281.517 0-422.31 0.052-14.1-2.993-17.047-13.123-17.047-332.777 0.351-665.502 0.421-998.279-0.070-10.603 0-12.65 3.858-12.598 17.327 0.368 141.214 0.368 282.499 0 423.713-0.052 12.276 2.468 14.662 11.181 14.662 167.123-0.421 334.194-0.281 501.318-0.281z" />
57
+ <glyph unicode="&#xe92f;" glyph-name="fb-messenger" d="M512 954c-288.451 0-512-209.119-512-491.548 0-147.74 61.193-275.393 160.811-363.588 8.344-7.443 13.392-17.741 13.804-28.855l2.781-90.132c0.927-28.753 30.905-47.411 57.484-35.89l101.576 44.352c8.654 3.773 18.234 4.486 27.3 2.039 46.667-12.745 96.425-19.474 148.243-19.474 288.451 0 512 209.119 512 491.548s-223.549 491.548-512 491.548zM819.406 575.831l-150.406-236.139c-23.9-37.521-75.203-46.901-111.054-20.29l-119.604 88.807c-11.023 8.157-26.064 8.055-36.984-0.102l-161.532-121.332c-21.531-16.212-49.758 9.38-35.232 32.015l150.406 236.139c23.9 37.521 75.203 46.901 111.054 20.29l119.604-88.807c11.023-8.157 26.064-8.055 36.983 0.102l161.532 121.332c21.531 16.212 49.758-9.38 35.232-32.015z" />
58
+ <glyph unicode="&#xe930;" glyph-name="fb" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-255.55 187.23-467.37 432-505.78v357.78h-130v148h130v112.8c0 128.32 76.44 199.2 193.39 199.2 56 0 114.61-10 114.61-10v-126h-64.56c-63.6 0-83.44-39.47-83.44-80v-96h142l-22.7-148h-119.3v-357.78c244.77 38.41 432 250.23 432 505.78z" />
59
+ <glyph unicode="&#xe931;" glyph-name="female" d="M630.73 834.032c0-69.57-56.398-125.968-125.968-125.968s-125.968 56.398-125.968 125.968c0 69.57 56.398 125.968 125.968 125.968s125.968-56.398 125.968-125.968zM425.099 674.308c27.456 0.5 115.349 2.537 152.113 0 20.992-1.449 56.105-5.945 72.653-13.326s29.256-18.131 34.752-24.034c5.496-5.903 38.404-48.19 41.659-53.673s78.311-141.591 91.375-164.64c13.064-23.049 4.343-44.134-9.915-54.307s-43.705-9.828-57.783 7.762c-2.097 2.62-44.26 64.236-126.489 184.848l132.128-325.711h-124.001c-3.55-170.46-5.325-258.563-5.325-264.309 0-8.619-15.22-31.353-52.209-31.142-36.99 0.222-55.655 22.523-55.655 31.142 0 5.746 0 93.849 0 264.309h-25.255c0-167.298 0-255.401 0-264.309 0-13.362-20.299-31.142-56.203-30.92-35.904 0.216-56.705 15.762-56.705 30.919 0 4.467 0 92.57 0 264.31h-119.8l127.926 324.031c-61.028-98.986-97.605-157.928-109.734-176.827-18.193-28.348-59.144-17.116-62.389-14.103-3.571 3.316-24.23 22.001-12.242 46.087s85.022 159.759 97.224 179.042c6.585 10.406 31.942 43.683 40.99 53.46s21.986 21.979 36.579 25.78c14.593 3.8 34.284 5.391 46.306 5.61z" />
60
+ <glyph unicode="&#xe932;" glyph-name="file-alt" d="M91.063 912.085c0 26.463 21.49 47.915 48 47.915h397.175v-328c2.685-15.681 7.296-26.79 13.834-33.328s18.111-11.124 34.72-13.758h349.728v-600.999c0-26.463-21.49-47.915-48-47.915h-747.457c-26.51 0-48 21.452-48 47.915v928.17zM613.498 935.445l287.617-270.365h-287.617v270.365z" />
61
+ <glyph unicode="&#xe933;" glyph-name="file" d="M90.792 912v-928c0-26.51 21.49-48 48-48h746c26.51 0 48 21.49 48 48v629.234c0 13.222-5.454 25.858-15.075 34.928l-316.94 298.766c-8.907 8.396-20.685 13.072-32.925 13.072h-429.060c-26.51 0-48-21.49-48-48zM186.792 864h362.002l287.998-271.483v-560.517h-650v832zM612.792 664v246h-96v-294c0-26.51 21.49-48 48-48h320v96h-272z" />
62
+ <glyph unicode="&#xe934;" glyph-name="h" d="M782 512v320h-98v128h340v-128h-82v-768h82v-128h-340v128h98v320h-536v-320h94v-128h-340v128h86v768h-86v128h340v-128h-94v-320z" />
63
+ <glyph unicode="&#xe935;" glyph-name="hamburger" d="M64.873 384.125h894.253c35.277 0 63.875 28.598 63.875 63.875s-28.598 63.875-63.875 63.875h-894.253c-35.277 0-63.875-28.598-63.875-63.875s28.598-63.875 63.875-63.875zM64.873 44.788h894.253c35.277 0 63.875 28.598 63.875 63.875s-28.598 63.875-63.875 63.875h-894.253c-35.277 0-63.875-28.598-63.875-63.875s28.598-63.875 63.875-63.875zM64.873 723.462h894.253c35.277 0 63.875 28.598 63.875 63.875s-28.598 63.875-63.875 63.875h-894.253c-35.277 0-63.875-28.598-63.875-63.875s28.598-63.875 63.875-63.875z" />
64
+ <glyph unicode="&#xe936;" glyph-name="hct" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM390.051 540.323c31.453 9.417 65.908 17.432 103.366 24.046-53.11-22.755-90.422-38.991-111.936-48.709l-63.389-182.418h-59.1l48.986 143.424c-2.239-1.437-4.506-2.915-6.811-4.44-25.508-16.874-47.978-39.5-52.15-43.683s-23.685-24.16-38.302-45.777c-9.745-14.411-18.839-32.033-27.281-52.866h-81.608c1.364 1.629 2.725 3.247 4.083 4.853l82.563 241.731h60.546l-50.418-145.091c2.484 2.195 4.954 4.342 7.41 6.441 26.861 22.954 37.446 30.77 52.983 41.679 12.538 8.803 27.984 20.837 60.258 35.046 0.653 0.287 1.308 0.574 1.964 0.86l20.857 61.065h60.546l-12.566-36.161zM545.74 571.883c-26.93-14.011-42.688-23.006-47.273-26.983-6.878-5.967-24.715-20.423-36.971-39.537s-14.531-34.604-16.009-43.091c-1.478-8.486-2.598-17.065 0-30.249s2.553-16.392 10.698-29.271c8.145-12.878 14.895-17.68 22.065-22.534s21.361-12.12 27.393-13.789c5.958-1.648 15.064-3.651 26.258-3.628 11 0.023 24.094 2.044 29.579 3.628 11.067 3.196 19.242 6.115 37.182 15.327 11.96 6.142 30.522 17.023 55.684 32.644-33.788-34.248-57.018-55.312-69.69-63.192-13.321-8.284-22.339-10.972-29.987-14.638-10.951-5.248-32.158-7.616-49.027-6.672-7.817 0.438-18.553 2.662-32.208 6.672-16.417 5.448-31.221 15.4-44.413 29.858-19.787 21.687-26.846 51.57-26.846 70.216 0 7.447-0.233 9.041 0 16.983 0.351 11.945 2.757 25.184 12.604 41.923 5.955 10.122 9.556 15.46 17.413 23.357s13.491 12.096 23.993 19.153c16.492 11.082 23.619 13.375 42.282 22.343 12.442 5.979 28.2 9.805 47.273 11.479zM642.071 576.483h232.35c-18.653-5.829-37.547-13.724-56.683-23.683-8.042-4.185-14.981-9.77-19.023-13.135-4.293-3.575-17.342-13.325-23.17-24.557-3.885-7.488-7.587-15.303-11.106-23.444-5.084-11.683-10.178-24.508-15.281-38.473-7.655-20.947-6.442-16.144-14.407-36.014s-8.57-18.344-15.805-39.19c-4.824-13.897-9.886-28.813-15.186-44.746h-65.6l40.642 62.542c10.948 20.138 19.267 37.254 24.958 51.35 3.505 8.682 8.637 19.028 11.665 31.742 2.019 8.477 3.193 17.307 3.522 26.493-1.357 10.268-3.769 19.194-7.235 26.78-5.2 11.379-9.088 15.060-14.439 20.651-10.199 10.658-28.599 18.552-55.2 23.683z" />
65
+ <glyph unicode="&#xe937;" glyph-name="hi-life" d="M1008.838 732.125l-3.482 11.674c-13.414 44.186-37.837 82.995-72.499 115.354-33.894 32.256-76.595 55.040-126.874 67.635l-7.373 2.458-86.426 8.294c-30.771-1.587-64.307-9.933-99.686-24.883l-0.102-0.051c-33.382-15.155-69.018-38.349-105.984-68.864l-9.728 9.728-39.014 30.72c-17.306 11.827-38.042 22.579-61.594 32-24.422 10.24-51.558 17.050-80.691 20.173l-0.461 0.051-95.59-7.168c-33.894-7.117-70.195-23.040-107.827-47.36l-0.051-0.051c-45.056-30.003-77.466-69.222-96.461-116.685-18.893-48.026-23.706-103.475-14.285-164.71v-0.051c10.138-60.928 35.072-127.027 74.035-196.403 39.68-69.99 95.232-143.309 165.12-217.856l0.051-0.051c71.373-73.728 159.898-149.248 263.014-224.461l3.021-2.202 36.915 26.726 84.173 66.611 112.23 102.912 116.941 128.666c38.144 46.694 71.27 96.41 98.509 147.763l3.635 7.27 36.25 88.934c11.725 32.102 19.661 65.843 23.603 100.301 4.096 34.765 0.87 69.581-9.37 103.526zM1008.173 629.776c-3.84-33.587-11.571-66.509-22.989-97.843l-36.045-88.371-3.379-6.758c-26.88-50.688-59.648-99.789-97.28-145.92l-116.378-128-111.616-102.349-83.712-66.304-30.72-22.221c-101.376 74.138-188.365 148.531-258.662 221.082-69.325 73.984-124.416 146.586-163.635 215.859-38.451 68.352-62.976 133.325-72.909 193.075-4.557 29.747-5.734 58.266-3.43 84.736 2.304 26.419 8.038 51.507 17.152 74.65 9.062 22.733 21.453 43.622 36.813 62.208s34.099 35.277 55.706 49.715c36.454 23.552 71.475 38.963 104.038 45.824l93.645 6.912c27.955-3.072 54.016-9.574 77.414-19.405l0.102-0.051c22.784-9.114 42.803-19.507 59.494-30.874l38.093-30.003 15.923-15.923 3.584 3.021c37.53 31.386 73.626 55.091 107.213 70.349 34.099 14.387 66.304 22.477 95.795 24.064l84.173-8.090 6.349-2.15 0.358-0.102c48.64-12.186 89.856-34.099 122.47-65.229l0.051-0.051c33.382-31.078 56.832-68.403 69.734-110.848l3.482-11.674c9.882-32.563 12.954-65.997 9.165-99.328zM802.195 551.082c-7.782-0.768-14.387-3.482-19.814-8.141-6.195-5.427-9.318-11.674-9.318-18.637v-1.178h58.317v1.178l-8.141 18.637c-5.478 4.608-12.493 7.373-21.043 8.141zM966.598 730.64c-16.333 57.549-51.302 101.427-104.96 131.789-35.738 19.456-69.581 31.488-101.427 36.147l-86.272-2.355c-26.419-6.195-50.125-14.746-71.117-25.651l-52.48-36.147-33.792-31.488-11.674-13.978-11.674 13.978-33.792 31.488-52.48 36.147c-20.992 10.906-44.698 19.456-71.117 25.651l-87.501 2.355c-31.078-4.659-64.512-16.691-100.301-36.147-53.606-30.362-88.576-74.24-104.909-131.789s-11.264-124.774 15.155-201.728c25.651-76.954 75.008-159.744 148.070-248.371 73.83-88.627 173.363-179.2 298.496-271.667 125.133 92.518 224.666 183.091 298.496 271.667 73.062 88.627 122.829 171.418 149.248 248.371 25.702 76.954 30.362 144.23 14.029 201.728zM452.397 443.818l-16.333-7.014h-24.474c-6.195 0.768-11.264 3.123-15.155 7.014-4.659 4.659-7.014 10.496-7.014 17.51 0 6.195 2.355 11.674 7.014 16.333 3.891 4.659 8.96 7.014 15.155 7.014h24.474c6.195 0 11.674-2.355 16.333-7.014l7.014-16.333-7.014-17.51zM377.747 432.144l-7.014-17.51c-5.837-5.427-11.674-8.141-17.51-8.141s-11.674 2.714-17.51 8.141c-4.659 4.659-7.014 10.496-7.014 17.51v129.434c0 7.782 2.355 13.978 7.014 18.637s10.496 7.014 17.51 7.014c7.014 0 12.851-2.355 17.51-7.014l7.014-18.637v-129.434zM353.274 614.058c-13.21 6.195-24.883 15.923-34.97 29.133-9.318 13.21-15.565 26.419-18.637 39.629-2.355 13.978 1.178 24.474 10.496 31.488 9.318 6.195 17.101 8.55 23.296 7.014 6.195-0.768 10.906-2.714 13.978-5.837l5.837-7.014 5.837 7.014c3.123 3.123 7.782 5.069 13.978 5.837 6.195 1.536 13.978-0.768 23.296-7.014 9.318-7.782 12.851-18.278 10.496-31.488s-8.55-26.419-18.637-39.629l-34.97-29.133zM299.616 432.144l-7.014-17.51c-6.997-5.939-12.834-8.653-17.51-8.141-7.014 0.768-12.851 3.482-17.51 8.141s-7.014 10.496-7.014 17.51v62.976h-38.502v-62.976l-7.014-17.51c-5.837-5.427-11.674-8.141-17.51-8.141s-11.674 2.714-17.51 8.141c-4.659 4.659-7.014 10.496-7.014 17.51v176.077c0 7.782 2.355 13.978 7.014 18.637s10.496 7.014 17.51 7.014c7.014 0 12.851-2.355 17.51-7.014l7.014-18.637v-65.28h38.502v65.28c0 7.782 2.355 13.978 7.014 18.637s10.496 7.014 17.51 7.014c7.014 0 12.851-2.355 17.51-7.014l7.014-18.637v-176.077zM563.142 413.456c-3.891-3.891-9.318-6.195-16.333-7.014h-52.48l-17.51 8.141c-4.659 4.659-7.014 10.496-7.014 17.51v176.128c0 7.782 2.355 13.978 7.014 18.637s10.496 7.014 17.51 7.014c4.676 0 10.513-2.338 17.51-7.014l7.014-18.637v-153.907h28.006c7.014-0.768 12.442-3.123 16.333-7.014l7.014-17.51-7.066-16.333zM581.83 654.864c6.195 6.195 13.619 9.318 22.17 9.318s15.923-3.123 22.17-9.318c5.427-6.195 8.141-13.619 8.141-22.17 0-9.318-2.714-17.101-8.141-23.296-6.195-5.427-13.619-8.141-22.17-8.141s-15.923 2.714-22.17 8.141c-5.427 6.195-8.55 13.978-9.318 23.296 0.768 8.55 3.84 15.923 9.318 22.17zM875.667 509.098l-4.659-22.17c-3.123-7.014-8.55-10.906-16.333-11.674h-76.954l1.178-3.482 5.837-7.014 8.141-4.659 4.659-1.178h36.97l9.674-7.014c3.891-3.123 6.195-8.55 7.014-16.333 0.546-5.188-2.167-11.401-8.141-18.637l-11.674-5.837h-44.339l-17.51 4.659-11.674 8.141-19.814 19.814c-6.195 9.318-11.264 20.224-15.155 32.666h-18.637v-164.403l-7.014-17.51c-5.837-5.427-11.674-8.141-17.51-8.141s-11.674 2.714-17.51 8.141c-3.891 4.659-5.837 10.496-5.837 17.51v164.454h-26.829v-45.466l-7.014-17.51c-6.997-4.676-12.834-7.014-17.51-7.014-7.014 0-12.851 2.355-17.51 7.014s-7.014 10.496-7.014 17.51v129.434c0 7.782 2.355 13.978 7.014 18.637s10.496 7.373 17.51 8.141c7.014-0.768 12.851-3.482 17.51-8.141l7.014-18.637v-37.325h26.829v114.278c0 7.782 1.946 13.978 5.837 18.637 4.659 4.659 10.496 7.014 17.51 7.014h51.302c6.195 0 11.264-2.355 15.155-7.014l7.014-16.333-7.014-17.51c-3.891-3.891-8.96-6.195-15.155-7.014h-26.829v-92.109h18.637c0.768 6.195 3.891 14.387 9.318 24.474 5.427 10.906 13.619 20.582 24.474 29.133 10.906 8.55 25.651 13.21 44.288 13.978 16.333-0.768 29.542-4.301 39.629-10.496l22.17-23.296 10.496-24.474 2.355-12.851v-10.394h0.102z" />
66
+ <glyph unicode="&#xe938;" glyph-name="horn" d="M366.389 355.174h-214.164c-22.576 0-142.855 46.346-151.133 174.945s128.56 191.331 151.133 191.331h214.164c-38.225-40.873-57.338-104.65-57.338-191.331s19.113-144.996 57.338-174.945c-66.009 47.316-98.166 109.696-96.471 187.138s33.853 137.155 96.471 179.138l387.13 227.474c6.49 7.384 23.912 11.076 52.268 11.076 90.842 0 223.881-184.969 216.401-429.881s-116.819-412.622-216.401-412.622c-25.011 0-42.433 3.663-52.268 10.989l-387.13 226.688zM333.903 540.911c-1.207-55.151 20.025-97.226 67.519-132.086l385.959-226.002c3.974-0.804 10.201-1.326 18.406-1.326 8.957 0 20.803 4.786 34.726 15.954 17.73 14.222 35.81 36.634 52.204 65.84 37.982 67.667 62.251 162.347 65.502 268.781 3.121 102.202-20.923 199.167-63.001 273.206-17.885 31.469-37.996 56.639-57.472 73.044-8.239 6.94-15.906 11.909-22.508 14.876-2.582 1.161-4.844 1.942-6.74 2.392-1.259 0.299-2.156 0.409-2.71 0.409-7.412 0-13.284-0.315-17.365-0.798l-387.86-227.903c-44.167-30.168-65.429-70.237-66.659-126.387zM646.905 406.984c24.924-97.581 75.862-163.378 129.108-163.378 74.785 0 145.015 129.793 145.015 295.142s-70.231 295.142-145.015 295.142c-54.403 0-106.395-68.685-130.695-169.778 89.969-11.283 134.953-53.122 134.953-125.519 0-71.97-44.455-115.839-133.366-131.609zM776.014 211.606c-97.763 0-177.015 146.467-177.015 327.142s79.252 327.142 177.015 327.142c97.763 0 177.015-146.467 177.015-327.142s-79.252-327.142-177.015-327.142zM191.191 254.888h152.368v-285.899c-7.428-11.919-15.424-21.205-23.988-27.858-12.846-9.98-81.369-5.712-95.146-2.727-9.185 1.99-20.263 12.173-33.233 30.548v285.937z" />
67
+ <glyph unicode="&#xe939;" glyph-name="image-alt" d="M40 876h944c22.091 0 40-17.909 40-40v-778c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v778c0 22.091 17.909 40 40 40zM234 548c49.706 0 90 40.294 90 90s-40.294 90-90 90c-49.706 0-90-40.294-90-90s40.294-90 90-90zM96 249.072v-135.678h832v325.522l-244.26 209.565-266.908-355.036-144.109 136.738-176.724-181.11z" />
68
+ <glyph unicode="&#xe93a;" glyph-name="image" d="M40 876h944c22.091 0 40-17.909 40-40v-778c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v778c0 22.091 17.909 40 40 40zM96 780v-666h832v666h-832zM248 560c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM168 295.953l143.379 146.938 116.918-110.937 216.547 288.047 198.172-170.023v-264.102h-675.016v110.078z" />
69
+ <glyph unicode="&#xe93b;" glyph-name="images-alt" d="M80.398 82.039h787.602v-52.877c-0.222-8.001-2.888-14.376-8-19.123s-12.179-7.414-21.203-8h-806.703c-9.494 0.633-16.726 3.3-21.695 8s-8.303 12.026-10 21.979v658.523c0.302 10.473 4.053 19.394 11.254 26.762s16.562 11.864 28.084 13.488h40.662v-648.752zM194 890.791h790c22.091 0 40-17.909 40-40v-648c0-22.091-17.909-40-40-40h-790c-22.091 0-40 17.909-40 40v648c0 22.091 17.909 40 40 40zM352 612.791c41.974 0 76 34.026 76 76s-34.026 76-76 76c-41.974 0-76-34.026-76-76s34.026-76 76-76zM236 358.416v-115.625h708v277.409l-207.855 178.591-227.128-302.561-122.631 116.527-150.385-154.341z" />
70
+ <glyph unicode="&#xe93c;" glyph-name="images" d="M80.398 82.039h787.602v-52.877c-0.222-8.001-2.888-14.376-8-19.123s-12.179-7.414-21.203-8h-806.703c-9.494 0.633-16.726 3.3-21.695 8s-8.303 12.026-10 21.979v658.523c0.302 10.473 4.053 19.394 11.254 26.762s16.562 11.864 28.084 13.488h40.662v-648.752zM187.984 890.8h802.031c18.769 0 33.984-15.215 33.984-33.984v-660.996c0-18.769-15.215-33.984-33.984-33.984h-802.031c-18.769 0-33.984 15.215-33.984 33.984v660.996c0 18.769 15.215 33.984 33.984 33.984zM235.563 809.238v-565.84h706.875v565.84h-706.875zM364.703 622.323c-37.538 0-67.969 30.431-67.969 67.969s30.431 67.969 67.969 67.969c37.538 0 67.969-30.431 67.969-67.969s-30.431-67.969-67.969-67.969zM296.734 397.987l121.816 124.839 99.335-94.254 183.98 244.727 168.369-144.454v-224.383h-573.5v93.523z" />
71
+ <glyph unicode="&#xe93d;" glyph-name="invoice" d="M176 960h674c44.183 0 80-35.817 80-80v-862c0-44.183-35.817-80-80-80h-674c-44.183 0-80 35.817-80 80v862c0 44.183 35.817 80 80 80zM192 864v-830h642v830h-642zM292 476h440c19.882 0 36-16.118 36-36s-16.118-36-36-36h-440c-19.882 0-36 16.118-36 36s16.118 36 36 36zM292 628h440c19.882 0 36-16.118 36-36s-16.118-36-36-36h-440c-19.882 0-36 16.118-36 36s16.118 36 36 36zM292 780h440c19.882 0 36-16.118 36-36s-16.118-36-36-36h-440c-19.882 0-36 16.118-36 36s16.118 36 36 36zM256 296h200v-200h-200v200zM568 296h200v-200h-200v200z" />
72
+ <glyph unicode="&#xe93e;" glyph-name="kafen" d="M0 687.072h210.451v-33.060h-57.005l-6.579-6.934v-198.203l204.111 195.774-3.933 4.583h-68.265v37.84h201.688v-33.060l-56.855-2.258-162.327-149.451 162.327-235.194 38.916-22.858h27.927v-42.358h-211.677v42.358h42.047l21.383 13.858-139.714 186.373-55.629-51.008v-135.397l31.212-13.827h32.372v-42.358h-210.451v42.358h44.882l19.094 13.827-5.882 388.597-7.839 7.337h-50.256v33.060zM522.012 201.895v42.358h21.815l21.544 13.818 165.496 435.93h40.72l156.938-428.112 12.753-12.605 42.020-9.031v-42.358h-199.373v42.358h37.628l23.451 18.153-30.379 91.921h-169.616l-33.624-96.256 22.102-13.824h35.172v-42.351h-146.646zM917.637 693.846h106.363l-2.258-256.136-104.105 256.136zM736.030 592.986l-75.746-197.393h138.876l-63.13 197.393z" />
73
+ <glyph unicode="&#xe93f;" glyph-name="language" d="M243.924 719.765c12.782-39.117 29.696-84.246 50.734-135.272 13.59 20.384 24.984 38.576 34.168 54.535 13.385 23.26 33.161 64.781 58.987 123.962l-143.888-43.226zM121.305 682.929l-81.438-24.465-36.827 122.588 213.349 64.093-25.784 70.895 120.291 43.749 28.28-77.757 258.435 77.637 36.827-122.588-87.242-26.209c-48.691-117.282-84.127-195.193-107.426-235.683-19.534-33.947-46.681-75.015-81.545-123.461 22.756-39.033 47.39-73.375 73.852-103.067l-95.557-85.163c-21.075 23.648-41.003 49.432-59.797 77.342l-172.974-234.913-103.072 75.896 207.172 281.356c-6.136 13.015-12.104 26.347-17.905 39.997-29.045 68.345-51.919 128.195-68.637 179.753zM559.543 274.080h225.955l-68.187 189.203-157.768-189.203zM452.81 146.080l-174.312-209.044-98.307 81.974 581.827 697.754 262.083-727.214-120.418-43.398-72.053 199.927h-378.819z" />
74
+ <glyph unicode="&#xe940;" glyph-name="line" d="M510.986 936c281.747 0 510.986-185.697 510.986-414.936 0-92.208-35.859-174.171-108.857-256.134-107.576-124.225-347.061-274.063-402.13-297.115-55.069-21.771-47.385 15.368-44.823 28.175 1.281 7.684 7.684 43.543 7.684 43.543 2.561 12.807 3.842 33.297-1.281 46.104-5.123 14.087-28.175 21.771-44.823 25.613-245.888 33.297-427.743 204.907-427.743 409.814 0 229.239 229.239 414.936 510.986 414.936zM851.644 574.852c5.123 0 10.245 3.842 10.245 10.245v35.859c0 5.123-3.842 10.245-10.245 10.245h-143.435c-2.561 0-5.123-1.281-6.403-2.561s-2.561-3.842-2.561-6.403v-222.836c0-2.561 1.281-5.123 2.561-6.403s3.842-2.561 6.403-2.561h143.435c5.123 0 10.245 3.842 10.245 10.245v35.859c0 5.123-3.842 10.245-10.245 10.245h-97.331v37.139h97.331c5.123 0 10.245 3.842 10.245 10.245v35.859c0 5.123-3.842 10.245-10.245 10.245h-97.331v37.139h97.331v-2.561zM653.14 631.201h-35.859c-5.123 0-10.245-3.842-10.245-10.245v-131.909l-102.453 138.312c0 0 0 1.281-1.281 1.281h-35.859c-5.123 0-10.245-3.842-10.245-10.245v-222.836c0-5.123 3.842-10.245 10.245-10.245h35.859c5.123 0 10.245 3.842 10.245 10.245v131.909l102.453-138.312c1.281-1.281 1.281-1.281 2.561-2.561 0 0 0 0 1.281 0s1.281 0 2.561 0h35.859c5.123 0 10.245 3.842 10.245 10.245v222.836c-5.123 6.403-10.245 11.526-15.368 11.526zM405.972 631.201h-35.859c-5.123 0-10.245-3.842-10.245-10.245v-222.836c0-5.123 3.842-10.245 10.245-10.245h35.859c5.123 0 10.245 3.842 10.245 10.245v222.836c0 5.123-3.842 10.245-10.245 10.245zM320.167 444.224h-97.331v176.732c0 5.123-3.842 10.245-10.245 10.245h-35.859c-5.123 0-10.245-3.842-10.245-10.245v-222.836c0-2.561 1.281-5.123 2.561-6.403s3.842-2.561 6.403-2.561h143.435c5.123 0 10.245 3.842 10.245 10.245v35.859c1.281 5.123-3.842 8.965-8.965 8.965z" />
75
+ <glyph unicode="&#xe941;" glyph-name="link" d="M653.224 589.217c119.494-119.618 117.854-311.396 0.72-429.18-0.22-0.24-0.48-0.5-0.72-0.74l-134.4-134.4c-118.54-118.54-311.398-118.524-429.92 0-118.54 118.52-118.54 311.4 0 429.92 76.293 66.902 119.227 102.368 128.8 106.4 0-16.803-0.503-39.627 0-53.4 1.296-35.444 7.652-71.054 19.38-105.442 1.504-4.408 4.274-10.808 8.312-19.199-6.335-5.897-11.628-10.572-15.878-14.025l-26.174-26.174c-56.052-56.052-57.81-147.32-2.31-203.92 56.048-57.158 148.172-57.498 204.65-1.020l134.4 134.38c56.382 56.382 56.146 147.514 0 203.66-7.402 7.388-17.183 13.295-20.682 17.138s-6.555 7.629-8.949 12.203c-2.181 4.167-3.648 8.233-3.833 13.061-0.792 21.134 5.584 42.86 22.284 59.56 35.39 35.002 56.022 54.373 61.899 58.113 7.505-5.137 14.712-10.013 20.749-14.227 14.663-10.239 29.026-20.063 41.672-32.709zM505.174 871.101c118.54 118.54 311.398 118.524 429.92 0 118.54-118.52 118.54-311.4-0.002-429.918-31.336-29.632-51.36-48.561-60.072-56.785s-33.146-27.732-73.301-58.525c3.913 17.911 5.437 38.681 4.573 62.31-1.296 35.444-7.652 71.054-19.38 105.442-1.335 3.914-3.080 10.604-5.234 20.072 5.658 5.892 9.924 10.276 12.8 13.152l26.174 26.174c56.054 56.052 57.81 147.32 2.31 203.92-56.050 57.158-148.172 57.498-204.65 1.020l-134.4-134.38c-56.382-56.382-56.146-147.514 0-203.66 7.402-7.388 30.752-22.7 30.752-52.962 0-21.147-6.795-33.664-19.572-49l-42.108-42.11c-3.503-3.503-10.525-8.876-21.064-16.117-8.93 5.315-15.631 9.533-20.104 12.655-14.663 10.238-28.396 21.747-41.042 34.392-119.494 119.618-117.852 311.396-0.72 429.18 0.22 0.24 0.48 0.5 0.72 0.74l134.4 134.4z" />
76
+ <glyph unicode="&#xe942;" glyph-name="list" d="M72 716c39.765 0 72 32.235 72 72s-32.235 72-72 72c-39.765 0-72-32.235-72-72s32.235-72 72-72zM72 376c39.765 0 72 32.235 72 72s-32.235 72-72 72c-39.765 0-72-32.235-72-72s32.235-72 72-72zM72 44c39.765 0 72 32.235 72 72s-32.235 72-72 72c-39.765 0-72-32.235-72-72s32.235-72 72-72zM294 852h730v-128h-730v128zM294 512h730v-128h-730v128zM294 172h730v-128h-730v128z" />
77
+ <glyph unicode="&#xe943;" glyph-name="lock" d="M156 448v116.93c0 113.008 36.43 212.488 102.742 284.487 65.497 71.114 155.991 110.584 254.258 110.584s188.761-39.47 254.258-110.584c66.312-71.999 102.742-171.478 102.742-284.487v-116.93h26c44.183 0 80-35.817 80-80v-352c0-44.183-35.817-80-80-80h-764c-44.183 0-80 35.817-80 80v352c0 44.183 35.817 80 80 80h24zM284 448h458v116.93c0 160.888-97.796 267.070-229 267.070s-229-106.182-229-267.070v-116.93z" />
78
+ <glyph unicode="&#xe944;" glyph-name="male" d="M637.587 834.032c0-69.57-56.398-125.968-125.968-125.968s-125.968 56.398-125.968 125.968c0 69.57 56.398 125.968 125.968 125.968s125.968-56.398 125.968-125.968zM383.275 674.308c27.456 0.5 209.147 2.537 245.912 0s64.068-15.522 86.857-37.261c22.789-21.74 27.195-68.617 27.195-80.107s0-186.58 0-211.447c0-24.867-33.224-28.525-41.579-28.525-8.276 0-42.947 3.658-42.947 28.525 0 16.578 0 87.061 0 211.447h-20.266c-3.074-378.856-4.611-575.53-4.611-590.021 0-21.737-35.737-31.199-55.767-31.199-17.714 0.281-52.811 12.624-52.811 31.201 0 12.384 0 130.286 0 353.705h-25.255c0-224.843 0-342.744 0-353.705 0-16.441-32.832-30.92-58.203-30.92-29.73 0-54.705 18.545-54.705 30.919 0 8.249 0 204.363 0 588.341h-20.337c0-125.953 0-195.873 0-209.76 0-20.83-23.542-28.532-43.837-28.532s-42.921 11.36-42.921 28.532c0 17.172 0 200.941 0 211.44s0 51.876 23.266 80.107c23.266 28.23 52.553 36.761 80.009 37.261z" />
79
+ <glyph unicode="&#xe945;" glyph-name="medium-alt" d="M0 960h1024v-1024h-1024v1024zM152 164.003h213.439v11.991l-82.058 101.593-2.867 14.737v283.908l187.003-412.229h23.757l162.345 412.229v-332.597l-2.617-8.649-63.597-59.682v-13.765h284.594v11.825l-58.801 57.689-4.517 9.862v415.705l4.517 8.23 58.801 58.553v12.598h-198.682l-141.39-354.99-162.978 354.99h-208.46v-12.598l66.814-80.444 9.555-9.758v-347.037l-4.108-11.381-80.751-98.788v-11.991z" />
80
+ <glyph unicode="&#xe946;" glyph-name="medium" d="M0 42.493v17.054l114.846 140.499 5.842 16.187v493.563l-13.589 13.877-95.024 114.41v17.917h296.476l231.791-504.875 201.088 504.875h282.569v-17.917l-83.629-83.276-6.424-11.706v-591.225l6.424-14.026 83.629-82.047v-16.817h-404.756v19.577l90.449 84.882 3.721 12.301v473.027l-230.891-586.281h-33.788l-265.959 586.281v-403.78l4.077-20.959 116.705-144.487v-17.054z" />
81
+ <glyph unicode="&#xe947;" glyph-name="move" d="M560.57 499.064h308.119l-57.539 63.342c-17.825 19.622-16.367 49.979 3.255 67.804s49.979 16.367 67.804-3.255l129.872-142.97c16.572-18.243 16.634-46.073 0.144-64.39l-129.872-144.262c-17.737-19.702-48.087-21.295-67.789-3.558s-21.295 48.087-3.558 67.789l57.167 63.501h-307.585l0.060-311.535 63.919 58.063c19.622 17.825 49.979 16.367 67.804-3.255s16.367-49.979-3.255-67.804l-142.97-129.872c-18.243-16.572-46.073-16.634-64.39-0.144l-144.262 129.872c-19.702 17.737-21.295 48.087-3.558 67.789s48.087 21.295 67.789 3.558l62.923-56.647-0.060 309.974h-308.045l57.539-63.342c17.825-19.622 16.367-49.979-3.255-67.804s-49.979-16.367-67.804 3.255l-129.872 142.97c-16.572 18.243-16.634 46.073-0.144 64.39l129.872 144.262c17.737 19.702 48.087 21.295 67.789 3.558s21.295-48.087 3.558-67.789l-57.167-63.501h307.511l-0.059 304.487-62.627-56.89c-19.622-17.825-49.979-16.367-67.804 3.255s-16.367 49.979 3.255 67.804l142.97 129.872c18.243 16.572 46.073 16.634 64.39 0.144l144.262-129.872c19.702-17.737 21.295-48.087 3.558-67.789s-48.087-21.295-67.789-3.558l-64.216 57.81 0.059-305.263z" />
82
+ <glyph unicode="&#xe948;" glyph-name="ok-mart" d="M18.175 184.738c-12.031 0-18.175-6.093-18.175-18.023v-129.95c0-27.495 10.533-51.048 31.548-70.607 20.499-20.122 45.335-30.158 74.611-30.158h811.48c29.276 0 54.525 10.036 75.592 30.158 20.499 19.559 30.619 43.061 30.619 70.607v271.113c0 11.93-6.144 18.023-18.175 18.023l-16.833-8.909-18.175-12.34c-103.113-70.402-222.904-121.246-359.321-152.53-107.709-25.242-211.648-36.046-311.869-32.462-95.678 3.789-176.227 20.327-241.854 49.358-24.888 10.394-38.106 15.719-39.448 15.719zM613.669 770.611c-19.724 9.677-38.829 11.981-57.572 6.81-21.222-4.557-36.918-16.129-47.452-34.715-12.082-18.023-15.129-38.145-8.984-60.52l79-340.798c5.938-24.474 18.743-42.497 38.467-53.711 18.743-9.677 37.899-12.34 57.572-7.783 22.564 5.888 38.829 17.818 48.588 35.841 10.533 17.818 13.58 37.94 8.984 60.52l-23.7 100.202 19.879 23.348 157.484-135.838c21.222-18.791 44.56-25.038 70.222-19.149 17.969 4.557 33.51 15.361 46.316 32.462 15.129 20.327 19.156 41.576 12.444 63.951-3.046 16.487-11.669 30.926-26.024 43.624l-158.258 135.685 67.744 80.643c18.175 20.327 24.113 43.829 18.175 70.556-4.595 21.607-17.039 39.272-37.331 52.738-19.724 11.981-39.242 15.207-58.759 10.036-15.129-3.021-28.708-11.572-40.739-25.806l-116.538-137.733-11.101 45.928c-5.318 23.962-18.124 41.781-38.416 53.711zM397.84 665.322c-59.482 38.145-123.973 48.949-193.266 32.462-69.293-16.538-122.476-54.069-159.394-113.105-37.693-59.752-48.588-123.703-32.736-191.648 16.626-68.661 54.525-121.809 114.059-159.186 60.257-36.609 125.161-47.054 194.402-31.284 68.673 15.002 121.701 52.738 159.394 113.258 37.693 58.984 48.226 122.782 31.548 191.443-15.129 68.149-52.976 120.682-114.008 158.060zM234.987 568.96c32.323 8.141 63.355 3.431 92.786-14.592 28.502-17.818 47.090-43.265 55.3-76.086 6.712-32.82 1.549-63.951-15.903-92.982-17.246-28.468-42.856-46.85-76.728-55.042-33.097-6.656-64.491-1.536-93.767 15.77-29.483 19.559-47.658 44.955-54.319 76.291-8.21 32.82-3.046 63.746 15.903 92.982 17.401 28.98 42.856 47.003 76.728 53.659zM1023.902 859.235c-0.775 26.164-11.308 49.358-31.548 69.43-21.273 20.89-46.161 31.335-74.663 31.335h-811.48c-29.276 0-54.164-9.677-74.611-29.031-21.067-20.327-31.6-44.187-31.6-71.734v-161.49c0-11.213 6.144-16.692 18.175-16.692 11.308 0 27.366 7.424 48.433 22.375 95.884 68.661 216.398 119.914 361.644 153.503 204.935 47.822 383.641 44.801 535.754-8.909l31.548-14.592c6.712-3.021 12.444-3.431 17.039-1.126 8.261 3.021 12.082 11.93 11.308 26.932z" />
83
+ <glyph unicode="&#xe949;" glyph-name="paper-plane" d="M14 486.961l1005.589 469.821-130.181-1008.824-314.001 280.022-162.902-247.993-48.898 396.704-349.605 110.27zM452.456 175.892l36.916 134.117 271.892 356.622-333.41-294.406 24.602-196.334z" />
84
+ <glyph unicode="&#xe94a;" glyph-name="pause" d="M56 960h220c33.137 0 60-26.863 60-60v-904c0-33.137-26.863-60-60-60h-220c-33.137 0-60 26.863-60 60v904c0 33.137 26.863 60 60 60zM744 960h220c33.137 0 60-26.863 60-60v-904c0-33.137-26.863-60-60-60h-220c-33.137 0-60 26.863-60 60v904c0 33.137 26.863 60 60 60z" />
85
+ <glyph unicode="&#xe94b;" glyph-name="pelican" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512c-282.77 0-512-229.23-512-512s229.23-512 512-512zM224.231 604.049c-1.886 9.622-2.936 16.654-3.148 21.096-0.319 6.663 0.234 9.424 1.716 15.353 0.988 3.953 2.409 7.664 4.264 11.132-0.733 12.101-0.733 22.534 0 31.299 1.1 13.147 1.815 17.759 4.776 25.778s2.357 6.821 9.473 12.807c4.743 3.99 9.974 6.778 15.692 8.364-1.369 10.367-1.369 18.596 0 24.685 2.054 9.134 5.346 12.28 9.286 16.615 2.627 2.89 6.15 3.89 10.57 3 3.708-1.146 6.502-4.831 8.381-11.057s2.306-13.208 1.28-20.949l13.553-59.244h7.822l17.211 13.128 22.89 9.962h52.781l20.934-7.522 3.588-2.44 11.13 21.822 18.637 19.326 21.328 11.040c7.569 1.908 13.127 1.908 16.674 0s4.829-5.588 3.848-11.040l-3.848-12.295 6.216-7.031-6.216-21.822 9.615-13.128-5.767-17.227-7.714-12.275-3.985-22.777-13.608-12.277v-39.092l-13.928-33.313-21.252-28.573-32.573-34.319v-16.476l8.299-10.66c-4.484-9.96-10.888-20.66-19.212-32.102-12.486-17.163-14.581-18.265-26.899-31.28s-19.094-17.367-27.331-24.13c-5.491-4.509-11.14-8.583-16.947-12.223l-2.833 12.223c-1.058 12.483-2.343 21.502-3.855 27.057-2.269 8.332-4.394 8.604-9.149 13.322s-6.87 3.664-10.091 5.767c-2.147 1.402-3.68 2.922-4.599 4.558l27.694 34.123 13.254 24.783 6.527 18.612 5.193 16.723 2.756 14.194-1.453 18.402-11.72 7.125-14.557 9.383-7.606 8.333-63.837 27.667-23.258 5.572zM96.053 606.727c9.473 2.46 23.55 3.69 42.231 3.69 28.021 0 26.070 0.375 53.747-3.69 18.452-2.71 36.508-6.322 54.168-10.835l53.874-15.245 25.925-20.714c8.183-3.698 13.891-7.374 17.123-11.029s4.806-8.214 4.722-13.676c1.096-4.857-3.688-17.408-14.353-37.654s-20.106-34.697-28.322-43.355c-20.563-23.235-35.58-38.604-45.049-46.106-14.205-11.254-21.315-15.553-36.201-15.553s-18.405 0.735-31.885 2.626c-13.48 1.891-25.817 4.56-42.489 15.846-11.115 7.524-20.628 16.62-28.54 27.286l-13.614 15.901-17.189 9.705c-3.786 2.047-2.304 7.497 4.445 16.35s13.82 14.619 21.211 17.3l31.024 15.722 50.403 15.13 25.089 6.802 23.829 6.385 17.902 5.917c-31.496-8.692-53.769-15.060-66.82-19.103-38.698-11.99-46.808-19.503-50.403-21.399s-11.046-10.505-11.046-15.394c0-3.259 3.682-6.091 11.046-8.495 10.499-1.91 17.302-2.864 20.407-2.864 4.658 0 13.891-0.599 29.996 4.040 10.737 3.093 20.756 7.513 30.057 13.26 15.303 10.373 26.229 17.588 32.778 21.645 9.824 6.086 13.358 7.153 26.828 12.438s16.873 5.577 26.256 7.485c6.256 1.272 13.018 2.096 20.288 2.471l-20.288 7.291-31.912 4.19-53.951 14.178-64.711 18.379-46.773 12.658-19.802 8.419zM315.27 348.601h4.508v-11.253h-4.508v-30.825c-0.247-6.788 0.141-11.172 1.164-13.153 1.535-2.971 5.205-4.765 6.888-5.382 1.122-0.411 11.77-0.411 31.943 0l6.574-6.505c-23.85-0.486-37.25-0.486-40.2 0s-6.875 3.383-11.774 8.691c-0.211 20.831-0.309 36.556-0.295 47.174h-3.87v11.253h3.957c0.049 2.573 0.119 4.21 0.209 4.912 0.396 3.083 1.941 5.788 4.636 8.116l3.401-5.424-2.632-4.529v-3.076zM350.711 556.777c-7.251 0-13.128 10.076-13.128 22.505s5.878 22.505 13.128 22.505c7.251 0 13.128-10.076 13.128-22.505s-5.878-22.505-13.128-22.505zM300.073 556.777c-7.251 0-13.128 10.076-13.128 22.505s5.878 22.505 13.128 22.505c7.251 0 13.128-10.076 13.128-22.505s-5.878-22.505-13.128-22.505zM564.31 249.778l27.654 15.957 16.399-7.038 31.753-11.403 20.716 11.403 17.786 7.038 24.874-7.038 13.842-4.817h36.751c16.507-0.083 31.399-2.278 44.676-6.586s23.972-10.415 32.084-18.321l23.049-26.518c3.79-4.101 7.045-9.479 9.766-16.136 4.080-9.984 6.47-17.258 5.916-22.236-0.369-3.319-2.341-6.325-5.916-9.018l-15.588-4.498c0.295-9.124-0.704-15.568-2.996-19.333-3.438-5.648-1.194-5.289-17.005-6.147-10.541-0.571-21.61 0.681-33.207 3.756-9.56 1.947-21.424 5.982-35.593 12.106-21.254 9.186-18.024 7.885-36.674 19.13-12.433 7.497-22.853 14.537-31.26 21.119l-35.408 30.147c-7.472 2.201-18.103 5.87-31.894 11.007s-26.051 9.996-36.782 14.575l-22.941 12.851zM230.716 538.916c-1.572 3.661-2.646 8.027-3.222 13.097s-0.576 10.156 0 15.258l59.451-15.258-56.229-13.097zM326.905 344.85c5.901 1.709 15.724 8.47 29.469 20.282s26.349 24.323 37.81 37.534c5.344 5.387 10.452 11.831 15.325 19.332s10.393 17.419 16.56 29.753l17.773-6.092 37.090 49.406 49.062 58.028 79.914 72.038 64.26 43.751 31.198 10.335 22.903-2.872 13.813-14.978v-25.176l-13.813-33.126-28.167-31.482 17.026-6.319 7.302-12.172-7.302-30.43-34.524-37.844-17.413-13.392 8.977-13.507v-23.98h36.326l17.775-16.332v-14.942l11.297-9.191 2.516-13.412-9.919-11.634c-92.274-52.945-145.307-83.148-159.099-90.608-20.688-11.191-22.013-12.107-43.070-18.753s-25.894-6.66-43.489-8.568c-17.595-1.908-23.417-1.444-35.538 0s-20.898 3.082-36.366 8.568c-10.312 3.657-20.188 8.604-29.628 14.839-15.644 11.781-26.212 20.373-31.703 25.775s-10.079 11.72-13.764 18.954c-5 8.961-8.161 14.816-9.482 17.564s-2.36 5.632-3.117 8.65z" />
86
+ <glyph unicode="&#xe94c;" glyph-name="pencil" d="M353.822 62.802l0.53-1.519-353.354-123.286 123.335 352.041 0.794-0.278-1.047 1.047 502.138 502.138 228.873-228.873-501.269-501.269zM309.174 105.712l-140.112 140.112-59.055-168.563 30.709-30.325 168.458 58.776zM626.218 685.78l-394.975-394.975 121.71-121.71 394.975 394.975-121.71 121.71zM679.799 846.525l95.442 95.442c24.044 24.044 63.026 24.044 87.070 0l141.803-141.803c24.044-24.044 24.044-63.026 0-87.070l-95.442-95.442-228.873 228.873z" />
87
+ <glyph unicode="&#xe94d;" glyph-name="pie" d="M463.903-64c251.788 0 455.903 204.115 455.903 455.903-58.17 0-210.138 0-455.903 0 0 208.863 0 360.83 0 455.903-251.788 0-455.903-204.115-455.903-455.903s204.115-455.903 455.903-455.903zM561.85 478.97v481.030c152.361-8.037 268.022-61.805 346.984-161.304s115.268-206.074 108.918-319.725h-455.903z" />
88
+ <glyph unicode="&#xe94e;" glyph-name="play" d="M883.109 397.188l-682.477-405.221c-28.493-16.918-65.306-7.534-82.224 20.959-5.504 9.27-8.409 19.852-8.409 30.632v810.442c0 33.137 26.863 60 60 60 10.781 0 21.362-2.905 30.632-8.409l682.477-405.221c28.493-16.918 37.877-53.731 20.959-82.224-5.124-8.629-12.33-15.835-20.959-20.959z" />
89
+ <glyph unicode="&#xe94f;" glyph-name="plus" d="M448.567 512.592l-0.073 378.964c-0.016 85.333 127.984 85.358 128 0.025l0.073-379.013 379.013-0.073c85.333-0.016 85.309-128.016-0.025-128l-378.964 0.073 0.073-378.964c0.016-85.333-127.984-85.358-128-0.025l-0.073 379.013-379.013 0.073c-85.333 0.016-85.309 128.016 0.025 128l378.964-0.073z" />
90
+ <glyph unicode="&#xe950;" glyph-name="question-mark" d="M512 18c-237.482 0-430 192.518-430 430s192.518 430 430 430c237.482 0 430-192.518 430-430s-192.518-430-430-430zM434.414 281.873v-117.775h133.522v117.775h-133.522zM563.343 361.623c0 17.059 2.898 63.655 8.694 74.262s19.738 24.659 41.828 42.156c31.713 24.933 52.709 46.038 62.988 63.316s15.419 35.212 15.419 53.802c0 44.836-19.902 80.704-59.708 107.605-29.307 19.903-67.8 29.854-115.479 29.854-61.239 0-106.675-14.271-136.311-42.812s-46.64-66.214-51.014-113.018l127.289-15.747c2.843 25.589 9.35 43.523 19.52 53.802s23.019 15.419 38.548 15.419c14.435 0 25.206-3.335 32.314-10.006s10.662-16.020 10.662-28.049c0-12.029-8.858-25.261-26.573-39.696-33.244-27.558-54.623-46.804-64.137-57.739s-16.677-23.019-21.488-36.251c-4.812-13.232-7.217-30.455-7.217-51.67v-45.228h124.664z" />
91
+ <glyph unicode="&#xe951;" glyph-name="random" d="M210.584 638.648h-158.584c-26.51 0-48 21.49-48 48s21.49 48 48 48h201.416l143.399-160.626-65.443-68.124-120.789 132.749zM1002.135 168.25l-152.129-153.845c-18.64-18.85-49.031-19.020-67.881-0.381s-19.020 49.031-0.381 67.881l78.616 78.094h-217.224l-131.987 146.769 63.812 67.711 111.341-118.48h174.059l-78.319 70.24c-18.735 18.755-18.719 49.147 0.036 67.882s49.147 18.719 67.882-0.036c62.867-61.17 128.992-125.75 140.584-138.087s25.452-26.668 25.457-47.712c0-13.806-4.622-27.152-13.865-40.039zM860.362 734.648l-80.196 89.275c-17.716 19.721-16.090 50.070 3.631 67.785s50.070 16.090 67.785-3.631l151.814-169.001c3.398-3.701 12.678-25.848 12.608-32.916-0.074-7.068-9.803-29.022-13.276-32.652l-151.807-162.219c-18.114-19.356-48.489-20.363-67.845-2.249s-20.363 48.489-2.249 67.845l76.517 81.765h-162.523l-441.805-478.648h-201.017c-26.51 0-48 21.49-48 48s21.49 48 48 48h158.983l441.805 478.648h207.574z" />
92
+ <glyph unicode="&#xe952;" glyph-name="refresh" d="M801.597 581.171c-43.586 120.183-158.496 202.829-289.597 202.829-153.862 0-283.568-113.531-304.936-264.343l-95.051 13.467c28.053 197.996 198.144 346.876 399.987 346.876 174.178 0 326.528-111.184 382.005-272.204l42.997 56.428c10.711 14.057 30.79 16.77 44.847 6.058s16.77-30.79 6.058-44.847l-100.666-132.113c-9.517-12.489-26.689-16.229-40.537-8.827l-160.892 85.993c-15.587 8.331-21.469 27.719-13.138 43.306s27.719 21.469 43.306 13.138l85.618-45.76zM818.374 380.122l95.498-9.801c-2.737-26.663-8.094-52.822-15.962-78.178-52.025-167.672-207.658-284.143-385.911-284.143-198.644 0-366.92 144.287-398.678 338.304l94.739 15.508c24.19-147.781 152.513-257.811 303.939-257.811 135.897 0 254.576 88.816 294.223 216.592 5.987 19.295 10.066 39.208 12.151 59.53zM85.492 223.872c-11.004-13.829-31.136-16.119-44.965-5.115s-16.119 31.136-5.115 44.965l105.852 133.027c9.756 12.26 26.954 15.654 40.636 8.017l155.707-86.907c15.432-8.613 20.96-28.106 12.346-43.538s-28.106-20.96-43.538-12.346l-131.986 73.667-88.937-111.77z" />
93
+ <glyph unicode="&#xe953;" glyph-name="refund-alt" d="M708.146 227.111v-243.158c0-26.51-21.49-48-48-48h-612.292c-26.51 0-48 21.49-48 48v243.599l708.292-0.441zM514.299-13.435h129.019v64h-129.019v-64zM-0.146 338c0 26.51 21.49 48 48 48h612.292c26.51 0 48-21.49 48-48v-44.609l-708.292-0.527v45.137zM760 500.49v-18.576c0-13.255-10.745-24-24-24s-24 10.745-24 24v19.674c-8.179 0.882-16.287 2.13-24.325 3.746-17.689 3.556-33.473 9.015-47.351 16.377s-25.068 16.658-33.571 27.888c-8.503 11.23-12.754 24.581-12.754 40.053h86.492c0-8.235 1.27-15.223 3.812-20.963s6.401-10.388 11.581-13.944c5.18-3.556 11.581-6.114 19.204-7.674s16.517-2.34 26.681-2.34c8.209 0 15.197 0.78 20.963 2.34s10.457 3.681 14.073 6.364c3.616 2.683 6.206 5.896 7.77 9.639s2.346 7.799 2.346 12.166c0 4.742-0.684 8.984-2.052 12.727s-4.251 7.268-8.649 10.575c-4.398 3.307-10.653 6.52-18.764 9.639s-18.911 6.426-32.398 9.92c-16.028 3.868-31.323 8.298-45.885 13.289s-27.365 10.887-38.408 17.687c-11.044 6.8-19.839 14.661-26.387 23.583s-9.822 19.309-9.822 31.163c0 11.355 3.323 21.742 9.969 31.163s15.979 17.438 28 24.051c12.021 6.613 26.29 11.76 42.806 15.441 7.838 1.747 16.062 3.079 24.67 3.997v21.524c0 13.255 10.745 24 24 24s24-10.745 24-24v-20.568c13.502-0.88 26.026-2.78 37.571-5.702 16.517-4.18 30.59-9.982 42.22-17.406s20.572-16.283 26.827-26.578c6.255-10.294 9.382-21.618 9.382-33.971h-85.906c0 5.74-0.928 11.012-2.785 15.816s-4.789 8.922-8.796 12.353c-4.007 3.431-9.138 6.114-15.393 8.048s-13.78 2.901-22.576 2.901c-8.209 0-15.295-0.811-21.257-2.433s-10.897-3.837-14.806-6.644c-3.909-2.808-6.841-6.145-8.796-10.013s-2.932-7.986-2.932-12.353c0-4.492 1.515-8.547 4.545-12.166s7.33-6.988 12.901-10.107c5.571-3.119 12.314-6.052 20.23-8.797s16.663-5.428 26.241-8.048c19.937-4.617 37.333-9.733 52.188-15.348s27.267-11.979 37.236-19.091c9.969-7.112 17.396-15.129 22.283-24.051s7.33-18.997 7.33-30.227c0-11.979-3.079-22.647-9.236-32.005s-14.953-17.25-26.387-23.676c-11.435-6.426-25.263-11.355-41.487-14.786-11.218-2.373-23.417-3.925-36.597-4.657zM378.471 623.011l72.939 90.017c11.126 13.731 31.277 15.843 45.008 4.717s15.843-31.277 4.717-45.008l-123.852-152.851-0.012-1.071-0.848 0.010-6.287-7.76c-12.807-15.806-36.918-15.806-49.725 0l-6.874 8.484-0.261 0.003 0.004 0.314-123.868 152.87c-11.126 13.731-9.014 33.882 4.717 45.008s33.882 9.014 45.008-4.717l75.298-92.928 3.569 309.838c0.202 17.528 14.469 31.631 31.998 31.631h642.297c17.673 0 32-14.327 32-32v-671.464c0-17.673-14.327-32-32-32h-144.738v64h112.738v607.464h-578.663l-3.162-274.559z" />
94
+ <glyph unicode="&#xe954;" glyph-name="refund" d="M634.207 244.926l34.807-13.848 5.459-7.583c23.29-32.353 33.721-60.195 27.689-86.025-8.651-37.048-60.115-69.469-100.122-69.469-13.643 0-40.449 7.591-89.999 24.267-45.13 15.188-108.333 37.885-189.699 68.117l22.291 59.993c80.797-30.021 143.435-52.515 187.822-67.453 21.929-7.38 39.309-12.884 52.029-16.485 6.042-1.711 10.924-2.961 14.55-3.741 1.529-0.329 2.742-0.553 3.587-0.676 0.217-0.031 0.103-0.022-0.552-0.021h-0.019c5.607 0.004 15.851 3.53 24.999 9.293 4.518 2.846 8.314 5.944 10.882 8.777 0.809 0.893 1.424 1.68 1.84 2.31-0.011 0.145-0.026 0.307-0.048 0.487-0.194 1.626-0.757 3.822-1.775 6.539-2.002 5.343-5.422 11.804-10.29 19.246l-270.093 107.499c-20.67 9.431-44.923 15.468-72.872 17.977-27.224 2.444-52.912 1.084-77.158-4.026l-128.686-52.759 39.944-135.697c37.155 12.267 61.847 18.772 76.278 19.813l1.149 0.083h1.152c14.251 0 43.176-9.561 100.398-31.522 51.142-19.628 123.403-48.927 216.868-87.928l29.069-8.886 36.275 9.109c121.386 53.979 213.27 95.158 275.624 123.527 31.303 14.241 55.131 25.239 71.436 32.97 8.005 3.796 14.143 6.778 18.345 8.911 0.762 0.387 1.447 0.739 2.052 1.054 0.811 1.137 1.769 2.634 2.841 4.469 2.772 4.748 5.972 11.193 9.518 19.245 1.469 5.491 1.814 9.548 1.404 12.134-0.165 1.044-0.264 1.233-0.701 1.644-2.423 2.275-7.815 4.432-14.654 5.266-6.408 0.782-12.583 0.144-14.588-0.718-10.74-4.618-76.027-29.156-199.676-75.083l-22.284 59.995c59.663 22.161 106.164 39.505 139.041 51.854-5.521 4.234-10.32 7.667-14.362 10.283-2.485 1.608-4.602 2.853-6.296 3.726-0.885-0.208-1.915-0.468-3.076-0.782-5.724-1.546-13.847-4.158-24.231-7.81-21.385-7.522-51.882-19.283-91.385-35.251l-17.511 43.322-57.276-26.145zM572.445 269.498l123.997 56.501c15.080 5.354 28.218 7.489 39.982 5.74 12.081-1.795 23.85-7.844 35.799-17.544l2.081-1.689 4.814-6.121c1.832 0.657 3.61 1.289 5.334 1.895 28.105 9.886 40.795 13.313 51.058 11.248 12.836-2.582 28.836-12.937 52.688-32.263l3.23-2.617 5.306-8.717c4.648 1.801 7.736 3.030 9.247 3.68 28.62 12.307 73.254 6.86 98.331-16.685 21.273-19.974 25.781-48.417 16.383-80.291l-0.554-1.88-0.779-1.798c-10.534-24.299-19.743-40.075-30.603-49.506-6.922-6.011-32.145-17.97-106.646-51.864-62.986-28.656-155.86-70.276-278.651-124.875l-2.526-1.123-58.907-14.793-49.12 15.016-1.459 0.609c-93.651 39.088-165.882 68.381-216.607 87.849-25.103 9.634-44.846 16.825-59.111 21.541-6.796 2.247-12.232 3.891-16.19 4.916-0.95 0.246-1.777 0.446-2.467 0.6-12.456-1.842-43.298-10.98-89.004-26.94l-31.75-11.087-75.168 255.359 187.234 76.764 2.661 0.593c31.584 7.033 64.742 8.967 99.369 5.859 34.556-3.102 65.582-10.776 92.97-23.156l189.060-75.218zM637.016 500.682l77.835 77.418c7.782 0.084 14.691-0.893 20.727-2.931s12.045-5.421 18.023-10.15l92.158 144.266 157.255 154.714-275.771-424-90.229 60.682zM175.016 736.681l240.067 223.319h70.945l-198.41-174.026c19.085-14.957 28.627-32.46 28.627-52.512s-9.542-36.871-28.627-50.458l161.413-154.971c11.699 17.253 29.346 25.88 52.942 25.88s39.241-8.627 46.935-25.88l435.259 431.967h39.802v-27.466l-521.997-520.534-326.958 324.681zM453.016 642c-25.405 0-46 20.595-46 46s20.595 46 46 46c25.405 0 46-20.595 46-46s-20.595-46-46-46zM630 726c-76.215 0-138 61.785-138 138 0 25.007 13.084 57.141 39.253 96.4l197.983-0.503c25.843-39.093 38.764-71.058 38.764-95.897 0-76.215-61.785-138-138-138zM680.206 825.996c4.109 4.139 7.652 8.257 10.632 12.354 4.309 5.926 7.389 11.637 9.24 17.131s2.403 10.691 1.655 15.59c-0.748 4.898-2.894 9.317-6.438 13.256-3.322 3.693-7.105 6.284-11.348 7.773s-9.052 1.929-14.427 1.32c-5.375-0.609-11.331-2.187-17.867-4.734s-13.758-6.009-21.666-10.387c-3.918-1.971-7.582-3.675-10.992-5.114s-6.49-2.468-9.241-3.090c-2.751-0.622-5.159-0.785-7.223-0.491s-3.762 1.18-5.090 2.657c-1.292 1.436-2.189 3.079-2.692 4.929s-0.528 3.815-0.076 5.894c0.452 2.079 1.417 4.267 2.893 6.564s3.562 4.659 6.256 7.086c2.886 2.601 5.642 4.509 8.267 5.722s5.102 1.849 7.432 1.905c2.33 0.057 4.51-0.43 6.541-1.461s3.895-2.49 5.593-4.377l28.19 25.405c-3.655 4.062-8.031 6.861-13.129 8.397s-10.653 1.804-16.666 0.807c-6.013-0.998-12.348-3.252-19.004-6.762-4.653-2.453-9.325-5.532-14.016-9.236l-6.085 6.764c-3.921 4.359-10.626 4.715-14.976 0.795s-4.697-10.631-0.775-14.99l6.368-7.078c-2.553-2.848-4.858-5.718-6.913-8.61-4.331-6.095-7.491-12.007-9.479-17.737s-2.679-11.126-2.073-16.19c0.606-5.063 2.589-9.462 5.948-13.196 3.507-3.898 7.654-6.346 12.443-7.343s10-0.981 15.636 0.048c5.636 1.030 11.581 2.877 17.837 5.542s12.585 5.732 18.989 9.2c5.459 2.84 9.981 4.946 13.566 6.319s6.588 2.166 9.009 2.379c2.421 0.213 4.41-0.093 5.967-0.92s3.036-2.019 4.439-3.578c1.292-1.436 2.235-3.001 2.829-4.694s0.695-3.516 0.302-5.468c-0.393-1.952-1.305-4.036-2.736-6.255s-3.493-4.541-6.187-6.969c-3.335-3.006-6.485-5.379-9.448-7.121s-5.82-2.793-8.572-3.156c-2.752-0.362-5.394 0.025-7.926 1.161s-5.016 3.058-7.452 5.766l-28.383-25.578c4.577-5.088 9.922-8.222 16.035-9.4s12.535-0.926 19.267 0.757c6.732 1.683 13.526 4.556 20.383 8.617 3.116 1.846 6.146 3.833 9.091 5.962l5.82-6.47c3.921-4.359 10.626-4.715 14.976-0.795s4.697 10.631 0.775 14.99l-5.496 6.109z" />
95
+ <glyph unicode="&#xe955;" glyph-name="search" d="M733.056 317.454l272.867-272.867c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0l-272.867 272.867c-66.73-48.403-148.805-76.944-237.546-76.944-223.675 0-405 181.325-405 405s181.325 405 405 405c223.675 0 405-181.325 405-405 0-88.741-28.541-170.816-76.944-237.546zM405 278c152.983 0 277 124.017 277 277s-124.017 277-277 277c-152.983 0-277-124.017-277-277s124.017-277 277-277z" />
96
+ <glyph unicode="&#xe956;" glyph-name="seven-eleven" d="M626.688 230.429c-7.168-68.506-7.475-151.962-7.526-239.565h-217.907c0 87.603 3.686 171.059 10.854 239.565h214.579zM741.222 379.216c31.334 22.426 67.174 12.186 67.226-13.312v-120.064h-43.213v102.093c0 8.858-21.965 13.005-24.32-2.458v-99.584h-43.059v141.619h43.059v-41.626l0.307 33.331zM678.963 355.971h-34.867v-26.522h34.867v-26.573h-34.867v-26.573h34.867v-30.413h-79.667v141.619h79.667v-31.539zM556.544 387.51h33.229l-26.931-141.619h-57.6l-22.221 141.619h39.066l16.998-95.744 17.459 95.744zM474.778 355.971h-34.662v-26.522h34.662v-26.573h-34.662v-26.573h34.662v-30.413h-79.514v141.619h79.514v-31.539zM349.286 276.304h34.867v-30.413h-79.667v141.619h44.8v-111.206zM289.536 355.971h-34.867v-26.522h34.867v-26.573h-34.867v-26.573h34.867v-30.413h-79.667v141.619h79.667v-31.539zM443.187 407.939c27.802 152.166 156.416 286.054 354.253 374.579v-209.152c-71.885-23.245-146.125-111.718-150.528-165.939l-203.725 0.512zM225.997 772.534h502.784c-49.51-18.534-200.192-120.576-237.824-189.184h-264.499l-0.461 189.184zM0 960h1024v-1024h-1024v1024zM844.288 58.755l76.851 786.534c0 23.398-18.125 42.394-40.397 42.394h-751.002c-22.374 0-40.55-18.995-40.55-42.394l77.722-786.534c0-23.398 14.797-42.394 32.973-42.394h185.856v-39.885h245.606v39.834l179.968 0.051c18.176 0 32.973 18.995 32.973 42.394z" />
97
+ <glyph unicode="&#xe957;" glyph-name="shipping" d="M257.957 270.536c13.891-19.808 22.043-43.935 22.043-69.965 0-67.379-54.621-122-122-122s-122 54.621-122 122c0 28.174 9.55 54.118 25.59 74.77l-34.373 0.841c-17.538 0.429-31.46 14.898-31.22 32.44l2.006 142.408c0.246 17.496 14.499 31.551 31.997 31.551h7.999v305.42c0 17.673 14.327 32 32 32h416c17.65 0 31.968-14.291 32-31.942l0.558-305.487 48.396-0.001-0.955 229.867c-0.073 17.725 14.275 32.133 32 32.133h112.797c10.743 0 18.546-3.855 27.155-10.347 4.928-3.717 10.296-8.627 16.401-14.877 11.008-11.269 25.033-27.569 42.299-49.091 32.282-40.239 76.356-99.334 132.334-177.413 2.097-1.225 4.064-2.695 5.858-4.392l79.156-74.938c6.257-5.923 9.86-14.119 9.996-22.733l2.977-188.102c0.274-17.868-14.133-32.505-32.004-32.505h-128.786c-13.508-52.671-61.299-91.602-118.183-91.602-56.951 0-104.788 39.023-118.231 91.79l-51.177 1.441c-13.889 0.391-25.938 9.7-29.823 23.040l-20.115 69.071-270.698 6.623zM748 142.57c32.033 0 58 25.967 58 58s-25.967 58-58 58c-32.033 0-58-25.967-58-58s25.967-58 58-58zM845.928 498.583c-40.815 56.193-73.9 100.089-99.197 131.623-16.075 20.038-28.87 34.908-38.16 44.419-2.366 2.422-4.426 4.414-6.121 5.945h-72.316l0.71-170.953 215.086-11.034zM311 482.575l143.558-0.002-0.18 98.427h-143.378v-98.425zM247 482.576v98.424h-145v-98.421l145-0.002zM311 756v-111h143.261l-0.203 111h-143.058zM247 756h-145v-111h145v111zM158 142.57c32.033 0 58 25.967 58 58s-25.967 58-58 58c-32.033 0-58-25.967-58-58s25.967-58 58-58z" />
98
+ <glyph unicode="&#xe958;" glyph-name="sign-out" d="M682 588v244l342-384-342-384v244h-300c-22.091 0-40 17.909-40 40v200c0 22.091 17.909 40 40 40h300zM96.376 82.68c0 190.027 0 401.83 0 731.32 0 36.609 13.369 58.229 46.029 58.229 22.004 0 145.202 0 369.594 0v87.771h-463.812c-26.614 0-48.188-19.648-48.188-43.886v-936.229c0-24.237 21.575-43.886 48.188-43.886h463.812v87.771c-201.099 0-321.573 0-361.424 0-31.384 0-54.2 25.221-54.2 58.908z" />
99
+ <glyph unicode="&#xe959;" glyph-name="site-map" d="M43.51 231.462h161.897c22.353 0 40.474-18.121 40.474-40.474v-161.897c0-22.353-18.121-40.474-40.474-40.474h-161.897c-22.353 0-40.474 18.121-40.474 40.474v161.897c0 22.353 18.121 40.474 40.474 40.474zM432.063 231.462h161.897c22.353 0 40.474-18.121 40.474-40.474v-161.897c0-22.353-18.121-40.474-40.474-40.474h-161.897c-22.353 0-40.474 18.121-40.474 40.474v161.897c0 22.353 18.121 40.474 40.474 40.474zM432.063 897.265h161.897c22.353 0 40.474-18.121 40.474-40.474v-161.897c0-22.353-18.121-40.474-40.474-40.474h-161.897c-22.353 0-40.474 18.121-40.474 40.474v161.897c0 22.353 18.121 40.474 40.474 40.474zM820.617 231.462h161.897c22.353 0 40.474-18.121 40.474-40.474v-161.897c0-22.353-18.121-40.474-40.474-40.474h-161.897c-22.353 0-40.474 18.121-40.474 40.474v161.897c0 22.353 18.121 40.474 40.474 40.474zM494.798 476.332v84.996c0 10.059 8.154 18.213 18.213 18.213s18.213-8.154 18.213-18.213v-84.996h370.34c10.059 0 18.213-8.154 18.213-18.213v-145.708c0-10.059-8.154-18.213-18.213-18.213s-18.213 8.154-18.213 18.213v127.494h-352.126v-127.494c0-10.059-8.154-18.213-18.213-18.213s-18.213 8.154-18.213 18.213v127.494h-352.126v-127.494c0-10.059-8.154-18.213-18.213-18.213s-18.213 8.154-18.213 18.213v145.708c0 10.059 8.154 18.213 18.213 18.213h370.34z" />
100
+ <glyph unicode="&#xe95a;" glyph-name="smilepay" d="M6.114 821.037c18.656 79.65 90.14 138.963 175.478 138.963h660.817c99.534 0 180.223-80.688 180.223-180.223v-660.817c0-0.96-0.008-1.918-0.022-2.874-100.532-39.56-195.773-57.971-285.721-55.235-134.933 4.105-199.504 36.833-243.846 55.244s-112.716 46.242-187.879 112.199c-50.109 43.972-110.238 114.326-180.389 211.062l47.432-153.588c19.983-51.801 46.976-103.662 80.979-155.583 51.005-77.881 58.521-76.039 92.888-109.901 22.912-22.575 52.546-48.545 93.418-81.546h-257.898c-99.534 0-180.223 80.688-180.223 180.223v660.817c0 1.27 0.013 2.538 0.039 3.802-0.014-0.506-0.027-1.018-0.039-1.539-2.185-93.346 0-303.93 0-317.566 18.424-20.199 65.217-25.118 90.111-25.118 105.064 0 190.235 89.654 190.235 200.248s-85.171 200.25-190.235 200.25c-22.964 0-65.57-1.753-85.366-18.817zM1.625 789.469c-0.104-1.955-0.176-3.919-0.217-5.89z" />
101
+ <glyph unicode="&#xe95b;" glyph-name="sms" d="M362.284 71.718c-24.261-31.088-56.444-58.563-96.55-82.425-40.329-23.995-100.793-41.759-181.391-53.293 48.013 37.125 76.849 75.792 86.508 116 9.458 39.372-4.794 90.574-42.757 153.604-79.719 80.044-128.095 185.211-128.095 300.396 0 250.737 229.23 454 512 454s512-203.263 512-454c0-250.737-229.23-454-512-454-52.088 0-102.359 6.897-149.716 19.718zM258 452c39.765 0 72 32.235 72 72s-32.235 72-72 72c-39.765 0-72-32.235-72-72s32.235-72 72-72zM512 452c39.765 0 72 32.235 72 72s-32.235 72-72 72c-39.765 0-72-32.235-72-72s32.235-72 72-72zM766 452c39.765 0 72 32.235 72 72s-32.235 72-72 72c-39.765 0-72-32.235-72-72s32.235-72 72-72z" />
102
+ <glyph unicode="&#xe95c;" glyph-name="star-alt" d="M512 148l-300.946-158.217 57.476 335.108-243.47 237.325 336.468 48.892 150.473 304.892 150.473-304.892 336.468-48.892-243.47-237.325 57.476-335.108-300.946 158.217zM512 238.382l194.696-102.358-37.184 216.797 157.512 153.536-217.676 31.63-97.348 197.248-97.348-197.248-217.676-31.63 157.512-153.536-37.184-216.797 194.696 102.358z" />
103
+ <glyph unicode="&#xe95d;" glyph-name="star" d="M512 148l-300.946-158.217 57.476 335.108-243.47 237.325 336.468 48.892 150.473 304.892 150.473-304.892 336.468-48.892-243.47-237.325 57.476-335.108z" />
104
+ <glyph unicode="&#xe95e;" glyph-name="sticky-alt" d="M726.069 97.23h135.522v706h-700v-433.133h516.478c26.51 0 48-21.49 48-48v-224.867zM630.069 133.785v140.312h-288.272l288.272-140.312zM65.59 851.23c0 26.51 21.49 48 48 48h796c26.51 0 48-21.49 48-48v-802c0-26.51-21.49-48-48-48h-215.481c-7.279 0-14.462 1.655-21.007 4.841l-580.519 282.559c-16.513 8.038-26.993 24.793-26.993 43.159v519.441z" />
105
+ <glyph unicode="&#xe95f;" glyph-name="sticky" d="M688 320h272v528c0 26.6-21.4 48-48 48h-800c-26.6 0-48-21.4-48-48v-800c0-26.6 21.4-48 48-48h528v272c0 26.4 21.6 48 48 48zM946 210l-196-196c-9-9-21.2-14-34-14h-12v256h256v-12.2c0-12.6-5-24.8-14-33.8z" />
106
+ <glyph unicode="&#xe960;" glyph-name="super-landing-alt" d="M512 960l512-256v-512l-512-256-512 256v512l512 256zM566.36 698.676c-13.187 9.127-28.491 13.324-44.633 13.324-15.388 0-29.35-4.196-42.788-12.337l-282.64-206.249c-5.912-4.314-5.675-13.168 0.4-17.247 15.008-10.076 33.076-15.951 52.491-15.951 18.092 0 34.99 5.099 49.35 13.953l187.548 137.117c10.482 8.393 23.187 12.589 35.639 12.589 12.579 0 25.157-4.196 35.639-12.589l170.923-122.262c16.562-12.044 16.562-36.76 0-48.804l-353.942-257.386c72.558 10.806 146.103 32.316 206.080 63.366 60.797 31.473 231.279 161.268 231.279 161.268 16.101 14.981 20.294 35.669 20.294 56.945 0 25.136-8.386 46.16-27.652 62.61l-237.988 171.654z" />
107
+ <glyph unicode="&#xe961;" glyph-name="super-landing" d="M598.976 850.682c-21.099 14.603-45.585 21.318-71.413 21.318-24.621 0-46.96-6.714-68.461-19.74l-452.224-329.998c-9.459-6.902-9.080-21.069 0.641-27.596 24.013-16.121 52.921-25.521 83.985-25.521 28.948 0 55.983 8.158 78.96 22.325l300.076 219.388c16.772 13.428 37.099 20.143 57.023 20.143 20.126 0 40.252-6.714 57.023-20.143l273.477-195.619c26.499-19.27 26.499-58.817 0-78.087l-566.307-411.818c116.093 17.289 233.765 51.706 329.728 101.385 97.275 50.357 370.047 258.028 370.047 258.028 25.761 23.97 32.47 57.071 32.47 91.112 0 40.218-13.417 73.857-44.243 100.176l-380.781 274.646z" />
108
+ <glyph unicode="&#xe962;" glyph-name="tachometer" d="M108.033 621.322c-0.215-0.497-0.39-0.922-0.521-1.266-6.257-16.428-13.307-36.218-17.819-51.543-4.063-13.801-5.899-23.951-6.164-25.298-0.026-0.131-1.286-4.568-2.834-12.412-0.439-2.226-1.079-6.113-1.918-11.661-1.35-10.822-2.271-18.11-2.761-21.863-0.687-5.258-2.094-16.643-2.972-34.279h338.852c16.256 40.445 55.846 69 102.105 69 5.377 0 10.663-0.386 15.834-1.131l193.157 307.281c-2.055 1.291-3.984 2.466-5.875 3.582-4.957 2.924-9.749 5.482-15.061 8.026-9.462 4.531-21.189 9.309-38.834 15.804-31.669 11.658-51.691 15.838-83.255 19.036-1.902 0.193-3.754 0.376-6.681 0.662-6.634 0.648-10.966 1.079-14.625 1.468l0.303-58.995c0.113-22.095-20.627-39.915-46.325-39.801s-46.622 18.117-46.736 40.212l-0.308 60.053c-7.824-0.845-10.565-1.502-14.628-1.919-5.685-0.584-17.363-2.996-21.32-3.668-7.283-1.238-16.298-3.675-26.559-6.284-9.949-2.53-14.855-4.343-19.573-5.593-7.189-1.904-9.17-2.507-14.545-4.51-10.359-3.861-23.154-8.756-40.054-16.465s-18.196-9.584-28.48-15.185c-17.758-9.671-28.013-16.514-35.654-21.396-2.136-1.365-4.483-3.017-6.295-4.282-2.533-1.768-5.636-4.148-8.085-6.098-4.025-3.205-7.317-5.055-13.727-10.879-2.086-1.895-10.096-8.282-16.286-13.965-3.055-2.805-4.846-4.313-6.413-5.744-0.849-0.776-3.096-3.236-3.9-3.97-17.275-15.776-23.113-23.537-27.417-28.043-1.968-2.060-4.354-5.393-6.277-7.478-1.876-2.033-11.087-13.844-12.846-15.983-3.776-4.593-9.022-11.893-14.453-20.017l71.789-38.31c19.503-10.408 26.492-35.919 15.611-56.981s-35.513-29.699-55.016-19.292l-73.43 39.186zM879.912 692.954c-9.875 13.644-22.862 31.163-38.846 52.377-16.68 19.709-40.816 40.458-72.414 61.941-7.102 4.828-27.317 18.722-30.775 21.069-0.177 0.12-0.353 0.239-0.527 0.358l-152.777-322.319c13.795-11.55 24.715-26.42 31.532-43.38h341.408c-0.174 2.317-0.379 4.773-0.615 7.417-0.437 4.884-2.397 24.765-2.252 23.259-2.124 22.023-15.849 80.356-23.144 101.33-2.328 6.693-5.543 14.849-9.133 23.303l-67.784-36.172c-19.503-10.408-44.135-1.771-55.016 19.292s-3.892 46.574 15.611 56.981l64.733 34.544zM952.239 383h-335.353c-15.74-41.5-55.868-71-102.886-71s-87.146 29.5-102.886 71h-333.359c1.104-7.91 2.392-15.87 4.024-23.685 2.3-11.016 4.669-22.021 7.914-32.985 8.851-27.159 16.393-48.489 22.884-61.915 4.74-9.804 9.366-21.083 18.581-35.415h764.612c11.616 21.697 21.343 41.913 29.182 60.622 8.276 19.753 11.688 28.736 14.178 37.166 0.573 1.94 1.132 3.966 1.728 6.259 0.724 2.785 1.483 5.881 2.605 10.59-0.091-0.383 2.584 10.903 3.521 14.808 2.316 9.654 3.978 17.412 5.255 24.554zM761.797 899.884l37.789 60.116-30.523-64.396c6.311-3.746 13.539-8.147 19.968-12.512 3.687-2.504 15.467-8.289 22.352-12.97 37.382-25.415 66.896-50.873 88.536-76.691l0.631-0.753 0.592-0.785c13.182-17.49 19.154-25.533 34.967-48.055s25.951-40.569 29.366-46.319c3.361-5.659 13.818-24.968 22.658-50.412s10.596-36.487 15.042-51.346c3.512-11.739 6.399-22.829 8.253-29.227 7.793-26.887 10.541-64.626 11.639-72.117s0.683-59.179 0.933-66.496c0.42-12.262-2.822-43.407-3.217-46.713-1.861-15.597-11.301-57.144-11.689-58.637-0.797-3.067-11.043-41.215-15.258-53.728s-25.855-55.635-43.656-87.209l-19.758-28.635-837.069-1-11.486 14.962c-16.729 24.582-27.168 48.174-38.905 72.784-7.825 16.407-16.144 39.358-24.957 68.854-7.568 25.466-10.721 39.96-14.003 65.815-3.447 27.156-3.483 44.394-4.001 53.507-0.613 10.771-0.951 33.65 0 55.736 0.974 22.629 1.456 19.503 3.533 32.052 0.594 3.587 1.977 17.534 2.424 19.867 7.722 40.335 11.020 61.43 24.75 97.477 2.010 5.276 10.344 28.704 12.254 33.411 1.142 2.813 16.729 32.966 17.938 35.545 5.461 11.656 1.775 4.512 20.968 32.982 16.15 23.956 22.752 33.298 30.702 42.97 2.681 3.261 5.385 6.364 8.242 9.461 8.532 9.246 11.591 12.11 41.442 39.365 4.568 4.17 19.977 18.35 23.311 21.379 7.525 6.837 12.976 11.568 18.526 15.987 3.69 2.939 7.356 5.676 11.214 8.369 11.266 7.863 23.704 15.138 48.782 28.795 33.324 18.148 56.525 28.432 81.158 36.226 6.802 2.152 13.77 4.143 22.038 6.333 5.1 1.351 8.96 2.337 19.211 4.928 25.731 6.504 32.363 8.070 42.448 9.784 5.764 0.98 5.67 0.669 12.907 1.412 5.784 0.594 68.237-0.051 73.948 0 10.964 0.097 23.476 1.179 44.86-1.412 6.083-0.737 22.763-2.328 26.943-3.009s12.223-2.056 14.235-2.26c37.49-3.798 54.212-10.013 92.45-24.088s29.621-10.531 41.582-16.258c7.3-3.495 16.663-7.626 23.494-11.655 0.764-0.451 1.579-0.93 2.437-1.433zM316-12c-22.091 0-40 21.49-40 48s17.909 48 40 48h400c22.091 0 40-21.49 40-48s-17.909-48-40-48h-400z" />
109
+ <glyph unicode="&#xe963;" glyph-name="tag" d="M0 455.764v408.236c0 53.020 42.98 96 96 96h408.236c25.461 0 49.879-10.114 67.882-28.118l423.764-423.764c37.49-37.49 37.49-98.274 0-135.764l-408.236-408.236c-37.49-37.49-98.274-37.49-135.764 0l-423.764 423.764c-18.004 18.003-28.118 42.421-28.118 67.882zM224 832c-53.020 0-96-42.98-96-96s42.98-96 96-96c53.020 0 96 42.98 96 96s-42.98 96-96 96z" />
110
+ <glyph unicode="&#xe964;" glyph-name="tasks" d="M846 896v-112h114v112h-114zM40 960h944c22.091 0 40-17.909 40-40v-160c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v160c0 22.091 17.909 40 40 40zM340 504v-112h620v112h-620zM40 568h944c22.091 0 40-17.909 40-40v-160c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v160c0 22.091 17.909 40 40 40zM512 112v-112h448v112h-448zM40 176h944c22.091 0 40-17.909 40-40v-160c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v160c0 22.091 17.909 40 40 40z" />
111
+ <glyph unicode="&#xe965;" glyph-name="text-cog" d="M763.093 148.462c-12.913 3.502-25.324 8.649-36.931 15.314l-38.206-31.724c-7.952-6.603-19.625-6.059-26.928 1.255l-23.754 23.787c-7.284 7.294-7.831 18.93-1.263 26.875l31.712 38.361c-6.652 11.629-11.788 24.065-15.284 37.003l-49.444 4.624c-10.279 0.961-18.138 9.589-18.138 19.913v33.682c0 10.321 7.854 18.947 18.13 19.912l49.452 4.645c3.529 13.086 8.698 25.504 15.284 37.003l-31.711 38.34c-6.569 7.942-6.027 19.575 1.252 26.871l23.752 23.812c7.296 7.315 18.963 7.868 26.919 1.277l38.256-31.691c11.607 6.665 24.018 11.811 36.931 15.314l4.596 49.534c0.954 10.286 9.585 18.152 19.914 18.152h33.525c10.324 0 18.951-7.858 19.913-18.137l4.639-49.577c13.061-3.536 25.454-8.715 36.931-15.314l38.206 31.724c7.952 6.603 19.625 6.059 26.928-1.255l23.765-23.798c7.279-7.289 7.831-18.916 1.274-26.862l-31.679-38.391c6.586-11.499 11.755-23.917 15.284-37.003l49.452-4.645c10.276-0.965 18.13-9.591 18.13-19.912v-33.689c0-10.321-7.854-18.947-18.13-19.912l-49.452-4.645c-3.529-13.086-8.698-25.504-15.284-37.003l31.711-38.34c6.569-7.942 6.027-19.575-1.252-26.871l-23.74-23.8c-7.301-7.319-18.977-7.868-26.932-1.266l-38.226 31.724c-11.607-6.665-24.018-11.811-36.931-15.314l-4.639-49.577c-0.962-10.279-9.589-18.137-19.913-18.137h-33.546c-10.321 0-18.947 7.854-19.912 18.129l-4.661 49.612zM804.415 218.239c45.472 0 82.335 36.934 82.335 82.495s-36.862 82.495-82.335 82.495c-45.472 0-82.335-36.934-82.335-82.495s36.862-82.495 82.335-82.495zM403.212 831.969v-831.969h95.813v-64h-319.376v64h95.813v831.969h-211.587v-113.984h-63.875v242.016h678.674v-242.016h-63.875v113.984h-211.587z" />
112
+ <glyph unicode="&#xe966;" glyph-name="trash" d="M104 710h816l-36.218-717.027c-1.612-31.92-27.963-56.973-59.924-56.973h-621.989c-31.905 0-58.23 24.969-59.916 56.829l-37.953 717.171zM220.148 550.664l42-486.212c1.901-22.009 21.285-38.31 43.294-36.409s38.31 21.285 36.409 43.294l-42 486.212c-1.901 22.009-21.285 38.31-43.294 36.409s-38.31-21.285-36.409-43.294zM793.852 562.558c1.901 22.009-14.4 41.393-36.409 43.294s-41.393-14.4-43.294-36.409l-42-486.212c-1.901-22.009 14.4-41.393 36.409-43.294s41.393 14.4 43.294 36.409l42 486.212zM466.5 554.024l1-486.212c0.045-22.091 17.991-39.963 40.082-39.918s39.963 17.991 39.918 40.082l-1 486.212c-0.045 22.091-17.991 39.963-40.082 39.918s-39.963-17.991-39.918-40.082zM390.889 915.259l39.341 43.559 202.667-24.884 24.421-51.388 264.431-32.468c17.541-2.154 30.015-18.12 27.862-35.661l-7.792-63.462c-2.154-17.541-18.12-30.015-35.661-27.862l-807.846 99.191c-17.541 2.154-30.015 18.12-27.862 35.661l7.792 63.462c2.154 17.541 18.12 30.015 35.661 27.862l276.986-34.010z" />
113
+ <glyph unicode="&#xe967;" glyph-name="upload" d="M40 256.626h361.4c2.667-69.527 39.533-104.29 110.6-104.29s106.6 34.763 106.6 104.29h365.4c22.091 0 40-17.909 40-40v-240.626c0-22.091-17.909-40-40-40h-944c-22.091 0-40 17.909-40 40v240.626c0 22.091 17.909 40 40 40zM92 56.235c22.091 0 40 17.944 40 40.078s-17.909 40.078-40 40.078c-22.091 0-40-17.944-40-40.078s17.909-40.078 40-40.078zM308 72.266c13.255 0 24 10.766 24 24.047s-10.745 24.047-24 24.047c-13.255 0-24-10.766-24-24.047s10.745-24.047 24-24.047zM208 72.266c13.255 0 24 10.766 24 24.047s-10.745 24.047-24 24.047c-13.255 0-24-10.766-24-24.047s10.745-24.047 24-24.047zM698 164.446h270v-20.039h-270v20.039zM698 96.313h270v-20.039h-270v20.039zM698 28.18h270v-20.039h-270v20.039zM560 795.426v-546.049c0-26.562-21.49-48.094-48-48.094s-48 21.532-48 48.094v547.585l-220.665-218.221c-18.867-18.659-49.259-18.459-67.881 0.445s-18.423 49.355 0.444 68.014l302.283 298.935c18.802 18.594 49.066 18.47 67.715-0.278l297.373-298.935c18.714-18.813 18.664-49.264-0.111-68.015s-49.168-18.701-67.882 0.112l-215.277 216.407z" />
114
+ <glyph unicode="&#xe968;" glyph-name="user-alt" d="M511.556 324.175c273.038 0 409.556-129.392 409.556-388.175h-819.113c0 258.783 136.519 388.175 409.556 388.175zM511.203 439.322c143.781 0 260.339 116.558 260.339 260.339s-116.558 260.339-260.339 260.339c-143.781 0-260.339-116.558-260.339-260.339s116.558-260.339 260.339-260.339z" />
115
+ <glyph unicode="&#xe969;" glyph-name="user" d="M80 960h864c44.183 0 80-35.817 80-80v-864c0-44.183-35.817-80-80-80h-864c-44.183 0-80 35.817-80 80v864c0 44.183 35.817 80 80 80zM504.244 368.387c-188.78 0-283.17-89.462-283.17-268.387h566.34c0 178.924-94.39 268.387-283.17 268.387zM504 448c99.411 0 180 80.589 180 180s-80.589 180-180 180c-99.411 0-180-80.589-180-180s80.589-180 180-180z" />
116
+ <glyph unicode="&#xe96a;" glyph-name="users-alt" d="M512 622.132c149.008 0 223.513-70.173 223.513-210.518h-447.025c0 140.345 74.504 210.518 223.513 210.518zM510.701 676.711c78.228 0 141.645 63.416 141.645 141.645s-63.416 141.645-141.645 141.645c-78.228 0-141.645-63.416-141.645-141.645s63.416-141.645 141.645-141.645zM194.924 120.528c129.949 0 194.924-61.509 194.924-184.528h-389.848c0 123.019 64.975 184.528 194.924 184.528zM196.223 167.31c68.181 0 123.452 55.271 123.452 123.452s-55.271 123.452-123.452 123.452c-68.181 0-123.452-55.271-123.452-123.452s55.271-123.452 123.452-123.452zM827.777 120.528c129.083 0 193.624-61.509 193.624-184.528h-387.249c0 123.019 64.541 184.528 193.624 184.528zM826.477 167.31c67.463 0 122.152 54.689 122.152 122.152s-54.689 122.152-122.152 122.152c-67.463 0-122.152-54.689-122.152-122.152s54.689-122.152 122.152-122.152z" />
117
+ <glyph unicode="&#xe96b;" glyph-name="users" d="M80 960h864c44.183 0 80-35.817 80-80v-864c0-44.183-35.817-80-80-80h-864c-44.183 0-80 35.817-80 80v864c0 44.183 35.817 80 80 80zM514 582c-114.667 0-172-54-172-162h344c0 108-57.333 162-172 162zM513 624c60.199 0 109 48.801 109 109s-48.801 109-109 109c-60.199 0-109-48.801-109-109s48.801-109 109-109zM270 196c-100 0-150-47.333-150-142h300c0 94.667-50 142-150 142zM271 232c52.467 0 95 42.533 95 95s-42.533 95-95 95c-52.467 0-95-42.533-95-95s42.533-95 95-95zM757 196c-99.333 0-149-47.333-149-142h298c0 94.667-49.667 142-149 142zM756 232c51.915 0 94 42.085 94 94s-42.085 94-94 94c-51.915 0-94-42.085-94-94s42.085-94 94-94z" />
118
+ <glyph unicode="&#xe96c;" glyph-name="window-maximize" d="M928 896h-832c-53 0-96-43-96-96v-704c0-53 43-96 96-96h832c53 0 96 43 96 96v704c0 53-43 96-96 96zM928 108c0-6.6-5.4-12-12-12h-808c-6.6 0-12 5.4-12 12v468h832v-468z" />
119
+ <glyph unicode="&#xe96d;" glyph-name="youtube" d="M1002.603 688.454c-11.777 43.12-46.476 77.079-90.532 88.604-79.856 20.942-400.070 20.942-400.070 20.942s-320.212 0-400.070-20.942c-44.057-11.526-78.756-45.484-90.532-88.604-21.397-78.157-21.397-241.223-21.397-241.223s0-163.067 21.397-241.223c11.777-43.12 46.476-75.664 90.532-87.189 79.858-20.942 400.070-20.942 400.070-20.942s320.212 0 400.070 20.942c44.057 11.525 78.756 44.069 90.532 87.189 21.397 78.157 21.397 241.223 21.397 241.223s0 163.067-21.397 241.223zM407.272 299.179v296.104l267.635-148.056-267.635-148.049z" />
120
+ <glyph unicode="&#xe96e;" glyph-name="rocket" d="M952.335 871.339c-1.142 5.356-15.79 19.781-20.865 20.862-55.071 11.799-98.17 11.799-141.098 11.799-176.501 0-282.367-94.393-361.382-218.883-98.056 0-157.46 0-178.211 0-31.127 0-162.44-247.627-152.213-259.463 7.371-8.531 18.303-14.14 31.125-14.14h162.647c-10.091-21.888-20.352-43.606-30.785-64.468-5.302-10.602-3.25-23.256 5.131-31.635l108.774-108.757c8.38-8.379 21.036-10.431 31.64-5.13 20.865 10.431 42.586 20.52 64.477 30.609v-162.623c0-15.508 8.347-28.265 20.132-35.261 11.345-6.735 253.342 125.379 253.342 156.33v178.526c124.166 79.174 218.916 185.366 218.916 360.986 0.171 43.093 0.171 86.185-11.63 141.248zM772 630c-45.271 0-82 36.729-82 82s36.729 82 82 82c45.271 0 82-36.729 82-82s-36.729-82-82-82zM150.496 141.734c-16.049-32.669-23.522-58.595-22.422-77.777 26.507 3.645 52.168 12.009 76.98 25.094s62.461 48.269 112.945 105.554c-57.122-93.592-97.556-145.57-121.301-155.933s-68.446-25.142-134.101-44.336c15.597 70.19 28.869 116.946 39.815 140.269s62.148 63.788 153.606 121.395c-54.3-43.508-89.474-81.597-105.523-114.266z" />
121
+ <glyph unicode="&#xe96f;" glyph-name="flag" d="M56 738.473c-33.651 21.257-56 58.782-56 101.527 0 66.274 53.726 120 120 120s120-53.726 120-120c0-42.745-22.349-80.27-56-101.527v-802.473h-128v802.473zM253.379 712.059c67.058-58.136 141.057-87.204 221.996-87.204 121.409 0 278.455 131.526 361.617 139.821 55.441 5.53 117.742-12.009 186.901-52.617v-502.116c-46.859 36.45-102.618 54.676-167.278 54.676-96.99 0-245.162-130.948-344.615-130.948-66.302 0-152.509 25.424-258.621 76.272v502.116z" />
122
+ <glyph unicode="&#xe970;" glyph-name="store" d="M268 928h488v-300h-488v300zM0 572h1024v-606h-1024v606zM310 448v-440h178v440h-178zM536 448v-440h178v440h-178zM0 818h210v-80h-210v80zM818 818h206v-80h-206v80zM818 910h206v-64h-206v64zM0 910h210v-64h-210v64zM816 710h210v-64h-210v64zM0 710h210v-64h-210v64z" />
123
+ <glyph unicode="&#xe971;" glyph-name="calendar" d="M928 832h-832c-53 0-96-43-96-96v-704c0-53 43-96 96-96h832c53 0 96 43 96 96v704c0 53-43 96-96 96zM928 44c0-6.6-5.4-12-12-12h-808c-6.6 0-12 5.4-12 12v568h832v-568zM242 960h128v-128h-128v128zM208 520h128v-128h-128v128zM448 520h128v-128h-128v128zM688 520h128v-128h-128v128zM208 280h128v-128h-128v128zM448 280h128v-128h-128v128zM688 280h128v-128h-128v128zM654 960h128v-128h-128v128z" />
124
+ <glyph unicode="&#xe972;" glyph-name="minus" d="M512.592 512.58l442.989-0.085c85.333-0.016 85.309-128.016-0.025-128l-885.978 0.17c-85.333 0.016-85.309 128.016 0.025 128l442.989-0.085z" />
125
+ </font></defs></svg>
Binary file
Binary file
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/black-cat</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/black-cat" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <circle id="Oval" fill="#FBC607" cx="256" cy="256" r="256"></circle>
8
+ <polygon id="Path-8" fill="#231F20" fill-rule="nonzero" points="198.441113 347.869365 230.999268 315.330472 243.391863 378.487161 222.266457 386.746781"></polygon>
9
+ <path d="M90.6700939,268.78396 C93.7727586,271.522881 97.4314249,273.853836 101.646093,275.776824 C105.860761,277.699813 110.478753,279.145174 115.500066,280.112908 C121.356944,280.705804 126.100218,280.705804 129.729886,280.112908 C135.17439,279.223565 140.421801,277.907431 147.783787,273.852146 C155.145774,269.796861 155.938558,268.664521 161.429891,262.651241 C165.090779,258.642388 168.418455,253.751 171.412922,247.977076 C177.781183,247.673843 183.260292,246.350185 187.850245,244.006106 C194.735177,240.489984 193.463675,241.339302 199.505366,236.7676 C205.547056,232.195898 204.700425,232.195898 209.854152,226.930713 C213.289969,223.42059 216.568461,217.88291 219.689631,210.317672 L350.83881,210.317672 L460.383483,164.806867 L467.049251,181.898331 L366.861357,248.705695 L401.377815,369.390121 L384.461309,381.383398 L329.840369,325.127075 L283.422231,386.746781 L264.395788,375.743568 L283.422231,305.248109 L234.799473,305.248109 L151.359867,386.746781 L129.729886,370.89504 L146.585834,342.292472 L109.882058,363.955483 L103.867054,355.939071 L106.986782,348.346972 L100.512302,351.126438 L94.448756,343.586306 L110.936545,323.830562 L110.936545,303.84016 L92.5675956,297.524751 L91.3444088,287.912878 L101.646093,285.132877 L82.2269807,281.002252 L82.2269807,271.584856 L90.6700939,268.78396 Z M159.297377,276.550698 L159.297377,320.936695 L172.693523,302.107296 L159.297377,276.550698 Z" id="Combined-Shape" fill="#231F20" fill-rule="nonzero"></path>
10
+ <path d="M65.7815846,195.570815 L101.618361,223.162213 L142.895501,221.94203 L176.418078,205.385007 C176.679105,209.840177 176.406941,214.250366 175.601586,218.615574 C174.393553,225.163386 174.117931,227.750777 170.67741,236.500728 C167.236889,245.250678 164.892062,249.735035 161.583815,254.265642 C158.275569,258.796248 156.781909,260.016273 153.561101,262.752379 C150.340293,265.488485 145.945101,267.842074 142.895501,269.702729 C140.862435,270.943165 136.541932,272.399571 129.933993,274.071947 C124.60335,274.880166 119.620161,274.880166 114.984427,274.071947 C110.348694,273.263728 102.01123,270.184082 98.7363281,268.164551 C97.2618086,267.25526 91.1486305,262.396097 88.7177734,259.811523 C85.749706,256.655769 82.5905124,252.574454 81.0761719,250.158203 C76.944286,243.56545 78.2384743,245.089832 75.0116216,238.366303 C72.8603866,233.88395 70.8576306,228.11034 69.0033537,221.045471 L65.7815846,195.570815 Z M86.25,241.466724 C86.25,242.438397 86.3860038,243.175308 86.9842346,243.796721 C87.3830552,244.210997 87.9392621,244.598872 88.6528553,244.960348 C88.9221595,245.074705 89.3189133,245.131883 89.8431169,245.131883 C90.6294223,245.131883 91.7408258,244.648158 93.41625,244.683149 C95.0916743,244.718139 96.5061273,244.830201 98.3376574,245.131883 C100.169187,245.433566 100.165897,245.535947 102.591973,246.123784 C105.01805,246.71162 105.968612,247.40678 106.606358,247.956609 C107.244104,248.506438 107.437063,248.506438 108.532571,248.506438 C109.26291,248.506438 109.875859,248.323162 110.371417,247.956609 C111.550093,246.938182 112.13943,246.236998 112.13943,245.853058 C112.13943,245.277146 112.718246,244.190619 111.227241,242.764269 C109.736235,241.33792 109.3613,240.951944 106.211045,239.716223 C104.110874,238.89241 102.044122,238.313579 100.010787,237.979732 C98.2265939,237.664203 96.1986088,237.506438 93.9268319,237.506438 C91.6550549,237.506438 90.0271429,237.664203 89.0430958,237.979732 C88.2681726,238.378138 87.6746388,238.812531 87.2624946,239.28291 C86.6442784,239.988478 86.25,240.495052 86.25,241.466724 Z M154.014979,242.209236 C154.014979,241.217994 153.940981,240.566402 153.272527,239.846623 C152.826891,239.366771 152.225485,238.915731 151.46831,238.493505 C150.097375,237.901268 148.183714,237.60515 145.727327,237.60515 C143.270939,237.60515 141.215831,237.766351 139.562002,238.088754 C137.003731,238.83291 134.589177,239.625191 132.318342,240.465597 C128.912088,241.726206 128.829849,241.632467 127.217681,243.087544 C126.142902,244.057595 125.78847,245.317036 126.154384,246.865867 L127.217681,248.385404 C127.75351,248.759358 129.183429,249.60515 129.973117,249.60515 C131.157648,249.60515 131.443566,249.481016 132.055859,249.044219 C132.668151,248.607422 133.751566,248.019135 136.396463,247.174479 C139.04136,246.329824 139.016131,246.47036 140.996496,246.162602 C142.97686,245.854844 144.506256,245.740525 146.317829,245.70483 C148.129403,245.669135 149.331122,246.162602 150.181324,246.162602 C150.748126,246.162602 151.177121,246.104272 151.46831,245.987611 C152.163567,245.89245 152.764973,245.496762 153.272527,244.800549 C154.033858,243.75623 154.014979,243.200478 154.014979,242.209236 Z" id="Combined-Shape" fill="#231F20" fill-rule="nonzero"></path>
11
+ <path d="M71.2633833,113.811433 L116.326371,152.322317 L178.306896,151.44932 L232.428266,112.06867 C233.029501,120.719894 233.029501,129.56791 232.428266,138.612718 C231.526412,152.179929 230.34668,158.033691 228.668457,165.841797 C226.990234,173.649902 221.154004,194.301437 218.379883,201.422363 C215.605762,208.54329 213.829102,211.435547 206.853027,221.05223 C199.876953,230.668914 195.018975,233.418427 190.785759,236.074016 C187.963615,237.844407 182.677243,239.725315 174.926645,241.716738 C177.678119,234.918596 179.650651,228.030427 180.844239,221.05223 C182.037827,214.074035 182.634886,205.939342 182.635417,196.648154 L139.896173,216.691553 L104.068771,216.691553 C97.3398501,211.601896 92.0635361,205.920601 88.2398288,199.647667 C84.4161215,193.374734 81.4415199,185.520096 79.316024,176.083756 C76.8442917,167.193244 75.0187902,158.188246 73.8395195,149.068763 C72.6602489,139.94928 71.8015368,128.196836 71.2633833,113.811433 Z M101.727477,180.44495 L102.540674,183.491368 C103.055251,184.070675 103.772894,184.613065 104.693604,185.118538 C105.041073,185.278451 105.552983,185.358407 106.229334,185.358407 C107.243861,185.358407 108.677844,184.681985 110.839552,184.730914 C113.00126,184.779843 114.826251,184.936546 117.189374,185.358407 C119.552497,185.780268 119.548252,185.923434 122.678485,186.745442 C125.808719,187.567449 127.035178,188.539535 127.858026,189.308394 C128.680875,190.077253 128.92984,190.077253 130.343314,190.077253 C131.28563,190.077253 132.076484,189.820967 132.715876,189.308394 C134.236656,187.884265 134.997046,186.903757 134.997046,186.366869 C134.997046,185.561537 135.743861,184.042179 133.820098,182.047627 C131.896336,180.053075 131.412577,179.513342 127.347975,177.785358 C124.63824,176.633368 121.971623,175.823954 119.348122,175.357115 C117.046075,174.915891 114.429477,174.695279 111.498328,174.695279 C108.567178,174.695279 106.466772,174.915891 105.19711,175.357115 C104.197269,175.914231 103.431465,176.521669 102.899698,177.179429 C102.102047,178.166068 101.727477,179.086201 101.727477,180.44495 Z M193.119757,181.525094 C193.119757,180.163731 193.103826,178.762235 192.279983,177.773697 C191.730754,177.114672 190.989544,176.495219 190.056356,175.915337 C188.366733,175.101965 186.008222,174.695279 182.980821,174.695279 C179.95342,174.695279 177.42058,174.916671 175.382301,175.359455 C172.229332,176.381473 169.25349,177.469584 166.454774,178.62379 C162.256701,180.355098 162.25404,180.845989 160.267106,182.844378 C158.942483,184.176637 158.472761,185.699798 158.85794,187.413859 L161.113906,190.405588 C161.774294,190.919173 162.591118,191.175966 163.564377,191.175966 C165.024266,191.175966 165.376648,191.005481 166.131275,190.405588 C166.885901,189.805695 168.221167,188.997747 171.480898,187.837705 C174.74063,186.677664 174.709536,186.870675 177.150257,186.448003 C179.590979,186.02533 181.475898,185.868325 183.708592,185.819302 C185.941285,185.770279 187.422356,186.448003 188.470197,186.448003 C189.168758,186.448003 189.697478,186.367893 190.056356,186.207672 C190.913233,186.076978 191.654442,185.533545 192.279983,184.577372 L193.119757,181.525094 Z" id="Combined-Shape" fill="#231F20" fill-rule="nonzero"></path>
12
+ <path d="M37.4518201,124.39485 C33.8955195,129.939031 29.7616865,137.333524 25.0503212,146.578327 C20.3389558,155.823129 16.5698624,165.195446 13.7430407,174.695279 C9.62966007,189.884163 6.83363998,200.735248 5.35498047,207.248535 C3.13699121,217.018466 3.13051068,221.584961 2.38574219,226.95166 C1.88922986,230.52946 1.0939439,240.21224 -0.000115675592,256 C0.314711083,268.643146 1.10999704,279.922768 2.38574219,289.838867 C3.66148734,299.754966 5.56645408,309.463541 8.1006424,318.964592 C12.959643,335.219143 18.1191294,349.57795 23.5791016,362.041016 C29.0390737,374.504081 35.3956473,386.432111 42.6488222,397.825108 C53.2529846,411.658302 62.7443928,423.100502 71.1230469,432.151706 C83.691028,445.728512 85.3733717,447.190969 99.5322266,458.549805 C108.971463,466.122362 119.057794,473.011697 129.79122,479.217811 C140.283503,484.822488 152.028552,490.048167 165.026367,494.89485 C184.52309,502.164874 186.554401,502.811455 203.687366,506.772533 C215.109342,509.413251 226.884146,511.15574 239.011778,512 L274.638116,512 C285.436711,510.429224 297.354247,508.107284 310.390723,505.03418 C323.427198,501.961076 335.697029,498.581299 347.200214,494.89485 C365.825853,487.198674 378.711589,480.991536 385.857422,476.273437 C393.003255,471.555339 405.877334,462.166267 424.479657,448.106224 C435.256779,438.138502 444.987193,427.854373 453.670898,417.253839 C462.354604,406.653304 469.869373,395.885572 476.215204,384.950643 C485.961019,365.5254 493.16793,349.495953 497.835938,336.862305 C502.503945,324.228656 505.876263,311.626128 507.952891,299.054721 C509.393203,291.21264 510.376786,281.925444 510.90364,271.193133 C511.430494,260.460822 511.430494,249.711895 510.90364,238.946352 C509.484907,223.800121 507.671559,211.084456 505.463597,200.799356 C503.991623,193.942622 502.559075,188.182966 501.165953,183.520387 L471.940767,202.798703 C475.083593,211.662856 477.247882,218.626603 478.433633,223.689946 C481.101572,235.082465 481.836838,240.729032 482.198574,246.601157 C482.560311,252.473281 482.852226,268.436523 482.198574,273.905273 C481.544922,279.374023 478.433633,290.315622 476.619654,295.395855 C474.805676,300.476087 472.228505,309.093543 465.307705,322.430698 C458.386905,335.767852 457.68095,337.275998 448.976546,348.66721 C440.272144,360.058422 439.32706,360.89485 428.470563,370.638451 C417.614064,380.382059 415.424636,381.287899 403.965263,389.064422 C392.505891,396.840945 394.841441,396.338774 379.526316,403.852841 C364.211192,411.366907 363.611828,411.668314 346.509766,417.253839 C329.407704,422.839362 329.164425,422.688741 310.390723,426.432487 C297.874922,428.928318 285.011906,430.834723 271.801673,432.151706 C260.655869,433.139703 248.47742,433.139703 235.266325,432.151706 C227.23856,431.551345 209.305004,429.70348 195.32669,426.432487 C171.829692,420.934075 169.335036,419.802735 150.300424,412.478882 C131.265812,405.155028 131.336864,405.181328 114.926237,395.497202 C98.5156093,385.813074 98.2447526,385.129637 85.4530978,374.211622 C72.6614428,363.293607 73.103771,363.536971 62.9726056,351.153407 C52.8414402,338.769844 52.913,338.551704 45.6590094,325.570366 C38.4050187,312.589029 37.5829673,310.040939 33.881526,299.09363 C30.1800848,288.146322 30.7748935,287.416345 29.2026384,276.899333 C27.6303834,266.382322 27.4089936,266.864083 27.4089936,255.798046 C27.4089936,244.732009 28.0815464,240.657882 29.2026384,233.664778 C30.3237305,226.671674 32.1733398,219.859863 33.881526,213.799882 C35.5897121,207.739901 37.6496582,201.830048 42.6488222,192.657726 C45.9815983,186.542843 46.5062533,184.740966 51.3683083,178.917381 C47.5621091,167.249285 44.6556137,157.469242 42.6488222,149.577253 C40.6420309,141.685264 38.9096968,133.29113 37.4518201,124.39485 Z" id="Path-23" fill="#231F20" fill-rule="nonzero"></path>
13
+ <path d="M124.491435,112.06867 C132.102591,106.767823 138.536133,103.854004 141.377889,102.611176 C158.240964,95.2361953 163.864746,93.5258789 179.785459,89.1622425 C195.706173,84.7986061 211.142578,82.0487209 216.820312,81.1698683 C222.498047,80.2910156 236.167062,78.7158203 256,78.7158203 C275.832939,78.7158203 275.327593,79.3060242 288.997493,81.1698683 C302.667392,83.0337123 312.98672,84.5268618 330.112235,89.1622425 C347.237748,93.7976233 352.438442,95.5201139 368.212865,102.611176 C383.987287,109.702238 391.030553,112.793978 406.506089,123.503504 C413.384105,128.263293 424.690427,137.428077 440.425053,150.997854 L480.705568,136.036481 C477.469397,128.652428 471.917648,119.566948 464.050321,108.780043 C456.182995,97.9931376 447.3154,87.3082305 437.447537,76.7253218 C427.409866,66.6593513 417.09605,57.733658 406.506089,49.9482422 C395.916128,42.1628263 384.153927,34.8589058 371.219486,28.0364807 C356.67464,21.3677156 343.774329,16.221278 332.518555,12.597168 C315.634893,7.16100286 308.033822,5.46475609 294.058594,3.19238281 C284.741775,1.67746729 273.28684,0.613339688 259.693791,-9.9475983e-14 L238.369379,-9.9475983e-14 C229.974059,0.041649135 217.96014,1.93292238 202.327623,5.67381974 C178.878848,11.2851658 167.470065,16.0211931 158.78418,19.0449219 C150.098295,22.0686506 134.363714,29.7397516 118.433592,40.2403433 C102.503472,50.7409351 90.922824,59.9726947 83.6916488,67.9356223 L124.491435,112.06867 Z" id="Path-22" fill="#231F20" fill-rule="nonzero"></path>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/cart</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs>
7
+ <path d="M179.085937,404.636719 C191.788487,404.636719 202.085937,394.339268 202.085937,381.636719 C202.085937,368.93417 191.788487,358.636719 179.085937,358.636719 C166.383388,358.636719 156.085937,368.93417 156.085937,381.636719 C156.085937,394.339268 166.383388,404.636719 179.085937,404.636719 Z M179.085937,388.636719 C175.219944,388.636719 172.085937,385.502712 172.085937,381.636719 C172.085937,377.770726 175.219944,374.636719 179.085937,374.636719 C182.951931,374.636719 186.085937,377.770726 186.085937,381.636719 C186.085937,385.502712 182.951931,388.636719 179.085937,388.636719 Z M331.40625,404.636719 C344.108799,404.636719 354.40625,394.339268 354.40625,381.636719 C354.40625,368.93417 344.108799,358.636719 331.40625,358.636719 C318.703701,358.636719 308.40625,368.93417 308.40625,381.636719 C308.40625,394.339268 318.703701,404.636719 331.40625,404.636719 Z M331.40625,388.636719 C327.540257,388.636719 324.40625,385.502712 324.40625,381.636719 C324.40625,377.770726 327.540257,374.636719 331.40625,374.636719 C335.272243,374.636719 338.40625,377.770726 338.40625,381.636719 C338.40625,385.502712 335.272243,388.636719 331.40625,388.636719 Z M170.737417,159.03125 L371.8125,159.03125 C380.15702,159.03125 385.95409,167.337142 383.076294,175.169721 L352.334106,288.240034 C350.709759,292.661065 346.649282,295.723057 341.952021,296.069127 L200.167637,306.515069 C200.117374,307.719563 199.493136,309.48928 198.294922,311.824219 L193.594587,331.628906 L342,331.628906 C348.627417,331.628906 354,337.001489 354,343.628906 C354,350.256323 348.627417,355.628906 342,355.628906 L168.851563,355.628906 C159.623211,355.628906 159.848561,344.646931 164.448862,336.646949 L175.712374,307.520493 L143.965027,145 L112,145 C105.372583,145 100,139.627417 100,133 C100,126.372583 105.372583,121 112,121 L153.314909,121 C158.812312,121 163.606679,124.735564 164.950734,130.066132 L170.737417,159.03125 Z M175.532163,183.03125 L184.39494,227.393684 L225.128348,226.185286 L219.903989,186.038166 C219.770471,185.012132 219.785992,183.999786 219.931616,183.03125 L175.532163,183.03125 Z M187.574002,243.306413 L195.463397,282.796606 L232.143534,280.094202 L227.203339,242.130768 L187.574002,243.306413 Z M248.033767,278.923492 L287.674062,276.002999 L288.36994,240.316198 L243.184224,241.656679 L248.033767,278.923492 Z M235.55316,183.03125 C235.563745,183.101771 235.573672,183.172612 235.582931,183.243766 L241.109233,225.711196 L288.682251,224.299894 L289.45873,184.479617 C289.468353,183.986081 289.510174,183.502377 289.581761,183.03125 L235.55316,183.03125 Z M305.109627,183.03125 C305.202182,183.639744 305.244754,184.268221 305.232233,184.910348 L304.473288,223.831437 L344.839008,222.633946 L354.619212,183.03125 L305.109627,183.03125 Z M340.856766,238.759123 L304.160977,239.847741 L303.47867,274.838597 L332.474212,272.702355 L340.856766,238.759123 Z" id="path-1"></path>
8
+ </defs>
9
+ <g id="svg/cart" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
10
+ <circle id="Oval" fill="#F35B5B" fill-rule="nonzero" cx="256" cy="256" r="256"></circle>
11
+ <mask id="mask-2" fill="white">
12
+ <use xlink:href="#path-1"></use>
13
+ </mask>
14
+ <use id="Combined-Shape" fill="#FFFFFF" fill-rule="nonzero" xlink:href="#path-1"></use>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/china-flag</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/china-flag" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="Group" transform="translate(0.000000, 77.000000)" fill-rule="nonzero">
8
+ <path d="M503.171017,358 L8.82798276,358 C3.95299228,358 0,353.781254 0,348.578526 L0,9.42147391 C0,4.21874562 3.95299228,0 8.82798276,0 L503.172017,0 C508.047008,0 512,4.21874562 512,9.42147391 L512,348.578526 C512,353.782322 508.046008,358 503.171017,358 Z" id="Path" fill="#FF4B55"></path>
9
+ <path d="M90.6741333,55.9541333 L99.6512,82.8704 L128.024533,83.0901333 C131.698133,83.1178667 133.221333,87.8069333 130.2656,89.9882667 L107.441067,106.842667 L115.998933,133.895467 C117.106133,137.3984 113.118933,140.2944 110.130133,138.158933 L87.0474667,121.658667 L63.9648,138.157867 C60.976,140.2944 56.9888,137.396267 58.096,133.8944 L66.6538667,106.8416 L43.8293333,89.9882667 C40.8736,87.8058667 42.3968,83.1178667 46.0704,83.0901333 L74.4437333,82.8704 L83.4208,55.9541333 C84.5834667,52.4682667 89.5125333,52.4682667 90.6741333,55.9541333 Z" id="Path" fill="#FFE15A"></path>
10
+ <path d="M193.7056,62.5866667 L200.142933,71.3653333 L210.5312,68.1162667 C211.876267,67.696 212.9824,69.2298667 212.158933,70.3722667 L205.799467,79.2053333 L212.0992,88.0810667 C212.9152,89.2298667 211.7984,90.7562667 210.456533,90.3264 L200.0896,87.008 L193.594667,95.7429333 C192.754133,96.8736 190.9568,96.2826667 190.951467,94.8746667 L190.903467,83.9893333 L180.5888,80.5109333 C179.2544,80.0597333 179.259733,78.1696 180.5984,77.728 L190.9344,74.3189333 L191.056,63.4346667 C191.070933,62.0277333 192.872533,61.4506667 193.7056,62.5866667 Z" id="Path" fill="#FFE15A"></path>
11
+ <path d="M154.514133,36.4213333 L165.335467,37.5968 L169.952,27.7397333 C170.5504,26.464 172.427733,26.6826667 172.715733,28.0618667 L174.9408,38.7157333 L185.741867,40.0597333 C187.140267,40.2336 187.512533,42.0874667 186.289067,42.7882667 L176.843733,48.1962667 L178.903467,58.8842667 C179.170133,60.2688 177.522133,61.1946667 176.477867,60.2485333 L168.414933,52.9365333 L158.887467,58.1973333 C157.6544,58.8789333 156.2624,57.5968 156.840533,56.3114667 L161.3024,46.3829333 L153.3536,38.9461333 C152.325333,37.9882667 153.1136,36.2698667 154.514133,36.4213333 Z" id="Path" fill="#FFE15A"></path>
12
+ <path d="M171.621333,141.9072 L165.184,150.685867 L154.795733,147.4368 C153.450667,147.016533 152.344533,148.5504 153.168,149.6928 L159.527467,158.525867 L153.227733,167.4016 C152.411733,168.5504 153.528533,170.0768 154.8704,169.646933 L165.237333,166.328533 L171.732267,175.063467 C172.5728,176.194133 174.370133,175.6032 174.375467,174.1952 L174.423467,163.309867 L184.738133,159.831467 C186.0736,159.380267 186.0672,157.490133 184.728533,157.048533 L174.392533,153.639467 L174.270933,142.7552 C174.253867,141.349333 172.4544,140.770133 171.621333,141.9072 Z" id="Path" fill="#FFE15A"></path>
13
+ <path d="M210.810667,117.319467 L199.989333,118.494933 L195.3728,108.637867 C194.7744,107.362133 192.897067,107.5808 192.609067,108.96 L190.382933,119.613867 L179.581867,120.957867 C178.183467,121.131733 177.8112,122.9856 179.034667,123.6864 L188.48,129.0944 L186.420267,139.7824 C186.1536,141.166933 187.8016,142.0928 188.845867,141.146667 L196.9088,133.834667 L206.436267,139.095467 C207.669333,139.777067 209.061333,138.494933 208.4832,137.2096 L204.021333,127.281067 L211.970133,119.844267 C213.0016,118.8864 212.213333,117.168 210.810667,117.319467 Z" id="Path" fill="#FFE15A"></path>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="511px" viewBox="0 0 512 511" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/ecpay</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/ecpay" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <polygon id="Path-4" fill="#EA7E01" fill-rule="nonzero" points="10.6195652 453.734602 369.003623 453.734602 397.26087 393.721016 497.228262 393.721016 456.863677 486.330615 7.42028986 486.330615"></polygon>
8
+ <polygon id="Path-5" fill="#EA7E01" fill-rule="nonzero" points="402.819747 370.540761 414.183877 348.492754 510.907607 348.492754 502.628623 370.540761"></polygon>
9
+ <path d="M361.104052,172.61194 L434.086957,172.61194 C434.086957,147.295808 433.62816,128.425258 432.710567,116.000288 C431.334177,97.3628334 423.702506,73.7227746 417.153039,64.0377533 C410.603576,54.352732 408.578111,51.536193 402.394943,44.9648444 C396.211775,38.3934957 390.016393,35.7370503 380.212977,30.7190771 C370.409558,25.7011038 349.182231,24.6818354 331.259447,26.6475771 C319.310924,27.9580715 307.537042,32.3962926 295.937803,39.9622401 C283.687468,48.223069 273.782186,56.24824 266.221954,64.0377533 C254.881607,75.7220233 233.459956,107.368042 220.957541,139.915707 C212.622598,161.614151 207.294146,181.894806 204.972183,200.757672 C199.199846,233.836805 196.425878,261.149197 196.650279,282.694849 C196.98688,315.013326 198.524581,335.67942 206.535189,350.828115 C214.545796,365.976811 226.914617,382.724883 241.172305,394.249337 C255.429992,405.773792 265.106171,407.951102 272.422637,409.523588 C279.739103,411.096073 290.616413,411.565217 297.507329,411.565217 C304.398245,411.565217 315.196845,410.25961 322.025703,408.209955 C328.854562,406.160301 343.897167,397.834246 362.257155,380.528677 C380.617146,363.223107 391.229522,344.458519 395.642335,336.205882 C400.055148,327.953245 402.533098,323.185403 404.76278,318.418736 C406.992462,313.65207 411.070286,301.594647 412.520088,297.785844 C414.431674,292.763874 418.270831,279.377938 424.037554,257.628036 L348.846926,257.628036 C347.726969,264.16144 346.294078,269.917978 344.548254,274.897651 C342.802429,279.877324 340.613841,284.45045 337.982489,288.61703 C330.896538,301.092376 324.726007,309.043264 319.470897,312.469693 C311.588231,317.609338 301.135054,319.214886 292.672442,317.123934 C284.209829,315.032982 280.460951,309.509883 277.228186,302.037996 C273.995421,294.566108 272.422637,268.627105 272.422637,257.628036 C272.422637,246.628966 272.167788,234.257136 278.941951,205.178817 C285.716114,176.100497 287.805288,168.460661 295.937803,150.942953 C304.070318,133.425246 309.627547,128.515764 318.008941,121.027226 C326.390334,113.538689 334.955533,111.719778 343.139267,113.538689 C351.323,115.3576 356.714923,123.401734 358.161396,128.236561 C359.607869,133.071387 361.104052,141.16828 361.104052,148.492881 C361.104052,153.375949 361.104052,161.415635 361.104052,172.61194 Z" id="Path-2" fill="#278539" fill-rule="nonzero"></path>
10
+ <path d="M214.864587,407.328039 C83.6911226,408.030748 17.4460954,408.030748 16.1295051,407.328039 C14.1546195,406.273976 8.90907043,396.539917 7.597075,393.234136 C7.04046388,391.831666 6.15487317,387.550424 5.4157913,384.451006 C4.92307005,382.384726 4.35452184,379.342268 3.71014667,375.323631 L56.8256894,48.0380624 C58.2780038,41.2591951 60.691167,36.0918718 64.0651795,32.5360926 C67.4391923,28.9803134 71.1994887,26.7049973 75.3460699,25.7101442 L278.260871,25.7101442 C267.159968,32.5611011 259.540873,37.5177532 255.403585,40.5801004 C250.340601,44.3276318 241.229036,52.942385 238.812892,56.2081833 C230.746309,67.1114381 235.207623,60.312013 227.073718,72.9439076 C218.939813,85.5758024 216.483693,90.244339 211.818731,98.5365827 C208.708756,104.064745 204.292461,112.434185 198.569847,123.644904 L126.176567,123.644904 L115.198944,173.393072 L180.386602,173.393072 C176.212056,188.138373 172.959971,201.879629 170.630345,214.616841 C168.30072,227.354053 166.618878,240.609568 165.584818,254.383387 L103.759123,254.383387 L92.397145,314.115068 L165.584818,314.115068 C166.270457,322.391082 166.883892,328.180637 167.425123,331.483736 C168.298525,336.81406 169.422941,345.18423 170.630345,349.729867 C171.663194,353.618337 174.91528,360.624895 180.386602,370.74954 C184.182023,376.916969 188.299942,382.775864 192.740356,388.326223 C197.180771,393.876582 204.555515,400.210519 214.864587,407.328039 Z" id="Path" fill="#00478C" fill-rule="nonzero"></path>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/family-mart</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/family-mart" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="Group" transform="translate(28.000000, 28.000000)" fill-rule="nonzero">
8
+ <path d="M417.276257,271.392539 C417.276257,275.814734 417.437798,279.913846 417.215679,283.972573 C417.054137,286.920703 418.124349,287.708217 420.971515,287.667831 C427.170665,287.566868 426.867775,287.748602 427.271629,293.988137 C427.554326,298.309369 426.100454,299.722855 422.021534,299.036305 C418.407046,298.430525 416.751247,299.662277 417.195486,303.640234 C417.558954,306.749905 417.195486,309.940347 417.276257,313.110596 C417.437798,318.239534 419.780148,320.278994 424.666774,318.986663 C427.332207,318.279919 427.978372,319.006856 427.513941,321.288627 C426.887968,324.317528 429.634171,328.638759 425.898527,330.23398 C420.971515,332.334018 413.439649,331.647467 409.603042,327.790667 C406.957802,325.105042 405.685664,321.854022 405.584701,318.158763 C405.443352,312.949054 405.342389,307.719153 405.483737,302.509444 C405.544315,299.864204 404.797187,298.592066 402.030791,299.016112 C399.30478,299.440158 398.719193,298.006479 398.961505,295.664129 C399.102854,294.31122 399.123046,292.897733 398.961505,291.544824 C398.638422,288.738043 399.264395,287.001473 402.616378,287.566868 C404.756801,287.930336 405.867398,286.819739 405.402967,284.739894 C403.666397,277.268606 407.765509,274.098357 414.166586,272.482943 C415.075256,272.281017 415.943541,271.897356 417.276257,271.392539 Z M394.897809,301.297884 C392.616037,300.671911 390.940046,300.025746 389.203476,299.803626 C383.287023,298.995919 379.874462,302.004627 379.874462,307.900887 C379.874462,314.483697 379.793692,321.066508 379.914848,327.649318 C379.955233,329.951283 379.228297,330.658026 376.885947,330.698412 C367.779053,330.900338 367.779053,330.981109 367.779053,321.9146 C367.779053,311.636531 367.859823,301.338269 367.718475,291.0602 C367.678089,288.435153 368.324255,287.263978 371.110843,287.587061 C372.726257,287.788987 374.422441,287.768795 376.037855,287.587061 C378.400397,287.324556 379.672536,288.091877 379.288875,291.201549 C383.206253,287.80918 387.123631,286.193766 391.767945,287.284171 C393.867983,287.768795 395.099736,288.758236 394.938194,291.241934 C394.736268,294.492954 394.897809,297.784359 394.897809,301.297884 Z M329.857218,299.844012 C329.857218,298.551681 329.857218,297.360313 329.857218,296.148753 C329.837025,288.071685 329.978374,287.788987 338.055442,287.021666 C342.417059,286.59762 346.819061,286.355308 351.1201,287.647639 C357.662525,289.646713 361.17605,294.068908 361.297206,300.914223 C361.398169,306.951831 361.357784,312.98944 361.317398,319.027048 C361.277013,322.883848 361.55971,326.659878 363.780904,330.859953 C358.793314,329.587815 354.027844,332.616715 349.847962,328.901264 C349.141218,328.275291 348.071007,329.264732 347.202722,329.608007 C343.366114,331.122458 339.388158,331.283999 335.490973,330.254173 C328.140841,328.315677 324.849436,322.82327 325.717721,314.483697 C326.424464,307.577804 331.957256,302.570022 339.751626,301.863279 C342.88149,301.580581 345.991162,301.802701 349.141218,302.509444 C347.990236,296.047789 343.810353,295.502587 329.857218,299.844012 Z M349.504686,315.392368 C349.545072,310.94998 348.979677,310.303815 344.819987,310.182659 C340.821838,310.061503 337.550625,312.525008 337.469855,315.71545 C337.389084,318.522231 339.85259,320.70304 343.224766,320.804003 C347.404648,320.904967 349.464301,319.148204 349.504686,315.392368 Z M306.676033,289.747676 C302.637499,295.017963 298.41723,300.167094 294.641201,305.639308 C292.480585,308.769172 291.390181,308.668208 289.269951,305.598923 C285.493922,300.146902 281.273653,294.977578 276.427413,289.989988 C276.427413,298.571873 276.427413,307.133565 276.427413,315.71545 C276.427413,317.492405 276.427413,319.289553 276.427413,321.066508 C276.427413,331.768623 276.427413,331.708045 265.624334,330.678219 C263.766608,330.496485 263.342562,329.789741 263.342562,328.133943 C263.382948,309.193218 263.382948,290.252493 263.342562,271.311768 C263.342562,269.595391 263.92815,268.807877 265.74549,268.868455 C268.754198,268.949226 271.783098,268.949226 274.811999,268.868455 C276.447605,268.82807 277.255312,269.837704 278.14379,270.928108 C282.040975,275.713771 286.018931,280.438855 289.815153,285.305289 C291.390181,287.324556 292.399815,287.627446 294.095999,285.406252 C297.246056,281.246562 300.880736,277.45034 303.849059,273.189687 C306.251987,269.756933 309.058768,268.626143 313.15788,268.807877 C320.709938,269.110767 320.730131,268.888648 320.730131,276.400321 C320.730131,293.281394 320.669553,310.162466 320.79106,327.043538 C320.810902,329.951283 319.96281,330.718604 317.115643,330.698412 C307.483739,330.637834 307.483739,330.75899 307.483739,321.127086 C307.483739,310.768246 307.483739,300.409406 307.483739,290.050566 C307.201042,289.949603 306.938537,289.84864 306.676033,289.747676 Z M238.727697,310.162466 C241.251781,303.135417 243.614323,297.138194 245.512434,290.999622 C246.380719,288.213033 247.713435,287.344749 250.500024,287.566868 C253.488539,287.80918 256.497247,287.627446 259.990579,287.627446 C257.607844,294.149678 255.406843,300.167094 253.185649,306.18451 C249.167308,317.108745 245.068196,328.012786 241.17101,338.997599 C240.403689,341.158215 239.373863,341.925536 237.051706,341.965922 C226.34959,342.127463 226.167856,342.10727 230.266968,332.394596 C232.003538,328.275291 232.003538,324.822345 230.166005,320.743425 C225.804388,311.131714 222.048552,301.257498 217.808091,291.605402 C216.293641,288.152455 217.222503,287.526483 220.635065,287.566868 C230.044849,287.688024 230.044849,287.566868 233.437218,296.43145 C235.052631,300.631526 236.668045,304.831601 238.727697,310.162466 Z M200.523165,299.702663 C200.523165,290.514998 200.603936,281.327333 200.48278,272.119475 C200.442394,269.635777 201.149138,268.848263 203.713607,268.807877 C212.719538,268.686721 212.719538,268.585758 212.719538,277.430148 C212.719538,293.887174 212.638767,310.364393 212.800309,326.821419 C212.820501,329.910897 212.012794,330.75899 208.923316,330.698412 C200.543358,330.53687 200.543358,330.698412 200.543358,322.338646 C200.523165,314.80678 200.523165,307.254721 200.523165,299.702663 Z M179.945178,308.769172 C179.945178,302.731563 180.025948,296.693955 179.904792,290.656347 C179.864407,288.374575 180.530765,287.607253 182.9135,287.546675 C192.141551,287.284171 192.141551,287.183207 192.141551,296.330487 C192.141551,306.628749 192.06078,316.906818 192.202129,327.20508 C192.242514,329.870512 191.495385,330.678305 188.769375,330.678305 C179.96537,330.678305 179.96537,330.799375 179.96537,321.934793 C179.945178,317.552983 179.945178,313.171174 179.945178,308.769172 Z M193.777157,275.956083 C193.696386,280.337892 190.162669,283.669683 185.740474,283.548527 C181.540399,283.427371 178.228801,280.055195 178.208523,275.834927 C178.188415,271.533888 181.762518,267.979978 186.083749,268.000085 C190.465559,268.020363 193.857928,271.533888 193.777157,275.956083 Z M113.087247,309.233603 C113.087247,303.882546 113.046861,298.531488 113.107439,293.160238 C113.168017,286.799547 112.218962,287.566868 118.438304,287.708217 C120.538342,287.748602 123.446086,286.112996 124.698032,289.646713 C124.980729,290.45442 125.889399,289.586135 126.414409,289.32363 C132.694329,285.99184 138.812708,286.032225 144.486849,290.535191 C146.122455,291.827521 146.889777,290.737117 147.980181,290.010181 C152.462954,287.001473 157.34958,286.335115 162.539096,287.627446 C168.778631,289.182282 172.372926,293.624669 172.433504,300.066131 C172.514275,309.273989 172.393119,318.461653 172.494552,327.669511 C172.514275,329.971476 171.888302,330.678219 169.505567,330.718604 C160.156361,330.900338 160.156361,331.001302 160.156361,321.672288 C160.156361,316.179882 160.216939,310.687475 160.136168,305.195069 C160.07559,300.712296 158.157287,298.511295 154.583184,298.531488 C150.827347,298.531488 148.686924,300.934416 148.686924,305.215262 C148.666732,312.625972 148.585961,320.056874 148.72731,327.467584 C148.767695,329.951283 148.101337,330.718604 145.516675,330.738797 C136.429973,330.819568 136.429973,330.920531 136.429973,321.813637 C136.429973,316.32123 136.490551,310.828824 136.409781,305.336418 C136.349203,300.833452 134.430899,298.511295 130.998145,298.551681 C127.242308,298.592066 125.182656,300.954608 125.182656,305.296032 C125.162463,312.565394 125.101885,319.854948 125.223041,327.124309 C125.263427,329.587815 124.859573,330.75899 121.911443,330.75899 C113.087247,330.738797 113.087247,330.900338 113.087247,322.035756 C113.087247,317.734717 113.087247,313.494257 113.087247,309.233603 Z M94.1271968,302.469059 C92.6531319,295.886248 87.3626523,295.21989 74.7018481,300.005553 C74.7018481,296.875689 74.7422334,293.927559 74.6816554,290.999622 C74.6412701,289.202474 75.8528303,288.758236 77.2259318,288.313997 C83.1019989,286.456271 89.1396073,286.112996 95.096445,287.425519 C102.507155,289.061126 106.343762,294.169871 106.444726,301.984435 C106.525496,307.880694 106.505304,313.776954 106.444726,319.673214 C106.40434,323.368472 106.363955,327.043538 108.706305,330.617641 C104.728349,330.617641 100.407117,331.889779 97.7820702,330.314751 C94.0060408,328.073365 91.4415717,330.294558 88.3924785,330.658026 C75.4287842,332.192669 67.3113308,323.227124 71.1681308,311.535568 C73.0056638,305.982583 78.3567214,302.226747 85.1414586,301.802701 C88.1299738,301.641159 91.0982963,301.742123 94.1271968,302.469059 Z M94.2887382,314.604853 C95.2579864,310.889402 92.5117832,310.3442 89.583846,310.202851 C85.5049266,310.000925 82.4356408,312.585586 82.5769895,315.957762 C82.7385308,319.673214 85.2424219,320.743425 88.4530565,320.743425 C92.8146733,320.783811 94.3089309,319.26936 94.2887382,314.604853 Z M29.0622328,299.90459 C29.0622328,290.716925 29.1430035,281.52926 29.0016548,272.341595 C28.9612695,269.696355 29.6478202,268.807877 32.4142161,268.848263 C43.25768,269.009804 54.0809512,269.009804 64.9244152,268.848263 C67.6706183,268.807877 68.4177471,269.635777 68.4379398,272.321402 C68.4985178,281.185984 68.5994811,281.185984 59.7348989,281.185984 C54.7876947,281.185984 49.8606832,281.347526 44.9134789,281.125406 C42.0865051,281.00425 41.4605323,282.074462 41.541303,284.659123 C41.7836151,293.119852 40.6326329,291.625595 48.3866182,291.746751 C53.8790245,291.827521 59.3714308,291.867907 64.8436445,291.706365 C67.1859942,291.645787 67.8321597,292.392916 67.872545,294.735266 C68.0744717,304.003702 68.1552424,304.003702 58.7454581,304.003702 C54.2222999,304.003702 49.6789491,304.165243 45.1759837,303.943124 C42.2076611,303.801775 41.4605323,304.912372 41.541303,307.719153 C41.723037,314.301963 41.480725,320.884774 41.6422664,327.467584 C41.7028444,329.971476 40.9759082,330.698412 38.4114391,330.718604 C29.0824255,330.799375 29.0824255,330.900338 29.0824255,321.732866 C29.0622328,314.443312 29.0622328,307.173951 29.0622328,299.90459 Z" id="Combined-Shape" fill="#2E8FD3"></path>
9
+ <path d="M227.661153,406.90533 C301.912063,406.90533 376.162973,406.912885 450.413882,406.87511 C454.667475,406.87511 456.023016,407.169756 456,408.627878 C455.812674,423.790828 455.836045,438.953778 456,454.116728 C456.023016,455.582404 454.901189,455.997931 450.250283,455.997931 C302.075663,455.960156 153.877672,455.960156 5.70305172,455.997931 C1.05214488,455.997931 0,455.620179 0,454.146948 C0.18740341,439.036883 0.18740341,423.926818 0,408.816753 C-0.0229391099,407.313302 0.888545145,406.86 5.86665146,406.86 C79.813733,406.927995 153.737443,406.90533 227.661153,406.90533 Z" id="Path" fill="#2E8FD3"></path>
10
+ <path d="M228.222103,0.124956897 C302.317012,0.124956897 376.411921,0.187435345 450.50683,-1.42108547e-14 C454.807608,-1.42108547e-14 456.023045,1.34328664 456,7.2475 C455.836054,69.9446228 455.81268,132.610506 456,195.307629 C456.023045,201.586713 454.667365,202.898761 450.156224,202.898761 C301.966405,202.742565 153.79996,202.711325 5.61014202,202.93 C0.888636759,202.93 -0.0229409891,201.211843 0,195.213912 C0.164049318,132.329353 0.164049318,69.413556 0,6.52899784 C-0.0229409891,1.06213362 1.09900085,-1.42108547e-14 4.97904973,-1.42108547e-14 C79.401192,0.187435345 153.79996,0.124956897 228.222103,0.124956897 Z" id="Path" fill="#469740"></path>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/fb-messenger</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/fb-messenger" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="icon/fb-messenger" transform="translate(4.000000, 3.000000)" fill-rule="nonzero">
8
+ <path d="M256,0 C111.774648,0 0,104.559676 0,245.773865 C0,319.64367 30.5963783,383.470445 80.4056337,427.568016 C84.5778672,431.289545 87.1018109,436.438509 87.307847,441.995314 L88.6985915,487.061504 C89.162173,501.437821 104.151308,510.767135 117.440644,505.00641 L168.228571,482.830174 C172.555332,480.943921 177.345674,480.587063 181.878471,481.810577 C205.212072,488.183059 230.090945,491.547729 256,491.547729 C400.225352,491.547729 512,386.988054 512,245.773865 C512,104.559676 400.225352,0 256,0 Z" id="Path" fill="#4A9CFF"></path>
9
+ <path d="M409.703019,189.08427 L334.499799,307.153606 C322.549698,325.914191 296.898189,330.604339 278.973037,317.298596 L219.171026,272.895146 C213.659557,268.816757 206.139235,268.867737 200.679275,272.946126 L119.913078,333.612149 C109.147686,341.717945 95.0342051,328.922003 102.296982,317.604476 L177.500201,199.535139 C189.450302,180.774554 215.101811,176.084408 233.026961,189.390149 L292.828974,233.793599 C298.340443,237.871988 305.860765,237.821008 311.320723,233.742619 L392.086921,173.076596 C402.852313,164.9708 416.965795,177.766743 409.703019,189.08427 Z" id="Path" fill="#FFFFFF"></path>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="511px" viewBox="0 0 512 511" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/fb</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/fb" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M512,256 C512,114.615001 397.384999,0 256,0 C114.615001,0 0,114.615001 0,256 C0,383.775001 93.615,489.685001 216,508.89 L216,330 L151,330 L151,256 L216,256 L216,199.6 C216,135.44 254.22,100 312.695001,100 C340.695001,100 370,105 370,105 L370,168 L337.72,168 C305.92,168 296,187.735001 296,208 L296,256 L367,256 L355.65,330 L296,330 L296,508.89 C418.384999,489.685001 512,383.775001 512,256 Z" id="Path" fill="#4A9CFF"></path>
8
+ <path d="M355.65,330 L367,256 L296,256 L296,208 C296,187.754999 305.92,168 337.72,168 L370,168 L370,105 C370,105 340.705001,100 312.695001,100 C254.22,100 216,135.44 216,199.6 L216,256 L151,256 L151,330 L216,330 L216,508.89 C242.505466,513.036662 269.494534,513.036662 296,508.89 L296,330 L355.65,330 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
9
+ </g>
10
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/hct</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/hct" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="hct" fill-rule="nonzero">
8
+ <circle id="Oval" fill="#01579D" cx="256" cy="256" r="256"></circle>
9
+ <polygon id="Path-3" fill="#FFFFFF" points="182.122917 194 212.395833 194 170.133333 315.620833 140.583334 315.620833"></polygon>
10
+ <polygon id="Path-3" fill="#FFFFFF" points="105.322917 194 135.595833 194 93.3333333 315.620833 63.7833334 315.620833"></polygon>
11
+ <path d="M62,317.292386 C80.5491499,295.139199 97.9130386,277.150071 114.091667,263.325 C127.522227,251.848227 132.814475,247.940242 140.583334,242.485417 C146.852177,238.083812 154.575552,232.06701 170.7125,224.9625 C194.802606,214.356504 223.830384,206.054768 257.795833,200.057292 C230.210224,211.876121 211.148765,220.177857 200.611459,224.9625 C184.805498,232.139465 174.42472,237.692372 161.670834,246.129167 C148.916947,254.565961 137.681771,265.879166 135.595833,267.970833 C133.509896,270.0625 123.753536,280.051003 116.444792,290.859375 C111.572295,298.064956 107.02542,306.87596 102.804167,317.292386 L62,317.292386 Z" id="Path-6" fill="#ABCB0E"></path>
12
+ <path d="M283.957292,196.3 C270.492361,203.305556 262.613542,207.802778 260.320833,209.791666 C256.881771,212.775 247.963544,220.002966 241.835417,229.560416 C235.707289,239.117867 234.569792,246.8625 233.830729,251.105729 C233.091667,255.348958 232.53165,259.638296 233.830729,266.230208 C235.129809,272.82212 235.107396,274.426376 239.179687,280.865625 C243.251979,287.304874 246.627083,289.705729 250.211979,292.132813 C253.796875,294.559896 260.892412,298.19305 263.908333,299.027083 C266.887294,299.850895 271.440238,300.852739 277.0375,300.841146 C282.537674,300.829753 289.084621,299.819052 291.827083,299.027083 C297.360417,297.429167 301.447916,295.969791 310.418229,291.363541 C316.398438,288.292708 325.679166,282.852083 338.260417,275.041667 C321.366238,292.165693 309.751307,302.697637 303.415625,306.6375 C296.755076,310.779383 292.246316,312.123337 288.421875,313.95625 C282.946382,316.580451 272.342857,317.764475 263.908333,317.292386 C259.999991,317.073632 254.631935,315.961587 247.804167,313.95625 C239.595617,311.23243 232.193534,306.256041 225.597917,299.027083 C215.70449,288.183647 212.174989,273.242187 212.174989,263.91927 C212.174989,260.196001 212.0583,259.398877 212.174989,255.427671 C212.350485,249.455138 213.553384,242.835567 218.477083,234.466146 C221.454453,229.405142 223.254846,226.736209 227.183334,222.7875 C231.111822,218.838791 233.928703,216.739339 239.179687,213.210937 C247.425627,207.670075 250.989157,206.523663 260.320833,202.039584 C266.541951,199.050197 274.420771,197.137003 283.957292,196.3 Z" id="Path-4" fill="#FFFFFF"></path>
13
+ <path d="M332.122917,194 L448.297917,194 C438.971568,196.914573 429.524345,200.861795 419.95625,205.841667 C415.935416,207.934375 412.465556,210.726502 410.444792,212.409375 C408.298431,214.196844 401.773958,219.071875 398.859896,224.68802 C396.917187,228.432118 395.066146,232.33941 393.306771,236.409896 C390.764664,242.251615 388.217789,248.663714 385.666146,255.646193 C381.838682,266.119912 382.445263,263.718298 378.4625,273.653125 C374.479737,283.587952 374.177604,282.825 370.559896,293.247916 C368.14809,300.196528 365.617014,307.654166 362.966666,315.620833 L330.166666,315.620833 L350.4875,284.35 C355.9614,274.281161 360.121122,265.722773 362.966666,258.674839 C364.719256,254.333971 367.28495,249.161024 368.798958,242.803645 C369.808297,238.565394 370.395276,234.149943 370.559896,229.557292 C369.881269,224.423441 368.675366,219.960073 366.942188,216.167188 C364.342419,210.477859 362.398216,208.637273 359.722917,205.841667 C354.623456,200.512885 345.423456,196.565663 332.122917,194 Z" id="Path-5" fill="#FFFFFF"></path>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="490px" viewBox="0 0 512 490" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/hi-life</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/hi-life" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g transform="translate(-1.000000, -1.000000)" fill-rule="nonzero" id="Group">
8
+ <g transform="translate(0.688000, 0.712000)">
9
+ <path d="M506.7312,103.2256 L504.9904,97.3888 C498.2832,75.296 486.072,55.8912 468.7408,39.712 C451.7936,23.584 430.4432,12.192 405.304,5.8944 L401.6176,4.6656 L358.7632,0.544 L358.584,0.5184 L358.4048,0.5184 C343.0192,1.312 326.2512,5.4848 308.5616,12.96 L308.5104,12.9856 C291.8192,20.5632 274.0016,32.16 255.5184,47.4176 L250.6544,42.5536 L231.3008,27.296 L231.1472,27.1936 C222.4944,21.28 212.1264,15.904 200.3504,11.1936 C188.1392,6.0736 174.5712,2.6688 160.0048,1.1072 L159.7744,1.0816 L112.1328,4.64 L111.9792,4.6656 C95.032,8.224 76.8816,16.1856 58.0656,28.3456 L58.04,28.3712 C35.512,43.3728 19.3072,62.9824 9.8096,86.7136 C0.3632,110.7264 -2.0432,138.4512 2.6672,169.0688 L2.6672,169.0944 C7.736,199.5584 20.2032,232.608 39.6848,267.296 C59.5248,302.2912 87.3008,338.9504 122.2448,376.224 L122.2704,376.2496 C157.9568,413.1136 202.2192,450.8736 253.7776,488.48 L255.288,489.5808 L273.7456,476.2176 L315.7552,442.9632 L315.832,442.912 L371.8704,391.5328 L371.9472,391.456 L430.3408,327.2256 L430.4176,327.1232 C449.4896,303.776 466.0528,278.9184 479.672,253.2416 L481.4896,249.6064 L499.5888,205.216 L499.6144,205.1392 C505.4768,189.088 509.4448,172.2176 511.416,154.9888 C513.464,137.6064 511.8512,120.1984 506.7312,103.2256 Z" id="Path" fill="#FF0000"></path>
10
+ <path d="M506.3984,154.4 C504.4784,171.1936 500.6128,187.6544 494.904,203.3216 L476.8816,247.5072 L475.192,250.8864 C461.752,276.2304 445.368,300.7808 426.552,323.8464 L368.3632,387.8464 L312.5552,439.0208 L270.6992,472.1728 L255.3392,483.2832 C204.6512,446.2144 161.1568,409.0176 126.008,372.7424 C91.3456,335.7504 63.8,299.4496 44.1904,264.8128 C24.9648,230.6368 12.7024,198.1504 7.736,168.2752 C5.4576,153.4016 4.8688,139.1424 6.0208,125.9072 C7.1728,112.6976 10.04,100.1536 14.5968,88.5824 C19.128,77.216 25.3232,66.7712 33.0032,57.4784 C40.6832,48.1856 50.0528,39.84 60.856,32.6208 C79.0832,20.8448 96.5936,13.1392 112.8752,9.7088 L159.6976,6.2528 C173.6752,7.7888 186.7056,11.04 198.4048,15.9552 L198.456,15.9808 C209.848,20.5376 219.8576,25.7344 228.2032,31.4176 L247.2496,46.4192 L255.2112,54.3808 L257.0032,52.8704 C275.768,37.1776 293.816,25.3248 310.6096,17.696 C327.6592,10.5024 343.7616,6.4576 358.5072,5.664 L400.5936,9.7088 L403.768,10.784 L403.9472,10.8352 C428.2672,16.928 448.8752,27.8848 465.1824,43.4496 L465.208,43.4752 C481.8992,59.0144 493.624,77.6768 500.0752,98.8992 L501.816,104.736 C506.7568,121.0176 508.2928,137.7344 506.3984,154.4 Z" id="Path" fill="#FFFFFF"></path>
11
+ <path d="M485.6112,103.968 C477.4448,75.1936 459.96,53.2544 433.1312,38.0736 C415.2624,28.3456 398.3408,22.3296 382.4176,20 L339.2816,21.1776 C326.072,24.2752 314.2192,28.5504 303.7232,34.0032 L277.4832,52.0768 L260.5872,67.8208 L254.7504,74.8096 L248.9136,67.8208 L232.0176,52.0768 L205.7776,34.0032 C195.2816,28.5504 183.4288,24.2752 170.2192,21.1776 L126.4688,20 C110.9296,22.3296 94.2128,28.3456 76.3184,38.0736 C49.5152,53.2544 32.0304,75.1936 23.864,103.968 C15.6976,132.7424 18.232,166.3552 31.4416,204.832 C44.2672,243.3088 68.9456,284.704 105.4768,329.0176 C142.392,373.3312 192.1584,418.6176 254.7248,464.8512 C317.2912,418.592 367.0576,373.3056 403.9728,329.0176 C440.504,284.704 465.3872,243.3088 478.5968,204.832 C491.448,166.3552 493.7776,132.7168 485.6112,103.968 Z" id="Path" fill="#FF0000"></path>
12
+ <path d="M152.12,253.216 L148.6128,261.9712 C145.114133,264.9408 142.195733,266.2976 139.8576,266.0416 C136.3504,265.6576 133.432,264.3008 131.1024,261.9712 C128.7728,259.6416 127.5952,256.7232 127.5952,253.216 L127.5952,221.728 L108.344,221.728 L108.344,253.216 L104.8368,261.9712 C101.9184,264.6848 99,266.0416 96.0816,266.0416 C93.1632,266.0416 90.2448,264.6848 87.3264,261.9712 C84.9968,259.6416 83.8192,256.7232 83.8192,253.216 L83.8192,165.1776 C83.8192,161.2864 84.9968,158.1888 87.3264,155.8592 C89.656,153.5296 92.5744,152.352 96.0816,152.352 C99.5888,152.352 102.5072,153.5296 104.8368,155.8592 L108.344,165.1776 L108.344,197.8176 L127.5952,197.8176 L127.5952,165.1776 C127.5952,161.2864 128.7728,158.1888 131.1024,155.8592 C133.432,153.5296 136.3504,152.352 139.8576,152.352 C143.3648,152.352 146.2832,153.5296 148.6128,155.8592 L152.12,165.1776 L152.12,253.216 Z" id="Path" fill="#FFFFFF"></path>
13
+ <path d="M191.1856,253.216 L187.6784,261.9712 C184.76,264.6848 181.8416,266.0416 178.9232,266.0416 C176.0048,266.0416 173.0864,264.6848 170.168,261.9712 C167.8384,259.6416 166.6608,256.7232 166.6608,253.216 L166.6608,188.4992 C166.6608,184.608 167.8384,181.5104 170.168,179.1808 C172.4976,176.8512 175.416,175.6736 178.9232,175.6736 C182.4304,175.6736 185.3488,176.8512 187.6784,179.1808 L191.1856,188.4992 L191.1856,253.216 Z" id="Path" fill="#FFFFFF"></path>
14
+ <path d="M178.9488,162.2592 C172.344,159.1616 166.5072,154.2976 161.464,147.6928 C156.8048,141.088 153.6816,134.4832 152.1456,127.8784 C150.968,120.8896 152.7344,115.6416 157.3936,112.1344 C162.0528,109.0368 165.944,107.8592 169.0416,108.6272 C172.1392,109.0112 174.4944,109.984 176.0304,111.5456 L178.9488,115.0528 L181.8672,111.5456 C183.4288,109.984 185.7584,109.0112 188.856,108.6272 C191.9536,107.8592 195.8448,109.0112 200.504,112.1344 C205.1632,116.0256 206.9296,121.2736 205.752,127.8784 C204.5744,134.4832 201.4768,141.088 196.4336,147.6928 L178.9488,162.2592 Z" id="Path" fill="#FFFFFF"></path>
15
+ <path d="M228.5104,247.3792 L220.344,250.8864 L208.1072,250.8864 C205.0096,250.5024 202.4752,249.3248 200.5296,247.3792 C198.2,245.0496 197.0224,242.1312 197.0224,238.624 C197.0224,235.5264 198.2,232.7872 200.5296,230.4576 C202.4752,228.128 205.0096,226.9504 208.1072,226.9504 L220.344,226.9504 C223.4416,226.9504 226.1808,228.128 228.5104,230.4576 L232.0176,238.624 L228.5104,247.3792 Z" id="Path" fill="#FFFFFF"></path>
16
+ <path d="M283.8832,262.56 C281.9376,264.5056 279.224,265.6576 275.7168,266.0672 L250.6544,266.0672 L250.0656,266.0672 L249.4768,266.0672 L240.7216,261.9968 C238.392,259.6672 237.2144,256.7488 237.2144,253.2416 L237.2144,165.1776 C237.2144,161.2864 238.392,158.1888 240.7216,155.8592 C243.0512,153.5296 245.9696,152.352 249.4768,152.352 C251.814933,152.352 254.733333,153.521067 258.232,155.8592 L261.7392,165.1776 L261.7392,242.1312 L275.7424,242.1312 C279.2496,242.5152 281.9632,243.6928 283.9088,245.6384 L287.416,254.3936 L283.8832,262.56 Z" id="Path" fill="#FFFFFF"></path>
17
+ <path d="M293.2272,141.856 C296.3248,138.7584 300.0368,137.1968 304.312,137.1968 C308.5872,137.1968 312.2736,138.7584 315.3968,141.856 C318.1104,144.9536 319.4672,148.6656 319.4672,152.9408 C319.4672,157.6 318.1104,161.4912 315.3968,164.5888 C312.2992,167.3024 308.5872,168.6592 304.312,168.6592 C300.0368,168.6592 296.3504,167.3024 293.2272,164.5888 C290.5136,161.4912 288.952,157.6 288.568,152.9408 C288.952,148.6656 290.488,144.9792 293.2272,141.856 Z" id="Path" fill="#FFFFFF"></path>
18
+ <path d="M440.1456,214.7392 L437.816,225.824 C436.2544,229.3312 433.5408,231.2768 429.6496,231.6608 L414.4944,231.6608 L398.7504,231.6608 L391.1728,231.6608 L391.7616,233.4016 L394.68,236.9088 L398.7504,239.2384 L401.08,239.8272 L416.824,239.8272 L419.5648,239.8272 L424.4016,243.3344 C426.3472,244.896 427.4992,247.6096 427.9088,251.5008 C428.181867,254.094933 426.825067,257.201067 423.8384,260.8192 L418.0016,263.7376 L416.2608,263.7376 L399.928,263.7376 L395.832,263.7376 L387.0768,261.408 L381.24,257.3376 L371.3328,247.4304 C368.2352,242.7712 365.7008,237.3184 363.7552,231.0976 L354.4368,231.0976 L354.4368,313.2992 L350.9296,322.0544 C348.0112,324.768 345.0928,326.1248 342.1744,326.1248 C339.256,326.1248 336.3376,324.768 333.4192,322.0544 C331.4736,319.7248 330.5008,316.8064 330.5008,313.2992 L330.5008,231.072 L317.0864,231.072 L317.0864,253.8048 L313.5792,262.56 C310.080533,264.898133 307.162133,266.0672 304.824,266.0672 C301.3168,266.0672 298.3984,264.8896 296.0688,262.56 C293.7392,260.2304 292.5616,257.312 292.5616,253.8048 L292.5616,189.088 C292.5616,185.1968 293.7392,182.0992 296.0688,179.7696 C298.3984,177.44 301.3168,176.0832 304.824,175.6992 C308.3312,176.0832 311.2496,177.44 313.5792,179.7696 L317.0864,189.088 L317.0864,207.7504 L330.5008,207.7504 L330.5008,150.6112 C330.5008,146.72 331.4736,143.6224 333.4192,141.2928 C335.7488,138.9632 338.6672,137.7856 342.1744,137.7856 L367.8256,137.7856 C370.9232,137.7856 373.4576,138.9632 375.4032,141.2928 L378.9104,149.4592 L375.4032,158.2144 C373.4576,160.16 370.9232,161.312 367.8256,161.7216 L354.4112,161.7216 L354.4112,207.776 L363.7296,207.776 C364.1136,204.6784 365.6752,200.5824 368.3888,195.5392 C371.1024,190.0864 375.1984,185.248 380.6256,180.9728 C386.0784,176.6976 393.4512,174.368 402.7696,173.984 C410.936,174.368 417.5408,176.1344 422.584,179.232 L433.6688,190.88 L438.9168,203.1168 L440.0944,209.5424 L440.0944,214.7392 L440.1456,214.7392 Z" id="Path" fill="#FFFFFF"></path>
19
+ <path d="M403.4096,193.7472 C399.5184,194.1312 396.216,195.488 393.5024,197.8176 C390.4048,200.5312 388.8432,203.6544 388.8432,207.136 L388.8432,207.7248 L418.0016,207.7248 L418.0016,207.136 L413.9312,197.8176 C411.192,195.5136 407.6848,194.1312 403.4096,193.7472 Z" id="Path" fill="#FF0000"></path>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/line</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/line" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <circle id="Oval" fill="#7EC163" fill-rule="nonzero" cx="257.692562" cy="256.42314" r="253.884298"></circle>
8
+ <path d="M258.115702,104.092562 C165.024793,104.092562 89.2826446,165.447934 89.2826446,241.190083 C89.2826446,308.892562 149.368595,365.593388 230.61157,376.595041 C236.112397,377.864463 243.728926,380.403306 245.421488,385.057851 C247.11405,389.289256 246.690909,396.059504 245.844628,400.290909 C245.844628,400.290909 243.728926,412.138843 243.305785,414.677686 C242.459504,418.909091 239.920661,431.180165 258.115702,423.986777 C276.310744,416.370248 355.438017,366.86281 390.981818,325.818182 C415.100826,298.73719 426.94876,271.656198 426.94876,241.190083 C426.94876,165.447934 351.206612,104.092562 258.115702,104.092562 Z" id="Path" fill="#FFFFFF" fill-rule="nonzero"></path>
9
+ <path d="M370.671074,223.418182 C372.363636,223.418182 374.056198,222.14876 374.056198,220.033058 L374.056198,208.185124 C374.056198,206.492562 372.786777,204.8 370.671074,204.8 L323.279339,204.8 L323.279339,204.8 C322.433058,204.8 321.586777,205.22314 321.163636,205.646281 C321.163636,205.646281 321.163636,205.646281 321.163636,205.646281 C321.163636,205.646281 321.163636,205.646281 321.163636,205.646281 C320.740496,206.069421 320.317355,206.915702 320.317355,207.761983 L320.317355,207.761983 L320.317355,281.38843 L320.317355,281.38843 C320.317355,282.234711 320.740496,283.080992 321.163636,283.504132 C321.163636,283.504132 321.163636,283.504132 321.163636,283.504132 C321.163636,283.504132 321.163636,283.504132 321.163636,283.504132 C321.586777,283.927273 322.433058,284.350413 323.279339,284.350413 L323.279339,284.350413 L370.671074,284.350413 C372.363636,284.350413 374.056198,283.080992 374.056198,280.965289 L374.056198,269.117355 C374.056198,267.424793 372.786777,265.732231 370.671074,265.732231 L338.512397,265.732231 L338.512397,253.461157 L370.671074,253.461157 C372.363636,253.461157 374.056198,252.191736 374.056198,250.076033 L374.056198,238.228099 C374.056198,236.535537 372.786777,234.842975 370.671074,234.842975 L338.512397,234.842975 L338.512397,222.571901 L370.671074,222.571901 L370.671074,223.418182 Z" id="Path" fill="#7EC163" fill-rule="nonzero"></path>
10
+ <path d="M305.084298,204.8 L293.236364,204.8 C291.543802,204.8 289.85124,206.069421 289.85124,208.185124 L289.85124,251.768595 L256,206.069421 C256,206.069421 256,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 C255.57686,205.646281 255.57686,205.646281 255.57686,205.646281 L243.728926,205.646281 C242.036364,205.646281 240.343802,206.915702 240.343802,209.031405 L240.343802,282.657851 C240.343802,284.350413 241.613223,286.042975 243.728926,286.042975 L255.57686,286.042975 C257.269421,286.042975 258.961983,284.773554 258.961983,282.657851 L258.961983,239.07438 L292.813223,284.773554 C293.236364,285.196694 293.236364,285.196694 293.659504,285.619835 C293.659504,285.619835 293.659504,285.619835 293.659504,285.619835 C293.659504,285.619835 293.659504,285.619835 293.659504,285.619835 C293.659504,285.619835 293.659504,285.619835 293.659504,285.619835 C293.659504,285.619835 293.659504,285.619835 293.659504,285.619835 C293.659504,285.619835 293.659504,285.619835 293.659504,285.619835 C293.659504,285.619835 293.659504,285.619835 293.659504,285.619835 C293.659504,285.619835 293.659504,285.619835 294.082645,285.619835 C294.082645,285.619835 294.082645,285.619835 294.082645,285.619835 C294.505785,285.619835 294.505785,285.619835 294.928926,285.619835 L306.77686,285.619835 C308.469421,285.619835 310.161983,284.350413 310.161983,282.234711 L310.161983,208.608264 C308.469421,206.492562 306.77686,204.8 305.084298,204.8" id="Path" fill="#7EC163" fill-rule="nonzero"></path>
11
+ <path d="M223.418182,204.8 L211.570248,204.8 C209.877686,204.8 208.185124,206.069421 208.185124,208.185124 L208.185124,281.81157 C208.185124,283.504132 209.454545,285.196694 211.570248,285.196694 L223.418182,285.196694 C225.110744,285.196694 226.803306,283.927273 226.803306,281.81157 L226.803306,208.185124 C226.803306,206.492562 225.533884,204.8 223.418182,204.8" id="Path" fill="#7EC163" fill-rule="nonzero"></path>
12
+ <path d="M195.067769,266.578512 L162.909091,266.578512 L162.909091,208.185124 C162.909091,206.492562 161.639669,204.8 159.523967,204.8 L147.676033,204.8 C145.983471,204.8 144.290909,206.069421 144.290909,208.185124 L144.290909,281.81157 L144.290909,281.81157 C144.290909,282.657851 144.71405,283.504132 145.13719,283.927273 C145.13719,283.927273 145.13719,283.927273 145.13719,283.927273 C145.13719,283.927273 145.13719,283.927273 145.13719,283.927273 C145.560331,284.350413 146.406612,284.773554 147.252893,284.773554 L147.252893,284.773554 L194.644628,284.773554 C196.33719,284.773554 198.029752,283.504132 198.029752,281.38843 L198.029752,269.540496 C198.452893,267.847934 196.760331,266.578512 195.067769,266.578512" id="Path" fill="#7EC163" fill-rule="nonzero"></path>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="508px" height="512px" viewBox="0 0 508 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/ok-mart</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/ok-mart" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M197.149575,147.403278 C167.673113,128.340809 135.714693,122.941909 101.376662,131.180989 C67.0386307,139.445657 40.6838081,158.201079 22.3889555,187.703128 C3.71029487,217.563398 -1.68860568,249.521819 6.16666668,283.476042 C14.4057471,317.788486 33.1867566,344.348006 62.6888056,363.026666 C92.5490755,381.321519 124.712194,386.541309 159.024638,378.66045 C193.055622,371.163398 219.333683,352.305627 238.012344,322.061549 C256.691005,292.585087 261.910795,260.703428 253.646127,226.390984 C246.149075,192.334413 227.393653,166.081939 197.149575,147.403278 Z M116.447526,195.558401 C132.465117,191.490035 147.843029,193.844058 162.427736,202.850754 C176.551874,211.755102 185.763268,224.471944 189.831634,240.873343 C193.157971,257.274742 190.59925,272.831764 181.950775,287.33971 C173.404648,301.566197 160.713393,310.752004 143.928186,314.845957 C127.526787,318.172294 111.969765,315.613573 97.4618191,306.965097 C82.8515243,297.190784 73.8448276,284.49953 70.544078,268.84016 C66.4757122,252.43876 69.0344328,236.984088 78.4249375,222.373793 C87.0478261,207.891434 99.6623189,198.884737 116.447526,195.558401 Z M304.103454,94.7864889 C294.329141,89.9505069 284.861875,88.7990826 275.573719,91.3833905 C265.057377,93.6606518 257.278866,99.4433605 252.059076,108.731516 C246.07167,117.738213 244.562025,127.793985 247.606902,138.975594 L286.755328,309.28404 C289.697857,321.514725 296.043484,330.521421 305.817797,336.12502 C315.105953,340.961002 324.598807,342.291536 334.347532,340.014275 C345.529141,337.071746 353.589111,331.109927 358.425093,322.103231 C363.644883,313.198883 365.154529,303.143111 362.877267,291.859153 L351.13274,241.78499 L360.983814,230.117224 L439.024794,298.000082 C449.541135,307.390587 461.106553,310.512226 473.823394,307.569697 C482.727742,305.292436 490.429491,299.893535 496.775118,291.347408 C504.27217,281.189288 506.267972,270.570597 502.941635,259.388988 C501.43199,251.149907 497.158926,243.934315 490.045683,237.588688 L411.620895,169.782591 L445.19131,129.482741 C454.198007,119.32462 457.140536,107.580092 454.198007,94.2235704 C451.920746,83.4257693 445.754229,74.5981831 435.698457,67.8687478 C425.924144,61.8813415 416.25218,60.2693475 406.580216,62.8536553 C399.083164,64.3633005 392.353729,68.636364 386.39191,75.7496074 L328.641585,144.579193 L323.140336,121.627468 C320.504853,109.652656 314.159226,100.748308 304.103454,94.7864889 Z M9.00669665,387.567126 C3.04487756,387.567126 -2.84217094e-13,390.612003 -2.84217094e-13,396.573822 L-2.84217094e-13,461.514152 C-2.84217094e-13,475.254482 5.2197901,487.024597 15.6337831,496.79891 C25.791904,506.854682 38.0993503,511.869774 52.6072964,511.869774 L454.735832,511.869774 C469.243778,511.869774 481.755922,506.854682 492.195502,496.79891 C502.353623,487.024597 507.368716,475.280069 507.368716,461.514152 L507.368716,326.029894 C507.368716,320.068075 504.323838,317.023198 498.362019,317.023198 L490.02059,321.475372 L481.013893,327.641888 C429.916242,362.824297 370.553923,388.232393 302.952524,403.866176 C249.577611,416.480669 198.070565,421.87957 148.405797,420.088465 C100.992704,418.195012 61.0766617,409.930344 28.5553223,395.422398 C16.2222889,390.228195 9.67196402,387.567126 9.00669665,387.567126 Z M507.394303,50.4982382 C507.010495,37.4231757 501.790705,25.8321712 491.76052,15.8019863 C481.218591,5.36240608 468.885557,0.14261598 454.761419,0.14261598 L52.6328836,0.14261598 C38.1249375,0.14261598 25.791904,4.97859799 15.6593703,14.650562 C5.2197901,24.8086829 0,36.7323211 0,50.4982382 L0,131.200287 C0,136.803885 3.04487756,139.541716 9.00669665,139.541716 C14.6102949,139.541716 22.567916,135.831572 33.0074963,128.360107 C80.5229385,94.0476635 140.243478,68.4348699 212.22029,51.6496625 C313.775912,27.7512117 402.333233,29.2608569 477.713143,56.1018364 L493.346927,63.3941902 C496.673263,64.9038354 499.513443,65.108533 501.790705,63.9571087 C505.884658,62.4474636 507.778111,57.9952896 507.394303,50.4982382 Z" id="Combined-Shape" fill="#FF0000" fill-rule="nonzero"></path>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/pelican</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/pelican" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="shape">
8
+ <circle id="Oval" fill="#004A9B" cx="256" cy="256" r="256"></circle>
9
+ <path d="M112.326007,179.106227 L110.472527,166.423077 L111.399267,159.750916 L113.53124,154.184982 L113.53124,138.535714 L115.919414,125.64652 L120.655678,119.243132 L128.501884,115.061355 L128.501884,102.062271 L133.144689,94.4111722 L138.039377,92.224359 L143.260073,97.1978022 L143.260073,108.913919 L150.03663,138.535714 L153.947802,138.535714 L162.553114,131.971612 L173.9979,126.990842 L184.206044,126.990842 L200.388278,126.990842 L210.855311,130.751832 L212.649267,131.971612 L218.214286,121.06044 L227.532967,111.397436 L238.196886,105.877289 C241.981627,104.923323 244.760626,104.923323 246.533883,105.877289 C248.30714,106.831256 248.948471,108.671305 248.457875,111.397436 L246.533883,117.544872 L249.641941,121.06044 L246.533883,131.971612 L251.341575,138.535714 L248.457875,147.149267 L244.600733,153.28663 L242.608059,164.674908 L235.804029,170.813187 L235.804029,190.358974 L228.840201,207.015568 L218.214286,221.302198 L201.927656,238.461538 L201.927656,246.699634 L205.128205,252.312693 L196.537546,268.091575 L183.021676,283.720696 L170.250916,295.785697 L160.882784,301.897436 L159.466117,295.785697 L157.538462,282.257326 L153.787546,274.93315 L147.580586,273.162088 L140.342949,265.632784 L152.921245,250.211996 L166.744505,230.037546 L173.9979,213.40522 L172.604396,207.015568 L166.744505,203.453297 L159.466117,198.761905 L155.663004,194.595238 L123.744505,180.761905 L112.326007,179.106227 Z" id="Path-17" fill="#FFFFFF"></path>
10
+ <path d="M48.0265568,176.636447 L67.9166667,173.947802 L96.0155678,175.292125 L123.099817,180.846154 L144.28663,188.90293 L162.999084,200.033883 C167.090821,201.882868 169.944606,203.721086 171.56044,205.548535 C173.176273,207.375984 173.963209,209.655288 173.921245,212.386447 C174.469454,214.814955 172.077208,221.090596 166.744505,231.21337 C161.411803,241.336144 156.691412,248.562029 152.583333,252.891026 C142.301755,264.508525 134.793513,272.192896 130.058608,275.944139 C122.95625,281.571004 119.401099,283.720696 111.957875,283.720696 C106.995726,283.720696 101.681624,283.720696 96.0155678,283.720696 C87.4099033,281.325402 80.3284015,278.246648 74.7710623,274.484432 C69.213723,270.722217 64.4570075,266.174598 60.5009158,260.841575 L53.6941392,252.891026 L45.0998168,248.038462 L39.5320513,245.022894 L57.9276557,231.21337 L73.4395604,223.352564 L98.6410256,215.787546 L111.957875,212.386447 L123.099817,209.194139 L140.644689,205.548535 C119.167691,210.352778 105.16647,213.765782 98.6410256,215.787546 C79.2922309,221.78234 74.684918,225.996839 73.4395604,226.487179 C71.5642014,227.225573 69.7232368,229.791202 67.9166667,234.184066 L73.4395604,238.431319 L83.6428571,239.863553 L98.6410256,238.431319 L113.669414,231.21337 C121.320914,226.027038 126.783979,222.41959 130.058608,220.391026 C134.970551,217.348179 136.73765,216.814388 143.472527,214.172161 C150.207405,211.529934 151.909058,211.383757 156.600733,210.429487 C159.728516,209.793307 163.109773,209.381525 166.744505,209.194139 L159.081502,205.548535 L140.644689,202.77381 L111.957875,195.371795 L81.3141026,187.174908 L57.9276557,180.846154 L48.0265568,176.636447 Z" id="Path" fill="#FAAB01"></path>
11
+ <polygon id="Path-2" fill="#EA7A25" points="68.9679487 228.834249 47.7673993 243.454212 63.6987179 245.862637 83.481685 245.862637 93.5558608 241.278388 99.0238095 239.610806 83.481685 241.278388 73.3956044 239.610806 66.6373626 235.075092"></polygon>
12
+ <polygon id="Path-3" fill="#000000" points="53.5998168 180.761905 76.4377289 190.620879 99.0238095 197.522894 112.326007 201.350733 111.957875 195.371795 93.8543956 191.056319 76.4377289 186.315018"></polygon>
13
+ <path d="M140.342949,265.632784 L147.580586,273.162088 L137.258242,282.448718 L127.263736,288.096154 L117.471612,289.690476 L105.450549,290.886447 L92.5879121,288.096154 L81.4771062,282.448718 L73.3956044,275.43956 L69.168956,270.486722 L81.9171245,278.259615 L96.0155678,283.720696 L116.024267,283.720696 C118.376269,283.265937 120.432587,282.631017 122.193223,281.815934 C124.834177,280.59331 123.541818,281.185019 127.263736,278.259615 C129.745015,276.309346 131.724869,274.610171 133.203297,273.162088 L140.342949,265.632784 Z" id="Path-4" fill="#000000"></path>
14
+ <ellipse id="Oval" fill="#000000" cx="175.355311" cy="190.358974" rx="6.56410256" ry="11.2527473"></ellipse>
15
+ <ellipse id="Oval" fill="#000000" cx="150.03663" cy="190.358974" rx="6.56410256" ry="11.2527473"></ellipse>
16
+ <path d="M271.813187,348.809524 L288.370879,341.089744 L304.181319,350.652015 L320.057692,356.35348 L330.415751,350.652015 L339.308608,347.132784 L351.745421,350.652015 L358.666667,353.06044 L377.042125,353.06044 C385.295405,353.101732 392.741376,354.199412 399.380037,356.35348 C406.018697,358.507548 411.366072,361.560967 415.422161,365.513736 L426.946886,378.772894 C428.842003,380.82334 430.469598,383.512595 431.82967,386.840659 C433.869779,391.832755 435.064619,395.469767 434.787546,397.958791 C434.60283,399.618141 433.616872,401.121193 431.82967,402.467949 L424.035714,404.717033 C424.18302,409.278832 423.683631,412.501054 422.537546,414.3837 C420.818418,417.207667 421.940647,417.028359 414.034799,417.45696 C406.12895,417.885561 406.768656,417.754779 397.431319,415.578755 C391.206427,414.128072 385.361189,412.464152 379.895604,410.586996 C373.713449,407.251161 367.514121,403.709037 361.297619,399.960623 C355.081118,396.212209 349.871105,392.692367 345.667582,389.401099 L327.96337,374.327839 C324.227513,373.227334 318.911884,371.39278 312.016484,368.824176 C305.121083,366.255571 298.990741,363.82639 293.625458,361.53663 L271.813187,348.809524 Z" id="Path-5" fill="#FAAB01"></path>
17
+ <polygon id="Path-7" fill="#E79800" points="279.039377 346.442308 298.242674 357.486264 317.945971 365.031136 325.077839 366.248168 333.076007 373.436813 346.755495 383.498168 364.49359 394.901099 385.067766 402.564103 404.782051 405.820513 417.642857 405.820513 423.776557 405.820513 422.537546 414.3837 418.873626 417.652801 404.782051 417.652801 381.18315 409.740842 357.512821 397.782051 335.923077 382.047554 326.788462 373.436813 298.242674 363.365385 279.039377 352.924908 273.330586 349.783883"></polygon>
18
+ <polygon id="Path-6" fill="#EA9800" points="333.076007 352.274725 340.333333 357.044872 340.333333 364.813187 375.336081 367.904762 399.483516 373.484432 416.068681 382.063187 429.290293 391.958791 419.290293 373.484432 407.989927 362.1337 396.081502 355.767399 375.336081 354.427656 358.666667 353.06044 340.333333 348.032051"></polygon>
19
+ <path d="M205.430861,252.934982 C207.472933,251.085696 211.584707,253.701007 210.744963,256.29533 C209.90522,258.889652 209.893867,263.044086 199.038919,277.002747 C191.802288,286.308521 185.137911,293.238619 179.045788,297.79304 L162.46337,308.892857 C165.293213,314.781773 168.235521,319.833361 171.290293,324.047619 C174.345065,328.261877 177.310877,331.883672 180.187729,334.913004 L185.445971,339.2587 C169.787733,338.960014 161.221036,338.689104 159.745879,338.445971 C157.533144,338.081271 157.336081,336.357143 155.897436,334.315018 C154.458791,332.272894 155.600733,305.592949 155.897436,303.280678 C156.095238,301.739164 157.141026,300.507326 159.034799,299.585165 L160.882784,301.897436 C163.21448,301.997187 168.161824,298.57411 175.724817,291.628205 C187.069306,281.209348 189.875288,277.551872 195.787546,269.840659 C201.699803,262.129447 203.388788,254.784268 205.430861,252.934982 Z" id="Path-8" fill="#003079"></path>
20
+ <rect id="Rectangle" fill="#E47422" x="153.787546" y="305.699634" width="3.75091575" height="3.75091575"></rect>
21
+ <polygon id="Path-9" fill="#000000" points="160.194139 341.089744 187.419414 341.089744 205.374542 350.466117 224.351648 355.471612 251.57326 355.471612 269.740842 350.466117 294.60348 362.806777 326.788462 373.436813 333.076007 379.371272 312.015568 374.917582 293.06044 362.806777 275.101648 355.471612 255.703297 360.230508 230.994505 360.230508 212.326007 355.471612 196.496337 348.032051 175.917582 348.032051 167.672161 348.032051 162.658425 346.442308"></polygon>
22
+ <polygon id="Path-10" fill="#000000" points="143.260073 99.9505495 143.260073 108.913919 146.143315 123.788919 151.313645 138.535714 153.947802 138.535714 152.797161 131.024267 150.003663 112.034341 146.143315 100.633242"></polygon>
23
+ <path d="M207.70696,252.312693 L201.927656,246.699634 L201.927656,238.461538 L210.856496,228.834249 L222.983516,217.135531 L231.734432,204.257326 L236.194139,191.717949 L237.761905,179.106227 L237.761905,170.558608 L244.600733,163.455128 L244.600733,153.28663 L250.065018,145.549451 L251.588828,136.744505 L247.179487,130.70696 L250.065018,125.21337 L250.065018,119.243132 C252.269908,121.327965 253.623082,122.875736 254.124542,123.886447 C254.626002,124.897158 255.168737,127.170662 255.752747,130.70696 L254.124542,136.744505 L255.752747,141.895604 L255.752747,147.978022 C255.588129,149.926715 255.045394,151.696251 254.124542,153.28663 C253.20369,154.877009 252.358452,155.504603 251.588828,155.169414 L251.588828,166.436813 L250.065018,170.558608 L244.600733,173.947802 L243.046703,179.106227 L239.446886,193.694139 L239.446886,197.101648 L239.446886,201.611722 C234.434168,211.325601 229.589541,219.621999 224.913004,226.500916 C220.236467,233.379832 216.461742,237.762005 213.588828,239.647436 L207.70696,244.968864 L207.70696,252.312693 Z" id="Path-11" fill="#000000"></path>
24
+ <path d="M288.370879,341.089744 L290.431074,339.901392 L348.553571,306.375458 C359.293769,300.719754 365.659001,297.071403 367.649267,295.430403 C369.639534,293.789403 370.873051,291.172492 371.349817,287.57967 L369.782051,283.262821 C374.176438,287.014812 376.480773,290.570063 376.695055,293.928571 C377.016478,298.966334 377.143184,298.800368 371.349817,303.891941 C367.487572,307.286323 363.494593,309.634614 359.370879,310.936813 L330.016484,328.055861 L309.431319,339.2587 L297.734432,346.442308" id="Path-12" fill="#000000"></path>
25
+ <polygon id="Path-13" fill="#000000" points="371.040293 149.315934 371.040293 165.283883 361.779304 182.503663 350.050366 194.207875 360.54533 197.367216 373.200549 182.503663 378.217033 170.392857 378.217033 154.20696 371.040293 147.570513"></polygon>
26
+ <polygon id="Path-14" fill="#000000" points="362.70696 201.904762 369.203297 209.864469 367.917582 221.70696 360.046703 233.93315 341.274725 250.260989 346.977106 261.685897 337.968864 263.03022 337.968864 250.260989 332.594868 244.28663 350.899082 229.667582 360.046703 217.867216"></polygon>
27
+ <polygon id="Path-15" fill="#EA9900" points="51.5082418 247.927656 73.3956044 250.144689 82.9629121 250.144689 97.0503663 244.172161 112.326007 235.605311 94.9981685 254.124542 91.9450549 267.876374 100.836081 275.944139 110.037546 279.893773 94.9981685 279.893773 74.6575092 270.195055 64.2710623 257.749542"></polygon>
28
+ <path d="M115.358059,210.542125 C114.572205,208.711444 114.03527,206.528599 113.747253,203.99359 C113.459236,201.45858 113.459236,198.91554 113.747253,196.364469 L143.472527,203.99359 L115.358059,210.542125 Z" id="Path-16" fill="#FFFFFF"></path>
29
+ <path d="M163.452381,307.575092 L178.470696,299.06685 L197.091575,278.667125 L207.299451,266.447802 L213.033883,254.124542 L221.92033,257.17033 L240.465201,232.467491 L264.996337,203.453297 L304.953297,167.434066 L337.083333,145.558608 L352.682234,140.391026 L364.1337,141.826923 L371.040293,149.315934 L371.040293,161.903846 L364.1337,178.467033 L350.050366,194.207875 L358.563187,197.367216 L362.214286,203.453297 L358.563187,218.668498 L341.301282,237.590659 L332.594868,244.28663 L337.083333,251.040293 L337.083333,263.03022 L355.246337,263.03022 L364.1337,271.195971 L364.1337,278.667125 L369.782051,283.262821 L371.040293,289.968864 L366.080586,295.785697 L286.531136,341.089744 L264.996337,350.466117 L243.251832,354.75 C235.446164,355.231442 229.523087,355.231442 225.482601,354.75 C221.442114,354.268558 215.381064,352.840597 207.299451,350.466117 C200.906343,347.649009 195.968309,345.175871 192.485348,343.046703 C189.002387,340.917536 183.718504,336.621748 176.6337,330.159341 C173.44151,326.033935 171.147554,322.874899 169.751832,320.682234 C168.356109,318.489569 166.775829,315.562219 165.010989,311.900183 L163.452381,307.575092 Z" id="Path-18" fill="#FFFFFF"></path>
30
+ <path d="M72.1300366,226.296245 L84.4148352,220.707875 L104.764652,213.541667 L128.501884,207.441392 L144.349817,203.453297 L150.03663,204.267399 L159.081502,205.548535 L166.744505,209.194139 C154.119531,212.131524 145.881131,214.213636 142.029304,215.440476 C138.177477,216.667316 134.655378,218.331026 131.463005,220.431604 L117.330586,228.834249 C115.134444,230.260443 112.848425,231.583551 110.472527,232.803571 C108.09663,234.023592 104.152796,235.899508 98.6410256,238.431319 L83.6428571,239.863553 L73.4395604,238.431319 L67.9166667,234.184066 L69.6149267,229.961996 L72.1300366,226.296245 Z" id="Path-19" fill="#D33307"></path>
31
+ </g>
32
+ </g>
33
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/seven-eleven</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/seven-eleven" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <path d="M0,-2.55795385e-12 L0,512 L512,512 L512,-2.55795385e-12 L0,-2.55795385e-12 Z M422.144,450.6224 C422.144,462.3216 414.7456,471.8192 405.6576,471.8192 L315.6736,471.8448 L315.6736,471.8448 L315.6736,491.7616 L192.8704,491.7616 L192.8704,471.8192 L99.9424,471.8192 C90.8544,471.8192 83.456,462.3216 83.456,450.6224 L44.5952,57.3552 C44.5952,45.656 53.6832,36.1584 64.8704,36.1584 L440.3712,36.1584 C451.5072,36.1584 460.5696,45.656 460.5696,57.3552 L422.144,450.6224 Z" id="Shape" fill="#008061" fill-rule="nonzero"></path>
8
+ <path d="M313.344,364.7856 L206.0544,364.7856 C202.4704,399.0384 200.6272,440.7664 200.6272,484.568 L309.5808,484.568 C309.6064,440.7664 309.76,399.0384 313.344,364.7856 L313.344,364.7856 Z" id="Path" fill="#ED1B2D" fill-rule="nonzero"></path>
9
+ <path d="M370.6112,290.392 C386.2784,279.1792 404.1984,284.2992 404.224,297.048 L404.224,357.08 L382.6176,357.08 L382.6176,306.0336 C382.6176,301.6048 371.6352,299.5312 370.4576,307.2624 L370.4576,357.0544 L348.928,357.0544 L348.928,286.2448 L370.4576,286.2448 L370.4576,307.0576 L370.6112,290.392 Z M339.4816,302.0144 L322.048,302.0144 L322.048,315.2752 L339.4816,315.2752 L339.4816,328.5616 L322.048,328.5616 L322.048,341.848 L339.4816,341.848 L339.4816,357.0544 L299.648,357.0544 L299.648,286.2448 L339.4816,286.2448 L339.4816,302.0144 Z M278.272,286.2448 L294.8864,286.2448 L281.4208,357.0544 L252.6208,357.0544 L241.5104,286.2448 L261.0432,286.2448 L269.5424,334.1168 L278.272,286.2448 Z M237.3888,302.0144 L220.0576,302.0144 L220.0576,315.2752 L237.3888,315.2752 L237.3888,328.5616 L220.0576,328.5616 L220.0576,341.848 L237.3888,341.848 L237.3888,357.0544 L197.632,357.0544 L197.632,286.2448 L237.3888,286.2448 L237.3888,302.0144 Z M174.6432,341.848 L192.0768,341.848 L192.0768,357.0544 L152.2432,357.0544 L152.2432,286.2448 L174.6432,286.2448 L174.6432,341.848 Z M144.768,302.0144 L127.3344,302.0144 L127.3344,315.2752 L144.768,315.2752 L144.768,328.5616 L127.3344,328.5616 L127.3344,341.848 L144.768,341.848 L144.768,357.0544 L104.9344,357.0544 L104.9344,286.2448 L144.768,286.2448 L144.768,302.0144 Z" id="Combined-Shape" fill="#008061" fill-rule="nonzero"></path>
10
+ <path d="M221.5936,276.0304 L323.456,276.2864 L323.456,276.2864 C325.6576,249.176 362.7776,204.9392 398.72,193.3168 L398.72,88.7408 C299.8016,133.0032 235.4944,199.9472 221.5936,276.0304 Z" id="Path" fill="#ED1B2D" fill-rule="nonzero"></path>
11
+ <path d="M112.9984,93.7328 L113.2288,188.3248 L245.4784,188.3248 C264.2944,154.0208 339.6352,103 364.3904,93.7328 L112.9984,93.7328 Z" id="Path" fill="#F5821F" fill-rule="nonzero"></path>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/smilepay</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/smilepay" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="Shape" fill-rule="nonzero">
8
+ <path d="M90.795814,0 L421.204186,0 C470.971325,0 511.31556,40.3442365 511.31556,90.1113744 L511.31556,420.519746 C511.31556,470.286885 470.971325,510.63112 421.204186,510.63112 L90.795814,510.63112 C41.0286762,510.63112 0.684439703,470.286885 0.684439703,420.519746 L0.684439703,90.1113744 C0.684439703,40.3442365 41.0286762,0 90.795814,0 Z" id="Rectangle" fill="#FF6600"></path>
9
+ <path d="M62.3866779,260.321748 C97.4620771,308.689766 127.526905,343.866707 152.581163,365.852571 C190.162549,398.831366 224.349553,412.746468 246.52051,421.95218 C268.691468,431.157895 300.977312,447.521905 368.443663,449.574211 C413.421232,450.942414 461.045198,441.735071 511.31556,421.95218 L511.31556,510.63112 L219.744939,510.63112 C199.309153,494.130503 184.491975,481.145704 173.036132,469.85807 C155.852366,452.926619 152.094328,453.847782 126.59201,414.907341 C109.590465,388.947046 96.0939656,363.01656 86.1025131,337.115881 L62.3866779,260.321748 Z" id="Path-2" fill="#FFFFFF"></path>
10
+ <path d="M45.7401269,260.321804 C33.2928322,260.321804 9.89638273,257.862654 0.684439703,247.762905 C0.684439703,240.944838 -0.408090456,135.653208 0.684439703,88.9800101 C0.980301985,76.3406896 2.36968623,72.6356275 2.9729251,69.5541498 C12.8341635,60.954212 34.225721,60.0727544 45.7401269,60.0727544 C98.2721055,60.0727544 140.857689,104.901179 140.857689,160.197999 C140.857689,215.494818 98.2721055,260.321804 45.7401269,260.321804 Z" id="Oval" fill="#FFFFFF"></path>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
4
+ <title>svg/taiwan-flag</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="svg/taiwan-flag" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="Group" transform="translate(0.000000, 77.000000)" fill-rule="nonzero">
8
+ <path d="M503.171017,358 L8.82798276,358 C3.95299228,358 0,353.781254 0,348.578526 L0,9.42147391 C0,4.21874562 3.95299228,0 8.82798276,0 L503.172017,0 C508.047008,0 512,4.21874562 512,9.42147391 L512,348.578526 C512,353.782322 508.046008,358 503.171017,358 Z" id="Path" fill="#FF4B55"></path>
9
+ <path d="M8.81884958,0.000998703331 L246.9168,0.000998703331 C251.786747,0.000998703331 255.735649,3.94887297 255.735649,8.81755171 L255.735649,158.691962 C255.735649,163.560641 251.786747,167.508515 246.9168,167.508515 L8.81884958,167.508515 C3.94890263,167.508515 2.55795385e-13,163.559642 2.55795385e-13,158.690963 L2.55795385e-13,8.81655301 C2.55795385e-13,3.94787427 3.94890263,0.000998703331 8.81884958,0.000998703331 Z" id="Path" fill="#41479B"></path>
10
+ <path d="M96.3030762,83.7542575 C96.3030762,75.043567 99.8334131,67.1578055 105.54149,61.4482186 L79.0949313,53.8850382 C77.5595244,53.4466075 76.4596656,55.3521334 77.6064757,56.4616928 L97.3969412,75.5918551 L70.6906515,82.2671882 C69.1422582,82.6536864 69.1422582,84.8548285 70.6906515,85.2423254 L97.3969412,91.9176585 L77.6064757,111.047821 C76.4586667,112.15738 77.5595244,114.062906 79.0949313,113.624475 L105.54149,106.061295 C99.8334131,100.350709 96.3030762,92.4649479 96.3030762,83.7542575 Z" id="Path" fill="#F5F5F5"></path>
11
+ <path d="M105.555476,61.4342367 C111.26655,55.7276459 119.154366,52.1982283 127.867325,52.1982283 C136.580285,52.1982283 144.4681,55.7276459 150.179174,61.4342367 L157.744325,34.9945647 C158.18287,33.4595577 156.276848,32.3599853 155.166999,33.5064968 L136.031854,53.2908097 L129.354782,26.5914749 C128.968183,25.0434847 126.766467,25.0434847 126.37887,26.5914749 L119.701798,53.2908097 L100.566652,33.5064968 C99.4568039,32.3589866 97.5507815,33.4595577 97.9893265,34.9945647 L105.555476,61.4342367 Z" id="Path" fill="#F5F5F5"></path>
12
+ <path d="M150.179174,106.074278 C144.4681,111.780869 136.580285,115.310287 127.867325,115.310287 C119.154366,115.310287 111.26655,111.780869 105.555476,106.074278 L97.9903255,132.51395 C97.5517805,134.048957 99.4578028,135.14853 100.567651,134.002018 L119.702797,114.217705 L126.379869,140.91704 C126.766467,142.46503 128.968183,142.46503 129.355781,140.91704 L136.032853,114.217705 L155.167998,134.002018 C156.277846,135.149528 158.183869,134.048957 157.745324,132.51395 L150.179174,106.074278 Z" id="Path" fill="#F5F5F5"></path>
13
+ <path d="M185.043999,82.2661895 L158.337709,75.5908564 L178.127176,56.4606941 C179.274985,55.3511347 178.174127,53.4456088 176.63872,53.8840395 L150.192161,61.4472199 C155.900238,67.1568068 159.430575,75.0425683 159.430575,83.7532588 C159.430575,92.4639492 155.900238,100.349711 150.192161,106.059298 L176.63872,113.622478 C178.174127,114.060909 179.273986,112.155383 178.127176,111.045823 L158.337709,91.9156611 L185.043999,85.240328 C186.593391,84.8548285 186.593391,82.6546851 185.043999,82.2661895 Z" id="Path" fill="#F5F5F5"></path>
14
+ <ellipse id="Oval" fill="#F5F5F5" cx="127.867325" cy="83.7562549" rx="25.1339211" ry="25.1273758"></ellipse>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,23 @@
1
+ import supportDom from '../helpers/supportDom'
2
+
3
+ @supportDom
4
+ export default class Alert {
5
+
6
+ constructor(dom) {
7
+ this.dom = dom
8
+ this.init()
9
+ this.addEvents()
10
+ }
11
+
12
+ addEvents() {
13
+ const { dom } = this
14
+ const btns = dom.querySelectorAll('[data-dismiss="alert"]')
15
+
16
+ btns.forEach(btn => {
17
+ this.addEvent(btn, 'click', () => {
18
+ this.destroy()
19
+ this.dom.remove()
20
+ })
21
+ })
22
+ }
23
+ }
@@ -0,0 +1,110 @@
1
+ import debounce from 'lodash.debounce'
2
+ import AutocompleteMenu from './AutocompleteMenu'
3
+ import promisify from '../helpers/promisify'
4
+ import supportDom from '../helpers/supportDom'
5
+ import noop from 'lodash.noop'
6
+
7
+ const defaultRenderMenuItem = row => {
8
+ return `
9
+ <div class="item">
10
+ <div class="page-prefix">${row.prefix}</div>
11
+ <div class="page-title">${row.title}</div>
12
+ </div>
13
+ `
14
+ }
15
+
16
+ @supportDom
17
+ export default class Autocomplete {
18
+
19
+ constructor(dom, options = {}) {
20
+ this.dom = dom
21
+ this.options = options
22
+ this.options.getData = promisify(this.options.getData || noop)
23
+ this.options.renderMenuItem = this.options.renderMenuItem || defaultRenderMenuItem
24
+ this.isCompositing = false
25
+ this.rows = []
26
+
27
+ const { dataset } = dom
28
+ const offsetLeft = ('offsetLeft' in dataset) ? parseInt(dataset.offsetLeft, 10) : 0
29
+ const offsetTop = ('offsetTop' in dataset) ? parseInt(dataset.offsetTop, 10) : 0
30
+
31
+ this.menu = new AutocompleteMenu({ offsetLeft, offsetTop })
32
+ this.init()
33
+ }
34
+
35
+ init() {
36
+ this.addEvents()
37
+ }
38
+
39
+ renderMenuItem() {
40
+ this.menu.renderMenuItem(this.rows, this.options.renderMenuItem)
41
+ }
42
+
43
+ async getData() {
44
+ const lastKeyword = this.dom.value
45
+ const rows = await this.options.getData({ keyword: lastKeyword })
46
+ if (lastKeyword !== this.dom.value) {
47
+ return
48
+ }
49
+ const { menu } = this
50
+ this.rows = rows
51
+ this.renderMenuItem()
52
+
53
+ if (rows.length > 0) {
54
+ this.showMenu()
55
+ return
56
+ }
57
+ menu.hide()
58
+ }
59
+
60
+ showMenu() {
61
+ this.menu.show(this.dom)
62
+ }
63
+
64
+ addEvents() {
65
+ const { dom, menu } = this
66
+
67
+ menu.on('click', index => {
68
+ const { itemClick } = this.options
69
+ if (typeof itemClick === 'function') {
70
+ clearTimeout(this._blurTimer)
71
+ const value = itemClick(this.rows[index])
72
+ this.dom.value = value
73
+ this.menu.hide()
74
+ }
75
+ })
76
+
77
+ this.addEvent(dom, 'focus', () => {
78
+ if (this.rows.length === 0) {
79
+ this.getData()
80
+ }
81
+ else {
82
+ this.showMenu()
83
+ }
84
+ })
85
+
86
+ this.addEvent(dom, 'blur', () => {
87
+ this._blurTimer = setTimeout(() => this.menu.hide(), 50)
88
+ })
89
+
90
+ this.addEvent(dom, 'keyup', debounce(() => {
91
+ if (this.isCompositing) {
92
+ return
93
+ }
94
+ this.getData()
95
+ }, 200))
96
+
97
+ this.addEvent(dom, 'compositionstart', () => {
98
+ this.isCompositing = true
99
+ })
100
+
101
+ this.addEvent(dom, 'compositionend', () => {
102
+ this.getData()
103
+ this.isCompositing = false
104
+ })
105
+ }
106
+
107
+ destroy() {
108
+ this.menu.destroy()
109
+ }
110
+ }