@dta-au/civictheme-twig 1.16.1 → 1.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (284) hide show
  1. package/README.md +32 -0
  2. package/assets/fonts/archivo/Archivo-variable.woff2 +0 -0
  3. package/assets/fonts/archivo/OFL.txt +93 -0
  4. package/assets/icons/login.svg +4 -0
  5. package/assets/icons/prompt-suggestion.svg +1 -0
  6. package/assets/logos/digital.gov.au-docs.svg +29 -0
  7. package/assets/logos/logo_primary_dark_desktop.svg +33 -0
  8. package/assets/logos/logo_primary_dark_mobile.svg +33 -0
  9. package/assets/logos/logo_primary_light_desktop.svg +1 -0
  10. package/assets/logos/logo_primary_light_mobile.svg +1 -0
  11. package/components/00-base/elevation/elevation.mdx +35 -0
  12. package/components/00-base/fonts/fonts.mdx +22 -5
  13. package/components/00-base/fonts/fonts.stories.js +13 -2
  14. package/components/00-base/fonts/fonts.stories.scss +8 -0
  15. package/components/00-base/fonts/fonts.stories.twig +3 -3
  16. package/components/00-base/icon/icon.twig +4 -1
  17. package/components/00-base/layout/__snapshots__/layout.test.js.snap +11 -0
  18. package/components/00-base/layout/layout.twig +3 -1
  19. package/components/00-base/menu/menu.stories.scss +6 -8
  20. package/components/00-base/mixins/_content.scss +57 -53
  21. package/components/00-base/mixins/_font.scss +5 -1
  22. package/components/00-base/mixins/_link.scss +24 -30
  23. package/components/00-base/text-icon/text-icon.scss +3 -0
  24. package/components/00-base/typography/typography.scss +21 -8
  25. package/components/00-base/welcome/welcome.stories.js +0 -20
  26. package/components/00-base/welcome/welcome.stories.scss +5 -7
  27. package/components/00-base/welcome/welcome.stories.twig +19 -19
  28. package/components/01-atoms/button/button.scss +8 -1
  29. package/components/01-atoms/content-link/__snapshots__/content-link.test.js.snap +0 -1
  30. package/components/01-atoms/content-link/content-link.test.js +1 -1
  31. package/components/01-atoms/content-link/content-link.twig +3 -1
  32. package/components/01-atoms/iframe/iframe.md +27 -0
  33. package/components/01-atoms/iframe/iframe.mdx +4 -46
  34. package/components/01-atoms/iframe/iframe.scss +1 -1
  35. package/components/01-atoms/link/link.scss +1 -3
  36. package/components/01-atoms/summary-list/summary-list.md +29 -0
  37. package/components/01-atoms/summary-list/summary-list.mdx +4 -28
  38. package/components/01-atoms/summary-list/summary-list.scss +1 -1
  39. package/components/01-atoms/summary-list/summary-list.stories.js +1 -1
  40. package/components/01-atoms/summary-list/summary-list.twig +1 -1
  41. package/components/01-atoms/table/table.md +55 -0
  42. package/components/01-atoms/table/table.mdx +4 -55
  43. package/components/01-atoms/table-sort/table-sort.mdx +53 -0
  44. package/components/01-atoms/tag/__snapshots__/tag.test.js.snap +0 -1
  45. package/components/01-atoms/tag/tag.md +41 -0
  46. package/components/01-atoms/tag/tag.mdx +4 -41
  47. package/components/01-atoms/tag/tag.test.js +2 -1
  48. package/components/01-atoms/tag/tag.twig +3 -1
  49. package/components/02-molecules/accordion/__snapshots__/accordion.test.js.snap +20 -20
  50. package/components/02-molecules/accordion/accordion.md +60 -0
  51. package/components/02-molecules/accordion/accordion.mdx +4 -60
  52. package/components/02-molecules/accordion/accordion.scss +18 -0
  53. package/components/02-molecules/accordion/accordion.stories.js +15 -0
  54. package/components/02-molecules/accordion/accordion.twig +8 -1
  55. package/components/02-molecules/attachment/__snapshots__/attachment.test.js.snap +19 -15
  56. package/components/02-molecules/attachment/attachment.md +32 -0
  57. package/components/02-molecules/attachment/attachment.mdx +4 -30
  58. package/components/02-molecules/attachment/attachment.scss +8 -11
  59. package/components/02-molecules/attachment/attachment.stories.js +18 -0
  60. package/components/02-molecules/attachment/attachment.twig +12 -2
  61. package/components/02-molecules/basic-content/__snapshots__/basic-content.test.js.snap +3 -7
  62. package/components/02-molecules/basic-content/basic-content.scss +12 -1
  63. package/components/02-molecules/basic-content/basic-content.twig +3 -3
  64. package/components/02-molecules/basic-content/content.md +24 -0
  65. package/components/02-molecules/basic-content/content.mdx +4 -24
  66. package/components/02-molecules/breadcrumb/__snapshots__/breadcrumb.test.js.snap +226 -25
  67. package/components/02-molecules/breadcrumb/breadcrumb.scss +0 -8
  68. package/components/02-molecules/breadcrumb/breadcrumb.stories.js +7 -10
  69. package/components/02-molecules/breadcrumb/breadcrumb.test.js +39 -36
  70. package/components/02-molecules/breadcrumb/breadcrumb.twig +13 -20
  71. package/components/02-molecules/callout/__snapshots__/callout.test.js.snap +18 -15
  72. package/components/02-molecules/callout/callout.md +45 -0
  73. package/components/02-molecules/callout/callout.mdx +4 -43
  74. package/components/02-molecules/callout/callout.scss +4 -0
  75. package/components/02-molecules/callout/callout.stories.js +7 -0
  76. package/components/02-molecules/callout/callout.twig +12 -2
  77. package/components/02-molecules/event-card/__snapshots__/event-card.test.js.snap +2 -0
  78. package/components/02-molecules/event-card/event-card.scss +6 -0
  79. package/components/02-molecules/event-card/event-card.stories.js +3 -0
  80. package/components/02-molecules/event-card/event-card.twig +4 -1
  81. package/components/02-molecules/fast-fact-card/__snapshots__/fast-fact-card.test.js.snap +4 -0
  82. package/components/02-molecules/fast-fact-card/fast-fact-card.scss +6 -0
  83. package/components/02-molecules/fast-fact-card/fast-fact-card.stories.js +3 -0
  84. package/components/02-molecules/fast-fact-card/fast-fact-card.twig +5 -2
  85. package/components/02-molecules/feature-link-list/feature-link-list.md +61 -0
  86. package/components/02-molecules/feature-link-list/feature-link-list.mdx +4 -65
  87. package/components/02-molecules/feature-link-list/feature-link-list.scss +20 -2
  88. package/components/02-molecules/feature-link-list/feature-link-list.stories.js +18 -1
  89. package/components/02-molecules/feature-link-list/feature-link-list.twig +14 -3
  90. package/components/02-molecules/figure/figure.md +48 -0
  91. package/components/02-molecules/figure/figure.mdx +4 -49
  92. package/components/02-molecules/group-filter/__snapshots__/group-filter.test.js.snap +25 -25
  93. package/components/02-molecules/group-filter/group-filter.stories.js +3 -0
  94. package/components/02-molecules/group-filter/group-filter.twig +8 -1
  95. package/components/02-molecules/link-card/__snapshots__/link-card.test.js.snap +10 -0
  96. package/components/02-molecules/link-card/link-card.scss +8 -1
  97. package/components/02-molecules/link-card/link-card.stories.js +4 -1
  98. package/components/02-molecules/link-card/link-card.twig +5 -2
  99. package/components/02-molecules/map/__snapshots__/map.test.js.snap +15 -15
  100. package/components/02-molecules/map/map.md +23 -0
  101. package/components/02-molecules/map/map.mdx +4 -46
  102. package/components/02-molecules/map/map.scss +10 -0
  103. package/components/02-molecules/map/map.stories.js +15 -0
  104. package/components/02-molecules/map/map.twig +8 -1
  105. package/components/02-molecules/navigation-card/__snapshots__/navigation-card.test.js.snap +9 -0
  106. package/components/02-molecules/navigation-card/navigation-card.scss +6 -0
  107. package/components/02-molecules/navigation-card/navigation-card.stories.js +3 -0
  108. package/components/02-molecules/navigation-card/navigation-card.twig +4 -1
  109. package/components/02-molecules/next-step/__snapshots__/next-step.test.js.snap +19 -15
  110. package/components/02-molecules/next-step/next-step.md +24 -0
  111. package/components/02-molecules/next-step/next-step.mdx +4 -24
  112. package/components/02-molecules/next-step/next-step.scss +4 -0
  113. package/components/02-molecules/next-step/next-step.stories.js +7 -0
  114. package/components/02-molecules/next-step/next-step.twig +12 -2
  115. package/components/02-molecules/progress-nav/progress-nav.scss +2 -4
  116. package/components/02-molecules/progress-nav/progress-nav.stories.js +1 -1
  117. package/components/02-molecules/progress-nav/progress-nav.twig +1 -1
  118. package/components/02-molecules/progress-tracker/progress-tracker.scss +1 -1
  119. package/components/02-molecules/progress-tracker/progress-tracker.stories.js +1 -1
  120. package/components/02-molecules/progress-tracker/progress-tracker.twig +1 -1
  121. package/components/02-molecules/promo-card/__snapshots__/promo-card.test.js.snap +4 -0
  122. package/components/02-molecules/promo-card/promo-card.scss +6 -0
  123. package/components/02-molecules/promo-card/promo-card.stories.js +3 -0
  124. package/components/02-molecules/promo-card/promo-card.twig +4 -1
  125. package/components/02-molecules/publication-card/__snapshots__/publication-card.test.js.snap +5 -0
  126. package/components/02-molecules/publication-card/publication-card.scss +6 -0
  127. package/components/02-molecules/publication-card/publication-card.stories.js +3 -0
  128. package/components/02-molecules/publication-card/publication-card.twig +4 -1
  129. package/components/02-molecules/search/search.twig +1 -1
  130. package/components/02-molecules/search-bar/search-bar.mdx +37 -0
  131. package/components/02-molecules/search-bar/search-bar.scss +1 -1
  132. package/components/02-molecules/search-bar/search-bar.stories.js +1 -1
  133. package/components/02-molecules/search-bar/search-bar.twig +5 -3
  134. package/components/02-molecules/search-form/search-form.js +43 -0
  135. package/components/02-molecules/search-form/search-form.scss +95 -0
  136. package/components/02-molecules/search-form/search-form.stories.js +50 -0
  137. package/components/02-molecules/search-form/search-form.twig +68 -0
  138. package/components/02-molecules/service-card/__snapshots__/service-card.test.js.snap +4 -0
  139. package/components/02-molecules/service-card/service-card.scss +2 -0
  140. package/components/02-molecules/service-card/service-card.stories.js +3 -0
  141. package/components/02-molecules/service-card/service-card.twig +4 -1
  142. package/components/02-molecules/single-filter/__snapshots__/single-filter.test.js.snap +15 -15
  143. package/components/02-molecules/single-filter/single-filter.stories.js +3 -0
  144. package/components/02-molecules/single-filter/single-filter.twig +9 -2
  145. package/components/02-molecules/snippet/__snapshots__/snippet.test.js.snap +5 -0
  146. package/components/02-molecules/snippet/snippet.scss +6 -0
  147. package/components/02-molecules/snippet/snippet.stories.js +12 -0
  148. package/components/02-molecules/snippet/snippet.twig +4 -1
  149. package/components/02-molecules/subject-card/__snapshots__/subject-card.test.js.snap +5 -0
  150. package/components/02-molecules/subject-card/subject-card.scss +6 -0
  151. package/components/02-molecules/subject-card/subject-card.stories.js +3 -0
  152. package/components/02-molecules/subject-card/subject-card.twig +4 -1
  153. package/components/02-molecules/table-of-contents/table-of-contents.js +41 -25
  154. package/components/02-molecules/table-of-contents/table-of-contents.md +28 -0
  155. package/components/02-molecules/table-of-contents/table-of-contents.mdx +4 -57
  156. package/components/02-molecules/table-of-contents/table-of-contents.stories.js +7 -0
  157. package/components/02-molecules/table-of-contents/table-of-contents.twig +13 -2
  158. package/components/02-molecules/tabs/__snapshots__/tabs.test.js.snap +185 -17
  159. package/components/02-molecules/tabs/tabs.scss +74 -0
  160. package/components/02-molecules/tabs/tabs.stories.js +92 -0
  161. package/components/02-molecules/tabs/tabs.test.js +36 -1
  162. package/components/02-molecules/tabs/tabs.twig +16 -3
  163. package/components/03-organisms/banner/__snapshots__/banner.test.js.snap +11 -7
  164. package/components/03-organisms/banner/banner.md +23 -0
  165. package/components/03-organisms/banner/banner.mdx +4 -23
  166. package/components/03-organisms/banner/banner.scss +2 -0
  167. package/components/03-organisms/banner/banner.stories.data.js +4 -3
  168. package/components/03-organisms/banner/banner.stories.js +3 -0
  169. package/components/03-organisms/banner/banner.test.js +0 -1
  170. package/components/03-organisms/banner/banner.twig +6 -4
  171. package/components/03-organisms/campaign/__snapshots__/campaign.test.js.snap +6 -3
  172. package/components/03-organisms/campaign/campaign.md +25 -0
  173. package/components/03-organisms/campaign/campaign.mdx +4 -25
  174. package/components/03-organisms/campaign/campaign.scss +4 -0
  175. package/components/03-organisms/campaign/campaign.stories.js +7 -0
  176. package/components/03-organisms/campaign/campaign.twig +12 -6
  177. package/components/03-organisms/chart/chart.js +1 -1
  178. package/components/03-organisms/chart/chart.scss +1 -1
  179. package/components/03-organisms/chart/chart.twig +5 -2
  180. package/components/03-organisms/decision-tool/decision-tool.js +1 -1
  181. package/components/03-organisms/decision-tool/decision-tool.scss +1 -1
  182. package/components/03-organisms/decision-tool/decision-tool.stories.js +4 -1
  183. package/components/03-organisms/decision-tool/decision-tool.twig +6 -3
  184. package/components/03-organisms/filterable-table/filterable-table.js +1 -1
  185. package/components/03-organisms/filterable-table/filterable-table.mdx +65 -0
  186. package/components/03-organisms/filterable-table/filterable-table.scss +7 -3
  187. package/components/03-organisms/filterable-table/filterable-table.twig +13 -3
  188. package/components/03-organisms/header/__snapshots__/header.test.js.snap +2 -2
  189. package/components/03-organisms/header/header.stories.data.js +3 -1
  190. package/components/03-organisms/header/header.twig +2 -2
  191. package/components/03-organisms/link-list/__snapshots__/link-list.test.js.snap +16 -0
  192. package/components/03-organisms/link-list/link-list.mdx +53 -0
  193. package/components/03-organisms/link-list/link-list.scss +3 -1
  194. package/components/03-organisms/link-list/link-list.stories.js +5 -2
  195. package/components/03-organisms/link-list/link-list.twig +5 -2
  196. package/components/03-organisms/list/__snapshots__/list.test.js.snap +4 -2
  197. package/components/03-organisms/list/list.scss +18 -4
  198. package/components/03-organisms/list/list.stories.js +6 -0
  199. package/components/03-organisms/list/list.twig +36 -30
  200. package/components/03-organisms/list/manual-list.md +25 -0
  201. package/components/03-organisms/list/manual-list.mdx +4 -25
  202. package/components/03-organisms/message/message.md +35 -0
  203. package/components/03-organisms/message/message.mdx +4 -35
  204. package/components/03-organisms/navigation/__snapshots__/navigation.test.js.snap +5 -0
  205. package/components/03-organisms/navigation/navigation.stories.js +3 -0
  206. package/components/03-organisms/navigation/navigation.twig +4 -1
  207. package/components/03-organisms/promo/__snapshots__/promo.test.js.snap +4 -4
  208. package/components/03-organisms/promo/promo.md +26 -0
  209. package/components/03-organisms/promo/promo.mdx +4 -26
  210. package/components/03-organisms/promo/promo.scss +19 -1
  211. package/components/03-organisms/promo/promo.stories.js +3 -0
  212. package/components/03-organisms/promo/promo.twig +7 -4
  213. package/components/03-organisms/search-assistant/search-assistant.js +412 -0
  214. package/components/03-organisms/search-assistant/search-assistant.mdx +89 -0
  215. package/components/03-organisms/search-assistant/search-assistant.scss +453 -0
  216. package/components/03-organisms/search-assistant/search-assistant.stories.js +332 -0
  217. package/components/03-organisms/search-assistant/search-assistant.twig +398 -0
  218. package/components/03-organisms/side-navigation/__snapshots__/side-navigation.test.js.snap +4 -0
  219. package/components/03-organisms/side-navigation/side-navigation.stories.js +3 -0
  220. package/components/03-organisms/side-navigation/side-navigation.twig +4 -1
  221. package/components/03-organisms/side-navigation/sub-nav.md +29 -0
  222. package/components/03-organisms/side-navigation/sub-nav.mdx +4 -29
  223. package/components/03-organisms/slider/__snapshots__/slide.test.js.snap +4 -0
  224. package/components/03-organisms/slider/__snapshots__/slider.test.js.snap +19 -15
  225. package/components/03-organisms/slider/slide.twig +4 -2
  226. package/components/03-organisms/slider/slider.js +31 -3
  227. package/components/03-organisms/slider/slider.md +52 -0
  228. package/components/03-organisms/slider/slider.mdx +4 -52
  229. package/components/03-organisms/slider/slider.scss +13 -0
  230. package/components/03-organisms/slider/slider.stories.js +7 -0
  231. package/components/03-organisms/slider/slider.twig +12 -2
  232. package/components/03-organisms/step-by-step-nav/step-by-step-nav.js +23 -4
  233. package/components/03-organisms/step-by-step-nav/step-by-step-nav.mdx +64 -0
  234. package/components/03-organisms/step-by-step-nav/step-by-step-nav.scss +29 -1
  235. package/components/03-organisms/step-by-step-nav/step-by-step-nav.stories.js +4 -1
  236. package/components/03-organisms/step-by-step-nav/step-by-step-nav.twig +12 -5
  237. package/components/03-organisms/webform/__snapshots__/webform.test.js.snap +15 -15
  238. package/components/03-organisms/webform/webform.md +23 -0
  239. package/components/03-organisms/webform/webform.mdx +4 -46
  240. package/components/03-organisms/webform/webform.scss +10 -4
  241. package/components/03-organisms/webform/webform.stories.js +4 -0
  242. package/components/03-organisms/webform/webform.twig +8 -1
  243. package/components/04-templates/page/__snapshots__/page.test.js.snap +10 -2
  244. package/components/04-templates/page/page-data-platform.stories.data.js +499 -0
  245. package/components/04-templates/page/page-data-platform.stories.js +42 -0
  246. package/components/04-templates/page/page-types.stories.data.js +519 -0
  247. package/components/04-templates/page/page-types.stories.js +68 -0
  248. package/components/04-templates/page/page.scss +1 -1
  249. package/components/04-templates/page/page.stories.data.js +379 -10
  250. package/components/04-templates/page/page.stories.js +97 -3
  251. package/components/04-templates/page/page.stories.scss +229 -0
  252. package/components/04-templates/page/page.twig +7 -7
  253. package/components/04-templates/search-results/__snapshots__/search-results.test.js.snap +33 -7
  254. package/components/04-templates/search-results/search-results.scss +1 -1
  255. package/components/04-templates/search-results/search-results.stories.js +4 -1
  256. package/components/04-templates/search-results/search-results.twig +12 -9
  257. package/components/variables.base.scss +34 -4
  258. package/components/variables.components.scss +234 -0
  259. package/dist/assets/fonts/archivo/Archivo-variable.woff2 +0 -0
  260. package/dist/assets/fonts/archivo/OFL.txt +93 -0
  261. package/dist/assets/icons/login.svg +4 -0
  262. package/dist/assets/icons/prompt-suggestion.svg +1 -0
  263. package/dist/assets/logos/digital.gov.au-docs.svg +29 -0
  264. package/dist/assets/logos/logo_primary_dark_desktop.svg +33 -0
  265. package/dist/assets/logos/logo_primary_dark_mobile.svg +33 -0
  266. package/dist/assets/logos/logo_primary_light_desktop.svg +1 -0
  267. package/dist/assets/logos/logo_primary_light_mobile.svg +1 -0
  268. package/dist/civictheme.css +1081 -233
  269. package/dist/civictheme.esm.js +6608 -0
  270. package/dist/civictheme.js +6610 -0
  271. package/dist/civictheme.stories.css +180 -30
  272. package/dist/civictheme.storybook.css +1081 -233
  273. package/dist/civictheme.storybook.js +6052 -8017
  274. package/dist/civictheme.variables.css +95 -7
  275. package/dist/constants.json +136 -14
  276. package/package.json +19 -5
  277. package/assets/logos/logo_primary_dark_desktop.png +0 -0
  278. package/assets/logos/logo_primary_dark_mobile.png +0 -0
  279. package/assets/logos/logo_primary_light_desktop.png +0 -0
  280. package/assets/logos/logo_primary_light_mobile.png +0 -0
  281. package/dist/assets/logos/logo_primary_dark_desktop.png +0 -0
  282. package/dist/assets/logos/logo_primary_dark_mobile.png +0 -0
  283. package/dist/assets/logos/logo_primary_light_desktop.png +0 -0
  284. package/dist/assets/logos/logo_primary_light_mobile.png +0 -0
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # @dta-au/civictheme-twig
2
+
3
+ CivicTheme UI Kit for Twig – components plus compiled CSS/JS distributables for non-Drupal consumers.
4
+
5
+ ## Runtime JS
6
+
7
+ `dist/civictheme.js` is the supported runtime entry (package main): a classic-safe IIFE bundle of every component behaviour, built by Vite. It runs behaviours on DOMContentLoaded – or registers one `Drupal.behaviors.civictheme_*` entry per behaviour when Drupal is present – and exposes `window.CivicTheme.attach()` for re-running behaviours over injected DOM.
8
+
9
+ Load it as a classic script:
10
+
11
+ ```html
12
+ <script src="civictheme.js"></script>
13
+ ```
14
+
15
+ Or import the ES module build, which exports `attach` and `behaviours`:
16
+
17
+ ```js
18
+ import { attach } from '@dta-au/civictheme-twig';
19
+ ```
20
+
21
+ `dist/civictheme.storybook.js` is a byte-identical alias kept for consumers of the old storybook artifact – switch to `dist/civictheme.js`.
22
+
23
+ ## Styles
24
+
25
+ - `dist/civictheme.css` – all component styles
26
+ - `dist/civictheme.variables.css` – CSS custom properties
27
+
28
+ ## Source components
29
+
30
+ Twig templates, SCSS, and behaviour JS live under `components/`, mirrored from the SDC package in this repo. Behaviour files are plain classic scripts; a behaviour authored as an ES module must `export default` its init function, and the bundler resolves its imports.
31
+
32
+ Issues and source live in the repository at https://github.com/JamesFehon-DTA/civictheme-uikit.
@@ -0,0 +1,93 @@
1
+ Copyright 2020 The Archivo Project Authors (https://github.com/Omnibus-Type/Archivo)
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ http://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path d="M18,28c-3.5928,0-6.9666-1.5903-9.2566-4.3632l1.542-1.2737c1.9087,2.3113,4.7207,3.6368,7.7146,3.6368,5.5139,0,10-4.486,10-10s-4.4861-10-10-10c-2.9939,0-5.8059,1.3256-7.7146,3.6368l-1.542-1.2737c2.29-2.7728,5.6638-4.3632,9.2566-4.3632,6.6169,0,12,5.3832,12,12s-5.3831,12-12,12Z"/>
3
+ <polygon points="23 16 16 9 14.5859 10.4141 19.1719 15 2 15 2 17 19.1719 17 14.5859 21.5859 16 23 23 16"/>
4
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="m600-200-56-57 143-143H300q-75 0-127.5-52.5T120-580q0-75 52.5-127.5T300-760h20v80h-20q-42 0-71 29t-29 71q0 42 29 71t71 29h387L544-624l56-56 240 240-240 240Z"/></svg>
@@ -0,0 +1,29 @@
1
+ <svg width="300" height="60" viewBox="0 0 300 60" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="digital.gov.au-docs">
3
+ <g id="digital.gov.au 1">
4
+ <path id="Vector" d="M41.9325 50.752C40.8196 49.3209 39.8073 47.951 38.5462 46.2444C40.9202 46.2444 42.7163 46.2258 44.5113 46.2602C44.8654 46.2669 45.2851 46.3912 45.5569 46.6071C48.165 48.679 51.0326 48.5748 53.9582 47.5521C55.9458 46.8573 56.7695 45.1757 56.3767 43.0125C49.4797 45.8021 44.1865 44.788 40.6162 39.9929C37.489 35.7929 37.7922 29.7982 41.4248 25.6566C44.5375 22.1077 50.3645 20.2282 56.4165 23.5835C56.355 22.2928 57.1034 22.1447 58.1476 22.2164C59.4455 22.3056 60.7543 22.2378 62.2048 22.2378C62.2048 23.2567 62.2048 24.1189 62.2048 24.9812C62.2048 30.9208 62.2049 36.8604 62.2047 42.8001C62.2046 48.8078 59.122 52.4382 53.115 53.214C49.1777 53.7225 45.3144 53.4828 41.9325 50.752ZM49.2242 39.6164C49.4974 39.6462 49.77 39.683 50.0438 39.7048C52.8224 39.9259 55.4698 38.3951 56.5805 35.9275C57.6925 33.4573 57.0406 30.3948 55.0189 28.5911C52.8181 26.6275 49.8575 26.2243 47.3986 27.6618C45.1387 28.983 43.9238 30.9411 44.1214 33.6207C44.3487 36.703 46.0341 38.6204 49.2242 39.6164Z" fill="#214053"/>
5
+ <path id="Vector_2" d="M149.368 23.0483C149.765 23.2621 150.049 23.4149 150.434 23.6221C150.545 23.1407 150.635 22.7463 150.737 22.301C152.522 22.301 154.266 22.301 156.233 22.301C156.233 22.9075 156.233 23.4845 156.233 24.0616C156.233 30.2805 156.233 36.4993 156.233 42.7182C156.233 48.844 153 52.5402 146.856 53.2625C143.479 53.6593 140.162 53.4129 137.129 51.6248C135.092 50.4243 133.865 48.6242 133.025 46.2473C135.007 46.2473 136.889 46.2304 138.77 46.2648C139.064 46.2702 139.394 46.4576 139.638 46.6476C142.264 48.6866 145.137 48.5697 148.059 47.5262C149.896 46.8699 150.714 45.1949 150.432 42.833C148.091 44.2998 145.613 44.8595 142.894 44.6418C134.578 43.9759 129.658 34.1636 134.228 27.2523C137.624 22.1166 143.297 20.5063 149.368 23.0483ZM146.329 39.5014C146.637 39.3907 146.953 39.297 147.253 39.1666C149.851 38.0362 151.302 35.6279 151.115 32.7707C150.947 30.2121 148.986 27.8239 146.428 27.063C143.917 26.316 140.957 27.287 139.369 29.3782C137.844 31.3879 137.612 34.4604 138.997 36.6019C140.643 39.1463 143.059 40.1158 146.329 39.5014Z" fill="#214153"/>
6
+ <path id="Vector_3" d="M4.43125 38.8208C2.1875 33.8325 2.94327 28.9213 6.77005 25.3715C11.0702 21.3825 15.965 21.3013 21.2523 24.0067C21.2523 20.5142 21.2523 17.1717 21.2523 13.7801C23.1935 13.7801 24.9422 13.7801 26.7978 13.7801C26.7978 24.0434 26.7978 34.2631 26.7978 44.5498C24.996 44.5498 23.25 44.5498 21.4168 44.5498C21.325 44.1593 21.2296 43.7536 21.1314 43.3362C14.3048 46.534 8.68849 45.3606 4.43125 38.8208ZM15.9093 40.0352C19.1264 39.5317 21.2663 37.5681 21.7339 34.6903C22.1648 32.0381 20.8811 29.2964 18.6106 28.0196C16.0751 26.5936 12.9857 26.926 10.8434 28.8553C8.97227 30.5404 8.2382 33.4795 9.21045 35.8951C10.354 38.7363 12.5921 40.0312 15.9093 40.0352Z" fill="#224154"/>
7
+ <path id="Vector_4" d="M84.4497 35.3528C83.8546 30.5676 85.4886 26.8493 89.3262 24.1648C93.0836 21.5365 97.3786 21.489 102.238 23.9386C102.171 22.6936 102.845 22.452 103.925 22.5432C105.177 22.6489 106.445 22.5678 107.83 22.5678C107.83 29.8952 107.83 37.1619 107.83 44.6123C106.318 44.6123 104.791 44.687 103.28 44.5655C102.841 44.5303 102.448 43.933 101.944 43.5188C93.4346 48.0248 85.4265 42.2306 84.4497 35.3528ZM100.249 38.8387C100.57 38.5427 100.919 38.2708 101.209 37.9467C103.017 35.9231 103.454 33.634 102.408 31.1319C101.388 28.6921 99.46 27.3533 96.8441 27.1846C94.1614 27.0116 92.0421 28.1248 90.6986 30.483C89.2331 33.0554 89.7271 36.1703 91.8748 38.2704C94.0278 40.3755 96.9747 40.6307 100.249 38.8387Z" fill="#1E3E51"/>
8
+ <path id="Vector_5" d="M233.226 44.6129C231.804 44.613 230.542 44.613 229.159 44.613C229.074 44.1784 228.995 43.7813 228.913 43.3658C222.087 46.4431 216.271 45.5168 212.242 38.8208C210.543 35.9974 210.472 32.8211 211.603 29.658C213.487 24.3892 220.302 19.4614 228.886 23.9313C228.96 23.5071 229.029 23.1141 229.111 22.6468C230.87 22.6468 232.616 22.6468 234.457 22.6468C234.498 22.9126 234.587 23.2187 234.587 23.525C234.596 30.1236 234.578 36.7223 234.612 43.3207C234.617 44.2491 234.484 44.821 233.226 44.6129ZM216.941 31.2454C215.937 33.9331 216.531 36.3025 218.543 38.2737C220.38 40.0739 222.636 40.5245 225.076 39.728C227.868 38.8163 229.76 36.0946 229.59 33.3902C229.4 30.3561 227.306 27.9119 224.341 27.2613C221.426 26.6218 218.613 28.0698 216.941 31.2454Z" fill="#1E3E51"/>
9
+ <path id="Vector_6" d="M163.589 24.1902C168.456 20.4919 174.378 21.218 177.933 23.9126C182.374 27.2785 183.988 32.7401 182.097 37.7564C180.398 42.2628 176.27 45.1361 171.195 45.3446C166.612 45.5329 162.291 42.8688 160.25 38.5978C158.209 34.3251 158.944 29.0362 162.071 25.6198C162.512 25.1375 163.019 24.7136 163.589 24.1902ZM171.92 27.1832C167.681 26.8265 164.893 29.3012 164.87 33.4408C164.846 37.6264 167.51 40.2302 171.53 39.9512C174.518 39.7438 176.795 37.4323 177.123 34.274C177.486 30.7713 175.658 28.146 171.92 27.1832Z" fill="#1F3F51"/>
10
+ <path id="Vector_7" d="M243.611 34.2343C243.732 35.246 243.757 36.1305 243.972 36.9672C244.516 39.0878 245.778 40.0784 247.806 40.1033C249.972 40.13 251.254 39.192 251.773 36.9727C252.029 35.8742 252.075 34.7108 252.086 33.5755C252.123 29.8809 252.1 26.1857 252.1 22.3933C253.991 22.3933 255.774 22.3933 258.014 22.3933C257.759 27.8025 257.592 33.2094 257.183 38.5982C257.096 39.7434 256.289 40.946 255.538 41.9107C252.583 45.7063 248.482 45.7983 244.322 44.7903C240.688 43.9096 238.798 41.1559 238.248 37.616C237.925 35.5333 237.961 33.3888 237.925 31.2707C237.877 28.3406 237.913 25.4091 237.913 22.3873C239.817 22.3873 241.6 22.3873 243.602 22.3873C243.602 26.2912 243.602 30.1883 243.611 34.2343Z" fill="#1F3E51"/>
11
+ <path id="Vector_8" d="M191.212 42.4218C188.312 35.7294 185.475 29.1458 182.569 22.4016C184.588 22.4016 186.416 22.4016 188.355 22.4016C190.17 26.5975 192.019 30.8704 194.025 35.5061C195.541 32.004 196.913 28.8485 198.274 25.6884C199.736 22.2946 199.731 22.2927 203.493 22.2943C204.076 22.2945 204.659 22.2943 205.5 22.2943C204.062 25.6464 202.716 28.7806 201.373 31.9161C199.767 35.6663 198.135 39.406 196.577 43.1758C196.141 44.2295 195.673 44.865 194.352 44.7731C193.06 44.6833 191.78 44.8746 191.518 43.1346C191.487 42.9259 191.358 42.7316 191.212 42.4218Z" fill="#203F52"/>
12
+ <path id="Vector_9" d="M80.5786 23.3283C80.4833 30.428 80.4833 37.3951 80.4833 44.4885C78.5991 44.4885 76.8299 44.4885 74.9742 44.4885C74.9742 34.2879 74.9742 24.077 74.9742 13.7965C76.7741 13.7965 78.5094 13.7965 80.3759 13.7965C80.3759 15.1634 80.3759 16.5044 80.3759 18.0452C81.9399 18.0452 83.3809 18.0452 84.8932 18.0452C84.8932 19.8046 84.8932 21.3657 84.8932 23.1958C83.4841 23.1958 82.079 23.1958 80.5786 23.3283Z" fill="#214053"/>
13
+ <path id="Vector_10" d="M117.029 34.4088C117.029 37.8969 117.029 41.2214 117.029 44.6686C115.159 44.6686 113.325 44.6686 111.383 44.6686C111.383 34.3888 111.383 24.0638 111.383 13.6444C113.21 13.6444 115.043 13.6444 117.029 13.6444C117.029 20.5388 117.029 27.3919 117.029 34.4088Z" fill="#284658"/>
14
+ <path id="Vector_11" d="M69.8814 22.2695C70.814 22.1817 71.2281 22.3587 71.2233 23.2997C71.1873 30.3808 71.2037 37.4621 71.2037 44.6671C69.3256 44.6671 67.4947 44.6671 65.5639 44.6671C65.5639 37.2605 65.5639 29.8291 65.5639 22.2695C66.9986 22.2695 68.3616 22.2695 69.8814 22.2695Z" fill="#274658"/>
15
+ <path id="Vector_12" d="M35.8676 30.1531C35.8676 35.0583 35.8676 39.7997 35.8676 44.6661C34.0009 44.6661 32.1672 44.6661 30.2241 44.6661C30.2241 37.2874 30.2241 29.8584 30.2241 22.3492C32.0703 22.3492 33.8631 22.3492 35.8676 22.3492C35.8676 24.9009 35.8676 27.4452 35.8676 30.1531Z" fill="#274658"/>
16
+ <path id="Vector_13" d="M127.91 39.1279C127.912 41.0056 127.912 42.7321 127.912 44.5452C125.763 44.5452 123.763 44.5452 121.69 44.5452C121.69 42.5215 121.69 40.5331 121.69 38.4043C123.607 38.4043 125.453 38.3862 127.298 38.4295C127.506 38.4343 127.705 38.786 127.91 39.1279Z" fill="#244355"/>
17
+ <path id="Vector_14" d="M210.495 43.1858C210.474 43.7656 210.453 44.1896 210.428 44.6973C208.366 44.6973 206.371 44.6973 204.307 44.6973C204.307 42.681 204.307 40.7456 204.307 38.6994C206.324 38.6994 208.315 38.6994 210.495 38.6994C210.495 40.13 210.495 41.58 210.495 43.1858Z" fill="#224154"/>
18
+ <path id="Vector_15" d="M65.4687 11.5924C65.7675 11.1143 66.0489 10.5285 66.3673 10.5079C67.8958 10.4094 69.4343 10.4637 71.0854 10.4637C71.0854 12.3041 71.0854 14.072 71.0854 15.9623C69.294 15.9623 67.4669 15.9623 65.4684 15.9623C65.4684 14.5536 65.4684 13.1494 65.4687 11.5924Z" fill="#264557"/>
19
+ <path id="Vector_16" d="M35.8661 14.0717C35.8661 14.7655 35.8661 15.3036 35.8661 15.9621C33.9492 15.9621 32.1238 15.9621 30.2072 15.9621C30.2072 14.1797 30.2072 12.4101 30.2072 10.5514C32.0576 10.5514 33.8478 10.5514 35.8661 10.5514C35.8661 11.6706 35.8661 12.7933 35.8661 14.0717Z" fill="#264557"/>
20
+ </g>
21
+ <g id="Education / conical flask">
22
+ <g id="Vector_17">
23
+ <path d="M293.517 29.15L285 14.55V6.66668H286.667C287.109 6.66668 287.533 6.49108 287.845 6.17852C288.158 5.86596 288.333 5.44204 288.333 5.00001C288.333 4.55798 288.158 4.13406 287.845 3.8215C287.533 3.50894 287.109 3.33334 286.667 3.33334H273.333C272.891 3.33334 272.467 3.50894 272.155 3.8215C271.842 4.13406 271.667 4.55798 271.667 5.00001C271.667 5.44204 271.842 5.86596 272.155 6.17852C272.467 6.49108 272.891 6.66668 273.333 6.66668H275V14.55L266.483 29.15C266.041 29.9095 265.807 30.7723 265.804 31.6513C265.801 32.5303 266.03 33.3944 266.468 34.1567C266.906 34.9189 267.537 35.5523 268.297 35.993C269.058 36.4336 269.921 36.666 270.8 36.6667H289.133C290.012 36.666 290.876 36.4336 291.636 35.993C292.397 35.5523 293.028 34.9189 293.465 34.1567C293.903 33.3944 294.132 32.5303 294.13 31.6513C294.127 30.7723 293.892 29.9095 293.45 29.15H293.517ZM278.1 15.8167C278.247 15.5692 278.327 15.2878 278.333 15V6.66668H281.667V15C281.67 15.2935 281.75 15.581 281.9 15.8333L283.333 18.3333H276.667L278.1 15.8167ZM290.633 32.4833C290.488 32.7352 290.279 32.9447 290.028 33.0909C289.776 33.2371 289.491 33.3149 289.2 33.3167H270.867C270.576 33.3149 270.29 33.2371 270.039 33.0909C269.788 32.9447 269.579 32.7352 269.433 32.4833C269.287 32.23 269.21 31.9426 269.21 31.65C269.21 31.3574 269.287 31.07 269.433 30.8167L274.717 21.6667H285.3L290.633 30.8333C290.78 31.0867 290.857 31.3741 290.857 31.6667C290.857 31.9592 290.78 32.2466 290.633 32.5V32.4833ZM276.667 25C276.337 25 276.015 25.0978 275.741 25.2809C275.467 25.464 275.253 25.7243 275.127 26.0289C275.001 26.3334 274.968 26.6685 275.032 26.9918C275.096 27.3151 275.255 27.6121 275.488 27.8452C275.721 28.0783 276.018 28.237 276.342 28.3013C276.665 28.3656 277 28.3326 277.304 28.2065C277.609 28.0803 277.869 27.8667 278.052 27.5926C278.236 27.3185 278.333 26.9963 278.333 26.6667C278.333 26.2246 278.158 25.8007 277.845 25.4882C277.533 25.1756 277.109 25 276.667 25ZM283.333 26.6667C283.004 26.6667 282.681 26.7644 282.407 26.9476C282.133 27.1307 281.92 27.391 281.794 27.6955C281.667 28.0001 281.634 28.3352 281.699 28.6585C281.763 28.9818 281.922 29.2788 282.155 29.5119C282.388 29.7449 282.685 29.9037 283.008 29.968C283.331 30.0323 283.667 29.9993 283.971 29.8731C284.276 29.747 284.536 29.5334 284.719 29.2593C284.902 28.9852 285 28.663 285 28.3333C285 27.8913 284.824 27.4674 284.512 27.1548C284.199 26.8423 283.775 26.6667 283.333 26.6667Z" fill="#61DAFF"/>
24
+ <path d="M293.517 29.15L285 14.55V6.66668H286.667C287.109 6.66668 287.533 6.49108 287.845 6.17852C288.158 5.86596 288.333 5.44204 288.333 5.00001C288.333 4.55798 288.158 4.13406 287.845 3.8215C287.533 3.50894 287.109 3.33334 286.667 3.33334H273.333C272.891 3.33334 272.467 3.50894 272.155 3.8215C271.842 4.13406 271.667 4.55798 271.667 5.00001C271.667 5.44204 271.842 5.86596 272.155 6.17852C272.467 6.49108 272.891 6.66668 273.333 6.66668H275V14.55L266.483 29.15C266.041 29.9095 265.807 30.7723 265.804 31.6513C265.801 32.5303 266.03 33.3944 266.468 34.1567C266.906 34.9189 267.537 35.5523 268.297 35.993C269.058 36.4336 269.921 36.666 270.8 36.6667H289.133C290.012 36.666 290.876 36.4336 291.636 35.993C292.397 35.5523 293.028 34.9189 293.465 34.1567C293.903 33.3944 294.132 32.5303 294.13 31.6513C294.127 30.7723 293.892 29.9095 293.45 29.15H293.517ZM278.1 15.8167C278.247 15.5692 278.327 15.2878 278.333 15V6.66668H281.667V15C281.67 15.2935 281.75 15.581 281.9 15.8333L283.333 18.3333H276.667L278.1 15.8167ZM290.633 32.4833C290.488 32.7352 290.279 32.9447 290.028 33.0909C289.776 33.2371 289.491 33.3149 289.2 33.3167H270.867C270.576 33.3149 270.29 33.2371 270.039 33.0909C269.788 32.9447 269.579 32.7352 269.433 32.4833C269.287 32.23 269.21 31.9426 269.21 31.65C269.21 31.3574 269.287 31.07 269.433 30.8167L274.717 21.6667H285.3L290.633 30.8333C290.78 31.0867 290.857 31.3741 290.857 31.6667C290.857 31.9592 290.78 32.2466 290.633 32.5V32.4833ZM276.667 25C276.337 25 276.015 25.0978 275.741 25.2809C275.467 25.464 275.253 25.7243 275.127 26.0289C275.001 26.3334 274.968 26.6685 275.032 26.9918C275.096 27.3151 275.255 27.6121 275.488 27.8452C275.721 28.0783 276.018 28.237 276.342 28.3013C276.665 28.3656 277 28.3326 277.304 28.2065C277.609 28.0803 277.869 27.8667 278.052 27.5926C278.236 27.3185 278.333 26.9963 278.333 26.6667C278.333 26.2246 278.158 25.8007 277.845 25.4882C277.533 25.1756 277.109 25 276.667 25ZM283.333 26.6667C283.004 26.6667 282.681 26.7644 282.407 26.9476C282.133 27.1307 281.92 27.391 281.794 27.6955C281.667 28.0001 281.634 28.3352 281.699 28.6585C281.763 28.9818 281.922 29.2788 282.155 29.5119C282.388 29.7449 282.685 29.9037 283.008 29.968C283.331 30.0323 283.667 29.9993 283.971 29.8731C284.276 29.747 284.536 29.5334 284.719 29.2593C284.902 28.9852 285 28.663 285 28.3333C285 27.8913 284.824 27.4674 284.512 27.1548C284.199 26.8423 283.775 26.6667 283.333 26.6667Z" fill="#61DAFF"/>
25
+ <path d="M293.517 29.15L285 14.55V6.66668H286.667C287.109 6.66668 287.533 6.49108 287.845 6.17852C288.158 5.86596 288.333 5.44204 288.333 5.00001C288.333 4.55798 288.158 4.13406 287.845 3.8215C287.533 3.50894 287.109 3.33334 286.667 3.33334H273.333C272.891 3.33334 272.467 3.50894 272.155 3.8215C271.842 4.13406 271.667 4.55798 271.667 5.00001C271.667 5.44204 271.842 5.86596 272.155 6.17852C272.467 6.49108 272.891 6.66668 273.333 6.66668H275V14.55L266.483 29.15C266.041 29.9095 265.807 30.7723 265.804 31.6513C265.801 32.5303 266.03 33.3944 266.468 34.1567C266.906 34.9189 267.537 35.5523 268.297 35.993C269.058 36.4336 269.921 36.666 270.8 36.6667H289.133C290.012 36.666 290.876 36.4336 291.636 35.993C292.397 35.5523 293.028 34.9189 293.465 34.1567C293.903 33.3944 294.132 32.5303 294.13 31.6513C294.127 30.7723 293.892 29.9095 293.45 29.15H293.517ZM278.1 15.8167C278.247 15.5692 278.327 15.2878 278.333 15V6.66668H281.667V15C281.67 15.2935 281.75 15.581 281.9 15.8333L283.333 18.3333H276.667L278.1 15.8167ZM290.633 32.4833C290.488 32.7352 290.279 32.9447 290.028 33.0909C289.776 33.2371 289.491 33.3149 289.2 33.3167H270.867C270.576 33.3149 270.29 33.2371 270.039 33.0909C269.788 32.9447 269.579 32.7352 269.433 32.4833C269.287 32.23 269.21 31.9426 269.21 31.65C269.21 31.3574 269.287 31.07 269.433 30.8167L274.717 21.6667H285.3L290.633 30.8333C290.78 31.0867 290.857 31.3741 290.857 31.6667C290.857 31.9592 290.78 32.2466 290.633 32.5V32.4833ZM276.667 25C276.337 25 276.015 25.0978 275.741 25.2809C275.467 25.464 275.253 25.7243 275.127 26.0289C275.001 26.3334 274.968 26.6685 275.032 26.9918C275.096 27.3151 275.255 27.6121 275.488 27.8452C275.721 28.0783 276.018 28.237 276.342 28.3013C276.665 28.3656 277 28.3326 277.304 28.2065C277.609 28.0803 277.869 27.8667 278.052 27.5926C278.236 27.3185 278.333 26.9963 278.333 26.6667C278.333 26.2246 278.158 25.8007 277.845 25.4882C277.533 25.1756 277.109 25 276.667 25ZM283.333 26.6667C283.004 26.6667 282.681 26.7644 282.407 26.9476C282.133 27.1307 281.92 27.391 281.794 27.6955C281.667 28.0001 281.634 28.3352 281.699 28.6585C281.763 28.9818 281.922 29.2788 282.155 29.5119C282.388 29.7449 282.685 29.9037 283.008 29.968C283.331 30.0323 283.667 29.9993 283.971 29.8731C284.276 29.747 284.536 29.5334 284.719 29.2593C284.902 28.9852 285 28.663 285 28.3333C285 27.8913 284.824 27.4674 284.512 27.1548C284.199 26.8423 283.775 26.6667 283.333 26.6667Z" fill="white" fill-opacity="0.2"/>
26
+ </g>
27
+ </g>
28
+ </g>
29
+ </svg>
@@ -0,0 +1,33 @@
1
+ <svg width="520" height="127" viewBox="0 0 520 127" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="logo_primary_dark_mobile 1" clip-path="url(#clip0_332_3)">
3
+ <path id="Vector" fill-rule="evenodd" clip-rule="evenodd" d="M201.532 71.3847L198.06 63.3582L194.486 71.3847H201.532ZM202.116 72.654H193.883L192.903 74.9232C192.583 75.6806 192.423 76.3054 192.423 76.7979C192.423 77.4512 192.686 77.9321 193.213 78.2405C193.521 78.4254 194.283 78.5631 195.499 78.6538V79.2898H187.747V78.6538C188.583 78.5267 189.27 78.1832 189.81 77.6232C190.349 77.0507 191.013 75.8761 191.803 74.0993L200.139 55.5024H200.466L208.871 74.6152C209.673 76.4259 210.331 77.5658 210.847 78.0352C211.236 78.3907 211.786 78.5969 212.497 78.6538V79.2898H201.222V78.6538H201.686C202.591 78.6538 203.226 78.5271 203.594 78.2738C203.845 78.0916 203.971 77.8289 203.972 77.4858C203.972 77.2787 203.938 77.0667 203.87 76.8499C203.846 76.7459 203.674 76.3161 203.354 75.5606L202.116 72.654Z" fill="#FAFAFA"/>
4
+ <path id="Vector_2" d="M226.782 63.2196V75.8006C226.782 77.0273 226.897 77.7944 227.126 78.1019C227.355 78.4023 227.819 78.5917 228.518 78.6699V79.2899H221.97V77.1419C221.202 78.0575 220.434 78.7277 219.666 79.1526C218.873 79.5724 217.987 79.7852 217.089 79.7712C216.183 79.7712 215.375 79.4961 214.665 78.9459C213.967 78.3841 213.497 77.7308 213.256 76.9859C213.015 76.2411 212.895 74.9407 212.896 73.0847V66.7089C212.896 65.4938 212.781 64.7369 212.552 64.4383C212.333 64.1414 211.869 63.9472 211.159 63.8556V63.2196H217.708V74.202C217.708 75.3478 217.759 76.0873 217.863 76.4206C217.954 76.7182 218.134 76.9813 218.377 77.1753C218.618 77.3471 218.908 77.4372 219.204 77.4326C219.615 77.4326 219.987 77.3242 220.32 77.1073C220.778 76.8086 221.328 76.2073 221.97 75.3033V66.7089C221.97 65.4938 221.856 64.7369 221.626 64.4383C221.408 64.1414 220.944 63.9472 220.234 63.8556V63.2196H226.782ZM239.765 62.7716L240.022 68.2568H239.438C238.738 66.6284 238.011 65.5165 237.255 64.9209C236.51 64.3254 235.765 64.0276 235.021 64.0276C234.551 64.0276 234.151 64.188 233.818 64.5089C233.486 64.8174 233.319 65.1782 233.319 65.5916C233.319 65.9009 233.434 66.1987 233.663 66.4849C234.031 66.956 235.056 67.7635 236.739 68.9075C238.424 70.0426 239.53 71.0114 240.057 71.8141C240.593 72.598 240.875 73.5281 240.865 74.478C240.865 75.3722 240.641 76.2486 240.194 77.1073C239.773 77.939 239.115 78.6272 238.303 79.0846C237.478 79.5425 236.548 79.7791 235.605 79.7712C234.838 79.7712 233.812 79.5312 232.529 79.0512C232.185 78.9232 231.95 78.8597 231.824 78.8606C231.446 78.8606 231.131 79.1468 230.878 79.7192H230.312L230.037 73.9433H230.621C231.136 75.4571 231.841 76.5917 232.735 77.3473C233.64 78.1028 234.494 78.481 235.295 78.4819C235.847 78.4819 236.294 78.3152 236.637 77.9819C236.806 77.8242 236.941 77.6328 237.033 77.42C237.125 77.2072 237.171 76.9776 237.169 76.7459C237.169 76.1957 236.997 75.7202 236.653 75.3193C236.31 74.9184 235.542 74.3113 234.35 73.498C232.596 72.2829 231.462 71.3541 230.948 70.7114C230.192 69.7746 229.814 68.7381 229.813 67.6022C229.813 66.3667 230.237 65.2498 231.085 64.2516C231.944 63.2427 233.182 62.7383 234.797 62.7383C235.668 62.7383 236.51 62.9498 237.323 63.3729C237.633 63.5463 237.885 63.6325 238.079 63.6316C238.286 63.6316 238.453 63.5916 238.578 63.5116C238.704 63.4201 238.905 63.1734 239.181 62.7716H239.765ZM248.274 57.3424V63.2196H252.09V64.9209H248.274V74.8407C248.274 75.7669 248.314 76.3682 248.394 76.6446C248.485 76.9068 248.64 77.1237 248.858 77.2953C249.076 77.4562 249.276 77.5366 249.459 77.5366C250.204 77.5366 250.909 76.9691 251.574 75.834L252.09 76.2113C251.161 78.4121 249.654 79.513 247.568 79.5139C246.548 79.5139 245.683 79.2326 244.974 78.6699C244.274 78.0975 243.827 77.4619 243.633 76.7633C243.518 76.3722 243.461 75.3175 243.461 73.5994V64.9196H241.365V64.3196C242.808 63.3001 244.034 62.229 245.042 61.1063C246.077 59.9625 246.972 58.6989 247.707 57.3424H248.274ZM259.935 63.2196V66.8649C261.001 65.2045 261.935 64.1045 262.736 63.5649C263.539 63.0147 264.312 62.7392 265.057 62.7383C265.698 62.7383 266.208 62.9392 266.587 63.3409C266.977 63.7321 267.172 64.2876 267.172 65.0076C267.172 65.7756 266.983 66.372 266.604 66.7969C266.238 67.2209 265.791 67.4328 265.264 67.4328C264.656 67.4328 264.128 67.2373 263.681 66.8462C263.235 66.4569 262.972 66.24 262.892 66.1955C262.777 66.1253 262.645 66.0907 262.496 66.0915C262.164 66.0915 261.849 66.2173 261.552 66.4689C261.082 66.8591 260.726 67.4146 260.485 68.1355C260.118 69.2475 259.935 70.4741 259.935 71.8154V75.51L259.953 76.474C259.953 77.1255 259.993 77.5433 260.073 77.7273C260.192 78.0163 260.404 78.2578 260.675 78.4139C260.949 78.5517 261.408 78.6375 262.049 78.6712V79.2912H253.371V78.6712C254.069 78.6143 254.539 78.425 254.78 78.1032C255.031 77.7726 255.157 76.9082 255.158 75.51V66.6249C255.158 65.7076 255.112 65.1227 255.02 64.8702C254.905 64.5503 254.738 64.3156 254.522 64.1663C254.305 64.0169 253.921 63.9138 253.371 63.8569V63.221L259.935 63.2196Z" fill="#FAFAFA"/>
5
+ <path id="Vector_3" fill-rule="evenodd" clip-rule="evenodd" d="M276 75.6619V70.282C274.613 71.0971 273.582 71.9686 272.905 72.8966C272.458 73.5144 272.234 74.1384 272.234 74.7686C272.234 75.2974 272.424 75.7619 272.802 76.1619C273.088 76.4721 273.489 76.6267 274.006 76.6259C274.577 76.6259 275.242 76.3045 276 75.6619ZM276 76.9179C274.04 78.6467 272.281 79.512 270.723 79.5138C269.805 79.5138 269.043 79.2151 268.437 78.6178C267.829 78.0116 267.525 77.2556 267.525 76.3499C267.525 75.125 268.053 74.025 269.108 73.05C270.16 72.0651 272.458 70.7585 276 69.1301V67.5168C276 66.3035 275.93 65.5413 275.792 65.2301C275.666 64.9102 275.42 64.6346 275.054 64.4035C274.686 64.1637 274.255 64.0388 273.816 64.0448C273.071 64.0448 272.458 64.2106 271.977 64.5422C271.679 64.7493 271.531 64.9902 271.531 65.2648C271.531 65.5057 271.691 65.8035 272.012 66.1581C272.447 66.6506 272.665 67.1261 272.665 67.5848C272.668 67.857 272.612 68.1266 272.503 68.3758C272.393 68.625 272.232 68.848 272.029 69.0301C271.616 69.4176 271.072 69.6118 270.397 69.6127C269.675 69.6136 269.067 69.3958 268.573 68.9594C268.093 68.5256 267.853 68.0159 267.852 67.4301C267.852 66.6052 268.179 65.8208 268.832 65.0768C269.486 64.3186 270.397 63.7395 271.565 63.3395C272.738 62.9388 273.97 62.7356 275.209 62.7382C276.733 62.7382 277.936 63.0644 278.818 63.7169C279.712 64.3595 280.29 65.0586 280.554 65.8141C280.714 66.295 280.794 67.4008 280.794 69.1314V75.3712C280.794 76.1045 280.823 76.569 280.881 76.7645C280.922 76.9247 281.012 77.0682 281.138 77.1752C281.25 77.2662 281.389 77.3153 281.533 77.3138C281.831 77.3138 282.135 77.1019 282.445 76.6779L282.96 77.0898C282.386 77.9378 281.791 78.5565 281.173 78.9458C280.548 79.3285 279.826 79.5255 279.093 79.5138C278.177 79.5138 277.461 79.3018 276.945 78.8778C276.429 78.4423 276.114 77.7889 276 76.9179Z" fill="#FAFAFA"/>
6
+ <path id="Vector_4" d="M289.965 55.9837V75.9539C289.965 77.0899 290.096 77.8183 290.359 78.1392C290.623 78.4476 291.139 78.6245 291.906 78.6698V79.2898H283.228V78.6698C283.937 78.6476 284.464 78.4418 284.809 78.0525C285.037 77.7894 285.152 77.0899 285.153 75.9539V59.3183C285.153 58.1957 285.021 57.4797 284.757 57.1703C284.493 56.8504 283.983 56.6668 283.228 56.6197V55.9837H289.965Z" fill="#FAFAFA"/>
7
+ <path id="Vector_5" fill-rule="evenodd" clip-rule="evenodd" d="M299.727 63.2195V75.9539C299.727 77.0899 299.859 77.8183 300.123 78.1392C300.385 78.4476 300.901 78.6245 301.67 78.6698V79.2898H292.99V78.6698C293.7 78.6476 294.227 78.4418 294.57 78.0525C294.799 77.7894 294.914 77.0899 294.914 75.9539V66.5714C294.914 65.4355 294.782 64.7133 294.519 64.4048C294.255 64.0848 293.746 63.9017 292.99 63.8555V63.2195H299.727ZM297.321 55.4331C298.065 55.4331 298.696 55.697 299.211 56.225C299.462 56.4671 299.66 56.7583 299.793 57.0804C299.926 57.4025 299.991 57.7486 299.984 58.097C299.984 58.8303 299.721 59.4552 299.194 59.9716C298.952 60.2225 298.66 60.4207 298.338 60.5538C298.016 60.6868 297.669 60.7519 297.321 60.7449C296.586 60.7449 295.962 60.4872 295.447 59.9716C295.196 59.7293 294.998 59.4376 294.865 59.1151C294.732 58.7925 294.667 58.4459 294.674 58.097C294.674 57.3637 294.932 56.7397 295.447 56.225C295.688 55.9708 295.979 55.7691 296.301 55.6328C296.623 55.4965 296.971 55.4285 297.321 55.4331ZM311.046 75.6619V70.282C309.659 71.0971 308.628 71.9686 307.952 72.8966C307.505 73.5144 307.282 74.1384 307.282 74.7686C307.282 75.2974 307.471 75.7619 307.848 76.1619C308.134 76.4721 308.536 76.6267 309.052 76.6259C309.625 76.6259 310.289 76.3045 311.046 75.6619ZM311.046 76.9179C309.086 78.6467 307.327 79.512 305.77 79.5138C304.852 79.5138 304.09 79.2151 303.483 78.6178C302.876 78.0116 302.572 77.2556 302.572 76.3499C302.572 75.125 303.1 74.025 304.154 73.05C305.208 72.0651 307.505 70.7585 311.046 69.1301V67.5168C311.046 66.3035 310.977 65.5413 310.84 65.2301C310.714 64.9102 310.467 64.6346 310.1 64.4035C309.732 64.1639 309.302 64.0391 308.863 64.0448C308.119 64.0448 307.506 64.2106 307.023 64.5422C306.725 64.7493 306.576 64.9902 306.576 65.2648C306.576 65.5057 306.737 65.8035 307.059 66.1581C307.494 66.6506 307.711 67.1261 307.711 67.5848C307.713 67.857 307.658 68.1266 307.548 68.3758C307.439 68.625 307.277 68.848 307.075 69.0301C306.663 69.4176 306.119 69.6118 305.443 69.6127C304.721 69.6136 304.114 69.3958 303.622 68.9594C303.14 68.5256 302.899 68.0159 302.899 67.4301C302.899 66.6052 303.226 65.8208 303.879 65.0768C304.531 64.3186 305.443 63.7395 306.612 63.3395C307.78 62.9395 308.994 62.7391 310.255 62.7382C311.778 62.7382 312.981 63.0644 313.864 63.7169C314.758 64.3595 315.337 65.0586 315.6 65.8141C315.76 66.295 315.841 67.4008 315.841 69.1314V75.3712C315.841 76.1045 315.87 76.569 315.927 76.7645C315.968 76.9247 316.058 77.0682 316.184 77.1752C316.296 77.2655 316.436 77.3145 316.58 77.3138C316.877 77.3138 317.18 77.1019 317.491 76.6779L318.007 77.0898C317.434 77.9378 316.838 78.5565 316.219 78.9458C315.593 79.3285 314.872 79.5255 314.139 79.5138C313.223 79.5138 312.507 79.3018 311.991 78.8778C311.475 78.4423 311.16 77.7889 311.046 76.9179Z" fill="#FAFAFA"/>
8
+ <path id="Vector_6" d="M324.935 63.2196V65.2995C325.759 64.4053 326.55 63.7582 327.307 63.3582C328.054 62.9468 328.894 62.7334 329.746 62.7382C330.789 62.7382 331.654 63.0307 332.342 63.6156C333.016 64.1691 333.497 64.9214 333.717 65.7648C333.9 66.4164 333.992 67.6706 333.992 69.5274V75.7819C333.992 77.0219 334.101 77.7952 334.318 78.1019C334.547 78.4014 335.017 78.5907 335.729 78.6698V79.2898H327.599V78.6698C328.206 78.5907 328.641 78.3392 328.904 77.9152C329.088 77.629 329.179 76.9179 329.178 75.7819V68.6341C329.178 67.3159 329.127 66.4848 329.025 66.1408C328.94 65.8252 328.753 65.547 328.492 65.3502C328.265 65.1617 327.979 65.0584 327.684 65.0582C326.699 65.0591 325.783 65.7639 324.935 67.1728V75.7819C324.935 76.9863 325.043 77.7485 325.261 78.0685C325.491 78.3912 325.908 78.5916 326.515 78.6698V79.2898H318.387V78.6698C319.062 78.6023 319.544 78.3845 319.831 78.0165C320.024 77.7668 320.122 77.0219 320.123 75.7819V66.7088C320.123 65.4937 320.008 64.7369 319.779 64.4382C319.561 64.1413 319.097 63.9471 318.387 63.8555V63.2196H324.935ZM367.38 55.4518V63.6649H366.744C365.977 61.4205 364.825 59.7139 363.288 58.545C361.753 57.3762 360.075 56.7917 358.254 56.7917C356.512 56.7917 355.062 57.2842 353.905 58.269C352.747 59.2441 351.929 60.6076 351.449 62.3596C350.966 64.1179 350.723 65.9334 350.726 67.7568C350.726 69.9914 350.989 71.9505 351.515 73.634C352.043 75.3184 352.892 76.5561 354.061 77.3472C355.239 78.1383 356.637 78.5334 358.254 78.5325C358.815 78.5343 359.388 78.4765 359.972 78.3592C360.568 78.2347 361.175 78.0579 361.794 77.8285V72.9833C361.794 72.066 361.731 71.4754 361.606 71.2114C361.479 70.9358 361.216 70.6896 360.815 70.4727C360.425 70.2558 359.949 70.1474 359.388 70.1474H358.787V69.5114H370.113V70.1474C369.254 70.2043 368.652 70.3243 368.308 70.5074C367.975 70.6798 367.717 70.9718 367.535 71.3834C367.432 71.6011 367.38 72.1345 367.38 72.9833V77.8285C365.887 78.4943 364.325 78.9954 362.723 79.3232C361.079 79.6708 359.402 79.8437 357.722 79.8391C355.51 79.8391 353.671 79.5414 352.203 78.9458C350.795 78.3681 349.489 77.5667 348.337 76.5726C347.266 75.6406 346.38 74.5158 345.725 73.2566C344.922 71.6745 344.521 69.9043 344.521 67.9461C344.521 64.4395 345.753 61.4778 348.217 59.061C350.68 56.6433 353.779 55.4344 357.514 55.4344C358.672 55.4344 359.715 55.526 360.643 55.7091C361.146 55.8015 361.959 56.0651 363.083 56.4997C364.218 56.9237 364.888 57.1357 365.094 57.1357C365.414 57.1357 365.713 57.021 365.988 56.7917C366.262 56.5517 366.514 56.1051 366.744 55.4518H367.38Z" fill="#FAFAFA"/>
9
+ <path id="Vector_7" fill-rule="evenodd" clip-rule="evenodd" d="M378.604 63.9582C378.019 63.9591 377.515 64.1826 377.092 64.6288C376.679 65.0644 376.403 65.935 376.267 67.2408C376.14 68.5376 376.077 70.342 376.077 72.654C376.077 73.8806 376.158 75.0263 376.319 76.0912C376.444 76.9063 376.713 77.5254 377.125 77.9485C377.538 78.3716 378.008 78.5836 378.536 78.5845C379.051 78.5845 379.481 78.4409 379.825 78.1538C380.271 77.7663 380.568 77.2223 380.718 76.5219C380.948 75.4339 381.062 73.2339 381.062 69.922C381.062 67.9754 380.953 66.6408 380.734 65.9181C380.517 65.1848 380.196 64.6515 379.773 64.3182C379.475 64.0782 379.085 63.9582 378.604 63.9582ZM378.536 62.7382C379.911 62.7329 381.261 63.1076 382.437 63.8209C383.641 64.5426 384.552 65.5679 385.17 66.8968C385.8 68.2274 386.115 69.6829 386.116 71.2633C386.116 73.5442 385.537 75.4512 384.38 76.9845C382.982 78.8422 381.05 79.7711 378.587 79.7711C376.169 79.7711 374.307 78.9231 373.001 77.2272C371.696 75.5312 371.042 73.5659 371.041 71.3313C371.041 69.0292 371.706 67.0243 373.036 65.3168C374.376 63.5977 376.21 62.7382 378.536 62.7382Z" fill="#FAFAFA"/>
10
+ <path id="Vector_8" d="M393.697 79.7711L388.284 67.3114C387.629 65.8092 387.119 64.8577 386.753 64.4568C386.489 64.16 386.099 63.9595 385.584 63.8555V63.2195H394.126V63.8555C393.588 63.8555 393.221 63.9528 393.026 64.1475C392.897 64.2577 392.793 64.3947 392.722 64.5489C392.651 64.7031 392.614 64.871 392.614 65.0408C392.614 65.4648 392.866 66.2612 393.37 67.4301L396.017 73.4619L398.13 68.2567C398.737 66.7661 399.041 65.711 399.042 65.0915C399.042 64.7377 398.91 64.4515 398.646 64.2328C398.395 64.0035 397.943 63.8777 397.287 63.8555V63.2195H402.549V63.8555C402.044 63.9231 401.631 64.1124 401.31 64.4235C400.989 64.7346 400.508 65.6448 399.866 67.1541L394.505 79.7711H393.697Z" fill="#FAFAFA"/>
11
+ <path id="Vector_9" fill-rule="evenodd" clip-rule="evenodd" d="M410.963 69.5274C410.963 67.6839 410.86 66.4172 410.655 65.7275C410.459 65.0404 410.15 64.5195 409.727 64.1648C409.485 63.9586 409.164 63.8555 408.764 63.8555C408.168 63.8555 407.681 64.148 407.303 64.7328C406.627 65.7515 406.288 67.1488 406.288 68.9247V69.5274H410.963ZM415.191 70.678H406.375C406.478 72.8113 407.044 74.4926 408.076 75.7326C408.867 76.6827 409.819 77.1574 410.93 77.1565C411.617 77.1565 412.241 76.9685 412.803 76.5925C413.364 76.2014 413.966 75.5077 414.608 74.5112L415.191 74.8886C414.32 76.6645 413.358 77.9249 412.304 78.6698C411.25 79.4022 410.03 79.7693 408.643 79.7711C406.259 79.7711 404.455 78.8547 403.23 77.0219C402.243 75.5419 401.75 73.7086 401.751 71.522C401.751 68.8394 402.473 66.7083 403.916 65.1288C405.372 63.5351 407.074 62.7382 409.022 62.7382C410.648 62.7382 412.058 63.4084 413.25 64.7488C414.453 66.0795 415.1 68.0559 415.191 70.678Z" fill="#FAFAFA"/>
12
+ <path id="Vector_10" d="M422.816 63.2195V66.8648C423.881 65.2044 424.815 64.1044 425.617 63.5649C426.418 63.0147 427.191 62.7391 427.937 62.7382C428.577 62.7382 429.087 62.9391 429.467 63.3409C429.856 63.732 430.051 64.2875 430.051 65.0075C430.051 65.7755 429.862 66.3719 429.484 66.7968C429.118 67.2208 428.671 67.4328 428.144 67.4328C427.536 67.4328 427.009 67.2372 426.563 66.8461C426.115 66.4568 425.851 66.2399 425.772 66.1955C425.656 66.1252 425.524 66.0906 425.376 66.0915C425.044 66.0915 424.729 66.2172 424.431 66.4688C423.961 66.859 423.606 67.4145 423.365 68.1354C422.999 69.2474 422.816 70.474 422.816 71.8153V75.5099L422.833 76.4739C422.833 77.1254 422.873 77.5432 422.953 77.7272C423.071 78.0168 423.283 78.2585 423.555 78.4138C423.829 78.5516 424.288 78.6374 424.929 78.6712V79.2911H416.25V78.6712C416.948 78.6143 417.418 78.4249 417.66 78.1032C417.911 77.7725 418.037 76.9081 418.037 75.5099V66.6248C418.037 65.7075 417.991 65.1226 417.899 64.8702C417.785 64.5502 417.619 64.3155 417.402 64.1662C417.184 64.0169 416.8 63.9137 416.25 63.8569V63.2209L422.816 63.2195ZM437.632 63.2195V65.2995C438.456 64.4053 439.246 63.7582 440.004 63.3582C440.751 62.9466 441.592 62.7332 442.445 62.7382C443.486 62.7382 444.351 63.0307 445.039 63.6155C445.713 64.1691 446.194 64.9213 446.414 65.7648C446.597 66.4163 446.689 67.6705 446.689 69.5274V75.7819C446.689 77.0219 446.798 77.7952 447.015 78.1018C447.245 78.4014 447.715 78.5907 448.425 78.6698V79.2898H440.294V78.6698C440.903 78.5907 441.339 78.3392 441.602 77.9152C441.785 77.629 441.877 76.9179 441.877 75.7819V68.6341C441.877 67.3159 441.825 66.4848 441.722 66.1408C441.637 65.8252 441.45 65.5469 441.189 65.3502C440.962 65.162 440.677 65.0587 440.382 65.0582C439.396 65.059 438.48 65.7639 437.632 67.1728V75.7819C437.632 76.9863 437.74 77.7485 437.957 78.0685C438.186 78.3912 438.605 78.5916 439.213 78.6698V79.2898H431.082V78.6698C431.758 78.6023 432.239 78.3845 432.526 78.0165C432.722 77.7667 432.82 77.0219 432.82 75.7819V66.7088C432.82 65.4937 432.705 64.7368 432.476 64.4382C432.257 64.1413 431.793 63.9471 431.082 63.8555V63.2195H437.632ZM456.255 63.2195V65.3342C457.137 64.3724 457.95 63.7013 458.695 63.3209C459.461 62.9298 460.311 62.7299 461.171 62.7382C462.201 62.7382 463.066 62.9782 463.766 63.4582C464.464 63.9417 465.003 64.6755 465.382 65.6595C466.297 64.6284 467.173 63.884 468.01 63.4262C468.82 62.9761 469.731 62.7394 470.657 62.7382C471.769 62.7382 472.651 62.996 473.304 63.5115C473.955 63.9985 474.436 64.6782 474.679 65.4542C474.942 66.2337 475.074 67.4825 475.075 69.2007V75.7819C475.075 77.0219 475.183 77.7903 475.4 78.0872C475.629 78.384 476.1 78.5783 476.811 78.6698V79.2898H468.508V78.6698C469.162 78.6138 469.644 78.3623 469.952 77.9152C470.159 77.6041 470.263 76.893 470.263 75.7819V68.8741C470.263 67.443 470.206 66.5319 470.091 66.1408C469.975 65.7515 469.792 65.4653 469.54 65.2822C469.297 65.0872 468.992 64.9839 468.68 64.9902C468.188 64.9902 467.69 65.1737 467.186 65.5408C466.682 65.8955 466.172 66.4332 465.656 67.1541V75.7819C465.656 76.9401 465.754 77.6685 465.948 77.9672C466.211 78.3912 466.715 78.6254 467.46 78.6698V79.2898H459.142V78.6698C459.588 78.6494 459.937 78.5409 460.19 78.3445C460.433 78.1643 460.614 77.9119 460.706 77.6232C460.797 77.3361 460.843 76.7228 460.843 75.7832V68.8741C460.843 67.4208 460.786 66.5097 460.672 66.1408C460.575 65.7991 460.369 65.498 460.087 65.2822C459.845 65.0832 459.542 64.974 459.228 64.9728C458.77 64.9728 458.352 65.0933 457.974 65.3342C457.435 65.6879 456.862 66.2946 456.255 67.1541V75.7819C456.255 76.917 456.364 77.6681 456.581 78.0352C456.81 78.3907 457.28 78.6023 457.991 78.6698V79.2898H449.706V78.6698C450.382 78.6023 450.863 78.3845 451.15 78.0165C451.344 77.7667 451.442 77.0219 451.443 75.7819V66.7088C451.443 65.4937 451.329 64.7368 451.099 64.4382C450.881 64.1413 450.416 63.9471 449.706 63.8555V63.2195H456.255Z" fill="#FAFAFA"/>
13
+ <path id="Vector_11" fill-rule="evenodd" clip-rule="evenodd" d="M486.884 69.5274C486.884 67.6839 486.781 66.4172 486.574 65.7275C486.379 65.0404 486.07 64.5195 485.646 64.1648C485.405 63.9586 485.084 63.8555 484.684 63.8555C484.088 63.8555 483.602 64.148 483.224 64.7328C482.547 65.7515 482.208 67.1488 482.209 68.9247V69.5274H486.884ZM491.113 70.678H482.295C482.397 72.8113 482.965 74.4926 483.997 75.7326C484.787 76.6827 485.737 77.1574 486.849 77.1565C487.537 77.1565 488.162 76.9685 488.724 76.5925C489.286 76.2014 489.887 75.5077 490.528 74.5112L491.113 74.8886C490.24 76.6645 489.278 77.9249 488.225 78.6698C487.171 79.4022 485.95 79.7693 484.563 79.7711C482.179 79.7711 480.374 78.8547 479.149 77.0219C478.164 75.5419 477.672 73.7086 477.672 71.522C477.672 68.8394 478.394 66.7083 479.837 65.1288C481.292 63.5351 482.994 62.7382 484.942 62.7382C486.569 62.7382 487.978 63.4084 489.17 64.7488C490.373 66.0795 491.021 68.0559 491.113 70.678Z" fill="#FAFAFA"/>
14
+ <path id="Vector_12" d="M498.281 63.2196V65.2995C499.106 64.4053 499.896 63.7582 500.653 63.3583C501.4 62.9469 502.24 62.7334 503.093 62.7383C504.135 62.7383 505 63.0307 505.687 63.6156C506.375 64.1889 506.834 64.9053 507.062 65.7649C507.246 66.4164 507.338 67.6706 507.339 69.5274V75.7819C507.339 77.0219 507.448 77.7952 507.665 78.1019C507.894 78.4014 508.364 78.5908 509.074 78.6699V79.2899H500.945V78.6699C501.552 78.5908 501.987 78.3392 502.25 77.9152C502.433 77.629 502.525 76.9179 502.526 75.7819V68.6341C502.526 67.3159 502.475 66.4848 502.371 66.1409C502.287 65.8254 502.1 65.5472 501.839 65.3502C501.612 65.1614 501.326 65.0581 501.03 65.0582C500.044 65.0591 499.128 65.764 498.281 67.1728V75.7819C498.281 76.9864 498.39 77.7486 498.608 78.0686C498.836 78.3912 499.254 78.5917 499.862 78.6699V79.2899H491.732V78.6699C492.407 78.6023 492.889 78.3845 493.176 78.0166C493.37 77.7668 493.468 77.0219 493.468 75.7819V66.7088C493.468 65.4938 493.353 64.7369 493.124 64.4382C492.907 64.1414 492.443 63.9471 491.732 63.8556V63.2196H498.281ZM515.907 57.3424V63.2196H519.724V64.9209H515.907V74.8406C515.907 75.7668 515.948 76.3682 516.028 76.6446C516.12 76.9068 516.275 77.1237 516.492 77.2952C516.709 77.4561 516.91 77.5366 517.094 77.5366C517.839 77.5366 518.543 76.969 519.208 75.8339L519.724 76.2113C518.795 78.4121 517.288 79.513 515.203 79.5139C514.183 79.5139 513.318 79.2325 512.608 78.6699C511.909 78.0974 511.462 77.4619 511.267 76.7633C511.153 76.3722 511.095 75.3175 511.095 73.5993V64.9196H508.999V64.3196C510.443 63.3 511.669 62.229 512.676 61.1063C513.711 59.9625 514.606 58.6988 515.34 57.3424H515.907ZM57.9439 100.984C57.8432 101.173 57.688 101.327 57.4985 101.427ZM61.9678 69.5168C62.4344 69.5168 62.8091 69.1394 62.8091 68.6701C62.8096 68.5591 62.7883 68.4491 62.7463 68.3463C62.7043 68.2436 62.6424 68.1501 62.5643 68.0712C62.4862 67.9924 62.3933 67.9297 62.2909 67.8867C62.1886 67.8437 62.0788 67.8213 61.9678 67.8208C61.7438 67.8222 61.5296 67.9125 61.3721 68.0717C61.2146 68.2309 61.1267 68.4462 61.1278 68.6701C61.1269 68.781 61.148 68.8909 61.1898 68.9936C61.2316 69.0963 61.2933 69.1897 61.3714 69.2684C61.4495 69.3471 61.5424 69.4096 61.6448 69.4522C61.7471 69.4948 61.8569 69.5168 61.9678 69.5168ZM100.107 51.0426H90.883V34.783H100.107V51.0426ZM100.107 58.7664C99.9481 60.521 99.3522 61.9796 98.1389 62.8063L90.8844 67.1395V51.8732H100.107V58.7664ZM90.0591 51.0426H81.5393V34.7856H90.0591V51.0426ZM90.0591 67.6342L86.7071 69.6368H86.6485C86.3954 69.8383 86.0809 69.9469 85.7575 69.9444C85.434 69.942 85.1212 69.8287 84.8712 69.6234L81.5406 67.6342V51.8745H90.0591V67.6342ZM78.0914 51.0426V45.0907H80.714V51.0426H78.0914ZM80.714 67.1395L73.4581 62.8063C72.2448 61.9796 71.6488 60.521 71.4902 58.7664V51.8732H80.714V67.1395ZM74.6741 34.7843V41.0562H71.4915V34.7843H74.6741ZM75.4701 37.1389L75.8434 36.7483L75.6114 36.3216L76.1021 36.3723L76.3954 35.8536L76.6834 36.3656L77.182 36.3216L76.9501 36.7483L77.3234 37.1389L76.846 37.2296V37.7602L76.3967 37.4229L75.9461 37.7602V37.2296L75.4701 37.1389ZM77.726 43.6921C77.7007 43.5334 77.494 43.4921 77.4034 43.4921C77.1234 43.4921 77.006 43.9587 76.7701 43.9721C76.5941 43.9827 76.4687 43.9987 76.4687 43.7841C76.4687 43.6268 76.8301 43.5028 76.9687 43.3654C75.0021 43.3654 74.9648 44.2654 74.6568 44.2654C74.1421 44.2654 75.0888 43.3174 75.3634 43.0414C74.9648 42.9774 74.7341 42.4855 74.2968 42.2401C74.5021 41.9455 74.6194 42.0721 74.8754 42.2788C74.8754 42.0721 75.0301 41.8295 75.4874 41.8295C76.3674 41.8295 76.1207 42.6814 76.2621 42.6814C76.4034 42.6814 76.2527 41.8295 76.8421 41.8295C77.7127 41.8295 78.8047 44.0721 77.8154 44.0721C77.3914 44.0721 77.734 43.7521 77.726 43.6921ZM75.6114 48.4786L76.1021 48.5306L76.3954 48.012L76.6834 48.5226L77.182 48.4773L76.9501 48.9053L77.3234 49.2946L76.846 49.3853V49.9159L76.3967 49.5786L75.9461 49.9159V49.3853L75.4701 49.2946L75.8434 48.9053L75.6114 48.4786ZM72.0168 42.4254L72.5048 42.4774L72.8022 41.9588L73.0901 42.4708L73.5848 42.4254L73.3541 42.8521L73.7275 43.2414L73.2515 43.3334V43.8641L72.8022 43.5281L72.3488 43.8641V43.3334L71.8755 43.2401L72.2475 42.8534L72.0168 42.4254ZM71.4902 51.0426V45.0907H74.6754V51.0426H71.4902ZM78.8087 43.2414L79.182 42.8534L78.9487 42.4268L79.4393 42.4774L79.7326 41.9588L80.0233 42.4708L80.5206 42.4254L80.2886 42.8521L80.662 43.2414L80.186 43.3334V43.8641L79.7326 43.5281L79.2847 43.8641V43.3334L78.8087 43.2414ZM80.714 41.0548H78.0914V34.7843H80.714V41.0548ZM100.959 33.9683V33.9537H70.6382V33.9683H70.6329L70.6569 58.457C70.6569 60.8197 71.6568 62.8863 73.0395 63.5223L84.7005 70.4874C84.8248 70.6279 84.9758 70.7422 85.1446 70.8239C85.3134 70.9056 85.4968 70.953 85.6841 70.9632C85.8713 70.9735 86.0588 70.9466 86.2355 70.8839C86.4123 70.8212 86.5749 70.724 86.7138 70.5981L98.5562 63.5223C99.9375 62.8863 100.939 60.8197 100.939 58.4557L100.963 33.9683H100.959Z" fill="#FAFAFA"/>
15
+ <path id="Vector_13" d="M80.2247 57.4837C80.1807 57.3864 79.0687 57.853 79.3847 57.8237C79.418 57.4944 80.0327 56.8264 80.31 56.5784C80.2593 56.1917 79.762 56.5424 79.2434 56.8131C80.97 54.3398 79.862 55.3544 78.8967 55.5304C80.438 53.8691 80.034 53.8971 78.8967 54.4145C79.79 53.7051 79.9807 52.8625 79.8433 52.6172C79.006 53.7331 78.2354 53.5598 78.2354 54.5958C78.2354 55.2758 77.9887 56.3957 77.6381 56.7731C77.1887 57.2611 77.5341 54.9464 76.3514 54.9464C75.9728 54.9464 75.0781 54.9158 74.8088 55.3784C75.0515 55.3784 75.4114 55.9931 75.4114 56.2384C75.4114 56.4837 75.6354 57.1557 75.2301 57.1557C74.8261 57.1557 74.3555 56.3051 74.3555 55.8971C74.3555 55.4878 74.3288 55.5851 74.3288 54.9998C74.3288 54.0198 72.7342 52.6438 72.0849 52.6438C72.0849 53.3238 72.9768 53.4878 72.9768 54.3585C72.5995 54.3585 72.0595 53.6518 72.0595 54.0878C72.0595 54.5225 72.6262 54.6051 72.6262 54.9864C72.6262 55.3678 71.9782 54.8504 71.9782 55.2584C71.9782 55.6184 72.3329 55.5558 72.4182 55.9077C72.1555 55.8344 71.9182 55.8677 71.8715 56.0011C71.8289 56.1211 71.9489 56.2731 72.1475 56.3837C72.0569 56.4677 71.9782 56.6717 71.9782 57.245C71.9782 59.1783 73.1902 60.0783 74.0808 60.0783C74.7141 60.0783 74.6168 59.6357 74.6941 59.4237C74.7208 59.7517 75.0315 59.261 75.0315 59.833C75.0315 60.4316 74.4181 60.169 74.4181 60.6863C74.4181 61.3769 75.3874 60.6596 75.3874 61.4263C75.3874 62.3529 75.2728 62.3329 75.2728 62.6876C75.2728 62.9316 76.2901 62.3476 76.2261 62.2423C76.4701 62.3316 76.4594 63.0502 76.9127 63.0329C77.2061 63.0222 77.2687 62.2956 77.4994 62.2329C77.3634 62.2703 78.4194 62.9236 78.4194 62.5929C78.4194 61.6916 78.0501 62.0743 78.0501 61.4543C78.0501 60.8836 79.298 60.9943 79.1007 60.7023C78.9354 60.4596 78.8234 60.609 78.69 60.1823C78.714 60.2623 77.7087 58.749 78.8994 59.529C80.15 60.3476 80.2913 57.6264 80.2247 57.4837ZM112.573 63.8889C113.124 63.8889 113.569 63.4956 113.569 63.0089C113.569 62.5223 113.124 62.1303 112.573 62.1303C112.023 62.1303 111.576 62.5236 111.576 63.0089C111.576 63.4956 112.021 63.8889 112.573 63.8889ZM108.54 66.2848C109.092 66.2848 109.537 65.8915 109.537 65.4075C109.537 64.9235 109.092 64.5275 108.54 64.5275C107.989 64.5275 107.543 64.9235 107.543 65.4075C107.543 65.8915 107.989 66.2848 108.54 66.2848ZM60.6118 71.8114C61.1625 71.8114 61.6091 71.418 61.6091 70.9327C61.6091 70.4461 61.1625 70.0527 60.6132 70.0527C60.0612 70.0527 59.6132 70.4461 59.6132 70.9327C59.6132 71.4194 60.0612 71.8114 60.6132 71.8114M63.7184 72.078C64.2704 72.078 64.7171 71.686 64.7171 71.198C64.7171 70.714 64.2704 70.3207 63.7184 70.3207C63.1678 70.3207 62.7224 70.714 62.7224 71.1994C62.7224 71.686 63.1678 72.0793 63.7184 72.0793M150.003 30.2577C151.484 32.0177 151.802 34.8389 150.743 36.8629C150.162 36.8096 150.267 36.0656 150.162 35.6376C149.103 33.667 148.258 31.163 149.21 28.9271C149.899 29.0338 149.632 29.8857 150.003 30.2577ZM23.3941 32.655C23.0754 33.9336 23.0754 35.6909 23.3941 36.8629C23.1301 37.1309 23.1821 36.5962 22.9181 36.6496C20.8555 35.1603 21.8075 32.2297 21.2808 30.1524C21.3408 30.0738 21.4272 30.0197 21.5241 30.0001C21.621 29.9805 21.7216 29.9967 21.8075 30.0457C22.7581 30.6857 23.1821 31.5897 23.3941 32.655ZM154.552 32.8163C154.868 33.4003 154.287 33.987 153.863 34.2536C153.387 34.3603 152.858 34.0936 152.542 33.667C152.382 33.0817 152.699 32.5483 153.178 32.2817C153.704 32.2297 154.233 32.335 154.552 32.815M20.1688 35.1589C20.0622 35.6389 19.9035 36.1189 19.4822 36.3296C19.1635 36.3296 18.6862 36.3296 18.4769 36.0656C18.1582 35.7989 18.1062 35.3189 18.2635 34.9456C18.4769 34.5723 18.8995 34.519 19.2689 34.467C19.6382 34.6269 20.0088 34.7336 20.1688 35.1603M156.613 36.0656C156.717 36.3396 156.717 36.6422 156.613 36.9162C156.244 37.3962 155.713 37.6095 155.185 37.3962C154.816 37.1829 154.709 36.8096 154.604 36.4896C154.709 36.0643 155.133 35.6909 155.503 35.5309C155.979 35.5309 156.295 35.7976 156.613 36.0643M153.599 36.1189C154.021 36.3296 153.704 36.8629 153.652 37.1829C153.387 37.4496 153.018 37.8749 152.542 37.7149C152.276 37.4495 151.962 37.4495 151.854 37.0762C151.854 36.5429 152.066 36.0109 152.595 35.8496C153.018 35.7443 153.282 35.9576 153.599 36.1189ZM149.739 36.9162C149.739 37.5029 149.791 38.2495 149.103 38.3562C148.468 38.5695 148.046 38.0335 147.888 37.6095C147.835 37.0762 148.151 36.5429 148.682 36.3296C149.103 36.3296 149.475 36.5962 149.739 36.9162ZM25.9327 37.1829C26.0927 37.7149 25.562 38.0335 25.246 38.3029C24.8754 38.4082 24.3994 38.0882 24.1861 37.7149C23.8167 37.3429 24.2927 37.0216 24.3994 36.7042C24.9274 36.2242 25.7194 36.5976 25.9327 37.1842M22.7594 37.3429C22.7594 37.7669 22.5461 38.1949 22.1794 38.3562C21.7555 38.5149 21.3328 38.1949 21.1195 37.8749C20.8555 37.3429 21.1728 36.8629 21.5955 36.6496C22.1794 36.4362 22.5474 36.9696 22.7581 37.3429M136.941 37.5549C137.469 38.6749 137.891 40.0042 137.998 41.3908C137.786 42.4028 138.157 43.7334 137.415 44.428C136.675 44.1614 136.623 43.2547 136.146 42.7774C135.195 40.9108 136.042 38.7269 136.358 36.9162C136.782 36.7562 136.782 37.2896 136.941 37.5562M20.2742 38.1949C20.4315 38.8348 19.9568 39.1535 19.5862 39.5255C18.9515 39.6855 18.5289 39.2068 18.2635 38.7788C18.2432 38.5227 18.2973 38.2661 18.4194 38.04C18.5414 37.8138 18.7262 37.6278 18.9515 37.5042C19.4822 37.4509 20.0088 37.7149 20.2742 38.1949ZM145.295 39.7388C145.983 41.2841 146.036 43.1481 145.559 44.852L145.242 45.1187C144.502 43.6814 143.444 42.3481 143.072 40.8041C143.072 39.6859 143.285 38.6735 143.71 37.7669C144.079 37.5042 144.291 37.8202 144.45 38.1402C144.502 38.7269 144.767 39.4202 145.295 39.7388ZM151.962 38.7802C151.907 39.3135 151.696 39.9001 151.166 40.0601C150.636 40.1668 150.11 40.0055 149.95 39.4202C149.791 38.8868 150.11 38.4069 150.531 38.1402C151.114 37.8202 151.696 38.3562 151.962 38.7802ZM22.8128 40.4321C22.8128 40.8588 22.4421 41.3374 22.0195 41.4441C21.5955 41.7628 21.2808 41.2308 20.9075 41.0708C20.7475 40.6441 20.6422 40.2708 20.9075 39.8455C21.0675 39.5255 21.4381 39.5255 21.7555 39.4188C22.2314 39.6855 22.7061 39.8988 22.8128 40.4321ZM25.138 40.1668C25.3514 40.7001 24.7687 40.9641 24.5581 41.2308C23.9221 41.4441 23.6061 40.9641 23.3421 40.5921C23.2354 40.0588 23.5527 39.7388 23.9221 39.4188C24.5581 39.2615 24.8754 39.6855 25.138 40.1655M153.44 40.0055C153.387 40.6988 152.328 41.3921 152.223 42.0828C151.642 43.5214 150.374 44.5867 148.946 45.0667C148.627 45.332 148.204 45.7053 147.728 45.7587C147.623 44.6934 148.575 43.7334 149.156 42.7774C150.267 41.3374 151.802 40.4308 153.44 40.0041M21.7555 42.2428C22.5474 43.1481 22.9714 43.9481 23.9221 44.7454C23.9754 44.9587 23.8154 45.2787 23.5527 45.2787C20.9608 45.1187 19.2169 42.4548 17.9462 40.5921C18.1062 40.0055 18.7929 40.4855 19.1635 40.4321C20.0622 41.1241 21.0675 41.3374 21.7555 42.2428ZM154.181 42.9881C154.073 45.2787 152.964 47.6226 150.902 48.7413C150.32 48.9546 149.684 49.5412 149.103 49.1679C150.214 46.876 151.907 45.0134 153.759 42.9881H154.181ZM144.027 44.532C144.184 45.332 143.762 45.812 143.128 46.0787C142.546 46.132 142.176 45.652 141.911 45.2253C141.884 44.9749 141.942 44.7227 142.077 44.5098C142.212 44.297 142.415 44.1361 142.652 44.0534C142.81 43.8934 143.072 43.8934 143.286 43.8934C143.604 44 143.762 44.2667 144.027 44.5334M18.8449 45.0134C19.8515 45.7053 20.7488 46.664 21.7008 47.516C21.0155 47.996 20.1675 47.5693 19.3742 47.5693C17.5756 46.9306 16.3609 45.3853 14.509 44.852C14.5623 44.2667 15.249 44.48 15.6209 44.3214C16.7836 44.2147 17.7356 44.7454 18.8449 45.0147" fill="#FAFAFA"/>
16
+ <path id="Vector_14" d="M75.4861 29.2471C72.5262 28.0738 70.5676 31.1631 67.553 30.7911C67.1836 31.0044 67.289 31.3777 67.077 31.6444C66.9183 31.803 66.6543 31.6977 66.4957 31.5911C66.3383 30.3111 65.9143 29.1391 65.7557 27.9138C65.4383 27.3818 65.5957 26.6365 65.333 26.1032C63.6397 21.47 69.4569 24.9832 70.6209 22.2699C71.6275 19.9247 68.6636 19.658 67.765 18.0087V17.3154C66.9183 16.4621 66.0197 16.1954 65.4903 15.0768C65.861 13.7448 66.0197 12.3075 65.6503 10.9756C65.597 10.6556 65.385 10.2289 64.9104 10.3889C63.9037 11.7755 63.1637 12.8942 62.2118 14.2261C61.2065 13.4795 60.2545 12.5209 59.0918 11.8795C58.2985 11.7755 57.5585 10.9756 56.6586 11.2956C56.5012 11.6155 56.6586 11.8809 56.8186 12.0929C56.8719 14.1728 57.9279 15.8234 59.4078 17.3141L59.5678 18.1141C58.6172 20.2967 58.8798 22.7993 58.6172 25.1459C56.2359 31.2164 52.3747 37.0762 47.1388 41.2841C44.1255 44.6934 40.5283 47.996 40.0523 52.6838C39.895 53.4292 40.159 54.3345 39.5777 54.8665C37.831 54.2265 36.0871 53.3758 34.6578 52.2572C32.2258 50.5532 28.7353 50.7639 27.1486 47.676C26.5127 46.4493 27.3086 45.2254 27.8886 44.3214C29.6859 42.6148 29.4219 39.5788 28.4713 37.5042C28.2606 37.4509 28.2059 37.7149 28.0486 37.7669C27.8886 40.9121 25.4033 43.0948 26.3553 46.5587C26.5687 47.5693 27.0966 48.2093 27.3606 49.1679C26.9886 49.0613 26.4633 49.0613 26.1433 48.9013C24.9794 48.7413 23.8167 48.2613 22.6008 48.4213C20.1688 49.5413 16.8369 48.156 14.8796 50.3946C14.561 50.4466 14.1383 50.5012 14.245 50.9786C15.4076 50.9786 16.5182 51.2986 17.6822 51.2452C19.5328 51.5652 20.7488 50.0186 22.0181 49.3266H22.3354C22.8647 48.7946 23.7647 49.1133 24.4527 49.0066C27.7833 49.3813 30.3752 50.9786 33.1245 52.6305V52.8425C32.0672 53.3225 30.8512 53.6425 29.7912 54.2278C28.5753 55.1345 27.2006 56.3051 26.8313 57.7984C25.9847 59.129 27.0966 60.2997 27.6246 61.4183C27.6766 61.9516 27.73 62.5903 28.2059 62.8036C29.8992 60.993 28.3113 58.7557 28.5753 56.6784C28.9993 55.0785 30.4819 54.3345 32.0152 53.9092C35.0284 52.6305 37.1991 55.0798 39.6283 56.4651C39.5777 58.9157 39.895 61.2596 39.3657 63.6542C38.6244 63.9209 37.6724 64.0809 36.8791 64.0302C32.7005 64.3476 29.4219 66.6395 25.6687 67.9181C23.9754 68.5048 21.9661 68.4488 20.2741 69.0901C21.5941 69.4621 22.9714 68.9834 24.346 68.9288C29.5286 68.1821 33.4951 64.1889 39.1017 64.8809L39.2057 65.0409C38.5724 66.3715 37.7257 67.4901 36.7204 68.5035C36.5604 67.9168 36.5097 67.4381 35.9791 67.1182C35.5578 66.9048 35.0804 67.1182 34.7658 67.5448C34.6058 67.8115 34.6058 68.1288 34.7658 68.3421C35.0284 68.8221 35.4524 68.9288 35.9284 69.0888C35.8218 69.5688 35.2391 69.7821 34.9231 70.2074C33.4431 72.7114 30.4272 71.6994 28.6833 73.4567C28.4179 73.83 27.466 74.0433 27.8886 74.6286C29.8992 74.842 31.8565 74.3086 33.3365 73.242C35.2938 71.0607 37.3564 68.9834 39.3123 66.9048C39.6283 68.6115 39.1537 70.3687 38.1497 71.7514C37.6737 71.4847 37.3017 71.1127 36.7204 70.9514C36.1924 71.0607 35.8231 71.5914 35.7698 72.018C35.9804 72.3914 36.1924 72.818 36.5617 73.0847C34.7644 74.3633 32.4912 74.47 30.4286 75.0553C26.5673 75.5353 22.8127 75.8526 18.8995 75.9073C17.0462 75.8006 14.9316 76.4379 13.1877 75.9073C11.177 76.2806 9.00909 75.6406 7.36913 76.7592C7.15847 77.0246 7.4198 77.2926 7.4198 77.5592C9.85574 79.1565 13.1877 77.8752 15.9383 78.3579H36.7724C38.307 78.3045 39.839 78.2512 41.0563 77.5579C43.7549 76.0139 45.2349 73.2433 46.6108 70.5274C47.1388 69.5688 47.5095 68.4488 47.7215 67.3315C48.2481 65.5222 49.8881 64.2409 51.6854 64.0822C51.9507 66.8528 51.4227 69.6208 50.7867 72.178C50.4694 73.8847 49.3601 75.5353 50.0467 77.3446C50.2067 78.1979 51.1054 78.1979 51.7934 78.3045C58.1932 78.1979 64.5917 77.9312 71.3595 78.4112C72.5755 78.6232 73.6355 78.9952 74.9554 78.9445C75.0621 78.7819 75.4328 78.7312 75.2741 78.4112C75.1141 77.8246 74.6914 77.0779 74.0035 76.9179C73.8995 76.5993 73.4235 76.7073 73.2635 76.4926C69.8809 74.5766 65.8077 75.5859 61.8398 75.6419C59.7785 75.8526 57.7159 76.2246 55.9693 75.0553C55.1773 74.0953 55.7586 71.0607 55.7586 71.0607C55.7586 69.8554 58.6678 61.4716 59.0385 60.7797C59.1425 59.9797 59.4612 59.2357 59.3545 58.329C59.7772 57.2637 59.6732 55.8784 59.6732 54.7078C59.8838 53.0012 60.7305 51.4052 61.3105 49.7533C61.6291 48.9533 61.8944 48.1026 62.2104 47.3027C62.5278 46.2907 62.6358 45.332 63.2691 44.5334C64.9944 45.6267 66.6823 45.596 67.5103 47.5533L68.2396 51.9905C68.2396 52.2572 68.4516 52.7892 68.8223 52.4705C70.1956 51.5639 69.7742 49.5399 69.7742 48.156C70.0916 46.504 68.9289 45.7054 68.4516 44.2667C68.081 44.0001 67.473 42.7308 67.473 42.7308C67.2596 41.5575 64.697 40.7508 65.2784 39.3135C65.5943 38.0882 65.913 36.9696 67.0756 36.2776C67.2476 36.3976 67.3223 36.5229 67.3396 36.6549L67.9756 36.2109L68.0423 31.7564C69.7542 31.7497 72.3102 31.9697 74.0555 31.9697C74.5341 32.1297 74.9034 32.5017 75.4328 32.5564L75.8541 31.9697L80.1406 31.1337C78.322 31.3364 77.2154 29.2471 75.4848 29.2471" fill="#FAFAFA"/>
17
+ <path id="Vector_15" d="M34.0778 45.972C34.1298 46.6119 33.7578 46.9826 33.2818 47.1959C32.8592 47.0373 32.5445 46.9826 32.2805 46.5586C32.0672 45.9719 32.5965 45.5453 33.0192 45.332C33.4418 45.4386 33.9711 45.492 34.0778 45.972ZM30.6392 45.972C30.9579 46.2919 31.0099 46.8239 30.8526 47.1959C30.4819 47.5159 29.8992 47.7826 29.5806 47.3573C29.2633 47.0373 28.9473 46.6639 29.2113 46.2373C29.5806 45.864 30.2166 45.5453 30.6406 45.972" fill="#FAFAFA"/>
18
+ <path id="Vector_16" d="M144.555 47.4626C144.767 48.0492 144.291 48.4759 143.868 48.6892C143.339 48.5292 142.652 48.4212 142.652 47.7292C142.704 47.3026 143.072 47.0373 143.444 46.9306C143.92 46.7706 144.343 47.1439 144.555 47.4626ZM147.359 47.3572C147.518 47.6226 147.888 48.0506 147.464 48.3172C147.252 48.4745 147.094 48.5279 146.934 48.7412C146.354 48.8479 145.826 48.6345 145.666 48.1026C145.559 47.5159 146.036 47.2492 146.46 46.9826C146.828 46.8759 147.094 47.1439 147.359 47.3572ZM17.3636 47.9959C17.1542 48.6359 16.6236 48.9025 15.9369 48.6892C15.7555 48.4854 15.6123 48.2506 15.5143 47.9959C15.5676 47.6226 15.673 47.2492 16.0969 47.0892C16.7303 47.1439 17.2062 47.4092 17.3636 47.9959ZM35.1885 48.9025C35.1351 49.3265 34.6591 49.6998 34.2898 49.9132C33.7592 49.9665 33.3898 49.5398 33.1245 49.1665C33.1245 48.7399 33.3365 48.2092 33.7592 48.1026C34.3418 47.8892 34.9765 48.3159 35.1885 48.9025ZM32.0672 48.5279C32.2272 48.6879 32.3845 49.1145 32.2272 49.3812C31.9085 49.6479 31.4326 50.1252 30.9046 49.8078C30.5846 49.5412 30.2166 49.3279 30.3206 48.7945C30.5339 48.5812 30.7966 48.2612 31.1166 48.1559C31.5379 48.0492 31.7499 48.3159 32.0672 48.5292M155.451 49.1679C155.451 49.5945 155.028 50.0198 154.761 50.1785C154.339 50.3385 153.863 50.2318 153.599 49.9118C153.282 49.8078 153.387 49.3812 153.387 49.1145C153.652 48.7412 154.021 48.5279 154.392 48.4212C154.868 48.5279 155.185 48.8479 155.451 49.1679ZM158.835 49.6465C158.676 50.1265 158.305 50.5532 157.829 50.6065C157.513 50.5532 156.931 50.4465 157.039 49.9665C157.039 49.5932 157.249 49.2199 157.513 49.1132C158.041 48.8465 158.676 49.1132 158.835 49.6465ZM23.3941 50.3932C23.5008 51.0323 23.2888 51.458 22.7581 51.6705C22.3888 51.8838 22.0181 51.6171 21.7555 51.4038C21.4901 51.1371 21.2808 50.7118 21.4901 50.3398C21.5955 49.8598 22.0715 49.9665 22.3888 49.7532C22.8648 49.8065 23.1301 50.0198 23.3941 50.3932ZM25.986 50.8718C26.1434 51.2985 25.6687 51.4585 25.562 51.7785C25.2994 51.9371 24.9274 52.0971 24.6101 51.8838C24.2394 51.5638 23.8167 51.0838 24.1861 50.6065C24.6101 49.8065 25.7194 50.2332 25.986 50.8718ZM152.328 50.6065C152.382 51.1385 151.907 51.5118 151.59 51.8318C151.365 51.879 151.131 51.8392 150.934 51.7204C150.738 51.6016 150.594 51.4127 150.531 51.1918C150.479 50.7652 150.743 50.4452 151.114 50.1785C151.59 50.1252 152.066 50.1785 152.328 50.6052M156.667 51.4571C156.559 51.9371 156.613 52.4704 156.084 52.7891C155.659 52.8958 155.133 52.8424 154.816 52.5758C154.497 52.3091 154.444 51.8318 154.604 51.4571C154.868 51.0318 155.344 50.7118 155.873 50.8185C156.244 51.0318 156.349 51.2985 156.667 51.4585M21.3861 52.5771C21.5955 53.0011 21.1195 53.1104 20.9622 53.3224C20.5915 53.5358 20.2195 53.3758 19.9048 53.2158C19.5315 53.0024 19.6915 52.4718 19.7448 52.2038C20.2195 51.2971 21.1741 51.9371 21.3848 52.5771M153.335 53.5891C153.546 53.6424 153.44 53.9624 153.387 54.0691C152.119 54.7077 150.214 54.8664 149.103 53.8557C148.468 53.3224 147.676 53.1091 146.988 52.6824C147.252 51.9905 148.204 52.0425 148.892 51.8825C150.424 52.0958 151.642 53.5358 153.335 53.5891ZM23.9221 53.1091C24.0287 53.5357 23.7114 53.6958 23.6061 54.0144C23.3928 54.3344 22.9714 54.2277 22.7061 54.1211C22.2315 53.8011 22.0181 53.2144 22.3355 52.7878C22.9181 52.2038 23.6061 52.5238 23.9221 53.1091ZM28.5753 53.4291C28.7873 53.9091 28.4713 54.3357 28.0486 54.5997C27.6753 54.813 27.362 54.4944 27.042 54.4397C26.7793 54.0677 26.302 53.6411 26.7793 53.2158C27.2553 52.4171 28.206 52.8424 28.5753 53.4291ZM89.7218 55.681C89.6218 56.745 87.8618 55.5304 88.1125 56.9477C88.3631 57.961 88.5658 59.1743 89.1684 59.9329C89.6698 60.6409 89.4178 61.7542 89.3698 62.6129C88.9164 63.3728 88.1631 63.9315 87.3605 64.3342C85.8525 64.1835 83.6406 65.0928 82.9379 63.2222C82.6366 62.4115 82.082 61.6022 82.082 60.6916C82.2353 60.5902 82.4366 60.5902 82.5859 60.4382C82.5859 60.0849 82.1846 59.8809 82.2353 59.5276C83.9419 59.2236 81.5313 57.705 82.9886 57.605C84.1939 58.8703 86.1539 58.465 87.2085 59.8316C87.4605 60.0329 87.6618 60.3382 87.9618 60.4889C87.7618 59.2223 87.1578 57.9596 86.9578 56.593C86.8815 56.2709 86.8975 55.9337 87.0041 55.6203C87.1107 55.3068 87.3035 55.0298 87.5605 54.8211C88.4671 54.1144 89.2178 55.125 89.7204 55.681M33.2312 55.3477C33.3898 55.8784 32.9672 56.1997 32.6485 56.465C32.1739 56.6783 31.9085 56.145 31.6966 55.8784C31.5366 55.3477 31.9085 55.0784 32.2259 54.8131C32.5965 54.8131 33.0192 54.9731 33.2312 55.3464M65.861 55.8784C66.4957 57.9583 66.2837 60.0863 65.225 61.8449C65.1744 62.2702 65.3317 62.9648 64.7504 62.9102C63.3238 60.9396 64.3797 58.169 64.9637 56.0917C65.0677 55.5584 65.7024 55.3477 65.861 55.8784ZM111.132 56.8917C111.872 58.3823 111.924 60.3529 111.239 61.8449L110.815 62.2702C110.233 61.0449 109.756 59.8209 109.599 58.489C109.863 57.529 110.18 56.6783 110.233 55.6664C110.975 55.5064 110.92 56.4663 111.132 56.8903M37.3564 57.477C37.0391 58.1156 36.1404 58.2756 35.5565 58.701C34.2898 59.6609 32.4365 59.8743 30.8512 59.6076C32.2259 57.6903 34.3418 56.5717 36.8778 57.1037C36.9858 57.317 37.2511 57.2103 37.3564 57.477ZM15.621 59.3943C17.5756 60.7796 18.1062 62.6969 19.2689 64.6128C19.4262 64.8261 19.9568 64.8808 19.7448 65.3061C19.3209 65.6261 18.8995 64.9875 18.3169 65.0928C16.3076 64.1888 15.037 61.9515 15.0903 59.6076C15.0903 59.3943 15.4076 59.3943 15.621 59.3943ZM109.069 61.0449C109.123 61.5782 109.016 62.1102 108.593 62.2702C108.471 62.3089 108.343 62.323 108.216 62.3117C108.088 62.3004 107.965 62.2639 107.852 62.2044C107.738 62.1449 107.638 62.0634 107.557 61.9649C107.475 61.8663 107.414 61.7526 107.377 61.6302C107.217 61.2596 107.535 61.0449 107.641 60.7796C108.064 60.3529 108.805 60.5662 109.069 61.0462" fill="#FAFAFA"/>
19
+ <path id="Vector_17" d="M131.387 63.8689C131.387 62.857 131.653 61.897 131.757 60.9397C131.917 60.6197 132.021 60.2464 131.969 59.821C133.239 58.1144 135.83 58.6491 137.839 58.8077C138.633 59.2344 139.637 59.181 140.483 59.3944C140.854 59.1277 141.382 59.0744 141.806 59.1277C143.496 58.2211 142.387 56.2531 142.494 54.7078L141.858 53.1092C141.684 52.7674 141.542 52.4103 141.434 52.0426C141.119 51.6706 140.907 50.9786 140.59 50.6066C139.691 48.2627 137.945 46.9307 136.463 45.0667C133.766 41.5508 129.535 39.5789 125.305 38.1949C121.128 36.7563 116.896 38.6216 113.14 39.9522C111.977 39.6322 111.397 38.7269 111.079 37.7149C110.887 35.7765 111.235 33.8229 112.084 32.0697C112.244 30.7378 113.14 29.7258 113.511 28.5005C114.464 25.5179 115.468 22.5873 115.68 19.3394C115.785 17.3674 114.306 15.9821 112.824 15.1301C111.82 14.8648 110.656 14.9168 109.917 15.7168C109.228 17.1554 107.747 18.1141 106.477 18.8061C106.371 19.7127 107.481 19.126 107.852 19.446C109.016 19.6594 110.34 19.2847 111.291 20.0314C111.397 22.162 110.18 23.9206 109.069 25.5179C107.271 28.1805 105.368 30.8978 104.256 33.827L104.045 33.6137L104.301 46.6347C105.988 49.44 108.093 52.6385 111.237 53.6959C112.931 55.0798 115.045 56.7318 117.32 55.5065C118.534 55.1331 118.641 56.8384 119.222 57.5304C119.857 59.501 118.43 60.8863 118.324 62.697L116.948 65.6262C115.361 68.7168 113.934 72.0194 111.501 74.6287C110.708 74.6287 110.233 75.4806 109.44 75.5353C109.016 76.1206 108.169 75.694 107.641 75.9073C106.001 76.6006 103.675 76.174 102.564 77.7166C102.669 77.8766 102.828 77.9299 102.987 77.9859C106.212 78.0379 109.809 78.2512 113.247 78.0926C113.671 77.9312 114.042 77.5593 114.093 77.0793C113.618 76.1726 114.252 75.3726 114.674 74.6807C114.938 73.402 115.785 72.6047 116.156 71.3781C117.266 69.1968 118.534 67.0662 119.752 64.8809L121.392 62.2183C121.762 61.3117 122.396 60.193 123.03 59.2357C123.453 58.8091 123.666 58.3291 123.982 57.7984C124.036 57.2651 123.772 57.0518 123.453 56.6784C123.824 56.3051 124.405 56.4118 124.884 56.3051C126.205 57.1038 127.581 58.3824 127.843 59.821L128.321 61.205L128.533 61.845L128.426 63.6023L128.637 65.2542C128.902 67.8115 128.425 70.4208 128.161 72.978C127.261 76.066 123.718 75.7486 121.18 76.438C120.545 76.8646 119.33 76.6513 119.33 77.7179C122.396 78.3579 125.993 77.9846 129.271 77.9312C129.799 77.7179 129.906 77.2379 130.17 76.7579C130.277 76.066 130.963 75.4806 130.751 74.7353C130.17 73.99 130.699 72.8194 130.542 71.8061C130.649 71.5394 130.649 71.1674 130.542 70.7928C130.963 69.2488 130.859 67.3835 131.175 65.8915L131.387 63.8689ZM157.407 61.7916C155.713 64.1889 153.916 66.9049 150.956 67.7568C150.743 67.7568 150.531 67.8635 150.424 67.5968C152.223 65.6782 153.178 62.697 155.979 62.005C156.401 61.7916 156.984 61.5783 157.407 61.7916ZM13.0277 64.4022C12.7637 64.6129 12.977 65.0916 12.4984 65.1476C12.0757 65.3609 11.6024 65.0929 11.3904 64.6676C11.1771 64.1343 11.653 63.6023 12.0757 63.4956C12.4984 63.7089 12.9223 63.8689 13.0277 64.4022ZM28.2606 65.1476C28.418 65.6262 27.8873 65.6262 27.6246 65.7329C25.4034 66.5329 23.1301 65.7862 21.5421 64.1889C21.5421 63.9756 21.5421 63.7623 21.7555 63.7089C23.9221 64.2409 26.462 63.8156 28.2606 65.1476ZM15.9383 64.4542C16.0423 64.6676 16.0969 65.0409 16.0423 65.2542C15.7249 65.7329 15.249 65.8409 14.7223 65.7329C14.4023 65.5729 14.245 65.3596 14.033 65.0396C14.0863 64.5089 14.509 64.1889 14.9316 64.0303C15.3556 64.0823 15.6729 64.1889 15.9369 64.4542M65.4917 64.7222C65.5957 65.1996 65.1744 65.5222 64.8557 65.7329C64.3797 65.8395 63.9571 65.6262 63.7464 65.3062C63.5877 64.9356 63.7464 64.4023 64.1171 64.2956C64.5931 64.1889 65.333 64.2409 65.4904 64.7222M159.416 64.9356C159.575 65.4676 159.1 65.7329 158.729 66.0529C158.412 66.2129 158.041 66.0529 157.723 65.8929C157.671 65.6262 157.353 65.4129 157.461 65.0396C157.671 64.5609 158.147 64.3476 158.676 64.4022C158.94 64.6129 159.152 64.6689 159.416 64.9356ZM162.908 64.7222C163.224 65.1996 162.961 65.5742 162.696 65.9462C162.609 66.1122 162.461 66.2381 162.284 66.2977C162.106 66.3574 161.912 66.3461 161.743 66.2662C161.425 65.9462 161.001 65.7862 160.951 65.3062C160.951 64.8809 161.425 64.5609 161.743 64.4022C162.273 64.1889 162.484 64.7222 162.908 64.7222ZM10.8064 66.2662C10.8597 66.6395 10.5424 66.8529 10.4384 67.1702C10.1718 67.2768 9.90776 67.4902 9.59043 67.3835C9.21844 67.2248 8.95578 66.9035 8.79712 66.5329C8.90378 66.0529 9.21844 65.6262 9.7491 65.4662C10.1731 65.5729 10.6491 65.7862 10.8064 66.2662Z" fill="#FAFAFA"/>
20
+ <path id="Vector_18" d="M122.184 66.2662C122.29 66.4795 122.237 66.7462 122.237 66.9595C121.921 67.3835 121.497 67.7568 120.968 67.4902C120.652 67.1702 120.281 66.8529 120.438 66.3702C120.865 65.7849 121.762 65.5742 122.184 66.2662ZM19.3208 67.0662C19.2168 67.4395 19.0582 67.8115 18.5809 67.8635C18.1062 67.9168 17.9462 67.4902 17.6822 67.2768C17.6822 66.7969 17.6289 66.3195 18.1062 66.0529C18.7395 65.8395 19.3208 66.3715 19.3208 67.0662ZM14.245 67.1715C14.4036 67.7048 14.0316 68.0768 13.7156 68.3422C13.081 68.5555 12.5517 68.0755 12.289 67.5968C12.341 67.1182 12.7117 66.5329 13.2397 66.3702C13.7156 66.3702 13.9796 66.9035 14.245 67.1702M125.676 67.0662C125.782 67.5968 125.622 68.1288 125.094 68.3422C124.458 68.5555 123.93 68.0222 123.666 67.5968C123.93 67.1702 123.982 66.5835 124.618 66.4809C125.094 66.4809 125.412 66.6915 125.676 67.0662ZM16.7302 67.2782C16.8889 67.6502 16.5729 67.8115 16.4636 68.0768C16.2009 68.0768 16.0423 68.3968 15.7249 68.2902C15.5143 68.0222 15.0903 67.9168 15.0383 67.5448C14.985 67.0115 15.3556 66.7449 15.7249 66.5315C16.2543 66.4809 16.5729 66.8515 16.7302 67.2782ZM156.507 67.7048C156.349 68.1288 156.032 68.3422 155.608 68.5555C155.185 68.6621 154.92 68.2902 154.604 68.1288C154.339 67.9182 154.444 67.4382 154.552 67.1702C155.08 66.2662 156.507 66.6902 156.507 67.7035M160.527 67.9182C160.368 68.5048 159.787 68.7688 159.259 68.8208C158.781 68.6101 158.253 68.2382 158.623 67.5982C158.835 67.3848 158.94 67.1715 159.259 67.1182C159.893 66.9049 160.368 67.3848 160.527 67.9182ZM135.405 68.2902C135.671 68.9835 135.038 69.1968 134.614 69.5141C134.243 69.4608 133.926 69.3035 133.607 69.0901C133.502 68.5035 133.766 67.9702 134.35 67.7035C134.826 67.7035 135.089 67.9168 135.405 68.2902ZM120.864 68.9275C121.128 69.0341 121.021 69.4075 120.968 69.5688C120.652 69.7821 120.229 70.3141 119.752 69.9928C119.382 69.7821 119.118 69.4621 119.222 68.9821C119.489 68.3968 120.6 68.3422 120.864 68.9288M123.824 69.3035C123.877 69.7275 123.77 69.9408 123.401 70.1541C123.03 70.5274 122.608 70.1008 122.237 69.9941C122.133 69.7821 122.026 69.4608 122.184 69.1968C122.355 68.9775 122.599 68.8262 122.872 68.7701C123.242 68.8768 123.666 68.8768 123.824 69.3035ZM34.0778 69.3555C34.3938 69.6728 34.0245 70.0488 33.9711 70.3688C33.7058 70.6861 33.1245 70.9514 32.6485 70.6341C32.1205 70.4208 32.1739 69.7275 32.2805 69.3035C32.5965 69.1968 32.5965 68.8208 33.0192 68.8208C33.4952 68.8755 33.7591 69.0901 34.0778 69.3541M141.064 69.5688C141.171 70.0994 140.64 70.3141 140.272 70.4208C139.636 70.6341 139.321 70.1541 139.057 69.7274C139.057 69.4075 139.373 69.1968 139.479 68.9275C140.219 68.6101 140.695 69.1408 141.064 69.5688ZM138.21 69.5688C138.419 70.0994 137.839 70.3688 137.627 70.6341C137.434 70.7174 137.22 70.7416 137.013 70.7036C136.806 70.6657 136.615 70.5673 136.463 70.4208C136.198 70.2608 136.198 69.9408 136.198 69.6208C136.517 69.3541 136.675 69.0341 137.047 68.9275C137.522 68.9275 137.998 69.1968 138.21 69.5688ZM162.061 70.2061C162.165 70.9528 161.215 70.5794 160.845 70.7928C158.623 72.1234 155.767 71.1128 153.652 70.3128C153.811 69.6208 154.604 69.8888 155.028 69.6208C157.301 68.1835 159.628 69.9408 161.901 70.0474L162.061 70.2061ZM17.3116 69.5688L17.1009 69.9421C15.1436 71.1128 12.605 71.9127 10.2797 71.1687L10.0664 70.8474C12.0237 69.4075 14.613 69.0341 17.1542 69.4075L17.3116 69.5688ZM146.46 69.9408C146.46 70.3674 146.248 70.7408 145.93 70.9514C145.402 71.1127 144.714 70.9514 144.555 70.3688C144.398 69.9421 144.82 69.5141 145.242 69.3555C145.614 69.3555 146.248 69.4075 146.46 69.9421M26.7793 70.1541C26.5673 70.5794 26.6727 71.0074 26.1433 71.2207C25.614 71.4341 24.9807 70.9514 24.8234 70.5274C24.6634 69.9408 25.086 69.7821 25.3514 69.5141C25.9847 69.1968 26.4633 69.6741 26.778 70.1541M23.0261 70.4208C23.1834 70.7928 22.8661 71.0074 22.7594 71.2714C22.4941 71.5914 22.0194 71.5394 21.7008 71.4327C21.3328 71.1127 20.9621 70.7394 21.1195 70.1541C21.4368 69.8888 21.5955 69.7274 21.9661 69.5688C22.4421 69.6728 22.9181 69.8888 23.0247 70.4208M150.162 71.6447C150.133 71.8709 150.037 72.0833 149.886 72.2545C149.736 72.4256 149.537 72.5476 149.316 72.6047C148.892 72.658 148.522 72.3381 148.311 72.0714C148.226 71.904 148.201 71.7128 148.239 71.5291C148.277 71.3455 148.377 71.1803 148.522 71.0608C148.627 70.8994 148.998 70.8994 149.21 70.7928C149.436 70.8226 149.647 70.9198 149.817 71.0718C149.987 71.2238 150.107 71.4235 150.162 71.6447ZM19.1102 71.0608C19.2688 71.4847 18.8995 71.6447 18.8449 71.9647C18.6849 72.8714 18.1062 73.4567 17.6822 74.2567C16.6769 75.4806 15.2489 75.4806 13.821 75.8526L13.6103 75.4273C15.1436 73.4567 16.7836 71.9127 18.9515 70.9514L19.1102 71.0608ZM147.518 72.2327C147.623 72.87 147.094 72.978 146.724 73.2434C146.248 73.2434 145.879 72.9767 145.666 72.6047C145.507 72.0181 146.036 71.8047 146.354 71.5394C146.882 71.4327 147.359 71.8061 147.518 72.2327ZM25.1914 72.2327C25.138 72.3367 25.246 72.4434 25.3514 72.4994C25.298 73.0847 24.8754 73.2434 24.558 73.5087C24.3361 73.5169 24.1153 73.4733 23.9132 73.3811C23.7112 73.289 23.5334 73.151 23.3941 72.978C23.1821 72.498 23.3941 71.9114 23.9221 71.7514C24.3994 71.6981 25.034 71.7514 25.1914 72.2327ZM157.249 73.8287C157.776 73.7767 157.881 73.1354 158.465 73.0327C158.995 72.926 159.468 73.2434 159.735 73.6194C159.945 74.2567 159.468 74.5767 159.047 74.842C158.676 75.1087 157.881 74.522 157.933 75.2153C158.305 75.4806 158.623 75.8526 158.676 76.2793C158.571 76.4926 158.2 76.4393 158.041 76.334C156.507 75.694 154.868 74.6273 154.233 73.0327C154.021 72.55 153.018 72.1781 153.599 71.7514C155.133 71.6447 156.401 72.8714 157.249 73.8287ZM162.325 72.1781C162.589 72.4447 162.484 72.9247 162.273 73.1914C162.007 73.722 161.215 73.5087 160.74 73.4567C160.475 73.19 160.211 72.926 160.316 72.498C160.527 72.1781 160.74 71.9647 161.109 71.8047C161.585 71.6981 161.955 71.9114 162.325 72.1781ZM143.128 75.0553C143.628 75.6986 144.02 76.418 144.291 77.1859C144.184 77.3446 143.92 77.2926 143.816 77.2926C142.018 76.2793 139.691 75.162 139.002 73.0327C138.843 72.8194 138.419 72.55 138.474 72.1781C139.848 71.9114 141.171 72.9247 142.123 73.6714C142.494 74.2047 142.916 74.47 143.128 75.0553ZM22.2314 73.0327C22.4421 73.5087 22.0181 73.8833 21.7554 74.094C21.1741 74.2033 20.8555 73.99 20.5368 73.67C20.1688 73.0834 20.8568 72.6047 21.2795 72.3914C21.7008 72.3381 21.9661 72.7647 22.2314 73.0314M149.739 74.2567C149.791 74.5767 149.37 74.7873 149.21 75.0007C148.787 75.0553 148.363 75.214 147.994 74.842C147.888 74.5753 147.623 74.1487 147.94 73.8833C148.522 73.1367 149.37 73.7234 149.739 74.2567ZM162.908 75.0007C163.065 75.6406 162.589 76.066 162.165 76.334C161.637 76.4939 161.215 76.1206 160.897 75.8526C160.633 75.5353 160.845 75.214 160.897 74.842C161.267 74.522 161.743 74.2553 162.273 74.4687C162.484 74.6287 162.696 74.7353 162.908 75.002M126.31 82.3525C126.31 82.9898 125.146 82.8325 124.67 83.3111C123.03 84.1618 121.073 84.1618 119.118 84.1111V83.7898C121.021 82.1938 123.772 81.6072 126.31 82.3525ZM49.1508 84.6417C49.0961 85.1231 48.8308 85.3884 48.3561 85.5484C48.1723 85.5481 47.9919 85.4984 47.8339 85.4046C47.6758 85.3108 47.5458 85.1763 47.4575 85.0151C47.2441 84.3751 47.7748 84.1098 48.1441 83.8444C48.6214 83.8978 49.0441 84.2711 49.1508 84.6417ZM125.41 85.2271C125.305 85.7084 125.146 86.2404 124.618 86.4537C124.141 86.5604 123.824 86.2937 123.453 86.0804C123.189 85.867 123.349 85.4951 123.297 85.2271C123.666 84.2711 125.04 84.2711 125.412 85.2271M135.935 85.4404C134.614 86.2937 133.133 87.307 131.387 87.307L128.533 87.2537L128.266 87.0404C130.01 84.9097 133.185 84.9097 135.935 85.1231V85.4404ZM34.6591 86.719C34.6591 87.2017 34.4471 87.571 33.9711 87.7323C33.4418 87.839 33.0712 87.6257 32.8592 87.2523C32.6485 86.7737 32.8592 86.295 33.2818 86.0257C33.8645 85.6537 34.4471 86.295 34.6578 86.719M37.3017 87.2537C37.4617 87.519 37.1991 87.6803 37.0911 87.947C36.7737 88.1043 36.3524 88.211 36.0871 87.947C35.7164 87.7323 35.6098 87.3603 35.7698 87.0404C35.9298 86.7204 36.2471 86.7737 36.4044 86.5604C36.7737 86.7204 37.1444 86.8804 37.3017 87.2537ZM17.0476 92.6335C16.5182 93.2709 15.6729 92.4722 15.0903 92.1522C13.2397 91.0896 13.293 89.011 11.441 87.7843C11.6544 87.147 12.1277 87.839 12.4983 87.7323C12.8157 87.9457 13.2397 88.159 13.6103 88.319C15.4076 89.3323 15.8316 91.0349 17.0476 92.6335Z" fill="#FAFAFA"/>
21
+ <path id="Vector_19" d="M87.1218 91.6202C86.9098 92.2602 86.4872 92.7922 86.5405 93.4842L86.3285 93.5909C86.4885 92.7909 85.6938 92.3136 85.9045 91.4616C85.4805 90.8216 85.4805 90.0216 85.1125 89.331C84.6365 88.4776 85.5338 88.1043 85.9045 87.5177C86.6458 87.839 86.9098 88.531 87.4378 89.171C87.7565 90.0763 87.0685 90.7683 87.1218 91.6202ZM171.21 71.9647C170.364 70.4208 168.934 69.7821 167.242 69.7821C165.869 69.8888 164.863 70.7928 164.281 71.9647C163.965 73.1367 164.388 74.2047 165.287 74.894C165.657 75.0553 166.133 75.0007 166.344 74.6273C166.609 73.9353 165.869 73.9353 165.763 73.402C165.551 72.6567 165.817 72.0194 166.344 71.5394C166.873 71.0061 167.773 71.2727 168.406 71.2727C169.041 71.6994 169.677 72.0714 169.993 72.8194C170.313 73.733 170.313 74.7284 169.993 75.642C169.412 76.9726 168.09 78.0379 166.714 78.3059C162.325 78.9432 114.145 78.7299 114.145 78.7299C108.488 79.2632 102.036 77.6646 97.1709 80.6472C94.9483 81.7111 93.8376 84.1618 93.2577 86.347C91.8284 87.6257 90.2951 89.1176 89.1311 90.5549L88.9711 90.3963C89.2364 89.1176 89.8191 87.9977 90.0844 86.719C90.8764 85.6537 90.8764 84.2164 91.4577 83.0445C93.4683 79.7952 95.3709 76.4926 98.4922 74.2047C99.8148 72.4447 102.14 72.7647 104.151 72.7647C106.319 73.778 108.857 74.0953 111.501 73.8287C111.607 73.722 111.661 73.618 111.661 73.4567C110.92 72.7634 109.703 72.498 108.857 71.8061C106.743 70.7928 104.732 72.1234 102.511 71.9647C102.405 71.8581 102.3 71.8047 102.352 71.6447C104.363 70.1541 106.636 69.0901 108.912 68.1288C110.761 67.1182 112.717 66.5849 114.674 65.8395C115.468 65.8395 116.209 65.1462 116.948 65.6262L119.752 64.8809C119.858 64.9356 119.965 65.0929 120.176 65.0409C122.554 64.2409 125.57 64.9876 128.265 64.9356L128.638 65.2542L131.175 65.8915C132.127 65.9982 132.551 67.1182 133.555 67.1715C134.083 66.4249 132.974 66.1049 132.709 65.6249C133.874 65.3609 135.195 65.6782 136.251 66.1595L135.725 66.7462C135.405 67.3328 135.882 67.7568 136.358 67.9702C136.729 68.0768 136.994 67.8102 137.257 67.7035C137.945 67.2248 137.203 66.7462 137.415 66.3195C141.33 67.0115 145.084 67.9702 148.682 69.5141C149.684 69.8341 150.636 70.5794 151.748 70.5274C150.636 69.5141 149.103 68.9835 147.728 68.3968C146.828 67.8635 145.559 67.8102 144.874 67.0662C145.031 66.7982 145.402 66.9049 145.559 66.6915C147.359 66.4809 148.892 65.1476 150.162 63.7089C150.267 63.3916 150.848 63.4956 150.796 63.0689C150.32 62.5356 149.526 63.2303 148.892 63.1783C146.671 63.6023 145.718 66.2115 143.496 66.6915C140.8 66.0529 138.05 65.4116 135.353 64.7222C134.03 64.5089 132.605 64.4022 131.387 63.8689L128.425 63.6023H123.03C122.977 63.4956 122.82 63.4436 122.87 63.2823C124.777 62.8023 126.417 61.6837 128.321 61.205L142.494 54.7078C143.975 53.3759 145.295 51.8839 146.514 50.3399C146.533 50.1314 146.487 49.922 146.383 49.7405C146.278 49.5591 146.12 49.4145 145.93 49.3266C145.559 49.1666 145.136 49.22 144.874 49.54C144.238 50.0199 144.874 50.6066 144.874 51.1932C144.238 52.0439 143.232 52.7892 142.44 53.2692C142.23 53.2159 127.843 59.821 127.843 59.821C125.728 60.7277 123.613 61.7383 121.39 62.2183L118.324 62.697C118.113 63.3369 117.584 63.7103 117 63.9209C116.156 64.0809 115.466 64.6142 114.569 64.6142C107.693 67.2768 100.555 70.0994 95.1069 75.534C95.4243 74.894 95.5829 74.094 95.6363 73.294C95.5296 72.498 95.5829 71.5914 95.0549 70.9514C94.9309 70.6594 94.543 69.8008 94.6683 69.4928L93.891 69.9928C93.415 71.1674 92.9923 73.2954 93.4683 74.522C93.6283 75.4806 94.419 76.5993 93.6803 77.4513C91.1404 80.5392 89.7124 84.2711 88.0218 87.7843C87.3858 87.6803 87.0685 87.091 86.8031 86.5057C88.6031 84.2164 90.0311 81.6592 90.5591 78.7299C90.9297 78.4632 90.6657 77.7712 91.035 77.4513C90.9297 76.5993 91.5097 75.7486 91.0884 75.0553C91.4257 73.8913 89.5417 72.8194 90.7457 72.0741L89.7484 72.55C87.4738 75.5353 90.9297 80.0085 88.3378 82.8831V83.0965C87.5978 84.0578 87.2258 85.0164 86.2218 85.6537C84.9539 85.1231 84.4779 83.6831 83.7366 82.6178C82.5726 81.4978 82.5726 79.2085 83.2619 77.6646C83.7352 76.1206 82.9432 74.7873 82.7833 73.402L82.2566 73.0847C80.9873 74.7353 80.5113 77.3446 81.5139 79.3165C82.0433 80.2739 82.0979 81.6072 82.8912 82.4071C83.3659 83.9511 84.3179 84.9617 85.1645 86.347C85.3779 86.8804 84.8472 86.9857 84.5832 87.2537C84.0019 86.8804 84.1059 86.027 83.5779 85.6537C81.8313 81.9258 79.5593 78.9432 76.8101 75.9073C76.7034 75.4273 76.2261 75.0007 76.4901 74.47C77.4967 73.5087 77.7074 71.6434 77.1781 70.4208C77.0741 70.1541 76.7567 69.8341 76.8101 69.5688L76.0141 68.9288C76.1207 70.7928 74.9048 72.4434 75.4341 74.4153V74.522C69.9862 70.4208 63.9651 66.7582 57.8279 63.8823L57.3412 65.2356C58.8905 65.6262 63.0051 68.1288 63.0051 68.1288C64.8557 68.8221 66.5477 69.9421 68.2929 70.9514C75.4861 74.9487 80.246 81.5525 83.4712 88.9043C83.5246 89.491 84.0552 90.1283 83.6846 90.7136C82.5726 89.011 80.9873 88.0523 79.6647 86.667C79.2927 84.1618 77.814 81.7658 75.6448 80.7538C74.8514 79.5845 73.1595 79.4779 71.8382 79.1019L52.5867 78.9952C36.9324 78.7819 22.6541 79.4779 7.10514 79.2085C4.93586 78.9952 2.29193 78.2512 1.65861 75.9593C1.23595 75.162 1.23595 73.7767 1.65861 73.0327C2.23993 72.0194 3.29723 71.6994 4.35454 71.5927C5.20119 71.6994 5.7825 72.4994 6.1545 73.0847C6.1545 73.778 5.57051 74.4153 5.30518 75.0007C5.35852 75.214 5.57184 75.6406 5.94117 75.4806C6.62915 75.214 7.15847 74.47 7.31847 73.7767C7.36913 73.402 7.52779 72.87 7.15847 72.6047C6.84114 71.4847 5.67717 70.6848 4.6732 70.4208C3.34923 70.3141 1.97593 70.6861 1.07596 71.6447C-0.193346 72.7114 -0.140014 74.6287 0.22931 76.1206C1.07596 78.4646 3.56256 80.0632 5.94117 80.3805L57.4012 80.5938C62.4238 80.8605 68.0823 80.0085 73.1608 81.0205C75.0114 81.6072 76.9687 82.9898 77.4434 85.0684C77.3887 85.1751 77.2301 85.1231 77.0741 85.1231C72.8942 82.4071 67.3943 81.3938 62.0531 82.0325C59.9385 81.9258 58.0345 82.7258 56.1306 83.2591C55.1253 83.4724 54.1733 82.9898 53.5386 82.4058C51.6347 80.7018 48.3041 80.8085 45.8722 81.4458C45.8722 81.6072 45.8188 81.7658 45.9228 81.8205C48.5148 81.6072 50.0481 83.8444 52.376 84.1098C52.904 84.2164 53.3267 83.6298 53.8026 84.0578C51.372 85.2271 49.0428 86.6124 46.4522 87.3603C45.6588 87.2003 45.2362 86.4537 44.6015 86.027C43.5962 84.9097 41.7469 85.3884 40.371 85.2817C39.895 85.3884 39.4723 85.0684 39.1537 85.2817C39.5777 86.1337 40.5283 86.6124 41.4296 87.039C42.7496 87.6257 44.2829 86.9857 45.5015 87.7857C45.1815 88.159 44.7602 88.2657 44.3895 88.5323C41.9043 89.4896 39.8417 91.7269 37.0911 91.5682C34.1845 91.8856 31.2205 91.0349 29.2633 89.011C28.4179 86.9324 26.25 85.815 23.9221 85.923C23.7647 86.027 23.5527 86.027 23.6061 86.295C24.7687 86.9857 25.6687 88.371 26.8313 89.1696C27.5726 90.0763 28.9993 89.1696 29.6846 90.1829C30.6939 90.8763 31.9632 91.4616 33.1245 91.6749C33.9711 92.0482 34.9244 92.2056 35.8751 92.4202L35.5044 92.6335C30.6939 94.2295 25.138 94.3908 19.7448 94.1775C18.1582 94.1228 16.6249 93.6442 15.0383 93.6975C15.3023 94.0175 15.8316 94.2842 16.3076 94.4442C15.8863 94.7082 15.4076 94.8162 14.8796 94.8708C14.245 95.0295 13.5036 95.0841 12.8677 95.4015C12.0237 95.3481 11.281 95.6695 10.5957 95.9348C9.69574 96.8948 8.63843 97.9067 7.58246 98.3854C7.58246 98.5987 7.52913 98.9187 7.79312 98.9187C8.7971 98.4921 10.0664 98.8107 11.0717 98.3854C12.8157 98.2254 13.821 96.3081 15.1983 95.5081C16.6769 94.3362 18.7928 94.6042 20.5915 94.8708C21.6488 95.1361 20.4848 95.5641 20.8021 96.2561C21.2261 96.6281 21.5954 97.0561 22.1794 96.8934C22.2834 96.7868 22.3888 96.6801 22.5474 96.6268C22.8647 96.2001 22.8127 95.7215 22.6008 95.2935C23.3421 94.8162 24.3474 95.3495 25.138 95.0295C27.1486 94.9762 29.1593 94.5495 31.1165 94.4962C31.4325 94.4428 31.8045 94.1228 32.1205 94.4428C31.9632 94.8695 31.4325 94.9255 31.6445 95.5081C31.7499 95.9881 32.2792 96.2015 32.7005 96.3081C33.2312 96.0948 33.7058 95.7215 33.4951 95.0282C33.3898 94.6562 32.9672 94.6042 32.7005 94.4428C33.8125 93.9095 35.0804 93.7495 36.1924 93.2189C36.9595 93.0579 37.7051 92.8073 38.4137 92.4722C39.1017 92.4189 39.6843 91.7816 40.3176 92.0469C40.0577 92.9433 39.684 93.8027 39.2057 94.6042C38.3617 97.4281 37.7257 101.156 39.2057 103.873C39.3657 103.925 39.419 103.819 39.5257 103.767C38.4137 100.943 39.0483 97.6934 39.999 95.0295C40.7403 90.5029 45.3948 89.1696 48.7281 87.4643L48.8854 87.6803C47.9855 90.0216 46.6642 92.2616 46.8748 95.0842C46.9815 95.5641 46.6642 96.0401 46.8748 96.3628C47.7748 95.8801 48.3561 94.8162 48.8308 93.9095C49.2014 91.5136 47.8281 88.5323 50.2614 86.7737C54.596 85.0684 58.6692 82.8311 63.6931 82.7791C63.8517 82.9391 64.2224 82.6725 64.2744 82.9898C63.2171 84.1631 61.6851 85.2831 61.2078 86.719C59.5145 89.063 59.5678 93.0575 60.3078 95.9348C60.7851 97.5868 59.3558 98.4921 58.6678 99.7707C58.3412 100.221 58.2465 100.997 57.9439 101.517L58.9865 101.636C59.8852 100.677 60.7318 99.5054 60.7865 98.1174C60.8905 98.6507 61.3651 99.0774 61.7891 99.184C62.1584 98.5987 61.4718 98.1721 61.4184 97.5868C62.2651 97.1068 62.6371 98.1734 63.3237 98.3867C64.4344 98.6521 65.385 99.1307 66.5477 99.1307L66.9183 98.7574C65.7557 96.9481 63.4291 96.6281 61.4184 96.5214C60.3611 94.7642 60.3611 92.5815 60.4665 90.4483C60.6798 89.331 60.8905 88.159 61.5251 87.147C61.7891 86.399 62.5291 85.7084 63.0051 85.1231C63.9378 84.2367 65.0874 83.6113 66.3383 83.3098H66.4957C66.4957 83.4164 66.549 83.4724 66.549 83.4724C65.121 84.5897 64.9624 86.1337 64.1171 87.519C63.2171 88.8496 62.7931 90.6616 63.6397 92.1522C63.9584 92.8442 63.7997 93.9095 64.5397 94.3922C65.225 93.4322 65.2797 92.2056 65.649 91.1416C65.4903 89.383 64.4344 87.7323 65.4383 86.027C65.9677 84.6964 67.0783 84.1618 68.2943 83.6831C71.2022 83.4164 73.7408 84.9097 76.2794 86.027C76.8101 86.399 77.7074 86.7204 77.8127 87.4643C77.7594 88.9043 76.9687 90.3416 75.8554 91.0349C74.4288 91.8856 72.3662 91.9922 71.0422 90.9816C70.2502 90.1816 69.9342 88.7976 70.1982 87.7323C70.7795 87.0924 71.5742 86.5604 72.5248 86.8804C73.0542 87.147 73.5288 87.6803 74.2181 87.3603C74.4808 87.2003 74.5875 86.7737 74.4288 86.507C73.8475 86.187 73.6368 85.3884 72.8408 85.2817C71.8382 85.1231 70.6209 85.1751 69.9342 85.8684C69.408 86.3179 69.016 86.9039 68.8014 87.5619C68.5869 88.2199 68.5581 88.9243 68.7183 89.5976C69.0876 91.3002 70.3556 92.5269 71.9955 93.0055C74.4288 93.5922 76.9687 92.8442 78.502 90.7683C79.1353 90.0749 79.294 89.331 79.6647 88.4776C82.2033 90.0216 84.1045 92.7402 85.1125 95.5081C85.1125 96.4148 85.3779 97.3734 85.1659 98.1721L87.0151 98.3321C86.8551 97.9054 87.0151 97.4281 87.1751 97.0548C87.8618 93.5402 90.0311 90.6069 92.6217 88.319C93.5216 87.7857 93.3083 89.011 93.5216 89.383C94.3136 91.4096 96.1669 92.8442 98.1215 93.4322C100.341 93.8055 102.459 93.2722 103.833 91.5682C104.521 90.2896 105.368 88.4216 104.203 87.0923C103.856 86.655 103.414 86.3028 102.91 86.0629C102.406 85.823 101.854 85.7018 101.296 85.7084C99.9202 85.7084 99.0735 86.6684 98.3869 87.6803C98.3869 88.1043 98.3335 88.5843 98.7028 88.7976C98.9148 88.7976 99.3388 88.8496 99.4962 88.531C99.6028 87.7323 100.289 87.3603 100.924 86.9324C101.507 86.6124 102.14 86.9324 102.617 87.2523C103.199 87.7323 103.305 88.5323 103.357 89.3323C103.251 90.3416 102.564 91.4096 101.613 91.8336C100.079 92.6335 97.8575 92.2602 96.5336 91.3536C95.9016 90.6616 95.5296 89.8629 95.0549 89.011C94.9483 88.159 94.631 87.411 95.0549 86.5604C97.3816 85.1751 99.8148 84.1618 102.617 83.8964C103.727 84.1098 104.681 84.8551 105.419 85.6537C107.852 88.1603 104.892 91.7269 106.584 94.4948C107.217 94.3908 107.217 93.5402 107.481 93.0055C108.277 91.0896 107.271 89.011 106.795 87.147C106.16 85.9737 105.791 84.9604 104.784 84.0031C105.051 83.8964 105.157 83.8964 105.419 83.8964C106.531 84.6417 107.747 85.4964 108.645 86.667C110.252 89.2819 110.975 92.3441 110.708 95.4015C110.287 97.0014 108.593 97.7481 107.271 98.3307C106.743 98.7574 106.108 99.3974 105.844 100.037C106.479 100.409 107.377 100.037 108.011 99.7707C109.016 99.3974 109.597 98.1174 110.287 97.5348C110.391 97.5868 110.34 97.7481 110.391 97.8547C110.444 98.4374 110.127 99.2374 110.656 99.396C110.92 98.6521 110.975 97.5868 111.132 96.6801C111.82 97.4268 111.924 98.3867 112.136 99.344C112.613 100.303 113.406 101.581 114.674 101.743C114.992 101.263 114.622 100.783 114.517 100.356C114.357 99.0227 113.246 98.3307 112.507 97.3734C110.656 94.8162 111.501 90.8203 110.073 87.947C109.545 86.399 108.433 85.2817 107.217 84.0031L107.431 83.7898C110.021 83.7364 112.189 84.5897 114.569 85.0684C117.478 86.5057 121.709 86.1884 123.084 89.9696C123.666 92.0989 124.617 94.0708 126.1 95.7215L126.258 95.6148C126.573 95.0841 126.573 94.1775 126.258 93.6442C125.94 90.9829 123.613 90.3416 122.396 88.1043L122.554 87.891C123.824 88.2657 125.146 88.5843 126.415 89.1176C130.647 90.2896 133.607 94.4428 134.137 98.7574C134.137 102.167 133.502 104.989 132.181 107.864C132.021 108.294 131.281 108.77 131.757 109.144C132.339 108.718 132.445 108.026 132.762 107.547C134.507 104.617 135.405 100.571 134.507 96.8414C134.454 96.1481 133.661 95.6148 134.03 94.9255C134.295 95.2428 134.614 95.2948 134.93 95.4015C135.249 95.1881 135.725 95.1881 135.935 94.8148C135.989 94.4948 136.198 94.1228 135.935 93.8575C135.618 93.3775 134.93 93.3775 134.402 93.4842C134.137 93.8042 133.821 94.2308 133.766 94.6575C133.239 93.7509 132.709 92.5815 131.862 91.8336L131.969 91.6749C134.35 92.4722 136.517 93.6442 138.95 94.2842C139.479 94.6042 140.059 94.8708 140.8 94.8708C142.863 95.6708 145.136 95.9868 147.306 96.5214C148.892 96.3615 150.214 97.1081 151.802 96.7348V96.6281L151.748 96.6801C151.166 95.9348 149.899 96.6268 149.21 96.0935C145.559 95.7215 142.07 94.7642 138.791 93.4855C138.843 93.3255 139.057 93.3789 139.214 93.3789C139.743 93.1122 140.114 92.6322 140.059 92.0469C139.795 91.6749 139.372 91.4602 138.843 91.4602C138.526 91.6202 138.103 91.9936 138.05 92.3656C138.103 92.7922 138.474 93.2722 138.843 93.3789C138.738 93.4855 138.526 93.4322 138.369 93.4322C136.729 92.6855 135.141 91.9922 133.555 91.2482C132.974 91.1416 132.497 90.6616 131.915 90.5549C130.699 89.9683 129.482 89.383 128.265 88.9043C124.884 87.147 121.128 86.1884 117.532 84.9097C116.738 84.6964 115.996 84.4831 115.257 84.2711C113.936 83.8978 112.613 83.5764 111.291 83.2044C106.795 82.0871 100.765 81.9805 96.8522 84.4311C96.2176 84.2178 95.8469 85.2271 95.5296 84.5897C96.6402 81.6592 99.8668 80.7018 102.775 80.5952C123.982 80.3819 143.868 80.2219 164.759 79.9019C167.192 79.9019 169.572 79.0499 170.84 76.8659C171.738 75.586 171.898 73.402 171.21 71.9647Z" fill="#FAFAFA"/>
22
+ <path id="Vector_20" d="M144.502 88.2656C144.502 88.4229 144.82 88.4776 144.714 88.7429C142.863 90.3962 140.272 90.8762 137.627 90.9829C137.415 91.0349 137.203 91.1935 136.941 91.1415C136.782 91.0349 136.729 90.8749 136.837 90.7682C138.738 88.6909 141.646 87.6256 144.502 88.2656ZM135.989 89.1176C136.198 89.8629 135.725 90.2896 135.141 90.5549C134.559 90.5029 134.243 90.1282 133.979 89.7016C133.821 89.2763 134.19 89.0629 134.35 88.7976C134.771 88.3709 135.777 88.3709 135.989 89.1176ZM35.4524 89.2243C35.5578 89.5976 35.5058 90.0762 35.1884 90.3416C34.9751 90.6082 34.5018 90.6616 34.2351 90.6082C33.8645 90.5549 33.6538 90.1282 33.5485 89.8109C33.5485 89.3309 33.8125 89.0643 34.2351 88.7976C34.6591 88.7976 35.1338 88.7429 35.4524 89.2243ZM25.986 92.6855V93.0588C25.3893 93.189 24.7711 93.1849 24.1761 93.0468C23.5812 92.9086 23.0244 92.64 22.5461 92.2602C21.8074 91.1935 20.9608 90.1269 19.7462 89.5962C19.7462 89.4363 19.4262 89.2243 19.7462 89.1176C22.3888 89.1176 23.9767 91.2482 25.986 92.6855ZM152.541 89.1709C151.323 90.9815 150.267 93.2188 148.1 94.0188C147.728 94.0188 147.412 94.5495 147.094 94.1775C147.94 92.1508 149.739 89.9696 151.802 89.1176C152.012 89.1176 152.328 89.0643 152.541 89.1709ZM38.519 89.8109C38.5724 90.3976 38.1497 90.5042 37.779 90.8202C37.3564 90.8749 37.1444 90.5549 36.8791 90.2349C36.6684 89.7016 37.1457 89.4896 37.4084 89.2243C37.831 89.1176 38.3084 89.4349 38.5204 89.8109M159.204 90.1282C158.729 90.8215 158.94 91.8349 158.465 92.5815C157.407 93.8055 156.507 95.1881 154.816 95.4561C154.552 94.9241 155.185 94.3908 155.451 93.9095C156.192 92.3135 157.249 90.5029 158.94 89.8109L159.204 90.1282ZM9.59041 90.6069C9.74907 90.9815 9.90774 91.3535 9.59041 91.7815C9.42312 91.9186 9.22323 92.01 9.01015 92.0469C8.79708 92.0838 8.57808 92.065 8.37444 91.9922C8.15604 91.8713 7.99124 91.6726 7.9129 91.4356C7.83456 91.1986 7.84844 90.9408 7.95178 90.7136C8.26911 90.2349 9.21842 89.9696 9.59174 90.6069M6.57582 91.2482C6.62915 91.5135 6.78648 91.7282 6.73448 91.9922C6.57582 92.2602 6.31316 92.5815 5.99583 92.6322C5.41318 92.7388 5.04519 92.4188 4.77986 91.9402C4.72653 91.4602 4.8852 91.0335 5.30518 90.8202C5.78251 90.6069 6.31316 90.8749 6.57582 91.2469M12.8157 91.5682C12.9223 91.9922 13.029 92.7402 12.3943 92.8442C11.653 93.1668 11.229 92.6335 10.8077 92.2055C10.808 91.9876 10.867 91.7739 10.9784 91.5867C11.0899 91.3994 11.2497 91.2457 11.441 91.1415C11.9704 91.0882 12.4477 91.1415 12.8143 91.5682M21.4901 92.2602C21.4368 92.6335 21.5434 93.1668 21.1195 93.2708C20.8555 93.5401 20.3795 93.4322 20.1155 93.3775C20.0088 93.0575 19.4262 92.7908 19.7448 92.4202C19.9411 92.1684 20.1949 91.9672 20.4848 91.8335C20.8021 91.9935 21.2808 91.8335 21.4901 92.2602ZM164.281 92.6335C164.123 93.0068 163.912 93.4855 163.488 93.4855C163.013 93.4322 162.537 93.3788 162.273 92.8962C162.061 92.3135 162.537 91.9922 162.961 91.8335C163.488 91.8335 164.177 92.0468 164.281 92.6335ZM154.604 92.8962C154.656 93.3255 154.181 93.6428 153.969 93.8055C153.229 94.1228 152.595 93.5921 152.328 93.0055C152.434 92.5255 152.807 92.2055 153.229 92.0469C153.916 91.9935 154.287 92.3655 154.604 92.8962ZM161.161 92.7922C161.161 93.1668 160.951 93.5388 160.687 93.6988C160.263 93.8575 159.735 93.8055 159.416 93.4855C158.94 93.0588 159.311 92.6855 159.628 92.3655C160.104 92.0989 161.001 92.1522 161.161 92.7922ZM8.21578 93.6988C8.32244 94.2855 8.10911 94.8161 7.58113 95.0294C7.10514 95.0294 6.57582 94.7628 6.41849 94.2841C6.36516 93.8041 6.52115 93.3255 6.94781 93.1668C7.47446 93.0068 7.89979 93.3268 8.21578 93.6988ZM151.962 94.2841C152.119 94.8708 151.802 95.4014 151.219 95.6708C150.796 95.7734 150.531 95.5641 150.214 95.2948C150.003 95.0281 149.739 94.4428 150.162 94.1775C150.584 93.3775 151.642 93.6975 151.962 94.2841ZM36.6684 94.8694C36.8791 95.4561 36.2471 95.5628 36.0871 95.8801C35.8738 95.9868 35.4524 96.0401 35.2938 95.8281C35.0284 95.5081 34.7124 95.1881 34.8698 94.7081C35.1338 94.4948 35.2404 94.2841 35.5578 94.1775C36.1404 94.0175 36.3524 94.5508 36.6684 94.8708M163.329 95.2428C163.435 95.6161 163.12 95.7734 163.065 96.0388C162.748 96.3081 162.22 96.3627 161.849 96.2561C161.373 95.9868 161.373 95.5628 161.373 95.0828C161.691 94.8694 161.743 94.6041 162.113 94.4961C162.589 94.4961 163.172 94.7095 163.329 95.2428ZM160.052 95.4014C160.263 96.0388 159.681 96.3614 159.259 96.5214C159.047 96.5734 158.729 96.4147 158.676 96.7347C160.052 97.428 160.897 98.544 161.955 99.5573V99.9827C160.052 99.9293 158.093 99.4507 156.717 97.9587C156.349 97.692 155.713 97.692 155.292 97.3201C155.979 96.6267 157.249 96.8934 158.2 96.8414C158.888 96.0947 157.407 95.5628 158.305 94.9254C158.623 94.8708 158.835 94.5495 159.259 94.6561C159.628 94.8161 159.839 95.0828 160.052 95.4014ZM138.419 95.4561C138.526 95.7228 138.21 96.0387 138.157 96.3081C138.006 96.4559 137.815 96.5552 137.608 96.5932C137.401 96.6312 137.187 96.6062 136.994 96.5214C136.729 96.1481 136.303 95.8281 136.463 95.2948C136.887 94.4948 138.261 94.6561 138.419 95.4561ZM20.1688 97.3201C20.0088 97.8 19.7955 98.1174 19.2688 98.1734C18.8448 98.1174 18.4769 97.9587 18.3169 97.5334C18.2635 97.1614 18.5302 96.9481 18.5809 96.6801C19.1635 96.2001 20.2208 96.5201 20.1675 97.3201M24.4527 96.6281C24.4527 97.3721 23.6581 97.8 23.3941 98.544C22.6008 100.303 21.1741 101.901 19.1635 102.06C18.9502 101.58 19.8515 100.995 20.0621 100.516C20.9075 98.7053 22.6008 97.748 24.1354 96.6281H24.4527ZM137.151 97.3721C137.203 97.9587 136.675 98.3854 136.251 98.5987C135.777 98.7587 135.405 98.3854 135.141 98.172C134.718 97.748 134.983 97.3201 135.195 96.8934C135.83 96.2561 136.729 96.7867 137.151 97.3734M140.431 97.748C140.411 98.0173 140.309 98.274 140.139 98.4836C139.969 98.6931 139.739 98.8455 139.479 98.92C139.372 98.7574 139.109 98.8653 138.95 98.8107C138.579 98.5987 138.261 98.2787 138.261 97.8547C138.526 97.5867 138.633 97.1614 139.002 97.1081C139.479 97.0547 140.272 97.1081 140.431 97.748ZM32.6485 97.6934C32.7018 98.28 32.2805 98.6 31.8565 98.8107C31.3805 98.864 31.0619 98.544 30.8512 98.172C30.7472 97.692 31.2205 97.3721 31.4845 97.1067C32.1205 96.8934 32.2805 97.3734 32.6485 97.6934ZM36.2991 97.9067C36.1391 98.3867 35.8231 98.7067 35.2938 98.8107C34.9231 98.7054 34.5018 98.5987 34.3418 98.172C34.2898 97.6414 34.7124 97.3721 35.0804 97.1067C35.6098 97.1067 36.1924 97.3201 36.2991 97.9067ZM151.802 101.636C152.066 101.847 152.542 102.112 152.434 102.487C151.59 102.86 150.902 101.901 150.11 101.743C148.839 100.463 147.888 99.0787 147.359 97.48C147.835 97.0001 148.363 97.5867 148.787 97.7467C150.003 98.7573 151.166 100.091 151.802 101.636ZM153.759 97.9067C153.916 98.28 153.863 98.7067 153.652 99.0787C153.335 99.6093 152.647 99.5053 152.172 99.396C151.907 99.0787 151.431 98.652 151.748 98.172C151.907 97.748 152.382 97.6414 152.754 97.4787C153.121 97.428 153.387 97.748 153.759 97.9054M41.163 99.2907C41.2163 99.7173 41.323 100.357 40.7936 100.623C40.3176 100.729 39.6843 100.569 39.5243 99.9827C39.2617 99.344 39.8417 99.236 40.159 98.92C40.5816 98.8107 40.8456 99.024 41.163 99.292M140.272 102.753C141.012 103.819 141.54 105.149 141.646 106.537C141.486 106.909 141.911 107.281 141.594 107.546H141.382C139.002 105.844 138.474 103.445 137.574 101.049C137.362 100.943 137.309 100.729 137.362 100.516C137.891 100.036 138.261 100.996 138.791 101.156L140.272 102.753ZM48.0388 100.944C47.9855 100.995 48.0388 101.051 48.0921 101.051C45.9775 102.539 43.0149 103.445 40.583 102.008C40.5296 101.847 40.6363 101.581 40.8456 101.528C42.3803 101.049 43.8602 100.301 45.5015 100.515L48.0388 100.944ZM35.9804 101.208C34.1845 102.328 32.5445 104.511 30.3206 105.044C29.8992 105.204 29.6352 105.789 29.1073 105.469C30.0592 102.592 33.1792 101.049 35.9804 100.781V101.208ZM137.151 103.604C137.309 104.031 137.151 104.617 136.729 104.724C136.463 104.991 135.935 104.991 135.725 104.724C135.249 104.511 135.249 104.031 135.249 103.659C135.405 103.287 135.777 103.232 136.042 103.072C136.517 103.18 136.887 103.18 137.151 103.605M132.762 103.872C132.443 104.619 131.546 105.045 130.858 105.256C129.059 105.896 127.421 105.044 125.834 104.617C125.886 104.193 126.415 104.351 126.679 104.084C128.426 103.711 130.222 103.339 132.073 103.817C132.233 103.711 132.603 103.659 132.762 103.873M35.9804 105.417C35.8231 105.631 35.7698 106.11 35.3444 106.268C34.9764 106.428 34.6071 106.268 34.2911 106.057C34.1845 105.735 33.8111 105.469 34.0778 105.097C34.1845 104.724 34.6058 104.617 34.9231 104.511C35.4524 104.565 35.8751 104.884 35.9791 105.417M39.1017 105.896C38.9417 106.213 38.7857 106.696 38.3617 106.909C37.9364 107.013 37.6204 106.802 37.3017 106.536C37.1444 106.213 36.9857 105.844 37.1444 105.469C37.2511 105.203 37.6204 105.149 37.8857 104.989C38.4137 104.937 38.8897 105.469 39.1017 105.896ZM136.146 106.426C136.198 106.853 135.989 107.12 135.777 107.44C135.513 107.813 134.983 107.865 134.614 107.653C134.243 107.6 134.137 107.174 133.979 106.909C133.661 106.482 134.19 106.213 134.35 105.844C134.93 105.363 135.882 105.631 136.146 106.426ZM138.474 106.322C138.526 106.589 138.686 106.854 138.579 107.068C138.261 107.334 138.05 108.026 137.415 107.761C137.099 107.865 136.941 107.441 136.782 107.334C136.57 106.801 136.729 106.003 137.415 105.896C137.891 105.735 138.21 106.162 138.474 106.322ZM37.1991 107.864C37.3017 108.453 37.0924 108.984 36.6684 109.304C36.0871 109.41 35.3444 109.41 35.1351 108.718C35.0818 108.185 35.1351 107.494 35.7698 107.174C36.2991 107.12 36.9324 107.228 37.1991 107.865M40.211 107.653C40.107 109.144 39.7883 110.956 38.3084 111.808C37.4604 111.968 36.6151 112.768 35.7698 112.234V111.968C36.8791 110.37 38.8897 109.144 40.211 107.653ZM127.843 108.877C128.054 109.197 127.685 109.466 127.526 109.732C127.21 110.105 126.626 109.942 126.258 109.785C125.885 109.625 125.834 109.092 125.992 108.718C126.098 108.398 126.415 108.238 126.679 108.132C127.157 108.081 127.579 108.505 127.843 108.878M45.5015 111.328C46.2402 112.554 45.8188 114.205 46.2402 115.537C45.3415 115.644 44.9709 114.63 44.3895 114.098C43.2282 112.5 43.3856 110.37 42.8562 108.505C42.8926 108.443 42.9516 108.397 43.0209 108.377C43.0901 108.357 43.1644 108.365 43.2282 108.398C44.0202 108.932 44.6015 109.942 45.2362 110.636C45.1295 111.008 45.5535 111.008 45.5015 111.329M130.487 109.304C130.487 109.732 130.011 109.838 129.747 110.104C129.377 110.052 129.059 109.89 128.743 109.624C128.583 109.09 129.007 108.932 129.271 108.666C129.799 108.453 130.329 108.72 130.487 109.305M136.782 114.046C136.782 114.206 136.729 114.524 136.463 114.417H136.251C134.718 113.034 133.185 111.489 133.397 109.357L133.714 109.304C135.141 110.53 136.729 111.862 136.782 114.046ZM132.815 112.341C132.869 112.768 132.603 113.086 132.339 113.352C131.755 113.512 130.859 113.458 130.751 112.661C130.699 112.128 131.281 111.861 131.546 111.596C132.179 111.436 132.603 111.862 132.815 112.341ZM129.323 113.458C128.583 115.429 126.573 116.442 125.197 117.934C124.933 117.774 125.038 117.348 125.093 117.134C125.621 115.112 127.209 113.141 129.165 112.341C130.009 112.448 129.165 113.034 129.322 113.458M133.291 115.057C133.291 115.537 132.815 115.75 132.551 116.016C132.127 115.962 131.705 115.856 131.387 115.429C131.334 114.898 131.757 114.736 132.073 114.472C132.312 114.42 132.562 114.449 132.783 114.556C133.004 114.662 133.183 114.839 133.291 115.058M94.011 18.7727H93.427C91.8937 18.7727 93.195 20.6313 94.019 20.6313C95.0429 20.6313 95.1069 18.7727 94.011 18.7727ZM89.2751 20.6313C90.8084 20.6313 89.3578 18.7727 88.5338 18.7727H87.0018C85.4685 18.7727 86.9178 20.6313 87.7431 20.6313H89.2751ZM82.8499 20.6313C84.3832 20.6313 82.9326 18.7727 82.1086 18.7727H80.5766C79.0447 18.7727 80.4953 20.6313 81.3166 20.6313H82.8499ZM93.9376 18.354C94.11 18.3546 94.2806 18.3891 94.4397 18.4556C94.5988 18.5221 94.7432 18.6192 94.8646 18.7416C94.9861 18.8639 95.0823 19.009 95.1477 19.1685C95.213 19.3281 95.2463 19.4989 95.2456 19.6713C95.2465 19.8437 95.2134 20.0145 95.1481 20.174C95.0829 20.3335 94.9869 20.4786 94.8655 20.601C94.7441 20.7233 94.5998 20.8206 94.4408 20.8871C94.2819 20.9536 94.1113 20.9881 93.939 20.9886H78.254C77.9062 20.9869 77.5732 20.8472 77.3283 20.6002C77.0833 20.3532 76.9463 20.0192 76.9474 19.6713C76.9463 19.3235 77.0833 18.9894 77.3283 18.7425C77.5732 18.4955 77.9062 18.3558 78.254 18.354H93.9376ZM94.051 42.6654C94.051 43.3601 94.9776 42.8974 95.6683 42.8974C96.3576 42.8974 97.2869 43.3601 97.2869 42.6667C97.2869 41.6814 96.3576 42.0241 95.6683 42.0241C94.9789 42.0241 94.0496 41.6814 94.0496 42.6667M96.9842 44.304C97.6562 44.304 97.7175 43.3774 97.7175 42.5761C97.7175 40.7588 96.2776 42.5761 95.5416 40.8655C95.0029 42.3081 93.5243 40.9721 93.5243 42.5228C93.5243 43.5907 93.5176 44.304 94.5789 44.304H96.9842ZM92.5617 36.3482L95.5603 37.4989L98.5055 36.3482L97.3389 40.7588L99.6722 40.2761L98.8775 42.9494L99.6735 45.516L97.6042 44.9534L98.5055 49.7106L95.5603 48.5626L92.5617 49.7106L93.7816 44.9534L91.3937 45.6227L92.0323 42.9494L91.3924 40.3828L93.6763 40.7588L92.5617 36.3482ZM85.5498 42.8361V42.2761L85.0472 42.1788L85.4405 41.7721L85.1979 41.3215L85.7112 41.3748L86.0218 40.8281L86.3272 41.3668L86.8498 41.3215L86.6045 41.7721L86.9978 42.1788L86.4965 42.2761V42.8361L86.0218 42.4801L85.5498 42.8361ZM83.2246 45.8293V45.272L82.7219 45.176L83.1166 44.7667L82.8726 44.3174L83.3859 44.3707L83.6992 43.8241L84.0019 44.3627L84.5245 44.3174L84.2792 44.7667L84.6739 45.176L84.1725 45.272V45.8293L83.6992 45.4747L83.2246 45.8293ZM87.1698 45.4494V44.8894L86.6685 44.796L87.0618 44.384L86.8191 43.9334L87.3338 43.9894L87.6445 43.4427L87.9485 43.9814L88.4711 43.9334L88.2284 44.384L88.6204 44.7947L88.1204 44.888V45.4494L87.6445 45.0947L87.1698 45.4494ZM87.6365 47.6853V47.3693L87.3525 47.316L87.5738 47.0853L87.4351 46.8293L87.7285 46.8613L87.9031 46.5533L88.0738 46.856L88.3698 46.8293L88.2324 47.0853L88.4538 47.316L88.1711 47.3693V47.6866L87.9044 47.4866L87.6365 47.6853ZM83.9712 50.2452V49.2853L83.1112 49.1239L83.7846 48.4199L83.3672 47.6506L84.2472 47.744L84.7845 46.808L85.3045 47.7306L86.1978 47.6506L85.7805 48.4199L86.4538 49.1239L85.5952 49.2853V50.2452L84.7832 49.6372L83.9712 50.2452ZM85.8378 -0.000178714L87.6991 4.5797L92.4163 3.19174L90.0244 7.51296L94.0403 10.3636L89.1937 11.1742L89.4871 16.1141L85.8378 12.8008L82.1846 16.1141L82.4806 11.1742L77.6327 10.3636L81.6513 7.51296L79.258 3.19041L83.9739 4.5797L85.8378 -0.000178714ZM68.7743 102.721C68.2143 102.932 67.9956 103.087 68.1343 103.668L68.7983 106.474C68.9196 106.994 68.9583 107.813 68.6116 108.314C68.1983 108.917 67.325 109.301 66.6957 109.453C66.2357 109.565 65.237 109.75 64.4344 109.412C63.9051 109.185 63.5611 108.942 63.3357 107.992L62.6398 105.052C62.4651 104.313 62.1878 104.359 61.5891 104.448L61.5358 104.227L65.0824 103.377L65.1357 103.597C64.4477 103.789 64.125 103.875 64.309 104.651L65.0024 107.59C65.1224 108.094 65.4104 109.308 66.9196 108.945C68.7663 108.502 68.4689 107.149 68.3356 106.585L67.6996 103.901C67.5743 103.365 67.377 103.093 66.465 103.279L66.4143 103.057L68.7209 102.503L68.7743 102.721ZM74.0288 103.311C73.7048 102.735 72.8488 101.86 71.6062 102.136C71.0582 102.259 70.5382 102.653 70.6636 103.227C70.7702 103.704 71.0115 103.852 71.9809 104.029L73.6688 104.328C74.0595 104.399 74.9728 104.732 75.1848 105.696C75.3554 106.472 74.9181 107.693 72.9782 108.122C71.9809 108.346 71.4382 108.153 71.1115 108.224C70.8902 108.273 70.8742 108.445 70.8635 108.597L70.5569 108.664L70.0769 106.482L70.3809 106.412C70.7889 107.258 71.6209 108.12 72.9568 107.822C74.2235 107.542 74.0808 106.653 74.0555 106.54C73.9261 105.948 73.3848 105.847 72.6395 105.724L71.8715 105.599C69.9116 105.276 69.7436 104.516 69.6556 104.109C69.5356 103.571 69.5982 102.296 71.5982 101.849C72.4408 101.663 73.0008 101.844 73.3048 101.776C73.5475 101.723 73.5715 101.579 73.5861 101.399L73.9035 101.328L74.3248 103.243L74.0288 103.311ZM81.0073 106.8L77.1741 107.166L77.1527 106.942C77.9314 106.813 78.1874 106.77 78.1167 106.013L77.6634 101.263C76.9167 101.369 75.8154 101.521 75.7368 102.984L75.4234 103.016L75.2848 101.201L81.7299 100.581L81.9219 102.391L81.6126 102.42C81.2606 100.997 80.15 101.06 79.4047 101.096L79.8553 105.847C79.93 106.612 80.1886 106.604 80.9886 106.573L81.0073 106.8ZM85.3058 103.584C86.7178 103.599 87.2818 103.411 87.3058 102.237C87.3231 101.32 86.8898 100.923 86.0258 100.907C85.4338 100.896 85.4099 100.995 85.3512 101.273L85.3058 103.584ZM89.9777 106.797L87.7658 106.756L85.5898 103.877L85.3005 103.872L85.2645 105.645C85.2512 106.372 85.4858 106.404 86.1978 106.498L86.1925 106.725L82.5499 106.653L82.5526 106.426C83.2886 106.368 83.5032 106.344 83.5179 105.613L83.5952 101.609C83.6112 100.831 83.2779 100.808 82.6646 100.757L82.6686 100.531L86.1405 100.599C86.8965 100.615 89.1791 100.732 89.1484 102.252C89.1271 103.368 88.0111 103.628 87.4258 103.768L89.5431 106.39C89.597 106.453 89.6645 106.501 89.7403 106.533C89.8162 106.565 89.8984 106.578 89.9804 106.573L89.9777 106.797Z" fill="#FAFAFA"/>
23
+ <path id="Vector_21" d="M94.055 105.177L93.243 102.863L91.9671 104.916L94.055 105.177ZM97.0549 107.708L93.5883 107.273L93.615 107.049C94.2843 107.087 94.4777 107.103 94.5137 106.805C94.5457 106.563 94.2843 105.855 94.171 105.549L91.7631 105.248C91.3844 105.857 91.1671 106.204 91.1497 106.347C91.1057 106.688 91.6164 106.779 91.9791 106.844L91.9511 107.068L89.7778 106.795L89.8071 106.571C90.3924 106.571 90.5804 106.284 90.9844 105.651L93.971 101.029L94.271 101.065L96.0709 106.089C96.4336 107.109 96.5669 107.437 97.0843 107.482L97.0549 107.708ZM103.335 108.986L97.1976 107.86L97.2389 107.638C97.8456 107.682 98.1682 107.716 98.2669 107.172L99.0482 102.863C99.1535 102.273 98.7229 102.177 98.2509 102.06L98.2909 101.839L101.995 102.519L101.953 102.74C101.205 102.633 100.874 102.58 100.734 103.365L99.9722 107.568C99.8949 107.997 100.115 108.109 100.826 108.24C102.428 108.537 103.156 107.906 103.827 106.989L104.133 107.044L103.335 108.986ZM107.404 109.898L103.709 109.122L103.757 108.898C104.335 108.977 104.755 109.026 104.868 108.477L105.755 104.188C105.875 103.601 105.381 103.481 104.901 103.352L104.948 103.133L108.643 103.907L108.597 104.131C108.097 104.044 107.589 103.945 107.464 104.549L106.576 108.836C106.46 109.404 106.877 109.518 107.449 109.674L107.404 109.898ZM111.848 108.393L110.987 106.092L109.755 108.177L111.848 108.393ZM114.905 110.86L111.427 110.497L111.449 110.273C112.12 110.297 112.315 110.308 112.344 110.01C112.368 109.768 112.093 109.065 111.973 108.762L109.559 108.51C109.191 109.128 108.98 109.48 108.967 109.625C108.932 109.966 109.447 110.046 109.807 110.101L109.785 110.328L107.605 110.101L107.629 109.874C108.216 109.865 108.399 109.573 108.789 108.932L111.675 104.245L111.976 104.273L113.885 109.26C114.269 110.273 114.41 110.598 114.926 110.633L114.905 110.86ZM85.4406 38.2269C84.8059 38.2269 83.9513 38.6642 83.9513 37.9109C83.9513 36.8443 84.6739 37.0842 85.3086 37.0842C85.9432 37.0842 86.9285 36.8443 86.9285 37.9109C86.9285 38.6642 86.0752 38.2269 85.4406 38.2269ZM87.3245 37.8109C87.3245 35.635 86.1059 37.6736 85.4312 35.8243C84.9379 37.3882 83.4699 36.0709 83.4699 37.7536C83.4699 38.3962 83.6366 38.7669 83.9499 38.9735V39.6149C83.9499 39.7815 84.0833 39.9162 84.2472 39.9162H86.5565C86.7219 39.9162 86.8552 39.7829 86.8552 39.6149V38.9189C87.1338 38.6815 87.3245 38.3056 87.3245 37.8122M106.248 64.4982C106.8 64.4982 107.245 64.1049 107.245 63.6209C107.245 63.1369 106.8 62.7409 106.248 62.7409C105.699 62.7409 105.252 63.1369 105.252 63.6209C105.252 64.1049 105.699 64.4982 106.248 64.4982ZM101.56 32.2857C101.56 32.2857 101.092 33.0737 101.092 33.2217C101.092 33.5097 101.305 33.743 101.567 33.743C101.828 33.743 102.04 33.5097 102.04 33.223C102.04 33.2044 101.56 32.2857 101.56 32.2857ZM69.6183 32.2857C69.6183 32.2857 69.1516 33.0737 69.1516 33.2217C69.1516 33.5097 69.3623 33.743 69.6249 33.743C69.8876 33.743 70.0996 33.5097 70.0996 33.223C70.0996 33.2044 69.6183 32.2857 69.6183 32.2857ZM77.6034 32.2857C77.6034 32.2857 77.1368 33.0737 77.1368 33.2217C77.1368 33.5097 77.3501 33.743 77.6101 33.743C77.8727 33.743 78.0847 33.5097 78.0847 33.223C78.0847 33.2044 77.6034 32.2857 77.6034 32.2857ZM85.5885 32.2857C85.5885 32.2857 85.1219 33.0737 85.1219 33.2217C85.1219 33.5097 85.3339 33.743 85.5952 33.743C85.8565 33.743 86.0699 33.5097 86.0699 33.223C86.0699 33.2044 85.5899 32.2857 85.5899 32.2857M93.5737 32.2857C93.5737 32.2857 93.107 33.0737 93.107 33.2217C93.107 33.5097 93.3204 33.743 93.5817 33.743C93.843 33.743 94.0563 33.5097 94.0563 33.223C94.0563 33.2044 93.5737 32.2857 93.5737 32.2857ZM69.6329 43.2508C69.6329 43.2508 70.0996 44.0374 70.0996 44.1867C70.0996 44.4747 69.8863 44.7067 69.6249 44.7067C69.3623 44.7067 69.1503 44.4747 69.1503 44.1867C69.1503 44.1694 69.6329 43.2508 69.6329 43.2508ZM69.6329 53.9052C69.6329 53.9052 70.0996 54.6918 70.0996 54.8385C70.0996 55.1265 69.8863 55.3585 69.6249 55.3585C69.3623 55.3585 69.1503 55.1265 69.1503 54.8385C69.1503 54.8225 69.6329 53.9052 69.6329 53.9052ZM70.9103 62.337C70.9103 62.337 71.3796 63.1263 71.3796 63.2716C71.3796 63.5583 71.1662 63.7916 70.9036 63.7916C70.6409 63.7916 70.4289 63.5583 70.4289 63.2716C70.4289 63.2569 70.9103 62.337 70.9103 62.337ZM77.6087 66.8182C77.6087 66.8182 78.0754 67.6075 78.0754 67.7568C78.0754 68.0421 77.8634 68.2768 77.6021 68.2768C77.3408 68.2768 77.1274 68.0421 77.1274 67.7568C77.1274 67.7408 77.6074 66.8195 77.6074 66.8195M101.965 43.2508C101.965 43.2508 101.5 44.0374 101.5 44.1867C101.5 44.4747 101.713 44.7067 101.973 44.7067C102.235 44.7067 102.447 44.4747 102.447 44.1867C102.447 44.1694 101.967 43.2508 101.967 43.2508M101.965 53.9052C101.965 53.9052 101.5 54.6918 101.5 54.8385C101.5 55.1265 101.713 55.3585 101.973 55.3585C102.235 55.3585 102.447 55.1265 102.447 54.8385C102.447 54.8225 101.967 53.9052 101.967 53.9052M100.688 62.337C100.688 62.337 100.222 63.1263 100.222 63.2716C100.222 63.5583 100.434 63.7916 100.696 63.7916C100.956 63.7916 101.169 63.5583 101.169 63.2716C101.169 63.2569 100.688 62.337 100.688 62.337ZM93.9883 66.8182C93.9883 66.8182 93.5217 67.6075 93.5217 67.7568C93.5217 68.0421 93.735 68.2768 93.9963 68.2768C94.259 68.2768 94.471 68.0421 94.471 67.7568C94.471 67.7408 93.9883 66.8195 93.9883 66.8195M85.8365 71.5714C85.8365 71.5714 85.3699 72.358 85.3699 72.506C85.3699 72.7927 85.5819 73.026 85.8432 73.026C86.1059 73.026 86.3179 72.7927 86.3179 72.506C86.3179 72.4874 85.8365 71.5714 85.8365 71.5714ZM98.8309 55.6785C98.9309 55.8318 99.1829 55.8811 99.5002 55.7718L99.8015 54.9118C99.8269 54.8518 99.4535 54.5118 99.2322 54.5652C98.3789 54.7691 97.4749 54.8705 96.9723 55.6785C96.9723 56.2358 97.3723 56.7411 97.7762 56.9944C98.0762 56.8944 98.1269 57.1971 98.3282 57.3477C98.3776 57.6024 98.2269 57.8051 97.9776 57.8051C97.3736 57.1971 96.3203 58.0077 95.867 57.2464C96.067 56.4891 96.4709 55.6278 95.8163 54.9198C95.867 54.7691 96.119 54.6158 95.967 54.4652C95.7163 53.7572 94.9616 54.3132 94.5097 54.3132C93.7563 54.2105 93.1537 54.6158 92.7004 55.2225C92.751 55.4758 92.851 55.7291 93.1017 55.9825C93.3044 55.9318 93.4044 55.9824 93.455 56.1851L92.9524 56.4891C93.1017 56.6411 93.1017 56.8424 93.1524 57.0451C92.8004 57.1971 92.4497 56.6918 92.299 56.4384C92.299 56.0331 92.3497 55.3251 91.7951 55.2225C91.6964 55.2225 91.3604 55.3705 91.3604 55.3705C91.2377 55.5251 91.1551 55.8398 91.1551 56.2078C91.1551 56.5678 91.3524 57.1131 91.3524 57.1131C91.3524 57.1131 92.9017 58.2611 93.2537 58.9677C92.8004 59.8784 92.8004 61.1437 91.7471 61.649C91.4444 61.8503 91.4444 62.1556 91.4444 62.4596L91.6964 62.6623C92.3497 62.3076 93.6043 62.2063 93.5057 61.0943C93.7577 60.6383 94.007 60.1317 94.459 59.7784C94.6861 59.7285 94.9234 59.7561 95.1329 59.8569C95.3424 59.9577 95.5122 60.1258 95.615 60.3343C95.4643 61.0943 94.9616 61.5996 94.259 61.8503C94.1577 61.953 94.2083 62.1036 94.2083 62.257C94.4097 62.6116 94.9616 62.4596 95.263 62.409C96.1189 61.8503 96.4709 60.8397 97.2229 60.537C97.3229 61.0437 96.2176 61.1943 96.9216 61.6996C97.3736 61.5996 97.9776 61.7503 98.2789 61.1436C97.9256 60.2837 99.4829 59.8783 98.5296 59.1197C98.5296 58.3611 99.3322 58.0584 99.2815 57.2464C98.9802 56.4384 98.0269 56.4384 97.7762 55.6785C98.0762 55.4758 98.5296 55.5265 98.8309 55.6785ZM62.1331 64.8862C62.6838 64.8862 63.1304 64.4929 63.1304 64.0089C63.1304 63.5249 62.6838 63.1316 62.1331 63.1316C61.5825 63.1316 61.1358 63.5249 61.1358 64.0089C61.1358 64.4929 61.5825 64.8862 62.1331 64.8862ZM10.3384 95.1468C10.4649 95.1496 10.5908 95.1274 10.7087 95.0814C10.8266 95.0355 10.9342 94.9666 11.0254 94.8789C11.1166 94.7912 11.1896 94.6863 11.2401 94.5702C11.2906 94.4542 11.3177 94.3294 11.3197 94.2028C11.3197 93.6855 10.8797 93.2628 10.3384 93.2628C9.79444 93.2628 9.35712 93.6855 9.35712 94.2028C9.35919 94.3294 9.38627 94.4542 9.43678 94.5702C9.48729 94.6863 9.56025 94.7912 9.65145 94.8789C9.74264 94.9666 9.85029 95.0355 9.96819 95.0814C10.0861 95.1274 10.2119 95.1496 10.3384 95.1468ZM43.1643 102.401C43.2056 102.401 43.2229 102.396 43.2229 102.361C43.222 102.336 43.2096 102.323 43.1856 102.323C43.1656 102.323 43.1656 102.328 43.1643 102.336V102.401ZM43.3016 102.492H43.2376L43.1736 102.412H43.1643V102.461C43.1643 102.485 43.1723 102.485 43.1909 102.488V102.492H43.0856V102.487C43.1069 102.485 43.1123 102.485 43.1123 102.46V102.347C43.1123 102.323 43.1043 102.323 43.0856 102.32V102.316H43.1856C43.2083 102.316 43.2763 102.319 43.2763 102.363C43.2763 102.393 43.2443 102.401 43.2283 102.407L43.2896 102.483C43.2949 102.486 43.2994 102.488 43.3029 102.487L43.3016 102.492ZM43.4403 102.368C43.4349 102.349 43.4163 102.317 43.3789 102.317C43.3616 102.317 43.3456 102.328 43.3456 102.344C43.3456 102.357 43.3523 102.365 43.3776 102.375L43.4229 102.393C43.4349 102.399 43.4589 102.415 43.4589 102.443C43.4589 102.467 43.4389 102.497 43.3789 102.497C43.3523 102.497 43.3363 102.489 43.3269 102.489C43.3216 102.49 43.3185 102.493 43.3176 102.497H43.3069V102.432H43.3176C43.3256 102.459 43.3416 102.489 43.3829 102.489C43.4189 102.489 43.4229 102.463 43.4229 102.459C43.4229 102.443 43.4056 102.435 43.3856 102.427L43.3643 102.42C43.3109 102.396 43.3109 102.375 43.3109 102.363C43.3109 102.347 43.3216 102.309 43.3803 102.309C43.4069 102.309 43.4203 102.32 43.4296 102.32C43.4367 102.319 43.4403 102.316 43.4403 102.311H43.4496V102.368H43.4403ZM43.7723 102.32C43.7625 102.323 43.7554 102.329 43.7509 102.339L43.6883 102.499H43.6789L43.6269 102.373H43.6256L43.5656 102.497H43.5589L43.4923 102.339C43.4856 102.325 43.4816 102.323 43.4696 102.32V102.316H43.5629V102.32C43.5509 102.323 43.5416 102.323 43.5416 102.333L43.5443 102.341L43.5816 102.437H43.5829L43.6203 102.357L43.6083 102.331C43.6074 102.325 43.5998 102.322 43.5856 102.32V102.316H43.6856V102.32C43.6705 102.321 43.6625 102.324 43.6616 102.331L43.6656 102.347L43.6989 102.435L43.7349 102.344L43.7363 102.333C43.7363 102.323 43.7243 102.323 43.7149 102.32V102.316H43.7723V102.32ZM43.8549 102.415C43.8589 102.415 43.8683 102.415 43.8683 102.412L43.8709 102.388C43.8709 102.336 43.8656 102.317 43.8456 102.317C43.8256 102.317 43.8269 102.336 43.8269 102.357C43.826 102.395 43.8354 102.414 43.8549 102.415ZM43.7803 102.489C43.8123 102.484 43.8496 102.472 43.8656 102.423L43.8523 102.424C43.846 102.427 43.8411 102.428 43.8376 102.427C43.8149 102.427 43.7803 102.417 43.7803 102.369C43.7803 102.356 43.7909 102.311 43.8483 102.311C43.8749 102.311 43.9203 102.328 43.9203 102.391C43.9203 102.437 43.8749 102.489 43.7803 102.497V102.489ZM43.9629 102.371C43.9878 102.37 44.01 102.374 44.0296 102.384C44.0392 102.388 44.0475 102.394 44.0534 102.403C44.0593 102.412 44.0626 102.422 44.0629 102.432C44.0629 102.467 44.0296 102.495 43.9723 102.495C43.9483 102.495 43.9283 102.487 43.9283 102.472C43.9283 102.463 43.9345 102.458 43.9469 102.456C43.9683 102.456 43.9869 102.48 44.0069 102.48C44.0176 102.48 44.0389 102.475 44.0389 102.451C44.0389 102.435 44.0203 102.423 44.0043 102.417C43.9829 102.409 43.9607 102.406 43.9376 102.407L43.9683 102.316H44.0682L44.0549 102.349H43.9683L43.9629 102.371Z" fill="#FAFAFA"/>
24
+ <path id="Vector_22" d="M103.175 59.5636C102.981 61.6942 102.259 63.4702 100.783 64.4755L86.8898 73.3086H86.8138C86.5098 73.5507 86.1332 73.6836 85.7445 73.6859C85.3285 73.6859 84.9539 73.5353 84.6566 73.2926L70.7849 64.4755C69.3116 63.4702 68.5863 61.6942 68.393 59.5636V32.0123H103.175V59.5636ZM104.215 31.0203V31.0003H67.3543V31.0203H67.349L67.3783 59.1863C67.3783 62.0595 68.5943 64.5715 70.2756 65.3448L84.4486 74.3446C84.5995 74.5154 84.7829 74.6546 84.9882 74.7539C85.1934 74.8533 85.4163 74.9108 85.644 74.9232C85.8716 74.9356 86.0995 74.9027 86.3143 74.8262C86.5291 74.7498 86.7265 74.6314 86.8952 74.4779L101.291 65.3448C102.973 64.5715 104.189 62.0582 104.189 59.185L104.217 31.0203H104.215Z" fill="#FAFAFA"/>
25
+ <path id="Vector_23" d="M90.7457 72.074L91.1937 71.858C91.0071 71.9246 90.8671 71.998 90.7457 72.074ZM59.4332 108.828L58.0986 106.77L57.3412 109.073L59.4332 108.828ZM62.9438 110.573L59.4705 110.977L59.4452 110.75C60.1052 110.63 60.2985 110.598 60.2625 110.302C60.2358 110.057 59.8158 109.432 59.6318 109.161L57.2226 109.442C56.9959 110.125 56.8653 110.513 56.8839 110.656C56.9213 110.997 57.4399 110.966 57.8066 110.94L57.8332 111.166L55.6573 111.417L55.6306 111.193C56.2013 111.054 56.3159 110.732 56.5613 110.02L58.3732 104.818L58.6745 104.781L61.6051 109.234C62.1998 110.141 62.4051 110.426 62.9184 110.349L62.9438 110.573Z" fill="#FAFAFA"/>
26
+ <path id="Vector_24" d="M122.608 99.3973C122.133 100.357 121.392 101.051 120.334 101.208C120.386 99.9293 121.55 99.024 121.128 97.5867C120.438 96.5734 119.064 96.256 117.794 96.52C117.32 96.8413 117.532 97.3733 117.372 97.8533L117.161 99.6106C116.101 99.6106 116.049 98.652 115.733 97.908C115.785 96.788 116.261 95.6707 117.372 95.1374C118.217 94.7107 119.593 94.7641 120.438 95.2441C121.128 95.4027 121.921 95.724 122.184 96.364C122.978 97.108 122.766 98.4386 122.608 99.3973ZM118.324 99.9306C118.906 99.3439 118.166 95.9867 119.805 98.172C119.805 98.5986 119.858 99.2373 119.433 99.5586C119.169 99.7719 118.746 100.196 118.324 99.9293M118.906 101.263C118.958 102.111 118.166 101.9 117.742 102.22H116.473C116.209 101.793 116.316 101.155 116.316 100.728C117.161 100.888 118.113 100.888 118.906 101.261M120.386 107.757C119.964 108.29 120.333 109.141 119.805 109.622C119.805 110.581 119.01 111.06 118.324 111.432C112.031 112.818 105.844 110.688 99.7615 109.622C91.2457 107.757 81.3046 107.224 72.6289 109.196C68.6019 109.942 64.6138 110.884 60.6785 112.018C58.2452 112.338 55.6013 112.712 53.2747 111.965C51.3721 111.06 52.1627 108.609 51.5814 106.906C51.6867 105.573 51.2121 104.508 51.1587 103.229C51.0014 102.805 50.8947 102.271 50.9481 101.844C51.7387 101.951 52.5347 102.537 53.38 102.751C57.8239 103.601 61.7891 102.164 65.913 101.42C69.8809 100.567 73.9528 99.8733 78.1314 99.5546C82.8913 99.5026 87.7565 99.2346 92.3044 100.035C93.7843 100.088 95.055 100.461 96.4803 100.568C99.4442 100.941 102.195 101.74 105.208 101.951C105.684 102.111 106.265 102.111 106.795 102.219C111.555 102.964 116.896 104.294 121.444 102.219C121.444 104.136 120.652 105.893 120.386 107.757ZM93.5203 111.645C93.7843 112.392 94.2617 113.084 93.9963 113.989C93.4683 115.002 92.4097 115.002 91.4591 115.213C90.9817 115.268 90.6111 115.109 90.2431 114.841C90.2951 114.628 90.1884 114.468 90.0311 114.31C90.1884 113.617 88.8138 112.924 89.7658 112.338C90.6111 111.538 92.6217 109.729 93.5217 111.645M94.6843 111.858C95.3203 112.018 95.3723 112.712 95.4256 113.242C95.3723 114.414 94.739 115.426 93.6283 115.854C93.0457 116.174 92.1484 116.281 91.5644 116.068C92.835 116.013 94.2097 115.534 94.7376 114.254L94.6843 111.858ZM96.0603 118.942C95.9536 118.997 95.9536 119.103 95.9536 119.155C94.4203 119.21 93.4163 118.305 92.2537 117.505L92.199 117.238C93.6283 117.345 94.791 118.251 96.0616 118.942M94.1043 123.846C94.051 124.006 93.7843 124.006 93.6803 123.898C92.0937 121.874 91.3524 119.745 90.3471 117.507L90.5604 117.455C91.8284 119.531 92.8337 121.822 94.1043 123.846ZM91.4591 122.567L91.1924 122.674C90.9297 122.461 91.0351 121.874 91.0884 121.554C91.4044 121.822 91.6711 122.194 91.4591 122.567ZM89.9778 119.371C90.0311 119.903 90.5591 120.118 90.2431 120.595C90.1364 120.385 89.8191 119.902 89.9764 119.371M89.6604 116.016V115.856H89.7644V116.016H89.6604ZM86.5925 123.687C85.5872 123.739 84.0539 124.325 83.1006 123.474C83.1539 123.047 82.6793 122.835 82.7313 122.407C83.5766 122.087 84.3166 123.101 85.1112 122.354C86.3272 122.407 87.5965 122.194 88.8125 122.461C89.3951 122.622 90.2924 121.502 90.3991 122.622C89.9764 124.379 87.8605 123.153 86.5925 123.687ZM84.2646 117.349L84.5286 116.922C84.1046 118.201 83.4699 119.531 82.7819 120.758C82.466 119.478 83.7886 118.465 84.2646 117.349ZM85.7445 116.336C86.4325 115.592 87.0672 116.762 87.3325 117.349C88.1258 118.518 90.1871 119.586 89.3951 121.182C88.3885 122.089 86.8018 121.235 85.6925 121.929C85.1112 121.875 84.1046 122.035 83.7886 121.45C84.3699 119.743 84.9006 117.827 85.7445 116.336ZM85.5872 114.313H85.3765L85.6925 113.993C85.8512 114.1 85.6392 114.206 85.5872 114.313ZM86.8018 114.417C87.0138 114.098 87.2778 113.62 87.6485 113.62C87.6485 113.673 87.7018 113.726 87.7552 113.781C87.4365 114.048 87.1738 114.313 86.8018 114.417ZM87.5432 115.217C87.6498 115.112 87.9138 115.112 88.0205 115.217H87.5432ZM88.9698 116.87C88.9178 116.974 89.0231 117.136 88.8645 117.242L87.6485 116.284C88.2311 116.177 88.6551 116.444 88.9711 116.87M88.8658 113.62V113.781H88.8125V113.62H88.8658ZM91.0884 110.317C90.4538 110.53 89.9778 111.277 89.3431 111.434C89.6618 110.848 90.4538 110.262 91.0897 110.317M88.4445 109.624C88.3378 109.144 88.9205 109.517 89.1325 109.304L90.7724 109.41C89.9244 109.304 88.8671 111.277 88.4445 109.624ZM84.5846 111.114C84.8486 110.369 84.9032 109.732 85.3792 109.144C85.9059 109.144 86.3819 109.144 86.8058 109.357C86.9112 110.424 88.2325 111.862 86.8058 112.768C86.3299 112.981 85.6405 113.458 85.1126 112.981C84.4259 112.394 84.3192 111.861 84.5859 111.114M83.7926 114.417C83.7393 114.205 83.8979 113.937 83.9526 113.672C84.2152 113.405 84.4806 113.885 84.5872 114.046C84.5065 114.18 84.3879 114.287 84.2463 114.353C84.1048 114.419 83.9469 114.441 83.7926 114.417ZM83.7393 111.969H83.6859V111.382H83.7393V111.969ZM83.1059 110.369C82.418 110.21 82.046 109.412 81.3087 109.412C81.942 109.198 82.5753 109.25 83.3166 109.357C83.5819 109.732 83.1566 110.052 83.1059 110.37M82.5219 114.686C82.6819 113.993 82.9993 113.086 83.3686 112.449C83.3153 113.142 82.9993 114.1 82.5219 114.686ZM81.3606 114.686C80.4607 114.58 79.614 114.313 78.822 114.048C78.2914 113.514 78.822 112.928 78.822 112.342C79.562 111.17 81.6753 110.585 82.6833 111.649C82.5233 112.822 82.1006 113.836 81.3606 114.686ZM81.8353 116.124V116.337H81.7286V116.07H81.942C81.8886 116.07 81.782 116.07 81.7286 116.124H81.8353ZM80.5153 119.214C79.7665 120.94 78.8996 122.613 77.9207 124.219C77.8167 124.486 77.3914 124.539 77.0768 124.594C77.0768 123.847 77.8167 123.261 78.1341 122.623C79.2434 121.183 79.5607 119.639 80.83 118.257C81.1473 118.574 80.514 118.787 80.514 119.214M75.4875 118.681C76.7581 118.147 78.0781 117.03 79.5074 117.509C78.5021 118.309 76.8621 118.626 75.4875 118.681ZM77.3901 115.006C77.1274 113.142 77.8701 111.542 79.086 110.212C79.8247 110.053 80.6713 109.892 81.3593 110.318C79.9834 110.692 78.2381 111.009 77.9194 112.769C77.9727 113.46 77.7621 113.836 78.0794 114.418C78.662 115.432 79.9833 115.006 80.7233 115.804C80.7233 116.07 80.5127 116.39 80.2473 116.444C79.3474 115.91 78.2381 115.7 77.3901 115.006ZM52.5867 97.9067C52.7467 97.48 52.5867 96.8413 53.168 96.7347C53.5387 96.628 54.1213 96.628 54.1733 97.0547C54.12 97.6933 54.068 98.3306 53.9093 98.92C53.168 98.972 52.7987 98.544 52.5867 97.9067ZM52.7467 99.6959C53.5387 100.279 54.648 100.013 55.6013 100.175C55.76 100.761 55.76 101.505 55.3373 101.984C54.4387 101.771 53.2747 101.877 52.7987 101.027C52.9054 100.653 52.6387 100.12 52.7454 99.6959M50.2601 98.172C50.4174 97.2133 50.6281 96.2014 51.5267 95.508C52.7974 94.8147 54.5427 94.9774 55.7066 95.6694C56.0759 95.88 56.3413 96.2014 56.5546 96.68C56.8173 97.5867 56.3933 98.544 55.7586 99.0786H55.2306C55.2306 98.2253 55.2306 97.372 55.5466 96.68C55.4946 96.04 54.9653 95.9867 54.5427 95.7214C53.6427 95.456 52.8494 95.8814 52.1614 96.2547C51.6334 96.8947 51.1574 97.6933 51.4761 98.5986C51.8454 99.1853 51.5267 99.9826 51.7374 100.623L51.5787 100.836C50.9467 100.143 50.0988 99.3959 50.2588 98.172M99.8802 120.811C101.144 121.385 103.688 121.939 105.52 122.149C105.356 122.871 104.067 122.193 104.216 123.21C102.576 122.573 100.673 122.253 99.4562 120.974C99.5629 120.919 99.6695 120.761 99.8802 120.813M66.8623 121.666L66.1237 120.973C66.493 120.493 67.2863 120.759 67.8677 120.439C69.2423 120.011 70.8302 119.479 72.3635 119.799C70.7769 121.079 68.7143 121.238 66.8623 121.666ZM123.981 97.3733C123.346 95.7227 122.024 94.6054 120.384 94.0721C118.692 93.6988 116.893 93.9654 115.782 95.2441C113.88 96.788 115.201 99.3453 115.254 101.424C115.254 101.848 115.306 102.168 114.882 102.381C107.216 101.688 100.076 99.7719 92.459 98.9733C90.7084 98.6706 88.9538 98.7493 87.2898 98.3973L85.1619 98.1733C78.5514 98.3866 71.9409 98.76 65.753 100.359C64.4317 100.783 62.9491 100.889 61.6278 101.369C60.6758 101.209 59.8825 101.903 58.9839 101.636L57.2426 102.043C57.0468 102.071 56.8472 102.06 56.6559 102.009C55.8093 99.8239 58.3492 98.4933 57.5559 96.364C56.8679 95.1374 55.4933 93.9641 53.9067 94.1787C52.108 93.9654 50.5228 94.9787 49.6748 96.364C48.4601 99.0253 49.9934 101.796 50.4681 104.404C50.3614 105.257 51.3161 106.214 50.4681 106.91C48.7748 105.736 46.5549 105.097 44.4922 105.684C43.8576 106.004 42.6949 105.577 42.3776 106.324C44.6522 107.548 47.5602 107.39 50.0974 107.284C50.4161 107.176 50.6268 107.121 50.8921 107.334C51.1041 108.721 50.6268 110.585 51.4747 111.809C52.4254 113.088 54.012 113.408 55.5453 113.566C60.4118 113.406 64.7477 111.97 69.1903 110.85C69.8783 110.797 70.4063 110.425 71.1476 110.425C73.5262 109.892 76.1194 109.468 78.6567 109.412C77.5461 110.85 76.9128 112.449 76.4354 114.206C75.8008 115.645 77.5461 115.858 78.0754 116.657C76.4354 117.137 75.2728 118.257 73.7382 118.894C70.3529 118.787 67.4983 120.066 64.3251 120.438C64.2717 121.131 65.4357 120.918 65.541 121.611C65.3824 122.09 64.9077 122.142 64.5371 122.41C64.4837 122.727 64.5371 122.783 64.8531 122.837C65.1717 122.462 65.8584 122.727 66.1757 122.355C67.233 122.355 68.133 122.038 69.137 121.982C70.0383 121.61 71.0409 121.555 71.8356 120.918C72.9449 120.598 73.6342 119.851 74.7435 119.531C76.3301 119.531 77.7567 119.001 79.238 118.894V119.214C78.0247 121.183 76.7581 123.207 75.4861 125.07C75.2755 125.445 75.5395 125.817 75.8555 125.923C76.5981 126.137 77.3354 125.923 77.9181 125.603C79.03 123.687 80.034 121.874 80.934 119.903C81.306 118.094 82.6273 117.136 83.9486 115.909C84.1606 115.802 84.4779 115.484 84.6886 115.802C83.6299 117.029 82.9433 118.201 82.1513 119.531C81.7273 121.023 81.6206 122.939 82.9433 124.166C83.5793 124.699 84.5299 124.539 85.3779 124.593C87.4392 123.529 90.0844 125.231 91.6711 123.207C92.6217 123.047 92.779 124.167 93.3083 124.701C94.2083 124.966 95.159 125.87 96.0589 125.231C96.0056 124.645 95.371 124.111 95.055 123.581C94.419 122.461 93.6283 121.554 93.0444 120.543C92.779 119.799 92.3057 119.317 92.1977 118.573C93.151 118.893 93.9963 119.531 95.055 119.693C95.9536 120.063 97.0642 120.01 97.9109 120.543C98.5989 121.45 99.6549 121.982 100.555 122.567C101.875 123.207 103.357 123.314 104.732 123.846C105.261 123.898 106.056 124.326 106.425 123.846C106.212 123.579 105.948 123.422 105.632 123.259C105.472 122.567 106.584 122.939 106.955 122.409C106.824 122.146 106.593 122.041 106.34 122.005C105.581 121.598 103.699 121.458 103.199 121.182C102.564 121.078 101.981 120.809 101.348 120.595C98.1749 120.595 96.4296 117.721 93.891 116.656C94.4723 116.122 95.371 115.698 95.743 114.898C96.2176 114.152 96.3776 112.928 95.9016 112.076C95.4243 110.425 93.3083 110.636 92.0937 109.732L92.2524 109.57C94.3137 109.466 96.1136 109.944 97.9642 110.317C103.04 111.008 107.747 112.928 113.037 113.034C115.944 113.034 119.593 113.193 121.021 110.37C121.285 108.718 121.604 107.068 121.868 105.417C122.502 102.753 124.246 100.303 123.982 97.372" fill="#FAFAFA"/>
27
+ </g>
28
+ <defs>
29
+ <clipPath id="clip0_332_3">
30
+ <rect width="519.73" height="126.01" fill="white"/>
31
+ </clipPath>
32
+ </defs>
33
+ </svg>