mediacube-ui-v2 0.0.36 → 0.0.38

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 (626) hide show
  1. package/dist/mediacube-ui-v2.umd.cjs +7 -0
  2. package/dist/src/App.vue.d.ts +3 -0
  3. package/dist/{types/src → src}/App.vue.d.ts.map +1 -1
  4. package/dist/src/App.vue.js +54 -0
  5. package/dist/src/assets/tokens/json/animations.json +6 -0
  6. package/dist/src/assets/tokens/json/border-radius.json +24 -0
  7. package/dist/src/assets/tokens/json/box-shadows.json +24 -0
  8. package/dist/src/assets/tokens/json/colors.json +71 -0
  9. package/dist/src/assets/tokens/json/durations.json +10 -0
  10. package/dist/src/assets/tokens/json/easings.json +3 -0
  11. package/dist/src/assets/tokens/json/font-families.json +4 -0
  12. package/dist/src/assets/tokens/json/font-sizes.json +18 -0
  13. package/dist/src/assets/tokens/json/font-weights.json +12 -0
  14. package/dist/src/assets/tokens/json/gradients.json +13 -0
  15. package/dist/src/assets/tokens/json/index.d.ts +19 -0
  16. package/dist/src/assets/tokens/json/index.d.ts.map +1 -0
  17. package/dist/src/assets/tokens/json/index.js +18 -0
  18. package/dist/src/assets/tokens/json/letter-spacings.json +4 -0
  19. package/dist/src/assets/tokens/json/line-heights.json +18 -0
  20. package/dist/src/assets/tokens/json/media-queries.json +26 -0
  21. package/dist/src/assets/tokens/json/opacities.json +5 -0
  22. package/dist/src/assets/tokens/json/sizes.json +42 -0
  23. package/dist/src/assets/tokens/json/spacings.json +34 -0
  24. package/dist/src/assets/tokens/json/z-indexes.json +12 -0
  25. package/dist/{types/src → src}/components/elements/McAvatar/McAvatar.vue.d.ts +5 -5
  26. package/dist/src/components/elements/McAvatar/McAvatar.vue.d.ts.map +1 -0
  27. package/dist/src/components/elements/McAvatar/McAvatar.vue.js +412 -0
  28. package/dist/{types/src → src}/components/elements/McBadge/McBadge.vue.d.ts +3 -3
  29. package/dist/src/components/elements/McBadge/McBadge.vue.d.ts.map +1 -0
  30. package/dist/src/components/elements/McBadge/McBadge.vue.js +188 -0
  31. package/dist/src/components/elements/McBottomLoader/McBottomLoader.vue.d.ts +15 -0
  32. package/dist/src/components/elements/McBottomLoader/McBottomLoader.vue.d.ts.map +1 -0
  33. package/dist/src/components/elements/McBottomLoader/McBottomLoader.vue.js +83 -0
  34. package/dist/{types/src → src}/components/elements/McButton/McButton.vue.d.ts +10 -9
  35. package/dist/src/components/elements/McButton/McButton.vue.d.ts.map +1 -0
  36. package/dist/src/components/elements/McButton/McButton.vue.js +1037 -0
  37. package/dist/{types/src → src}/components/elements/McChip/McChip.vue.d.ts +7 -6
  38. package/dist/src/components/elements/McChip/McChip.vue.d.ts.map +1 -0
  39. package/dist/src/components/elements/McChip/McChip.vue.js +326 -0
  40. package/dist/src/components/elements/McCropper/McCropper.vue.d.ts +30 -0
  41. package/dist/src/components/elements/McCropper/McCropper.vue.d.ts.map +1 -0
  42. package/dist/src/components/elements/McCropper/McCropper.vue.js +155 -0
  43. package/dist/{types/src → src}/components/elements/McDatepicker/McDatepicker.vue.d.ts +2 -1
  44. package/dist/src/components/elements/McDatepicker/McDatepicker.vue.d.ts.map +1 -0
  45. package/dist/src/components/elements/McDatepicker/McDatepicker.vue.js +1251 -0
  46. package/dist/{types/src → src}/components/elements/McDraggable/McDraggable.vue.d.ts +4 -4
  47. package/dist/src/components/elements/McDraggable/McDraggable.vue.d.ts.map +1 -0
  48. package/dist/src/components/elements/McDraggable/McDraggable.vue.js +280 -0
  49. package/dist/{types/src → src}/components/elements/McFieldCheckbox/McFieldCheckbox.vue.d.ts +1 -1
  50. package/dist/src/components/elements/McFieldCheckbox/McFieldCheckbox.vue.d.ts.map +1 -0
  51. package/dist/src/components/elements/McFieldCheckbox/McFieldCheckbox.vue.js +541 -0
  52. package/dist/{types/src → src}/components/elements/McFieldRadio/McFieldRadio.vue.d.ts +8 -8
  53. package/dist/src/components/elements/McFieldRadio/McFieldRadio.vue.d.ts.map +1 -0
  54. package/dist/src/components/elements/McFieldRadio/McFieldRadio.vue.js +488 -0
  55. package/dist/{types/src → src}/components/elements/McFieldRadioGroup/McFieldRadioGroup.vue.d.ts +1 -1
  56. package/dist/src/components/elements/McFieldRadioGroup/McFieldRadioGroup.vue.d.ts.map +1 -0
  57. package/dist/src/components/elements/McFieldRadioGroup/McFieldRadioGroup.vue.js +470 -0
  58. package/dist/{types/src → src}/components/elements/McFieldRange/McFieldRange.vue.d.ts +6 -6
  59. package/dist/src/components/elements/McFieldRange/McFieldRange.vue.d.ts.map +1 -0
  60. package/dist/src/components/elements/McFieldRange/McFieldRange.vue.js +547 -0
  61. package/dist/{types/src → src}/components/elements/McFieldSelect/McFieldSelect.vue.d.ts +9 -8
  62. package/dist/src/components/elements/McFieldSelect/McFieldSelect.vue.d.ts.map +1 -0
  63. package/dist/src/components/elements/McFieldSelect/McFieldSelect.vue.js +1436 -0
  64. package/dist/{types/src → src}/components/elements/McFieldText/McFieldText.vue.d.ts +9 -9
  65. package/dist/src/components/elements/McFieldText/McFieldText.vue.d.ts.map +1 -0
  66. package/dist/src/components/elements/McFieldText/McFieldText.vue.js +1401 -0
  67. package/dist/{types/src → src}/components/elements/McFieldToggle/McFieldToggle.vue.d.ts +6 -6
  68. package/dist/src/components/elements/McFieldToggle/McFieldToggle.vue.d.ts.map +1 -0
  69. package/dist/src/components/elements/McFieldToggle/McFieldToggle.vue.js +408 -0
  70. package/dist/{types/src → src}/components/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.d.ts +4 -4
  71. package/dist/src/components/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.d.ts.map +1 -0
  72. package/dist/src/components/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.js +192 -0
  73. package/dist/{types/src → src}/components/elements/McNodata/McNoData.vue.d.ts +5 -5
  74. package/dist/src/components/elements/McNodata/McNoData.vue.d.ts.map +1 -0
  75. package/dist/src/components/elements/McNodata/McNoData.vue.js +316 -0
  76. package/dist/{types/src → src}/components/elements/McNotification/McNotification.vue.d.ts +5 -5
  77. package/dist/src/components/elements/McNotification/McNotification.vue.d.ts.map +1 -0
  78. package/dist/src/components/elements/McNotification/McNotification.vue.js +364 -0
  79. package/dist/{types/src → src}/components/elements/McProgress/McProgress.vue.d.ts +5 -5
  80. package/dist/src/components/elements/McProgress/McProgress.vue.d.ts.map +1 -0
  81. package/dist/src/components/elements/McProgress/McProgress.vue.js +361 -0
  82. package/dist/{types/src → src}/components/elements/McSeparator/McSeparator.vue.d.ts +4 -4
  83. package/dist/src/components/elements/McSeparator/McSeparator.vue.d.ts.map +1 -0
  84. package/dist/src/components/elements/McSeparator/McSeparator.vue.js +325 -0
  85. package/dist/{types/src → src}/components/elements/McSlideUpDown/McSlideUpDown.vue.d.ts +5 -5
  86. package/dist/src/components/elements/McSlideUpDown/McSlideUpDown.vue.d.ts.map +1 -0
  87. package/dist/src/components/elements/McSlideUpDown/McSlideUpDown.vue.js +271 -0
  88. package/dist/{types/src → src}/components/elements/McStack/McStack.vue.d.ts +4 -4
  89. package/dist/src/components/elements/McStack/McStack.vue.d.ts.map +1 -0
  90. package/dist/src/components/elements/McStack/McStack.vue.js +180 -0
  91. package/dist/{types/src → src}/components/elements/McSvgIcon/McSvgIcon.vue.d.ts +9 -9
  92. package/dist/src/components/elements/McSvgIcon/McSvgIcon.vue.d.ts.map +1 -0
  93. package/dist/src/components/elements/McSvgIcon/McSvgIcon.vue.js +286 -0
  94. package/dist/{types/src → src}/components/elements/McTitle/McTitle.vue.d.ts +7 -7
  95. package/dist/src/components/elements/McTitle/McTitle.vue.d.ts.map +1 -0
  96. package/dist/src/components/elements/McTitle/McTitle.vue.js +466 -0
  97. package/dist/{types/src → src}/components/elements/McTooltip/McTooltip.vue.d.ts +6 -6
  98. package/dist/src/components/elements/McTooltip/McTooltip.vue.d.ts.map +1 -0
  99. package/dist/src/components/elements/McTooltip/McTooltip.vue.js +246 -0
  100. package/dist/src/components/index.d.ts.map +1 -0
  101. package/dist/src/components/index.js +69 -0
  102. package/dist/{types/src → src}/components/patterns/McAccordion/McAccordion.vue.d.ts +4 -4
  103. package/dist/src/components/patterns/McAccordion/McAccordion.vue.d.ts.map +1 -0
  104. package/dist/src/components/patterns/McAccordion/McAccordion.vue.js +120 -0
  105. package/dist/{types/src → src}/components/patterns/McCell/McCell.vue.d.ts +6 -6
  106. package/dist/src/components/patterns/McCell/McCell.vue.d.ts.map +1 -0
  107. package/dist/src/components/patterns/McCell/McCell.vue.js +197 -0
  108. package/dist/{types/src → src}/components/patterns/McCollapse/McCollapse.vue.d.ts +6 -6
  109. package/dist/src/components/patterns/McCollapse/McCollapse.vue.d.ts.map +1 -0
  110. package/dist/src/components/patterns/McCollapse/McCollapse.vue.js +314 -0
  111. package/dist/{types/src → src}/components/patterns/McDropdown/McDropdown.vue.d.ts +7 -7
  112. package/dist/src/components/patterns/McDropdown/McDropdown.vue.d.ts.map +1 -0
  113. package/dist/src/components/patterns/McDropdown/McDropdown.vue.js +366 -0
  114. package/dist/src/components/patterns/McDropdown/McDropdownPanel.vue.d.ts +23 -0
  115. package/dist/src/components/patterns/McDropdown/McDropdownPanel.vue.d.ts.map +1 -0
  116. package/dist/src/components/patterns/McDropdown/McDropdownPanel.vue.js +83 -0
  117. package/dist/{types/src → src}/components/patterns/McFilter/McFilter.vue.d.ts +6 -6
  118. package/dist/src/components/patterns/McFilter/McFilter.vue.d.ts.map +1 -0
  119. package/dist/src/components/patterns/McFilter/McFilter.vue.js +1056 -0
  120. package/dist/{types/src → src}/components/patterns/McFilter/McFilterChip/McFilterChip.vue.d.ts +6 -6
  121. package/dist/src/components/patterns/McFilter/McFilterChip/McFilterChip.vue.d.ts.map +1 -0
  122. package/dist/src/components/patterns/McFilter/McFilterChip/McFilterChip.vue.js +210 -0
  123. package/dist/{types/src → src}/components/patterns/McFilter/McFilterTags/McFilterTags.vue.d.ts +6 -6
  124. package/dist/src/components/patterns/McFilter/McFilterTags/McFilterTags.vue.d.ts.map +1 -0
  125. package/dist/src/components/patterns/McFilter/McFilterTags/McFilterTags.vue.js +546 -0
  126. package/dist/{types/src → src}/components/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.d.ts +6 -6
  127. package/dist/src/components/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.d.ts.map +1 -0
  128. package/dist/src/components/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.js +188 -0
  129. package/dist/{types/src → src}/components/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.d.ts +6 -6
  130. package/dist/src/components/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.d.ts.map +1 -0
  131. package/dist/src/components/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.js +238 -0
  132. package/dist/{types/src → src}/components/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.d.ts +6 -6
  133. package/dist/src/components/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.d.ts.map +1 -0
  134. package/dist/src/components/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.js +356 -0
  135. package/dist/{types/src → src}/components/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.d.ts +6 -6
  136. package/dist/src/components/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.d.ts.map +1 -0
  137. package/dist/src/components/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.js +171 -0
  138. package/dist/{types/src → src}/components/patterns/McGridCol/McGridCol.vue.d.ts +4 -4
  139. package/dist/src/components/patterns/McGridCol/McGridCol.vue.d.ts.map +1 -0
  140. package/dist/src/components/patterns/McGridCol/McGridCol.vue.js +246 -0
  141. package/dist/{types/src → src}/components/patterns/McGridRow/McGridRow.vue.d.ts +5 -5
  142. package/dist/src/components/patterns/McGridRow/McGridRow.vue.d.ts.map +1 -0
  143. package/dist/src/components/patterns/McGridRow/McGridRow.vue.js +292 -0
  144. package/dist/{types/src → src}/components/patterns/McOverlay/McOverlay.vue.d.ts +4 -4
  145. package/dist/src/components/patterns/McOverlay/McOverlay.vue.d.ts.map +1 -0
  146. package/dist/src/components/patterns/McOverlay/McOverlay.vue.js +107 -0
  147. package/dist/{types/src → src}/components/patterns/McPreview/McPreview.vue.d.ts +4 -4
  148. package/dist/src/components/patterns/McPreview/McPreview.vue.d.ts.map +1 -0
  149. package/dist/src/components/patterns/McPreview/McPreview.vue.js +118 -0
  150. package/dist/{types/src → src}/components/patterns/McSideBar/McSideBar.vue.d.ts +7 -7
  151. package/dist/src/components/patterns/McSideBar/McSideBar.vue.d.ts.map +1 -0
  152. package/dist/src/components/patterns/McSideBar/McSideBar.vue.js +738 -0
  153. package/dist/{types/src → src}/components/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.d.ts +5 -5
  154. package/dist/src/components/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.d.ts.map +1 -0
  155. package/dist/src/components/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.js +204 -0
  156. package/dist/{types/src → src}/components/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.d.ts +5 -5
  157. package/dist/src/components/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.d.ts.map +1 -0
  158. package/dist/src/components/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.js +508 -0
  159. package/dist/{types/src → src}/components/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.d.ts +6 -6
  160. package/dist/src/components/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.d.ts.map +1 -0
  161. package/dist/src/components/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.js +409 -0
  162. package/dist/{types/src → src}/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.d.ts +6 -6
  163. package/dist/src/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.d.ts.map +1 -0
  164. package/dist/src/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.js +415 -0
  165. package/dist/{types/src → src}/components/patterns/McTab/McTab.vue.d.ts +5 -5
  166. package/dist/src/components/patterns/McTab/McTab.vue.d.ts.map +1 -0
  167. package/dist/src/components/patterns/McTab/McTab.vue.js +518 -0
  168. package/dist/{types/src → src}/components/patterns/McTabs/McTabs.vue.d.ts +8 -7
  169. package/dist/src/components/patterns/McTabs/McTabs.vue.d.ts.map +1 -0
  170. package/dist/src/components/patterns/McTabs/McTabs.vue.js +427 -0
  171. package/dist/{types/src → src}/components/patterns/McWrapScroll/McWrapScroll.vue.d.ts +7 -7
  172. package/dist/src/components/patterns/McWrapScroll/McWrapScroll.vue.d.ts.map +1 -0
  173. package/dist/src/components/patterns/McWrapScroll/McWrapScroll.vue.js +422 -0
  174. package/dist/{types/src → src}/components/templates/McDrawer/McDrawer.vue.d.ts +7 -7
  175. package/dist/src/components/templates/McDrawer/McDrawer.vue.d.ts.map +1 -0
  176. package/dist/src/components/templates/McDrawer/McDrawer.vue.js +304 -0
  177. package/dist/{types/src → src}/components/templates/McDrawer/McDrawerContainer.vue.d.ts +5 -5
  178. package/dist/src/components/templates/McDrawer/McDrawerContainer.vue.d.ts.map +1 -0
  179. package/dist/src/components/templates/McDrawer/McDrawerContainer.vue.js +133 -0
  180. package/dist/{types/src → src}/components/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.d.ts +4 -4
  181. package/dist/src/components/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.d.ts.map +1 -0
  182. package/dist/src/components/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.js +134 -0
  183. package/dist/{types/src → src}/components/templates/McModal/McModal.vue.d.ts +7 -7
  184. package/dist/src/components/templates/McModal/McModal.vue.d.ts.map +1 -0
  185. package/dist/src/components/templates/McModal/McModal.vue.js +664 -0
  186. package/dist/{types/src → src}/components/templates/McModal/McModalContainer.vue.d.ts +5 -5
  187. package/dist/src/components/templates/McModal/McModalContainer.vue.d.ts.map +1 -0
  188. package/dist/src/components/templates/McModal/McModalContainer.vue.js +119 -0
  189. package/dist/{types/src → src}/components/templates/McTable/McTable/McTable.vue.d.ts +7 -7
  190. package/dist/src/components/templates/McTable/McTable/McTable.vue.d.ts.map +1 -0
  191. package/dist/src/components/templates/McTable/McTable/McTable.vue.js +854 -0
  192. package/dist/{types/src → src}/components/templates/McTable/McTableCard/McTableCard.vue.d.ts +6 -6
  193. package/dist/src/components/templates/McTable/McTableCard/McTableCard.vue.d.ts.map +1 -0
  194. package/dist/src/components/templates/McTable/McTableCard/McTableCard.vue.js +339 -0
  195. package/dist/{types/src → src}/components/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.d.ts +4 -4
  196. package/dist/src/components/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.d.ts.map +1 -0
  197. package/dist/src/components/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.js +118 -0
  198. package/dist/src/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts +19 -0
  199. package/dist/src/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts.map +1 -0
  200. package/dist/src/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.js +118 -0
  201. package/dist/{types/src → src}/components/templates/McTable/McTableSort/McTableSort.vue.d.ts +6 -6
  202. package/dist/src/components/templates/McTable/McTableSort/McTableSort.vue.d.ts.map +1 -0
  203. package/dist/src/components/templates/McTable/McTableSort/McTableSort.vue.js +136 -0
  204. package/dist/{types/src → src}/components/templates/McTopBar/McTopBar.vue.d.ts +4 -4
  205. package/dist/src/components/templates/McTopBar/McTopBar.vue.d.ts.map +1 -0
  206. package/dist/src/components/templates/McTopBar/McTopBar.vue.js +305 -0
  207. package/dist/{types/src → src}/components/templates/McVirtualScroll/McVirtualScroll.vue.d.ts +4 -4
  208. package/dist/src/components/templates/McVirtualScroll/McVirtualScroll.vue.d.ts.map +1 -0
  209. package/dist/src/components/templates/McVirtualScroll/McVirtualScroll.vue.js +239 -0
  210. package/dist/src/composables/index.d.ts +8 -0
  211. package/dist/src/composables/index.d.ts.map +1 -0
  212. package/dist/{types/src/composables/index.d.ts → src/composables/index.js} +1 -2
  213. package/dist/{types/src → src}/composables/useDrawer.d.ts +1 -1
  214. package/dist/src/composables/useDrawer.d.ts.map +1 -0
  215. package/dist/src/composables/useDrawer.js +72 -0
  216. package/dist/src/composables/useEncodeDecode.d.ts.map +1 -0
  217. package/dist/src/composables/useEncodeDecode.js +25 -0
  218. package/dist/src/composables/useFieldErrors.d.ts +6 -0
  219. package/dist/src/composables/useFieldErrors.d.ts.map +1 -0
  220. package/dist/src/composables/useFieldErrors.js +20 -0
  221. package/dist/src/composables/useHelper.d.ts.map +1 -0
  222. package/dist/src/composables/useHelper.js +79 -0
  223. package/dist/src/composables/useModal.d.ts.map +1 -0
  224. package/dist/src/composables/useModal.js +71 -0
  225. package/dist/src/composables/useRandomNumber.d.ts.map +1 -0
  226. package/dist/src/composables/useRandomNumber.js +10 -0
  227. package/dist/{types/src → src}/composables/useTooltip.d.ts +1 -1
  228. package/dist/src/composables/useTooltip.d.ts.map +1 -0
  229. package/dist/src/composables/useTooltip.js +154 -0
  230. package/dist/src/consts/index.d.ts.map +1 -0
  231. package/dist/src/consts/index.js +1 -0
  232. package/dist/src/consts/table.d.ts.map +1 -0
  233. package/dist/src/consts/table.js +6 -0
  234. package/dist/src/enums/Cell.d.ts.map +1 -0
  235. package/dist/src/enums/Cell.js +6 -0
  236. package/dist/src/enums/Chip.d.ts.map +1 -0
  237. package/dist/src/enums/Chip.js +11 -0
  238. package/dist/src/enums/Datepicker.d.ts.map +1 -0
  239. package/dist/src/enums/Datepicker.js +42 -0
  240. package/dist/src/enums/Drawer.d.ts.map +1 -0
  241. package/dist/src/enums/Drawer.js +5 -0
  242. package/dist/src/enums/Dropdown.d.ts.map +1 -0
  243. package/dist/src/enums/Dropdown.js +12 -0
  244. package/dist/src/enums/Filter.d.ts.map +1 -0
  245. package/dist/src/enums/Filter.js +14 -0
  246. package/dist/src/enums/Grid.d.ts.map +1 -0
  247. package/dist/src/enums/Grid.js +24 -0
  248. package/dist/src/enums/Input.d.ts.map +1 -0
  249. package/dist/src/enums/Input.js +20 -0
  250. package/dist/src/enums/Modal.d.ts.map +1 -0
  251. package/dist/src/enums/Modal.js +5 -0
  252. package/dist/src/enums/Preview.d.ts.map +1 -0
  253. package/dist/src/enums/Preview.js +6 -0
  254. package/dist/src/enums/Radio.d.ts.map +1 -0
  255. package/dist/src/enums/Radio.js +5 -0
  256. package/dist/src/enums/RadioGroup.d.ts.map +1 -0
  257. package/dist/src/enums/RadioGroup.js +5 -0
  258. package/dist/src/enums/Select.d.ts.map +1 -0
  259. package/dist/src/enums/Select.js +11 -0
  260. package/dist/src/enums/Sidebar.d.ts.map +1 -0
  261. package/dist/src/enums/Sidebar.js +5 -0
  262. package/dist/src/enums/Tab.d.ts.map +1 -0
  263. package/dist/src/enums/Tab.js +6 -0
  264. package/dist/src/enums/Title.d.ts.map +1 -0
  265. package/dist/src/enums/Title.js +21 -0
  266. package/dist/src/enums/Tooltip.d.ts.map +1 -0
  267. package/dist/src/enums/Tooltip.js +15 -0
  268. package/dist/src/enums/index.d.ts.map +1 -0
  269. package/dist/src/enums/index.js +22 -0
  270. package/dist/src/enums/ui/Alignment.d.ts.map +1 -0
  271. package/dist/src/enums/ui/Alignment.js +6 -0
  272. package/dist/src/enums/ui/Button.d.ts.map +1 -0
  273. package/dist/src/enums/ui/Button.js +24 -0
  274. package/dist/src/enums/ui/Directions.d.ts.map +1 -0
  275. package/dist/src/enums/ui/Directions.js +5 -0
  276. package/dist/src/enums/ui/Weights.d.ts.map +1 -0
  277. package/dist/src/enums/ui/Weights.js +7 -0
  278. package/dist/{types/src → src}/index.d.ts +1 -0
  279. package/dist/src/index.d.ts.map +1 -0
  280. package/dist/src/index.js +17 -0
  281. package/dist/src/main.d.ts +3 -0
  282. package/dist/src/main.d.ts.map +1 -0
  283. package/dist/src/main.js +8 -0
  284. package/dist/src/mocks/authUser.d.ts.map +1 -0
  285. package/dist/src/mocks/authUser.js +162 -0
  286. package/dist/src/mocks/categories.d.ts.map +1 -0
  287. package/dist/src/mocks/categories.js +108 -0
  288. package/dist/{types/src → src}/mocks/filterMocks.d.ts +1 -1
  289. package/dist/src/mocks/filterMocks.d.ts.map +1 -0
  290. package/dist/src/mocks/filterMocks.js +128 -0
  291. package/dist/src/mocks/icons.json +1 -0
  292. package/dist/src/mocks/menuLangs.d.ts.map +1 -0
  293. package/dist/src/mocks/menuLangs.js +19 -0
  294. package/dist/src/mocks/selectOptions.json +111 -0
  295. package/dist/{types/src → src}/mocks/sidebar.d.ts +1 -1
  296. package/dist/src/mocks/sidebar.d.ts.map +1 -0
  297. package/dist/src/mocks/sidebar.js +125 -0
  298. package/dist/{types/src → src}/mocks/tableData.d.ts +1 -1
  299. package/dist/src/mocks/tableData.d.ts.map +1 -0
  300. package/dist/src/mocks/tableData.js +8180 -0
  301. package/dist/{types/src → src}/types/IButton.d.ts +5 -5
  302. package/dist/src/types/IButton.d.ts.map +1 -0
  303. package/dist/src/types/IButton.js +1 -0
  304. package/dist/{types/src → src}/types/ICell.d.ts +1 -1
  305. package/dist/src/types/ICell.d.ts.map +1 -0
  306. package/dist/src/types/ICell.js +1 -0
  307. package/dist/{types/src → src}/types/IChip.d.ts +2 -2
  308. package/dist/src/types/IChip.d.ts.map +1 -0
  309. package/dist/src/types/IChip.js +1 -0
  310. package/dist/src/types/ICollapse.d.ts.map +1 -0
  311. package/dist/src/types/ICollapse.js +1 -0
  312. package/dist/{types/src → src}/types/IDatepicker.d.ts +1 -1
  313. package/dist/src/types/IDatepicker.d.ts.map +1 -0
  314. package/dist/src/types/IDatepicker.js +1 -0
  315. package/dist/{types/src → src}/types/IDirections.d.ts +1 -1
  316. package/dist/src/types/IDirections.d.ts.map +1 -0
  317. package/dist/src/types/IDirections.js +1 -0
  318. package/dist/{types/src → src}/types/IDrawer.d.ts +2 -2
  319. package/dist/src/types/IDrawer.d.ts.map +1 -0
  320. package/dist/src/types/IDrawer.js +1 -0
  321. package/dist/{types/src → src}/types/IDropdown.d.ts +1 -1
  322. package/dist/src/types/IDropdown.d.ts.map +1 -0
  323. package/dist/src/types/IDropdown.js +1 -0
  324. package/dist/{types/src → src}/types/IFilter.d.ts +1 -1
  325. package/dist/src/types/IFilter.d.ts.map +1 -0
  326. package/dist/src/types/IFilter.js +1 -0
  327. package/dist/src/types/IGrid.d.ts.map +1 -0
  328. package/dist/src/types/IGrid.js +1 -0
  329. package/dist/{types/src → src}/types/IInput.d.ts +1 -1
  330. package/dist/src/types/IInput.d.ts.map +1 -0
  331. package/dist/src/types/IInput.js +1 -0
  332. package/dist/{types/src → src}/types/IModal.d.ts +2 -2
  333. package/dist/src/types/IModal.d.ts.map +1 -0
  334. package/dist/src/types/IModal.js +1 -0
  335. package/dist/{types/src → src}/types/IPreview.d.ts +1 -1
  336. package/dist/src/types/IPreview.d.ts.map +1 -0
  337. package/dist/src/types/IPreview.js +1 -0
  338. package/dist/{types/src → src}/types/IRadio.d.ts +1 -1
  339. package/dist/src/types/IRadio.d.ts.map +1 -0
  340. package/dist/src/types/IRadio.js +1 -0
  341. package/dist/{types/src → src}/types/IRadioGroup.d.ts +1 -1
  342. package/dist/src/types/IRadioGroup.d.ts.map +1 -0
  343. package/dist/src/types/IRadioGroup.js +1 -0
  344. package/dist/src/types/IRoute.d.ts.map +1 -0
  345. package/dist/src/types/IRoute.js +1 -0
  346. package/dist/{types/src → src}/types/ISelect.d.ts +1 -1
  347. package/dist/src/types/ISelect.d.ts.map +1 -0
  348. package/dist/src/types/ISelect.js +1 -0
  349. package/dist/{types/src → src}/types/ISideBar.d.ts +5 -5
  350. package/dist/src/types/ISideBar.d.ts.map +1 -0
  351. package/dist/src/types/ISideBar.js +1 -0
  352. package/dist/{types/src → src}/types/ITable.d.ts +2 -2
  353. package/dist/src/types/ITable.d.ts.map +1 -0
  354. package/dist/src/types/ITable.js +1 -0
  355. package/dist/{types/src → src}/types/ITabs.d.ts +4 -4
  356. package/dist/src/types/ITabs.d.ts.map +1 -0
  357. package/dist/src/types/ITabs.js +1 -0
  358. package/dist/{types/src → src}/types/ITitle.d.ts +1 -1
  359. package/dist/src/types/ITitle.d.ts.map +1 -0
  360. package/dist/src/types/ITitle.js +1 -0
  361. package/dist/{types/src → src}/types/ITooltip.d.ts +1 -1
  362. package/dist/src/types/ITooltip.d.ts.map +1 -0
  363. package/dist/src/types/ITooltip.js +1 -0
  364. package/dist/src/types/index.d.ts.map +1 -0
  365. package/dist/src/types/index.js +38 -0
  366. package/dist/{types/src → src}/types/styles/Alignment.d.ts +1 -1
  367. package/dist/src/types/styles/Alignment.d.ts.map +1 -0
  368. package/dist/src/types/styles/Alignment.js +1 -0
  369. package/dist/src/types/styles/AvatarSizes.d.ts.map +1 -0
  370. package/dist/src/types/styles/AvatarSizes.js +3 -0
  371. package/dist/src/types/styles/Colors.d.ts.map +1 -0
  372. package/dist/src/types/styles/Colors.js +3 -0
  373. package/dist/src/types/styles/Durations.d.ts.map +1 -0
  374. package/dist/src/types/styles/Durations.js +3 -0
  375. package/dist/src/types/styles/FontSizes.d.ts.map +1 -0
  376. package/dist/src/types/styles/FontSizes.js +3 -0
  377. package/dist/src/types/styles/FontWeights.d.ts.map +1 -0
  378. package/dist/src/types/styles/FontWeights.js +3 -0
  379. package/dist/{types/src → src}/types/styles/Grid.d.ts +1 -1
  380. package/dist/src/types/styles/Grid.d.ts.map +1 -0
  381. package/dist/src/types/styles/Grid.js +1 -0
  382. package/dist/{types/src → src}/types/styles/Icons.d.ts.map +1 -1
  383. package/dist/src/types/styles/Icons.js +2 -0
  384. package/dist/src/types/styles/LineHeights.d.ts.map +1 -0
  385. package/dist/src/types/styles/LineHeights.js +3 -0
  386. package/dist/src/types/styles/MediaQueries.d.ts.map +1 -0
  387. package/dist/src/types/styles/MediaQueries.js +3 -0
  388. package/dist/src/types/styles/Radiuses.d.ts.map +1 -0
  389. package/dist/src/types/styles/Radiuses.js +3 -0
  390. package/dist/src/types/styles/Sizes.d.ts.map +1 -0
  391. package/dist/src/types/styles/Sizes.js +3 -0
  392. package/dist/src/types/styles/Spaces.d.ts.map +1 -0
  393. package/dist/src/types/styles/Spaces.js +3 -0
  394. package/dist/src/types/styles/Weights.d.ts +3 -0
  395. package/dist/src/types/styles/Weights.d.ts.map +1 -0
  396. package/dist/src/types/styles/Weights.js +1 -0
  397. package/dist/src/utils/dayjs.d.ts.map +1 -0
  398. package/dist/src/utils/dayjs.js +22 -0
  399. package/dist/src/utils/index.d.ts.map +1 -0
  400. package/dist/src/utils/index.js +2 -0
  401. package/dist/{types/src → src}/utils/mcGridColAdaptiveProps.d.ts +1 -1
  402. package/dist/src/utils/mcGridColAdaptiveProps.d.ts.map +1 -0
  403. package/dist/src/utils/mcGridColAdaptiveProps.js +10 -0
  404. package/dist/{types/src → src}/utils/mcTitleAdaptiveProps.d.ts +1 -1
  405. package/dist/src/utils/mcTitleAdaptiveProps.d.ts.map +1 -0
  406. package/dist/src/utils/mcTitleAdaptiveProps.js +10 -0
  407. package/dist/tsconfig.tsbuildinfo +1 -0
  408. package/package.json +3 -12
  409. package/dist/mediacube-ui-v2.cjs +0 -7
  410. package/dist/types/src/App.vue.d.ts +0 -3
  411. package/dist/types/src/assets/tokens/json/animations.json.d.ts +0 -8
  412. package/dist/types/src/assets/tokens/json/border-radius.json.d.ts +0 -26
  413. package/dist/types/src/assets/tokens/json/box-shadows.json.d.ts +0 -26
  414. package/dist/types/src/assets/tokens/json/colors.json.d.ts +0 -73
  415. package/dist/types/src/assets/tokens/json/durations.json.d.ts +0 -12
  416. package/dist/types/src/assets/tokens/json/easings.json.d.ts +0 -5
  417. package/dist/types/src/assets/tokens/json/font-families.json.d.ts +0 -6
  418. package/dist/types/src/assets/tokens/json/font-sizes.json.d.ts +0 -20
  419. package/dist/types/src/assets/tokens/json/font-weights.json.d.ts +0 -14
  420. package/dist/types/src/assets/tokens/json/gradients.json.d.ts +0 -15
  421. package/dist/types/src/assets/tokens/json/index.d.ts +0 -19
  422. package/dist/types/src/assets/tokens/json/index.d.ts.map +0 -1
  423. package/dist/types/src/assets/tokens/json/letter-spacings.json.d.ts +0 -6
  424. package/dist/types/src/assets/tokens/json/line-heights.json.d.ts +0 -20
  425. package/dist/types/src/assets/tokens/json/media-queries.json.d.ts +0 -28
  426. package/dist/types/src/assets/tokens/json/opacities.json.d.ts +0 -7
  427. package/dist/types/src/assets/tokens/json/sizes.json.d.ts +0 -44
  428. package/dist/types/src/assets/tokens/json/spacings.json.d.ts +0 -36
  429. package/dist/types/src/assets/tokens/json/z-indexes.json.d.ts +0 -14
  430. package/dist/types/src/components/elements/McAvatar/McAvatar.vue.d.ts.map +0 -1
  431. package/dist/types/src/components/elements/McBadge/McBadge.vue.d.ts.map +0 -1
  432. package/dist/types/src/components/elements/McBottomLoader/McBottomLoader.vue.d.ts +0 -15
  433. package/dist/types/src/components/elements/McBottomLoader/McBottomLoader.vue.d.ts.map +0 -1
  434. package/dist/types/src/components/elements/McButton/McButton.vue.d.ts.map +0 -1
  435. package/dist/types/src/components/elements/McChip/McChip.vue.d.ts.map +0 -1
  436. package/dist/types/src/components/elements/McDatepicker/McDatepicker.vue.d.ts.map +0 -1
  437. package/dist/types/src/components/elements/McDraggable/McDraggable.vue.d.ts.map +0 -1
  438. package/dist/types/src/components/elements/McFieldCheckbox/McFieldCheckbox.vue.d.ts.map +0 -1
  439. package/dist/types/src/components/elements/McFieldRadio/McFieldRadio.vue.d.ts.map +0 -1
  440. package/dist/types/src/components/elements/McFieldRadioGroup/McFieldRadioGroup.vue.d.ts.map +0 -1
  441. package/dist/types/src/components/elements/McFieldRange/McFieldRange.vue.d.ts.map +0 -1
  442. package/dist/types/src/components/elements/McFieldSelect/McFieldSelect.vue.d.ts.map +0 -1
  443. package/dist/types/src/components/elements/McFieldText/McFieldText.vue.d.ts.map +0 -1
  444. package/dist/types/src/components/elements/McFieldToggle/McFieldToggle.vue.d.ts.map +0 -1
  445. package/dist/types/src/components/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.d.ts.map +0 -1
  446. package/dist/types/src/components/elements/McNodata/McNoData.vue.d.ts.map +0 -1
  447. package/dist/types/src/components/elements/McNotification/McNotification.vue.d.ts.map +0 -1
  448. package/dist/types/src/components/elements/McProgress/McProgress.vue.d.ts.map +0 -1
  449. package/dist/types/src/components/elements/McSeparator/McSeparator.vue.d.ts.map +0 -1
  450. package/dist/types/src/components/elements/McSlideUpDown/McSlideUpDown.vue.d.ts.map +0 -1
  451. package/dist/types/src/components/elements/McStack/McStack.vue.d.ts.map +0 -1
  452. package/dist/types/src/components/elements/McSvgIcon/McSvgIcon.vue.d.ts.map +0 -1
  453. package/dist/types/src/components/elements/McTitle/McTitle.vue.d.ts.map +0 -1
  454. package/dist/types/src/components/elements/McTooltip/McTooltip.vue.d.ts.map +0 -1
  455. package/dist/types/src/components/index.d.ts.map +0 -1
  456. package/dist/types/src/components/patterns/McAccordion/McAccordion.vue.d.ts.map +0 -1
  457. package/dist/types/src/components/patterns/McCell/McCell.vue.d.ts.map +0 -1
  458. package/dist/types/src/components/patterns/McCollapse/McCollapse.vue.d.ts.map +0 -1
  459. package/dist/types/src/components/patterns/McDropdown/McDropdown.vue.d.ts.map +0 -1
  460. package/dist/types/src/components/patterns/McDropdown/McDropdownPanel.vue.d.ts +0 -23
  461. package/dist/types/src/components/patterns/McDropdown/McDropdownPanel.vue.d.ts.map +0 -1
  462. package/dist/types/src/components/patterns/McFilter/McFilter.vue.d.ts.map +0 -1
  463. package/dist/types/src/components/patterns/McFilter/McFilterChip/McFilterChip.vue.d.ts.map +0 -1
  464. package/dist/types/src/components/patterns/McFilter/McFilterTags/McFilterTags.vue.d.ts.map +0 -1
  465. package/dist/types/src/components/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.d.ts.map +0 -1
  466. package/dist/types/src/components/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.d.ts.map +0 -1
  467. package/dist/types/src/components/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.d.ts.map +0 -1
  468. package/dist/types/src/components/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.d.ts.map +0 -1
  469. package/dist/types/src/components/patterns/McGridCol/McGridCol.vue.d.ts.map +0 -1
  470. package/dist/types/src/components/patterns/McGridRow/McGridRow.vue.d.ts.map +0 -1
  471. package/dist/types/src/components/patterns/McOverlay/McOverlay.vue.d.ts.map +0 -1
  472. package/dist/types/src/components/patterns/McPreview/McPreview.vue.d.ts.map +0 -1
  473. package/dist/types/src/components/patterns/McSideBar/McSideBar.vue.d.ts.map +0 -1
  474. package/dist/types/src/components/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.d.ts.map +0 -1
  475. package/dist/types/src/components/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.d.ts.map +0 -1
  476. package/dist/types/src/components/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.d.ts.map +0 -1
  477. package/dist/types/src/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.d.ts.map +0 -1
  478. package/dist/types/src/components/patterns/McTab/McTab.vue.d.ts.map +0 -1
  479. package/dist/types/src/components/patterns/McTabs/McTabs.vue.d.ts.map +0 -1
  480. package/dist/types/src/components/patterns/McWrapScroll/McWrapScroll.vue.d.ts.map +0 -1
  481. package/dist/types/src/components/templates/McDrawer/McDrawer.vue.d.ts.map +0 -1
  482. package/dist/types/src/components/templates/McDrawer/McDrawerContainer.vue.d.ts.map +0 -1
  483. package/dist/types/src/components/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.d.ts.map +0 -1
  484. package/dist/types/src/components/templates/McModal/McModal.vue.d.ts.map +0 -1
  485. package/dist/types/src/components/templates/McModal/McModalContainer.vue.d.ts.map +0 -1
  486. package/dist/types/src/components/templates/McTable/McTable/McTable.vue.d.ts.map +0 -1
  487. package/dist/types/src/components/templates/McTable/McTableCard/McTableCard.vue.d.ts.map +0 -1
  488. package/dist/types/src/components/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.d.ts.map +0 -1
  489. package/dist/types/src/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts +0 -19
  490. package/dist/types/src/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts.map +0 -1
  491. package/dist/types/src/components/templates/McTable/McTableSort/McTableSort.vue.d.ts.map +0 -1
  492. package/dist/types/src/components/templates/McTopBar/McTopBar.vue.d.ts.map +0 -1
  493. package/dist/types/src/components/templates/McVirtualScroll/McVirtualScroll.vue.d.ts.map +0 -1
  494. package/dist/types/src/composables/index.d.ts.map +0 -1
  495. package/dist/types/src/composables/useDrawer.d.ts.map +0 -1
  496. package/dist/types/src/composables/useEncodeDecode.d.ts.map +0 -1
  497. package/dist/types/src/composables/useFieldErrors.d.ts +0 -6
  498. package/dist/types/src/composables/useFieldErrors.d.ts.map +0 -1
  499. package/dist/types/src/composables/useHelper.d.ts.map +0 -1
  500. package/dist/types/src/composables/useModal.d.ts.map +0 -1
  501. package/dist/types/src/composables/useRandomNumber.d.ts.map +0 -1
  502. package/dist/types/src/composables/useTooltip.d.ts.map +0 -1
  503. package/dist/types/src/consts/index.d.ts.map +0 -1
  504. package/dist/types/src/consts/table.d.ts.map +0 -1
  505. package/dist/types/src/enums/Cell.d.ts.map +0 -1
  506. package/dist/types/src/enums/Chip.d.ts.map +0 -1
  507. package/dist/types/src/enums/Datepicker.d.ts.map +0 -1
  508. package/dist/types/src/enums/Drawer.d.ts.map +0 -1
  509. package/dist/types/src/enums/Dropdown.d.ts.map +0 -1
  510. package/dist/types/src/enums/Filter.d.ts.map +0 -1
  511. package/dist/types/src/enums/Grid.d.ts.map +0 -1
  512. package/dist/types/src/enums/Input.d.ts.map +0 -1
  513. package/dist/types/src/enums/Modal.d.ts.map +0 -1
  514. package/dist/types/src/enums/Preview.d.ts.map +0 -1
  515. package/dist/types/src/enums/Radio.d.ts.map +0 -1
  516. package/dist/types/src/enums/RadioGroup.d.ts.map +0 -1
  517. package/dist/types/src/enums/Select.d.ts.map +0 -1
  518. package/dist/types/src/enums/Sidebar.d.ts.map +0 -1
  519. package/dist/types/src/enums/Tab.d.ts.map +0 -1
  520. package/dist/types/src/enums/Title.d.ts.map +0 -1
  521. package/dist/types/src/enums/Tooltip.d.ts.map +0 -1
  522. package/dist/types/src/enums/index.d.ts.map +0 -1
  523. package/dist/types/src/enums/ui/Alignment.d.ts.map +0 -1
  524. package/dist/types/src/enums/ui/Button.d.ts.map +0 -1
  525. package/dist/types/src/enums/ui/Directions.d.ts.map +0 -1
  526. package/dist/types/src/enums/ui/Weights.d.ts.map +0 -1
  527. package/dist/types/src/index.d.ts.map +0 -1
  528. package/dist/types/src/main.d.ts +0 -1
  529. package/dist/types/src/main.d.ts.map +0 -1
  530. package/dist/types/src/mocks/authUser.d.ts.map +0 -1
  531. package/dist/types/src/mocks/categories.d.ts.map +0 -1
  532. package/dist/types/src/mocks/filterMocks.d.ts.map +0 -1
  533. package/dist/types/src/mocks/icons.json.d.ts +0 -3
  534. package/dist/types/src/mocks/menuLangs.d.ts.map +0 -1
  535. package/dist/types/src/mocks/sidebar.d.ts.map +0 -1
  536. package/dist/types/src/mocks/tableData.d.ts.map +0 -1
  537. package/dist/types/src/types/IButton.d.ts.map +0 -1
  538. package/dist/types/src/types/ICell.d.ts.map +0 -1
  539. package/dist/types/src/types/IChip.d.ts.map +0 -1
  540. package/dist/types/src/types/ICollapse.d.ts.map +0 -1
  541. package/dist/types/src/types/IDatepicker.d.ts.map +0 -1
  542. package/dist/types/src/types/IDirections.d.ts.map +0 -1
  543. package/dist/types/src/types/IDrawer.d.ts.map +0 -1
  544. package/dist/types/src/types/IDropdown.d.ts.map +0 -1
  545. package/dist/types/src/types/IFilter.d.ts.map +0 -1
  546. package/dist/types/src/types/IGrid.d.ts.map +0 -1
  547. package/dist/types/src/types/IInput.d.ts.map +0 -1
  548. package/dist/types/src/types/IModal.d.ts.map +0 -1
  549. package/dist/types/src/types/IPreview.d.ts.map +0 -1
  550. package/dist/types/src/types/IRadio.d.ts.map +0 -1
  551. package/dist/types/src/types/IRadioGroup.d.ts.map +0 -1
  552. package/dist/types/src/types/IRoute.d.ts.map +0 -1
  553. package/dist/types/src/types/ISelect.d.ts.map +0 -1
  554. package/dist/types/src/types/ISideBar.d.ts.map +0 -1
  555. package/dist/types/src/types/ITable.d.ts.map +0 -1
  556. package/dist/types/src/types/ITabs.d.ts.map +0 -1
  557. package/dist/types/src/types/ITitle.d.ts.map +0 -1
  558. package/dist/types/src/types/ITooltip.d.ts.map +0 -1
  559. package/dist/types/src/types/index.d.ts.map +0 -1
  560. package/dist/types/src/types/styles/Alignment.d.ts.map +0 -1
  561. package/dist/types/src/types/styles/AvatarSizes.d.ts.map +0 -1
  562. package/dist/types/src/types/styles/Colors.d.ts.map +0 -1
  563. package/dist/types/src/types/styles/Durations.d.ts.map +0 -1
  564. package/dist/types/src/types/styles/FontSizes.d.ts.map +0 -1
  565. package/dist/types/src/types/styles/FontWeights.d.ts.map +0 -1
  566. package/dist/types/src/types/styles/Grid.d.ts.map +0 -1
  567. package/dist/types/src/types/styles/LineHeights.d.ts.map +0 -1
  568. package/dist/types/src/types/styles/MediaQueries.d.ts.map +0 -1
  569. package/dist/types/src/types/styles/Radiuses.d.ts.map +0 -1
  570. package/dist/types/src/types/styles/Sizes.d.ts.map +0 -1
  571. package/dist/types/src/types/styles/Spaces.d.ts.map +0 -1
  572. package/dist/types/src/types/styles/Weights.d.ts +0 -3
  573. package/dist/types/src/types/styles/Weights.d.ts.map +0 -1
  574. package/dist/types/src/utils/dayjs.d.ts.map +0 -1
  575. package/dist/types/src/utils/index.d.ts.map +0 -1
  576. package/dist/types/src/utils/mcGridColAdaptiveProps.d.ts.map +0 -1
  577. package/dist/types/src/utils/mcTitleAdaptiveProps.d.ts.map +0 -1
  578. /package/dist/{types/src → src}/components/index.d.ts +0 -0
  579. /package/dist/{types/src → src}/composables/useEncodeDecode.d.ts +0 -0
  580. /package/dist/{types/src → src}/composables/useHelper.d.ts +0 -0
  581. /package/dist/{types/src → src}/composables/useModal.d.ts +0 -0
  582. /package/dist/{types/src → src}/composables/useRandomNumber.d.ts +0 -0
  583. /package/dist/{types/src → src}/consts/index.d.ts +0 -0
  584. /package/dist/{types/src → src}/consts/table.d.ts +0 -0
  585. /package/dist/{types/src → src}/enums/Cell.d.ts +0 -0
  586. /package/dist/{types/src → src}/enums/Chip.d.ts +0 -0
  587. /package/dist/{types/src → src}/enums/Datepicker.d.ts +0 -0
  588. /package/dist/{types/src → src}/enums/Drawer.d.ts +0 -0
  589. /package/dist/{types/src → src}/enums/Dropdown.d.ts +0 -0
  590. /package/dist/{types/src → src}/enums/Filter.d.ts +0 -0
  591. /package/dist/{types/src → src}/enums/Grid.d.ts +0 -0
  592. /package/dist/{types/src → src}/enums/Input.d.ts +0 -0
  593. /package/dist/{types/src → src}/enums/Modal.d.ts +0 -0
  594. /package/dist/{types/src → src}/enums/Preview.d.ts +0 -0
  595. /package/dist/{types/src → src}/enums/Radio.d.ts +0 -0
  596. /package/dist/{types/src → src}/enums/RadioGroup.d.ts +0 -0
  597. /package/dist/{types/src → src}/enums/Select.d.ts +0 -0
  598. /package/dist/{types/src → src}/enums/Sidebar.d.ts +0 -0
  599. /package/dist/{types/src → src}/enums/Tab.d.ts +0 -0
  600. /package/dist/{types/src → src}/enums/Title.d.ts +0 -0
  601. /package/dist/{types/src → src}/enums/Tooltip.d.ts +0 -0
  602. /package/dist/{types/src → src}/enums/index.d.ts +0 -0
  603. /package/dist/{types/src → src}/enums/ui/Alignment.d.ts +0 -0
  604. /package/dist/{types/src → src}/enums/ui/Button.d.ts +0 -0
  605. /package/dist/{types/src → src}/enums/ui/Directions.d.ts +0 -0
  606. /package/dist/{types/src → src}/enums/ui/Weights.d.ts +0 -0
  607. /package/dist/{types/src → src}/mocks/authUser.d.ts +0 -0
  608. /package/dist/{types/src → src}/mocks/categories.d.ts +0 -0
  609. /package/dist/{types/src → src}/mocks/menuLangs.d.ts +0 -0
  610. /package/dist/{types/src → src}/types/ICollapse.d.ts +0 -0
  611. /package/dist/{types/src → src}/types/IGrid.d.ts +0 -0
  612. /package/dist/{types/src → src}/types/IRoute.d.ts +0 -0
  613. /package/dist/{types/src → src}/types/index.d.ts +0 -0
  614. /package/dist/{types/src → src}/types/styles/AvatarSizes.d.ts +0 -0
  615. /package/dist/{types/src → src}/types/styles/Colors.d.ts +0 -0
  616. /package/dist/{types/src → src}/types/styles/Durations.d.ts +0 -0
  617. /package/dist/{types/src → src}/types/styles/FontSizes.d.ts +0 -0
  618. /package/dist/{types/src → src}/types/styles/FontWeights.d.ts +0 -0
  619. /package/dist/{types/src → src}/types/styles/Icons.d.ts +0 -0
  620. /package/dist/{types/src → src}/types/styles/LineHeights.d.ts +0 -0
  621. /package/dist/{types/src → src}/types/styles/MediaQueries.d.ts +0 -0
  622. /package/dist/{types/src → src}/types/styles/Radiuses.d.ts +0 -0
  623. /package/dist/{types/src → src}/types/styles/Sizes.d.ts +0 -0
  624. /package/dist/{types/src → src}/types/styles/Spaces.d.ts +0 -0
  625. /package/dist/{types/src → src}/utils/dayjs.d.ts +0 -0
  626. /package/dist/{types/src → src}/utils/index.d.ts +0 -0
@@ -0,0 +1,7 @@
1
+ (function(R,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(R=typeof globalThis<"u"?globalThis:R||self,e(R["mediacube-ui-v2"]={},R.Vue))})(this,function(R,e){"use strict";var Ts=Object.defineProperty;var As=(R,e,S0)=>e in R?Ts(R,e,{enumerable:!0,configurable:!0,writable:!0,value:S0}):R[e]=S0;var s2=(R,e,S0)=>As(R,typeof e!="symbol"?e+"":e,S0);const S0={"$size-50":"4px","$size-100":"8px","$size-150":"12px","$size-200":"16px","$size-250":"20px","$size-300":"24px","$size-400":"32px","$size-500":"40px","$size-550":"44px","$size-600":"48px","$size-700":"56px","$size-800":"64px","$size-900":"72px","$size-1000":"80px","$token-avatar-sizes":{300:"24px",400:"32px",500:"40px",600:"48px",700:"56px",800:"64px",900:"72px",1e3:"80px"},"$token-icon-sizes":{50:"4px",100:"8px",150:"12px",200:"16px",250:"20px",300:"24px",400:"32px",500:"40px",550:"44px",600:"48px",700:"56px",800:"64px",900:"72px",1e3:"80px"}},j9=S0["$token-avatar-sizes"];({...S0["$token-avatar-sizes"]});const r3={"$color-black":"#202427","$color-dark-gray":"#5C6670","$color-gray":"#8F99A3","$color-outline-gray":"#C7CCD1","$color-outline-light":"#DEE0E2","$color-hover-gray":"#EDF0F3","$color-bg-gray":"#F5F6Fa","$color-white":"#FFFFFF","$color-hover-purple":"#7238FF","$color-purple":"#8756FF","$color-light-purple":"#CBB7FF","$color-lighter-purple":"#EEE8FF","$color-bg-purple":"#9673ED","$color-primary-bg":"#F5F6Fa","$color-hover-blue":"#0A54C2","$color-blue":"#2578F4","$color-light-blue":"#92BBFA","$color-lighter-blue":"#E1EDFF","$color-dark-orange":"#BD8400","$color-orange":"#FCB100","$color-yellow":"#FFC60A","$color-dark-red":"#D5260B","$color-bright-pink":"#e8178a","$color-red":"#F5563D","$color-pale-pink":"#FC9283","$color-dark-green":"#218321","$color-green":"#4DCB4D","$color-toxic":"#E8F443","$color-ultraviolet":"#C41CFD","$color-pinkish":"#F073B1","$color-azure":"#0A85C2","$color-turquoise":"#4EA9A2","$color-darken-turquoise":"#2F8C99","$color-transparent":"transparent","$token-colors":{purple:"#8756FF","hover-purple":"#7238FF","light-purple":"#CBB7FF","bg-purple":"#9673ED","lighter-purple":"#EEE8FF",black:"#202427","outline-light":"#DEE0E2","dark-gray":"#5C6670",gray:"#8F99A3","outline-gray":"#C7CCD1","hover-gray":"#EDF0F3","bg-gray":"#F5F6Fa",white:"#FFFFFF","hover-blue":"#0A54C2",blue:"#2578F4","light-blue":"#92BBFA","lighter-blue":"#E1EDFF","dark-orange":"#BD8400",orange:"#FCB100",yellow:"#FFC60A","dark-red":"#D5260B",red:"#F5563D","bright-pink":"#e8178a","pale-pink":"#FC9283","dark-green":"#218321",green:"#4DCB4D",toxic:"#E8F443",ultraviolet:"#C41CFD",pinkish:"#F073B1",azure:"#0A85C2",turquoise:"#4EA9A2","darken-turquoise":"#2F8C99",transparent:"transparent"}},v2=r3["$token-colors"];({...r3["$token-colors"]});const l3={"$duration-s":"150ms","$duration-m":"300ms","$duration-l":"500ms","$token-durations":{s:"150ms",m:"300ms",l:"500ms"}},H4=l3["$token-durations"];({...l3["$token-durations"]});const n3={"$font-size-100":"10px","$font-size-200":"13px","$font-size-300":"16px","$font-size-400":"20px","$font-size-500":"28px","$font-size-600":"32px","$font-size-700":"48px","$token-font-sizes":{100:"10px",200:"13px",300:"16px",400:"20px",500:"28px",600:"32px",700:"48px"}},x4=n3["$token-font-sizes"];({...n3["$token-font-sizes"]});const a3={"$font-weight-normal":"400","$font-weight-medium":"500","$font-weight-semi-bold":"600","$font-weight-bold":"700","$token-font-weights":{normal:"400",medium:"500","semi-bold":"600",bold:"700"}},i3=a3["$token-font-weights"];({...a3["$token-font-weights"]});const s3={"$line-height-150":"12px","$line-height-200":"16px","$line-height-250":"20px","$line-height-300":"24px","$line-height-400":"32px","$line-height-500":"40px","$line-height-600":"48px","$token-line-heights":{150:"12px",200:"16px",250:"20px",300:"24px",400:"32px",500:"40px",600:"48px"}},be=s3["$token-line-heights"];({...s3["$token-line-heights"]});const c3={"$media-query-xs":'"(min-width: 375px)"',"$media-query-s":'"(min-width: 480px)"',"$media-query-m":'"(min-width: 768px)"',"$media-query-l":'"(min-width: 1024px)"',"$media-query-xl":'"(min-width: 1440px)"',"$media-query-xs-down":'"(max-width: 374px)"',"$media-query-s-down":'"(max-width: 479px)"',"$media-query-m-down":'"(max-width: 767px)"',"$media-query-l-down":'"(max-width: 1023px)"',"$media-query-xl-down":'"(max-width: 1439px)"',"$media-desktop":'"(hover: hover) and (pointer: fine)"',"$media-mobile":'"(hover: none) and (pointer: coarse)"',"$token-media-queries":{xs:'"(min-width: 375px)"',s:'"(min-width: 480px)"',m:'"(min-width: 768px)"',l:'"(min-width: 1024px)"',xl:'"(min-width: 1440px)"',"xs-down":'"(max-width: 374px)"',"s-down":'"(max-width: 479px)"',"m-down":'"(max-width: 767px)"',"l-down":'"(max-width: 1023px)"',"xl-down":'"(max-width: 1439px)"'}},B4=c3["$token-media-queries"];({...c3["$token-media-queries"]});const d3={"$radius-square":"0px","$radius-50":"4px","$radius-100":"8px","$radius-150":"12px","$radius-200":"16px","$radius-300":"24px","$radius-400":"32px","$radius-1250":"100px","$radius-rounded":"300px","$radius-circle":"50%","$token-radius":{50:"4px",100:"8px",150:"12px",200:"16px",300:"24px",400:"32px",1250:"100px",square:"0px",rounded:"300px",circle:"50%"}},R9=d3["$token-radius"];({...d3["$token-radius"]});const z0=S0["$token-icon-sizes"];({...S0["$token-icon-sizes"]});const u3={"$space-zero":"0","$space-50":"4px","$space-100":"8px","$space-150":"12px","$space-200":"16px","$space-250":"20px","$space-300":"24px","$space-350":"28px","$space-400":"32px","$space-450":"36px","$space-500":"40px","$space-600":"48px","$space-700":"56px","$space-800":"64px","$space-900":"72px","$space-1000":"80px","$token-spaces":{50:"4px",100:"8px",150:"12px",200:"16px",250:"20px",300:"24px",400:"32px",450:"36px",500:"40px",600:"48px",700:"56px",800:"64px",900:"72px",1e3:"80px"}},i0=u3["$token-spaces"];({...u3["$token-spaces"]});var C3=(o=>(o.S="s",o.M="m",o.L="l",o))(C3||{}),q1=(o=>(o.Xs="xs",o.S="s",o.M="m",o))(q1||{}),Le=(o=>(o.Invert="invert",o.Outline="outline",o))(Le||{}),N2=(o=>(o.TimePicker="time-picker",o.DatePicker="date-picker",o.DateTimePicker="date-time-picker",o.WeekPicker="week-picker",o.MonthPicker="month-picker",o.YearPicker="year-picker",o))(N2||{}),I2=(o=>(o.Picker="picker",o.Dayjs="dayjs",o.Output="output",o))(I2||{}),W0=(o=>(o.TimePicker="HH:mm",o.DateTimePicker="dd.MM.yyyy HH:mm",o.DatePicker="dd.MM.yyyy",o.WeekPicker="ww.yyyy",o.MonthPicker="MM.yyyy",o.YearPicker="yyyy",o))(W0||{}),G0=(o=>(o.TimePicker="HH:mm",o.DateTimePicker="DD.MM.YYYY HH:mm",o.DatePicker="DD.MM.YYYY",o.WeekPicker="WW.YYYY",o.MonthPicker="MM.YYYY",o.YearPicker="YYYY",o))(G0||{}),K0=(o=>(o.TimePicker="HH:mm",o.DateTimePicker="YYYY-MM-DD HH:mm",o.DatePicker="YYYY-MM-DD",o.WeekPicker="YYYY-WW",o.MonthPicker="YYYY-MM-DD",o.YearPicker="YYYY",o))(K0||{}),H1=(o=>(o.Left="left",o.Right="right",o))(H1||{}),x1=(o=>(o.Top="top",o.Bottom="bottom",o.Auto="auto",o))(x1||{}),Q0=(o=>(o.Left="left",o.Right="right",o.Auto="auto",o))(Q0||{}),_2=(o=>(o.Exists="exists",o.Is="is",o.IsNot="is_not",o))(_2||{}),H2=(o=>(o.Relation="relation",o.Date="date",o.Text="text",o.Range="range",o.Fast="fast",o))(H2||{}),p3=(o=>(o.Xs="xs",o.S="s",o.M="m",o.L="l",o.Xl="xl",o.Xxl="xxl",o))(p3||{}),Me=(o=>(o.Left="left",o.Right="right",o.Center="center",o.Around="around",o.Between="between",o))(Me||{}),we=(o=>(o.Top="top",o.Middle="middle",o.Bottom="bottom",o.Stretch="stretch",o))(we||{}),P2=(o=>(o.Text="text",o.Password="password",o.Email="email",o.Date="date",o.Textarea="textarea",o.TextareaAutosize="textarea-autosize",o.Num="num",o.Int="int",o.AmountFormat="amount_format",o.Uppercase="uppercase",o.Lowercase="lowercase",o.PhoneNumber="phone_number",o))(P2||{}),h3=(o=>(o.On="on",o.Off="off",o))(h3||{}),I9=(o=>(o.Default="default",o.Info="info",o))(I9||{}),Ve=(o=>(o.S="s",o.M="m",o.L="l",o))(Ve||{}),Y9=(o=>(o.Circle="circle",o.Checkmark="checkmark",o))(Y9||{}),m3=(o=>(o.Column="column",o.Row="row",o))(m3||{}),X0=(o=>(o.Label="label",o.Values="values",o))(X0||{}),U9=(o=>(o.Top="above",o.Bottom="below",o.Auto="auto",o))(U9||{}),y0=(o=>(o.Black="black",o.White="white",o))(y0||{}),f3=(o=>(o.Body="body",o.Captions="caption",o.Overline="overline",o))(f3||{}),k3=(o=>(o.Xs="xs",o.S="s",o.M="m",o.L="l",o.Xl="xl",o.Xxl="xxl",o))(k3||{}),F2=(o=>(o.H1="h1",o.H2="h2",o.H3="h3",o.H4="h4",o.Subtitle="subtitle",o.Body="body",o.Overline="overline",o.Article="article",o.Info="info",o))(F2||{}),s0=(o=>(o.Top="top",o.Left="left",o.Right="right",o.Bottom="bottom",o))(s0||{}),N0=(o=>(o.Xs="xs",o.S="s",o.M="m",o.L="l",o.XL="xl",o))(N0||{}),J0=(o=>(o.Left="left",o.Center="center",o.Right="right",o))(J0||{}),y3=(o=>(o.Button="button",o.Submit="submit",o.Reset="reset",o))(y3||{}),t0=(o=>(o.Xs="xs",o.XsCompact="xs-compact",o.S="s",o.SCompact="s-compact",o.M="m",o.MCompact="m-compact",o.L="l",o.LCompact="l-compact",o))(t0||{}),L0=(o=>(o.Invert="invert",o.Outline="outline",o.Link="link",o.Flat="flat",o))(L0||{}),g0=(o=>(o.Rtl="rtl",o.Ltr="ltr",o))(g0||{}),J2=(o=>(o.Normal="normal",o.Medium="medium",o.SemiBold="semi-bold",o.Bold="bold",o))(J2||{});const g3="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAYAAAA5ZDbSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAWxSURBVHgB7Z0/aF9VFMdPxaGFCmbzl60BK+iW6GKHDsmWjBUstJstuggWB6cgrpUILhbSsWCHjsmWgEIzJpsFLaZbslnBgt1qP3m5FH40kj/vvvs9J+cDoWmW937387v33XfuPeee+eajFy8sCcsbloQmBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQcnBQfnTQvI2bfMRhfNPrhsNjHqfj93vvs7PP/H7K/d7t/dx2Z/bpk92ez+H40zkTIbLsyYzX1mNnnxlcyjsLny8me1kx2FEIKL2KkZ64WnL3v32rLZ1oq5x7Vght8ri/2JHYcevb7cCfeK20kWvfbLe/XkwsyC2Y07Zu9fNre4FDx7w+zmT8d7zh4VRonrt7tresSdYBp6rkFjc02Pkl0JvvRpG7kFrs09eMKNYIbKhVvWHO5h9K65wYVgnrVMdlS4/v0wz/8+cCGYoZEerAL34mWolhes2phqX7qDkBc8Jzxz/fiqySMtmB4yvWCyfDiv/yyWFlwzStUHyJ2ZN2mkBU+LNx6ohzGzB5+Q4y5NDoWs4AsO5AJyJ94xWWQFn3MSSIDReyaLrGBP4UDl9+HcdBccWcEeokSF7MFJM1JwcFJwD/z7zGSRFexpJ6PyhnlZwZ6yDFLwMXguPOyNozzayAredpQ+8nTHZJF+BnsYprlPEthUkZ5F//aryaM+0kgL9pD89Uj8SygteHtLe5hmeE7BJ+ThfZNl42eTR17wxn3NXuyh94K8YOSSjK3GmpO8YRexaHqx0mz10S9+sv/dLDY8+E6jx3APKz+YG9wIpmHvfd32ecy1lz/3tRDiarlw53HXwC0ke5QL7taDkfzjtWEbmmshd0c4JHkQLhf8S4MPMfHiGl7lgvs6WVTCma2QyllezzaEAy2HwX0pQ2pZ0csQTSbiSUUjFqkPRQMsRyVUKUPSSKhPSdLaUfKaELnzRxeZopRhpJqVoQSPg2QyJCYmu/yhkiS2t9b8rFuoZy0XuRELkULIarMFhm5PO0NqkNtmg5OCg5OCg5OCg5OCg5OCg5OCg5OCgxM20EHU6uz5rpjL/5U5IppFVCsjWYKU85EmSzjyNWckHYUSsiR8iXiWCHedhzFdCUYaleWmprs4c99LhBQ1g/GFCsQjenv/AC1PuzrkFxsoiIZQxBYBrUH4k61uqRLxykgKpqdSI5qlv5GI1IMoh2ip9mwpwX2fYDY0ikfjSQj2LnYclijX7mqIbiqY2e/8rThix2GHyMpS26G7iWCesR7PIDouZCGyz6uF6MEFMxx/suirVGEf7KW8LA2fkTioYA6VOi299iCYca8PmC05iGB667XbOu+xrSkb94cYsqsvNjCR4tSylPsKvvC0yRCPqaqCi9zT9rw9DLQJ5x/XLnxeTXCR6+WMvxbQNjfv1JVcRXDKPTy1JfcueG9C5eh0TgVoK040rfEo611wrRuNDm12ZdF6p3fBD76NuzuiJrTZ6pL1Tu+CW5ZZ8EopD1EjybzKJCslH56acqHaa1KLWhreoG1oo5rlIaoGOkpITn1bSwvY9jNEuLJ6qLJ8S73XuugT2mL5i2FGt8F2VbJURk9e+Or0viPzvKVK3uaAZRAHzWzgg9GbT2PWPZ+Zz745cI3LZlt2WBe+dDV+UKR1Oaame7KQy9Ydyh9FhN7KkNzydVFiV2UJ00XaVbl+V+NRJLUvGsGzjrfPKoktSOUmlbJHnoZuhl+O/9la1Zw8SucmIZrezIRMLYUFmR4q47mpdIdsEtD2sgsbDeFILUlnXkKwLksZEiiZ2s86ZCdEDeH0SiSSMkqAhmHY4+JJmFqV7Np8e3K/NuWo+ynZ/a9LCEdWOdh59/fud4T+vdsJ3QkSPw9djDTJIizhScHBScHBScHB+Q/PiwiFhdSeHAAAAABJRU5ErkJggg==",S4=["src","alt","draggable","lazy"],b3=e.defineComponent({__name:"McAvatar",props:{src:{type:String,default:g3},lazy:{type:Boolean,default:!1},alt:{type:String,default:""},size:{type:String,default:"300"},rounded:{type:Boolean,default:!1},borderColor:{type:String,default:""},dotColor:{type:String,default:""},shadow:{type:Boolean,default:!1},draggable:{type:Boolean,default:!0}},setup(o){const t=o,r=e.ref({}),l=e.ref({}),n=e.computed(()=>!!t.borderColor||!!t.dotColor),a=e.computed(()=>({"mc-avatar":!0,"mc-avatar--rounded":t.rounded,"mc-avatar--bordered":!!t.borderColor,"mc-avatar--shadow":t.shadow&&!n.value,[`mc-avatar--size-${t.size}`]:!!t.size})),i=e.computed(()=>({"mc-avatar__wrapper":!0,"mc-avatar__wrapper-status--shadow":!!t.shadow,[`mc-avatar__wrapper-status--size-${t.size}`]:!!t.size,"mc-avatar__wrapper--has-dot":!!t.dotColor}));e.watch(()=>t.dotColor,()=>{n.value&&t.dotColor&&(l.value["--mc-avatar-dot-color"]=v2[t.dotColor])},{immediate:!0}),e.watch(()=>t.borderColor,()=>{n.value&&t.borderColor&&(r.value["--mc-avatar-border-color"]=v2[t.borderColor])},{immediate:!0}),e.watch(()=>t.size,()=>{if(t.size)switch(r.value["--mc-avatar-avatar-size"]=j9[t.size],+t.size<500&&(l.value["--mc-avatar-dot-size"]=z0[100],r.value["--mc-avatar-avatar-radius"]=R9[50]),+t.size){case 500:case 600:{l.value["--mc-avatar-dot-size"]=z0[150];break}case 700:case 800:case 900:case 1e3:{l.value["--mc-avatar-dot-size"]=z0[200],l.value["--mc-avatar-dot-border-width"]="2px";break}}},{immediate:!0});const c=s=>{s.target&&(s.target.src=g3)};return(s,u)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(i.value),style:e.normalizeStyle(l.value)},[e.createElementVNode("div",{class:e.normalizeClass(a.value),style:e.normalizeStyle(r.value)},[e.createElementVNode("img",{src:t.src||e.unref(g3),alt:t.alt,draggable:t.draggable,lazy:t.lazy,class:"mc-avatar__img",onOnerror:c},null,40,S4)],6)],6))}}),Z4={class:"mc-badge__text"},D4=e.defineComponent({__name:"McBadge",props:{variation:{type:String,default:"purple"},verticalLine:{type:Boolean,default:!1},modern:{type:Boolean,default:!1}},setup(o){const t=o,r=e.computed(()=>({"mc-badge":!0,"mc-badge--vertical-line":t.verticalLine,"mc-badge--modern":t.modern})),l=e.computed(()=>{const n=`${t.variation}${t.modern?"-modern":""}`;let a={};const i=n.split("-"),c=i[i.length-1],s=t.variation?n.replace(`-${c}`,""):n,u=({property:d="--mc-badge-color",value:C,newColor:p=s}={})=>{a[d]=C||p&&v2[p]};switch(c){case"outline":{u(),u({property:"--mc-badge-border-color"}),u({property:"--mc-badge-background-color",newColor:"white"}),u({property:"--mc-badge-background-opacity",value:"0.4"});break}case"invert":case"modern":{u(),u({property:"--mc-badge-background-color"}),u({property:"--mc-badge-background-opacity",value:"0.1"});break}default:{["hover-gray","white","lighter-blue","lighter-purple","toxic","transparent"].includes(n)&&u({newColor:"black"}),u({property:"--mc-badge-background-color",newColor:n});break}}return a});return(n,a)=>(e.openBlock(),e.createElementBlock("div",e.mergeProps({class:r.value,style:l.value},n.$attrs),[e.createElementVNode("div",Z4,[e.renderSlot(n.$slots,"default")]),a[0]||(a[0]=e.createElementVNode("div",{class:"mc-badge__background"},null,-1))],16))}}),q9=e.defineComponent({__name:"McBottomLoader",props:{center:{type:Boolean,default:!1}},setup(o){const t=o,r=e.computed(()=>({"mc-bottom-loader":!0,"mc-bottom-loader--center":t.center}));return(l,n)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(r.value)},n[0]||(n[0]=[e.createElementVNode("section",{class:"mc-bottom-loader__spinner"},null,-1)]),2))}}),W9=e.defineComponent({__name:"McDrawerContainer",props:{drawerServiceState:{type:Object,default:()=>({})},reactiveProps:{type:Object,default:()=>({})}},setup(o){const t=o,r=e.computed(()=>({zIndex:t.reactiveProps.drawers.length?99:-1,visibility:t.reactiveProps.drawers.length?"visible":"hidden"})),l=n=>{var a;n.close(),setTimeout(()=>{t.reactiveProps.drawers.every(i=>!i.modelValue)&&t.drawerServiceState.closeServiceState()},((a=n==null?void 0:n.drawerProps)==null?void 0:a.duration)||300)};return(n,a)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-drawer-container",style:e.normalizeStyle(r.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.reactiveProps.drawers,(i,c)=>(e.openBlock(),e.createBlock(e.unref(V4),e.mergeProps({key:i.id,modelValue:i.modelValue,"onUpdate:modelValue":s=>i.modelValue=s,ref_for:!0},i.drawerProps,{"show-overlay":c+1===t.reactiveProps.drawers.length,onClose:()=>l(i)}),{default:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.component),e.mergeProps({ref_for:!0},i.componentProps,{onCloseDrawer:()=>l(i)}),null,16,["onCloseDrawer"]))]),_:2},1040,["modelValue","onUpdate:modelValue","show-overlay","onClose"]))),128))],4))}}),E4=()=>{L3.isOpen=!1,e1.drawers=[]},L3=e.reactive({isOpen:!1,closeServiceState:E4}),M3=e.shallowRef({}),e1=e.reactive({drawers:[]}),T4=()=>{const o=document.createElement("div");o.id="drawer-container",document.body.appendChild(o);const t=e.h(W9,{drawerServiceState:L3,reactiveProps:e1});e.render(t,o)},A4=()=>{document.getElementById("drawer-container")||T4()},$4=(o,t={},r={})=>{if(!M3.value[o])return console.warn(`The component is not provided in Mediacube-ui DS
2
+ Check and add to app.use(MediacubeUI, { drawerComponents: {...} })`);A4();const l=Date.now(),n={component:e.markRaw(M3.value[o]),componentName:o,drawerProps:t,componentProps:r,modelValue:!0,id:l,close:()=>{const a=e1.drawers.findLast(i=>i.id===l);a&&(a.modelValue=!1),setTimeout(()=>{e1.drawers=e1.drawers.filter(i=>i.id!==(a==null?void 0:a.id))},(t==null?void 0:t.duration)||300)}};e1.drawers.push(n),L3.isOpen=!0},F4=o=>{const t=e1.drawers.findLast(r=>r.componentName===o);t&&t.close()},z4=()=>{e1.drawers.forEach(o=>{o.close()})};function N4(){var t;const{proxy:o}=e.getCurrentInstance();return(t=o.$dsOptions)!=null&&t.drawerComponents&&(M3.value=o.$dsOptions.drawerComponents),{showDrawer:$4,closeDrawer:F4,closeAllDrawers:z4}}class W1{static encode(t){if(t.constructor!==Object)return t;try{return btoa(encodeURI(JSON.stringify(t)))}catch(r){return console.error(r),t}}static decode(t){if(!t)return t;try{return JSON.parse(decodeURI(atob(t)))}catch(r){return console.error(r),t}}}function Z0(o){const t=e.ref(!0),r=e.computed(()=>{var n;return o===null||!(o!=null&&o.length)||!t.value?null:(n=o.join(", "))==null?void 0:n.replace(/-/gm,"&#x2011;")});return e.watch(()=>o,()=>{t.value=!1}),{is_error_visible:t,errorText:r,toggleErrorVisible:()=>{t.value=!1}}}function O4(o){return o==null?!0:Array.isArray(o)||typeof o=="string"?o.length===0:typeof o=="object"?Object.keys(o).length===0:!1}function G9(o,t){if(o===t)return!0;if(typeof o!="object"||typeof t!="object"||o===null||t===null||Array.isArray(o)!==Array.isArray(t))return!1;const r=Object.keys(o),l=Object.keys(t);if(r.length!==l.length)return!1;for(const n of r)if(!G9(o[n],t[n]))return!1;return!0}function w3(o){if(o===null||typeof o!="object")return o;if(Array.isArray(o))return o.map(w3);const t={};for(const r in o)Q9(o,r)&&(t[r]=w3(o[r]));return t}function P4(o,t){return o.reduce((r,l)=>(r.some(n=>t(n,l))||r.push(l),r),[])}function K9(o,t){for(const r in t)t[r]instanceof Object&&r in o&&Object.assign(t[r],K9(o[r],t[r]));return Object.assign(o||{},t),o}function Q9(o,t){return Object.prototype.hasOwnProperty.call(o,t)}function j4(o){return typeof o=="number"}function R4(o){return o&&o.charAt(0).toUpperCase()+o.slice(1)}function D0(){return{isEmpty:O4,isEqual:G9,cloneDeep:w3,uniqWith:P4,deepMerge:K9,hasProperty:Q9,isNumber:j4,upperFirst:R4}}const I4=["onClose"],X9=e.defineComponent({__name:"McModalContainer",props:{modalServiceState:{type:Object,default:()=>({})},reactiveProps:{type:Object,default:()=>({})}},setup(o){const t=o,r=e.computed(()=>({zIndex:t.reactiveProps.modals.length?99:-1,visibility:t.reactiveProps.modals.length?"visible":"hidden"})),l=n=>{n.close(),setTimeout(()=>{t.reactiveProps.modals.every(a=>!a.modelValue)&&t.modalServiceState.closeServiceState()},300)};return(n,a)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-modal-container",style:e.normalizeStyle(r.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.reactiveProps.modals,i=>(e.openBlock(),e.createElementBlock("div",{key:i.id,onClose:()=>l(i)},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i.component),e.mergeProps({modelValue:i.modelValue,"onUpdate:modelValue":c=>i.modelValue=c,ref_for:!0},i.componentProps,{onClosed:()=>l(i)}),null,16,["modelValue","onUpdate:modelValue","onClosed"]))],40,I4))),128))],4))}}),Y4=()=>{V3.isOpen=!1,t1.modals=[]},V3=e.reactive({isOpen:!1,closeServiceState:Y4}),_3=e.shallowRef({}),t1=e.reactive({modals:[]}),U4=()=>{const o=document.createElement("div");o.id="modal-container",document.body.appendChild(o);const t=e.h(X9,{modalServiceState:V3,reactiveProps:t1});e.render(t,o)},q4=()=>{document.getElementById("modal-container")||U4()},W4=(o,t={})=>{if(!_3.value[o])return console.warn(`The component is not provided in Mediacube-ui DS
3
+ Check and add to app.use(MediacubeUI, { modalComponents: {...} })`);q4();const r=Date.now(),l={component:e.markRaw(_3.value[o]),componentName:o,componentProps:t,modelValue:!0,id:r,close:()=>{const n=t1.modals.findLast(a=>a.id===r);n&&(n.modelValue=!1),setTimeout(()=>{t1.modals=t1.modals.filter(a=>a.id!==(n==null?void 0:n.id))},300)}};t1.modals.push(l),V3.isOpen=!0},G4=o=>{const t=t1.modals.findLast(r=>r.componentName===o);t&&t.close()},K4=()=>{t1.modals.forEach(o=>{o.close()})};function Q4(){var t;const{proxy:o}=e.getCurrentInstance();return(t=o.$dsOptions)!=null&&t.modalComponents&&(_3.value=o.$dsOptions.modalComponents),{showModal:W4,closeModal:G4,closeAllModals:K4}}function X4(o=0){if(!o)return Date.now();const t=Math.pow(10,o-1),r=Math.pow(10,o)-1;return+(String(Date.now())+String(Math.floor(Math.random()*(r-t+1))+t))}function G1(){return{timestamp:X4}}function v3(o){return e.getCurrentScope()?(e.onScopeDispose(o),!0):!1}function w2(o){return typeof o=="function"?o():e.unref(o)}const J9=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const J4=Object.prototype.toString,e8=o=>J4.call(o)==="[object Object]",K1=()=>{};function H3(o,t){function r(...l){return new Promise((n,a)=>{Promise.resolve(o(()=>t.apply(this,l),{fn:t,thisArg:this,args:l})).then(n).catch(a)})}return r}const e5=o=>o();function t8(o,t={}){let r,l,n=K1;const a=c=>{clearTimeout(c),n(),n=K1};return c=>{const s=w2(o),u=w2(t.maxWait);return r&&a(r),s<=0||u!==void 0&&u<=0?(l&&(a(l),l=null),Promise.resolve(c())):new Promise((d,C)=>{n=t.rejectOnCancel?C:d,u&&!l&&(l=setTimeout(()=>{r&&a(r),l=null,d(c())},u)),r=setTimeout(()=>{l&&a(l),l=null,d(c())},s)})}}function o8(...o){let t=0,r,l=!0,n=K1,a,i,c,s,u;!e.isRef(o[0])&&typeof o[0]=="object"?{delay:i,trailing:c=!0,leading:s=!0,rejectOnCancel:u=!1}=o[0]:[i,c=!0,s=!0,u=!1]=o;const d=()=>{r&&(clearTimeout(r),r=void 0,n(),n=K1)};return p=>{const h=w2(i),f=Date.now()-t,m=()=>a=p();return d(),h<=0?(t=Date.now(),m()):(f>h&&(s||!l)?(t=Date.now(),m()):c&&(a=new Promise((k,M)=>{n=u?M:k,r=setTimeout(()=>{t=Date.now(),l=!0,k(m()),d()},Math.max(0,h-f))})),!s&&!r&&(r=setTimeout(()=>l=!0,h)),l=!1,a)}}function r8(o=e5){const t=e.ref(!0);function r(){t.value=!1}function l(){t.value=!0}const n=(...a)=>{t.value&&o(...a)};return{isActive:e.readonly(t),pause:r,resume:l,eventFilter:n}}function l8(o,t=!1,r="Timeout"){return new Promise((l,n)=>{setTimeout(t?()=>n(r):l,o)})}function t5(o){return o}function n8(o){return e.getCurrentInstance()}function _e(o,t=200,r={}){return H3(t8(t,r),o)}function o5(o,t=200,r=!1,l=!0,n=!1){return H3(o8(t,r,l,n),o)}function a8(o,t,r={}){const{eventFilter:l=e5,...n}=r;return e.watch(o,H3(l,t),n)}function i8(o,t,r={}){const{eventFilter:l,...n}=r,{eventFilter:a,pause:i,resume:c,isActive:s}=r8(l);return{stop:a8(o,t,{...n,eventFilter:a}),pause:i,resume:c,isActive:s}}function s8(o,t={}){if(!e.isRef(o))return e.toRefs(o);const r=Array.isArray(o.value)?Array.from({length:o.value.length}):{};for(const l in o.value)r[l]=e.customRef(()=>({get(){return o.value[l]},set(n){var a;if((a=w2(t.replaceRef))!=null?a:!0)if(Array.isArray(o.value)){const c=[...o.value];c[l]=n,o.value=c}else{const c={...o.value,[l]:n};Object.setPrototypeOf(c,Object.getPrototypeOf(o.value)),o.value=c}else o.value[l]=n}}));return r}function c8(o,t=!0,r){n8()?e.onMounted(o,r):t?o():e.nextTick(o)}const m1=J9?window:void 0;function x3(o){var t;const r=w2(o);return(t=r==null?void 0:r.$el)!=null?t:r}function Q1(...o){let t,r,l,n;if(typeof o[0]=="string"||Array.isArray(o[0])?([r,l,n]=o,t=m1):[t,r,l,n]=o,!t)return K1;Array.isArray(r)||(r=[r]),Array.isArray(l)||(l=[l]);const a=[],i=()=>{a.forEach(d=>d()),a.length=0},c=(d,C,p,h)=>(d.addEventListener(C,p,h),()=>d.removeEventListener(C,p,h)),s=e.watch(()=>[x3(t),w2(n)],([d,C])=>{if(i(),!d)return;const p=e8(C)?{...C}:C;a.push(...r.flatMap(h=>l.map(f=>c(d,h,f,p))))},{immediate:!0,flush:"post"}),u=()=>{s(),i()};return v3(u),u}function d8(){const o=e.ref(!1),t=e.getCurrentInstance();return t&&e.onMounted(()=>{o.value=!0},t),o}function u8(o){const t=d8();return e.computed(()=>(t.value,!!o()))}const ve=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},He="__vueuse_ssr_handlers__",C8=p8();function p8(){return He in ve||(ve[He]=ve[He]||{}),ve[He]}function h8(o,t){return C8[o]||t}function m8(o){return o==null?"any":o instanceof Set?"set":o instanceof Map?"map":o instanceof Date?"date":typeof o=="boolean"?"boolean":typeof o=="string"?"string":typeof o=="object"?"object":Number.isNaN(o)?"any":"number"}const f8={boolean:{read:o=>o==="true",write:o=>String(o)},object:{read:o=>JSON.parse(o),write:o=>JSON.stringify(o)},number:{read:o=>Number.parseFloat(o),write:o=>String(o)},any:{read:o=>o,write:o=>String(o)},string:{read:o=>o,write:o=>String(o)},map:{read:o=>new Map(JSON.parse(o)),write:o=>JSON.stringify(Array.from(o.entries()))},set:{read:o=>new Set(JSON.parse(o)),write:o=>JSON.stringify(Array.from(o))},date:{read:o=>new Date(o),write:o=>o.toISOString()}},r5="vueuse-storage";function l5(o,t,r,l={}){var n;const{flush:a="pre",deep:i=!0,listenToStorageChanges:c=!0,writeDefaults:s=!0,mergeDefaults:u=!1,shallow:d,window:C=m1,eventFilter:p,onError:h=_=>{console.error(_)},initOnMounted:f}=l,m=(d?e.shallowRef:e.ref)(typeof t=="function"?t():t);if(!r)try{r=h8("getDefaultStorage",()=>{var _;return(_=m1)==null?void 0:_.localStorage})()}catch(_){h(_)}if(!r)return m;const k=w2(t),M=m8(k),v=(n=l.serializer)!=null?n:f8[M],{pause:b,resume:L}=i8(m,()=>g(m.value),{flush:a,deep:i,eventFilter:p});C&&c&&c8(()=>{r instanceof Storage?Q1(C,"storage",S):Q1(C,r5,Z),f&&S()}),f||S();function T(_,I){if(C){const A={key:o,oldValue:_,newValue:I,storageArea:r};C.dispatchEvent(r instanceof Storage?new StorageEvent("storage",A):new CustomEvent(r5,{detail:A}))}}function g(_){try{const I=r.getItem(o);if(_==null)T(I,null),r.removeItem(o);else{const A=v.write(_);I!==A&&(r.setItem(o,A),T(I,A))}}catch(I){h(I)}}function H(_){const I=_?_.newValue:r.getItem(o);if(I==null)return s&&k!=null&&r.setItem(o,v.write(k)),k;if(!_&&u){const A=v.read(I);return typeof u=="function"?u(A,k):M==="object"&&!Array.isArray(A)?{...k,...A}:A}else return typeof I!="string"?I:v.read(I)}function S(_){if(!(_&&_.storageArea!==r)){if(_&&_.key==null){m.value=k;return}if(!(_&&_.key!==o)){b();try{(_==null?void 0:_.newValue)!==v.write(m.value)&&(m.value=H(_))}catch(I){h(I)}finally{_?e.nextTick(L):L()}}}}function Z(_){S(_.detail)}return m}function k8(o,t={}){var r,l;const{pointerTypes:n,preventDefault:a,stopPropagation:i,exact:c,onMove:s,onEnd:u,onStart:d,initialValue:C,axis:p="both",draggingElement:h=m1,containerElement:f,handle:m=o,buttons:k=[0]}=t,M=e.ref((r=w2(C))!=null?r:{x:0,y:0}),v=e.ref(),b=S=>n?n.includes(S.pointerType):!0,L=S=>{w2(a)&&S.preventDefault(),w2(i)&&S.stopPropagation()},T=S=>{var Z;if(!w2(k).includes(S.button)||w2(t.disabled)||!b(S)||w2(c)&&S.target!==w2(o))return;const _=w2(f),I=(Z=_==null?void 0:_.getBoundingClientRect)==null?void 0:Z.call(_),A=w2(o).getBoundingClientRect(),Q={x:S.clientX-(_?A.left-I.left+_.scrollLeft:A.left),y:S.clientY-(_?A.top-I.top+_.scrollTop:A.top)};(d==null?void 0:d(Q,S))!==!1&&(v.value=Q,L(S))},g=S=>{if(w2(t.disabled)||!b(S)||!v.value)return;const Z=w2(f),_=w2(o).getBoundingClientRect();let{x:I,y:A}=M.value;(p==="x"||p==="both")&&(I=S.clientX-v.value.x,Z&&(I=Math.min(Math.max(0,I),Z.scrollWidth-_.width))),(p==="y"||p==="both")&&(A=S.clientY-v.value.y,Z&&(A=Math.min(Math.max(0,A),Z.scrollHeight-_.height))),M.value={x:I,y:A},s==null||s(M.value,S),L(S)},H=S=>{w2(t.disabled)||!b(S)||v.value&&(v.value=void 0,u==null||u(M.value,S),L(S))};if(J9){const S={capture:(l=t.capture)!=null?l:!0};Q1(m,"pointerdown",T,S),Q1(h,"pointermove",g,S),Q1(h,"pointerup",H,S)}return{...s8(M),position:M,isDragging:e.computed(()=>!!v.value),style:e.computed(()=>`left:${M.value.x}px;top:${M.value.y}px;`)}}function y8(o,t,r={}){const{window:l=m1,...n}=r;let a;const i=u8(()=>l&&"ResizeObserver"in l),c=()=>{a&&(a.disconnect(),a=void 0)},s=e.computed(()=>{const C=w2(o);return Array.isArray(C)?C.map(p=>x3(p)):[x3(C)]}),u=e.watch(s,C=>{if(c(),i.value&&l){a=new ResizeObserver(t);for(const p of C)p&&a.observe(p,n)}},{immediate:!0,flush:"post"}),d=()=>{c(),u()};return v3(d),{isSupported:i,stop:d}}function n5(o,t,r={}){const{window:l=m1}=r;return l5(o,t,l==null?void 0:l.localStorage,r)}function g8(o,t,r={}){const{window:l=m1}=r;return l5(o,t,l==null?void 0:l.sessionStorage,r)}function b8(o){var t;const r=e.ref(void 0),l=e.ref(void 0),n=(t=void 0)!=null?t:"height",a=e.ref(1),i=e.ref(0);function c(){var s;if(!r.value)return;let u="";r.value.style[n]="1px",a.value=(s=r.value)==null?void 0:s.scrollHeight;const d=w2(void 0);d?d.style[n]=`${a.value}px`:u=`${a.value}px`,r.value.style[n]=u}return e.watch([l,r],()=>e.nextTick(c),{immediate:!0}),e.watch(a,()=>{var s;return(s=void 0)==null?void 0:s.call(o)}),y8(r,([{contentRect:s}])=>{i.value!==s.width&&(i.value=s.width,c())}),{textarea:r,input:l,triggerResize:c}}const B3=Object.assign({},{linear:t5},{easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]});function L8([o,t,r,l]){const n=(d,C)=>1-3*C+3*d,a=(d,C)=>3*C-6*d,i=d=>3*d,c=(d,C,p)=>((n(C,p)*d+a(C,p))*d+i(C))*d,s=(d,C,p)=>3*n(C,p)*d*d+2*a(C,p)*d+i(C),u=d=>{let C=d;for(let p=0;p<4;++p){const h=s(C,o,r);if(h===0)return C;const f=c(C,o,r)-d;C-=f/h}return C};return d=>o===t&&r===l?d:c(u(d),t,l)}function a5(o,t,r){return o+r*(t-o)}function S3(o){return(typeof o=="number"?[o]:o)||[]}function M8(o,t,r,l={}){var n,a;const i=w2(t),c=w2(r),s=S3(i),u=S3(c),d=(n=w2(l.duration))!=null?n:1e3,C=Date.now(),p=Date.now()+d,h=typeof l.transition=="function"?l.transition:(a=w2(l.transition))!=null?a:t5,f=typeof h=="function"?h:L8(h);return new Promise(m=>{o.value=i;const k=()=>{var M;if((M=l.abort)!=null&&M.call(l)){m();return}const v=Date.now(),b=f((v-C)/d),L=S3(o.value).map((T,g)=>a5(s[g],u[g],b));Array.isArray(o.value)?o.value=L.map((T,g)=>{var H,S;return a5((H=s[g])!=null?H:0,(S=u[g])!=null?S:0,b)}):typeof o.value=="number"&&(o.value=L[0]),v<p?requestAnimationFrame(k):(o.value=c,m())};k()})}function Z3(o,t={}){let r=0;const l=()=>{const a=w2(o);return typeof a=="number"?a:a.map(w2)},n=e.ref(l());return e.watch(l,async a=>{var i,c;if(w2(t.disabled))return;const s=++r;if(t.delay&&await l8(w2(t.delay)),s!==r)return;const u=Array.isArray(a)?a.map(w2):w2(a);(i=t.onStarted)==null||i.call(t),await M8(n,n.value,u,{...t,abort:()=>{var d;return s!==r||((d=t.abort)==null?void 0:d.call(t))}}),(c=t.onFinished)==null||c.call(t)},{deep:!0}),e.watch(()=>w2(t.disabled),a=>{a&&(r++,n.value=l())}),v3(()=>{r++}),e.computed(()=>w2(t.disabled)?l():n.value)}const w8=_e(o=>{o()},150),xe=e.ref([]),i5=D0();class V8{constructor(t,r){s2(this,"id");s2(this,"target");s2(this,"content");s2(this,"visible",e.ref(!1));s2(this,"position",e.ref({top:null,left:null,translate:"translate(0, 0)"}));s2(this,"placement");s2(this,"size");s2(this,"arrow");s2(this,"color");s2(this,"textColor");s2(this,"showTooltip",()=>{var r;this.updateTooltipPosition(),this.visible.value=!0;let t=document.getElementById(String(this.id));if(!t){const l=document.createElement("div");l.classList.add("mc-tooltip"),l.id=String(this.id),l.innerText=this.content||"",l.style.setProperty("--tooltip-color",this.color),l.style.setProperty("--tooltip-text-color",this.textColor),l.setAttribute("tooltip-placement",this.placement),l.setAttribute("tooltip-size",this.size),l.setAttribute("tooltip-arrow",String(this.arrow)),(r=document.getElementById("tooltip-container"))==null||r.appendChild(l)}if(t=document.getElementById(String(this.id)),t){t.style.visibility="visible";for(const l in this.position.value)l&&i5.hasProperty(this.position.value,l)&&(t.style[l]=`${this.position.value[l]}px`);t.style.transform=this.position.value.translate}});s2(this,"hideTooltip",()=>{this.visible.value=!1;const t=document.getElementById(String(this.id));t&&(t.style.visibility="hidden")});s2(this,"updateTooltipPosition",()=>{const{top:t,left:r,width:l,height:n}=this.target.getBoundingClientRect(),a=t+window.scrollY,i=r+window.scrollX,c=4,s=this.arrow?4:0;switch(this.placement){case s0.Right:this.position.value={top:a,left:i+l+(c+s),translate:`translate(0, calc(-50% + ${n/2}px))`};break;case s0.Left:this.position.value={top:a,left:i-(c+s),translate:`translate(-100%, calc(-50% + ${n/2}px))`};break;case s0.Top:this.position.value={top:a-(c+s),left:i+l/2,translate:"translate(-50%, -100%)"};break;case s0.Bottom:this.position.value={top:a+n+(c+s),left:i+l/2,translate:"translate(-50%, 0%)"};break}});s2(this,"destroy",()=>{this.target.removeEventListener("mouseenter",this.showTooltip),this.target.removeEventListener("mouseleave",this.hideTooltip),xe.value=xe.value.filter(r=>r.id!==this.id);const t=document.getElementById(String(this.id));t&&t.remove()});this.target=t,this.content=r.content,this.placement=r.placement||s0.Top,this.size=r.size||N0.M,this.id=G1().timestamp(5),this.arrow=i5.hasProperty(r,"arrow")?!!r.arrow:!0,this.color=r.color||v2.black,this.textColor=r.textColor||v2.white,this.target.addEventListener("mouseenter",this.showTooltip),this.target.addEventListener("mouseleave",this.hideTooltip),xe.value.push(this)}}const Be=w8(()=>{xe.value.forEach(o=>o.updateTooltipPosition())}),_8=()=>{const o=document.createElement("div");o.id="tooltip-container",document.body.appendChild(o)},v8=()=>{document.getElementById("tooltip-container")||_8()};e.onMounted(()=>{window.addEventListener("scroll",()=>Be),window.addEventListener("resize",()=>Be)}),e.onBeforeUnmount(()=>{window.removeEventListener("scroll",()=>Be),window.removeEventListener("resize",()=>Be)});function D3(){const o=e.ref(null);return{mounted(t,r){v8(),r.value.content&&(o.value=new V8(t,r.value))},updated(){},beforeUnmount(){var t;(t=o.value)==null||t.destroy()}}}const H8={key:0,class:"mc-button__prepend"},x8={key:1,class:"mc-button__loader"},B8={key:2,class:"mc-button__text"},S8={key:3,class:"mc-button__append"},Z8={key:4,class:"mc-button__background"},E2=e.defineComponent({__name:"McButton",props:{to:{type:String},href:{type:String},nuxt:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},inactive:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},iconLoading:{type:Boolean,default:!1},type:{type:String,default:null},variation:{type:String,default:"purple"},size:{type:String,default:"m"},shadow:{type:Boolean,default:!1},rounded:{type:Boolean,default:!1},semiRounded:{type:Boolean,default:!1},textAlign:{type:String,default:"center"},fullWidth:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1},exact:{type:Boolean,default:!1},uppercase:{type:Boolean,default:!1},defaultTag:{type:String,default:"button"},secondaryColor:{type:String,default:null},underlineLink:{type:Boolean,default:!1},bgFlat:{type:Boolean,default:!1},weight:{type:String,default:"semi-bold"},tooltip:{type:String,default:null},tooltipPlacement:{type:String,default:null},tabindex:{type:[String,Number]}},emits:["blur","click"],setup(o,{emit:t}){const r=D3(),l=e.computed(()=>{let m={};return n.tooltip&&(m={content:n.tooltip,size:N0.M,placement:n.tooltipPlacement||s0.Top}),m}),n=o,a=e.ref(null),i=t,c=e.computed(()=>({[`mc-button--variation-${n.variation}`]:!!n.variation,[`mc-button--size-${n.size}`]:!!n.size,[`mc-button--text-align-${n.textAlign}`]:!!n.textAlign,"mc-button--loading":!!n.loading,"mc-button--icon-loading":!!n.iconLoading,"mc-button--is-active":!!n.isActive,"mc-button--disabled":!!n.disabled,"mc-button--rounded":n.rounded&&/-compact$/.test(n.size),"mc-button--semi-rounded":!!n.semiRounded,"mc-button--full-width":!!n.fullWidth,"mc-button--uppercase":!!n.uppercase,"mc-button--shadow":!!n.shadow,"mc-button--secondary-color":!!n.secondaryColor,"mc-button--underline-link":!!n.underlineLink,"mc-button--bg-flat":!!n.bgFlat,[`mc-button--type-${s.value.type}`]:!!s.value.type,"mc-button--inactive":!!n.inactive})),s=e.computed(()=>{const m=n.variation,k=m.split("-"),M=k[k.length-1];let v=m.replace(`-${M}`,"");switch(M){case L0.Link:case L0.Flat:case L0.Outline:case L0.Invert:break;default:{v=m;break}}return{color:v,type:M}}),u=e.computed(()=>{let m,k;switch(s.value.type){case L0.Link:case L0.Flat:case L0.Outline:case L0.Invert:break;default:{switch(s.value.color){case"yellow":case"white":{m="0.9";break}case"toxic":break;default:k="white"}break}}return{"--mc-button-secondary-color":n.secondaryColor&&v2[n.secondaryColor],"--mc-button-background-color":n.variation&&v2[s.value.color],"--mc-button-font-weight":n.weight&&i3[n.weight],"--mc-button-hover-brightness":m,"--mc-button-text-color":k&&v2[k]}}),d=e.computed(()=>n.to?n.nuxt?"nuxt-link":"router-link":n.href?"a":n.defaultTag),C=e.computed(()=>s.value.type===L0.Link),p=e.computed(()=>{let m={to:n.to,href:n.href,disabled:!1,rel:"",type:n.type,tabindex:n.tabindex};return n.to?delete m.href:n.href?delete m.to:(n.disabled||n.loading)&&(m.disabled=!0),C.value&&(m.rel="noreferrer"),m}),h=m=>{i("blur",m)},f=m=>{i("click",m)};return(m,k)=>e.withDirectives((e.openBlock(),e.createBlock(e.resolveDynamicComponent(d.value),e.mergeProps({ref:a.value},{...p.value},{class:["mc-button",c.value],exact:o.exact,style:u.value,onBlur:h,onClick:f}),{default:e.withCtx(()=>[m.$slots["icon-prepend"]?(e.openBlock(),e.createElementBlock("span",H8,[e.renderSlot(m.$slots,"icon-prepend")])):e.createCommentVNode("",!0),o.loading?(e.openBlock(),e.createElementBlock("span",x8,[e.createVNode(e.unref(V2),{class:"mc-button__loader-icon",type:"div",name:"loader"})])):e.createCommentVNode("",!0),m.$slots.default?(e.openBlock(),e.createElementBlock("span",B8,[e.renderSlot(m.$slots,"default")])):e.createCommentVNode("",!0),m.$slots["icon-append"]?(e.openBlock(),e.createElementBlock("span",S8,[e.renderSlot(m.$slots,"icon-append")])):e.createCommentVNode("",!0),C.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",Z8))]),_:3},16,["class","exact","style"])),[[e.unref(r),l.value]])}}),D8={key:0,class:"mc-chip__icon"},E8={key:1,class:"mc-chip__title"},T8={key:2,class:"mc-chip__counter"},X1=e.defineComponent({__name:"McChip",props:{title:{type:[String,Number],default:""},closable:{type:Boolean,default:!1},variation:{type:String,default:"transparent"},counter:{type:[String,Number],default:null},size:{type:String,default:"m"},textColor:{type:String,default:""}},emits:["close","click"],setup(o,{emit:t}){const r=t,l=o,n=e.computed(()=>({[`mc-chip--variation-${a.value.variation}`]:!!l.variation,[`mc-chip--size-${l.size}`]:!!l.size})),a=e.computed(()=>{var h;const u=(h=l.variation)==null?void 0:h.split("-"),d=u[u.length-1];let C,p;switch(d){case Le.Outline:case Le.Invert:{p=d,C=l.variation.replace(`-${d}`,"");break}default:{p="default",C=l.variation;break}}return{color:C,variation:p}}),i=e.computed(()=>{const u=l.textColor||"white";return{"--mc-chip-color":v2[a.value.color],"--mc-chip-text-color":v2[u]}}),c=u=>{r("close",u)},s=u=>{r("click",u)};return(u,d)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(["mc-chip",n.value]),tabindex:"0",style:e.normalizeStyle(i.value),onClick:s},[u.$slots.icon?(e.openBlock(),e.createElementBlock("div",D8,[e.renderSlot(u.$slots,"icon")])):e.createCommentVNode("",!0),o.title||u.$slots.default?(e.openBlock(),e.createElementBlock("div",E8,[e.renderSlot(u.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(o.title),1)])])):e.createCommentVNode("",!0),o.counter||o.counter===0?(e.openBlock(),e.createElementBlock("div",T8,e.toDisplayString(o.counter),1)):e.createCommentVNode("",!0),o.closable?(e.openBlock(),e.createElementBlock("button",{key:3,class:"mc-chip__button",type:"button",onClick:e.withModifiers(c,["stop"])},[e.renderSlot(u.$slots,"button",{},()=>[e.createVNode(e.unref(V2),{size:"200",name:"cancel"})])])):e.createCommentVNode("",!0)],6))}});var s5=60,c5=s5*60,d5=c5*24,A8=d5*7,B1=1e3,Se=s5*B1,u5=c5*B1,$8=d5*B1,F8=A8*B1,Ze="millisecond",S1="second",O0="minute",Z1="hour",o1="day",De="week",M0="month",C5="quarter",r1="year",D1="date",z8="YYYY-MM-DDTHH:mm:ssZ",p5="Invalid Date",N8=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,O8=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g;const h5={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(t){var r=["th","st","nd","rd"],l=t%100;return"["+t+(r[(l-20)%10]||r[l]||r[0])+"]"}},P8=Object.freeze(Object.defineProperty({__proto__:null,default:h5},Symbol.toStringTag,{value:"Module"}));var E3=function(t,r,l){var n=String(t);return!n||n.length>=r?t:""+Array(r+1-n.length).join(l)+t},j8=function(t){var r=-t.utcOffset(),l=Math.abs(r),n=Math.floor(l/60),a=l%60;return(r<=0?"+":"-")+E3(n,2,"0")+":"+E3(a,2,"0")},R8=function o(t,r){if(t.date()<r.date())return-o(r,t);var l=(r.year()-t.year())*12+(r.month()-t.month()),n=t.clone().add(l,M0),a=r-n<0,i=t.clone().add(l+(a?-1:1),M0);return+(-(l+(r-n)/(a?n-i:i-n))||0)},I8=function(t){return t<0?Math.ceil(t)||0:Math.floor(t)},Y8=function(t){var r={M:M0,y:r1,w:De,d:o1,D:D1,h:Z1,m:O0,s:S1,ms:Ze,Q:C5};return r[t]||String(t||"").toLowerCase().replace(/s$/,"")},U8=function(t){return t===void 0};const q8={s:E3,z:j8,m:R8,a:I8,p:Y8,u:U8};var J1="en",f1={};f1[J1]=h5;var m5="$isDayjsObject",T3=function(t){return t instanceof Te||!!(t&&t[m5])},Ee=function o(t,r,l){var n;if(!t)return J1;if(typeof t=="string"){var a=t.toLowerCase();f1[a]&&(n=a),r&&(f1[a]=r,n=a);var i=t.split("-");if(!n&&i.length>1)return o(i[0])}else{var c=t.name;f1[c]=t,n=c}return!l&&n&&(J1=n),n||!l&&J1},f2=function(t,r){if(T3(t))return t.clone();var l=typeof r=="object"?r:{};return l.date=t,l.args=arguments,new Te(l)},W8=function(t,r){return f2(t,{locale:r.$L,utc:r.$u,x:r.$x,$offset:r.$offset})},D2=q8;D2.l=Ee,D2.i=T3,D2.w=W8;var G8=function(t){var r=t.date,l=t.utc;if(r===null)return new Date(NaN);if(D2.u(r))return new Date;if(r instanceof Date)return new Date(r);if(typeof r=="string"&&!/Z$/i.test(r)){var n=r.match(N8);if(n){var a=n[2]-1||0,i=(n[7]||"0").substring(0,3);return l?new Date(Date.UTC(n[1],a,n[3]||1,n[4]||0,n[5]||0,n[6]||0,i)):new Date(n[1],a,n[3]||1,n[4]||0,n[5]||0,n[6]||0,i)}}return new Date(r)},Te=function(){function o(r){this.$L=Ee(r.locale,null,!0),this.parse(r),this.$x=this.$x||r.x||{},this[m5]=!0}var t=o.prototype;return t.parse=function(l){this.$d=G8(l),this.init()},t.init=function(){var l=this.$d;this.$y=l.getFullYear(),this.$M=l.getMonth(),this.$D=l.getDate(),this.$W=l.getDay(),this.$H=l.getHours(),this.$m=l.getMinutes(),this.$s=l.getSeconds(),this.$ms=l.getMilliseconds()},t.$utils=function(){return D2},t.isValid=function(){return this.$d.toString()!==p5},t.isSame=function(l,n){var a=f2(l);return this.startOf(n)<=a&&a<=this.endOf(n)},t.isAfter=function(l,n){return f2(l)<this.startOf(n)},t.isBefore=function(l,n){return this.endOf(n)<f2(l)},t.$g=function(l,n,a){return D2.u(l)?this[n]:this.set(a,l)},t.unix=function(){return Math.floor(this.valueOf()/1e3)},t.valueOf=function(){return this.$d.getTime()},t.startOf=function(l,n){var a=this,i=D2.u(n)?!0:n,c=D2.p(l),s=function(M,v){var b=D2.w(a.$u?Date.UTC(a.$y,v,M):new Date(a.$y,v,M),a);return i?b:b.endOf(o1)},u=function(M,v){var b=[0,0,0,0],L=[23,59,59,999];return D2.w(a.toDate()[M].apply(a.toDate("s"),(i?b:L).slice(v)),a)},d=this.$W,C=this.$M,p=this.$D,h="set"+(this.$u?"UTC":"");switch(c){case r1:return i?s(1,0):s(31,11);case M0:return i?s(1,C):s(0,C+1);case De:{var f=this.$locale().weekStart||0,m=(d<f?d+7:d)-f;return s(i?p-m:p+(6-m),C)}case o1:case D1:return u(h+"Hours",0);case Z1:return u(h+"Minutes",1);case O0:return u(h+"Seconds",2);case S1:return u(h+"Milliseconds",3);default:return this.clone()}},t.endOf=function(l){return this.startOf(l,!1)},t.$set=function(l,n){var a,i=D2.p(l),c="set"+(this.$u?"UTC":""),s=(a={},a[o1]=c+"Date",a[D1]=c+"Date",a[M0]=c+"Month",a[r1]=c+"FullYear",a[Z1]=c+"Hours",a[O0]=c+"Minutes",a[S1]=c+"Seconds",a[Ze]=c+"Milliseconds",a)[i],u=i===o1?this.$D+(n-this.$W):n;if(i===M0||i===r1){var d=this.clone().set(D1,1);d.$d[s](u),d.init(),this.$d=d.set(D1,Math.min(this.$D,d.daysInMonth())).$d}else s&&this.$d[s](u);return this.init(),this},t.set=function(l,n){return this.clone().$set(l,n)},t.get=function(l){return this[D2.p(l)]()},t.add=function(l,n){var a=this,i;l=Number(l);var c=D2.p(n),s=function(p){var h=f2(a);return D2.w(h.date(h.date()+Math.round(p*l)),a)};if(c===M0)return this.set(M0,this.$M+l);if(c===r1)return this.set(r1,this.$y+l);if(c===o1)return s(1);if(c===De)return s(7);var u=(i={},i[O0]=Se,i[Z1]=u5,i[S1]=B1,i)[c]||1,d=this.$d.getTime()+l*u;return D2.w(d,this)},t.subtract=function(l,n){return this.add(l*-1,n)},t.format=function(l){var n=this,a=this.$locale();if(!this.isValid())return a.invalidDate||p5;var i=l||z8,c=D2.z(this),s=this.$H,u=this.$m,d=this.$M,C=a.weekdays,p=a.months,h=a.meridiem,f=function(b,L,T,g){return b&&(b[L]||b(n,i))||T[L].slice(0,g)},m=function(b){return D2.s(s%12||12,b,"0")},k=h||function(v,b,L){var T=v<12?"AM":"PM";return L?T.toLowerCase():T},M=function(b){switch(b){case"YY":return String(n.$y).slice(-2);case"YYYY":return D2.s(n.$y,4,"0");case"M":return d+1;case"MM":return D2.s(d+1,2,"0");case"MMM":return f(a.monthsShort,d,p,3);case"MMMM":return f(p,d);case"D":return n.$D;case"DD":return D2.s(n.$D,2,"0");case"d":return String(n.$W);case"dd":return f(a.weekdaysMin,n.$W,C,2);case"ddd":return f(a.weekdaysShort,n.$W,C,3);case"dddd":return C[n.$W];case"H":return String(s);case"HH":return D2.s(s,2,"0");case"h":return m(1);case"hh":return m(2);case"a":return k(s,u,!0);case"A":return k(s,u,!1);case"m":return String(u);case"mm":return D2.s(u,2,"0");case"s":return String(n.$s);case"ss":return D2.s(n.$s,2,"0");case"SSS":return D2.s(n.$ms,3,"0");case"Z":return c}return null};return i.replace(O8,function(v,b){return b||M(v)||c.replace(":","")})},t.utcOffset=function(){return-Math.round(this.$d.getTimezoneOffset()/15)*15},t.diff=function(l,n,a){var i=this,c=D2.p(n),s=f2(l),u=(s.utcOffset()-this.utcOffset())*Se,d=this-s,C=function(){return D2.m(i,s)},p;switch(c){case r1:p=C()/12;break;case M0:p=C();break;case C5:p=C()/3;break;case De:p=(d-u)/F8;break;case o1:p=(d-u)/$8;break;case Z1:p=d/u5;break;case O0:p=d/Se;break;case S1:p=d/B1;break;default:p=d;break}return a?p:D2.a(p)},t.daysInMonth=function(){return this.endOf(M0).$D},t.$locale=function(){return f1[this.$L]},t.locale=function(l,n){if(!l)return this.$L;var a=this.clone(),i=Ee(l,n,!0);return i&&(a.$L=i),a},t.clone=function(){return D2.w(this.$d,this)},t.toDate=function(){return new Date(this.valueOf())},t.toJSON=function(){return this.isValid()?this.toISOString():null},t.toISOString=function(){return this.$d.toISOString()},t.toString=function(){return this.$d.toUTCString()},o}(),f5=Te.prototype;f2.prototype=f5,[["$ms",Ze],["$s",S1],["$m",O0],["$H",Z1],["$W",o1],["$M",M0],["$y",r1],["$D",D1]].forEach(function(o){f5[o[1]]=function(t){return this.$g(t,o[0],o[1])}}),f2.extend=function(o,t){return o.$i||(o(t,Te,f2),o.$i=!0),f2},f2.locale=Ee,f2.isDayjs=T3,f2.unix=function(o){return f2(o*1e3)},f2.en=f1[J1],f2.Ls=f1,f2.p={};var K8={year:0,month:1,day:2,hour:3,minute:4,second:5},k5={},Q8=function(t,r){r===void 0&&(r={});var l=r.timeZoneName||"short",n=t+"|"+l,a=k5[n];return a||(a=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:t,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:l}),k5[n]=a),a};const X8=function(o,t,r){var l,n=function(d,C,p){p===void 0&&(p={});var h=new Date(d),f=Q8(C,p);return f.formatToParts(h)},a=function(d,C){for(var p=n(d,C),h=[],f=0;f<p.length;f+=1){var m=p[f],k=m.type,M=m.value,v=K8[k];v>=0&&(h[v]=parseInt(M,10))}var b=h[3],L=b===24?0:b,T=h[0]+"-"+h[1]+"-"+h[2]+" "+L+":"+h[4]+":"+h[5]+":000",g=r.utc(T).valueOf(),H=+d,S=H%1e3;return H-=S,(g-H)/6e4},i=function(d,C,p){var h=d-C*60*1e3,f=a(h,p);if(C===f)return[h,C];h-=(f-C)*60*1e3;var m=a(h,p);return f===m?[h,f]:[d-Math.min(f,m)*60*1e3,Math.max(f,m)]},c=t.prototype;c.tz=function(u,d){u===void 0&&(u=l);var C=this.utcOffset(),p=this.toDate(),h=p.toLocaleString("en-US",{timeZone:u}),f=Math.round((p-new Date(h))/1e3/60),m=-Math.round(p.getTimezoneOffset()/15)*15-f,k=!Number(m),M;if(k)M=this.utcOffset(0,d);else if(M=r(h,{locale:this.$L}).$set(Ze,this.$ms).utcOffset(m,!0),d){var v=M.utcOffset();M=M.add(C-v,O0)}return M.$x.$timezone=u,M},c.offsetName=function(u){var d=this.$x.$timezone||r.tz.guess(),C=n(this.valueOf(),d,{timeZoneName:u}).find(function(p){return p.type.toLowerCase()==="timezonename"});return C&&C.value};var s=c.startOf;c.startOf=function(u,d){if(!this.$x||!this.$x.$timezone)return s.call(this,u,d);var C=r(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L}),p=s.call(C,u,d);return p.tz(this.$x.$timezone,!0)},r.tz=function(u,d,C){var p=C&&d,h=C||d||l,f=a(+r(),h);if(typeof u!="string")return r(u).tz(h);var m=r.utc(u,p).valueOf(),k=i(m,f,h),M=k[0],v=k[1],b=r(M).utcOffset(v);return b.$x.$timezone=h,b},r.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},r.tz.setDefault=function(u){l=u}};var J8=/[+-]\d\d(?::?\d\d)?/g,et=/([+-]|\d\d)/g;function tt(o){o===void 0&&(o="");var t=o.match(J8);if(!t)return null;var r=(""+t[0]).match(et)||["-",0,0],l=r[0],n=r[1],a=r[2],i=+n*60+ +a;return i===0?0:l==="+"?i:-i}const ot=function(o,t,r){var l=t.prototype;r.utc=function(C){var p={date:C,utc:!0,args:arguments};return new t(p)},l.utc=function(C){var p=r(this.toDate(),{locale:this.$L,utc:!0});return C?p.add(this.utcOffset(),O0):p},l.local=function(){return r(this.toDate(),{locale:this.$L,utc:!1})};var n=l.parse;l.parse=function(C){C.utc&&(this.$u=!0),this.$utils().u(C.$offset)||(this.$offset=C.$offset),n.call(this,C)};var a=l.init;l.init=function(){if(this.$u){var C=this.$d;this.$y=C.getUTCFullYear(),this.$M=C.getUTCMonth(),this.$D=C.getUTCDate(),this.$W=C.getUTCDay(),this.$H=C.getUTCHours(),this.$m=C.getUTCMinutes(),this.$s=C.getUTCSeconds(),this.$ms=C.getUTCMilliseconds()}else a.call(this)};var i=l.utcOffset;l.utcOffset=function(C,p){var h=this.$utils(),f=h.u;if(f(C))return this.$u?0:f(this.$offset)?i.call(this):this.$offset;if(typeof C=="string"&&(C=tt(C),C===null))return this;var m=Math.abs(C)<=16?C*60:C,k=this;if(p)return k.$offset=m,k.$u=C===0,k;if(C!==0){var M=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();k=this.local().add(m+M,O0),k.$offset=m,k.$x.$localOffset=M}else k=this.utc();return k};var c=l.format,s="YYYY-MM-DDTHH:mm:ss[Z]";l.format=function(C){var p=C||(this.$u?s:"");return c.call(this,p)},l.valueOf=function(){var C=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-C*Se},l.isUTC=function(){return!!this.$u},l.toISOString=function(){return this.toDate().toISOString()},l.toString=function(){return this.toDate().toUTCString()};var u=l.toDate;l.toDate=function(C){return C==="s"&&this.$offset?r(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():u.call(this)};var d=l.diff;l.diff=function(C,p,h){if(C&&this.$u===C.$u)return d.call(this,C,p,h);var f=this.local(),m=r(C).local();return d.call(f,m,p,h)}};var rt=function(t){return t.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(r,l,n){return l||n.slice(1)})},lt={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},nt=function(t,r){return t.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(l,n,a){var i=a&&a.toUpperCase();return n||r[a]||lt[a]||rt(r[i])})},at=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,y5=/\d/,ee=/\d\d/,it=/\d{3}/,st=/\d{4}/,w0=/\d\d?/,ct=/[+-]?\d+/,dt=/[+-]\d\d:?(\d\d)?|Z/,te=/\d*[^-_:/,()\s\d]+/,l1={},g5=function(t){return t=+t,t+(t>68?1900:2e3)};function ut(o){if(!o||o==="Z")return 0;var t=o.match(/([+-]|\d\d)/g),r=+(t[1]*60)+(+t[2]||0);return r===0?0:t[0]==="+"?-r:r}var o0=function(t){return function(r){this[t]=+r}},b5=[dt,function(o){var t=this.zone||(this.zone={});t.offset=ut(o)}],A3=function(t){var r=l1[t];return r&&(r.indexOf?r:r.s.concat(r.f))},L5=function(t,r){var l,n=l1,a=n.meridiem;if(!a)l=t===(r?"pm":"PM");else for(var i=1;i<=24;i+=1)if(t.indexOf(a(i,0,r))>-1){l=i>12;break}return l},Ct={A:[te,function(o){this.afternoon=L5(o,!1)}],a:[te,function(o){this.afternoon=L5(o,!0)}],Q:[y5,function(o){this.month=(o-1)*3+1}],S:[y5,function(o){this.milliseconds=+o*100}],SS:[ee,function(o){this.milliseconds=+o*10}],SSS:[it,function(o){this.milliseconds=+o}],s:[w0,o0("seconds")],ss:[w0,o0("seconds")],m:[w0,o0("minutes")],mm:[w0,o0("minutes")],H:[w0,o0("hours")],h:[w0,o0("hours")],HH:[w0,o0("hours")],hh:[w0,o0("hours")],D:[w0,o0("day")],DD:[ee,o0("day")],Do:[te,function(o){var t=l1,r=t.ordinal,l=o.match(/\d+/);if(this.day=l[0],!!r)for(var n=1;n<=31;n+=1)r(n).replace(/\[|\]/g,"")===o&&(this.day=n)}],w:[w0,o0("week")],ww:[ee,o0("week")],M:[w0,o0("month")],MM:[ee,o0("month")],MMM:[te,function(o){var t=A3("months"),r=A3("monthsShort"),l=(r||t.map(function(n){return n.slice(0,3)})).indexOf(o)+1;if(l<1)throw new Error;this.month=l%12||l}],MMMM:[te,function(o){var t=A3("months"),r=t.indexOf(o)+1;if(r<1)throw new Error;this.month=r%12||r}],Y:[ct,o0("year")],YY:[ee,function(o){this.year=g5(o)}],YYYY:[st,o0("year")],Z:b5,ZZ:b5};function pt(o){var t=o.afternoon;if(t!==void 0){var r=o.hours;t?r<12&&(o.hours+=12):r===12&&(o.hours=0),delete o.afternoon}}function ht(o){o=nt(o,l1&&l1.formats);for(var t=o.match(at),r=t.length,l=0;l<r;l+=1){var n=t[l],a=Ct[n],i=a&&a[0],c=a&&a[1];c?t[l]={regex:i,parser:c}:t[l]=n.replace(/^\[|\]$/g,"")}return function(s){for(var u={},d=0,C=0;d<r;d+=1){var p=t[d];if(typeof p=="string")C+=p.length;else{var h=p.regex,f=p.parser,m=s.slice(C),k=h.exec(m),M=k[0];f.call(u,M),s=s.replace(M,"")}}return pt(u),u}}var mt=function(t,r,l,n){try{if(["x","X"].indexOf(r)>-1)return new Date((r==="X"?1e3:1)*t);var a=ht(r),i=a(t),c=i.year,s=i.month,u=i.day,d=i.hours,C=i.minutes,p=i.seconds,h=i.milliseconds,f=i.zone,m=i.week,k=new Date,M=u||(!c&&!s?k.getDate():1),v=c||k.getFullYear(),b=0;c&&!s||(b=s>0?s-1:k.getMonth());var L=d||0,T=C||0,g=p||0,H=h||0;if(f)return new Date(Date.UTC(v,b,M,L,T,g,H+f.offset*60*1e3));if(l)return new Date(Date.UTC(v,b,M,L,T,g,H));var S;return S=new Date(v,b,M,L,T,g,H),m&&(S=n(S).week(m).toDate()),S}catch{return new Date("")}};const ft=function(o,t,r){r.p.customParseFormat=!0,o&&o.parseTwoDigitYear&&(g5=o.parseTwoDigitYear);var l=t.prototype,n=l.parse;l.parse=function(a){var i=a.date,c=a.utc,s=a.args;this.$u=c;var u=s[1];if(typeof u=="string"){var d=s[2]===!0,C=s[3]===!0,p=d||C,h=s[2];C&&(h=s[2]),l1=this.$locale(),!d&&h&&(l1=r.Ls[h]),this.$d=mt(i,u,c,r),this.init(),h&&h!==!0&&(this.$L=this.locale(h).$L),p&&i!=this.format(u)&&(this.$d=new Date("")),l1={}}else if(u instanceof Array)for(var f=u.length,m=1;m<=f;m+=1){s[1]=u[m-1];var k=r.apply(this,s);if(k.isValid()){this.$d=k.$d,this.$L=k.$L,this.init();break}m===f&&(this.$d=new Date(""))}else n.call(this,a)}};var M5={name:"es",monthsShort:"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),weekStart:1,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinal:function(t){return t+"º"}};f2.locale(M5,null,!0);const kt=Object.freeze(Object.defineProperty({__proto__:null,default:M5},Symbol.toStringTag,{value:"Module"}));var w5={name:"pt",weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sab".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sa".split("_"),months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(t){return t+"º"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},relativeTime:{future:"em %s",past:"há %s",s:"alguns segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"}};f2.locale(w5,null,!0);const yt=Object.freeze(Object.defineProperty({__proto__:null,default:w5},Symbol.toStringTag,{value:"Module"}));var V5={name:"th",weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"},ordinal:function(t){return t+"."}};f2.locale(V5,null,!0);const gt=Object.freeze(Object.defineProperty({__proto__:null,default:V5},Symbol.toStringTag,{value:"Module"}));var _5="января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),v5="январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),H5="янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),x5="янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"),B5=/D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;function bt(o,t){var r=o.split("_");return t%10===1&&t%100!==11?r[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?r[1]:r[2]}function E1(o,t,r){var l={mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return r==="m"?t?"минута":"минуту":o+" "+bt(l[r],+o)}var $3=function(t,r){return B5.test(r)?_5[t.month()]:v5[t.month()]};$3.s=v5,$3.f=_5;var F3=function(t,r){return B5.test(r)?H5[t.month()]:x5[t.month()]};F3.s=x5,F3.f=H5;var S5={name:"ru",weekdays:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),weekdaysShort:"вск_пнд_втр_срд_чтв_птн_сбт".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),months:$3,monthsShort:F3,weekStart:1,yearStart:4,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:E1,mm:E1,h:"час",hh:E1,d:"день",dd:E1,M:"месяц",MM:E1,y:"год",yy:E1},ordinal:function(t){return t},meridiem:function(t){return t<4?"ночи":t<12?"утра":t<17?"дня":"вечера"}};f2.locale(S5,null,!0);const Lt=Object.freeze(Object.defineProperty({__proto__:null,default:S5},Symbol.toStringTag,{value:"Module"}));var Z5={name:"vi",weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),weekStart:1,weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),ordinal:function(t){return t},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"}};f2.locale(Z5,null,!0);const D5={en:P8,es:kt,pt:yt,th:gt,ru:Lt,vi:Object.freeze(Object.defineProperty({__proto__:null,default:Z5},Symbol.toStringTag,{value:"Module"}))};f2.extend(X8),f2.extend(ot),f2.extend(ft);function h2(o){const t=Object.prototype.toString.call(o);return o instanceof Date||typeof o=="object"&&t==="[object Date]"?new o.constructor(+o):typeof o=="number"||t==="[object Number]"||typeof o=="string"||t==="[object String]"?new Date(o):new Date(NaN)}function x2(o,t){return o instanceof Date?new o.constructor(t):new Date(t)}function V0(o,t){const r=h2(o);return isNaN(t)?x2(o,NaN):(t&&r.setDate(r.getDate()+t),r)}function _0(o,t){const r=h2(o);if(isNaN(t))return x2(o,NaN);if(!t)return r;const l=r.getDate(),n=x2(o,r.getTime());n.setMonth(r.getMonth()+t+1,0);const a=n.getDate();return l>=a?n:(r.setFullYear(n.getFullYear(),n.getMonth(),l),r)}function E5(o,t){const{years:r=0,months:l=0,weeks:n=0,days:a=0,hours:i=0,minutes:c=0,seconds:s=0}=t,u=h2(o),d=l||r?_0(u,l+r*12):u,C=a||n?V0(d,a+n*7):d,p=c+i*60,f=(s+p*60)*1e3;return x2(o,C.getTime()+f)}function Mt(o,t){const r=+h2(o);return x2(o,r+t)}const T5=6048e5,wt=864e5,Vt=6e4,A5=36e5,_t=1e3;function vt(o,t){return Mt(o,t*A5)}let Ht={};function k1(){return Ht}function v0(o,t){var c,s,u,d;const r=k1(),l=(t==null?void 0:t.weekStartsOn)??((s=(c=t==null?void 0:t.locale)==null?void 0:c.options)==null?void 0:s.weekStartsOn)??r.weekStartsOn??((d=(u=r.locale)==null?void 0:u.options)==null?void 0:d.weekStartsOn)??0,n=h2(o),a=n.getDay(),i=(a<l?7:0)+a-l;return n.setDate(n.getDate()-i),n.setHours(0,0,0,0),n}function T1(o){return v0(o,{weekStartsOn:1})}function $5(o){const t=h2(o),r=t.getFullYear(),l=x2(o,0);l.setFullYear(r+1,0,4),l.setHours(0,0,0,0);const n=T1(l),a=x2(o,0);a.setFullYear(r,0,4),a.setHours(0,0,0,0);const i=T1(a);return t.getTime()>=n.getTime()?r+1:t.getTime()>=i.getTime()?r:r-1}function F5(o){const t=h2(o);return t.setHours(0,0,0,0),t}function Ae(o){const t=h2(o),r=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return r.setUTCFullYear(t.getFullYear()),+o-+r}function z5(o,t){const r=F5(o),l=F5(t),n=+r-Ae(r),a=+l-Ae(l);return Math.round((n-a)/wt)}function xt(o){const t=$5(o),r=x2(o,0);return r.setFullYear(t,0,4),r.setHours(0,0,0,0),T1(r)}function Bt(o,t){const r=t*3;return _0(o,r)}function z3(o,t){return _0(o,t*12)}function N5(o,t){const r=h2(o),l=h2(t),n=r.getTime()-l.getTime();return n<0?-1:n>0?1:n}function O5(o){return o instanceof Date||typeof o=="object"&&Object.prototype.toString.call(o)==="[object Date]"}function oe(o){if(!O5(o)&&typeof o!="number")return!1;const t=h2(o);return!isNaN(Number(t))}function P5(o){const t=h2(o);return Math.trunc(t.getMonth()/3)+1}function St(o,t){const r=h2(o),l=h2(t);return r.getFullYear()-l.getFullYear()}function Zt(o,t){const r=h2(o),l=h2(t),n=N5(r,l),a=Math.abs(St(r,l));r.setFullYear(1584),l.setFullYear(1584);const i=N5(r,l)===-n,c=n*(a-+i);return c===0?0:c}function j5(o,t){const r=h2(o.start),l=h2(o.end);let n=+r>+l;const a=n?+r:+l,i=n?l:r;i.setHours(0,0,0,0);let c=1;const s=[];for(;+i<=a;)s.push(h2(i)),i.setDate(i.getDate()+c),i.setHours(0,0,0,0);return n?s.reverse():s}function y1(o){const t=h2(o),r=t.getMonth(),l=r-r%3;return t.setMonth(l,1),t.setHours(0,0,0,0),t}function Dt(o,t){const r=h2(o.start),l=h2(o.end);let n=+r>+l;const a=n?+y1(r):+y1(l);let i=y1(n?l:r),c=1;const s=[];for(;+i<=a;)s.push(h2(i)),i=Bt(i,c);return n?s.reverse():s}function Et(o){const t=h2(o);return t.setDate(1),t.setHours(0,0,0,0),t}function R5(o){const t=h2(o),r=t.getFullYear();return t.setFullYear(r+1,0,0),t.setHours(23,59,59,999),t}function re(o){const t=h2(o),r=x2(o,0);return r.setFullYear(t.getFullYear(),0,1),r.setHours(0,0,0,0),r}function I5(o,t){var c,s,u,d;const r=k1(),l=(t==null?void 0:t.weekStartsOn)??((s=(c=t==null?void 0:t.locale)==null?void 0:c.options)==null?void 0:s.weekStartsOn)??r.weekStartsOn??((d=(u=r.locale)==null?void 0:u.options)==null?void 0:d.weekStartsOn)??0,n=h2(o),a=n.getDay(),i=(a<l?-7:0)+6-(a-l);return n.setDate(n.getDate()+i),n.setHours(23,59,59,999),n}function Y5(o){const t=h2(o),r=t.getMonth(),l=r-r%3+3;return t.setMonth(l,0),t.setHours(23,59,59,999),t}const Tt={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},At=(o,t,r)=>{let l;const n=Tt[o];return typeof n=="string"?l=n:t===1?l=n.one:l=n.other.replace("{{count}}",t.toString()),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"in "+l:l+" ago":l};function N3(o){return(t={})=>{const r=t.width?String(t.width):o.defaultWidth;return o.formats[r]||o.formats[o.defaultWidth]}}const $t={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},Ft={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},zt={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},Nt={date:N3({formats:$t,defaultWidth:"full"}),time:N3({formats:Ft,defaultWidth:"full"}),dateTime:N3({formats:zt,defaultWidth:"full"})},Ot={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},Pt=(o,t,r,l)=>Ot[o];function le(o){return(t,r)=>{const l=r!=null&&r.context?String(r.context):"standalone";let n;if(l==="formatting"&&o.formattingValues){const i=o.defaultFormattingWidth||o.defaultWidth,c=r!=null&&r.width?String(r.width):i;n=o.formattingValues[c]||o.formattingValues[i]}else{const i=o.defaultWidth,c=r!=null&&r.width?String(r.width):o.defaultWidth;n=o.values[c]||o.values[i]}const a=o.argumentCallback?o.argumentCallback(t):t;return n[a]}}const jt={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},Rt={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},It={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},Yt={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},Ut={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},qt={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},Wt={ordinalNumber:(o,t)=>{const r=Number(o),l=r%100;if(l>20||l<10)switch(l%10){case 1:return r+"st";case 2:return r+"nd";case 3:return r+"rd"}return r+"th"},era:le({values:jt,defaultWidth:"wide"}),quarter:le({values:Rt,defaultWidth:"wide",argumentCallback:o=>o-1}),month:le({values:It,defaultWidth:"wide"}),day:le({values:Yt,defaultWidth:"wide"}),dayPeriod:le({values:Ut,defaultWidth:"wide",formattingValues:qt,defaultFormattingWidth:"wide"})};function ne(o){return(t,r={})=>{const l=r.width,n=l&&o.matchPatterns[l]||o.matchPatterns[o.defaultMatchWidth],a=t.match(n);if(!a)return null;const i=a[0],c=l&&o.parsePatterns[l]||o.parsePatterns[o.defaultParseWidth],s=Array.isArray(c)?Kt(c,C=>C.test(i)):Gt(c,C=>C.test(i));let u;u=o.valueCallback?o.valueCallback(s):s,u=r.valueCallback?r.valueCallback(u):u;const d=t.slice(i.length);return{value:u,rest:d}}}function Gt(o,t){for(const r in o)if(Object.prototype.hasOwnProperty.call(o,r)&&t(o[r]))return r}function Kt(o,t){for(let r=0;r<o.length;r++)if(t(o[r]))return r}function Qt(o){return(t,r={})=>{const l=t.match(o.matchPattern);if(!l)return null;const n=l[0],a=t.match(o.parsePattern);if(!a)return null;let i=o.valueCallback?o.valueCallback(a[0]):a[0];i=r.valueCallback?r.valueCallback(i):i;const c=t.slice(n.length);return{value:i,rest:c}}}const Xt=/^(\d+)(th|st|nd|rd)?/i,Jt=/\d+/i,e7={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},t7={any:[/^b/i,/^(a|c)/i]},o7={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},r7={any:[/1/i,/2/i,/3/i,/4/i]},l7={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},n7={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},a7={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},i7={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},s7={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},c7={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},d7={ordinalNumber:Qt({matchPattern:Xt,parsePattern:Jt,valueCallback:o=>parseInt(o,10)}),era:ne({matchPatterns:e7,defaultMatchWidth:"wide",parsePatterns:t7,defaultParseWidth:"any"}),quarter:ne({matchPatterns:o7,defaultMatchWidth:"wide",parsePatterns:r7,defaultParseWidth:"any",valueCallback:o=>o+1}),month:ne({matchPatterns:l7,defaultMatchWidth:"wide",parsePatterns:n7,defaultParseWidth:"any"}),day:ne({matchPatterns:a7,defaultMatchWidth:"wide",parsePatterns:i7,defaultParseWidth:"any"}),dayPeriod:ne({matchPatterns:s7,defaultMatchWidth:"any",parsePatterns:c7,defaultParseWidth:"any"})},U5={code:"en-US",formatDistance:At,formatLong:Nt,formatRelative:Pt,localize:Wt,match:d7,options:{weekStartsOn:0,firstWeekContainsDate:1}};function u7(o){const t=h2(o);return z5(t,re(t))+1}function O3(o){const t=h2(o),r=+T1(t)-+xt(t);return Math.round(r/T5)+1}function P3(o,t){var d,C,p,h;const r=h2(o),l=r.getFullYear(),n=k1(),a=(t==null?void 0:t.firstWeekContainsDate)??((C=(d=t==null?void 0:t.locale)==null?void 0:d.options)==null?void 0:C.firstWeekContainsDate)??n.firstWeekContainsDate??((h=(p=n.locale)==null?void 0:p.options)==null?void 0:h.firstWeekContainsDate)??1,i=x2(o,0);i.setFullYear(l+1,0,a),i.setHours(0,0,0,0);const c=v0(i,t),s=x2(o,0);s.setFullYear(l,0,a),s.setHours(0,0,0,0);const u=v0(s,t);return r.getTime()>=c.getTime()?l+1:r.getTime()>=u.getTime()?l:l-1}function C7(o,t){var c,s,u,d;const r=k1(),l=(t==null?void 0:t.firstWeekContainsDate)??((s=(c=t==null?void 0:t.locale)==null?void 0:c.options)==null?void 0:s.firstWeekContainsDate)??r.firstWeekContainsDate??((d=(u=r.locale)==null?void 0:u.options)==null?void 0:d.firstWeekContainsDate)??1,n=P3(o,t),a=x2(o,0);return a.setFullYear(n,0,l),a.setHours(0,0,0,0),v0(a,t)}function j3(o,t){const r=h2(o),l=+v0(r,t)-+C7(r,t);return Math.round(l/T5)+1}function Z2(o,t){const r=o<0?"-":"",l=Math.abs(o).toString().padStart(t,"0");return r+l}const n1={y(o,t){const r=o.getFullYear(),l=r>0?r:1-r;return Z2(t==="yy"?l%100:l,t.length)},M(o,t){const r=o.getMonth();return t==="M"?String(r+1):Z2(r+1,2)},d(o,t){return Z2(o.getDate(),t.length)},a(o,t){const r=o.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.toUpperCase();case"aaa":return r;case"aaaaa":return r[0];case"aaaa":default:return r==="am"?"a.m.":"p.m."}},h(o,t){return Z2(o.getHours()%12||12,t.length)},H(o,t){return Z2(o.getHours(),t.length)},m(o,t){return Z2(o.getMinutes(),t.length)},s(o,t){return Z2(o.getSeconds(),t.length)},S(o,t){const r=t.length,l=o.getMilliseconds(),n=Math.trunc(l*Math.pow(10,r-3));return Z2(n,t.length)}},A1={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},q5={G:function(o,t,r){const l=o.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return r.era(l,{width:"abbreviated"});case"GGGGG":return r.era(l,{width:"narrow"});case"GGGG":default:return r.era(l,{width:"wide"})}},y:function(o,t,r){if(t==="yo"){const l=o.getFullYear(),n=l>0?l:1-l;return r.ordinalNumber(n,{unit:"year"})}return n1.y(o,t)},Y:function(o,t,r,l){const n=P3(o,l),a=n>0?n:1-n;if(t==="YY"){const i=a%100;return Z2(i,2)}return t==="Yo"?r.ordinalNumber(a,{unit:"year"}):Z2(a,t.length)},R:function(o,t){const r=$5(o);return Z2(r,t.length)},u:function(o,t){const r=o.getFullYear();return Z2(r,t.length)},Q:function(o,t,r){const l=Math.ceil((o.getMonth()+1)/3);switch(t){case"Q":return String(l);case"QQ":return Z2(l,2);case"Qo":return r.ordinalNumber(l,{unit:"quarter"});case"QQQ":return r.quarter(l,{width:"abbreviated",context:"formatting"});case"QQQQQ":return r.quarter(l,{width:"narrow",context:"formatting"});case"QQQQ":default:return r.quarter(l,{width:"wide",context:"formatting"})}},q:function(o,t,r){const l=Math.ceil((o.getMonth()+1)/3);switch(t){case"q":return String(l);case"qq":return Z2(l,2);case"qo":return r.ordinalNumber(l,{unit:"quarter"});case"qqq":return r.quarter(l,{width:"abbreviated",context:"standalone"});case"qqqqq":return r.quarter(l,{width:"narrow",context:"standalone"});case"qqqq":default:return r.quarter(l,{width:"wide",context:"standalone"})}},M:function(o,t,r){const l=o.getMonth();switch(t){case"M":case"MM":return n1.M(o,t);case"Mo":return r.ordinalNumber(l+1,{unit:"month"});case"MMM":return r.month(l,{width:"abbreviated",context:"formatting"});case"MMMMM":return r.month(l,{width:"narrow",context:"formatting"});case"MMMM":default:return r.month(l,{width:"wide",context:"formatting"})}},L:function(o,t,r){const l=o.getMonth();switch(t){case"L":return String(l+1);case"LL":return Z2(l+1,2);case"Lo":return r.ordinalNumber(l+1,{unit:"month"});case"LLL":return r.month(l,{width:"abbreviated",context:"standalone"});case"LLLLL":return r.month(l,{width:"narrow",context:"standalone"});case"LLLL":default:return r.month(l,{width:"wide",context:"standalone"})}},w:function(o,t,r,l){const n=j3(o,l);return t==="wo"?r.ordinalNumber(n,{unit:"week"}):Z2(n,t.length)},I:function(o,t,r){const l=O3(o);return t==="Io"?r.ordinalNumber(l,{unit:"week"}):Z2(l,t.length)},d:function(o,t,r){return t==="do"?r.ordinalNumber(o.getDate(),{unit:"date"}):n1.d(o,t)},D:function(o,t,r){const l=u7(o);return t==="Do"?r.ordinalNumber(l,{unit:"dayOfYear"}):Z2(l,t.length)},E:function(o,t,r){const l=o.getDay();switch(t){case"E":case"EE":case"EEE":return r.day(l,{width:"abbreviated",context:"formatting"});case"EEEEE":return r.day(l,{width:"narrow",context:"formatting"});case"EEEEEE":return r.day(l,{width:"short",context:"formatting"});case"EEEE":default:return r.day(l,{width:"wide",context:"formatting"})}},e:function(o,t,r,l){const n=o.getDay(),a=(n-l.weekStartsOn+8)%7||7;switch(t){case"e":return String(a);case"ee":return Z2(a,2);case"eo":return r.ordinalNumber(a,{unit:"day"});case"eee":return r.day(n,{width:"abbreviated",context:"formatting"});case"eeeee":return r.day(n,{width:"narrow",context:"formatting"});case"eeeeee":return r.day(n,{width:"short",context:"formatting"});case"eeee":default:return r.day(n,{width:"wide",context:"formatting"})}},c:function(o,t,r,l){const n=o.getDay(),a=(n-l.weekStartsOn+8)%7||7;switch(t){case"c":return String(a);case"cc":return Z2(a,t.length);case"co":return r.ordinalNumber(a,{unit:"day"});case"ccc":return r.day(n,{width:"abbreviated",context:"standalone"});case"ccccc":return r.day(n,{width:"narrow",context:"standalone"});case"cccccc":return r.day(n,{width:"short",context:"standalone"});case"cccc":default:return r.day(n,{width:"wide",context:"standalone"})}},i:function(o,t,r){const l=o.getDay(),n=l===0?7:l;switch(t){case"i":return String(n);case"ii":return Z2(n,t.length);case"io":return r.ordinalNumber(n,{unit:"day"});case"iii":return r.day(l,{width:"abbreviated",context:"formatting"});case"iiiii":return r.day(l,{width:"narrow",context:"formatting"});case"iiiiii":return r.day(l,{width:"short",context:"formatting"});case"iiii":default:return r.day(l,{width:"wide",context:"formatting"})}},a:function(o,t,r){const n=o.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"aaa":return r.dayPeriod(n,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return r.dayPeriod(n,{width:"narrow",context:"formatting"});case"aaaa":default:return r.dayPeriod(n,{width:"wide",context:"formatting"})}},b:function(o,t,r){const l=o.getHours();let n;switch(l===12?n=A1.noon:l===0?n=A1.midnight:n=l/12>=1?"pm":"am",t){case"b":case"bb":return r.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"bbb":return r.dayPeriod(n,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return r.dayPeriod(n,{width:"narrow",context:"formatting"});case"bbbb":default:return r.dayPeriod(n,{width:"wide",context:"formatting"})}},B:function(o,t,r){const l=o.getHours();let n;switch(l>=17?n=A1.evening:l>=12?n=A1.afternoon:l>=4?n=A1.morning:n=A1.night,t){case"B":case"BB":case"BBB":return r.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"BBBBB":return r.dayPeriod(n,{width:"narrow",context:"formatting"});case"BBBB":default:return r.dayPeriod(n,{width:"wide",context:"formatting"})}},h:function(o,t,r){if(t==="ho"){let l=o.getHours()%12;return l===0&&(l=12),r.ordinalNumber(l,{unit:"hour"})}return n1.h(o,t)},H:function(o,t,r){return t==="Ho"?r.ordinalNumber(o.getHours(),{unit:"hour"}):n1.H(o,t)},K:function(o,t,r){const l=o.getHours()%12;return t==="Ko"?r.ordinalNumber(l,{unit:"hour"}):Z2(l,t.length)},k:function(o,t,r){let l=o.getHours();return l===0&&(l=24),t==="ko"?r.ordinalNumber(l,{unit:"hour"}):Z2(l,t.length)},m:function(o,t,r){return t==="mo"?r.ordinalNumber(o.getMinutes(),{unit:"minute"}):n1.m(o,t)},s:function(o,t,r){return t==="so"?r.ordinalNumber(o.getSeconds(),{unit:"second"}):n1.s(o,t)},S:function(o,t){return n1.S(o,t)},X:function(o,t,r){const l=o.getTimezoneOffset();if(l===0)return"Z";switch(t){case"X":return G5(l);case"XXXX":case"XX":return g1(l);case"XXXXX":case"XXX":default:return g1(l,":")}},x:function(o,t,r){const l=o.getTimezoneOffset();switch(t){case"x":return G5(l);case"xxxx":case"xx":return g1(l);case"xxxxx":case"xxx":default:return g1(l,":")}},O:function(o,t,r){const l=o.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+W5(l,":");case"OOOO":default:return"GMT"+g1(l,":")}},z:function(o,t,r){const l=o.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+W5(l,":");case"zzzz":default:return"GMT"+g1(l,":")}},t:function(o,t,r){const l=Math.trunc(o.getTime()/1e3);return Z2(l,t.length)},T:function(o,t,r){const l=o.getTime();return Z2(l,t.length)}};function W5(o,t=""){const r=o>0?"-":"+",l=Math.abs(o),n=Math.trunc(l/60),a=l%60;return a===0?r+String(n):r+String(n)+t+Z2(a,2)}function G5(o,t){return o%60===0?(o>0?"-":"+")+Z2(Math.abs(o)/60,2):g1(o,t)}function g1(o,t=""){const r=o>0?"-":"+",l=Math.abs(o),n=Z2(Math.trunc(l/60),2),a=Z2(l%60,2);return r+n+t+a}const K5=(o,t)=>{switch(o){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});case"PPPP":default:return t.date({width:"full"})}},Q5=(o,t)=>{switch(o){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});case"pppp":default:return t.time({width:"full"})}},R3={p:Q5,P:(o,t)=>{const r=o.match(/(P+)(p+)?/)||[],l=r[1],n=r[2];if(!n)return K5(o,t);let a;switch(l){case"P":a=t.dateTime({width:"short"});break;case"PP":a=t.dateTime({width:"medium"});break;case"PPP":a=t.dateTime({width:"long"});break;case"PPPP":default:a=t.dateTime({width:"full"});break}return a.replace("{{date}}",K5(l,t)).replace("{{time}}",Q5(n,t))}},p7=/^D+$/,h7=/^Y+$/,m7=["D","DD","YY","YYYY"];function X5(o){return p7.test(o)}function J5(o){return h7.test(o)}function I3(o,t,r){const l=f7(o,t,r);if(console.warn(l),m7.includes(o))throw new RangeError(l)}function f7(o,t,r){const l=o[0]==="Y"?"years":"days of the month";return`Use \`${o.toLowerCase()}\` instead of \`${o}\` (in \`${t}\`) for formatting ${l} to the input \`${r}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const k7=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,y7=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,g7=/^'([^]*?)'?$/,b7=/''/g,L7=/[a-zA-Z]/;function E0(o,t,r){var d,C,p,h,f,m,k,M;const l=k1(),n=(r==null?void 0:r.locale)??l.locale??U5,a=(r==null?void 0:r.firstWeekContainsDate)??((C=(d=r==null?void 0:r.locale)==null?void 0:d.options)==null?void 0:C.firstWeekContainsDate)??l.firstWeekContainsDate??((h=(p=l.locale)==null?void 0:p.options)==null?void 0:h.firstWeekContainsDate)??1,i=(r==null?void 0:r.weekStartsOn)??((m=(f=r==null?void 0:r.locale)==null?void 0:f.options)==null?void 0:m.weekStartsOn)??l.weekStartsOn??((M=(k=l.locale)==null?void 0:k.options)==null?void 0:M.weekStartsOn)??0,c=h2(o);if(!oe(c))throw new RangeError("Invalid time value");let s=t.match(y7).map(v=>{const b=v[0];if(b==="p"||b==="P"){const L=R3[b];return L(v,n.formatLong)}return v}).join("").match(k7).map(v=>{if(v==="''")return{isToken:!1,value:"'"};const b=v[0];if(b==="'")return{isToken:!1,value:M7(v)};if(q5[b])return{isToken:!0,value:v};if(b.match(L7))throw new RangeError("Format string contains an unescaped latin alphabet character `"+b+"`");return{isToken:!1,value:v}});n.localize.preprocessor&&(s=n.localize.preprocessor(c,s));const u={firstWeekContainsDate:a,weekStartsOn:i,locale:n};return s.map(v=>{if(!v.isToken)return v.value;const b=v.value;(!(r!=null&&r.useAdditionalWeekYearTokens)&&J5(b)||!(r!=null&&r.useAdditionalDayOfYearTokens)&&X5(b))&&I3(b,t,String(o));const L=q5[b[0]];return L(c,b,n.localize,u)}).join("")}function M7(o){const t=o.match(g7);return t?t[1].replace(b7,"'"):o}function w7(o){return h2(o).getDay()}function V7(o){const t=h2(o),r=t.getFullYear(),l=t.getMonth(),n=x2(o,0);return n.setFullYear(r,l+1,0),n.setHours(0,0,0,0),n.getDate()}function _7(){return Object.assign({},k1())}function P0(o){return h2(o).getHours()}function v7(o){let r=h2(o).getDay();return r===0&&(r=7),r}function a1(o){return h2(o).getMinutes()}function L2(o){return h2(o).getMonth()}function $1(o){return h2(o).getSeconds()}function k2(o){return h2(o).getFullYear()}function F1(o,t){const r=h2(o),l=h2(t);return r.getTime()>l.getTime()}function ae(o,t){const r=h2(o),l=h2(t);return+r<+l}function z1(o,t){const r=h2(o),l=h2(t);return+r==+l}function H7(o,t){const r=t instanceof Date?x2(t,0):new t(0);return r.setFullYear(o.getFullYear(),o.getMonth(),o.getDate()),r.setHours(o.getHours(),o.getMinutes(),o.getSeconds(),o.getMilliseconds()),r}const x7=10;class e6{constructor(){s2(this,"subPriority",0)}validate(t,r){return!0}}class B7 extends e6{constructor(t,r,l,n,a){super(),this.value=t,this.validateValue=r,this.setValue=l,this.priority=n,a&&(this.subPriority=a)}validate(t,r){return this.validateValue(t,this.value,r)}set(t,r,l){return this.setValue(t,r,this.value,l)}}class S7 extends e6{constructor(){super(...arguments);s2(this,"priority",x7);s2(this,"subPriority",-1)}set(r,l){return l.timestampIsSet?r:x2(r,H7(r,Date))}}class B2{run(t,r,l,n){const a=this.parse(t,r,l,n);return a?{setter:new B7(a.value,this.validate,this.set,this.priority,this.subPriority),rest:a.rest}:null}validate(t,r,l){return!0}}class Z7 extends B2{constructor(){super(...arguments);s2(this,"priority",140);s2(this,"incompatibleTokens",["R","u","t","T"])}parse(r,l,n){switch(l){case"G":case"GG":case"GGG":return n.era(r,{width:"abbreviated"})||n.era(r,{width:"narrow"});case"GGGGG":return n.era(r,{width:"narrow"});case"GGGG":default:return n.era(r,{width:"wide"})||n.era(r,{width:"abbreviated"})||n.era(r,{width:"narrow"})}}set(r,l,n){return l.era=n,r.setFullYear(n,0,1),r.setHours(0,0,0,0),r}}const Y2={month:/^(1[0-2]|0?\d)/,date:/^(3[0-1]|[0-2]?\d)/,dayOfYear:/^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/,week:/^(5[0-3]|[0-4]?\d)/,hour23h:/^(2[0-3]|[0-1]?\d)/,hour24h:/^(2[0-4]|[0-1]?\d)/,hour11h:/^(1[0-1]|0?\d)/,hour12h:/^(1[0-2]|0?\d)/,minute:/^[0-5]?\d/,second:/^[0-5]?\d/,singleDigit:/^\d/,twoDigits:/^\d{1,2}/,threeDigits:/^\d{1,3}/,fourDigits:/^\d{1,4}/,anyDigitsSigned:/^-?\d+/,singleDigitSigned:/^-?\d/,twoDigitsSigned:/^-?\d{1,2}/,threeDigitsSigned:/^-?\d{1,3}/,fourDigitsSigned:/^-?\d{1,4}/},T0={basicOptionalMinutes:/^([+-])(\d{2})(\d{2})?|Z/,basic:/^([+-])(\d{2})(\d{2})|Z/,basicOptionalSeconds:/^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,extended:/^([+-])(\d{2}):(\d{2})|Z/,extendedOptionalSeconds:/^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/};function U2(o,t){return o&&{value:t(o.value),rest:o.rest}}function O2(o,t){const r=t.match(o);return r?{value:parseInt(r[0],10),rest:t.slice(r[0].length)}:null}function A0(o,t){const r=t.match(o);if(!r)return null;if(r[0]==="Z")return{value:0,rest:t.slice(1)};const l=r[1]==="+"?1:-1,n=r[2]?parseInt(r[2],10):0,a=r[3]?parseInt(r[3],10):0,i=r[5]?parseInt(r[5],10):0;return{value:l*(n*A5+a*Vt+i*_t),rest:t.slice(r[0].length)}}function t6(o){return O2(Y2.anyDigitsSigned,o)}function j2(o,t){switch(o){case 1:return O2(Y2.singleDigit,t);case 2:return O2(Y2.twoDigits,t);case 3:return O2(Y2.threeDigits,t);case 4:return O2(Y2.fourDigits,t);default:return O2(new RegExp("^\\d{1,"+o+"}"),t)}}function $e(o,t){switch(o){case 1:return O2(Y2.singleDigitSigned,t);case 2:return O2(Y2.twoDigitsSigned,t);case 3:return O2(Y2.threeDigitsSigned,t);case 4:return O2(Y2.fourDigitsSigned,t);default:return O2(new RegExp("^-?\\d{1,"+o+"}"),t)}}function Y3(o){switch(o){case"morning":return 4;case"evening":return 17;case"pm":case"noon":case"afternoon":return 12;case"am":case"midnight":case"night":default:return 0}}function o6(o,t){const r=t>0,l=r?t:1-t;let n;if(l<=50)n=o||100;else{const a=l+50,i=Math.trunc(a/100)*100,c=o>=a%100;n=o+i-(c?100:0)}return r?n:1-n}function r6(o){return o%400===0||o%4===0&&o%100!==0}class D7 extends B2{constructor(){super(...arguments);s2(this,"priority",130);s2(this,"incompatibleTokens",["Y","R","u","w","I","i","e","c","t","T"])}parse(r,l,n){const a=i=>({year:i,isTwoDigitYear:l==="yy"});switch(l){case"y":return U2(j2(4,r),a);case"yo":return U2(n.ordinalNumber(r,{unit:"year"}),a);default:return U2(j2(l.length,r),a)}}validate(r,l){return l.isTwoDigitYear||l.year>0}set(r,l,n){const a=r.getFullYear();if(n.isTwoDigitYear){const c=o6(n.year,a);return r.setFullYear(c,0,1),r.setHours(0,0,0,0),r}const i=!("era"in l)||l.era===1?n.year:1-n.year;return r.setFullYear(i,0,1),r.setHours(0,0,0,0),r}}class E7 extends B2{constructor(){super(...arguments);s2(this,"priority",130);s2(this,"incompatibleTokens",["y","R","u","Q","q","M","L","I","d","D","i","t","T"])}parse(r,l,n){const a=i=>({year:i,isTwoDigitYear:l==="YY"});switch(l){case"Y":return U2(j2(4,r),a);case"Yo":return U2(n.ordinalNumber(r,{unit:"year"}),a);default:return U2(j2(l.length,r),a)}}validate(r,l){return l.isTwoDigitYear||l.year>0}set(r,l,n,a){const i=P3(r,a);if(n.isTwoDigitYear){const s=o6(n.year,i);return r.setFullYear(s,0,a.firstWeekContainsDate),r.setHours(0,0,0,0),v0(r,a)}const c=!("era"in l)||l.era===1?n.year:1-n.year;return r.setFullYear(c,0,a.firstWeekContainsDate),r.setHours(0,0,0,0),v0(r,a)}}class T7 extends B2{constructor(){super(...arguments);s2(this,"priority",130);s2(this,"incompatibleTokens",["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"])}parse(r,l){return $e(l==="R"?4:l.length,r)}set(r,l,n){const a=x2(r,0);return a.setFullYear(n,0,4),a.setHours(0,0,0,0),T1(a)}}class A7 extends B2{constructor(){super(...arguments);s2(this,"priority",130);s2(this,"incompatibleTokens",["G","y","Y","R","w","I","i","e","c","t","T"])}parse(r,l){return $e(l==="u"?4:l.length,r)}set(r,l,n){return r.setFullYear(n,0,1),r.setHours(0,0,0,0),r}}class $7 extends B2{constructor(){super(...arguments);s2(this,"priority",120);s2(this,"incompatibleTokens",["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"])}parse(r,l,n){switch(l){case"Q":case"QQ":return j2(l.length,r);case"Qo":return n.ordinalNumber(r,{unit:"quarter"});case"QQQ":return n.quarter(r,{width:"abbreviated",context:"formatting"})||n.quarter(r,{width:"narrow",context:"formatting"});case"QQQQQ":return n.quarter(r,{width:"narrow",context:"formatting"});case"QQQQ":default:return n.quarter(r,{width:"wide",context:"formatting"})||n.quarter(r,{width:"abbreviated",context:"formatting"})||n.quarter(r,{width:"narrow",context:"formatting"})}}validate(r,l){return l>=1&&l<=4}set(r,l,n){return r.setMonth((n-1)*3,1),r.setHours(0,0,0,0),r}}class F7 extends B2{constructor(){super(...arguments);s2(this,"priority",120);s2(this,"incompatibleTokens",["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"])}parse(r,l,n){switch(l){case"q":case"qq":return j2(l.length,r);case"qo":return n.ordinalNumber(r,{unit:"quarter"});case"qqq":return n.quarter(r,{width:"abbreviated",context:"standalone"})||n.quarter(r,{width:"narrow",context:"standalone"});case"qqqqq":return n.quarter(r,{width:"narrow",context:"standalone"});case"qqqq":default:return n.quarter(r,{width:"wide",context:"standalone"})||n.quarter(r,{width:"abbreviated",context:"standalone"})||n.quarter(r,{width:"narrow",context:"standalone"})}}validate(r,l){return l>=1&&l<=4}set(r,l,n){return r.setMonth((n-1)*3,1),r.setHours(0,0,0,0),r}}class z7 extends B2{constructor(){super(...arguments);s2(this,"incompatibleTokens",["Y","R","q","Q","L","w","I","D","i","e","c","t","T"]);s2(this,"priority",110)}parse(r,l,n){const a=i=>i-1;switch(l){case"M":return U2(O2(Y2.month,r),a);case"MM":return U2(j2(2,r),a);case"Mo":return U2(n.ordinalNumber(r,{unit:"month"}),a);case"MMM":return n.month(r,{width:"abbreviated",context:"formatting"})||n.month(r,{width:"narrow",context:"formatting"});case"MMMMM":return n.month(r,{width:"narrow",context:"formatting"});case"MMMM":default:return n.month(r,{width:"wide",context:"formatting"})||n.month(r,{width:"abbreviated",context:"formatting"})||n.month(r,{width:"narrow",context:"formatting"})}}validate(r,l){return l>=0&&l<=11}set(r,l,n){return r.setMonth(n,1),r.setHours(0,0,0,0),r}}class N7 extends B2{constructor(){super(...arguments);s2(this,"priority",110);s2(this,"incompatibleTokens",["Y","R","q","Q","M","w","I","D","i","e","c","t","T"])}parse(r,l,n){const a=i=>i-1;switch(l){case"L":return U2(O2(Y2.month,r),a);case"LL":return U2(j2(2,r),a);case"Lo":return U2(n.ordinalNumber(r,{unit:"month"}),a);case"LLL":return n.month(r,{width:"abbreviated",context:"standalone"})||n.month(r,{width:"narrow",context:"standalone"});case"LLLLL":return n.month(r,{width:"narrow",context:"standalone"});case"LLLL":default:return n.month(r,{width:"wide",context:"standalone"})||n.month(r,{width:"abbreviated",context:"standalone"})||n.month(r,{width:"narrow",context:"standalone"})}}validate(r,l){return l>=0&&l<=11}set(r,l,n){return r.setMonth(n,1),r.setHours(0,0,0,0),r}}function O7(o,t,r){const l=h2(o),n=j3(l,r)-t;return l.setDate(l.getDate()-n*7),l}class P7 extends B2{constructor(){super(...arguments);s2(this,"priority",100);s2(this,"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","i","t","T"])}parse(r,l,n){switch(l){case"w":return O2(Y2.week,r);case"wo":return n.ordinalNumber(r,{unit:"week"});default:return j2(l.length,r)}}validate(r,l){return l>=1&&l<=53}set(r,l,n,a){return v0(O7(r,n,a),a)}}function j7(o,t){const r=h2(o),l=O3(r)-t;return r.setDate(r.getDate()-l*7),r}class R7 extends B2{constructor(){super(...arguments);s2(this,"priority",100);s2(this,"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"])}parse(r,l,n){switch(l){case"I":return O2(Y2.week,r);case"Io":return n.ordinalNumber(r,{unit:"week"});default:return j2(l.length,r)}}validate(r,l){return l>=1&&l<=53}set(r,l,n){return T1(j7(r,n))}}const I7=[31,28,31,30,31,30,31,31,30,31,30,31],Y7=[31,29,31,30,31,30,31,31,30,31,30,31];class U7 extends B2{constructor(){super(...arguments);s2(this,"priority",90);s2(this,"subPriority",1);s2(this,"incompatibleTokens",["Y","R","q","Q","w","I","D","i","e","c","t","T"])}parse(r,l,n){switch(l){case"d":return O2(Y2.date,r);case"do":return n.ordinalNumber(r,{unit:"date"});default:return j2(l.length,r)}}validate(r,l){const n=r.getFullYear(),a=r6(n),i=r.getMonth();return a?l>=1&&l<=Y7[i]:l>=1&&l<=I7[i]}set(r,l,n){return r.setDate(n),r.setHours(0,0,0,0),r}}class q7 extends B2{constructor(){super(...arguments);s2(this,"priority",90);s2(this,"subpriority",1);s2(this,"incompatibleTokens",["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"])}parse(r,l,n){switch(l){case"D":case"DD":return O2(Y2.dayOfYear,r);case"Do":return n.ordinalNumber(r,{unit:"date"});default:return j2(l.length,r)}}validate(r,l){const n=r.getFullYear();return r6(n)?l>=1&&l<=366:l>=1&&l<=365}set(r,l,n){return r.setMonth(0,n),r.setHours(0,0,0,0),r}}function U3(o,t,r){var C,p,h,f;const l=k1(),n=(r==null?void 0:r.weekStartsOn)??((p=(C=r==null?void 0:r.locale)==null?void 0:C.options)==null?void 0:p.weekStartsOn)??l.weekStartsOn??((f=(h=l.locale)==null?void 0:h.options)==null?void 0:f.weekStartsOn)??0,a=h2(o),i=a.getDay(),s=(t%7+7)%7,u=7-n,d=t<0||t>6?t-(i+u)%7:(s+u)%7-(i+u)%7;return V0(a,d)}class W7 extends B2{constructor(){super(...arguments);s2(this,"priority",90);s2(this,"incompatibleTokens",["D","i","e","c","t","T"])}parse(r,l,n){switch(l){case"E":case"EE":case"EEE":return n.day(r,{width:"abbreviated",context:"formatting"})||n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"});case"EEEEE":return n.day(r,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"});case"EEEE":default:return n.day(r,{width:"wide",context:"formatting"})||n.day(r,{width:"abbreviated",context:"formatting"})||n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"})}}validate(r,l){return l>=0&&l<=6}set(r,l,n,a){return r=U3(r,n,a),r.setHours(0,0,0,0),r}}class G7 extends B2{constructor(){super(...arguments);s2(this,"priority",90);s2(this,"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"])}parse(r,l,n,a){const i=c=>{const s=Math.floor((c-1)/7)*7;return(c+a.weekStartsOn+6)%7+s};switch(l){case"e":case"ee":return U2(j2(l.length,r),i);case"eo":return U2(n.ordinalNumber(r,{unit:"day"}),i);case"eee":return n.day(r,{width:"abbreviated",context:"formatting"})||n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"});case"eeeee":return n.day(r,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"});case"eeee":default:return n.day(r,{width:"wide",context:"formatting"})||n.day(r,{width:"abbreviated",context:"formatting"})||n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"})}}validate(r,l){return l>=0&&l<=6}set(r,l,n,a){return r=U3(r,n,a),r.setHours(0,0,0,0),r}}class K7 extends B2{constructor(){super(...arguments);s2(this,"priority",90);s2(this,"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"])}parse(r,l,n,a){const i=c=>{const s=Math.floor((c-1)/7)*7;return(c+a.weekStartsOn+6)%7+s};switch(l){case"c":case"cc":return U2(j2(l.length,r),i);case"co":return U2(n.ordinalNumber(r,{unit:"day"}),i);case"ccc":return n.day(r,{width:"abbreviated",context:"standalone"})||n.day(r,{width:"short",context:"standalone"})||n.day(r,{width:"narrow",context:"standalone"});case"ccccc":return n.day(r,{width:"narrow",context:"standalone"});case"cccccc":return n.day(r,{width:"short",context:"standalone"})||n.day(r,{width:"narrow",context:"standalone"});case"cccc":default:return n.day(r,{width:"wide",context:"standalone"})||n.day(r,{width:"abbreviated",context:"standalone"})||n.day(r,{width:"short",context:"standalone"})||n.day(r,{width:"narrow",context:"standalone"})}}validate(r,l){return l>=0&&l<=6}set(r,l,n,a){return r=U3(r,n,a),r.setHours(0,0,0,0),r}}function Q7(o,t){const r=h2(o),l=v7(r),n=t-l;return V0(r,n)}class X7 extends B2{constructor(){super(...arguments);s2(this,"priority",90);s2(this,"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"])}parse(r,l,n){const a=i=>i===0?7:i;switch(l){case"i":case"ii":return j2(l.length,r);case"io":return n.ordinalNumber(r,{unit:"day"});case"iii":return U2(n.day(r,{width:"abbreviated",context:"formatting"})||n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"}),a);case"iiiii":return U2(n.day(r,{width:"narrow",context:"formatting"}),a);case"iiiiii":return U2(n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"}),a);case"iiii":default:return U2(n.day(r,{width:"wide",context:"formatting"})||n.day(r,{width:"abbreviated",context:"formatting"})||n.day(r,{width:"short",context:"formatting"})||n.day(r,{width:"narrow",context:"formatting"}),a)}}validate(r,l){return l>=1&&l<=7}set(r,l,n){return r=Q7(r,n),r.setHours(0,0,0,0),r}}class J7 extends B2{constructor(){super(...arguments);s2(this,"priority",80);s2(this,"incompatibleTokens",["b","B","H","k","t","T"])}parse(r,l,n){switch(l){case"a":case"aa":case"aaa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"})||n.dayPeriod(r,{width:"narrow",context:"formatting"});case"aaaaa":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"aaaa":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})||n.dayPeriod(r,{width:"abbreviated",context:"formatting"})||n.dayPeriod(r,{width:"narrow",context:"formatting"})}}set(r,l,n){return r.setHours(Y3(n),0,0,0),r}}class eo extends B2{constructor(){super(...arguments);s2(this,"priority",80);s2(this,"incompatibleTokens",["a","B","H","k","t","T"])}parse(r,l,n){switch(l){case"b":case"bb":case"bbb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"})||n.dayPeriod(r,{width:"narrow",context:"formatting"});case"bbbbb":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"bbbb":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})||n.dayPeriod(r,{width:"abbreviated",context:"formatting"})||n.dayPeriod(r,{width:"narrow",context:"formatting"})}}set(r,l,n){return r.setHours(Y3(n),0,0,0),r}}class to extends B2{constructor(){super(...arguments);s2(this,"priority",80);s2(this,"incompatibleTokens",["a","b","t","T"])}parse(r,l,n){switch(l){case"B":case"BB":case"BBB":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"})||n.dayPeriod(r,{width:"narrow",context:"formatting"});case"BBBBB":return n.dayPeriod(r,{width:"narrow",context:"formatting"});case"BBBB":default:return n.dayPeriod(r,{width:"wide",context:"formatting"})||n.dayPeriod(r,{width:"abbreviated",context:"formatting"})||n.dayPeriod(r,{width:"narrow",context:"formatting"})}}set(r,l,n){return r.setHours(Y3(n),0,0,0),r}}class oo extends B2{constructor(){super(...arguments);s2(this,"priority",70);s2(this,"incompatibleTokens",["H","K","k","t","T"])}parse(r,l,n){switch(l){case"h":return O2(Y2.hour12h,r);case"ho":return n.ordinalNumber(r,{unit:"hour"});default:return j2(l.length,r)}}validate(r,l){return l>=1&&l<=12}set(r,l,n){const a=r.getHours()>=12;return a&&n<12?r.setHours(n+12,0,0,0):!a&&n===12?r.setHours(0,0,0,0):r.setHours(n,0,0,0),r}}class ro extends B2{constructor(){super(...arguments);s2(this,"priority",70);s2(this,"incompatibleTokens",["a","b","h","K","k","t","T"])}parse(r,l,n){switch(l){case"H":return O2(Y2.hour23h,r);case"Ho":return n.ordinalNumber(r,{unit:"hour"});default:return j2(l.length,r)}}validate(r,l){return l>=0&&l<=23}set(r,l,n){return r.setHours(n,0,0,0),r}}class lo extends B2{constructor(){super(...arguments);s2(this,"priority",70);s2(this,"incompatibleTokens",["h","H","k","t","T"])}parse(r,l,n){switch(l){case"K":return O2(Y2.hour11h,r);case"Ko":return n.ordinalNumber(r,{unit:"hour"});default:return j2(l.length,r)}}validate(r,l){return l>=0&&l<=11}set(r,l,n){return r.getHours()>=12&&n<12?r.setHours(n+12,0,0,0):r.setHours(n,0,0,0),r}}class no extends B2{constructor(){super(...arguments);s2(this,"priority",70);s2(this,"incompatibleTokens",["a","b","h","H","K","t","T"])}parse(r,l,n){switch(l){case"k":return O2(Y2.hour24h,r);case"ko":return n.ordinalNumber(r,{unit:"hour"});default:return j2(l.length,r)}}validate(r,l){return l>=1&&l<=24}set(r,l,n){const a=n<=24?n%24:n;return r.setHours(a,0,0,0),r}}class ao extends B2{constructor(){super(...arguments);s2(this,"priority",60);s2(this,"incompatibleTokens",["t","T"])}parse(r,l,n){switch(l){case"m":return O2(Y2.minute,r);case"mo":return n.ordinalNumber(r,{unit:"minute"});default:return j2(l.length,r)}}validate(r,l){return l>=0&&l<=59}set(r,l,n){return r.setMinutes(n,0,0),r}}class io extends B2{constructor(){super(...arguments);s2(this,"priority",50);s2(this,"incompatibleTokens",["t","T"])}parse(r,l,n){switch(l){case"s":return O2(Y2.second,r);case"so":return n.ordinalNumber(r,{unit:"second"});default:return j2(l.length,r)}}validate(r,l){return l>=0&&l<=59}set(r,l,n){return r.setSeconds(n,0),r}}class so extends B2{constructor(){super(...arguments);s2(this,"priority",30);s2(this,"incompatibleTokens",["t","T"])}parse(r,l){const n=a=>Math.trunc(a*Math.pow(10,-l.length+3));return U2(j2(l.length,r),n)}set(r,l,n){return r.setMilliseconds(n),r}}class co extends B2{constructor(){super(...arguments);s2(this,"priority",10);s2(this,"incompatibleTokens",["t","T","x"])}parse(r,l){switch(l){case"X":return A0(T0.basicOptionalMinutes,r);case"XX":return A0(T0.basic,r);case"XXXX":return A0(T0.basicOptionalSeconds,r);case"XXXXX":return A0(T0.extendedOptionalSeconds,r);case"XXX":default:return A0(T0.extended,r)}}set(r,l,n){return l.timestampIsSet?r:x2(r,r.getTime()-Ae(r)-n)}}class uo extends B2{constructor(){super(...arguments);s2(this,"priority",10);s2(this,"incompatibleTokens",["t","T","X"])}parse(r,l){switch(l){case"x":return A0(T0.basicOptionalMinutes,r);case"xx":return A0(T0.basic,r);case"xxxx":return A0(T0.basicOptionalSeconds,r);case"xxxxx":return A0(T0.extendedOptionalSeconds,r);case"xxx":default:return A0(T0.extended,r)}}set(r,l,n){return l.timestampIsSet?r:x2(r,r.getTime()-Ae(r)-n)}}class Co extends B2{constructor(){super(...arguments);s2(this,"priority",40);s2(this,"incompatibleTokens","*")}parse(r){return t6(r)}set(r,l,n){return[x2(r,n*1e3),{timestampIsSet:!0}]}}class po extends B2{constructor(){super(...arguments);s2(this,"priority",20);s2(this,"incompatibleTokens","*")}parse(r){return t6(r)}set(r,l,n){return[x2(r,n),{timestampIsSet:!0}]}}const ho={G:new Z7,y:new D7,Y:new E7,R:new T7,u:new A7,Q:new $7,q:new F7,M:new z7,L:new N7,w:new P7,I:new R7,d:new U7,D:new q7,E:new W7,e:new G7,c:new K7,i:new X7,a:new J7,b:new eo,B:new to,h:new oo,H:new ro,K:new lo,k:new no,m:new ao,s:new io,S:new so,X:new co,x:new uo,t:new Co,T:new po},mo=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,fo=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,ko=/^'([^]*?)'?$/,yo=/''/g,go=/\S/,bo=/[a-zA-Z]/;function q3(o,t,r,l){var m,k,M,v,b,L,T,g;const n=_7(),a=(l==null?void 0:l.locale)??n.locale??U5,i=(l==null?void 0:l.firstWeekContainsDate)??((k=(m=l==null?void 0:l.locale)==null?void 0:m.options)==null?void 0:k.firstWeekContainsDate)??n.firstWeekContainsDate??((v=(M=n.locale)==null?void 0:M.options)==null?void 0:v.firstWeekContainsDate)??1,c=(l==null?void 0:l.weekStartsOn)??((L=(b=l==null?void 0:l.locale)==null?void 0:b.options)==null?void 0:L.weekStartsOn)??n.weekStartsOn??((g=(T=n.locale)==null?void 0:T.options)==null?void 0:g.weekStartsOn)??0;if(t==="")return o===""?h2(r):x2(r,NaN);const s={firstWeekContainsDate:i,weekStartsOn:c,locale:a},u=[new S7],d=t.match(fo).map(H=>{const S=H[0];if(S in R3){const Z=R3[S];return Z(H,a.formatLong)}return H}).join("").match(mo),C=[];for(let H of d){!(l!=null&&l.useAdditionalWeekYearTokens)&&J5(H)&&I3(H,t,o),!(l!=null&&l.useAdditionalDayOfYearTokens)&&X5(H)&&I3(H,t,o);const S=H[0],Z=ho[S];if(Z){const{incompatibleTokens:_}=Z;if(Array.isArray(_)){const A=C.find(Q=>_.includes(Q.token)||Q.token===S);if(A)throw new RangeError(`The format string mustn't contain \`${A.fullToken}\` and \`${H}\` at the same time`)}else if(Z.incompatibleTokens==="*"&&C.length>0)throw new RangeError(`The format string mustn't contain \`${H}\` and any other token at the same time`);C.push({token:S,fullToken:H});const I=Z.run(o,H,a.match,s);if(!I)return x2(r,NaN);u.push(I.setter),o=I.rest}else{if(S.match(bo))throw new RangeError("Format string contains an unescaped latin alphabet character `"+S+"`");if(H==="''"?H="'":S==="'"&&(H=Lo(H)),o.indexOf(H)===0)o=o.slice(H.length);else return x2(r,NaN)}}if(o.length>0&&go.test(o))return x2(r,NaN);const p=u.map(H=>H.priority).sort((H,S)=>S-H).filter((H,S,Z)=>Z.indexOf(H)===S).map(H=>u.filter(S=>S.priority===H).sort((S,Z)=>Z.subPriority-S.subPriority)).map(H=>H[0]);let h=h2(r);if(isNaN(h.getTime()))return x2(r,NaN);const f={};for(const H of p){if(!H.validate(h,s))return x2(r,NaN);const S=H.set(h,f,s);Array.isArray(S)?(h=S[0],Object.assign(f,S[1])):h=S}return x2(r,h)}function Lo(o){return o.match(ko)[1].replace(yo,"'")}function l6(o,t){const r=y1(o),l=y1(t);return+r==+l}function Mo(o,t){return V0(o,-t)}function n6(o,t){const r=h2(o),l=r.getFullYear(),n=r.getDate(),a=x2(o,0);a.setFullYear(l,t,15),a.setHours(0,0,0,0);const i=V7(a);return r.setMonth(t,Math.min(n,i)),r}function T2(o,t){let r=h2(o);return isNaN(+r)?x2(o,NaN):(t.year!=null&&r.setFullYear(t.year),t.month!=null&&(r=n6(r,t.month)),t.date!=null&&r.setDate(t.date),t.hours!=null&&r.setHours(t.hours),t.minutes!=null&&r.setMinutes(t.minutes),t.seconds!=null&&r.setSeconds(t.seconds),t.milliseconds!=null&&r.setMilliseconds(t.milliseconds),r)}function wo(o,t){const r=h2(o);return r.setHours(t),r}function a6(o,t){const r=h2(o);return r.setMilliseconds(t),r}function Vo(o,t){const r=h2(o);return r.setMinutes(t),r}function i6(o,t){const r=h2(o);return r.setSeconds(t),r}function $0(o,t){const r=h2(o);return isNaN(+r)?x2(o,NaN):(r.setFullYear(t),r)}function N1(o,t){return _0(o,-t)}function _o(o,t){const{years:r=0,months:l=0,weeks:n=0,days:a=0,hours:i=0,minutes:c=0,seconds:s=0}=t,u=N1(o,l+r*12),d=Mo(u,a+n*7),C=c+i*60,h=(s+C*60)*1e3;return x2(o,d.getTime()-h)}function s6(o,t){return z3(o,-t)}function O1(){const o=e.useAttrs();return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img",...o},[e.createElementVNode("path",{d:"M29.333 8c0-2.208-1.792-4-4-4h-18.667c-2.208 0-4 1.792-4 4v18.667c0 2.208 1.792 4 4 4h18.667c2.208 0 4-1.792 4-4v-18.667zM26.667 8v18.667c0 0.736-0.597 1.333-1.333 1.333 0 0-18.667 0-18.667 0-0.736 0-1.333-0.597-1.333-1.333 0 0 0-18.667 0-18.667 0-0.736 0.597-1.333 1.333-1.333 0 0 18.667 0 18.667 0 0.736 0 1.333 0.597 1.333 1.333z"}),e.createElementVNode("path",{d:"M20 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"}),e.createElementVNode("path",{d:"M9.333 2.667v5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v-5.333c0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"}),e.createElementVNode("path",{d:"M4 14.667h24c0.736 0 1.333-0.597 1.333-1.333s-0.597-1.333-1.333-1.333h-24c-0.736 0-1.333 0.597-1.333 1.333s0.597 1.333 1.333 1.333z"})])}O1.compatConfig={MODE:3};function c6(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M23.057 7.057l-16 16c-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0l16-16c0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0z"}),e.createElementVNode("path",{d:"M7.057 8.943l16 16c0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885l-16-16c-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885z"})])}c6.compatConfig={MODE:3};function W3(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M20.943 23.057l-7.057-7.057c0 0 7.057-7.057 7.057-7.057 0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0l-8 8c-0.521 0.521-0.521 1.365 0 1.885l8 8c0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885z"})])}W3.compatConfig={MODE:3};function G3(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M12.943 24.943l8-8c0.521-0.521 0.521-1.365 0-1.885l-8-8c-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885l7.057 7.057c0 0-7.057 7.057-7.057 7.057-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0z"})])}G3.compatConfig={MODE:3};function K3(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M16 1.333c-8.095 0-14.667 6.572-14.667 14.667s6.572 14.667 14.667 14.667c8.095 0 14.667-6.572 14.667-14.667s-6.572-14.667-14.667-14.667zM16 4c6.623 0 12 5.377 12 12s-5.377 12-12 12c-6.623 0-12-5.377-12-12s5.377-12 12-12z"}),e.createElementVNode("path",{d:"M14.667 8v8c0 0.505 0.285 0.967 0.737 1.193l5.333 2.667c0.658 0.329 1.46 0.062 1.789-0.596s0.062-1.46-0.596-1.789l-4.596-2.298c0 0 0-7.176 0-7.176 0-0.736-0.597-1.333-1.333-1.333s-1.333 0.597-1.333 1.333z"})])}K3.compatConfig={MODE:3};function Q3(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M24.943 19.057l-8-8c-0.521-0.521-1.365-0.521-1.885 0l-8 8c-0.52 0.52-0.52 1.365 0 1.885s1.365 0.52 1.885 0l7.057-7.057c0 0 7.057 7.057 7.057 7.057 0.52 0.52 1.365 0.52 1.885 0s0.52-1.365 0-1.885z"})])}Q3.compatConfig={MODE:3};function X3(){return e.openBlock(),e.createElementBlock("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor","aria-hidden":"true",class:"dp__icon",role:"img"},[e.createElementVNode("path",{d:"M7.057 12.943l8 8c0.521 0.521 1.365 0.521 1.885 0l8-8c0.52-0.52 0.52-1.365 0-1.885s-1.365-0.52-1.885 0l-7.057 7.057c0 0-7.057-7.057-7.057-7.057-0.52-0.52-1.365-0.52-1.885 0s-0.52 1.365 0 1.885z"})])}X3.compatConfig={MODE:3};const p0=(o,t)=>t?new Date(o.toLocaleString("en-US",{timeZone:t})):new Date(o),J3=(o,t,r)=>e9(o,t,r)||o2(),vo=(o,t,r)=>{const l=t.dateInTz?p0(new Date(o),t.dateInTz):o2(o);return r?u0(l,!0):l},e9=(o,t,r)=>{if(!o)return null;const l=r?u0(o2(o),!0):o2(o);return t?t.exactMatch?vo(o,t,r):p0(l,t.timezone):l},Ho=o=>{if(!o)return 0;const t=new Date,r=new Date(t.toLocaleString("en-US",{timeZone:"UTC"})),l=new Date(t.toLocaleString("en-US",{timeZone:o})),n=l.getTimezoneOffset()/60;return(+r-+l)/(1e3*60*60)-n};var H0=(o=>(o.month="month",o.year="year",o))(H0||{}),b1=(o=>(o.top="top",o.bottom="bottom",o))(b1||{}),L1=(o=>(o.header="header",o.calendar="calendar",o.timePicker="timePicker",o))(L1||{}),r0=(o=>(o.month="month",o.year="year",o.calendar="calendar",o.time="time",o.minutes="minutes",o.hours="hours",o.seconds="seconds",o))(r0||{});const xo=["timestamp","date","iso"];var c0=(o=>(o.up="up",o.down="down",o.left="left",o.right="right",o))(c0||{}),A2=(o=>(o.arrowUp="ArrowUp",o.arrowDown="ArrowDown",o.arrowLeft="ArrowLeft",o.arrowRight="ArrowRight",o.enter="Enter",o.space=" ",o.esc="Escape",o.tab="Tab",o.home="Home",o.end="End",o.pageUp="PageUp",o.pageDown="PageDown",o))(A2||{});function d6(o){return t=>new Intl.DateTimeFormat(o,{weekday:"short",timeZone:"UTC"}).format(new Date(`2017-01-0${t}T00:00:00+00:00`)).slice(0,2)}function Bo(o){return t=>E0(p0(new Date(`2017-01-0${t}T00:00:00+00:00`),"UTC"),"EEEEEE",{locale:o})}const So=(o,t,r)=>{const l=[1,2,3,4,5,6,7];let n;if(o!==null)try{n=l.map(Bo(o))}catch{n=l.map(d6(t))}else n=l.map(d6(t));const a=n.slice(0,r),i=n.slice(r+1,n.length);return[n[r]].concat(...i).concat(...a)},t9=(o,t,r)=>{const l=[];for(let n=+o[0];n<=+o[1];n++)l.push({value:+n,text:f6(n,t)});return r?l.reverse():l},u6=(o,t,r)=>{const l=[1,2,3,4,5,6,7,8,9,10,11,12].map(a=>{const i=a<10?`0${a}`:a;return new Date(`2017-${i}-01T00:00:00+00:00`)});if(o!==null)try{const a=r==="long"?"LLLL":"LLL";return l.map((i,c)=>{const s=E0(p0(i,"UTC"),a,{locale:o});return{text:s.charAt(0).toUpperCase()+s.substring(1),value:c}})}catch{}const n=new Intl.DateTimeFormat(t,{month:r,timeZone:"UTC"});return l.map((a,i)=>{const c=n.format(a);return{text:c.charAt(0).toUpperCase()+c.substring(1),value:i}})},Zo=o=>[12,1,2,3,4,5,6,7,8,9,10,11,12,1,2,3,4,5,6,7,8,9,10,11][o],K2=o=>{const t=e.unref(o);return t!=null&&t.$el?t==null?void 0:t.$el:t},Do=o=>({type:"dot",...o??{}}),C6=o=>Array.isArray(o)?!!o[0]&&!!o[1]:!1,o9={prop:o=>`"${o}" prop must be enabled!`,dateArr:o=>`You need to use array as "model-value" binding in order to support "${o}"`},Q2=o=>o,p6=o=>o===0?o:!o||isNaN(+o)?null:+o,h6=o=>o===null,m6=o=>{if(o)return[...o.querySelectorAll("input, button, select, textarea, a[href]")][0]},Eo=o=>{const t=[],r=l=>l.filter(n=>n);for(let l=0;l<o.length;l+=3){const n=[o[l],o[l+1],o[l+2]];t.push(r(n))}return t},ie=(o,t,r)=>{const l=r!=null,n=t!=null;if(!l&&!n)return!1;const a=+r,i=+t;return l&&n?+o>a||+o<i:l?+o>a:n?+o<i:!1},P1=(o,t)=>Eo(o).map(r=>r.map(l=>{const{active:n,disabled:a,isBetween:i,highlighted:c}=t(l);return{...l,active:n,disabled:a,className:{dp__overlay_cell_active:n,dp__overlay_cell:!n,dp__overlay_cell_disabled:a,dp__overlay_cell_pad:!0,dp__overlay_cell_active_disabled:a&&n,dp__cell_in_between:i,"dp--highlighted":c}}})),i1=(o,t,r=!1)=>{o&&t.allowStopPropagation&&(r&&o.stopImmediatePropagation(),o.stopPropagation())},To=()=>["a[href]","area[href]","input:not([disabled]):not([type='hidden'])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","[tabindex]:not([tabindex='-1'])","[data-datepicker-instance]"].join(", ");function Ao(o,t){let r=[...document.querySelectorAll(To())];r=r.filter(n=>!o.contains(n)||n.hasAttribute("data-datepicker-instance"));const l=r.indexOf(o);if(l>=0&&(t?l-1>=0:l+1<=r.length))return r[l+(t?-1:1)]}const r9=(o,t)=>o==null?void 0:o.querySelector(`[data-dp-element="${t}"]`),f6=(o,t)=>new Intl.NumberFormat(t,{useGrouping:!1,style:"decimal"}).format(o),l9=o=>E0(o,"dd-MM-yyyy"),n9=o=>Array.isArray(o),Fe=(o,t)=>t.get(l9(o)),$o=(o,t)=>o?t?t instanceof Map?!!Fe(o,t):t(o2(o)):!1:!0,d0=(o,t,r=!1,l)=>{if(o.key===A2.enter||o.key===A2.space)return r&&o.preventDefault(),t();if(l)return l(o)},k6=()=>["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].some(o=>navigator.userAgent.includes(o))||navigator.userAgent.includes("Mac")&&"ontouchend"in document,y6=(o,t,r,l,n,a)=>{const i=q3(o,t.slice(0,o.length),new Date,{locale:a});return oe(i)&&O5(i)?l||n?i:T2(i,{hours:+r.hours,minutes:+(r==null?void 0:r.minutes),seconds:+(r==null?void 0:r.seconds),milliseconds:0}):null},Fo=(o,t,r,l,n,a)=>{const i=Array.isArray(r)?r[0]:r;if(typeof t=="string")return y6(o,t,i,l,n,a);if(Array.isArray(t)){let c=null;for(const s of t)if(c=y6(o,s,i,l,n,a),c)break;return c}return typeof t=="function"?t(o):null},o2=o=>o?new Date(o):new Date,zo=(o,t,r)=>{if(t){const n=(o.getMonth()+1).toString().padStart(2,"0"),a=o.getDate().toString().padStart(2,"0"),i=o.getHours().toString().padStart(2,"0"),c=o.getMinutes().toString().padStart(2,"0"),s=r?o.getSeconds().toString().padStart(2,"0"):"00";return`${o.getFullYear()}-${n}-${a}T${i}:${c}:${s}.000Z`}const l=Date.UTC(o.getUTCFullYear(),o.getUTCMonth(),o.getUTCDate(),o.getUTCHours(),o.getUTCMinutes(),o.getUTCSeconds());return new Date(l).toISOString()},u0=(o,t)=>{const r=o2(JSON.parse(JSON.stringify(o))),l=T2(r,{hours:0,minutes:0,seconds:0,milliseconds:0});return t?Et(l):l},s1=(o,t,r,l)=>{let n=o?o2(o):o2();return(t||t===0)&&(n=wo(n,+t)),(r||r===0)&&(n=Vo(n,+r)),(l||l===0)&&(n=i6(n,+l)),a6(n,0)},R2=(o,t)=>!o||!t?!1:ae(u0(o),u0(t)),M2=(o,t)=>!o||!t?!1:z1(u0(o),u0(t)),q2=(o,t)=>!o||!t?!1:F1(u0(o),u0(t)),ze=(o,t,r)=>o!=null&&o[0]&&o!=null&&o[1]?q2(r,o[0])&&R2(r,o[1]):o!=null&&o[0]&&t?q2(r,o[0])&&R2(r,t)||R2(r,o[0])&&q2(r,t):!1,x0=o=>{const t=T2(new Date(o),{date:1});return u0(t)},a9=(o,t,r)=>t&&(r||r===0)?Object.fromEntries(["hours","minutes","seconds"].map(l=>l===t?[l,r]:[l,isNaN(+o[l])?void 0:+o[l]])):{hours:isNaN(+o.hours)?void 0:+o.hours,minutes:isNaN(+o.minutes)?void 0:+o.minutes,seconds:isNaN(+o.seconds)?void 0:+o.seconds},M1=o=>({hours:P0(o),minutes:a1(o),seconds:$1(o)}),g6=(o,t)=>{if(t){const r=k2(o2(t));if(r>o)return 12;if(r===o)return L2(o2(t))}},b6=(o,t)=>{if(t){const r=k2(o2(t));return r<o?-1:r===o?L2(o2(t)):void 0}},j1=o=>{if(o)return k2(o2(o))},L6=(o,t)=>{const r=q2(o,t)?t:o,l=q2(t,o)?t:o;return j5({start:r,end:l})},No=o=>{const t=_0(o,1);return{month:L2(t),year:k2(t)}},j0=(o,t)=>{const r=v0(o,{weekStartsOn:+t}),l=I5(o,{weekStartsOn:+t});return[r,l]},M6=(o,t)=>{const r={hours:P0(o2()),minutes:a1(o2()),seconds:t?$1(o2()):0};return Object.assign(r,o)},c1=(o,t,r)=>[T2(o2(o),{date:1}),T2(o2(),{month:t,year:r,date:1})],R0=(o,t,r)=>{let l=o?o2(o):o2();return(t||t===0)&&(l=n6(l,t)),r&&(l=$0(l,r)),l},w6=(o,t,r,l,n)=>{if(!l||n&&!t||!n&&!r)return!1;const a=n?_0(o,1):N1(o,1),i=[L2(a),k2(a)];return n?!Po(...i,t):!Oo(...i,r)},Oo=(o,t,r)=>R2(...c1(r,o,t))||M2(...c1(r,o,t)),Po=(o,t,r)=>q2(...c1(r,o,t))||M2(...c1(r,o,t)),V6=(o,t,r,l,n,a,i)=>{if(typeof t=="function"&&!i)return t(o);const c=r?{locale:r}:void 0;return Array.isArray(o)?`${E0(o[0],a,c)}${n&&!o[1]?"":l}${o[1]?E0(o[1],a,c):""}`:E0(o,a,c)},R1=o=>{if(o)return null;throw new Error(o9.prop("partial-range"))},Ne=(o,t)=>{if(t)return o();throw new Error(o9.prop("range"))},i9=o=>Array.isArray(o)?oe(o[0])&&(o[1]?oe(o[1]):!0):o?oe(o):!1,jo=(o,t)=>T2(t??o2(),{hours:+o.hours||0,minutes:+o.minutes||0,seconds:+o.seconds||0}),s9=(o,t,r,l)=>{if(!o)return!0;if(l){const n=r==="max"?ae(o,t):F1(o,t),a={seconds:0,milliseconds:0};return n||z1(T2(o,a),T2(t,a))}return r==="max"?o.getTime()<=t.getTime():o.getTime()>=t.getTime()},c9=(o,t,r)=>o?jo(o,t):o2(r??t),_6=(o,t,r,l,n)=>{if(Array.isArray(l)){const i=c9(o,l[0],t),c=c9(o,l[1],t);return s9(l[0],i,r,!!t)&&s9(l[1],c,r,!!t)&&n}const a=c9(o,l,t);return s9(l,a,r,!!t)&&n},d9=o=>T2(o2(),M1(o)),Ro=(o,t)=>o instanceof Map?Array.from(o.values()).filter(r=>k2(o2(r))===t).map(r=>L2(r)):[],v6=(o,t,r)=>typeof o=="function"?o({month:t,year:r}):!!o.months.find(l=>l.month===t&&l.year===r),u9=(o,t)=>typeof o=="function"?o(t):o.years.includes(t),H6=o=>E0(o,"yyyy-MM-dd"),se=e.reactive({menuFocused:!1,shiftKeyInMenu:!1}),x6=()=>{const o=r=>{se.menuFocused=r},t=r=>{se.shiftKeyInMenu!==r&&(se.shiftKeyInMenu=r)};return{control:e.computed(()=>({shiftKeyInMenu:se.shiftKeyInMenu,menuFocused:se.menuFocused})),setMenuFocused:o,setShiftKey:t}},$2=e.reactive({monthYear:[],calendar:[],time:[],actionRow:[],selectionGrid:[],timePicker:{0:[],1:[]},monthPicker:[]}),C9=e.ref(null),Oe=e.ref(!1),p9=e.ref(!1),h9=e.ref(!1),m9=e.ref(!1),l0=e.ref(0),W2=e.ref(0),d1=()=>{const o=e.computed(()=>Oe.value?[...$2.selectionGrid,$2.actionRow].filter(C=>C.length):p9.value?[...$2.timePicker[0],...$2.timePicker[1],m9.value?[]:[C9.value],$2.actionRow].filter(C=>C.length):h9.value?[...$2.monthPicker,$2.actionRow]:[$2.monthYear,...$2.calendar,$2.time,$2.actionRow].filter(C=>C.length)),t=C=>{l0.value=C?l0.value+1:l0.value-1;let p=null;o.value[W2.value]&&(p=o.value[W2.value][l0.value]),!p&&o.value[W2.value+(C?1:-1)]?(W2.value=W2.value+(C?1:-1),l0.value=C?0:o.value[W2.value].length-1):p||(l0.value=C?l0.value-1:l0.value+1)},r=C=>{W2.value===0&&!C||W2.value===o.value.length&&C||(W2.value=C?W2.value+1:W2.value-1,o.value[W2.value]?o.value[W2.value]&&!o.value[W2.value][l0.value]&&l0.value!==0&&(l0.value=o.value[W2.value].length-1):W2.value=C?W2.value-1:W2.value+1)},l=C=>{let p=null;o.value[W2.value]&&(p=o.value[W2.value][l0.value]),p?p.focus({preventScroll:!Oe.value}):l0.value=C?l0.value-1:l0.value+1},n=()=>{t(!0),l(!0)},a=()=>{t(!1),l(!1)},i=()=>{r(!1),l(!0)},c=()=>{r(!0),l(!0)},s=(C,p)=>{$2[p]=C},u=(C,p)=>{$2[p]=C},d=()=>{l0.value=0,W2.value=0};return{buildMatrix:s,buildMultiLevelMatrix:u,setTimePickerBackRef:C=>{C9.value=C},setSelectionGrid:C=>{Oe.value=C,d(),C||($2.selectionGrid=[])},setTimePicker:(C,p=!1)=>{p9.value=C,m9.value=p,d(),C||($2.timePicker[0]=[],$2.timePicker[1]=[])},setTimePickerElements:(C,p=0)=>{$2.timePicker[p]=C},arrowRight:n,arrowLeft:a,arrowUp:i,arrowDown:c,clearArrowNav:()=>{$2.monthYear=[],$2.calendar=[],$2.time=[],$2.actionRow=[],$2.selectionGrid=[],$2.timePicker[0]=[],$2.timePicker[1]=[],Oe.value=!1,p9.value=!1,m9.value=!1,h9.value=!1,d(),C9.value=null},setMonthPicker:C=>{h9.value=C,d()},refSets:$2}},B6=o=>({menuAppearTop:"dp-menu-appear-top",menuAppearBottom:"dp-menu-appear-bottom",open:"dp-slide-down",close:"dp-slide-up",next:"calendar-next",previous:"calendar-prev",vNext:"dp-slide-up",vPrevious:"dp-slide-down",...o??{}}),Io=o=>({toggleOverlay:"Toggle overlay",menu:"Datepicker menu",input:"Datepicker input",openTimePicker:"Open time picker",closeTimePicker:"Close time Picker",incrementValue:t=>`Increment ${t}`,decrementValue:t=>`Decrement ${t}`,openTpOverlay:t=>`Open ${t} overlay`,amPmButton:"Switch AM/PM mode",openYearsOverlay:"Open years overlay",openMonthsOverlay:"Open months overlay",nextMonth:"Next month",prevMonth:"Previous month",nextYear:"Next year",prevYear:"Previous year",day:void 0,weekDay:void 0,clearInput:"Clear value",calendarIcon:"Calendar icon",timePicker:"Time picker",monthPicker:t=>`Month picker${t?" overlay":""}`,yearPicker:t=>`Year picker${t?" overlay":""}`,timeOverlay:t=>`${t} overlay`,...o??{}}),S6=o=>o?typeof o=="boolean"?o?2:0:+o>=2?+o:2:0,Yo=o=>{const t=typeof o=="object"&&o,r={static:!0,solo:!1};if(!o)return{...r,count:S6(!1)};const l=t?o:{},n=t?l.count??!0:o,a=S6(n);return Object.assign(r,l,{count:a})},Uo=(o,t,r)=>o||(typeof r=="string"?r:t),qo=o=>typeof o=="boolean"?o?B6({}):!1:B6(o),Wo=o=>{const t={enterSubmit:!0,tabSubmit:!0,openMenu:"open",selectOnFocus:!1,rangeSeparator:" - "};return typeof o=="object"?{...t,...o??{},enabled:!0}:{...t,enabled:o}},Go=o=>({months:[],years:[],times:{hours:[],minutes:[],seconds:[]},...o??{}}),Ko=o=>({showSelect:!0,showCancel:!0,showNow:!1,showPreview:!0,...o??{}}),Qo=o=>{const t={input:!1};return typeof o=="object"?{...t,...o??{},enabled:!0}:{enabled:o,...t}},Xo=o=>({allowStopPropagation:!0,closeOnScroll:!1,modeHeight:255,allowPreventDefault:!1,closeOnClearValue:!0,closeOnAutoApply:!0,noSwipe:!1,keepActionRow:!1,onClickOutside:void 0,tabOutClosesMenu:!0,arrowLeft:void 0,keepViewOnOffsetClick:!1,timeArrowHoldThreshold:0,shadowDom:!1,...o??{}}),Jo=o=>{const t={dates:Array.isArray(o)?o.map(r=>o2(r)):[],years:[],months:[],quarters:[],weeks:[],weekdays:[],options:{highlightDisabled:!1}};return typeof o=="function"?o:{...t,...o??{}}},er=o=>typeof o=="object"?{type:(o==null?void 0:o.type)??"local",hideOnOffsetDates:(o==null?void 0:o.hideOnOffsetDates)??!1}:{type:o,hideOnOffsetDates:!1},tr=o=>{const t={noDisabledRange:!1,showLastInRange:!0,minMaxRawRange:!1,partialRange:!0,disableTimeRangeValidation:!1,maxRange:void 0,minRange:void 0,autoRange:void 0,fixedStart:!1,fixedEnd:!1};return typeof o=="object"?{enabled:!0,...t,...o}:{enabled:o,...t}},or=o=>o?typeof o=="string"?{timezone:o,exactMatch:!1,dateInTz:void 0,emitTimezone:void 0,convertModel:!0}:{timezone:o.timezone,exactMatch:o.exactMatch??!1,dateInTz:o.dateInTz??void 0,emitTimezone:o.emitTimezone??void 0,convertModel:o.convertModel??!0}:{timezone:void 0,exactMatch:!1,emitTimezone:void 0},f9=(o,t,r)=>new Map(o.map(l=>{const n=J3(l,t,r);return[l9(n),n]})),rr=(o,t)=>o.length?new Map(o.map(r=>{const l=J3(r.date,t);return[l9(l),r]})):null,lr=o=>{var t;return{minDate:e9(o.minDate,o.timezone,o.isSpecific),maxDate:e9(o.maxDate,o.timezone,o.isSpecific),disabledDates:n9(o.disabledDates)?f9(o.disabledDates,o.timezone,o.isSpecific):o.disabledDates,allowedDates:n9(o.allowedDates)?f9(o.allowedDates,o.timezone,o.isSpecific):null,highlight:typeof o.highlight=="object"&&n9((t=o.highlight)==null?void 0:t.dates)?f9(o.highlight.dates,o.timezone):o.highlight,markers:rr(o.markers,o.timezone)}},nr=o=>typeof o=="boolean"?{enabled:o,dragSelect:!0,limit:null}:{enabled:!!o,limit:o.limit?+o.limit:null,dragSelect:o.dragSelect??!0},ar=o=>({...Object.fromEntries(Object.keys(o).map(t=>{const r=t,l=o[r],n=typeof o[r]=="string"?{[l]:!0}:Object.fromEntries(l.map(a=>[a,!0]));return[t,n]}))}),z2=o=>{const t=()=>{const g=o.enableSeconds?":ss":"",H=o.enableMinutes?":mm":"";return o.is24?`HH${H}${g}`:`hh${H}${g} aa`},r=()=>{var g;return o.format?o.format:o.monthPicker?"MM/yyyy":o.timePicker?t():o.weekPicker?`${((g=k.value)==null?void 0:g.type)==="iso"?"RR":"ww"}-yyyy`:o.yearPicker?"yyyy":o.quarterPicker?"QQQ/yyyy":o.enableTimePicker?`MM/dd/yyyy, ${t()}`:"MM/dd/yyyy"},l=g=>M6(g,o.enableSeconds),n=()=>L.value.enabled?o.startTime&&Array.isArray(o.startTime)?[l(o.startTime[0]),l(o.startTime[1])]:null:o.startTime&&!Array.isArray(o.startTime)?l(o.startTime):null,a=e.computed(()=>Yo(o.multiCalendars)),i=e.computed(()=>n()),c=e.computed(()=>Io(o.ariaLabels)),s=e.computed(()=>Go(o.filters)),u=e.computed(()=>qo(o.transitions)),d=e.computed(()=>Ko(o.actionRow)),C=e.computed(()=>Uo(o.previewFormat,o.format,r())),p=e.computed(()=>Wo(o.textInput)),h=e.computed(()=>Qo(o.inline)),f=e.computed(()=>Xo(o.config)),m=e.computed(()=>Jo(o.highlight)),k=e.computed(()=>er(o.weekNumbers)),M=e.computed(()=>or(o.timezone)),v=e.computed(()=>nr(o.multiDates)),b=e.computed(()=>lr({minDate:o.minDate,maxDate:o.maxDate,disabledDates:o.disabledDates,allowedDates:o.allowedDates,highlight:m.value,markers:o.markers,timezone:M.value,isSpecific:o.monthPicker||o.yearPicker||o.quarterPicker})),L=e.computed(()=>tr(o.range)),T=e.computed(()=>ar(o.ui));return{defaultedTransitions:u,defaultedMultiCalendars:a,defaultedStartTime:i,defaultedAriaLabels:c,defaultedFilters:s,defaultedActionRow:d,defaultedPreviewFormat:C,defaultedTextInput:p,defaultedInline:h,defaultedConfig:f,defaultedHighlight:m,defaultedWeekNumbers:k,defaultedRange:L,propDates:b,defaultedTz:M,defaultedMultiDates:v,defaultedUI:T,getDefaultPattern:r,getDefaultStartTime:n}},ir=(o,t,r)=>{const l=e.ref(),{defaultedTextInput:n,defaultedRange:a,defaultedTz:i,defaultedMultiDates:c,getDefaultPattern:s}=z2(t),u=e.ref(""),d=e.toRef(t,"format"),C=e.toRef(t,"formatLocale");e.watch(l,()=>{typeof t.onInternalModelChange=="function"&&o("internal-model-change",l.value,t2(!0))},{deep:!0}),e.watch(a,(B,U)=>{B.enabled!==U.enabled&&(l.value=null)}),e.watch(d,()=>{n2()});const p=B=>i.value.timezone&&i.value.convertModel?p0(B,i.value.timezone):B,h=B=>{if(i.value.timezone&&i.value.convertModel){const U=Ho(i.value.timezone);return vt(B,U)}return B},f=(B,U,l2=!1)=>V6(B,t.format,t.formatLocale,n.value.rangeSeparator,t.modelAuto,U??s(),l2),m=B=>B?t.modelType?E(B):{hours:P0(B),minutes:a1(B),seconds:t.enableSeconds?$1(B):0}:null,k=B=>t.modelType?E(B):{month:L2(B),year:k2(B)},M=B=>Array.isArray(B)?c.value.enabled?B.map(U=>v(U,$0(o2(),U))):Ne(()=>[$0(o2(),B[0]),B[1]?$0(o2(),B[1]):R1(a.value.partialRange)],a.value.enabled):$0(o2(),+B),v=(B,U)=>(typeof B=="string"||typeof B=="number")&&t.modelType?$(B):U,b=B=>Array.isArray(B)?[v(B[0],s1(null,+B[0].hours,+B[0].minutes,B[0].seconds)),v(B[1],s1(null,+B[1].hours,+B[1].minutes,B[1].seconds))]:v(B,s1(null,B.hours,B.minutes,B.seconds)),L=B=>{const U=T2(o2(),{date:1});return Array.isArray(B)?c.value.enabled?B.map(l2=>v(l2,R0(U,+l2.month,+l2.year))):Ne(()=>[v(B[0],R0(U,+B[0].month,+B[0].year)),v(B[1],B[1]?R0(U,+B[1].month,+B[1].year):R1(a.value.partialRange))],a.value.enabled):v(B,R0(U,+B.month,+B.year))},T=B=>{if(Array.isArray(B))return B.map(U=>$(U));throw new Error(o9.dateArr("multi-dates"))},g=B=>{if(Array.isArray(B)&&a.value.enabled){const U=B[0],l2=B[1];return[o2(Array.isArray(U)?U[0]:null),Array.isArray(l2)&&l2.length?o2(l2[0]):null]}return o2(B[0])},H=B=>t.modelAuto?Array.isArray(B)?[$(B[0]),$(B[1])]:t.autoApply?[$(B)]:[$(B),null]:Array.isArray(B)?Ne(()=>B[1]?[$(B[0]),B[1]?$(B[1]):R1(a.value.partialRange)]:[$(B[0])],a.value.enabled):$(B),S=()=>{Array.isArray(l.value)&&a.value.enabled&&l.value.length===1&&l.value.push(R1(a.value.partialRange))},Z=()=>{const B=l.value;return[E(B[0]),B[1]?E(B[1]):R1(a.value.partialRange)]},_=()=>l.value[1]?Z():E(Q2(l.value[0])),I=()=>(l.value||[]).map(B=>E(B)),A=(B=!1)=>(B||S(),t.modelAuto?_():c.value.enabled?I():Array.isArray(l.value)?Ne(()=>Z(),a.value.enabled):E(Q2(l.value))),Q=B=>!B||Array.isArray(B)&&!B.length?null:t.timePicker?b(Q2(B)):t.monthPicker?L(Q2(B)):t.yearPicker?M(Q2(B)):c.value.enabled?T(Q2(B)):t.weekPicker?g(Q2(B)):H(Q2(B)),x=B=>{const U=Q(B);i9(Q2(U))?(l.value=Q2(U),n2()):(l.value=null,u.value="")},F=()=>{const B=U=>E0(U,n.value.format);return`${B(l.value[0])} ${n.value.rangeSeparator} ${l.value[1]?B(l.value[1]):""}`},D=()=>r.value&&l.value?Array.isArray(l.value)?F():E0(l.value,n.value.format):f(l.value),Y=()=>l.value?c.value.enabled?l.value.map(B=>f(B)).join("; "):n.value.enabled&&typeof n.value.format=="string"?D():f(l.value):"",n2=()=>{!t.format||typeof t.format=="string"||n.value.enabled&&typeof n.value.format=="string"?u.value=Y():u.value=t.format(l.value)},$=B=>{if(t.utc){const U=new Date(B);return t.utc==="preserve"?new Date(U.getTime()+U.getTimezoneOffset()*6e4):U}return t.modelType?xo.includes(t.modelType)?p(new Date(B)):t.modelType==="format"&&(typeof t.format=="string"||!t.format)?p(q3(B,s(),new Date,{locale:C.value})):p(q3(B,t.modelType,new Date,{locale:C.value})):p(new Date(B))},E=B=>B?t.utc?zo(B,t.utc==="preserve",t.enableSeconds):t.modelType?t.modelType==="timestamp"?+h(B):t.modelType==="iso"?h(B).toISOString():t.modelType==="format"&&(typeof t.format=="string"||!t.format)?f(h(B)):f(h(B),t.modelType,!0):h(B):"",X=(B,U=!1,l2=!1)=>{if(l2)return B;if(o("update:model-value",B),i.value.emitTimezone&&U){const c2=Array.isArray(B)?B.map(P=>p0(Q2(P),i.value.emitTimezone)):p0(Q2(B),i.value.emitTimezone);o("update:model-timezone-value",c2)}},K=B=>Array.isArray(l.value)?c.value.enabled?l.value.map(U=>B(U)):[B(l.value[0]),l.value[1]?B(l.value[1]):R1(a.value.partialRange)]:B(Q2(l.value)),N=()=>{if(Array.isArray(l.value)){const B=j0(l.value[0],t.weekStart),U=l.value[1]?j0(l.value[1],t.weekStart):[];return[B.map(l2=>o2(l2)),U.map(l2=>o2(l2))]}return j0(l.value,t.weekStart).map(B=>o2(B))},y=(B,U)=>X(Q2(K(B)),!1,U),O=B=>{const U=N();return B?U:o("update:model-value",N())},t2=(B=!1)=>(B||n2(),t.monthPicker?y(k,B):t.timePicker?y(m,B):t.yearPicker?y(k2,B):t.weekPicker?O(B):X(A(B),!0,B));return{inputValue:u,internalModelValue:l,checkBeforeEmit:()=>l.value?a.value.enabled?a.value.partialRange?l.value.length>=1:l.value.length===2:!!l.value:!1,parseExternalModelValue:x,formatInputValue:n2,emitModelValue:t2}},sr=(o,t)=>{const{defaultedFilters:r,propDates:l}=z2(o),{validateMonthYearInRange:n}=C1(o),a=(d,C)=>{let p=d;return r.value.months.includes(L2(p))?(p=C?_0(d,1):N1(d,1),a(p,C)):p},i=(d,C)=>{let p=d;return r.value.years.includes(k2(p))?(p=C?z3(d,1):s6(d,1),i(p,C)):p},c=(d,C=!1)=>{const p=T2(o2(),{month:o.month,year:o.year});let h=d?_0(p,1):N1(p,1);o.disableYearSelect&&(h=$0(h,o.year));let f=L2(h),m=k2(h);r.value.months.includes(f)&&(h=a(h,d),f=L2(h),m=k2(h)),r.value.years.includes(m)&&(h=i(h,d),m=k2(h)),n(f,m,d,o.preventMinMaxNavigation)&&s(f,m,C)},s=(d,C,p)=>{t("update-month-year",{month:d,year:C,fromNav:p})},u=e.computed(()=>d=>w6(T2(o2(),{month:o.month,year:o.year}),l.value.maxDate,l.value.minDate,o.preventMinMaxNavigation,d));return{handleMonthYearChange:c,isDisabled:u,updateMonthYear:s}},Pe={multiCalendars:{type:[Boolean,Number,String,Object],default:void 0},modelValue:{type:[String,Date,Array,Object,Number],default:null},modelType:{type:String,default:null},position:{type:String,default:"center"},dark:{type:Boolean,default:!1},format:{type:[String,Function],default:()=>null},autoPosition:{type:Boolean,default:!0},altPosition:{type:Function,default:null},transitions:{type:[Boolean,Object],default:!0},formatLocale:{type:Object,default:null},utc:{type:[Boolean,String],default:!1},ariaLabels:{type:Object,default:()=>({})},offset:{type:[Number,String],default:10},hideNavigation:{type:Array,default:()=>[]},timezone:{type:[String,Object],default:null},vertical:{type:Boolean,default:!1},disableMonthYearSelect:{type:Boolean,default:!1},disableYearSelect:{type:Boolean,default:!1},dayClass:{type:Function,default:null},yearRange:{type:Array,default:()=>[1900,2100]},enableTimePicker:{type:Boolean,default:!0},autoApply:{type:Boolean,default:!1},disabledDates:{type:[Array,Function],default:()=>[]},monthNameFormat:{type:String,default:"short"},startDate:{type:[Date,String],default:null},startTime:{type:[Object,Array],default:null},hideOffsetDates:{type:Boolean,default:!1},noToday:{type:Boolean,default:!1},disabledWeekDays:{type:Array,default:()=>[]},allowedDates:{type:Array,default:null},nowButtonLabel:{type:String,default:"Now"},markers:{type:Array,default:()=>[]},escClose:{type:Boolean,default:!0},spaceConfirm:{type:Boolean,default:!0},monthChangeOnArrows:{type:Boolean,default:!0},presetDates:{type:Array,default:()=>[]},flow:{type:Array,default:()=>[]},partialFlow:{type:Boolean,default:!1},preventMinMaxNavigation:{type:Boolean,default:!1},reverseYears:{type:Boolean,default:!1},weekPicker:{type:Boolean,default:!1},filters:{type:Object,default:()=>({})},arrowNavigation:{type:Boolean,default:!1},highlight:{type:[Function,Object],default:null},teleport:{type:[Boolean,String,Object],default:null},teleportCenter:{type:Boolean,default:!1},locale:{type:String,default:"en-Us"},weekNumName:{type:String,default:"W"},weekStart:{type:[Number,String],default:1},weekNumbers:{type:[String,Function,Object],default:null},monthChangeOnScroll:{type:[Boolean,String],default:!0},dayNames:{type:[Function,Array],default:null},monthPicker:{type:Boolean,default:!1},customProps:{type:Object,default:null},yearPicker:{type:Boolean,default:!1},modelAuto:{type:Boolean,default:!1},selectText:{type:String,default:"Select"},cancelText:{type:String,default:"Cancel"},previewFormat:{type:[String,Function],default:()=>""},multiDates:{type:[Object,Boolean],default:!1},ignoreTimeValidation:{type:Boolean,default:!1},minDate:{type:[Date,String],default:null},maxDate:{type:[Date,String],default:null},minTime:{type:Object,default:null},maxTime:{type:Object,default:null},name:{type:String,default:null},placeholder:{type:String,default:""},hideInputIcon:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},state:{type:Boolean,default:null},required:{type:Boolean,default:!1},autocomplete:{type:String,default:"off"},timePicker:{type:Boolean,default:!1},enableSeconds:{type:Boolean,default:!1},is24:{type:Boolean,default:!0},noHoursOverlay:{type:Boolean,default:!1},noMinutesOverlay:{type:Boolean,default:!1},noSecondsOverlay:{type:Boolean,default:!1},hoursGridIncrement:{type:[String,Number],default:1},minutesGridIncrement:{type:[String,Number],default:5},secondsGridIncrement:{type:[String,Number],default:5},hoursIncrement:{type:[Number,String],default:1},minutesIncrement:{type:[Number,String],default:1},secondsIncrement:{type:[Number,String],default:1},range:{type:[Boolean,Object],default:!1},uid:{type:String,default:null},disabled:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},inline:{type:[Boolean,Object],default:!1},textInput:{type:[Boolean,Object],default:!1},sixWeeks:{type:[Boolean,String],default:!1},actionRow:{type:Object,default:()=>({})},focusStartDate:{type:Boolean,default:!1},disabledTimes:{type:[Function,Array],default:void 0},timePickerInline:{type:Boolean,default:!1},calendar:{type:Function,default:null},config:{type:Object,default:void 0},quarterPicker:{type:Boolean,default:!1},yearFirst:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},onInternalModelChange:{type:[Function,Object],default:null},enableMinutes:{type:Boolean,default:!0},ui:{type:Object,default:()=>({})}},B0={...Pe,shadow:{type:Boolean,default:!1},flowStep:{type:Number,default:0},internalModelValue:{type:[Date,Array],default:null},noOverlayFocus:{type:Boolean,default:!1},collapse:{type:Boolean,default:!1},menuWrapRef:{type:Object,default:null},getInputRect:{type:Function,default:()=>({})},isTextInputDate:{type:Boolean,default:!1}},cr=["title"],dr=["disabled"],ur=e.defineComponent({compatConfig:{MODE:3},__name:"ActionRow",props:{menuMount:{type:Boolean,default:!1},calendarWidth:{type:Number,default:0},...B0},emits:["close-picker","select-date","select-now","invalid-select"],setup(o,{emit:t}){const r=t,l=o,{defaultedActionRow:n,defaultedPreviewFormat:a,defaultedMultiCalendars:i,defaultedTextInput:c,defaultedInline:s,defaultedRange:u,defaultedMultiDates:d}=z2(l),{isTimeValid:C,isMonthValid:p}=C1(l),{buildMatrix:h}=d1(),f=e.ref(null),m=e.ref(null),k=e.ref(!1),M=e.ref({}),v=e.ref(null),b=e.ref(null);e.onMounted(()=>{l.arrowNavigation&&h([K2(f),K2(m)],"actionRow"),L(),window.addEventListener("resize",L)}),e.onUnmounted(()=>{window.removeEventListener("resize",L)});const L=()=>{k.value=!1,setTimeout(()=>{var x,F;const D=(x=v.value)==null?void 0:x.getBoundingClientRect(),Y=(F=b.value)==null?void 0:F.getBoundingClientRect();D&&Y&&(M.value.maxWidth=`${Y.width-D.width-20}px`),k.value=!0},0)},T=e.computed(()=>u.value.enabled&&!u.value.partialRange&&l.internalModelValue?l.internalModelValue.length===2:!0),g=e.computed(()=>!C.value(l.internalModelValue)||!p.value(l.internalModelValue)||!T.value),H=()=>{const x=a.value;return l.timePicker||l.monthPicker,x(Q2(l.internalModelValue))},S=()=>{const x=l.internalModelValue;return i.value.count>0?`${Z(x[0])} - ${Z(x[1])}`:[Z(x[0]),Z(x[1])]},Z=x=>V6(x,a.value,l.formatLocale,c.value.rangeSeparator,l.modelAuto,a.value),_=e.computed(()=>!l.internalModelValue||!l.menuMount?"":typeof a.value=="string"?Array.isArray(l.internalModelValue)?l.internalModelValue.length===2&&l.internalModelValue[1]?S():d.value.enabled?l.internalModelValue.map(x=>`${Z(x)}`):l.modelAuto?`${Z(l.internalModelValue[0])}`:`${Z(l.internalModelValue[0])} -`:Z(l.internalModelValue):H()),I=()=>d.value.enabled?"; ":" - ",A=e.computed(()=>Array.isArray(_.value)?_.value.join(I()):_.value),Q=()=>{C.value(l.internalModelValue)&&p.value(l.internalModelValue)&&T.value?r("select-date"):r("invalid-select")};return(x,F)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"actionRowRef",ref:b,class:"dp__action_row"},[x.$slots["action-row"]?e.renderSlot(x.$slots,"action-row",e.normalizeProps(e.mergeProps({key:0},{internalModelValue:x.internalModelValue,disabled:g.value,selectDate:()=>x.$emit("select-date"),closePicker:()=>x.$emit("close-picker")}))):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.unref(n).showPreview?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__selection_preview",title:A.value,style:e.normalizeStyle(M.value)},[x.$slots["action-preview"]&&k.value?e.renderSlot(x.$slots,"action-preview",{key:0,value:x.internalModelValue}):e.createCommentVNode("",!0),!x.$slots["action-preview"]&&k.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(A.value),1)],64)):e.createCommentVNode("",!0)],12,cr)):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"actionBtnContainer",ref:v,class:"dp__action_buttons","data-dp-element":"action-row"},[x.$slots["action-buttons"]?e.renderSlot(x.$slots,"action-buttons",{key:0,value:x.internalModelValue}):e.createCommentVNode("",!0),x.$slots["action-buttons"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[!e.unref(s).enabled&&e.unref(n).showCancel?(e.openBlock(),e.createElementBlock("button",{key:0,ref_key:"cancelButtonRef",ref:f,type:"button",class:"dp__action_button dp__action_cancel",onClick:F[0]||(F[0]=D=>x.$emit("close-picker")),onKeydown:F[1]||(F[1]=D=>e.unref(d0)(D,()=>x.$emit("close-picker")))},e.toDisplayString(x.cancelText),545)):e.createCommentVNode("",!0),e.unref(n).showNow?(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",class:"dp__action_button dp__action_cancel",onClick:F[2]||(F[2]=D=>x.$emit("select-now")),onKeydown:F[3]||(F[3]=D=>e.unref(d0)(D,()=>x.$emit("select-now")))},e.toDisplayString(x.nowButtonLabel),33)):e.createCommentVNode("",!0),e.unref(n).showSelect?(e.openBlock(),e.createElementBlock("button",{key:2,ref_key:"selectButtonRef",ref:m,type:"button",class:"dp__action_button dp__action_select",disabled:g.value,"data-test":"select-button",onKeydown:F[4]||(F[4]=D=>e.unref(d0)(D,()=>Q())),onClick:Q},e.toDisplayString(x.selectText),41,dr)):e.createCommentVNode("",!0)],64))],512)],64))],512))}}),Cr=["role","aria-label","tabindex"],pr={class:"dp__selection_grid_header"},hr=["aria-selected","aria-disabled","data-test","onClick","onKeydown","onMouseover"],mr=["aria-label"],ce=e.defineComponent({__name:"SelectionOverlay",props:{items:{},type:{},isLast:{type:Boolean},arrowNavigation:{type:Boolean},skipButtonRef:{type:Boolean},headerRefs:{},hideNavigation:{},escClose:{type:Boolean},useRelative:{type:Boolean},height:{},textInput:{type:[Boolean,Object]},config:{},noOverlayFocus:{type:Boolean},focusValue:{},menuWrapRef:{},ariaLabels:{},overlayLabel:{}},emits:["selected","toggle","reset-flow","hover-value"],setup(o,{expose:t,emit:r}){const{setSelectionGrid:l,buildMultiLevelMatrix:n,setMonthPicker:a}=d1(),i=r,c=o,{defaultedAriaLabels:s,defaultedTextInput:u,defaultedConfig:d}=z2(c),{hideNavigationButtons:C}=Ie(),p=e.ref(!1),h=e.ref(null),f=e.ref(null),m=e.ref([]),k=e.ref(),M=e.ref(null),v=e.ref(0),b=e.ref(null);e.onBeforeUpdate(()=>{h.value=null}),e.onMounted(()=>{e.nextTick().then(()=>I()),c.noOverlayFocus||T(),L(!0)}),e.onUnmounted(()=>L(!1));const L=K=>{var N;c.arrowNavigation&&((N=c.headerRefs)!=null&&N.length?a(K):l(K))},T=()=>{var K;const N=K2(f);N&&(u.value.enabled||(h.value?(K=h.value)==null||K.focus({preventScroll:!0}):N.focus({preventScroll:!0})),p.value=N.clientHeight<N.scrollHeight)},g=e.computed(()=>({dp__overlay:!0,"dp--overlay-absolute":!c.useRelative,"dp--overlay-relative":c.useRelative})),H=e.computed(()=>c.useRelative?{height:`${c.height}px`,width:"var(--dp-menu-min-width)"}:void 0),S=e.computed(()=>({dp__overlay_col:!0})),Z=e.computed(()=>({dp__btn:!0,dp__button:!0,dp__overlay_action:!0,dp__over_action_scroll:p.value,dp__button_bottom:c.isLast})),_=e.computed(()=>{var K,N;return{dp__overlay_container:!0,dp__container_flex:((K=c.items)==null?void 0:K.length)<=6,dp__container_block:((N=c.items)==null?void 0:N.length)>6}});e.watch(()=>c.items,()=>I(!1),{deep:!0});const I=(K=!0)=>{e.nextTick().then(()=>{const N=K2(h),y=K2(f),O=K2(M),t2=K2(b),B=O?O.getBoundingClientRect().height:0;y&&(y.getBoundingClientRect().height?v.value=y.getBoundingClientRect().height-B:v.value=d.value.modeHeight-B),N&&t2&&K&&(t2.scrollTop=N.offsetTop-t2.offsetTop-(v.value/2-N.getBoundingClientRect().height)-B)})},A=K=>{K.disabled||i("selected",K.value)},Q=()=>{i("toggle"),i("reset-flow")},x=()=>{c.escClose&&Q()},F=(K,N,y,O)=>{K&&((N.active||N.value===c.focusValue)&&(h.value=K),c.arrowNavigation&&(Array.isArray(m.value[y])?m.value[y][O]=K:m.value[y]=[K],D()))},D=()=>{var K,N;const y=(K=c.headerRefs)!=null&&K.length?[c.headerRefs].concat(m.value):m.value.concat([c.skipButtonRef?[]:[M.value]]);n(Q2(y),(N=c.headerRefs)!=null&&N.length?"monthPicker":"selectionGrid")},Y=K=>{c.arrowNavigation||i1(K,d.value,!0)},n2=K=>{k.value=K,i("hover-value",K)},$=()=>{if(Q(),!c.isLast){const K=r9(c.menuWrapRef??null,"action-row");if(K){const N=m6(K);N==null||N.focus()}}},E=K=>{switch(K.key){case A2.esc:return x();case A2.arrowLeft:return Y(K);case A2.arrowRight:return Y(K);case A2.arrowUp:return Y(K);case A2.arrowDown:return Y(K);default:return}},X=K=>{if(K.key===A2.enter)return Q();if(K.key===A2.tab)return $()};return t({focusGrid:T}),(K,N)=>{var y;return e.openBlock(),e.createElementBlock("div",{ref_key:"gridWrapRef",ref:f,class:e.normalizeClass(g.value),style:e.normalizeStyle(H.value),role:K.useRelative?void 0:"dialog","aria-label":K.overlayLabel,tabindex:K.useRelative?void 0:"0",onKeydown:E,onClick:N[0]||(N[0]=e.withModifiers(()=>{},["prevent"]))},[e.createElementVNode("div",{ref_key:"containerRef",ref:b,class:e.normalizeClass(_.value),style:e.normalizeStyle({"--dp-overlay-height":`${v.value}px`}),role:"grid"},[e.createElementVNode("div",pr,[e.renderSlot(K.$slots,"header")]),K.$slots.overlay?e.renderSlot(K.$slots,"overlay",{key:0}):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(K.items,(O,t2)=>(e.openBlock(),e.createElementBlock("div",{key:t2,class:e.normalizeClass(["dp__overlay_row",{dp__flex_row:K.items.length>=3}]),role:"row"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(O,(B,U)=>(e.openBlock(),e.createElementBlock("div",{key:B.value,ref_for:!0,ref:l2=>F(l2,B,t2,U),role:"gridcell",class:e.normalizeClass(S.value),"aria-selected":B.active||void 0,"aria-disabled":B.disabled||void 0,tabindex:"0","data-test":B.text,onClick:e.withModifiers(l2=>A(B),["prevent"]),onKeydown:l2=>e.unref(d0)(l2,()=>A(B),!0),onMouseover:l2=>n2(B.value)},[e.createElementVNode("div",{class:e.normalizeClass(B.className)},[K.$slots.item?e.renderSlot(K.$slots,"item",{key:0,item:B}):e.createCommentVNode("",!0),K.$slots.item?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(B.text),1)],64))],2)],42,hr))),128))],2))),128))],6),K.$slots["button-icon"]?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:0,ref_key:"toggleButton",ref:M,type:"button","aria-label":(y=e.unref(s))==null?void 0:y.toggleOverlay,class:e.normalizeClass(Z.value),tabindex:"0",onClick:Q,onKeydown:X},[e.renderSlot(K.$slots,"button-icon")],42,mr)),[[e.vShow,!e.unref(C)(K.hideNavigation,K.type)]]):e.createCommentVNode("",!0)],46,Cr)}}}),je=e.defineComponent({__name:"InstanceWrap",props:{multiCalendars:{},stretch:{type:Boolean},collapse:{type:Boolean}},setup(o){const t=o,r=e.computed(()=>t.multiCalendars>0?[...Array(t.multiCalendars).keys()]:[0]),l=e.computed(()=>({dp__instance_calendar:t.multiCalendars>0}));return(n,a)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass({dp__menu_inner:!n.stretch,"dp--menu--inner-stretched":n.stretch,dp__flex_display:n.multiCalendars>0,"dp--flex-display-collapsed":n.collapse})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,(i,c)=>(e.openBlock(),e.createElementBlock("div",{key:i,class:e.normalizeClass(l.value)},[e.renderSlot(n.$slots,"default",{instance:i,index:c})],2))),128))],2))}}),fr=["data-dp-element","aria-label","aria-disabled"],de=e.defineComponent({compatConfig:{MODE:3},__name:"ArrowBtn",props:{ariaLabel:{},elName:{},disabled:{type:Boolean}},emits:["activate","set-ref"],setup(o,{emit:t}){const r=t,l=e.ref(null);return e.onMounted(()=>r("set-ref",l)),(n,a)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"elRef",ref:l,type:"button","data-dp-element":n.elName,class:"dp__btn dp--arrow-btn-nav",tabindex:"0","aria-label":n.ariaLabel,"aria-disabled":n.disabled||void 0,onClick:a[0]||(a[0]=i=>n.$emit("activate")),onKeydown:a[1]||(a[1]=i=>e.unref(d0)(i,()=>n.$emit("activate"),!0))},[e.createElementVNode("span",{class:e.normalizeClass(["dp__inner_nav",{dp__inner_nav_disabled:n.disabled}])},[e.renderSlot(n.$slots,"default")],2)],40,fr))}}),kr=["aria-label","data-test"],Z6=e.defineComponent({__name:"YearModePicker",props:{...B0,showYearPicker:{type:Boolean,default:!1},items:{type:Array,default:()=>[]},instance:{type:Number,default:0},year:{type:Number,default:0},isDisabled:{type:Function,default:()=>!1}},emits:["toggle-year-picker","year-select","handle-year"],setup(o,{emit:t}){const r=t,l=o,{showRightIcon:n,showLeftIcon:a}=Ie(),{defaultedConfig:i,defaultedMultiCalendars:c,defaultedAriaLabels:s,defaultedTransitions:u,defaultedUI:d}=z2(l),{showTransition:C,transitionName:p}=ue(u),h=e.ref(!1),f=(M=!1,v)=>{h.value=!h.value,r("toggle-year-picker",{flow:M,show:v})},m=M=>{h.value=!1,r("year-select",M)},k=(M=!1)=>{r("handle-year",M)};return(M,v)=>{var b,L,T,g,H;return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("div",{class:e.normalizeClass(["dp--year-mode-picker",{"dp--hidden-el":h.value}])},[e.unref(a)(e.unref(c),o.instance)?(e.openBlock(),e.createBlock(de,{key:0,ref:"mpPrevIconRef","aria-label":(b=e.unref(s))==null?void 0:b.prevYear,disabled:o.isDisabled(!1),class:e.normalizeClass((L=e.unref(d))==null?void 0:L.navBtnPrev),onActivate:v[0]||(v[0]=S=>k(!1))},{default:e.withCtx(()=>[M.$slots["arrow-left"]?e.renderSlot(M.$slots,"arrow-left",{key:0}):e.createCommentVNode("",!0),M.$slots["arrow-left"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(W3),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.createElementVNode("button",{ref:"mpYearButtonRef",class:"dp__btn dp--year-select",type:"button","aria-label":`${o.year}-${(T=e.unref(s))==null?void 0:T.openYearsOverlay}`,"data-test":`year-mode-btn-${o.instance}`,onClick:v[1]||(v[1]=()=>f(!1)),onKeydown:v[2]||(v[2]=e.withKeys(()=>f(!1),["enter"]))},[M.$slots.year?e.renderSlot(M.$slots,"year",{key:0,year:o.year}):e.createCommentVNode("",!0),M.$slots.year?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(o.year),1)],64))],40,kr),e.unref(n)(e.unref(c),o.instance)?(e.openBlock(),e.createBlock(de,{key:1,ref:"mpNextIconRef","aria-label":(g=e.unref(s))==null?void 0:g.nextYear,disabled:o.isDisabled(!0),class:e.normalizeClass((H=e.unref(d))==null?void 0:H.navBtnNext),onActivate:v[3]||(v[3]=S=>k(!0))},{default:e.withCtx(()=>[M.$slots["arrow-right"]?e.renderSlot(M.$slots,"arrow-right",{key:0}):e.createCommentVNode("",!0),M.$slots["arrow-right"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(G3),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0)],2),e.createVNode(e.Transition,{name:e.unref(p)(o.showYearPicker),css:e.unref(C)},{default:e.withCtx(()=>{var S,Z;return[o.showYearPicker?(e.openBlock(),e.createBlock(ce,{key:0,items:o.items,"text-input":M.textInput,"esc-close":M.escClose,config:M.config,"is-last":M.autoApply&&!e.unref(i).keepActionRow,"hide-navigation":M.hideNavigation,"aria-labels":M.ariaLabels,"overlay-label":(Z=(S=e.unref(s))==null?void 0:S.yearPicker)==null?void 0:Z.call(S,!0),type:"year",onToggle:f,onSelected:v[4]||(v[4]=_=>m(_))},e.createSlots({"button-icon":e.withCtx(()=>[M.$slots["calendar-icon"]?e.renderSlot(M.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),M.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(O1),{key:1}))]),_:2},[M.$slots["year-overlay-value"]?{name:"item",fn:e.withCtx(({item:_})=>[e.renderSlot(M.$slots,"year-overlay-value",{text:_.text,value:_.value})]),key:"0"}:void 0]),1032,["items","text-input","esc-close","config","is-last","hide-navigation","aria-labels","overlay-label"])):e.createCommentVNode("",!0)]}),_:3},8,["name","css"])],64)}}}),k9=(o,t,r)=>{if(t.value&&Array.isArray(t.value))if(t.value.some(l=>M2(o,l))){const l=t.value.filter(n=>!M2(n,o));t.value=l.length?l:null}else(r&&+r>t.value.length||!r)&&t.value.push(o);else t.value=[o]},y9=(o,t,r)=>{let l=o.value?o.value.slice():[];return l.length===2&&l[1]!==null&&(l=[]),l.length?R2(t,l[0])?(l.unshift(t),r("range-start",l[0]),r("range-start",l[1])):(l[1]=t,r("range-end",t)):(l=[t],r("range-start",t)),l},Re=(o,t,r,l)=>{o&&(o[0]&&o[1]&&r&&t("auto-apply"),o[0]&&!o[1]&&l&&r&&t("auto-apply"))},D6=o=>{Array.isArray(o.value)&&o.value.length<=2&&o.range?o.modelValue.value=o.value.map(t=>p0(o2(t),o.timezone)):Array.isArray(o.value)||(o.modelValue.value=p0(o2(o.value),o.timezone))},E6=(o,t,r,l)=>Array.isArray(t.value)&&(t.value.length===2||t.value.length===1&&l.value.partialRange)?l.value.fixedStart&&(q2(o,t.value[0])||M2(o,t.value[0]))?[t.value[0],o]:l.value.fixedEnd&&(R2(o,t.value[1])||M2(o,t.value[1]))?[o,t.value[1]]:(r("invalid-fixed-range",o),t.value):[],T6=({multiCalendars:o,range:t,highlight:r,propDates:l,calendars:n,modelValue:a,props:i,filters:c,year:s,month:u,emit:d})=>{const C=e.computed(()=>t9(i.yearRange,i.locale,i.reverseYears)),p=e.ref([!1]),h=e.computed(()=>(_,I)=>{const A=T2(x0(new Date),{month:u.value(_),year:s.value(_)}),Q=I?R5(A):re(A);return w6(Q,l.value.maxDate,l.value.minDate,i.preventMinMaxNavigation,I)}),f=()=>Array.isArray(a.value)&&o.value.solo&&a.value[1],m=()=>{for(let _=0;_<o.value.count;_++)if(_===0)n.value[_]=n.value[0];else if(_===o.value.count-1&&f())n.value[_]={month:L2(a.value[1]),year:k2(a.value[1])};else{const I=T2(o2(),n.value[_-1]);n.value[_]={month:L2(I),year:k2(z3(I,1))}}},k=_=>{if(!_)return m();const I=T2(o2(),n.value[_]);return n.value[0].year=k2(s6(I,o.value.count-1)),m()},M=(_,I)=>{const A=Zt(I,_);return t.value.showLastInRange&&A>1?I:_},v=_=>i.focusStartDate||o.value.solo?_[0]:_[1]?M(_[0],_[1]):_[0],b=()=>{if(a.value){const _=Array.isArray(a.value)?v(a.value):a.value;n.value[0]={month:L2(_),year:k2(_)}}},L=()=>{b(),o.value.count&&m()};e.watch(a,(_,I)=>{i.isTextInputDate&&JSON.stringify(_??{})!==JSON.stringify(I??{})&&L()}),e.onMounted(()=>{L()});const T=(_,I)=>{n.value[I].year=_,d("update-month-year",{instance:I,year:_,month:n.value[I].month}),o.value.count&&!o.value.solo&&k(I)},g=e.computed(()=>_=>P1(C.value,I=>{var A;const Q=s.value(_)===I.value,x=ie(I.value,j1(l.value.minDate),j1(l.value.maxDate))||((A=c.value.years)==null?void 0:A.includes(s.value(_))),F=u9(r.value,I.value);return{active:Q,disabled:x,highlighted:F}})),H=(_,I)=>{T(_,I),Z(I)},S=(_,I=!1)=>{if(!h.value(_,I)){const A=I?s.value(_)+1:s.value(_)-1;T(A,_)}},Z=(_,I=!1,A)=>{I||d("reset-flow"),A!==void 0?p.value[_]=A:p.value[_]=!p.value[_],p.value[_]?d("overlay-toggle",{open:!0,overlay:r0.year}):(d("overlay-closed"),d("overlay-toggle",{open:!1,overlay:r0.year}))};return{isDisabled:h,groupedYears:g,showYearPicker:p,selectYear:T,toggleYearPicker:Z,handleYearSelect:H,handleYear:S}},yr=(o,t)=>{const{defaultedMultiCalendars:r,defaultedAriaLabels:l,defaultedTransitions:n,defaultedConfig:a,defaultedRange:i,defaultedHighlight:c,propDates:s,defaultedTz:u,defaultedFilters:d,defaultedMultiDates:C}=z2(o),p=()=>{o.isTextInputDate&&L(k2(o2(o.startDate)),0)},{modelValue:h,year:f,month:m,calendars:k}=Ce(o,t,p),M=e.computed(()=>u6(o.formatLocale,o.locale,o.monthNameFormat)),v=e.ref(null),{checkMinMaxRange:b}=C1(o),{selectYear:L,groupedYears:T,showYearPicker:g,toggleYearPicker:H,handleYearSelect:S,handleYear:Z,isDisabled:_}=T6({modelValue:h,multiCalendars:r,range:i,highlight:c,calendars:k,year:f,propDates:s,month:m,filters:d,props:o,emit:t});e.onMounted(()=>{o.startDate&&(h.value&&o.focusStartDate||!h.value)&&L(k2(o2(o.startDate)),0)});const I=y=>y?{month:L2(y),year:k2(y)}:{month:null,year:null},A=()=>h.value?Array.isArray(h.value)?h.value.map(y=>I(y)):I(h.value):I(),Q=(y,O)=>{const t2=k.value[y],B=A();return Array.isArray(B)?B.some(U=>U.year===(t2==null?void 0:t2.year)&&U.month===O):(t2==null?void 0:t2.year)===B.year&&O===B.month},x=(y,O,t2)=>{var B,U;const l2=A();return Array.isArray(l2)?f.value(O)===((B=l2[t2])==null?void 0:B.year)&&y===((U=l2[t2])==null?void 0:U.month):!1},F=(y,O)=>{if(i.value.enabled){const t2=A();if(Array.isArray(h.value)&&Array.isArray(t2)){const B=x(y,O,0)||x(y,O,1),U=R0(x0(o2()),y,f.value(O));return ze(h.value,v.value,U)&&!B}return!1}return!1},D=e.computed(()=>y=>P1(M.value,O=>{var t2;const B=Q(y,O.value),U=ie(O.value,g6(f.value(y),s.value.minDate),b6(f.value(y),s.value.maxDate))||Ro(s.value.disabledDates,f.value(y)).includes(O.value)||((t2=d.value.months)==null?void 0:t2.includes(O.value)),l2=F(O.value,y),c2=v6(c.value,O.value,f.value(y));return{active:B,disabled:U,isBetween:l2,highlighted:c2}})),Y=(y,O)=>R0(x0(o2()),y,f.value(O)),n2=(y,O)=>{const t2=h.value?h.value:x0(new Date);h.value=R0(t2,y,f.value(O)),t("auto-apply"),t("update-flow-step")},$=(y,O)=>{const t2=Y(y,O);i.value.fixedEnd||i.value.fixedStart?h.value=E6(t2,h,t,i):h.value?b(t2,h.value)&&(h.value=y9(h,Y(y,O),t)):h.value=[Y(y,O)],e.nextTick().then(()=>{Re(h.value,t,o.autoApply,o.modelAuto)})},E=(y,O)=>{k9(Y(y,O),h,C.value.limit),t("auto-apply",!0)},X=(y,O)=>(k.value[O].month=y,N(O,k.value[O].year,y),C.value.enabled?E(y,O):i.value.enabled?$(y,O):n2(y,O)),K=(y,O)=>{L(y,O),N(O,y,null)},N=(y,O,t2)=>{let B=t2;if(!B&&B!==0){const U=A();B=Array.isArray(U)?U[y].month:U.month}t("update-month-year",{instance:y,year:O,month:B})};return{groupedMonths:D,groupedYears:T,year:f,isDisabled:_,defaultedMultiCalendars:r,defaultedAriaLabels:l,defaultedTransitions:n,defaultedConfig:a,showYearPicker:g,modelValue:h,presetDate:(y,O)=>{D6({value:y,modelValue:h,range:i.value.enabled,timezone:O?void 0:u.value.timezone}),t("auto-apply")},setHoverDate:(y,O)=>{v.value=Y(y,O)},selectMonth:X,selectYear:K,toggleYearPicker:H,handleYearSelect:S,handleYear:Z,getModelMonthYear:A}},gr=e.defineComponent({compatConfig:{MODE:3},__name:"MonthPicker",props:{...B0},emits:["update:internal-model-value","overlay-closed","reset-flow","range-start","range-end","auto-apply","update-month-year","update-flow-step","mount","invalid-fixed-range","overlay-toggle"],setup(o,{expose:t,emit:r}){const l=r,n=e.useSlots(),a=h0(n,"yearMode"),i=o;e.onMounted(()=>{i.shadow||l("mount",null)});const{groupedMonths:c,groupedYears:s,year:u,isDisabled:d,defaultedMultiCalendars:C,defaultedConfig:p,showYearPicker:h,modelValue:f,presetDate:m,setHoverDate:k,selectMonth:M,selectYear:v,toggleYearPicker:b,handleYearSelect:L,handleYear:T,getModelMonthYear:g}=yr(i,l);return t({getSidebarProps:()=>({modelValue:f,year:u,getModelMonthYear:g,selectMonth:M,selectYear:v,handleYear:T}),presetDate:m,toggleYearPicker:H=>b(0,H)}),(H,S)=>(e.openBlock(),e.createBlock(je,{"multi-calendars":e.unref(C).count,collapse:H.collapse,stretch:""},{default:e.withCtx(({instance:Z})=>[H.$slots["top-extra"]?e.renderSlot(H.$slots,"top-extra",{key:0,value:H.internalModelValue}):e.createCommentVNode("",!0),H.$slots["month-year"]?e.renderSlot(H.$slots,"month-year",e.normalizeProps(e.mergeProps({key:1},{year:e.unref(u),months:e.unref(c)(Z),years:e.unref(s)(Z),selectMonth:e.unref(M),selectYear:e.unref(v),instance:Z}))):(e.openBlock(),e.createBlock(ce,{key:2,items:e.unref(c)(Z),"arrow-navigation":H.arrowNavigation,"is-last":H.autoApply&&!e.unref(p).keepActionRow,"esc-close":H.escClose,height:e.unref(p).modeHeight,config:H.config,"no-overlay-focus":!!(H.noOverlayFocus||H.textInput),"use-relative":"",type:"month",onSelected:_=>e.unref(M)(_,Z),onHoverValue:_=>e.unref(k)(_,Z)},e.createSlots({header:e.withCtx(()=>[e.createVNode(Z6,e.mergeProps(H.$props,{items:e.unref(s)(Z),instance:Z,"show-year-picker":e.unref(h)[Z],year:e.unref(u)(Z),"is-disabled":_=>e.unref(d)(Z,_),onHandleYear:_=>e.unref(T)(Z,_),onYearSelect:_=>e.unref(L)(_,Z),onToggleYearPicker:_=>e.unref(b)(Z,_==null?void 0:_.flow,_==null?void 0:_.show)}),e.createSlots({_:2},[e.renderList(e.unref(a),(_,I)=>({name:_,fn:e.withCtx(A=>[e.renderSlot(H.$slots,_,e.normalizeProps(e.guardReactiveProps(A)))])}))]),1040,["items","instance","show-year-picker","year","is-disabled","onHandleYear","onYearSelect","onToggleYearPicker"])]),_:2},[H.$slots["month-overlay-value"]?{name:"item",fn:e.withCtx(({item:_})=>[e.renderSlot(H.$slots,"month-overlay-value",{text:_.text,value:_.value})]),key:"0"}:void 0]),1032,["items","arrow-navigation","is-last","esc-close","height","config","no-overlay-focus","onSelected","onHoverValue"]))]),_:3},8,["multi-calendars","collapse"]))}}),br=(o,t)=>{const r=()=>{o.isTextInputDate&&(d.value=k2(o2(o.startDate)))},{modelValue:l}=Ce(o,t,r),n=e.ref(null),{defaultedHighlight:a,defaultedMultiDates:i,defaultedFilters:c,defaultedRange:s,propDates:u}=z2(o),d=e.ref();e.onMounted(()=>{o.startDate&&(l.value&&o.focusStartDate||!l.value)&&(d.value=k2(o2(o.startDate)))});const C=m=>Array.isArray(l.value)?l.value.some(k=>k2(k)===m):l.value?k2(l.value)===m:!1,p=m=>s.value.enabled&&Array.isArray(l.value)?ze(l.value,n.value,f(m)):!1,h=e.computed(()=>P1(t9(o.yearRange,o.locale,o.reverseYears),m=>{const k=C(m.value),M=ie(m.value,j1(u.value.minDate),j1(u.value.maxDate))||c.value.years.includes(m.value),v=p(m.value)&&!k,b=u9(a.value,m.value);return{active:k,disabled:M,isBetween:v,highlighted:b}})),f=m=>$0(x0(re(new Date)),m);return{groupedYears:h,modelValue:l,focusYear:d,setHoverValue:m=>{n.value=$0(x0(new Date),m)},selectYear:m=>{var k;if(t("update-month-year",{instance:0,year:m}),i.value.enabled)return l.value?Array.isArray(l.value)&&(((k=l.value)==null?void 0:k.map(M=>k2(M))).includes(m)?l.value=l.value.filter(M=>k2(M)!==m):l.value.push($0(u0(o2()),m))):l.value=[$0(u0(re(o2())),m)],t("auto-apply",!0);s.value.enabled?(l.value=y9(l,f(m),t),e.nextTick().then(()=>{Re(l.value,t,o.autoApply,o.modelAuto)})):(l.value=f(m),t("auto-apply"))}}},Lr=e.defineComponent({compatConfig:{MODE:3},__name:"YearPicker",props:{...B0},emits:["update:internal-model-value","reset-flow","range-start","range-end","auto-apply","update-month-year"],setup(o,{expose:t,emit:r}){const l=r,n=o,{groupedYears:a,modelValue:i,focusYear:c,selectYear:s,setHoverValue:u}=br(n,l),{defaultedConfig:d}=z2(n);return t({getSidebarProps:()=>({modelValue:i,selectYear:s})}),(C,p)=>(e.openBlock(),e.createElementBlock("div",null,[C.$slots["top-extra"]?e.renderSlot(C.$slots,"top-extra",{key:0,value:C.internalModelValue}):e.createCommentVNode("",!0),C.$slots["month-year"]?e.renderSlot(C.$slots,"month-year",e.normalizeProps(e.mergeProps({key:1},{years:e.unref(a),selectYear:e.unref(s)}))):(e.openBlock(),e.createBlock(ce,{key:2,items:e.unref(a),"is-last":C.autoApply&&!e.unref(d).keepActionRow,height:e.unref(d).modeHeight,config:C.config,"no-overlay-focus":!!(C.noOverlayFocus||C.textInput),"focus-value":e.unref(c),type:"year","use-relative":"",onSelected:e.unref(s),onHoverValue:e.unref(u)},e.createSlots({_:2},[C.$slots["year-overlay-value"]?{name:"item",fn:e.withCtx(({item:h})=>[e.renderSlot(C.$slots,"year-overlay-value",{text:h.text,value:h.value})]),key:"0"}:void 0]),1032,["items","is-last","height","config","no-overlay-focus","focus-value","onSelected","onHoverValue"]))]))}}),Mr={key:0,class:"dp__time_input"},wr=["data-test","aria-label","onKeydown","onClick","onMousedown"],Vr=["aria-label","disabled","data-test","onKeydown","onClick"],_r=["data-test","aria-label","onKeydown","onClick","onMousedown"],vr={key:0},Hr=["aria-label"],xr=e.defineComponent({compatConfig:{MODE:3},__name:"TimeInput",props:{hours:{type:Number,default:0},minutes:{type:Number,default:0},seconds:{type:Number,default:0},closeTimePickerBtn:{type:Object,default:null},order:{type:Number,default:0},disabledTimesConfig:{type:Function,default:null},validateTime:{type:Function,default:()=>!1},...B0},emits:["set-hours","set-minutes","update:hours","update:minutes","update:seconds","reset-flow","mounted","overlay-closed","overlay-opened","am-pm-change"],setup(o,{expose:t,emit:r}){const l=r,n=o,{setTimePickerElements:a,setTimePickerBackRef:i}=d1(),{defaultedAriaLabels:c,defaultedTransitions:s,defaultedFilters:u,defaultedConfig:d,defaultedRange:C}=z2(n),{transitionName:p,showTransition:h}=ue(s),f=e.reactive({hours:!1,minutes:!1,seconds:!1}),m=e.ref("AM"),k=e.ref(null),M=e.ref([]),v=e.ref(),b=e.ref(!1);e.onMounted(()=>{l("mounted")});const L=w=>T2(new Date,{hours:w.hours,minutes:w.minutes,seconds:n.enableSeconds?w.seconds:0,milliseconds:0}),T=e.computed(()=>w=>Y(w,n[w])||H(w,n[w])),g=e.computed(()=>({hours:n.hours,minutes:n.minutes,seconds:n.seconds})),H=(w,G)=>C.value.enabled&&!C.value.disableTimeRangeValidation?!n.validateTime(w,G):!1,S=(w,G)=>{if(C.value.enabled&&!C.value.disableTimeRangeValidation){const r2=G?+n[`${w}Increment`]:-+n[`${w}Increment`],q=n[w]+r2;return!n.validateTime(w,q)}return!1},Z=e.computed(()=>w=>!K(+n[w]+ +n[`${w}Increment`],w)||S(w,!0)),_=e.computed(()=>w=>!K(+n[w]-+n[`${w}Increment`],w)||S(w,!1)),I=(w,G)=>E5(T2(o2(),w),G),A=(w,G)=>_o(T2(o2(),w),G),Q=e.computed(()=>({dp__time_col:!0,dp__time_col_block:!n.timePickerInline,dp__time_col_reg_block:!n.enableSeconds&&n.is24&&!n.timePickerInline,dp__time_col_reg_inline:!n.enableSeconds&&n.is24&&n.timePickerInline,dp__time_col_reg_with_button:!n.enableSeconds&&!n.is24,dp__time_col_sec:n.enableSeconds&&n.is24,dp__time_col_sec_with_button:n.enableSeconds&&!n.is24})),x=e.computed(()=>{const w=[{type:"hours"}];return n.enableMinutes&&w.push({type:"",separator:!0},{type:"minutes"}),n.enableSeconds&&w.push({type:"",separator:!0},{type:"seconds"}),w}),F=e.computed(()=>x.value.filter(w=>!w.separator)),D=e.computed(()=>w=>{if(w==="hours"){const G=U(+n.hours);return{text:G<10?`0${G}`:`${G}`,value:G}}return{text:n[w]<10?`0${n[w]}`:`${n[w]}`,value:n[w]}}),Y=(w,G)=>{var r2;if(!n.disabledTimesConfig)return!1;const q=n.disabledTimesConfig(n.order,w==="hours"?G:void 0);return q[w]?!!((r2=q[w])!=null&&r2.includes(G)):!0},n2=(w,G)=>G!=="hours"||m.value==="AM"?w:w+12,$=w=>{const G=n.is24?24:12,r2=w==="hours"?G:60,q=+n[`${w}GridIncrement`],p2=w==="hours"&&!n.is24?q:0,V=[];for(let z=p2;z<r2;z+=q)V.push({value:n.is24?z:n2(z,w),text:z<10?`0${z}`:`${z}`});return w==="hours"&&!n.is24&&V.unshift({value:m.value==="PM"?12:0,text:"12"}),P1(V,z=>({active:!1,disabled:u.value.times[w].includes(z.value)||!K(z.value,w)||Y(w,z.value)||H(w,z.value)}))},E=w=>w>=0?w:59,X=w=>w>=0?w:23,K=(w,G)=>{const r2=n.minTime?L(a9(n.minTime)):null,q=n.maxTime?L(a9(n.maxTime)):null,p2=L(a9(g.value,G,G==="minutes"||G==="seconds"?E(w):X(w)));return r2&&q?(ae(p2,q)||z1(p2,q))&&(F1(p2,r2)||z1(p2,r2)):r2?F1(p2,r2)||z1(p2,r2):q?ae(p2,q)||z1(p2,q):!0},N=w=>n[`no${w[0].toUpperCase()+w.slice(1)}Overlay`],y=w=>{N(w)||(f[w]=!f[w],f[w]?(b.value=!0,l("overlay-opened",w)):(b.value=!1,l("overlay-closed",w)))},O=w=>w==="hours"?P0:w==="minutes"?a1:$1,t2=()=>{v.value&&clearTimeout(v.value)},B=(w,G=!0,r2)=>{const q=G?I:A,p2=G?+n[`${w}Increment`]:-+n[`${w}Increment`];K(+n[w]+p2,w)&&l(`update:${w}`,O(w)(q({[w]:+n[w]},{[w]:+n[`${w}Increment`]}))),!(r2!=null&&r2.keyboard)&&d.value.timeArrowHoldThreshold&&(v.value=setTimeout(()=>{B(w,G)},d.value.timeArrowHoldThreshold))},U=w=>n.is24?w:(w>=12?m.value="PM":m.value="AM",Zo(w)),l2=()=>{m.value==="PM"?(m.value="AM",l("update:hours",n.hours-12)):(m.value="PM",l("update:hours",n.hours+12)),l("am-pm-change",m.value)},c2=w=>{f[w]=!0},P=(w,G,r2)=>{if(w&&n.arrowNavigation){Array.isArray(M.value[G])?M.value[G][r2]=w:M.value[G]=[w];const q=M.value.reduce((p2,V)=>V.map((z,J)=>[...p2[J]||[],V[J]]),[]);i(n.closeTimePickerBtn),k.value&&(q[1]=q[1].concat(k.value)),a(q,n.order)}},e2=(w,G)=>(y(w),l(`update:${w}`,G));return t({openChildCmp:c2}),(w,G)=>{var r2;return w.disabled?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",Mr,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value,(q,p2)=>{var V,z,J;return e.openBlock(),e.createElementBlock("div",{key:p2,class:e.normalizeClass(Q.value)},[q.separator?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[b.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(":")],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("button",{ref_for:!0,ref:C2=>P(C2,p2,0),type:"button",class:e.normalizeClass({dp__btn:!0,dp__inc_dec_button:!w.timePickerInline,dp__inc_dec_button_inline:w.timePickerInline,dp__tp_inline_btn_top:w.timePickerInline,dp__inc_dec_button_disabled:Z.value(q.type),"dp--hidden-el":b.value}),"data-test":`${q.type}-time-inc-btn-${n.order}`,"aria-label":(V=e.unref(c))==null?void 0:V.incrementValue(q.type),tabindex:"0",onKeydown:C2=>e.unref(d0)(C2,()=>B(q.type,!0,{keyboard:!0}),!0),onClick:C2=>e.unref(d).timeArrowHoldThreshold?void 0:B(q.type,!0),onMousedown:C2=>e.unref(d).timeArrowHoldThreshold?B(q.type,!0):void 0,onMouseup:t2},[n.timePickerInline?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[w.$slots["tp-inline-arrow-up"]?e.renderSlot(w.$slots,"tp-inline-arrow-up",{key:0}):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[G[2]||(G[2]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_l"},null,-1)),G[3]||(G[3]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_r"},null,-1))],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[w.$slots["arrow-up"]?e.renderSlot(w.$slots,"arrow-up",{key:0}):e.createCommentVNode("",!0),w.$slots["arrow-up"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(Q3),{key:1}))],64))],42,wr),e.createElementVNode("button",{ref_for:!0,ref:C2=>P(C2,p2,1),type:"button","aria-label":`${D.value(q.type).text}-${(z=e.unref(c))==null?void 0:z.openTpOverlay(q.type)}`,class:e.normalizeClass({dp__time_display:!0,dp__time_display_block:!w.timePickerInline,dp__time_display_inline:w.timePickerInline,"dp--time-invalid":T.value(q.type),"dp--time-overlay-btn":!T.value(q.type),"dp--hidden-el":b.value}),disabled:N(q.type),tabindex:"0","data-test":`${q.type}-toggle-overlay-btn-${n.order}`,onKeydown:C2=>e.unref(d0)(C2,()=>y(q.type),!0),onClick:C2=>y(q.type)},[w.$slots[q.type]?e.renderSlot(w.$slots,q.type,{key:0,text:D.value(q.type).text,value:D.value(q.type).value}):e.createCommentVNode("",!0),w.$slots[q.type]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(D.value(q.type).text),1)],64))],42,Vr),e.createElementVNode("button",{ref_for:!0,ref:C2=>P(C2,p2,2),type:"button",class:e.normalizeClass({dp__btn:!0,dp__inc_dec_button:!w.timePickerInline,dp__inc_dec_button_inline:w.timePickerInline,dp__tp_inline_btn_bottom:w.timePickerInline,dp__inc_dec_button_disabled:_.value(q.type),"dp--hidden-el":b.value}),"data-test":`${q.type}-time-dec-btn-${n.order}`,"aria-label":(J=e.unref(c))==null?void 0:J.decrementValue(q.type),tabindex:"0",onKeydown:C2=>e.unref(d0)(C2,()=>B(q.type,!1,{keyboard:!0}),!0),onClick:C2=>e.unref(d).timeArrowHoldThreshold?void 0:B(q.type,!1),onMousedown:C2=>e.unref(d).timeArrowHoldThreshold?B(q.type,!1):void 0,onMouseup:t2},[n.timePickerInline?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[w.$slots["tp-inline-arrow-down"]?e.renderSlot(w.$slots,"tp-inline-arrow-down",{key:0}):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[G[4]||(G[4]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_l"},null,-1)),G[5]||(G[5]=e.createElementVNode("span",{class:"dp__tp_inline_btn_bar dp__tp_btn_in_r"},null,-1))],64))],64)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[w.$slots["arrow-down"]?e.renderSlot(w.$slots,"arrow-down",{key:0}):e.createCommentVNode("",!0),w.$slots["arrow-down"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(X3),{key:1}))],64))],42,_r)],64))],2)}),128)),w.is24?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",vr,[w.$slots["am-pm-button"]?e.renderSlot(w.$slots,"am-pm-button",{key:0,toggle:l2,value:m.value}):e.createCommentVNode("",!0),w.$slots["am-pm-button"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("button",{key:1,ref_key:"amPmButton",ref:k,type:"button",class:"dp__pm_am_button",role:"button","aria-label":(r2=e.unref(c))==null?void 0:r2.amPmButton,tabindex:"0",onClick:l2,onKeydown:G[0]||(G[0]=q=>e.unref(d0)(q,()=>l2(),!0))},e.toDisplayString(m.value),41,Hr))])),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(F.value,(q,p2)=>(e.openBlock(),e.createBlock(e.Transition,{key:p2,name:e.unref(p)(f[q.type]),css:e.unref(h)},{default:e.withCtx(()=>{var V,z;return[f[q.type]?(e.openBlock(),e.createBlock(ce,{key:0,items:$(q.type),"is-last":w.autoApply&&!e.unref(d).keepActionRow,"esc-close":w.escClose,type:q.type,"text-input":w.textInput,config:w.config,"arrow-navigation":w.arrowNavigation,"aria-labels":w.ariaLabels,"overlay-label":(z=(V=e.unref(c)).timeOverlay)==null?void 0:z.call(V,q.type),onSelected:J=>e2(q.type,J),onToggle:J=>y(q.type),onResetFlow:G[1]||(G[1]=J=>w.$emit("reset-flow"))},e.createSlots({"button-icon":e.withCtx(()=>[w.$slots["clock-icon"]?e.renderSlot(w.$slots,"clock-icon",{key:0}):e.createCommentVNode("",!0),w.$slots["clock-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(w.timePickerInline?e.unref(O1):e.unref(K3)),{key:1}))]),_:2},[w.$slots[`${q.type}-overlay-value`]?{name:"item",fn:e.withCtx(({item:J})=>[e.renderSlot(w.$slots,`${q.type}-overlay-value`,{text:J.text,value:J.value})]),key:"0"}:void 0,w.$slots[`${q.type}-overlay-header`]?{name:"header",fn:e.withCtx(()=>[e.renderSlot(w.$slots,`${q.type}-overlay-header`,{toggle:()=>y(q.type)})]),key:"1"}:void 0]),1032,["items","is-last","esc-close","type","text-input","config","arrow-navigation","aria-labels","overlay-label","onSelected","onToggle"])):e.createCommentVNode("",!0)]}),_:2},1032,["name","css"]))),128))]))}}}),Br={class:"dp--tp-wrap"},Sr=["aria-label","tabindex"],Zr=["role","aria-label","tabindex"],Dr=["aria-label"],A6=e.defineComponent({compatConfig:{MODE:3},__name:"TimePicker",props:{hours:{type:[Number,Array],default:0},minutes:{type:[Number,Array],default:0},seconds:{type:[Number,Array],default:0},disabledTimesConfig:{type:Function,default:null},validateTime:{type:Function,default:()=>!1},...B0},emits:["update:hours","update:minutes","update:seconds","mount","reset-flow","overlay-opened","overlay-closed","am-pm-change"],setup(o,{expose:t,emit:r}){const l=r,n=o,{buildMatrix:a,setTimePicker:i}=d1(),c=e.useSlots(),{defaultedTransitions:s,defaultedAriaLabels:u,defaultedTextInput:d,defaultedConfig:C,defaultedRange:p}=z2(n),{transitionName:h,showTransition:f}=ue(s),{hideNavigationButtons:m}=Ie(),k=e.ref(null),M=e.ref(null),v=e.ref([]),b=e.ref(null),L=e.ref(!1);e.onMounted(()=>{l("mount"),!n.timePicker&&n.arrowNavigation?a([K2(k.value)],"time"):i(!0,n.timePicker)});const T=e.computed(()=>p.value.enabled&&n.modelAuto?C6(n.internalModelValue):!0),g=e.ref(!1),H=$=>({hours:Array.isArray(n.hours)?n.hours[$]:n.hours,minutes:Array.isArray(n.minutes)?n.minutes[$]:n.minutes,seconds:Array.isArray(n.seconds)?n.seconds[$]:n.seconds}),S=e.computed(()=>{const $=[];if(p.value.enabled)for(let E=0;E<2;E++)$.push(H(E));else $.push(H(0));return $}),Z=($,E=!1,X="")=>{E||l("reset-flow"),g.value=$,l($?"overlay-opened":"overlay-closed",r0.time),n.arrowNavigation&&i($),e.nextTick(()=>{X!==""&&v.value[0]&&v.value[0].openChildCmp(X)})},_=e.computed(()=>({dp__btn:!0,dp__button:!0,dp__button_bottom:n.autoApply&&!C.value.keepActionRow})),I=h0(c,"timePicker"),A=($,E,X)=>p.value.enabled?E===0?[$,S.value[1][X]]:[S.value[0][X],$]:$,Q=$=>{l("update:hours",$)},x=$=>{l("update:minutes",$)},F=$=>{l("update:seconds",$)},D=()=>{if(b.value&&!d.value.enabled&&!n.noOverlayFocus){const $=m6(b.value);$&&$.focus({preventScroll:!0})}},Y=$=>{L.value=!1,l("overlay-closed",$)},n2=$=>{L.value=!0,l("overlay-opened",$)};return t({toggleTimePicker:Z}),($,E)=>{var X;return e.openBlock(),e.createElementBlock("div",Br,[!$.timePicker&&!$.timePickerInline?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:0,ref_key:"openTimePickerBtn",ref:k,type:"button",class:e.normalizeClass({..._.value,"dp--hidden-el":g.value}),"aria-label":(X=e.unref(u))==null?void 0:X.openTimePicker,tabindex:$.noOverlayFocus?void 0:0,"data-test":"open-time-picker-btn",onKeydown:E[0]||(E[0]=K=>e.unref(d0)(K,()=>Z(!0))),onClick:E[1]||(E[1]=K=>Z(!0))},[$.$slots["clock-icon"]?e.renderSlot($.$slots,"clock-icon",{key:0}):e.createCommentVNode("",!0),$.$slots["clock-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(K3),{key:1}))],42,Sr)),[[e.vShow,!e.unref(m)($.hideNavigation,"time")]]):e.createCommentVNode("",!0),e.createVNode(e.Transition,{name:e.unref(h)(g.value),css:e.unref(f)&&!$.timePickerInline},{default:e.withCtx(()=>{var K,N;return[g.value||$.timePicker||$.timePickerInline?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"overlayRef",ref:b,role:$.timePickerInline?void 0:"dialog",class:e.normalizeClass({dp__overlay:!$.timePickerInline,"dp--overlay-absolute":!n.timePicker&&!$.timePickerInline,"dp--overlay-relative":n.timePicker}),style:e.normalizeStyle($.timePicker?{height:`${e.unref(C).modeHeight}px`}:void 0),"aria-label":(K=e.unref(u))==null?void 0:K.timePicker,tabindex:$.timePickerInline?void 0:0},[e.createElementVNode("div",{class:e.normalizeClass($.timePickerInline?"dp__time_picker_inline_container":"dp__overlay_container dp__container_flex dp__time_picker_overlay_container"),style:{display:"flex"}},[$.$slots["time-picker-overlay"]?e.renderSlot($.$slots,"time-picker-overlay",{key:0,hours:o.hours,minutes:o.minutes,seconds:o.seconds,setHours:Q,setMinutes:x,setSeconds:F}):e.createCommentVNode("",!0),$.$slots["time-picker-overlay"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass($.timePickerInline?"dp__flex":"dp__overlay_row dp__flex_row")},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S.value,(y,O)=>e.withDirectives((e.openBlock(),e.createBlock(xr,e.mergeProps({key:O,ref_for:!0},{...$.$props,order:O,hours:y.hours,minutes:y.minutes,seconds:y.seconds,closeTimePickerBtn:M.value,disabledTimesConfig:o.disabledTimesConfig,disabled:O===0?e.unref(p).fixedStart:e.unref(p).fixedEnd},{ref_for:!0,ref_key:"timeInputRefs",ref:v,"validate-time":(t2,B)=>o.validateTime(t2,A(B,O,t2)),"onUpdate:hours":t2=>Q(A(t2,O,"hours")),"onUpdate:minutes":t2=>x(A(t2,O,"minutes")),"onUpdate:seconds":t2=>F(A(t2,O,"seconds")),onMounted:D,onOverlayClosed:Y,onOverlayOpened:n2,onAmPmChange:E[2]||(E[2]=t2=>$.$emit("am-pm-change",t2))}),e.createSlots({_:2},[e.renderList(e.unref(I),(t2,B)=>({name:t2,fn:e.withCtx(U=>[e.renderSlot($.$slots,t2,e.mergeProps({ref_for:!0},U))])}))]),1040,["validate-time","onUpdate:hours","onUpdate:minutes","onUpdate:seconds"])),[[e.vShow,O===0?!0:T.value]])),128))],2)),!$.timePicker&&!$.timePickerInline?e.withDirectives((e.openBlock(),e.createElementBlock("button",{key:2,ref_key:"closeTimePickerBtn",ref:M,type:"button",class:e.normalizeClass({..._.value,"dp--hidden-el":L.value}),"aria-label":(N=e.unref(u))==null?void 0:N.closeTimePicker,tabindex:"0",onKeydown:E[3]||(E[3]=y=>e.unref(d0)(y,()=>Z(!1))),onClick:E[4]||(E[4]=y=>Z(!1))},[$.$slots["calendar-icon"]?e.renderSlot($.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),$.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(O1),{key:1}))],42,Dr)),[[e.vShow,!e.unref(m)($.hideNavigation,"time")]]):e.createCommentVNode("",!0)],2)],14,Zr)):e.createCommentVNode("",!0)]}),_:3},8,["name","css"])])}}}),$6=(o,t,r,l)=>{const{defaultedRange:n}=z2(o),a=(b,L)=>Array.isArray(t[b])?t[b][L]:t[b],i=b=>o.enableSeconds?Array.isArray(t.seconds)?t.seconds[b]:t.seconds:0,c=(b,L)=>b?L!==void 0?s1(b,a("hours",L),a("minutes",L),i(L)):s1(b,t.hours,t.minutes,i()):i6(o2(),i(L)),s=(b,L)=>{t[b]=L},u=e.computed(()=>o.modelAuto&&n.value.enabled?Array.isArray(r.value)?r.value.length>1:!1:n.value.enabled),d=(b,L)=>{const T=Object.fromEntries(Object.keys(t).map(g=>g===b?[g,L]:[g,t[g]].slice()));if(u.value&&!n.value.disableTimeRangeValidation){const g=S=>r.value?s1(r.value[S],T.hours[S],T.minutes[S],T.seconds[S]):null,H=S=>a6(r.value[S],0);return!(M2(g(0),g(1))&&(F1(g(0),H(1))||ae(g(1),H(0))))}return!0},C=(b,L)=>{d(b,L)&&(s(b,L),l&&l())},p=b=>{C("hours",b)},h=b=>{C("minutes",b)},f=b=>{C("seconds",b)},m=(b,L,T,g)=>{L&&p(b),!L&&!T&&h(b),T&&f(b),r.value&&g(r.value)},k=b=>{if(b){const L=Array.isArray(b),T=L?[+b[0].hours,+b[1].hours]:+b.hours,g=L?[+b[0].minutes,+b[1].minutes]:+b.minutes,H=L?[+b[0].seconds,+b[1].seconds]:+b.seconds;s("hours",T),s("minutes",g),o.enableSeconds&&s("seconds",H)}},M=(b,L)=>{const T={hours:Array.isArray(t.hours)?t.hours[b]:t.hours,disabledArr:[]};return(L||L===0)&&(T.hours=L),Array.isArray(o.disabledTimes)&&(T.disabledArr=n.value.enabled&&Array.isArray(o.disabledTimes[b])?o.disabledTimes[b]:o.disabledTimes),T},v=e.computed(()=>(b,L)=>{var T;if(Array.isArray(o.disabledTimes)){const{disabledArr:g,hours:H}=M(b,L),S=g.filter(Z=>+Z.hours===H);return((T=S[0])==null?void 0:T.minutes)==="*"?{hours:[H],minutes:void 0,seconds:void 0}:{hours:[],minutes:(S==null?void 0:S.map(Z=>+Z.minutes))??[],seconds:(S==null?void 0:S.map(Z=>Z.seconds?+Z.seconds:void 0))??[]}}return{hours:[],minutes:[],seconds:[]}});return{setTime:s,updateHours:p,updateMinutes:h,updateSeconds:f,getSetDateTime:c,updateTimeValues:m,getSecondsValue:i,assignStartTime:k,validateTime:d,disabledTimesConfig:v}},Er=(o,t)=>{const r=()=>{o.isTextInputDate&&L()},{modelValue:l,time:n}=Ce(o,t,r),{defaultedStartTime:a,defaultedRange:i,defaultedTz:c}=z2(o),{updateTimeValues:s,getSetDateTime:u,setTime:d,assignStartTime:C,disabledTimesConfig:p,validateTime:h}=$6(o,n,l,f);function f(){t("update-flow-step")}const m=g=>{const{hours:H,minutes:S,seconds:Z}=g;return{hours:+H,minutes:+S,seconds:Z?+Z:0}},k=()=>{if(o.startTime){if(Array.isArray(o.startTime)){const H=m(o.startTime[0]),S=m(o.startTime[1]);return[T2(o2(),H),T2(o2(),S)]}const g=m(o.startTime);return T2(o2(),g)}return i.value.enabled?[null,null]:null},M=()=>{if(i.value.enabled){const[g,H]=k();l.value=[p0(u(g,0),c.value.timezone),p0(u(H,1),c.value.timezone)]}else l.value=p0(u(k()),c.value.timezone)},v=g=>Array.isArray(g)?[M1(o2(g[0])),M1(o2(g[1]))]:[M1(g??o2())],b=(g,H,S)=>{d("hours",g),d("minutes",H),d("seconds",o.enableSeconds?S:0)},L=()=>{const[g,H]=v(l.value);return i.value.enabled?b([g.hours,H.hours],[g.minutes,H.minutes],[g.seconds,H.seconds]):b(g.hours,g.minutes,g.seconds)};e.onMounted(()=>{if(!o.shadow)return C(a.value),l.value?L():M()});const T=()=>{Array.isArray(l.value)?l.value=l.value.map((g,H)=>g&&u(g,H)):l.value=u(l.value),t("time-update")};return{modelValue:l,time:n,disabledTimesConfig:p,updateTime:(g,H=!0,S=!1)=>{s(g,H,S,T)},validateTime:h}},Tr=e.defineComponent({compatConfig:{MODE:3},__name:"TimePickerSolo",props:{...B0},emits:["update:internal-model-value","time-update","am-pm-change","mount","reset-flow","update-flow-step","overlay-toggle"],setup(o,{expose:t,emit:r}){const l=r,n=o,a=e.useSlots(),i=h0(a,"timePicker"),c=e.ref(null),{time:s,modelValue:u,disabledTimesConfig:d,updateTime:C,validateTime:p}=Er(n,l);return e.onMounted(()=>{n.shadow||l("mount",null)}),t({getSidebarProps:()=>({modelValue:u,time:s,updateTime:C}),toggleTimePicker:(h,f=!1,m="")=>{var k;(k=c.value)==null||k.toggleTimePicker(h,f,m)}}),(h,f)=>(e.openBlock(),e.createBlock(je,{"multi-calendars":0,stretch:""},{default:e.withCtx(()=>[e.createVNode(A6,e.mergeProps({ref_key:"tpRef",ref:c},h.$props,{hours:e.unref(s).hours,minutes:e.unref(s).minutes,seconds:e.unref(s).seconds,"internal-model-value":h.internalModelValue,"disabled-times-config":e.unref(d),"validate-time":e.unref(p),"onUpdate:hours":f[0]||(f[0]=m=>e.unref(C)(m)),"onUpdate:minutes":f[1]||(f[1]=m=>e.unref(C)(m,!1)),"onUpdate:seconds":f[2]||(f[2]=m=>e.unref(C)(m,!1,!0)),onAmPmChange:f[3]||(f[3]=m=>h.$emit("am-pm-change",m)),onResetFlow:f[4]||(f[4]=m=>h.$emit("reset-flow")),onOverlayClosed:f[5]||(f[5]=m=>h.$emit("overlay-toggle",{open:!1,overlay:m})),onOverlayOpened:f[6]||(f[6]=m=>h.$emit("overlay-toggle",{open:!0,overlay:m}))}),e.createSlots({_:2},[e.renderList(e.unref(i),(m,k)=>({name:m,fn:e.withCtx(M=>[e.renderSlot(h.$slots,m,e.normalizeProps(e.guardReactiveProps(M)))])}))]),1040,["hours","minutes","seconds","internal-model-value","disabled-times-config","validate-time"])]),_:3}))}}),Ar={class:"dp--header-wrap"},$r={key:0,class:"dp__month_year_wrap"},Fr={key:0},zr={class:"dp__month_year_wrap"},Nr=["data-dp-element","aria-label","data-test","onClick","onKeydown"],Or=e.defineComponent({compatConfig:{MODE:3},__name:"DpHeader",props:{month:{type:Number,default:0},year:{type:Number,default:0},instance:{type:Number,default:0},years:{type:Array,default:()=>[]},months:{type:Array,default:()=>[]},...B0},emits:["update-month-year","mount","reset-flow","overlay-closed","overlay-opened"],setup(o,{expose:t,emit:r}){const l=r,n=o,{defaultedTransitions:a,defaultedAriaLabels:i,defaultedMultiCalendars:c,defaultedFilters:s,defaultedConfig:u,defaultedHighlight:d,propDates:C,defaultedUI:p}=z2(n),{transitionName:h,showTransition:f}=ue(a),{buildMatrix:m}=d1(),{handleMonthYearChange:k,isDisabled:M,updateMonthYear:v}=sr(n,l),{showLeftIcon:b,showRightIcon:L}=Ie(),T=e.ref(!1),g=e.ref(!1),H=e.ref(!1),S=e.ref([null,null,null,null]);e.onMounted(()=>{l("mount")});const Z=N=>({get:()=>n[N],set:y=>{const O=N===H0.month?H0.year:H0.month;l("update-month-year",{[N]:y,[O]:n[O]}),N===H0.month?Y(!0):n2(!0)}}),_=e.computed(Z(H0.month)),I=e.computed(Z(H0.year)),A=e.computed(()=>N=>({month:n.month,year:n.year,items:N===H0.month?n.months:n.years,instance:n.instance,updateMonthYear:v,toggle:N===H0.month?Y:n2})),Q=e.computed(()=>n.months.find(y=>y.value===n.month)||{text:"",value:0}),x=e.computed(()=>P1(n.months,N=>{const y=n.month===N.value,O=ie(N.value,g6(n.year,C.value.minDate),b6(n.year,C.value.maxDate))||s.value.months.includes(N.value),t2=v6(d.value,N.value,n.year);return{active:y,disabled:O,highlighted:t2}})),F=e.computed(()=>P1(n.years,N=>{const y=n.year===N.value,O=ie(N.value,j1(C.value.minDate),j1(C.value.maxDate))||s.value.years.includes(N.value),t2=u9(d.value,N.value);return{active:y,disabled:O,highlighted:t2}})),D=(N,y,O)=>{O!==void 0?N.value=O:N.value=!N.value,N.value?(H.value=!0,l("overlay-opened",y)):(H.value=!1,l("overlay-closed",y))},Y=(N=!1,y)=>{$(N),D(T,r0.month,y)},n2=(N=!1,y)=>{$(N),D(g,r0.year,y)},$=N=>{N||l("reset-flow")},E=(N,y)=>{n.arrowNavigation&&(S.value[y]=K2(N),m(S.value,"monthYear"))},X=e.computed(()=>{var N,y,O,t2,B,U;return[{type:H0.month,index:1,toggle:Y,modelValue:_.value,updateModelValue:l2=>_.value=l2,text:Q.value.text,showSelectionGrid:T.value,items:x.value,ariaLabel:(N=i.value)==null?void 0:N.openMonthsOverlay,overlayLabel:((O=(y=i.value).monthPicker)==null?void 0:O.call(y,!0))??void 0},{type:H0.year,index:2,toggle:n2,modelValue:I.value,updateModelValue:l2=>I.value=l2,text:f6(n.year,n.locale),showSelectionGrid:g.value,items:F.value,ariaLabel:(t2=i.value)==null?void 0:t2.openYearsOverlay,overlayLabel:((U=(B=i.value).yearPicker)==null?void 0:U.call(B,!0))??void 0}]}),K=e.computed(()=>n.disableYearSelect?[X.value[0]]:n.yearFirst?[...X.value].reverse():X.value);return t({toggleMonthPicker:Y,toggleYearPicker:n2,handleMonthYearChange:k}),(N,y)=>{var O,t2,B,U,l2,c2;return e.openBlock(),e.createElementBlock("div",Ar,[N.$slots["month-year"]?(e.openBlock(),e.createElementBlock("div",$r,[e.renderSlot(N.$slots,"month-year",e.normalizeProps(e.guardReactiveProps({month:o.month,year:o.year,months:o.months,years:o.years,updateMonthYear:e.unref(v),handleMonthYearChange:e.unref(k),instance:o.instance})))])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[N.$slots["top-extra"]?(e.openBlock(),e.createElementBlock("div",Fr,[e.renderSlot(N.$slots,"top-extra",{value:N.internalModelValue})])):e.createCommentVNode("",!0),e.createElementVNode("div",zr,[e.unref(b)(e.unref(c),o.instance)&&!N.vertical?(e.openBlock(),e.createBlock(de,{key:0,"aria-label":(O=e.unref(i))==null?void 0:O.prevMonth,disabled:e.unref(M)(!1),class:e.normalizeClass((t2=e.unref(p))==null?void 0:t2.navBtnPrev),"el-name":"action-prev",onActivate:y[0]||(y[0]=P=>e.unref(k)(!1,!0)),onSetRef:y[1]||(y[1]=P=>E(P,0))},{default:e.withCtx(()=>[N.$slots["arrow-left"]?e.renderSlot(N.$slots,"arrow-left",{key:0}):e.createCommentVNode("",!0),N.$slots["arrow-left"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(W3),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["dp__month_year_wrap",{dp__year_disable_select:N.disableYearSelect}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(K.value,(P,e2)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:P.type},[e.createElementVNode("button",{ref_for:!0,ref:w=>E(w,e2+1),type:"button","data-dp-element":`overlay-${P.type}`,class:e.normalizeClass(["dp__btn dp__month_year_select",{"dp--hidden-el":H.value}]),"aria-label":`${P.text}-${P.ariaLabel}`,"data-test":`${P.type}-toggle-overlay-${o.instance}`,onClick:P.toggle,onKeydown:w=>e.unref(d0)(w,()=>P.toggle(),!0)},[N.$slots[P.type]?e.renderSlot(N.$slots,P.type,{key:0,text:P.text,value:n[P.type]}):e.createCommentVNode("",!0),N.$slots[P.type]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(P.text),1)],64))],42,Nr),e.createVNode(e.Transition,{name:e.unref(h)(P.showSelectionGrid),css:e.unref(f)},{default:e.withCtx(()=>[P.showSelectionGrid?(e.openBlock(),e.createBlock(ce,{key:0,items:P.items,"arrow-navigation":N.arrowNavigation,"hide-navigation":N.hideNavigation,"is-last":N.autoApply&&!e.unref(u).keepActionRow,"skip-button-ref":!1,config:N.config,type:P.type,"header-refs":[],"esc-close":N.escClose,"menu-wrap-ref":N.menuWrapRef,"text-input":N.textInput,"aria-labels":N.ariaLabels,"overlay-label":P.overlayLabel,onSelected:P.updateModelValue,onToggle:P.toggle},e.createSlots({"button-icon":e.withCtx(()=>[N.$slots["calendar-icon"]?e.renderSlot(N.$slots,"calendar-icon",{key:0}):e.createCommentVNode("",!0),N.$slots["calendar-icon"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(O1),{key:1}))]),_:2},[N.$slots[`${P.type}-overlay-value`]?{name:"item",fn:e.withCtx(({item:w})=>[e.renderSlot(N.$slots,`${P.type}-overlay-value`,{text:w.text,value:w.value})]),key:"0"}:void 0,N.$slots[`${P.type}-overlay`]?{name:"overlay",fn:e.withCtx(()=>[e.renderSlot(N.$slots,`${P.type}-overlay`,e.mergeProps({ref_for:!0},A.value(P.type)))]),key:"1"}:void 0,N.$slots[`${P.type}-overlay-header`]?{name:"header",fn:e.withCtx(()=>[e.renderSlot(N.$slots,`${P.type}-overlay-header`,{toggle:P.toggle})]),key:"2"}:void 0]),1032,["items","arrow-navigation","hide-navigation","is-last","config","type","esc-close","menu-wrap-ref","text-input","aria-labels","overlay-label","onSelected","onToggle"])):e.createCommentVNode("",!0)]),_:2},1032,["name","css"])],64))),128))],2),e.unref(b)(e.unref(c),o.instance)&&N.vertical?(e.openBlock(),e.createBlock(de,{key:1,"aria-label":(B=e.unref(i))==null?void 0:B.prevMonth,"el-name":"action-prev",disabled:e.unref(M)(!1),class:e.normalizeClass((U=e.unref(p))==null?void 0:U.navBtnPrev),onActivate:y[2]||(y[2]=P=>e.unref(k)(!1,!0))},{default:e.withCtx(()=>[N.$slots["arrow-up"]?e.renderSlot(N.$slots,"arrow-up",{key:0}):e.createCommentVNode("",!0),N.$slots["arrow-up"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(Q3),{key:1}))]),_:3},8,["aria-label","disabled","class"])):e.createCommentVNode("",!0),e.unref(L)(e.unref(c),o.instance)?(e.openBlock(),e.createBlock(de,{key:2,ref:"rightIcon","el-name":"action-next",disabled:e.unref(M)(!0),"aria-label":(l2=e.unref(i))==null?void 0:l2.nextMonth,class:e.normalizeClass((c2=e.unref(p))==null?void 0:c2.navBtnNext),onActivate:y[3]||(y[3]=P=>e.unref(k)(!0,!0)),onSetRef:y[4]||(y[4]=P=>E(P,N.disableYearSelect?2:3))},{default:e.withCtx(()=>[N.$slots[N.vertical?"arrow-down":"arrow-right"]?e.renderSlot(N.$slots,N.vertical?"arrow-down":"arrow-right",{key:0}):e.createCommentVNode("",!0),N.$slots[N.vertical?"arrow-down":"arrow-right"]?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.resolveDynamicComponent(N.vertical?e.unref(X3):e.unref(G3)),{key:1}))]),_:3},8,["disabled","aria-label","class"])):e.createCommentVNode("",!0)])],64))])}}}),Pr={class:"dp__calendar_header",role:"row"},jr={key:0,class:"dp__calendar_header_item",role:"gridcell"},Rr=["aria-label"],Ir={key:0,class:"dp__calendar_item dp__week_num",role:"gridcell"},Yr={class:"dp__cell_inner"},Ur=["id","aria-pressed","aria-disabled","aria-label","tabindex","data-test","onClick","onTouchend","onKeydown","onMouseenter","onMouseleave","onMousedown"],qr=e.defineComponent({compatConfig:{MODE:3},__name:"DpCalendar",props:{mappedDates:{type:Array,default:()=>[]},instance:{type:Number,default:0},month:{type:Number,default:0},year:{type:Number,default:0},...B0},emits:["select-date","set-hover-date","handle-scroll","mount","handle-swipe","handle-space","tooltip-open","tooltip-close"],setup(o,{expose:t,emit:r}){const l=r,n=o,{buildMultiLevelMatrix:a}=d1(),{defaultedTransitions:i,defaultedConfig:c,defaultedAriaLabels:s,defaultedMultiCalendars:u,defaultedWeekNumbers:d,defaultedMultiDates:C,defaultedUI:p}=z2(n),h=e.ref(null),f=e.ref({bottom:"",left:"",transform:""}),m=e.ref([]),k=e.ref(null),M=e.ref(!0),v=e.ref(""),b=e.ref({startX:0,endX:0,startY:0,endY:0}),L=e.ref([]),T=e.ref({left:"50%"}),g=e.ref(!1),H=e.computed(()=>n.calendar?n.calendar(n.mappedDates):n.mappedDates),S=e.computed(()=>n.dayNames?Array.isArray(n.dayNames)?n.dayNames:n.dayNames(n.locale,+n.weekStart):So(n.formatLocale,n.locale,+n.weekStart));e.onMounted(()=>{l("mount",{cmp:"calendar",refs:m}),c.value.noSwipe||k.value&&(k.value.addEventListener("touchstart",E,{passive:!1}),k.value.addEventListener("touchend",X,{passive:!1}),k.value.addEventListener("touchmove",K,{passive:!1})),n.monthChangeOnScroll&&k.value&&k.value.addEventListener("wheel",O,{passive:!1})});const Z=P=>P?n.vertical?"vNext":"next":n.vertical?"vPrevious":"previous",_=(P,e2)=>{if(n.transitions){const w=u0(R0(o2(),n.month,n.year));v.value=q2(u0(R0(o2(),P,e2)),w)?i.value[Z(!0)]:i.value[Z(!1)],M.value=!1,e.nextTick(()=>{M.value=!0})}},I=e.computed(()=>({...p.value.calendar??{}})),A=e.computed(()=>P=>{const e2=Do(P);return{dp__marker_dot:e2.type==="dot",dp__marker_line:e2.type==="line"}}),Q=e.computed(()=>P=>M2(P,h.value)),x=e.computed(()=>({dp__calendar:!0,dp__calendar_next:u.value.count>0&&n.instance!==0})),F=e.computed(()=>P=>n.hideOffsetDates?P.current:!0),D=async(P,e2)=>{const{width:w,height:G}=P.getBoundingClientRect();h.value=e2.value;let r2={left:`${w/2}px`},q=-50;if(await e.nextTick(),L.value[0]){const{left:p2,width:V}=L.value[0].getBoundingClientRect();p2<0&&(r2={left:"0"},q=0,T.value.left=`${w/2}px`),window.innerWidth<p2+V&&(r2={right:"0"},q=0,T.value.left=`${V-w/2}px`)}f.value={bottom:`${G}px`,...r2,transform:`translateX(${q}%)`}},Y=async(P,e2,w)=>{var G,r2,q;const p2=K2(m.value[e2][w]);p2&&((G=P.marker)!=null&&G.customPosition&&(q=(r2=P.marker)==null?void 0:r2.tooltip)!=null&&q.length?f.value=P.marker.customPosition(p2):await D(p2,P),l("tooltip-open",P.marker))},n2=async(P,e2,w)=>{var G,r2;if(g.value&&C.value.enabled&&C.value.dragSelect)return l("select-date",P);l("set-hover-date",P),(r2=(G=P.marker)==null?void 0:G.tooltip)!=null&&r2.length&&await Y(P,e2,w)},$=P=>{h.value&&(h.value=null,f.value=JSON.parse(JSON.stringify({bottom:"",left:"",transform:""})),l("tooltip-close",P.marker))},E=P=>{b.value.startX=P.changedTouches[0].screenX,b.value.startY=P.changedTouches[0].screenY},X=P=>{b.value.endX=P.changedTouches[0].screenX,b.value.endY=P.changedTouches[0].screenY,N()},K=P=>{n.vertical&&!n.inline&&P.preventDefault()},N=()=>{const P=n.vertical?"Y":"X";Math.abs(b.value[`start${P}`]-b.value[`end${P}`])>10&&l("handle-swipe",b.value[`start${P}`]>b.value[`end${P}`]?"right":"left")},y=(P,e2,w)=>{P&&(Array.isArray(m.value[e2])?m.value[e2][w]=P:m.value[e2]=[P]),n.arrowNavigation&&a(m.value,"calendar")},O=P=>{n.monthChangeOnScroll&&(P.preventDefault(),l("handle-scroll",P))},t2=P=>d.value.type==="local"?j3(P.value,{weekStartsOn:+n.weekStart}):d.value.type==="iso"?O3(P.value):typeof d.value.type=="function"?d.value.type(P.value):"",B=P=>{const e2=P[0];return d.value.hideOnOffsetDates?P.some(w=>w.current)?t2(e2):"":t2(e2)},U=(P,e2,w=!0)=>{w&&k6()||!w&&!k6()||C.value.enabled||(i1(P,c.value),l("select-date",e2))},l2=P=>{i1(P,c.value)},c2=P=>{C.value.enabled&&C.value.dragSelect?(g.value=!0,l("select-date",P)):C.value.enabled&&l("select-date",P)};return t({triggerTransition:_}),(P,e2)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(x.value)},[e.createElementVNode("div",{ref_key:"calendarWrapRef",ref:k,class:e.normalizeClass(I.value),role:"grid"},[e.createElementVNode("div",Pr,[P.weekNumbers?(e.openBlock(),e.createElementBlock("div",jr,e.toDisplayString(P.weekNumName),1)):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S.value,(w,G)=>{var r2,q;return e.openBlock(),e.createElementBlock("div",{key:G,class:"dp__calendar_header_item",role:"gridcell","data-test":"calendar-header","aria-label":(q=(r2=e.unref(s))==null?void 0:r2.weekDay)==null?void 0:q.call(r2,G)},[P.$slots["calendar-header"]?e.renderSlot(P.$slots,"calendar-header",{key:0,day:w,index:G}):e.createCommentVNode("",!0),P.$slots["calendar-header"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(w),1)],64))],8,Rr)}),128))]),e2[2]||(e2[2]=e.createElementVNode("div",{class:"dp__calendar_header_separator"},null,-1)),e.createVNode(e.Transition,{name:v.value,css:!!P.transitions},{default:e.withCtx(()=>[M.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__calendar",role:"rowgroup",onMouseleave:e2[1]||(e2[1]=w=>g.value=!1)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(H.value,(w,G)=>(e.openBlock(),e.createElementBlock("div",{key:G,class:"dp__calendar_row",role:"row"},[P.weekNumbers?(e.openBlock(),e.createElementBlock("div",Ir,[e.createElementVNode("div",Yr,e.toDisplayString(B(w.days)),1)])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.days,(r2,q)=>{var p2,V,z;return e.openBlock(),e.createElementBlock("div",{id:e.unref(H6)(r2.value),ref_for:!0,ref:J=>y(J,G,q),key:q+G,role:"gridcell",class:"dp__calendar_item","aria-pressed":(r2.classData.dp__active_date||r2.classData.dp__range_start||r2.classData.dp__range_start)??void 0,"aria-disabled":r2.classData.dp__cell_disabled||void 0,"aria-label":(V=(p2=e.unref(s))==null?void 0:p2.day)==null?void 0:V.call(p2,r2),tabindex:!r2.current&&P.hideOffsetDates?void 0:0,"data-test":r2.value,onClick:e.withModifiers(J=>U(J,r2),["prevent"]),onTouchend:J=>U(J,r2,!1),onKeydown:J=>e.unref(d0)(J,()=>P.$emit("select-date",r2)),onMouseenter:J=>n2(r2,G,q),onMouseleave:J=>$(r2),onMousedown:J=>c2(r2),onMouseup:e2[0]||(e2[0]=J=>g.value=!1)},[e.createElementVNode("div",{class:e.normalizeClass(["dp__cell_inner",r2.classData])},[P.$slots.day&&F.value(r2)?e.renderSlot(P.$slots,"day",{key:0,day:+r2.text,date:r2.value}):e.createCommentVNode("",!0),P.$slots.day?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(r2.text),1)],64)),r2.marker&&F.value(r2)?(e.openBlock(),e.createElementBlock(e.Fragment,{key:2},[P.$slots.marker?e.renderSlot(P.$slots,"marker",{key:0,marker:r2.marker,day:+r2.text,date:r2.value}):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(A.value(r2.marker)),style:e.normalizeStyle(r2.marker.color?{backgroundColor:r2.marker.color}:{})},null,6))],64)):e.createCommentVNode("",!0),Q.value(r2.value)?(e.openBlock(),e.createElementBlock("div",{key:3,ref_for:!0,ref_key:"activeTooltip",ref:L,class:"dp__marker_tooltip",style:e.normalizeStyle(f.value)},[(z=r2.marker)!=null&&z.tooltip?(e.openBlock(),e.createElementBlock("div",{key:0,class:"dp__tooltip_content",onClick:l2},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r2.marker.tooltip,(J,C2)=>(e.openBlock(),e.createElementBlock("div",{key:C2,class:"dp__tooltip_text"},[P.$slots["marker-tooltip"]?e.renderSlot(P.$slots,"marker-tooltip",{key:0,tooltip:J,day:r2.value}):e.createCommentVNode("",!0),P.$slots["marker-tooltip"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createElementVNode("div",{class:"dp__tooltip_mark",style:e.normalizeStyle(J.color?{backgroundColor:J.color}:{})},null,4),e.createElementVNode("div",null,e.toDisplayString(J.text),1)],64))]))),128)),e.createElementVNode("div",{class:"dp__arrow_bottom_tp",style:e.normalizeStyle(T.value)},null,4)])):e.createCommentVNode("",!0)],4)):e.createCommentVNode("",!0)],2)],40,Ur)}),128))]))),128))],32)):e.createCommentVNode("",!0)]),_:3},8,["name","css"])],2)],2))}}),F6=o=>Array.isArray(o),Wr=(o,t,r,l)=>{const n=e.ref([]),a=e.ref(new Date),i=e.ref(),c=()=>E(o.isTextInputDate),{modelValue:s,calendars:u,time:d,today:C}=Ce(o,t,c),{defaultedMultiCalendars:p,defaultedStartTime:h,defaultedRange:f,defaultedConfig:m,defaultedTz:k,propDates:M,defaultedMultiDates:v}=z2(o),{validateMonthYearInRange:b,isDisabled:L,isDateRangeAllowed:T,checkMinMaxRange:g}=C1(o),{updateTimeValues:H,getSetDateTime:S,setTime:Z,assignStartTime:_,validateTime:I,disabledTimesConfig:A}=$6(o,d,s,l),Q=e.computed(()=>j=>u.value[j]?u.value[j].month:0),x=e.computed(()=>j=>u.value[j]?u.value[j].year:0),F=j=>!m.value.keepViewOnOffsetClick||j?!0:!i.value,D=(j,i2,W,a2=!1)=>{var u2,C0;F(a2)&&(u.value[j]||(u.value[j]={month:0,year:0}),u.value[j].month=h6(i2)?(u2=u.value[j])==null?void 0:u2.month:i2,u.value[j].year=h6(W)?(C0=u.value[j])==null?void 0:C0.year:W)},Y=()=>{o.autoApply&&t("select-date")};e.onMounted(()=>{o.shadow||(s.value||(P(),h.value&&_(h.value)),E(!0),o.focusStartDate&&o.startDate&&P())});const n2=e.computed(()=>{var j;return(j=o.flow)!=null&&j.length&&!o.partialFlow?o.flowStep===o.flow.length:!0}),$=()=>{o.autoApply&&n2.value&&t("auto-apply",o.partialFlow?o.flowStep!==o.flow.length:!1)},E=(j=!1)=>{if(s.value)return Array.isArray(s.value)?(n.value=s.value,B(j)):N(s.value,j);if(p.value.count&&j&&!o.startDate)return K(o2(),j)},X=()=>Array.isArray(s.value)&&f.value.enabled?L2(s.value[0])===L2(s.value[1]??s.value[0]):!1,K=(j=new Date,i2=!1)=>{if((!p.value.count||!p.value.static||i2)&&D(0,L2(j),k2(j)),p.value.count&&(!p.value.solo||!s.value||X()))for(let W=1;W<p.value.count;W++){const a2=T2(o2(),{month:Q.value(W-1),year:x.value(W-1)}),u2=E5(a2,{months:1});u.value[W]={month:L2(u2),year:k2(u2)}}},N=(j,i2)=>{K(j),Z("hours",P0(j)),Z("minutes",a1(j)),Z("seconds",$1(j)),p.value.count&&i2&&c2()},y=j=>{if(p.value.count){if(p.value.solo)return 0;const i2=L2(j[0]),W=L2(j[1]);return Math.abs(W-i2)<p.value.count?0:1}return 1},O=(j,i2)=>{j[1]&&f.value.showLastInRange?K(j[y(j)],i2):K(j[0],i2);const W=(a2,u2)=>[a2(j[0]),j[1]?a2(j[1]):d[u2][1]];Z("hours",W(P0,"hours")),Z("minutes",W(a1,"minutes")),Z("seconds",W($1,"seconds"))},t2=(j,i2)=>{if((f.value.enabled||o.weekPicker)&&!v.value.enabled)return O(j,i2);if(v.value.enabled&&i2){const W=j[j.length-1];return N(W,i2)}},B=j=>{const i2=s.value;t2(i2,j),p.value.count&&p.value.solo&&c2()},U=(j,i2)=>{const W=T2(o2(),{month:Q.value(i2),year:x.value(i2)}),a2=j<0?_0(W,1):N1(W,1);b(L2(a2),k2(a2),j<0,o.preventMinMaxNavigation)&&(D(i2,L2(a2),k2(a2)),t("update-month-year",{instance:i2,month:L2(a2),year:k2(a2)}),p.value.count&&!p.value.solo&&l2(i2),r())},l2=j=>{for(let i2=j-1;i2>=0;i2--){const W=N1(T2(o2(),{month:Q.value(i2+1),year:x.value(i2+1)}),1);D(i2,L2(W),k2(W))}for(let i2=j+1;i2<=p.value.count-1;i2++){const W=_0(T2(o2(),{month:Q.value(i2-1),year:x.value(i2-1)}),1);D(i2,L2(W),k2(W))}},c2=()=>{if(Array.isArray(s.value)&&s.value.length===2){const j=o2(o2(s.value[1]?s.value[1]:_0(s.value[0],1))),[i2,W]=[L2(s.value[0]),k2(s.value[0])],[a2,u2]=[L2(s.value[1]),k2(s.value[1])];(i2!==a2||i2===a2&&W!==u2)&&p.value.solo&&D(1,L2(j),k2(j))}else s.value&&!Array.isArray(s.value)&&(D(0,L2(s.value),k2(s.value)),K(o2()))},P=()=>{o.startDate&&(D(0,L2(o2(o.startDate)),k2(o2(o.startDate))),p.value.count&&l2(0))},e2=(j,i2)=>{if(o.monthChangeOnScroll){const W=new Date().getTime()-a.value.getTime(),a2=Math.abs(j.deltaY);let u2=500;a2>1&&(u2=100),a2>100&&(u2=0),W>u2&&(a.value=new Date,U(o.monthChangeOnScroll!=="inverse"?-j.deltaY:j.deltaY,i2))}},w=(j,i2,W=!1)=>{o.monthChangeOnArrows&&o.vertical===W&&G(j,i2)},G=(j,i2)=>{U(j==="right"?-1:1,i2)},r2=j=>{if(M.value.markers)return Fe(j.value,M.value.markers)},q=(j,i2)=>{switch(o.sixWeeks===!0?"append":o.sixWeeks){case"prepend":return[!0,!1];case"center":return[j==0,!0];case"fair":return[j==0||i2>j,!0];case"append":return[!1,!1];default:return[!1,!1]}},p2=(j,i2,W,a2)=>{if(o.sixWeeks&&j.length<6){const u2=6-j.length,C0=(i2.getDay()+7-a2)%7,b0=6-(W.getDay()+7-a2)%7,[v1,o3]=q(C0,b0);for(let ge=1;ge<=u2;ge++)if(o3?!!(ge%2)==v1:v1){const h1=j[0].days[0],P9=V(V0(h1.value,-7),L2(i2));j.unshift({days:P9})}else{const h1=j[j.length-1],P9=h1.days[h1.days.length-1],Es=V(V0(P9.value,1),L2(i2));j.push({days:Es})}}return j},V=(j,i2)=>{const W=o2(j),a2=[];for(let u2=0;u2<7;u2++){const C0=V0(W,u2),b0=L2(C0)!==i2;a2.push({text:o.hideOffsetDates&&b0?"":C0.getDate(),value:C0,current:!b0,classData:{}})}return a2},z=(j,i2)=>{const W=[],a2=new Date(i2,j),u2=new Date(i2,j+1,0),C0=o.weekStart,b0=v0(a2,{weekStartsOn:C0}),v1=o3=>{const ge=V(o3,j);if(W.push({days:ge}),!W[W.length-1].days.some(h1=>M2(u0(h1.value),u0(u2)))){const h1=V0(o3,7);v1(h1)}};return v1(b0),p2(W,a2,u2,C0)},J=j=>{const i2=s1(o2(j.value),d.hours,d.minutes,k0());t("date-update",i2),v.value.enabled?k9(i2,s,v.value.limit):s.value=i2,l(),e.nextTick().then(()=>{$()})},C2=j=>f.value.noDisabledRange?L6(n.value[0],j).some(i2=>L(i2)):!1,S2=()=>{n.value=s.value?s.value.slice():[],n.value.length===2&&!(f.value.fixedStart||f.value.fixedEnd)&&(n.value=[])},d2=(j,i2)=>{const W=[o2(j.value),V0(o2(j.value),+f.value.autoRange)];T(W)?(i2&&X2(j.value),n.value=W):t("invalid-date",j.value)},X2=j=>{const i2=L2(o2(j)),W=k2(o2(j));if(D(0,i2,W),p.value.count>0)for(let a2=1;a2<p.value.count;a2++){const u2=No(T2(o2(j),{year:x.value(a2-1),month:Q.value(a2-1)}));D(a2,u2.month,u2.year)}},f0=j=>{if(C2(j.value)||!g(j.value,s.value,f.value.fixedStart?0:1))return t("invalid-date",j.value);n.value=E6(o2(j.value),s,t,f)},ke=(j,i2)=>{if(S2(),f.value.autoRange)return d2(j,i2);if(f.value.fixedStart||f.value.fixedEnd)return f0(j);n.value[0]?g(o2(j.value),s.value)&&!C2(j.value)?R2(o2(j.value),o2(n.value[0]))?(n.value.unshift(o2(j.value)),t("range-end",n.value[0])):(n.value[1]=o2(j.value),t("range-end",n.value[1])):(o.autoApply&&t("auto-apply-invalid",j.value),t("invalid-date",j.value)):(n.value[0]=o2(j.value),t("range-start",n.value[0]))},k0=(j=!0)=>o.enableSeconds?Array.isArray(d.seconds)?j?d.seconds[0]:d.seconds[1]:d.seconds:0,ye=j=>{n.value[j]=s1(n.value[j],d.hours[j],d.minutes[j],k0(j!==1))},T9=()=>{var j,i2;n.value[0]&&n.value[1]&&+((j=n.value)==null?void 0:j[0])>+((i2=n.value)==null?void 0:i2[1])&&(n.value.reverse(),t("range-start",n.value[0]),t("range-end",n.value[1]))},t3=()=>{n.value.length&&(n.value[0]&&!n.value[1]?ye(0):(ye(0),ye(1),l()),T9(),s.value=n.value.slice(),Re(n.value,t,o.autoApply,o.modelAuto))},A9=(j,i2=!1)=>{if(L(j.value)||!j.current&&o.hideOffsetDates)return t("invalid-date",j.value);if(i.value=JSON.parse(JSON.stringify(j)),!f.value.enabled)return J(j);F6(d.hours)&&F6(d.minutes)&&!v.value.enabled&&(ke(j,i2),t3())},$9=(j,i2)=>{var W;D(j,i2.month,i2.year,!0),p.value.count&&!p.value.solo&&l2(j),t("update-month-year",{instance:j,month:i2.month,year:i2.year}),r(p.value.solo?j:void 0);const a2=(W=o.flow)!=null&&W.length?o.flow[o.flowStep]:void 0;!i2.fromNav&&(a2===r0.month||a2===r0.year)&&l()},F9=(j,i2)=>{D6({value:j,modelValue:s,range:f.value.enabled,timezone:i2?void 0:k.value.timezone}),Y(),o.multiCalendars&&e.nextTick().then(()=>E(!0))},z9=()=>{const j=J3(o2(),k.value);f.value.enabled?s.value&&Array.isArray(s.value)&&s.value[0]?s.value=R2(j,s.value[0])?[j,s.value[0]]:[s.value[0],j]:s.value=[j]:s.value=j,Y()},N9=()=>{if(Array.isArray(s.value))if(v.value.enabled){const j=O9();s.value[s.value.length-1]=S(j)}else s.value=s.value.map((j,i2)=>j&&S(j,i2));else s.value=S(s.value);t("time-update")},O9=()=>Array.isArray(s.value)&&s.value.length?s.value[s.value.length-1]:null;return{calendars:u,modelValue:s,month:Q,year:x,time:d,disabledTimesConfig:A,today:C,validateTime:I,getCalendarDays:z,getMarker:r2,handleScroll:e2,handleSwipe:G,handleArrow:w,selectDate:A9,updateMonthYear:$9,presetDate:F9,selectCurrentDate:z9,updateTime:(j,i2=!0,W=!1)=>{H(j,i2,W,N9)},assignMonthAndYear:K}},Gr={key:0},Kr=e.defineComponent({__name:"DatePicker",props:{...B0},emits:["tooltip-open","tooltip-close","mount","update:internal-model-value","update-flow-step","reset-flow","auto-apply","focus-menu","select-date","range-start","range-end","invalid-fixed-range","time-update","am-pm-change","time-picker-open","time-picker-close","recalculate-position","update-month-year","auto-apply-invalid","date-update","invalid-date","overlay-toggle"],setup(o,{expose:t,emit:r}){const l=r,n=o,{calendars:a,month:i,year:c,modelValue:s,time:u,disabledTimesConfig:d,today:C,validateTime:p,getCalendarDays:h,getMarker:f,handleArrow:m,handleScroll:k,handleSwipe:M,selectDate:v,updateMonthYear:b,presetDate:L,selectCurrentDate:T,updateTime:g,assignMonthAndYear:H}=Wr(n,l,X,K),S=e.useSlots(),{setHoverDate:Z,getDayClassData:_,clearHoverDate:I}=ul(s,n),{defaultedMultiCalendars:A}=z2(n),Q=e.ref([]),x=e.ref([]),F=e.ref(null),D=h0(S,"calendar"),Y=h0(S,"monthYear"),n2=h0(S,"timePicker"),$=e2=>{n.shadow||l("mount",e2)};e.watch(a,()=>{n.shadow||setTimeout(()=>{l("recalculate-position")},0)},{deep:!0}),e.watch(A,(e2,w)=>{e2.count-w.count>0&&H()},{deep:!0});const E=e.computed(()=>e2=>h(i.value(e2),c.value(e2)).map(w=>({...w,days:w.days.map(G=>(G.marker=f(G),G.classData=_(G),G))})));function X(e2){var w;e2||e2===0?(w=x.value[e2])==null||w.triggerTransition(i.value(e2),c.value(e2)):x.value.forEach((G,r2)=>G.triggerTransition(i.value(r2),c.value(r2)))}function K(){l("update-flow-step")}const N=(e2,w=!1)=>{v(e2,w),n.spaceConfirm&&l("select-date")},y=(e2,w,G=0)=>{var r2;(r2=Q.value[G])==null||r2.toggleMonthPicker(e2,w)},O=(e2,w,G=0)=>{var r2;(r2=Q.value[G])==null||r2.toggleYearPicker(e2,w)},t2=(e2,w,G)=>{var r2;(r2=F.value)==null||r2.toggleTimePicker(e2,w,G)},B=(e2,w)=>{var G;if(!n.range){const r2=s.value?s.value:C,q=w?new Date(w):r2,p2=e2?v0(q,{weekStartsOn:1}):I5(q,{weekStartsOn:1});v({value:p2,current:L2(q)===i.value(0),text:"",classData:{}}),(G=document.getElementById(H6(p2)))==null||G.focus()}},U=e2=>{var w;(w=Q.value[0])==null||w.handleMonthYearChange(e2,!0)},l2=e2=>{b(0,{month:i.value(0),year:c.value(0)+(e2?1:-1),fromNav:!0})},c2=(e2,w)=>{e2===r0.time&&l(`time-picker-${w?"open":"close"}`),l("overlay-toggle",{open:w,overlay:e2})},P=e2=>{l("overlay-toggle",{open:!1,overlay:e2}),l("focus-menu")};return t({clearHoverDate:I,presetDate:L,selectCurrentDate:T,toggleMonthPicker:y,toggleYearPicker:O,toggleTimePicker:t2,handleArrow:m,updateMonthYear:b,getSidebarProps:()=>({modelValue:s,month:i,year:c,time:u,updateTime:g,updateMonthYear:b,selectDate:v,presetDate:L}),changeMonth:U,changeYear:l2,selectWeekDate:B}),(e2,w)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createVNode(je,{"multi-calendars":e.unref(A).count,collapse:e2.collapse},{default:e.withCtx(({instance:G,index:r2})=>[e2.disableMonthYearSelect?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Or,e.mergeProps({key:0,ref:q=>{q&&(Q.value[r2]=q)},months:e.unref(u6)(e2.formatLocale,e2.locale,e2.monthNameFormat),years:e.unref(t9)(e2.yearRange,e2.locale,e2.reverseYears),month:e.unref(i)(G),year:e.unref(c)(G),instance:G},e2.$props,{onMount:w[0]||(w[0]=q=>$(e.unref(L1).header)),onResetFlow:w[1]||(w[1]=q=>e2.$emit("reset-flow")),onUpdateMonthYear:q=>e.unref(b)(G,q),onOverlayClosed:P,onOverlayOpened:w[2]||(w[2]=q=>e2.$emit("overlay-toggle",{open:!0,overlay:q}))}),e.createSlots({_:2},[e.renderList(e.unref(Y),(q,p2)=>({name:q,fn:e.withCtx(V=>[e.renderSlot(e2.$slots,q,e.normalizeProps(e.guardReactiveProps(V)))])}))]),1040,["months","years","month","year","instance","onUpdateMonthYear"])),e.createVNode(qr,e.mergeProps({ref:q=>{q&&(x.value[r2]=q)},"mapped-dates":E.value(G),month:e.unref(i)(G),year:e.unref(c)(G),instance:G},e2.$props,{onSelectDate:q=>e.unref(v)(q,G!==1),onHandleSpace:q=>N(q,G!==1),onSetHoverDate:w[3]||(w[3]=q=>e.unref(Z)(q)),onHandleScroll:q=>e.unref(k)(q,G),onHandleSwipe:q=>e.unref(M)(q,G),onMount:w[4]||(w[4]=q=>$(e.unref(L1).calendar)),onResetFlow:w[5]||(w[5]=q=>e2.$emit("reset-flow")),onTooltipOpen:w[6]||(w[6]=q=>e2.$emit("tooltip-open",q)),onTooltipClose:w[7]||(w[7]=q=>e2.$emit("tooltip-close",q))}),e.createSlots({_:2},[e.renderList(e.unref(D),(q,p2)=>({name:q,fn:e.withCtx(V=>[e.renderSlot(e2.$slots,q,e.normalizeProps(e.guardReactiveProps({...V})))])}))]),1040,["mapped-dates","month","year","instance","onSelectDate","onHandleSpace","onHandleScroll","onHandleSwipe"])]),_:3},8,["multi-calendars","collapse"]),e2.enableTimePicker?(e.openBlock(),e.createElementBlock("div",Gr,[e2.$slots["time-picker"]?e.renderSlot(e2.$slots,"time-picker",e.normalizeProps(e.mergeProps({key:0},{time:e.unref(u),updateTime:e.unref(g)}))):(e.openBlock(),e.createBlock(A6,e.mergeProps({key:1,ref_key:"timePickerRef",ref:F},e2.$props,{hours:e.unref(u).hours,minutes:e.unref(u).minutes,seconds:e.unref(u).seconds,"internal-model-value":e2.internalModelValue,"disabled-times-config":e.unref(d),"validate-time":e.unref(p),onMount:w[8]||(w[8]=G=>$(e.unref(L1).timePicker)),"onUpdate:hours":w[9]||(w[9]=G=>e.unref(g)(G)),"onUpdate:minutes":w[10]||(w[10]=G=>e.unref(g)(G,!1)),"onUpdate:seconds":w[11]||(w[11]=G=>e.unref(g)(G,!1,!0)),onResetFlow:w[12]||(w[12]=G=>e2.$emit("reset-flow")),onOverlayClosed:w[13]||(w[13]=G=>c2(G,!1)),onOverlayOpened:w[14]||(w[14]=G=>c2(G,!0)),onAmPmChange:w[15]||(w[15]=G=>e2.$emit("am-pm-change",G))}),e.createSlots({_:2},[e.renderList(e.unref(n2),(G,r2)=>({name:G,fn:e.withCtx(q=>[e.renderSlot(e2.$slots,G,e.normalizeProps(e.guardReactiveProps(q)))])}))]),1040,["hours","minutes","seconds","internal-model-value","disabled-times-config","validate-time"]))])):e.createCommentVNode("",!0)],64))}}),Qr=(o,t)=>{const r=e.ref(),{defaultedMultiCalendars:l,defaultedConfig:n,defaultedHighlight:a,defaultedRange:i,propDates:c,defaultedFilters:s,defaultedMultiDates:u}=z2(o),{modelValue:d,year:C,month:p,calendars:h}=Ce(o,t),{isDisabled:f}=C1(o),{selectYear:m,groupedYears:k,showYearPicker:M,isDisabled:v,toggleYearPicker:b,handleYearSelect:L,handleYear:T}=T6({modelValue:d,multiCalendars:l,range:i,highlight:a,calendars:h,propDates:c,month:p,year:C,filters:s,props:o,emit:t}),g=(F,D)=>[F,D].map(Y=>E0(Y,"MMMM",{locale:o.formatLocale})).join("-"),H=e.computed(()=>F=>d.value?Array.isArray(d.value)?d.value.some(D=>l6(F,D)):l6(d.value,F):!1),S=F=>{if(i.value.enabled){if(Array.isArray(d.value)){const D=M2(F,d.value[0])||M2(F,d.value[1]);return ze(d.value,r.value,F)&&!D}return!1}return!1},Z=(F,D)=>F.quarter===P5(D)&&F.year===k2(D),_=F=>typeof a.value=="function"?a.value({quarter:P5(F),year:k2(F)}):!!a.value.quarters.find(D=>Z(D,F)),I=e.computed(()=>F=>{const D=T2(new Date,{year:C.value(F)});return Dt({start:re(D),end:R5(D)}).map(Y=>{const n2=y1(Y),$=Y5(Y),E=f(Y),X=S(n2),K=_(n2);return{text:g(n2,$),value:n2,active:H.value(n2),highlighted:K,disabled:E,isBetween:X}})}),A=F=>{k9(F,d,u.value.limit),t("auto-apply",!0)},Q=F=>{d.value=y9(d,F,t),Re(d.value,t,o.autoApply,o.modelAuto)},x=F=>{d.value=F,t("auto-apply")};return{defaultedConfig:n,defaultedMultiCalendars:l,groupedYears:k,year:C,isDisabled:v,quarters:I,showYearPicker:M,modelValue:d,setHoverDate:F=>{r.value=F},selectYear:m,selectQuarter:(F,D,Y)=>{if(!Y)return h.value[D].month=L2(Y5(F)),u.value.enabled?A(F):i.value.enabled?Q(F):x(F)},toggleYearPicker:b,handleYearSelect:L,handleYear:T}},Xr={class:"dp--quarter-items"},Jr=["data-test","disabled","onClick","onMouseover"],el=e.defineComponent({compatConfig:{MODE:3},__name:"QuarterPicker",props:{...B0},emits:["update:internal-model-value","reset-flow","overlay-closed","auto-apply","range-start","range-end","overlay-toggle","update-month-year"],setup(o,{expose:t,emit:r}){const l=r,n=o,a=e.useSlots(),i=h0(a,"yearMode"),{defaultedMultiCalendars:c,defaultedConfig:s,groupedYears:u,year:d,isDisabled:C,quarters:p,modelValue:h,showYearPicker:f,setHoverDate:m,selectQuarter:k,toggleYearPicker:M,handleYearSelect:v,handleYear:b}=Qr(n,l);return t({getSidebarProps:()=>({modelValue:h,year:d,selectQuarter:k,handleYearSelect:v,handleYear:b})}),(L,T)=>(e.openBlock(),e.createBlock(je,{"multi-calendars":e.unref(c).count,collapse:L.collapse,stretch:""},{default:e.withCtx(({instance:g})=>[e.createElementVNode("div",{class:"dp-quarter-picker-wrap",style:e.normalizeStyle({minHeight:`${e.unref(s).modeHeight}px`})},[L.$slots["top-extra"]?e.renderSlot(L.$slots,"top-extra",{key:0,value:L.internalModelValue}):e.createCommentVNode("",!0),e.createElementVNode("div",null,[e.createVNode(Z6,e.mergeProps(L.$props,{items:e.unref(u)(g),instance:g,"show-year-picker":e.unref(f)[g],year:e.unref(d)(g),"is-disabled":H=>e.unref(C)(g,H),onHandleYear:H=>e.unref(b)(g,H),onYearSelect:H=>e.unref(v)(H,g),onToggleYearPicker:H=>e.unref(M)(g,H==null?void 0:H.flow,H==null?void 0:H.show)}),e.createSlots({_:2},[e.renderList(e.unref(i),(H,S)=>({name:H,fn:e.withCtx(Z=>[e.renderSlot(L.$slots,H,e.normalizeProps(e.guardReactiveProps(Z)))])}))]),1040,["items","instance","show-year-picker","year","is-disabled","onHandleYear","onYearSelect","onToggleYearPicker"])]),e.createElementVNode("div",Xr,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(p)(g),(H,S)=>(e.openBlock(),e.createElementBlock("div",{key:S},[e.createElementVNode("button",{type:"button",class:e.normalizeClass(["dp--qr-btn",{"dp--qr-btn-active":H.active,"dp--qr-btn-between":H.isBetween,"dp--qr-btn-disabled":H.disabled,"dp--highlighted":H.highlighted}]),"data-test":H.value,disabled:H.disabled,onClick:Z=>e.unref(k)(H.value,g,H.disabled),onMouseover:Z=>e.unref(m)(H.value)},[L.$slots.quarter?e.renderSlot(L.$slots,"quarter",{key:0,value:H.value,text:H.text}):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(H.text),1)],64))],42,Jr)]))),128))])],4)]),_:3},8,["multi-calendars","collapse"]))}}),tl=["id","tabindex","role","aria-label"],ol={key:0,class:"dp--menu-load-container"},rl={key:1,class:"dp--menu-header"},ll={key:0,class:"dp__sidebar_left"},nl=["data-test","onClick","onKeydown"],al={key:2,class:"dp__sidebar_right"},il={key:3,class:"dp__action_extra"},z6=e.defineComponent({compatConfig:{MODE:3},__name:"DatepickerMenu",props:{...Pe,shadow:{type:Boolean,default:!1},openOnTop:{type:Boolean,default:!1},internalModelValue:{type:[Date,Array],default:null},noOverlayFocus:{type:Boolean,default:!1},collapse:{type:Boolean,default:!1},getInputRect:{type:Function,default:()=>({})},isTextInputDate:{type:Boolean,default:!1}},emits:["close-picker","select-date","auto-apply","time-update","flow-step","update-month-year","invalid-select","update:internal-model-value","recalculate-position","invalid-fixed-range","tooltip-open","tooltip-close","time-picker-open","time-picker-close","am-pm-change","range-start","range-end","auto-apply-invalid","date-update","invalid-date","overlay-toggle"],setup(o,{expose:t,emit:r}){const l=r,n=o,a=e.ref(null),i=e.computed(()=>{const{openOnTop:V,...z}=n;return{...z,flowStep:Z.value,collapse:n.collapse,noOverlayFocus:n.noOverlayFocus,menuWrapRef:a.value}}),{setMenuFocused:c,setShiftKey:s,control:u}=x6(),d=e.useSlots(),{defaultedTextInput:C,defaultedInline:p,defaultedConfig:h,defaultedUI:f}=z2(n),m=e.ref(null),k=e.ref(0),M=e.ref(null),v=e.ref(!1),b=e.ref(null);e.onMounted(()=>{if(!n.shadow){v.value=!0,L(),window.addEventListener("resize",L);const V=K2(a);if(V&&!C.value.enabled&&!p.value.enabled&&(c(!0),D()),V){const z=J=>{h.value.allowPreventDefault&&J.preventDefault(),i1(J,h.value,!0)};V.addEventListener("pointerdown",z),V.addEventListener("mousedown",z)}}}),e.onUnmounted(()=>{window.removeEventListener("resize",L)});const L=()=>{const V=K2(M);V&&(k.value=V.getBoundingClientRect().width)},{arrowRight:T,arrowLeft:g,arrowDown:H,arrowUp:S}=d1(),{flowStep:Z,updateFlowStep:_,childMount:I,resetFlow:A,handleFlow:Q}=Cl(n,l,b),x=e.computed(()=>n.monthPicker?gr:n.yearPicker?Lr:n.timePicker?Tr:n.quarterPicker?el:Kr),F=e.computed(()=>{var V;if(h.value.arrowLeft)return h.value.arrowLeft;const z=(V=a.value)==null?void 0:V.getBoundingClientRect(),J=n.getInputRect();return(J==null?void 0:J.width)<(k==null?void 0:k.value)&&(J==null?void 0:J.left)<=((z==null?void 0:z.left)??0)?`${(J==null?void 0:J.width)/2}px`:(J==null?void 0:J.right)>=((z==null?void 0:z.right)??0)&&(J==null?void 0:J.width)<(k==null?void 0:k.value)?`${(k==null?void 0:k.value)-(J==null?void 0:J.width)/2}px`:"50%"}),D=()=>{const V=K2(a);V&&V.focus({preventScroll:!0})},Y=e.computed(()=>{var V;return((V=b.value)==null?void 0:V.getSidebarProps())||{}}),n2=()=>{n.openOnTop&&l("recalculate-position")},$=h0(d,"action"),E=e.computed(()=>n.monthPicker||n.yearPicker?h0(d,"monthYear"):n.timePicker?h0(d,"timePicker"):h0(d,"shared")),X=e.computed(()=>n.openOnTop?"dp__arrow_bottom":"dp__arrow_top"),K=e.computed(()=>({dp__menu_disabled:n.disabled,dp__menu_readonly:n.readonly,"dp-menu-loading":n.loading})),N=e.computed(()=>({dp__menu:!0,dp__menu_index:!p.value.enabled,dp__relative:p.value.enabled,...f.value.menu??{}})),y=V=>{i1(V,h.value,!0)},O=()=>{n.escClose&&l("close-picker")},t2=V=>{if(n.arrowNavigation){if(V===c0.up)return S();if(V===c0.down)return H();if(V===c0.left)return g();if(V===c0.right)return T()}else V===c0.left||V===c0.up?P("handleArrow",c0.left,0,V===c0.up):P("handleArrow",c0.right,0,V===c0.down)},B=V=>{s(V.shiftKey),!n.disableMonthYearSelect&&V.code===A2.tab&&V.target.classList.contains("dp__menu")&&u.value.shiftKeyInMenu&&(V.preventDefault(),i1(V,h.value,!0),l("close-picker"))},U=()=>{D(),l("time-picker-close")},l2=V=>{var z,J,C2;(z=b.value)==null||z.toggleTimePicker(!1,!1),(J=b.value)==null||J.toggleMonthPicker(!1,!1,V),(C2=b.value)==null||C2.toggleYearPicker(!1,!1,V)},c2=(V,z=0)=>{var J,C2,S2;return V==="month"?(J=b.value)==null?void 0:J.toggleMonthPicker(!1,!0,z):V==="year"?(C2=b.value)==null?void 0:C2.toggleYearPicker(!1,!0,z):V==="time"?(S2=b.value)==null?void 0:S2.toggleTimePicker(!0,!1):l2(z)},P=(V,...z)=>{var J,C2;(J=b.value)!=null&&J[V]&&((C2=b.value)==null||C2[V](...z))},e2=()=>{P("selectCurrentDate")},w=(V,z)=>{P("presetDate",V,z)},G=()=>{P("clearHoverDate")},r2=(V,z)=>{P("updateMonthYear",V,z)},q=(V,z)=>{V.preventDefault(),t2(z)},p2=V=>{var z,J,C2;if(B(V),V.key===A2.home||V.key===A2.end)return P("selectWeekDate",V.key===A2.home,V.target.getAttribute("id"));switch((V.key===A2.pageUp||V.key===A2.pageDown)&&(V.shiftKey?(P("changeYear",V.key===A2.pageUp),(z=r9(a.value,"overlay-year"))==null||z.focus()):(P("changeMonth",V.key===A2.pageUp),(J=r9(a.value,V.key===A2.pageUp?"action-prev":"action-next"))==null||J.focus()),V.target.getAttribute("id")&&((C2=a.value)==null||C2.focus({preventScroll:!0}))),V.key){case A2.esc:return O();case A2.arrowLeft:return q(V,c0.left);case A2.arrowRight:return q(V,c0.right);case A2.arrowUp:return q(V,c0.up);case A2.arrowDown:return q(V,c0.down);default:return}};return t({updateMonthYear:r2,switchView:c2,handleFlow:Q}),(V,z)=>{var J,C2,S2;return e.openBlock(),e.createElementBlock("div",{id:V.uid?`dp-menu-${V.uid}`:void 0,ref_key:"dpMenuRef",ref:a,tabindex:e.unref(p).enabled?void 0:"0",role:e.unref(p).enabled?void 0:"dialog","aria-label":(J=V.ariaLabels)==null?void 0:J.menu,class:e.normalizeClass(N.value),style:e.normalizeStyle({"--dp-arrow-left":F.value}),onMouseleave:G,onClick:y,onKeydown:p2},[(V.disabled||V.readonly)&&e.unref(p).enabled||V.loading?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(K.value)},[V.loading?(e.openBlock(),e.createElementBlock("div",ol,z[19]||(z[19]=[e.createElementVNode("span",{class:"dp--menu-loader"},null,-1)]))):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0),V.$slots["menu-header"]?(e.openBlock(),e.createElementBlock("div",rl,[e.renderSlot(V.$slots,"menu-header")])):e.createCommentVNode("",!0),!e.unref(p).enabled&&!V.teleportCenter?(e.openBlock(),e.createElementBlock("div",{key:2,class:e.normalizeClass(X.value)},null,2)):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"innerMenuRef",ref:M,class:e.normalizeClass({dp__menu_content_wrapper:((C2=V.presetDates)==null?void 0:C2.length)||!!V.$slots["left-sidebar"]||!!V.$slots["right-sidebar"],"dp--menu-content-wrapper-collapsed":o.collapse&&(((S2=V.presetDates)==null?void 0:S2.length)||!!V.$slots["left-sidebar"]||!!V.$slots["right-sidebar"])}),style:e.normalizeStyle({"--dp-menu-width":`${k.value}px`})},[V.$slots["left-sidebar"]?(e.openBlock(),e.createElementBlock("div",ll,[e.renderSlot(V.$slots,"left-sidebar",e.normalizeProps(e.guardReactiveProps(Y.value)))])):e.createCommentVNode("",!0),V.presetDates.length?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass({"dp--preset-dates-collapsed":o.collapse,"dp--preset-dates":!0})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(V.presetDates,(d2,X2)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:X2},[d2.slot?e.renderSlot(V.$slots,d2.slot,{key:0,presetDate:w,label:d2.label,value:d2.value}):(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",style:e.normalizeStyle(d2.style||{}),class:e.normalizeClass(["dp__btn dp--preset-range",{"dp--preset-range-collapsed":o.collapse}]),"data-test":d2.testId??void 0,onClick:e.withModifiers(f0=>w(d2.value,d2.noTz),["prevent"]),onKeydown:f0=>e.unref(d0)(f0,()=>w(d2.value,d2.noTz),!0)},e.toDisplayString(d2.label),47,nl))],64))),128))],2)):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"calendarWrapperRef",ref:m,class:"dp__instance_calendar",role:"document"},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(x.value),e.mergeProps({ref_key:"dynCmpRef",ref:b},i.value,{"flow-step":e.unref(Z),onMount:e.unref(I),onUpdateFlowStep:e.unref(_),onResetFlow:e.unref(A),onFocusMenu:D,onSelectDate:z[0]||(z[0]=d2=>V.$emit("select-date")),onDateUpdate:z[1]||(z[1]=d2=>V.$emit("date-update",d2)),onTooltipOpen:z[2]||(z[2]=d2=>V.$emit("tooltip-open",d2)),onTooltipClose:z[3]||(z[3]=d2=>V.$emit("tooltip-close",d2)),onAutoApply:z[4]||(z[4]=d2=>V.$emit("auto-apply",d2)),onRangeStart:z[5]||(z[5]=d2=>V.$emit("range-start",d2)),onRangeEnd:z[6]||(z[6]=d2=>V.$emit("range-end",d2)),onInvalidFixedRange:z[7]||(z[7]=d2=>V.$emit("invalid-fixed-range",d2)),onTimeUpdate:z[8]||(z[8]=d2=>V.$emit("time-update")),onAmPmChange:z[9]||(z[9]=d2=>V.$emit("am-pm-change",d2)),onTimePickerOpen:z[10]||(z[10]=d2=>V.$emit("time-picker-open",d2)),onTimePickerClose:U,onRecalculatePosition:n2,onUpdateMonthYear:z[11]||(z[11]=d2=>V.$emit("update-month-year",d2)),onAutoApplyInvalid:z[12]||(z[12]=d2=>V.$emit("auto-apply-invalid",d2)),onInvalidDate:z[13]||(z[13]=d2=>V.$emit("invalid-date",d2)),onOverlayToggle:z[14]||(z[14]=d2=>V.$emit("overlay-toggle",d2)),"onUpdate:internalModelValue":z[15]||(z[15]=d2=>V.$emit("update:internal-model-value",d2))}),e.createSlots({_:2},[e.renderList(E.value,(d2,X2)=>({name:d2,fn:e.withCtx(f0=>[e.renderSlot(V.$slots,d2,e.normalizeProps(e.guardReactiveProps({...f0})))])}))]),1040,["flow-step","onMount","onUpdateFlowStep","onResetFlow"]))],512),V.$slots["right-sidebar"]?(e.openBlock(),e.createElementBlock("div",al,[e.renderSlot(V.$slots,"right-sidebar",e.normalizeProps(e.guardReactiveProps(Y.value)))])):e.createCommentVNode("",!0),V.$slots["action-extra"]?(e.openBlock(),e.createElementBlock("div",il,[V.$slots["action-extra"]?e.renderSlot(V.$slots,"action-extra",{key:0,selectCurrentDate:e2}):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)],6),!V.autoApply||e.unref(h).keepActionRow?(e.openBlock(),e.createBlock(ur,e.mergeProps({key:3,"menu-mount":v.value},i.value,{"calendar-width":k.value,onClosePicker:z[16]||(z[16]=d2=>V.$emit("close-picker")),onSelectDate:z[17]||(z[17]=d2=>V.$emit("select-date")),onInvalidSelect:z[18]||(z[18]=d2=>V.$emit("invalid-select")),onSelectNow:e2}),e.createSlots({_:2},[e.renderList(e.unref($),(d2,X2)=>({name:d2,fn:e.withCtx(f0=>[e.renderSlot(V.$slots,d2,e.normalizeProps(e.guardReactiveProps({...f0})))])}))]),1040,["menu-mount","calendar-width"])):e.createCommentVNode("",!0)],46,tl)}}});var I1=(o=>(o.center="center",o.left="left",o.right="right",o))(I1||{});const sl=({menuRef:o,menuRefInner:t,inputRef:r,pickerWrapperRef:l,inline:n,emit:a,props:i,slots:c})=>{const{defaultedConfig:s}=z2(i),u=e.ref({}),d=e.ref(!1),C=e.ref({top:"0",left:"0"}),p=e.ref(!1),h=e.toRef(i,"teleportCenter");e.watch(h,()=>{C.value=JSON.parse(JSON.stringify({})),T()});const f=D=>{if(i.teleport){const Y=D.getBoundingClientRect();return{left:Y.left+window.scrollX,top:Y.top+window.scrollY}}return{top:0,left:0}},m=(D,Y)=>{C.value.left=`${D+Y-u.value.width}px`},k=D=>{C.value.left=`${D}px`},M=(D,Y)=>{i.position===I1.left&&k(D),i.position===I1.right&&m(D,Y),i.position===I1.center&&(C.value.left=`${D+Y/2-u.value.width/2}px`)},v=D=>{const{width:Y,height:n2}=D.getBoundingClientRect(),{top:$,left:E}=i.altPosition?i.altPosition(D):f(D);return{top:+$,left:+E,width:Y,height:n2}},b=()=>{C.value.left="50%",C.value.top="50%",C.value.transform="translate(-50%, -50%)",C.value.position="fixed",delete C.value.opacity},L=()=>{const D=K2(r),{top:Y,left:n2,transform:$}=i.altPosition(D);C.value={top:`${Y}px`,left:`${n2}px`,transform:$??""}},T=(D=!0)=>{var Y;if(!n.value.enabled){if(h.value)return b();if(i.altPosition!==null)return L();if(D){const n2=i.teleport?(Y=t.value)==null?void 0:Y.$el:o.value;n2&&(u.value=n2.getBoundingClientRect()),a("recalculate-position")}return A()}},g=({inputEl:D,left:Y,width:n2})=>{window.screen.width>768&&!d.value&&M(Y,n2),Z(D)},H=D=>{const{top:Y,left:n2,height:$,width:E}=v(D);C.value.top=`${$+Y+ +i.offset}px`,p.value=!1,d.value||(C.value.left=`${n2+E/2-u.value.width/2}px`),g({inputEl:D,left:n2,width:E})},S=D=>{const{top:Y,left:n2,width:$}=v(D);C.value.top=`${Y-+i.offset-u.value.height}px`,p.value=!0,g({inputEl:D,left:n2,width:$})},Z=D=>{if(i.autoPosition){const{left:Y,width:n2}=v(D),{left:$,right:E}=u.value;if(!d.value){if(Math.abs($)!==Math.abs(E)){if($<=0)return d.value=!0,k(Y);if(E>=document.documentElement.clientWidth)return d.value=!0,m(Y,n2)}return M(Y,n2)}}},_=()=>{const D=K2(r);if(D){const{height:Y}=u.value,{top:n2,height:$}=D.getBoundingClientRect(),E=window.innerHeight-n2-$,X=n2;return Y<=E?b1.bottom:Y>E&&Y<=X?b1.top:E>=X?b1.bottom:b1.top}return b1.bottom},I=D=>_()===b1.bottom?H(D):S(D),A=()=>{const D=K2(r);if(D)return i.autoPosition?I(D):H(D)},Q=function(D){if(D){const Y=D.scrollHeight>D.clientHeight,n2=window.getComputedStyle(D).overflowY.indexOf("hidden")!==-1;return Y&&!n2}return!0},x=function(D){return!D||D===document.body||D.nodeType===Node.DOCUMENT_FRAGMENT_NODE?window:Q(D)?D:x(D.assignedSlot&&s.value.shadowDom?D.assignedSlot.parentNode:D.parentNode)},F=D=>{if(D)switch(i.position){case I1.left:return{left:0,transform:"translateX(0)"};case I1.right:return{left:`${D.width}px`,transform:"translateX(-100%)"};default:return{left:`${D.width/2}px`,transform:"translateX(-50%)"}}return{}};return{openOnTop:p,menuStyle:C,xCorrect:d,setMenuPosition:T,getScrollableParent:x,shadowRender:(D,Y)=>{var n2,$,E;const X=document.createElement("div"),K=(n2=K2(r))==null?void 0:n2.getBoundingClientRect();X.setAttribute("id","dp--temp-container");const N=($=l.value)!=null&&$.clientWidth?l.value:document.body;N.append(X);const y=F(K),O=s.value.shadowDom?Object.keys(c).filter(B=>["right-sidebar","left-sidebar","top-extra","action-extra"].includes(B)):Object.keys(c),t2=e.h(D,{...Y,shadow:!0,style:{opacity:0,position:"absolute",...y}},Object.fromEntries(O.map(B=>[B,c[B]])));e.render(t2,X),u.value=(E=t2.el)==null?void 0:E.getBoundingClientRect(),e.render(null,X),N.removeChild(X)}}},u1=[{name:"clock-icon",use:["time","calendar","shared"]},{name:"arrow-left",use:["month-year","calendar","shared","year-mode"]},{name:"arrow-right",use:["month-year","calendar","shared","year-mode"]},{name:"arrow-up",use:["time","calendar","month-year","shared"]},{name:"arrow-down",use:["time","calendar","month-year","shared"]},{name:"calendar-icon",use:["month-year","time","calendar","shared","year-mode"]},{name:"day",use:["calendar","shared"]},{name:"month-overlay-value",use:["calendar","month-year","shared"]},{name:"year-overlay-value",use:["calendar","month-year","shared","year-mode"]},{name:"year-overlay",use:["month-year","shared"]},{name:"month-overlay",use:["month-year","shared"]},{name:"month-overlay-header",use:["month-year","shared"]},{name:"year-overlay-header",use:["month-year","shared"]},{name:"hours-overlay-value",use:["calendar","time","shared"]},{name:"hours-overlay-header",use:["calendar","time","shared"]},{name:"minutes-overlay-value",use:["calendar","time","shared"]},{name:"minutes-overlay-header",use:["calendar","time","shared"]},{name:"seconds-overlay-value",use:["calendar","time","shared"]},{name:"seconds-overlay-header",use:["calendar","time","shared"]},{name:"hours",use:["calendar","time","shared"]},{name:"minutes",use:["calendar","time","shared"]},{name:"month",use:["calendar","month-year","shared"]},{name:"year",use:["calendar","month-year","shared","year-mode"]},{name:"action-buttons",use:["action"]},{name:"action-preview",use:["action"]},{name:"calendar-header",use:["calendar","shared"]},{name:"marker-tooltip",use:["calendar","shared"]},{name:"action-extra",use:["menu"]},{name:"time-picker-overlay",use:["calendar","time","shared"]},{name:"am-pm-button",use:["calendar","time","shared"]},{name:"left-sidebar",use:["menu"]},{name:"right-sidebar",use:["menu"]},{name:"month-year",use:["month-year","shared"]},{name:"time-picker",use:["menu","shared"]},{name:"action-row",use:["action"]},{name:"marker",use:["calendar","shared"]},{name:"quarter",use:["shared"]},{name:"top-extra",use:["shared","month-year"]},{name:"tp-inline-arrow-up",use:["shared","time"]},{name:"tp-inline-arrow-down",use:["shared","time"]},{name:"menu-header",use:["menu"]}],cl=[{name:"trigger"},{name:"input-icon"},{name:"clear-icon"},{name:"dp-input"}],dl={all:()=>u1,monthYear:()=>u1.filter(o=>o.use.includes("month-year")),input:()=>cl,timePicker:()=>u1.filter(o=>o.use.includes("time")),action:()=>u1.filter(o=>o.use.includes("action")),calendar:()=>u1.filter(o=>o.use.includes("calendar")),menu:()=>u1.filter(o=>o.use.includes("menu")),shared:()=>u1.filter(o=>o.use.includes("shared")),yearMode:()=>u1.filter(o=>o.use.includes("year-mode"))},h0=(o,t,r)=>{const l=[];return dl[t]().forEach(n=>{o[n.name]&&l.push(n.name)}),r!=null&&r.length&&r.forEach(n=>{n.slot&&l.push(n.slot)}),l},ue=o=>{const t=e.computed(()=>l=>o.value?l?o.value.open:o.value.close:""),r=e.computed(()=>l=>o.value?l?o.value.menuAppearTop:o.value.menuAppearBottom:"");return{transitionName:t,showTransition:!!o.value,menuTransition:r}},Ce=(o,t,r)=>{const{defaultedRange:l,defaultedTz:n}=z2(o),a=o2(p0(o2(),n.value.timezone)),i=e.ref([{month:L2(a),year:k2(a)}]),c=p=>{const h={hours:P0(a),minutes:a1(a),seconds:0};return l.value.enabled?[h[p],h[p]]:h[p]},s=e.reactive({hours:c("hours"),minutes:c("minutes"),seconds:c("seconds")});e.watch(l,(p,h)=>{p.enabled!==h.enabled&&(s.hours=c("hours"),s.minutes=c("minutes"),s.seconds=c("seconds"))},{deep:!0});const u=e.computed({get:()=>o.internalModelValue,set:p=>{!o.readonly&&!o.disabled&&t("update:internal-model-value",p)}}),d=e.computed(()=>p=>i.value[p]?i.value[p].month:0),C=e.computed(()=>p=>i.value[p]?i.value[p].year:0);return e.watch(u,(p,h)=>{r&&JSON.stringify(p??{})!==JSON.stringify(h??{})&&r()},{deep:!0}),{calendars:i,time:s,modelValue:u,month:d,year:C,today:a}},ul=(o,t)=>{const{defaultedMultiCalendars:r,defaultedMultiDates:l,defaultedUI:n,defaultedHighlight:a,defaultedTz:i,propDates:c,defaultedRange:s}=z2(t),{isDisabled:u}=C1(t),d=e.ref(null),C=e.ref(p0(new Date,i.value.timezone)),p=y=>{!y.current&&t.hideOffsetDates||(d.value=y.value)},h=()=>{d.value=null},f=y=>Array.isArray(o.value)&&s.value.enabled&&o.value[0]&&d.value?y?q2(d.value,o.value[0]):R2(d.value,o.value[0]):!0,m=(y,O)=>{const t2=()=>o.value?O?o.value[0]||null:o.value[1]:null,B=o.value&&Array.isArray(o.value)?t2():null;return M2(o2(y.value),B)},k=y=>{const O=Array.isArray(o.value)?o.value[0]:null;return y?!R2(d.value??null,O):!0},M=(y,O=!0)=>(s.value.enabled||t.weekPicker)&&Array.isArray(o.value)&&o.value.length===2?t.hideOffsetDates&&!y.current?!1:M2(o2(y.value),o.value[O?0:1]):s.value.enabled?m(y,O)&&k(O)||M2(y.value,Array.isArray(o.value)?o.value[0]:null)&&f(O):!1,v=(y,O)=>{if(Array.isArray(o.value)&&o.value[0]&&o.value.length===1){const t2=M2(y.value,d.value);return O?q2(o.value[0],y.value)&&t2:R2(o.value[0],y.value)&&t2}return!1},b=y=>!o.value||t.hideOffsetDates&&!y.current?!1:s.value.enabled?t.modelAuto&&Array.isArray(o.value)?M2(y.value,o.value[0]?o.value[0]:C.value):!1:l.value.enabled&&Array.isArray(o.value)?o.value.some(O=>M2(O,y.value)):M2(y.value,o.value?o.value:C.value),L=y=>{if(s.value.autoRange||t.weekPicker){if(d.value){if(t.hideOffsetDates&&!y.current)return!1;const O=V0(d.value,+s.value.autoRange),t2=j0(o2(d.value),t.weekStart);return t.weekPicker?M2(t2[1],o2(y.value)):M2(O,o2(y.value))}return!1}return!1},T=y=>{if(s.value.autoRange||t.weekPicker){if(d.value){const O=V0(d.value,+s.value.autoRange);if(t.hideOffsetDates&&!y.current)return!1;const t2=j0(o2(d.value),t.weekStart);return t.weekPicker?q2(y.value,t2[0])&&R2(y.value,t2[1]):q2(y.value,d.value)&&R2(y.value,O)}return!1}return!1},g=y=>{if(s.value.autoRange||t.weekPicker){if(d.value){if(t.hideOffsetDates&&!y.current)return!1;const O=j0(o2(d.value),t.weekStart);return t.weekPicker?M2(O[0],y.value):M2(d.value,y.value)}return!1}return!1},H=y=>ze(o.value,d.value,y.value),S=()=>t.modelAuto&&Array.isArray(t.internalModelValue)?!!t.internalModelValue[0]:!1,Z=()=>t.modelAuto?C6(t.internalModelValue):!0,_=y=>{if(t.weekPicker)return!1;const O=s.value.enabled?!M(y)&&!M(y,!1):!0;return!u(y.value)&&!b(y)&&!(!y.current&&t.hideOffsetDates)&&O},I=y=>s.value.enabled?t.modelAuto?S()&&b(y):!1:b(y),A=y=>a.value?$o(y.value,c.value.highlight):!1,Q=y=>{const O=u(y.value);return O&&(typeof a.value=="function"?!a.value(y.value,O):!a.value.options.highlightDisabled)},x=y=>{var O;return typeof a.value=="function"?a.value(y.value):(O=a.value.weekdays)==null?void 0:O.includes(y.value.getDay())},F=y=>(s.value.enabled||t.weekPicker)&&(!(r.value.count>0)||y.current)&&Z()&&!(!y.current&&t.hideOffsetDates)&&!b(y)?H(y):!1,D=y=>{const{isRangeStart:O,isRangeEnd:t2}=E(y),B=s.value.enabled?O||t2:!1;return{dp__cell_offset:!y.current,dp__pointer:!t.disabled&&!(!y.current&&t.hideOffsetDates)&&!u(y.value),dp__cell_disabled:u(y.value),dp__cell_highlight:!Q(y)&&(A(y)||x(y))&&!I(y)&&!B&&!g(y)&&!(F(y)&&t.weekPicker)&&!t2,dp__cell_highlight_active:!Q(y)&&(A(y)||x(y))&&I(y),dp__today:!t.noToday&&M2(y.value,C.value)&&y.current,"dp--past":R2(y.value,C.value),"dp--future":q2(y.value,C.value)}},Y=y=>({dp__active_date:I(y),dp__date_hover:_(y)}),n2=y=>{if(o.value&&!Array.isArray(o.value)){const O=j0(o.value,t.weekStart);return{...K(y),dp__range_start:M2(O[0],y.value),dp__range_end:M2(O[1],y.value),dp__range_between_week:q2(y.value,O[0])&&R2(y.value,O[1])}}return{...K(y)}},$=y=>{if(o.value&&Array.isArray(o.value)){const O=j0(o.value[0],t.weekStart),t2=o.value[1]?j0(o.value[1],t.weekStart):[];return{...K(y),dp__range_start:M2(O[0],y.value)||M2(t2[0],y.value),dp__range_end:M2(O[1],y.value)||M2(t2[1],y.value),dp__range_between_week:q2(y.value,O[0])&&R2(y.value,O[1])||q2(y.value,t2[0])&&R2(y.value,t2[1]),dp__range_between:q2(y.value,O[1])&&R2(y.value,t2[0])}}return{...K(y)}},E=y=>{const O=r.value.count>0?y.current&&M(y)&&Z():M(y)&&Z(),t2=r.value.count>0?y.current&&M(y,!1)&&Z():M(y,!1)&&Z();return{isRangeStart:O,isRangeEnd:t2}},X=y=>{const{isRangeStart:O,isRangeEnd:t2}=E(y);return{dp__range_start:O,dp__range_end:t2,dp__range_between:F(y),dp__date_hover:M2(y.value,d.value)&&!O&&!t2&&!t.weekPicker,dp__date_hover_start:v(y,!0),dp__date_hover_end:v(y,!1)}},K=y=>({...X(y),dp__cell_auto_range:T(y),dp__cell_auto_range_start:g(y),dp__cell_auto_range_end:L(y)}),N=y=>s.value.enabled?s.value.autoRange?K(y):t.modelAuto?{...Y(y),...X(y)}:t.weekPicker?$(y):X(y):t.weekPicker?n2(y):Y(y);return{setHoverDate:p,clearHoverDate:h,getDayClassData:y=>t.hideOffsetDates&&!y.current?{}:{...D(y),...N(y),[t.dayClass?t.dayClass(y.value,t.internalModelValue):""]:!0,...n.value.calendarCell??{}}}},C1=o=>{const{defaultedFilters:t,defaultedRange:r,propDates:l,defaultedMultiDates:n}=z2(o),a=x=>l.value.disabledDates?typeof l.value.disabledDates=="function"?l.value.disabledDates(o2(x)):!!Fe(x,l.value.disabledDates):!1,i=x=>l.value.maxDate?o.yearPicker?k2(x)>k2(l.value.maxDate):q2(x,l.value.maxDate):!1,c=x=>l.value.minDate?o.yearPicker?k2(x)<k2(l.value.minDate):R2(x,l.value.minDate):!1,s=x=>{const F=i(x),D=c(x),Y=a(x),n2=t.value.months.map(N=>+N).includes(L2(x)),$=o.disabledWeekDays.length?o.disabledWeekDays.some(N=>+N===w7(x)):!1,E=h(x),X=k2(x),K=X<+o.yearRange[0]||X>+o.yearRange[1];return!(F||D||Y||n2||K||$||E)},u=(x,F)=>R2(...c1(l.value.minDate,x,F))||M2(...c1(l.value.minDate,x,F)),d=(x,F)=>q2(...c1(l.value.maxDate,x,F))||M2(...c1(l.value.maxDate,x,F)),C=(x,F,D)=>{let Y=!1;return l.value.maxDate&&D&&d(x,F)&&(Y=!0),l.value.minDate&&!D&&u(x,F)&&(Y=!0),Y},p=(x,F,D,Y)=>{let n2=!1;return Y&&(l.value.minDate||l.value.maxDate)?l.value.minDate&&l.value.maxDate?n2=C(x,F,D):(l.value.minDate&&u(x,F)||l.value.maxDate&&d(x,F))&&(n2=!0):n2=!0,n2},h=x=>Array.isArray(l.value.allowedDates)&&!l.value.allowedDates.length?!0:l.value.allowedDates?!Fe(x,l.value.allowedDates):!1,f=x=>!s(x),m=x=>r.value.noDisabledRange?!j5({start:x[0],end:x[1]}).some(F=>f(F)):!0,k=x=>{if(x){const F=k2(x);return F>=+o.yearRange[0]&&F<=o.yearRange[1]}return!0},M=(x,F)=>!!(Array.isArray(x)&&x[F]&&(r.value.maxRange||r.value.minRange)&&k(x[F])),v=(x,F,D=0)=>{if(M(F,D)&&k(x)){const Y=z5(x,F[D]),n2=L6(F[D],x),$=n2.length===1?0:n2.filter(X=>f(X)).length,E=Math.abs(Y)-(r.value.minMaxRawRange?0:$);if(r.value.minRange&&r.value.maxRange)return E>=+r.value.minRange&&E<=+r.value.maxRange;if(r.value.minRange)return E>=+r.value.minRange;if(r.value.maxRange)return E<=+r.value.maxRange}return!0},b=()=>!o.enableTimePicker||o.monthPicker||o.yearPicker||o.ignoreTimeValidation,L=x=>Array.isArray(x)?[x[0]?d9(x[0]):null,x[1]?d9(x[1]):null]:d9(x),T=(x,F,D)=>x.find(Y=>+Y.hours===P0(F)&&Y.minutes==="*"?!0:+Y.minutes===a1(F)&&+Y.hours===P0(F))&&D,g=(x,F,D)=>{const[Y,n2]=x,[$,E]=F;return!T(Y,$,D)&&!T(n2,E,D)&&D},H=(x,F)=>{const D=Array.isArray(F)?F:[F];return Array.isArray(o.disabledTimes)?Array.isArray(o.disabledTimes[0])?g(o.disabledTimes,D,x):!D.some(Y=>T(o.disabledTimes,Y,x)):x},S=(x,F)=>{const D=Array.isArray(F)?[M1(F[0]),F[1]?M1(F[1]):void 0]:M1(F),Y=!o.disabledTimes(D);return x&&Y},Z=(x,F)=>o.disabledTimes?Array.isArray(o.disabledTimes)?H(F,x):S(F,x):F,_=x=>{let F=!0;if(!x||b())return!0;const D=!l.value.minDate&&!l.value.maxDate?L(x):x;return(o.maxTime||l.value.maxDate)&&(F=_6(o.maxTime,l.value.maxDate,"max",Q2(D),F)),(o.minTime||l.value.minDate)&&(F=_6(o.minTime,l.value.minDate,"min",Q2(D),F)),Z(x,F)},I=x=>{if(!o.monthPicker)return!0;let F=!0;const D=o2(x0(x));if(l.value.minDate&&l.value.maxDate){const Y=o2(x0(l.value.minDate)),n2=o2(x0(l.value.maxDate));return q2(D,Y)&&R2(D,n2)||M2(D,Y)||M2(D,n2)}if(l.value.minDate){const Y=o2(x0(l.value.minDate));F=q2(D,Y)||M2(D,Y)}if(l.value.maxDate){const Y=o2(x0(l.value.maxDate));F=R2(D,Y)||M2(D,Y)}return F},A=e.computed(()=>x=>!o.enableTimePicker||o.ignoreTimeValidation?!0:_(x)),Q=e.computed(()=>x=>o.monthPicker?Array.isArray(x)&&(r.value.enabled||n.value.enabled)?!x.filter(F=>!I(F)).length:I(x):!0);return{isDisabled:f,validateDate:s,validateMonthYearInRange:p,isDateRangeAllowed:m,checkMinMaxRange:v,isValidTime:_,isTimeValid:A,isMonthValid:Q}},Ie=()=>{const o=e.computed(()=>(l,n)=>l==null?void 0:l.includes(n)),t=e.computed(()=>(l,n)=>l.count?l.solo?!0:n===0:!0),r=e.computed(()=>(l,n)=>l.count?l.solo?!0:n===l.count-1:!0);return{hideNavigationButtons:o,showLeftIcon:t,showRightIcon:r}},Cl=(o,t,r)=>{const l=e.ref(0),n=e.reactive({[L1.timePicker]:!o.enableTimePicker||o.timePicker||o.monthPicker,[L1.calendar]:!1,[L1.header]:!1}),a=e.computed(()=>o.monthPicker||o.timePicker),i=C=>{var p;if((p=o.flow)!=null&&p.length){if(!C&&a.value)return d();n[C]=!0,Object.keys(n).filter(h=>!n[h]).length||d()}},c=()=>{var C,p;(C=o.flow)!=null&&C.length&&l.value!==-1&&(l.value+=1,t("flow-step",l.value),d()),((p=o.flow)==null?void 0:p.length)===l.value&&e.nextTick().then(()=>s())},s=()=>{l.value=-1},u=(C,p,...h)=>{var f,m;o.flow[l.value]===C&&r.value&&((m=(f=r.value)[p])==null||m.call(f,...h))},d=(C=0)=>{C&&(l.value+=C),u(r0.month,"toggleMonthPicker",!0),u(r0.year,"toggleYearPicker",!0),u(r0.calendar,"toggleTimePicker",!1,!0),u(r0.time,"toggleTimePicker",!0,!0);const p=o.flow[l.value];(p===r0.hours||p===r0.minutes||p===r0.seconds)&&u(p,"toggleTimePicker",!0,!0,p)};return{childMount:i,updateFlowStep:c,resetFlow:s,handleFlow:d,flowStep:l}},pl={key:1,class:"dp__input_wrap"},hl=["id","name","inputmode","placeholder","disabled","readonly","required","value","autocomplete","aria-label","aria-disabled","aria-invalid"],ml={key:2,class:"dp--clear-btn"},fl=["aria-label"],kl=e.defineComponent({compatConfig:{MODE:3},__name:"DatepickerInput",props:{isMenuOpen:{type:Boolean,default:!1},inputValue:{type:String,default:""},...Pe},emits:["clear","open","update:input-value","set-input-date","close","select-date","set-empty-date","toggle","focus-prev","focus","blur","real-blur","text-input"],setup(o,{expose:t,emit:r}){const l=r,n=o,{defaultedTextInput:a,defaultedAriaLabels:i,defaultedInline:c,defaultedConfig:s,defaultedRange:u,defaultedMultiDates:d,defaultedUI:C,getDefaultPattern:p,getDefaultStartTime:h}=z2(n),{checkMinMaxRange:f}=C1(n),m=e.ref(),k=e.ref(null),M=e.ref(!1),v=e.ref(!1),b=e.computed(()=>({dp__pointer:!n.disabled&&!n.readonly&&!a.value.enabled,dp__disabled:n.disabled,dp__input_readonly:!a.value.enabled,dp__input:!0,dp__input_icon_pad:!n.hideInputIcon,dp__input_valid:typeof n.state=="boolean"?n.state:!1,dp__input_invalid:typeof n.state=="boolean"?!n.state:!1,dp__input_focus:M.value||n.isMenuOpen,dp__input_reg:!a.value.enabled,...C.value.input??{}})),L=()=>{l("set-input-date",null),n.clearable&&n.autoApply&&(l("set-empty-date"),m.value=null)},T=E=>{const X=h();return Fo(E,a.value.format??p(),X??M6({},n.enableSeconds),n.inputValue,v.value,n.formatLocale)},g=E=>{const{rangeSeparator:X}=a.value,[K,N]=E.split(`${X}`);if(K){const y=T(K.trim()),O=N?T(N.trim()):null;if(F1(y,O))return;const t2=y&&O?[y,O]:[y];f(O,t2,0)&&(m.value=y?t2:null)}},H=()=>{v.value=!0},S=E=>{if(u.value.enabled)g(E);else if(d.value.enabled){const X=E.split(";");m.value=X.map(K=>T(K.trim())).filter(K=>K)}else m.value=T(E)},Z=E=>{var X;const K=typeof E=="string"?E:(X=E.target)==null?void 0:X.value;K!==""?(a.value.openMenu&&!n.isMenuOpen&&l("open"),S(K),l("set-input-date",m.value)):L(),v.value=!1,l("update:input-value",K),l("text-input",E,m.value)},_=E=>{a.value.enabled?(S(E.target.value),a.value.enterSubmit&&i9(m.value)&&n.inputValue!==""?(l("set-input-date",m.value,!0),m.value=null):a.value.enterSubmit&&n.inputValue===""&&(m.value=null,l("clear"))):Q(E)},I=(E,X)=>{a.value.enabled&&a.value.tabSubmit&&!X&&S(E.target.value),a.value.tabSubmit&&i9(m.value)&&n.inputValue!==""?(l("set-input-date",m.value,!0,!0),m.value=null):a.value.tabSubmit&&n.inputValue===""&&(m.value=null,l("clear",!0))},A=()=>{M.value=!0,l("focus"),e.nextTick().then(()=>{var E;a.value.enabled&&a.value.selectOnFocus&&((E=k.value)==null||E.select())})},Q=E=>{if(i1(E,s.value,!0),a.value.enabled&&a.value.openMenu&&!c.value.input){if(a.value.openMenu==="open"&&!n.isMenuOpen)return l("open");if(a.value.openMenu==="toggle")return l("toggle")}else a.value.enabled||l("toggle")},x=()=>{l("real-blur"),M.value=!1,(!n.isMenuOpen||c.value.enabled&&c.value.input)&&l("blur"),n.autoApply&&a.value.enabled&&m.value&&!n.isMenuOpen&&(l("set-input-date",m.value),l("select-date"),m.value=null)},F=E=>{i1(E,s.value,!0),l("clear")},D=E=>{if(E.key==="Tab"&&I(E),E.key==="Enter"&&_(E),!a.value.enabled){if(E.code==="Tab")return;E.preventDefault()}},Y=()=>{var E;(E=k.value)==null||E.focus({preventScroll:!0})},n2=E=>{m.value=E},$=E=>{E.key===A2.tab&&I(E,!0)};return t({focusInput:Y,setParsedDate:n2}),(E,X)=>{var K,N,y;return e.openBlock(),e.createElementBlock("div",{onClick:Q},[E.$slots.trigger&&!E.$slots["dp-input"]&&!e.unref(c).enabled?e.renderSlot(E.$slots,"trigger",{key:0}):e.createCommentVNode("",!0),!E.$slots.trigger&&(!e.unref(c).enabled||e.unref(c).input)?(e.openBlock(),e.createElementBlock("div",pl,[E.$slots["dp-input"]&&!E.$slots.trigger&&(!e.unref(c).enabled||e.unref(c).enabled&&e.unref(c).input)?e.renderSlot(E.$slots,"dp-input",{key:0,value:o.inputValue,isMenuOpen:o.isMenuOpen,onInput:Z,onEnter:_,onTab:I,onClear:F,onBlur:x,onKeypress:D,onPaste:H,onFocus:A,openMenu:()=>E.$emit("open"),closeMenu:()=>E.$emit("close"),toggleMenu:()=>E.$emit("toggle")}):e.createCommentVNode("",!0),E.$slots["dp-input"]?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("input",{key:1,id:E.uid?`dp-input-${E.uid}`:void 0,ref_key:"inputRef",ref:k,"data-test":"dp-input",name:E.name,class:e.normalizeClass(b.value),inputmode:e.unref(a).enabled?"text":"none",placeholder:E.placeholder,disabled:E.disabled,readonly:E.readonly,required:E.required,value:o.inputValue,autocomplete:E.autocomplete,"aria-label":(K=e.unref(i))==null?void 0:K.input,"aria-disabled":E.disabled||void 0,"aria-invalid":E.state===!1?!0:void 0,onInput:Z,onBlur:x,onFocus:A,onKeypress:D,onKeydown:X[0]||(X[0]=O=>D(O)),onPaste:H},null,42,hl)),e.createElementVNode("div",{onClick:X[3]||(X[3]=O=>l("toggle"))},[E.$slots["input-icon"]&&!E.hideInputIcon?(e.openBlock(),e.createElementBlock("span",{key:0,class:"dp__input_icon",onClick:X[1]||(X[1]=O=>l("toggle"))},[e.renderSlot(E.$slots,"input-icon")])):e.createCommentVNode("",!0),!E.$slots["input-icon"]&&!E.hideInputIcon&&!E.$slots["dp-input"]?(e.openBlock(),e.createBlock(e.unref(O1),{key:1,"aria-label":(N=e.unref(i))==null?void 0:N.calendarIcon,class:"dp__input_icon dp__input_icons",onClick:X[2]||(X[2]=O=>l("toggle"))},null,8,["aria-label"])):e.createCommentVNode("",!0)]),E.$slots["clear-icon"]&&o.inputValue&&E.clearable&&!E.disabled&&!E.readonly?(e.openBlock(),e.createElementBlock("span",ml,[e.renderSlot(E.$slots,"clear-icon",{clear:F})])):e.createCommentVNode("",!0),E.clearable&&!E.$slots["clear-icon"]&&o.inputValue&&!E.disabled&&!E.readonly?(e.openBlock(),e.createElementBlock("button",{key:3,"aria-label":(y=e.unref(i))==null?void 0:y.clearInput,class:"dp--clear-btn",type:"button",onKeydown:X[4]||(X[4]=O=>e.unref(d0)(O,()=>F(O),!0,$)),onClick:X[5]||(X[5]=e.withModifiers(O=>F(O),["prevent"]))},[e.createVNode(e.unref(c6),{class:"dp__input_icons","data-test":"clear-icon"})],40,fl)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)])}}}),yl=typeof window<"u"?window:void 0,g9=()=>{},gl=o=>e.getCurrentScope()?(e.onScopeDispose(o),!0):!1,bl=(o,t,r,l)=>{if(!o)return g9;let n=g9;const a=e.watch(()=>e.unref(o),c=>{n(),c&&(c.addEventListener(t,r,l),n=()=>{c.removeEventListener(t,r,l),n=g9})},{immediate:!0,flush:"post"}),i=()=>{a(),n()};return gl(i),i},Ll=(o,t,r,l={})=>{const{window:n=yl,event:a="pointerdown"}=l;return n?bl(n,a,i=>{const c=K2(o),s=K2(t);!c||!s||c===i.target||i.composedPath().includes(c)||i.composedPath().includes(s)||r(i)},{passive:!0}):void 0},Ml=e.defineComponent({compatConfig:{MODE:3},__name:"VueDatePicker",props:{...Pe},emits:["update:model-value","update:model-timezone-value","text-submit","closed","cleared","open","focus","blur","internal-model-change","recalculate-position","flow-step","update-month-year","invalid-select","invalid-fixed-range","tooltip-open","tooltip-close","time-picker-open","time-picker-close","am-pm-change","range-start","range-end","date-update","invalid-date","overlay-toggle","text-input"],setup(o,{expose:t,emit:r}){const l=r,n=o,a=e.useSlots(),i=e.ref(!1),c=e.toRef(n,"modelValue"),s=e.toRef(n,"timezone"),u=e.ref(null),d=e.ref(null),C=e.ref(null),p=e.ref(!1),h=e.ref(null),f=e.ref(!1),m=e.ref(!1),k=e.ref(!1),M=e.ref(!1),{setMenuFocused:v,setShiftKey:b}=x6(),{clearArrowNav:L}=d1(),{validateDate:T,isValidTime:g}=C1(n),{defaultedTransitions:H,defaultedTextInput:S,defaultedInline:Z,defaultedConfig:_,defaultedRange:I,defaultedMultiDates:A}=z2(n),{menuTransition:Q,showTransition:x}=ue(H);e.onMounted(()=>{O(n.modelValue),e.nextTick().then(()=>{if(!Z.value.enabled){const W=X(h.value);W==null||W.addEventListener("scroll",r2),window==null||window.addEventListener("resize",q)}}),Z.value.enabled&&(i.value=!0),window==null||window.addEventListener("keyup",p2),window==null||window.addEventListener("keydown",V)}),e.onUnmounted(()=>{if(!Z.value.enabled){const W=X(h.value);W==null||W.removeEventListener("scroll",r2),window==null||window.removeEventListener("resize",q)}window==null||window.removeEventListener("keyup",p2),window==null||window.removeEventListener("keydown",V)});const F=h0(a,"all",n.presetDates),D=h0(a,"input");e.watch([c,s],()=>{O(c.value)},{deep:!0});const{openOnTop:Y,menuStyle:n2,xCorrect:$,setMenuPosition:E,getScrollableParent:X,shadowRender:K}=sl({menuRef:u,menuRefInner:d,inputRef:C,pickerWrapperRef:h,inline:Z,emit:l,props:n,slots:a}),{inputValue:N,internalModelValue:y,parseExternalModelValue:O,emitModelValue:t2,formatInputValue:B,checkBeforeEmit:U}=ir(l,n,p),l2=e.computed(()=>({dp__main:!0,dp__theme_dark:n.dark,dp__theme_light:!n.dark,dp__flex_display:Z.value.enabled,"dp--flex-display-collapsed":k.value,dp__flex_display_with_input:Z.value.input})),c2=e.computed(()=>n.dark?"dp__theme_dark":"dp__theme_light"),P=e.computed(()=>n.teleport?{to:typeof n.teleport=="boolean"?"body":n.teleport,disabled:!n.teleport||Z.value.enabled}:{}),e2=e.computed(()=>({class:"dp__outer_menu_wrap"})),w=e.computed(()=>Z.value.enabled&&(n.timePicker||n.monthPicker||n.yearPicker||n.quarterPicker)),G=()=>{var W,a2;return(a2=(W=C.value)==null?void 0:W.$el)==null?void 0:a2.getBoundingClientRect()},r2=()=>{i.value&&(_.value.closeOnScroll?k0():E())},q=()=>{var W;i.value&&E();const a2=(W=d.value)==null?void 0:W.$el.getBoundingClientRect().width;k.value=document.body.offsetWidth<=a2},p2=W=>{W.key==="Tab"&&!Z.value.enabled&&!n.teleport&&_.value.tabOutClosesMenu&&(h.value.contains(document.activeElement)||k0()),m.value=W.shiftKey},V=W=>{m.value=W.shiftKey},z=()=>{!n.disabled&&!n.readonly&&(K(z6,n),E(!1),i.value=!0,i.value&&l("open"),i.value||ke(),O(n.modelValue))},J=()=>{var W;N.value="",ke(),(W=C.value)==null||W.setParsedDate(null),l("update:model-value",null),l("update:model-timezone-value",null),l("cleared"),_.value.closeOnClearValue&&k0()},C2=()=>{const W=y.value;return!W||!Array.isArray(W)&&T(W)?!0:Array.isArray(W)?A.value.enabled||W.length===2&&T(W[0])&&T(W[1])?!0:I.value.partialRange&&!n.timePicker?T(W[0]):!1:!1},S2=()=>{U()&&C2()?(t2(),k0()):l("invalid-select",y.value)},d2=W=>{X2(),t2(),_.value.closeOnAutoApply&&!W&&k0()},X2=()=>{C.value&&S.value.enabled&&C.value.setParsedDate(y.value)},f0=(W=!1)=>{n.autoApply&&g(y.value)&&C2()&&(I.value.enabled&&Array.isArray(y.value)?(I.value.partialRange||y.value.length===2)&&d2(W):d2(W))},ke=()=>{S.value.enabled||(y.value=null)},k0=()=>{Z.value.enabled||(i.value&&(i.value=!1,$.value=!1,v(!1),b(!1),L(),l("closed"),N.value&&O(c.value)),ke(),l("blur"))},ye=(W,a2,u2=!1)=>{if(!W){y.value=null;return}const C0=Array.isArray(W)?!W.some(v1=>!T(v1)):T(W),b0=g(W);C0&&b0?(M.value=!0,y.value=W,a2&&(f.value=u2,S2(),l("text-submit")),e.nextTick().then(()=>{M.value=!1})):l("invalid-date",W)},T9=()=>{n.autoApply&&g(y.value)&&t2(),X2()},t3=()=>i.value?k0():z(),A9=W=>{y.value=W},$9=()=>{S.value.enabled&&(p.value=!0,B()),l("focus")},F9=()=>{if(S.value.enabled&&(p.value=!1,O(n.modelValue),f.value)){const W=Ao(h.value,m.value);W==null||W.focus()}l("blur")},z9=W=>{d.value&&d.value.updateMonthYear(0,{month:p6(W.month),year:p6(W.year)})},N9=W=>{O(W??n.modelValue)},O9=(W,a2)=>{var u2;(u2=d.value)==null||u2.switchView(W,a2)},j=W=>_.value.onClickOutside?_.value.onClickOutside(W):k0(),i2=(W=0)=>{var a2;(a2=d.value)==null||a2.handleFlow(W)};return Ll(u,C,()=>j(C2)),t({closeMenu:k0,selectDate:S2,clearValue:J,openMenu:z,onScroll:r2,formatInputValue:B,updateInternalModelValue:A9,setMonthYear:z9,parseModel:N9,switchView:O9,toggleMenu:t3,handleFlow:i2,dpWrapMenuRef:u}),(W,a2)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"pickerWrapperRef",ref:h,class:e.normalizeClass(l2.value),"data-datepicker-instance":""},[e.createVNode(kl,e.mergeProps({ref_key:"inputRef",ref:C,"input-value":e.unref(N),"onUpdate:inputValue":a2[0]||(a2[0]=u2=>e.isRef(N)?N.value=u2:null),"is-menu-open":i.value},W.$props,{onClear:J,onOpen:z,onSetInputDate:ye,onSetEmptyDate:e.unref(t2),onSelectDate:S2,onToggle:t3,onClose:k0,onFocus:$9,onBlur:F9,onRealBlur:a2[1]||(a2[1]=u2=>p.value=!1),onTextInput:a2[2]||(a2[2]=u2=>W.$emit("text-input",u2))}),e.createSlots({_:2},[e.renderList(e.unref(D),(u2,C0)=>({name:u2,fn:e.withCtx(b0=>[e.renderSlot(W.$slots,u2,e.normalizeProps(e.guardReactiveProps(b0)))])}))]),1040,["input-value","is-menu-open","onSetEmptyDate"]),(e.openBlock(),e.createBlock(e.resolveDynamicComponent(W.teleport?e.Teleport:"div"),e.normalizeProps(e.guardReactiveProps(P.value)),{default:e.withCtx(()=>[e.createVNode(e.Transition,{name:e.unref(Q)(e.unref(Y)),css:e.unref(x)&&!e.unref(Z).enabled},{default:e.withCtx(()=>[i.value?(e.openBlock(),e.createElementBlock("div",e.mergeProps({key:0,ref_key:"dpWrapMenuRef",ref:u},e2.value,{class:{"dp--menu-wrapper":!e.unref(Z).enabled},style:e.unref(Z).enabled?void 0:e.unref(n2)}),[e.createVNode(z6,e.mergeProps({ref_key:"dpMenuRef",ref:d},W.$props,{"internal-model-value":e.unref(y),"onUpdate:internalModelValue":a2[3]||(a2[3]=u2=>e.isRef(y)?y.value=u2:null),class:{[c2.value]:!0,"dp--menu-wrapper":W.teleport},"open-on-top":e.unref(Y),"no-overlay-focus":w.value,collapse:k.value,"get-input-rect":G,"is-text-input-date":M.value,onClosePicker:k0,onSelectDate:S2,onAutoApply:f0,onTimeUpdate:T9,onFlowStep:a2[4]||(a2[4]=u2=>W.$emit("flow-step",u2)),onUpdateMonthYear:a2[5]||(a2[5]=u2=>W.$emit("update-month-year",u2)),onInvalidSelect:a2[6]||(a2[6]=u2=>W.$emit("invalid-select",e.unref(y))),onAutoApplyInvalid:a2[7]||(a2[7]=u2=>W.$emit("invalid-select",u2)),onInvalidFixedRange:a2[8]||(a2[8]=u2=>W.$emit("invalid-fixed-range",u2)),onRecalculatePosition:e.unref(E),onTooltipOpen:a2[9]||(a2[9]=u2=>W.$emit("tooltip-open",u2)),onTooltipClose:a2[10]||(a2[10]=u2=>W.$emit("tooltip-close",u2)),onTimePickerOpen:a2[11]||(a2[11]=u2=>W.$emit("time-picker-open",u2)),onTimePickerClose:a2[12]||(a2[12]=u2=>W.$emit("time-picker-close",u2)),onAmPmChange:a2[13]||(a2[13]=u2=>W.$emit("am-pm-change",u2)),onRangeStart:a2[14]||(a2[14]=u2=>W.$emit("range-start",u2)),onRangeEnd:a2[15]||(a2[15]=u2=>W.$emit("range-end",u2)),onDateUpdate:a2[16]||(a2[16]=u2=>W.$emit("date-update",u2)),onInvalidDate:a2[17]||(a2[17]=u2=>W.$emit("invalid-date",u2)),onOverlayToggle:a2[18]||(a2[18]=u2=>W.$emit("overlay-toggle",u2))}),e.createSlots({_:2},[e.renderList(e.unref(F),(u2,C0)=>({name:u2,fn:e.withCtx(b0=>[e.renderSlot(W.$slots,u2,e.normalizeProps(e.guardReactiveProps({...b0})))])}))]),1040,["internal-model-value","class","open-on-top","no-overlay-focus","collapse","is-text-input-date","onRecalculatePosition"])],16)):e.createCommentVNode("",!0)]),_:3},8,["name","css"])]),_:3},16))],2))}}),b9=(()=>{const o=Ml;return o.install=t=>{t.component("Vue3DatePicker",o)},o})();Object.entries(Object.freeze(Object.defineProperty({__proto__:null,default:b9},Symbol.toStringTag,{value:"Module"}))).forEach(([o,t])=>{o!=="default"&&(b9[o]=t)});const wl=["for"],Vl={class:"mc-date-picker__inner"},_l={class:"mc-datepicker__footer-popup"},vl={class:"mc-datepicker__footer-popup-periods"},Hl={key:1,class:"mc-date-picker__footer"},xl={key:1},N6=e.defineComponent({__name:"McDatepicker",props:{modelValue:{type:[String,Array]},type:{type:String,default:N2.DatePicker},title:{type:String,default:""},helpText:{type:String,default:""},editable:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},placeholder:{type:String,default:null},name:{type:String,required:!0},lang:{type:String,default:"en"},errors:{type:Array,default:()=>[]},toIsoFormat:{type:Boolean,default:!1},placeholders:{type:Object,default:()=>({week:"Week",month:"Month",quarter:"Quarter",year:"Year",confirm:"Confirm"})},customPresets:{type:Array,default:()=>[]},range:{type:Boolean,default:!1},inline:{type:Boolean,default:!1},minDate:{type:[Date,String]},maxDate:{type:[String,Date]},disabledDates:{type:[Array,Function]},allowedDates:{type:[Array,Function]},disabledTime:{type:[Array,Function]},minWidth:{type:String,default:"240px"},hours:{type:Array,default:()=>[]},minutes:{type:Array,default:()=>[]},seconds:{type:Array,default:()=>[]},timezone:{type:String,default:f2.tz.guess()},useTimezone:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},loading:{type:Boolean,default:!1},setDefaultToday:{type:Boolean,default:!0},markers:{type:Array,default:()=>[]}},emits:["update:modelValue"],setup(o,{emit:t}){const r=e.useAttrs(),l=t,n=o,a=Z0(n.errors),i=e.ref(null),c=e.ref(null),s=e.computed(()=>({"mc-date-picker--error":!!a.errorText.value,"mc-date-picker--disabled":n.disabled})),u=e.reactive({[N2.TimePicker]:{[I2.Picker]:W0.TimePicker,[I2.Dayjs]:G0.TimePicker,[I2.Output]:K0.TimePicker},[N2.DatePicker]:{[I2.Picker]:W0.DatePicker,[I2.Dayjs]:G0.DatePicker,[I2.Output]:K0.DatePicker},[N2.DateTimePicker]:{[I2.Picker]:W0.DateTimePicker,[I2.Dayjs]:G0.DateTimePicker,[I2.Output]:K0.DateTimePicker},[N2.WeekPicker]:{[I2.Picker]:W0.WeekPicker,[I2.Dayjs]:G0.WeekPicker,[I2.Output]:K0.WeekPicker},[N2.MonthPicker]:{[I2.Picker]:W0.MonthPicker,[I2.Dayjs]:G0.MonthPicker,[I2.Output]:K0.MonthPicker},[N2.YearPicker]:{[I2.Picker]:W0.YearPicker,[I2.Dayjs]:G0.YearPicker,[I2.Output]:K0.YearPicker}}),d=e.computed(()=>n.type||N2.DatePicker),C=e.reactive(u[d.value]),p=e.computed(()=>d.value===N2.TimePicker),h=e.computed(()=>d.value===N2.DateTimePicker),f=e.computed(()=>d.value===N2.WeekPicker),m=e.computed(()=>d.value===N2.MonthPicker),k=e.computed(()=>d.value===N2.YearPicker),M=e.computed(()=>({[N2.TimePicker]:d.value===N2.TimePicker,[N2.WeekPicker]:d.value===N2.WeekPicker,[N2.MonthPicker]:d.value===N2.MonthPicker,[N2.YearPicker]:d.value===N2.YearPicker})),v=e.computed(()=>!p.value&&!h.value&&!S.value),b=e.computed(()=>f.value?"local":null),L=e.computed(()=>n.toIsoFormat&&!n.useTimezone?"iso":"format"),T=e.computed(()=>n.hours&&n.hours.length?{"hour-options":n.hours}:{}),g=e.computed(()=>n.minutes&&n.minutes.length?{"minute-options":n.minutes}:{}),H=e.computed(()=>n.seconds&&n.seconds.length?{"second-options":n.seconds}:{}),S=e.computed(()=>{var $;return n.range&&((($=n.customPresets)==null?void 0:$.length)||!!n.placeholders)&&!p.value&&!k.value&&!m.value});e.onMounted(()=>{_()});const Z=e.computed({get(){return Q(n.modelValue)},set($){$||($=n.range?[]:null);const E=x($);a.toggleErrorVisible(),l("update:modelValue",E)}}),_=()=>{n.setDefaultToday&&A()},I=$=>{const[E,X]=$;c.value&&(c.value.currentValue=f2?[f2(E).toDate(),f2(X).toDate()]:$)},A=()=>{var E;if(f.value)return;if(!(n.range?((E=Z.value)==null?void 0:E.length)&&Array.isArray(Z.value)&&Z.value.every(X=>f2(X).isValid()):f2(Z.value).isValid())){let X=n.toIsoFormat?f2().toISOString():f2().format(C[I2.Output]);Z.value=n.range?Q([X,X]):Q(X)}},Q=$=>{if(f.value)return $;let E=n.range?Array.isArray($)?$:[]:[$];n.toIsoFormat||(E=E.map(N=>f2(N,C.output).format(C.dayjs)));const[X,K]=E;return n.range?[X,K].filter(Boolean):X},x=$=>{if(f.value)return $;let E=n.range?Array.isArray($)?$.map(N=>String(N)):[]:[String($)];n.toIsoFormat||(E=E.map(N=>f2(N,C.dayjs).format(C.output)));const[X,K]=E.map(N=>N==="Invalid Date"?null:N);return n.range?[X,K].filter(Boolean):X},F=async()=>{const $=n.lang!=="ar"&&Object.keys(D5).includes(n.lang)?n.lang:"en";f2.locale($)},D=$=>{let E=f2();const X=i.value?f2(i.value):f2();switch($){case"week":E=f2(X).subtract(7,"days");break;case"month":E=f2(X).subtract(1,"months");break;case"quarter":E=f2(X).subtract(3,"months");break;case"year":E=f2(X).subtract(1,"years");break}c.value.updateInternalModelValue([E.toDate(),X.toDate()])},Y=$=>{i.value=$},n2=()=>{c.value.selectDate(),c.value.closeMenu()};return e.watch(()=>n.lang,()=>{F()},{immediate:!0}),($,E)=>(e.openBlock(),e.createElementBlock("div",{ref:"field",class:e.normalizeClass(["mc-date-picker",s.value])},[$.$slots.header||n.title?(e.openBlock(),e.createElementBlock("label",{key:0,for:o.name,class:"mc-date-picker__header"},[e.renderSlot($.$slots,"title",{},()=>[n.title?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,weight:e.unref(J2).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.title),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])],8,wl)):e.createCommentVNode("",!0),e.createElementVNode("div",Vl,[e.createElementVNode("div",{class:"mc-date-picker__input-wrapper",style:e.normalizeStyle({minWidth:o.minWidth})},[e.createVNode(e.unref(b9),e.mergeProps({modelValue:Z.value,"onUpdate:modelValue":E[4]||(E[4]=X=>Z.value=X),ref_key:"input",ref:c,type:o.type},{...e.unref(r),...M.value,...T.value,...g.value,...H.value},{class:"mc-date-picker__date-picker",range:n.range,"multi-calendars":n.range,"month-change-on-scroll":!1,timezone:o.timezone,format:C.picker,"model-type":L.value,"auto-apply":v.value,"partial-flow":p.value||h.value,"enable-time-picker":p.value||h.value,clearable:o.clearable,inline:o.inline,locale:o.lang,markers:o.markers,"action-row":{},loading:o.loading,"week-numbers":b.value,placeholder:o.placeholder,editable:o.editable,disabled:o.disabled,"disabled-dates":o.disabledDates,"allowed-dates":o.allowedDates,"min-date":o.minDate,"max-date":o.maxDate,"disabled-times":o.disabledTime,onRangeStart:Y}),e.createSlots({"input-icon":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:"calendar",size:"300",color:n.disabled?"outline-gray":"black"},null,8,["color"])]),"icon-calendar":e.withCtx(()=>[e.createVNode(e.unref(V2),{class:"mc-date-picker__icon",name:"calendar"})]),_:2},[S.value?{name:"action-row",fn:e.withCtx(()=>[e.createElementVNode("div",_l,[e.createElementVNode("div",vl,[o.customPresets&&o.customPresets.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(o.customPresets,X=>(e.openBlock(),e.createBlock(e.unref(E2),{key:X.title,variation:"black-link","secondary-color":"purple",onClick:K=>I(X.period)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(X.title),1)]),_:2},1032,["onClick"]))),128)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[o.placeholders.week?(e.openBlock(),e.createBlock(e.unref(E2),{key:0,variation:"black-link","secondary-color":"purple",onClick:E[0]||(E[0]=X=>D("week"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.week),1)]),_:1})):e.createCommentVNode("",!0),o.placeholders.month?(e.openBlock(),e.createBlock(e.unref(E2),{key:1,variation:"black-link","secondary-color":"purple",onClick:E[1]||(E[1]=X=>D("month"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.month),1)]),_:1})):e.createCommentVNode("",!0),o.placeholders.quarter?(e.openBlock(),e.createBlock(e.unref(E2),{key:2,variation:"black-link","secondary-color":"purple",onClick:E[2]||(E[2]=X=>D("quarter"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.quarter),1)]),_:1})):e.createCommentVNode("",!0),o.placeholders.year?(e.openBlock(),e.createBlock(e.unref(E2),{key:3,variation:"black-link","secondary-color":"purple",onClick:E[3]||(E[3]=X=>D("year"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.year),1)]),_:1})):e.createCommentVNode("",!0)],64))]),o.placeholders.confirm?(e.openBlock(),e.createBlock(e.unref(E2),{key:0,variation:"purple-outline",size:e.unref(t0).Xs,onClick:n2},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.confirm),1)]),_:1},8,["size"])):e.createCommentVNode("",!0)])]),key:"0"}:void 0,$.$slots.header?{name:"header",fn:e.withCtx(()=>[e.createElementVNode("div",null,[e.renderSlot($.$slots,"header")])]),key:"1"}:void 0,$.$slots.sidebar?{name:"sidebar",fn:e.withCtx(()=>[e.createElementVNode("div",null,[e.renderSlot($.$slots,"sidebar")])]),key:"2"}:void 0]),1040,["modelValue","type","range","multi-calendars","timezone","format","model-type","auto-apply","partial-flow","enable-time-picker","clearable","inline","locale","markers","loading","week-numbers","placeholder","editable","disabled","disabled-dates","allowed-dates","min-date","max-date","disabled-times"])],4)]),e.unref(a).errorText.value||n.helpText||$.$slots.bottom?(e.openBlock(),e.createElementBlock("div",Hl,[e.unref(a).errorText.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",color:"red",variation:e.unref(F2).Overline},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(a).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(a).errorText.value&&(n.helpText||$.$slots.bottom)?(e.openBlock(),e.createElementBlock("br",xl)):e.createCommentVNode("",!0),e.renderSlot($.$slots,"bottom",{},()=>[n.helpText?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",variation:e.unref(F2).Overline},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],2))}}),Bl=e.defineComponent({__name:"McDraggable",props:{variation:{type:String,default:"purple"},initial:{type:Object,default:()=>({x:0,y:0})},cardId:{type:[String,Number]},savePosition:{type:Boolean,default:!1},storageType:{type:String,default:"session"}},setup(o){const t=n5("McDraggable",{}),r=g8("McDraggable",{}),l=e.ref(null),n=_e(m=>{m()},100),a=o,i=e.computed(()=>a.cardId),c=e.computed(()=>a.storageType==="session"),s=e.computed(()=>a.storageType==="local"),u=e.computed(()=>{let m=a.initial.x||0,k=a.initial.y||0;if(a.savePosition&&!i.value&&console.warn("cardId prop required, if savePosition = true"),!i.value||!a.savePosition)return{x:m,y:k};if(c.value){const{x:M,y:v}=r.value[i.value]||{};m=M,k=v}if(s.value){const{x:M,y:v}=t.value[i.value]||{};m=M,k=v}return{x:m||0,y:k||0}}),{x:d,y:C,style:p}=k8(l,{initialValue:{x:u.value.x,y:u.value.y}}),h=e.computed(()=>({"--mc-draggable-color":v2[a.variation]})),f=()=>{i.value&&(c.value&&(r.value={...r.value,[i.value]:{x:d.value,y:C.value}}),s.value&&(t.value={...t.value,[i.value]:{x:d.value,y:C.value}}))};return e.watch(()=>p.value,()=>{a.savePosition&&n(f)}),(m,k)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"draggable_el",ref:l,class:"mc-draggable",style:e.normalizeStyle([e.unref(p),{position:"fixed"}])},[e.createElementVNode("div",{class:"mc-draggable__inner",style:e.normalizeStyle(h.value)},[e.createVNode(e.unref(_1),null,{left:e.withCtx(()=>[e.renderSlot(m.$slots,"left")]),top:e.withCtx(()=>[e.renderSlot(m.$slots,"top")]),bottom:e.withCtx(()=>[e.renderSlot(m.$slots,"bottom")]),right:e.withCtx(()=>[e.renderSlot(m.$slots,"right")]),_:3})],4)],4))}}),Sl=["dir"],Zl={key:0,class:"mc-field-text__header"},Dl={class:"mc-field-checkbox__input-wrap"},El={class:"mc-field-checkbox__name"},Tl={key:0,class:"mc-field-checkbox__name-text"},Al={class:"mc-field-checkbox__footer"},$l={key:1},Fl=e.defineComponent({__name:"McFieldCheckbox",props:{modelValue:{type:[Boolean,String,Number,Array],validator(o,t){return t.multiple?Array.isArray(o):!0}},name:{type:String,default:null},checkedValue:{type:[String,Boolean,Number],default:!0},uncheckedValue:{type:[String,Boolean,Number],default:!1},errors:{type:Array,default:null},helpText:{type:String,default:null},mainText:{type:String,default:null},title:{type:String,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},checkboxSize:{type:String,default:"250"},tabindex:{type:[String,Number]},dir:{type:String,default:g0.Ltr}},emits:["update:modelValue"],setup(o,{emit:t}){const r=t,l=e.useSlots(),n=o,a=Z0(n.errors),i=e.computed(()=>n.dir===g0.Rtl),c=e.computed(()=>({"mc-field-checkbox":!0,"mc-field-checkbox--error":n.errors,"mc-field-checkbox--disabled":n.disabled,"mc-field-checkbox--empty":!n.mainText&&!l.default,"mc-field-checkbox--rtl":i.value})),s=e.computed(()=>({"--mc-field-checkbox-size":z0[n.checkboxSize]})),u=e.computed(()=>n.multiple&&n.modelValue?n.modelValue.includes(n.checkedValue):n.modelValue===n.checkedValue),d=e.computed(()=>({disabled:n.disabled,name:n.name,checked:u.value,tabindex:n.tabindex,type:"checkbox",class:"mc-field-checkbox__input"})),C=p=>{a.toggleErrorVisible();const h=n.multiple&&n.modelValue?n.modelValue.includes(n.checkedValue)?n.modelValue.filter(f=>f!==n.checkedValue):[...n.modelValue,n.checkedValue]:p.target&&p.target.checked?n.checkedValue:n.uncheckedValue;r("update:modelValue",h)};return(p,h)=>(e.openBlock(),e.createElementBlock("div",{dir:n.dir,class:e.normalizeClass(c.value),style:e.normalizeStyle(s.value)},[n.title||p.$slots.header?(e.openBlock(),e.createElementBlock("div",Zl,[e.renderSlot(p.$slots,"header",{},()=>[e.createVNode(e.unref(g2),{weight:e.unref(J2).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.title),1)]),_:1},8,["weight"])])])):e.createCommentVNode("",!0),e.createElementVNode("div",Dl,[e.createElementVNode("label",El,[e.createVNode(e.unref(V2),{class:"mc-field-checkbox__icon",name:u.value?"checkbox--checked":"checkbox",color:u.value?"purple":"gray",size:n.checkboxSize},null,8,["name","color","size"]),e.createElementVNode("input",e.mergeProps(d.value,{onChange:C}),null,16),n.mainText||p.$slots.default?(e.openBlock(),e.createElementBlock("span",Tl,[e.renderSlot(p.$slots,"default",{},()=>[e.createVNode(e.unref(g2),{"tag-name":"div"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.mainText),1)]),_:1})])])):e.createCommentVNode("",!0)]),e.createElementVNode("div",Al,[e.unref(a).errorText.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",color:"red",variation:e.unref(F2).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(a).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(a).errorText.value?(e.openBlock(),e.createElementBlock("br",$l)):e.createCommentVNode("",!0),e.renderSlot(p.$slots,"footer",{},()=>[n.helpText?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",variation:e.unref(F2).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])])],14,Sl))}}),zl=["dir"],Nl={class:"mc-field-radio-button__icon_wrapper"},Ol={key:0,class:"mc-field-radio-button__text"},Pl={key:1},O6=e.defineComponent({__name:"McFieldRadio",props:{modelValue:{default:null},value:{default:null},name:{type:String,required:!0},label:{type:[String,Number],default:null},helpText:{type:String,default:null},errors:{type:Array,default:null},disabled:{type:Boolean,default:!1},tabindex:{type:[String,Number]},variation:{type:String,default:"circle"},color:{type:String,default:"purple"},iconSize:{type:String,default:"250"},dir:{type:String,default:g0.Ltr}},emits:["update:modelValue"],setup(o,{emit:t}){const r=e.useSlots(),l=t,n=o,a=Z0(n.errors),i=e.computed(()=>({"mc-field-radio-button--disabled":n.disabled,"mc-field-radio-button--empty":!n.label&&!r.default,"mc-field-radio-button--rtl":c.value})),c=e.computed(()=>n.dir===g0.Rtl),s=e.computed(()=>{switch(n.variation){case"checkmark":return"check_circle_solid";default:return"radio--checked"}}),u=e.computed(()=>{switch(!0){case n.disabled:return"outline-gray";case d.value.checked:return n.color;default:return"gray"}}),d=e.computed(()=>({disabled:n.disabled,value:n.modelValue,name:n.name,checked:n.value&&n.value===n.modelValue,tabindex:n.tabindex,class:"mc-field-radio-button__input",type:"radio"}));e.watch(()=>n.modelValue,()=>{a.toggleErrorVisible()});const C=()=>{l("update:modelValue",n.value)};return(p,h)=>(e.openBlock(),e.createElementBlock("label",{dir:n.dir,class:e.normalizeClass(["mc-field-radio-button",i.value])},[e.createElementVNode("input",e.mergeProps({checked:""},d.value,{onChange:C}),null,16),e.createElementVNode("span",Nl,[e.createVNode(e.unref(V2),{name:d.value.checked?s.value:"circle",color:u.value,size:n.iconSize,class:"mc-field-radio-button__icon"},null,8,["name","color","size"])]),o.label||p.$slots.default?(e.openBlock(),e.createElementBlock("span",Ol,[e.renderSlot(p.$slots,"default",{},()=>[e.createVNode(e.unref(g2),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.label),1)]),_:1})]),e.unref(a).errorText.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",color:"red",variation:e.unref(F2).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(a).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(a).errorText.value?(e.openBlock(),e.createElementBlock("br",Pl)):e.createCommentVNode("",!0),e.renderSlot(p.$slots,"footer",{},()=>[n.helpText?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",variation:e.unref(F2).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],10,zl))}}),jl=["dir"],Rl={class:"mc-field-radio-group__header"},Il={class:"mc-field-radio-group__buttons"},Yl={key:0,class:"mc-field-radio-group__footer"},Ul={key:1},ql=e.defineComponent({__name:"McFieldRadioGroup",props:{modelValue:[String,Number],options:{type:[Array],default:()=>[]},title:{type:String,default:""},helpText:{type:String,default:""},errors:{type:Array,default:()=>[]},name:{type:String,required:!0},disabled:{type:Boolean,default:!1},radioClassName:{type:String,default:""},direction:{type:String,default:m3.Column},dir:{type:String,default:g0.Ltr},variation:{type:String,default:"circle"}},emits:["update:modelValue","change"],setup(o,{emit:t}){const r=t,l=o,n=Z0(l.errors),a=e.computed(()=>l.options.length?l.options.map((s,u)=>{const d=typeof s=="object"?s:{label:s,value:s};return{id:Date.now()+u,...d,disabled:l.disabled||d.disabled,value:d.value,modelValue:l.modelValue,class:l.radioClassName,dir:l.dir,variation:l.variation}}):[]),i=e.computed(()=>({[`mc-field-radio-group--direction-${l.direction}`]:!!l.direction})),c=s=>{n.toggleErrorVisible(),r("update:modelValue",s),r("change",s)};return(s,u)=>(e.openBlock(),e.createElementBlock("div",{dir:l.dir,class:e.normalizeClass(["mc-field-radio-group",i.value])},[e.createElementVNode("div",Rl,[e.renderSlot(s.$slots,"header",{},()=>[l.title?(e.openBlock(),e.createBlock(e.unref(g2),{key:0},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.title),1)]),_:1})):e.createCommentVNode("",!0)])]),e.createElementVNode("div",Il,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,d=>(e.openBlock(),e.createBlock(e.unref(O6),e.mergeProps({key:d.id,ref_for:!0},d,{name:l.name,"onUpdate:modelValue":c}),null,16,["name"]))),128))]),e.unref(n).errorText.value||l.helpText||s.$slots.footer?(e.openBlock(),e.createElementBlock("div",Yl,[e.unref(n).errorText.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",color:"red",variation:e.unref(F2).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(n).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(n).errorText.value?(e.openBlock(),e.createElementBlock("br",Ul)):e.createCommentVNode("",!0),e.renderSlot(s.$slots,"footer",{},()=>[l.helpText?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",variation:e.unref(F2).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],10,jl))}});(function(){try{if(typeof document<"u"){var o=document.createElement("style");o.appendChild(document.createTextNode('.vue-slider-dot{position:absolute;transition:all 0s;z-index:5}.vue-slider-dot:focus{outline:none}.vue-slider-dot-tooltip{position:absolute;visibility:hidden}.vue-slider-dot-hover:hover .vue-slider-dot-tooltip,.vue-slider-dot-tooltip-show{visibility:visible}.vue-slider-dot-tooltip-top{top:-10px;left:50%;transform:translate(-50%,-100%)}.vue-slider-dot-tooltip-bottom{bottom:-10px;left:50%;transform:translate(-50%,100%)}.vue-slider-dot-tooltip-left{left:-10px;top:50%;transform:translate(-100%,-50%)}.vue-slider-dot-tooltip-right{right:-10px;top:50%;transform:translate(100%,-50%)}.vue-slider-marks{position:relative;width:100%;height:100%}.vue-slider-mark{position:absolute;z-index:1}.vue-slider-ltr .vue-slider-mark,.vue-slider-rtl .vue-slider-mark{width:0;height:100%;top:50%}.vue-slider-ltr .vue-slider-mark-step,.vue-slider-rtl .vue-slider-mark-step{top:0}.vue-slider-ltr .vue-slider-mark-label,.vue-slider-rtl .vue-slider-mark-label{top:100%;margin-top:10px}.vue-slider-ltr .vue-slider-mark{transform:translate(-50%,-50%)}.vue-slider-ltr .vue-slider-mark-step{left:0}.vue-slider-ltr .vue-slider-mark-label{left:50%;transform:translate(-50%)}.vue-slider-rtl .vue-slider-mark{transform:translate(50%,-50%)}.vue-slider-rtl .vue-slider-mark-step{right:0}.vue-slider-rtl .vue-slider-mark-label{right:50%;transform:translate(50%)}.vue-slider-ttb .vue-slider-mark,.vue-slider-btt .vue-slider-mark{width:100%;height:0;left:50%}.vue-slider-ttb .vue-slider-mark-step,.vue-slider-btt .vue-slider-mark-step{left:0}.vue-slider-ttb .vue-slider-mark-label,.vue-slider-btt .vue-slider-mark-label{left:100%;margin-left:10px}.vue-slider-btt .vue-slider-mark{transform:translate(-50%,50%)}.vue-slider-btt .vue-slider-mark-step{top:0}.vue-slider-btt .vue-slider-mark-label{top:50%;transform:translateY(-50%)}.vue-slider-ttb .vue-slider-mark{transform:translate(-50%,-50%)}.vue-slider-ttb .vue-slider-mark-step{bottom:0}.vue-slider-ttb .vue-slider-mark-label{bottom:50%;transform:translateY(50%)}.vue-slider-mark-step,.vue-slider-mark-label{position:absolute}.vue-slider-disabled{opacity:.5;cursor:not-allowed}.vue-slider-rail{background-color:#ccc;border-radius:15px}.vue-slider-process{background-color:#3498db;border-radius:15px}.vue-slider-mark{z-index:4}.vue-slider-mark:first-child .vue-slider-mark-step,.vue-slider-mark:last-child .vue-slider-mark-step{display:none}.vue-slider-mark-step{width:100%;height:100%;border-radius:50%;background-color:#00000029}.vue-slider-mark-label{font-size:14px;white-space:nowrap}.vue-slider-dot-handle{cursor:pointer;width:100%;height:100%;border-radius:50%;background-color:#fff;box-sizing:border-box;box-shadow:.5px .5px 2px 1px #00000052}.vue-slider-dot-handle-focus{box-shadow:0 0 1px 2px #3498db5c}.vue-slider-dot-handle-disabled{cursor:not-allowed;background-color:#ccc}.vue-slider-dot-tooltip-inner{font-size:14px;white-space:nowrap;padding:2px 5px;min-width:20px;text-align:center;color:#fff;border-radius:5px;border-color:#3498db;background-color:#3498db;box-sizing:content-box}.vue-slider-dot-tooltip-inner:after{content:"";position:absolute}.vue-slider-dot-tooltip-inner-top:after{top:100%;left:50%;transform:translate(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-top-color:inherit}.vue-slider-dot-tooltip-inner-bottom:after{bottom:100%;left:50%;transform:translate(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-bottom-color:inherit}.vue-slider-dot-tooltip-inner-left:after{left:100%;top:50%;transform:translateY(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-left-color:inherit}.vue-slider-dot-tooltip-inner-right:after{right:100%;top:50%;transform:translateY(-50%);height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-right-color:inherit}.vue-slider-dot-tooltip-wrapper{opacity:0;transition:all .3s}.vue-slider-dot-tooltip-wrapper-show{opacity:1}.vue-slider{position:relative;box-sizing:content-box;-webkit-user-select:none;user-select:none;display:block;-webkit-tap-highlight-color:rgba(0,0,0,0)}.vue-slider-rail{position:relative;width:100%;height:100%;transition-property:width,height,left,right,top,bottom}.vue-slider-process{position:absolute;z-index:1}')),document.head.appendChild(o)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();var Wl=Object.defineProperty,Gl=(o,t,r)=>t in o?Wl(o,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):o[t]=r,G2=(o,t,r)=>(Gl(o,typeof t!="symbol"?t+"":t,r),r);const L9=(o,t)=>{const r=o.__vccOpts||o;for(const[l,n]of t)r[l]=n;return r},Kl={emits:["drag-start"],props:{value:{type:[Number,String],default:0},tooltip:{type:String,required:!0},dotStyle:{type:Array,default:()=>({})},tooltipStyle:{type:Array,default:()=>({})},tooltipPlacement:{type:String,required:!0},tooltipFormatter:{type:[String,Array,Object,Function],default:void 0},focus:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},computed:{dotClasses(){return["vue-slider-dot",{"vue-slider-dot-hover":this.tooltip==="hover"||this.tooltip==="active","vue-slider-dot-disabled":this.disabled,"vue-slider-dot-focus":this.focus}]},handleClasses(){return["vue-slider-dot-handle",{"vue-slider-dot-handle-disabled":this.disabled,"vue-slider-dot-handle-focus":this.focus}]},tooltipClasses(){return["vue-slider-dot-tooltip",[`vue-slider-dot-tooltip-${this.tooltipPlacement}`],{"vue-slider-dot-tooltip-show":this.showTooltip}]},tooltipInnerClasses(){return["vue-slider-dot-tooltip-inner",[`vue-slider-dot-tooltip-inner-${this.tooltipPlacement}`],{"vue-slider-dot-tooltip-inner-disabled":this.disabled,"vue-slider-dot-tooltip-inner-focus":this.focus}]},showTooltip(){switch(this.tooltip){case"always":return!0;case"none":return!1;case"focus":case"active":return!!this.focus;default:return!1}},tooltipValue(){return this.tooltipFormatter?typeof this.tooltipFormatter=="string"?this.tooltipFormatter.replace(/\{value\}/,String(this.value)):this.tooltipFormatter(this.value):this.value}},methods:{dragStart(o){if(this.disabled)return!1;this.$emit("drag-start")}}},Ql=["aria-valuetext"],Xl={class:"vue-slider-dot-tooltip-text"};function Jl(o,t,r,l,n,a){return e.openBlock(),e.createElementBlock("div",{ref:"dot",class:e.normalizeClass(a.dotClasses),"aria-valuetext":a.tooltipValue,onMousedown:t[0]||(t[0]=(...i)=>a.dragStart&&a.dragStart(...i)),onTouchstartPassive:t[1]||(t[1]=(...i)=>a.dragStart&&a.dragStart(...i))},[e.renderSlot(o.$slots,"dot",{},()=>[e.createElementVNode("div",{class:e.normalizeClass(a.handleClasses),style:e.normalizeStyle(r.dotStyle)},null,6)]),r.tooltip!=="none"?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(a.tooltipClasses)},[e.renderSlot(o.$slots,"tooltip",{},()=>[e.createElementVNode("div",{class:e.normalizeClass(a.tooltipInnerClasses),style:e.normalizeStyle(r.tooltipStyle)},[e.createElementVNode("span",Xl,e.toDisplayString(a.tooltipValue),1)],6)])],2)):e.createCommentVNode("",!0)],42,Ql)}const P6=L9(Kl,[["render",Jl]]),en={props:{mark:{type:Object,required:!0},hideLabel:{type:Boolean,default:!1},stepStyle:{type:Object,default:void 0},stepActiveStyle:{type:Object,default:void 0},labelStyle:{type:Object,default:void 0},labelActiveStyle:{type:Object,default:void 0}},computed:{marksClasses(){return["vue-slider-mark",{"vue-slider-mark-active":this.mark.active}]},stepClasses(){return["vue-slider-mark-step",{"vue-slider-mark-step-active":this.mark.active}]},labelClasses(){return["vue-slider-mark-label",{"vue-slider-mark-label-active":this.mark.active}]}},methods:{labelClickHandle(o){o.stopPropagation(),this.$emit("pressLabel",this.mark.pos)}}};function tn(o,t,r,l,n,a){return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(a.marksClasses)},[e.renderSlot(o.$slots,"step",{},()=>[e.createElementVNode("div",{class:e.normalizeClass(a.stepClasses),style:e.normalizeStyle([r.stepStyle,r.mark.style,r.mark.active?r.stepActiveStyle:null,r.mark.active?r.mark.activeStyle:null])},null,6)]),r.hideLabel?e.createCommentVNode("",!0):e.renderSlot(o.$slots,"label",{key:0},()=>[e.createElementVNode("div",{class:e.normalizeClass(a.labelClasses),style:e.normalizeStyle([r.labelStyle,r.mark.labelStyle,r.mark.active?r.labelActiveStyle:null,r.mark.active?r.mark.labelActiveStyle:null]),onClick:t[0]||(t[0]=(...i)=>a.labelClickHandle&&a.labelClickHandle(...i))},e.toDisplayString(r.mark.label),7)])],2)}const j6=L9(en,[["render",tn]]),pe=o=>typeof o=="number"?`${o}px`:o,on=o=>{const t=document.documentElement,r=document.body,l=o.getBoundingClientRect();return{y:l.top+(window.pageYOffset||t.scrollTop)-(t.clientTop||r.clientTop||0),x:l.left+(window.pageXOffset||t.scrollLeft)-(t.clientLeft||r.clientLeft||0)}},rn=(o,t,r)=>{const l="targetTouches"in o?o.targetTouches[0]:o,n=on(t),a={x:l.pageX-n.x,y:l.pageY-n.y};return{x:r?t.offsetWidth-a.x:a.x,y:r?t.offsetHeight-a.y:a.y}},ln=(o,t)=>{if(t.hook){const r=t.hook(o);if(typeof r=="function")return r;if(!r)return null}switch(o.keyCode){case 38:return r=>t.direction==="ttb"?r-1:r+1;case 39:return r=>t.direction==="rtl"?r-1:r+1;case 40:return r=>t.direction==="ttb"?r+1:r-1;case 37:return r=>t.direction==="rtl"?r+1:r-1;case 35:return()=>t.max;case 36:return()=>t.min;case 33:return r=>r+10;case 34:return r=>r-10;default:return null}};class I0{constructor(t){G2(this,"num"),this.num=t}decimal(t,r){const l=this.num,n=this.getDecimalLen(l),a=this.getDecimalLen(t);let i=0;switch(r){case"+":i=this.getExponent(n,a),this.num=(this.safeRoundUp(l,i)+this.safeRoundUp(t,i))/i;break;case"-":i=this.getExponent(n,a),this.num=(this.safeRoundUp(l,i)-this.safeRoundUp(t,i))/i;break;case"*":this.num=this.safeRoundUp(this.safeRoundUp(l,this.getExponent(n)),this.safeRoundUp(t,this.getExponent(a)))/this.getExponent(n+a);break;case"/":i=this.getExponent(n,a),this.num=this.safeRoundUp(l,i)/this.safeRoundUp(t,i);break;case"%":i=this.getExponent(n,a),this.num=this.safeRoundUp(l,i)%this.safeRoundUp(t,i)/i;break}return this}plus(t){return this.decimal(t,"+")}minus(t){return this.decimal(t,"-")}multiply(t){return this.decimal(t,"*")}divide(t){return this.decimal(t,"/")}remainder(t){return this.decimal(t,"%")}toNumber(){return this.num}getDecimalLen(t){const r=`${t}`.split("e");return(`${r[0]}`.split(".")[1]||"").length-(r[1]?+r[1]:0)}getExponent(t,r){return Math.pow(10,r!==void 0?Math.max(t,r):t)}safeRoundUp(t,r){return Math.round(t*r)}}const nn={1:'The type of the "value" is illegal',2:'The prop "interval" is invalid, "(max - min)" must be divisible by "interval"',3:'The "value" must be greater than or equal to the "min".',4:'The "value" must be less than or equal to the "max".',5:'When "order" is false, the parameters "minRange", "maxRange", "fixed", "enabled" are invalid.'};class an{constructor(t){G2(this,"dotsPos",[]),G2(this,"dotsValue",[]),G2(this,"data"),G2(this,"enableCross"),G2(this,"fixed"),G2(this,"max"),G2(this,"min"),G2(this,"interval"),G2(this,"minRange"),G2(this,"maxRange"),G2(this,"order"),G2(this,"marks"),G2(this,"included"),G2(this,"process"),G2(this,"adsorb"),G2(this,"dotOptions"),G2(this,"onError"),G2(this,"cacheRangeDir",{}),this.data=t.data,this.max=t.max,this.min=t.min,this.interval=t.interval,this.order=t.order,this.marks=t.marks,this.included=t.included,this.process=t.process,this.adsorb=t.adsorb,this.dotOptions=t.dotOptions,this.onError=t.onError,this.order?(this.minRange=t.minRange||0,this.maxRange=t.maxRange||0,this.enableCross=t.enableCross,this.fixed=t.fixed):((t.minRange||t.maxRange||!t.enableCross||t.fixed)&&this.emitError(5),this.minRange=0,this.maxRange=0,this.enableCross=!0,this.fixed=!1),this.setValue(t.value)}setValue(t){this.setDotsValue(Array.isArray(t)?this.order?[...t].sort((r,l)=>this.getIndexByValue(r)-this.getIndexByValue(l)):[...t]:[t],!0)}setDotsValue(t,r){this.dotsValue=t,r&&this.syncDotsPos()}setDotsPos(t){const r=this.order?[...t].sort((l,n)=>l-n):t;this.dotsPos=r,this.setDotsValue(r.map(l=>this.getValueByPos(l)),this.adsorb)}getValueByPos(t){let r=this.parsePos(t);if(this.included){let l=100;this.markList.forEach(n=>{const a=Math.abs(n.pos-t);a<l&&(l=a,r=n.value)})}return r}syncDotsPos(){this.dotsPos=this.dotsValue.map(t=>this.parseValue(t))}get markList(){if(!this.marks)return[];const t=(r,l)=>{const n=this.parseValue(r);return{pos:n,value:r,label:r,active:this.isActiveByPos(n),...l}};return this.marks===!0?this.getValues().map(r=>t(r)):Object.prototype.toString.call(this.marks)==="[object Object]"?Object.keys(this.marks).sort((r,l)=>+r-+l).map(r=>{const l=this.marks[r];return t(r,typeof l!="string"?l:{label:l})}):Array.isArray(this.marks)?this.marks.map(r=>t(r)):typeof this.marks=="function"?this.getValues().map(r=>({value:r,result:this.marks(r)})).filter(({result:r})=>!!r).map(({value:r,result:l})=>t(r,l)):[]}getRecentDot(t){const r=this.dotsPos.filter((l,n)=>!(this.getDotOption(n)&&this.getDotOption(n).disabled)).map(l=>Math.abs(l-t));return r.indexOf(Math.min(...r))}getIndexByValue(t){return this.data?this.data.indexOf(t):new I0(+t).minus(this.min).divide(this.interval).toNumber()}getValueByIndex(t){return t<0?t=0:t>this.total&&(t=this.total),this.data?this.data[t]:new I0(t).multiply(this.interval).plus(this.min).toNumber()}setDotPos(t,r){t=this.getValidPos(t,r).pos;const l=t-this.dotsPos[r];if(!l)return;let n=new Array(this.dotsPos.length);this.fixed?n=this.getFixedChangePosArr(l,r):this.minRange||this.maxRange?n=this.getLimitRangeChangePosArr(t,l,r):n[r]=l,this.setDotsPos(this.dotsPos.map((a,i)=>a+(n[i]||0)))}getFixedChangePosArr(t,r){return this.dotsPos.forEach((l,n)=>{if(n!==r){const{pos:a,inRange:i}=this.getValidPos(l+t,n);i||(t=Math.min(Math.abs(a-l),Math.abs(t))*(t<0?-1:1))}}),this.dotsPos.map(l=>t)}getLimitRangeChangePosArr(t,r,l){const n=[{index:l,changePos:r}],a=r;return[this.minRange,this.maxRange].forEach((i,c)=>{if(!i)return!1;const s=c===0,u=r>0;let d=0;s?d=u?1:-1:d=u?-1:1;const C=(m,k)=>{const M=Math.abs(m-k);return s?M<this.minRangeDir:M>this.maxRangeDir};let p=l+d,h=this.dotsPos[p],f=t;for(;this.isPos(h)&&C(h,f);){const{pos:m}=this.getValidPos(h+a,p);n.push({index:p,changePos:m-h}),p=p+d,f=m,h=this.dotsPos[p]}}),this.dotsPos.map((i,c)=>{const s=n.filter(u=>u.index===c);return s.length?s[0].changePos:0})}isPos(t){return typeof t=="number"}getValidPos(t,r){const l=this.valuePosRange[r];let n=!0;return t<l[0]?(t=l[0],n=!1):t>l[1]&&(t=l[1],n=!1),{pos:t,inRange:n}}parseValue(t){if(this.data)t=this.data.indexOf(t);else if(typeof t=="number"||typeof t=="string"){if(t=+t,t<this.min)return this.emitError(3),0;if(t>this.max)return this.emitError(4),0;if(typeof t!="number"||t!==t)return this.emitError(1),0;t=new I0(t).minus(this.min).divide(this.interval).toNumber()}const r=new I0(t).multiply(this.gap).toNumber();return r<0?0:r>100?100:r}parsePos(t){const r=Math.round(t/this.gap);return this.getValueByIndex(r)}isActiveByPos(t){return this.processArray.some(([r,l])=>t>=r&&t<=l)}getValues(){if(this.data)return this.data;{const t=[];for(let r=0;r<=this.total;r++)t.push(new I0(r).multiply(this.interval).plus(this.min).toNumber());return t}}getRangeDir(t){return t?new I0(t).divide(new I0(this.data?this.data.length-1:this.max).minus(this.data?0:this.min).toNumber()).multiply(100).toNumber():100}emitError(t){this.onError&&this.onError(t,nn[t])}get processArray(){if(this.process){if(typeof this.process=="function")return this.process(this.dotsPos);if(this.dotsPos.length===1)return[[0,this.dotsPos[0]]];if(this.dotsPos.length>1)return[[Math.min(...this.dotsPos),Math.max(...this.dotsPos)]]}return[]}get total(){let t=0;return this.data?t=this.data.length-1:t=new I0(this.max).minus(this.min).divide(this.interval).toNumber(),t-Math.floor(t)!==0?(this.emitError(2),0):t}get gap(){return 100/this.total}get minRangeDir(){return this.cacheRangeDir[this.minRange]?this.cacheRangeDir[this.minRange]:this.cacheRangeDir[this.minRange]=this.getRangeDir(this.minRange)}get maxRangeDir(){return this.cacheRangeDir[this.maxRange]?this.cacheRangeDir[this.maxRange]:this.cacheRangeDir[this.maxRange]=this.getRangeDir(this.maxRange)}getDotOption(t){return Array.isArray(this.dotOptions)?this.dotOptions[t]:this.dotOptions}getDotRange(t,r,l){if(!this.dotOptions)return l;const n=this.getDotOption(t);return n&&n[r]!==void 0?this.parseValue(n[r]):l}get valuePosRange(){const t=this.dotsPos,r=[];return t.forEach((l,n)=>{r.push([Math.max(this.minRange?this.minRangeDir*n:0,this.enableCross?0:t[n-1]||0,this.getDotRange(n,"min",0)),Math.min(this.minRange?100-this.minRangeDir*(t.length-1-n):100,this.enableCross?100:t[n+1]||100,this.getDotRange(n,"max",100))])}),r}get dotsIndex(){return this.dotsValue.map(t=>this.getIndexByValue(t))}}class sn{constructor(t){G2(this,"map"),G2(this,"states",0),this.map=t}add(t){this.states|=t}delete(t){this.states&=~t}toggle(t){this.has(t)?this.delete(t):this.add(t)}has(t){return!!(this.states&t)}}const M9=4,e0={None:0,Drag:2,Focus:4},cn={emits:["update:modelValue","change","drag-start","drag-end","dragging","error"],components:{VueSliderDot:P6,VueSliderMark:j6},props:{modelValue:{type:[Number,String,Array],default:0},silent:{type:Boolean,default:!1},direction:{type:String,default:"ltr",validator:o=>["ltr","rtl","ttb","btt"].indexOf(o)>-1},width:{type:[Number,String],default:void 0},height:{type:[Number,String],default:void 0},dotSize:{type:[Array,Number],default:14},contained:{type:Boolean,default:!1},min:{type:Number,default:0},max:{type:Number,default:100},interval:{type:Number,default:1},disabled:{type:Boolean,default:!1},clickable:{type:Boolean,default:!0},dragOnClick:{type:Boolean,default:!0},duration:{type:Number,default:.5},data:{type:[Object,Array],default:void 0},dataValue:{type:String,default:"value"},dataLabel:{type:String,default:"label"},lazy:{type:Boolean,default:!1},tooltip:{type:String,default:"active",validator:o=>["none","always","focus","hover","active"].indexOf(o)>-1},tooltipPlacement:{type:[String,Array],default:void 0,validator:o=>(Array.isArray(o)?o:[o]).every(t=>["top","right","bottom","left"].indexOf(t)>-1)},tooltipFormatter:{type:[String,Array,Function],default:""},useKeyboard:{type:Boolean,default:!0},keydownHook:{type:[Boolean,Function],default:void 0},enableCross:{type:Boolean,default:!0},fixed:{type:Boolean,default:!1},order:{type:Boolean,default:!0},minRange:{type:Number,default:void 0},maxRange:{type:Number,default:void 0},marks:{type:[Boolean,Object,Array,Function],default:!1},process:{type:[Boolean,Function],default:!0},zoom:{type:[Number],default:void 0},included:{type:[Boolean],default:!1},adsorb:{type:[Boolean],default:!1},hideLabel:{type:[Boolean],default:!1},dotOptions:{type:Object,default:void 0},dotAttrs:{type:Object,default:void 0},railStyle:{type:Object,default:null},processStyle:{type:Object,default:null},dotStyle:{type:Object,default:null},tooltipStyle:{type:Object,default:null},stepStyle:{type:Object,default:null},stepActiveStyle:{type:Object,default:null},labelStyle:{type:Object,default:null},labelActiveStyle:{type:Object,default:null}},data(){return{control:null,states:new sn(e0),scale:1,focusDotIndex:0}},computed:{tailSize(){return pe((this.isHorizontal?this.height:this.width)||M9)},containerClasses(){return["vue-slider",[`vue-slider-${this.direction}`],{"vue-slider-disabled":this.disabled}]},containerStyles(){const[o,t]=Array.isArray(this.dotSize)?this.dotSize:[this.dotSize,this.dotSize],r=this.width?pe(this.width):this.isHorizontal?"auto":pe(M9),l=this.height?pe(this.height):this.isHorizontal?pe(M9):"auto";return{padding:this.contained?`${t/2}px ${o/2}px`:this.isHorizontal?`${t/2}px 0`:`0 ${o/2}px`,width:r,height:l}},processArray(){return this.control.processArray.map(([o,t,r],l)=>{o>t&&([o,t]=[t,o]);const n=this.isHorizontal?"width":"height";return{start:o,end:t,index:l,style:{[this.isHorizontal?"height":"width"]:"100%",[this.isHorizontal?"top":"left"]:0,[this.mainDirection]:`${o}%`,[n]:`${t-o}%`,transitionProperty:`${n},${this.mainDirection}`,transitionDuration:`${this.animateTime}s`,...this.processStyle,...r}}})},dotBaseStyle(){const[o,t]=Array.isArray(this.dotSize)?this.dotSize:[this.dotSize,this.dotSize];let r;return this.isHorizontal?r={transform:`translate(${this.isReverse?"50%":"-50%"}, -50%)`,"-WebkitTransform":`translate(${this.isReverse?"50%":"-50%"}, -50%)`,top:"50%",[this.direction==="ltr"?"left":"right"]:"0"}:r={transform:`translate(-50%, ${this.isReverse?"50%":"-50%"})`,"-WebkitTransform":`translate(-50%, ${this.isReverse?"50%":"-50%"})`,left:"50%",[this.direction==="btt"?"bottom":"top"]:"0"},{width:`${o}px`,height:`${t}px`,...r}},mainDirection(){switch(this.direction){case"ltr":return"left";case"rtl":return"right";case"btt":return"bottom";case"ttb":return"top"}},isHorizontal(){return this.direction==="ltr"||this.direction==="rtl"},isReverse(){return this.direction==="rtl"||this.direction==="btt"},tooltipDirections(){const o=this.tooltipPlacement||(this.isHorizontal?"top":"left");return Array.isArray(o)?o:this.dots.map(()=>o)},dots(){return this.control.dotsPos.map((o,t)=>({pos:o,index:t,value:this.control.dotsValue[t],focus:this.states.has(e0.Focus)&&this.focusDotIndex===t,disabled:this.disabled,style:this.dotStyle,...(Array.isArray(this.dotOptions)?this.dotOptions[t]:this.dotOptions)||{}}))},animateTime(){return this.states.has(e0.Drag)?0:this.duration},canSort(){return this.order&&!this.minRange&&!this.maxRange&&!this.fixed&&this.enableCross},sliderData(){return this.isObjectArrayData(this.data)?this.data.map(o=>o[this.dataValue]):this.isObjectData(this.data)?Object.keys(this.data):this.data},sliderMarks(){if(this.marks)return this.marks;if(this.isObjectArrayData(this.data))return o=>{const t={label:o};return this.data.some(r=>r[this.dataValue]===o?(t.label=r[this.dataLabel],!0):!1),t};if(this.isObjectData(this.data))return this.data},sliderTooltipFormatter(){if(this.tooltipFormatter)return this.tooltipFormatter;if(this.isObjectArrayData(this.data))return o=>{let t=""+o;return this.data.some(r=>r[this.dataValue]===o?(t=r[this.dataLabel],!0):!1),t};if(this.isObjectData(this.data)){const o=this.data;return t=>o[t]}},isNotSync(){const o=this.control.dotsValue;return Array.isArray(this.modelValue)?this.modelValue.length!==o.length||this.modelValue.some((t,r)=>t!==o[r]):this.modelValue!==o[0]},dragRange(){const o=this.dots[this.focusDotIndex-1],t=this.dots[this.focusDotIndex+1];return[o?o.pos:-1/0,t?t.pos:1/0]}},created(){this.initControl()},mounted(){this.bindEvent()},beforeUnmount(){this.unbindEvent()},methods:{isObjectData(o){return!!o&&Object.prototype.toString.call(o)==="[object Object]"},isObjectArrayData(o){return!!o&&Array.isArray(o)&&o.length>0&&typeof o[0]=="object"},bindEvent(){document.addEventListener("touchmove",this.dragMove,{passive:!1}),document.addEventListener("touchend",this.dragEnd,{passive:!1}),document.addEventListener("mousedown",this.blurHandle),document.addEventListener("mousemove",this.dragMove,{passive:!1}),document.addEventListener("mouseup",this.dragEnd),document.addEventListener("mouseleave",this.dragEnd),document.addEventListener("keydown",this.keydownHandle)},unbindEvent(){document.removeEventListener("touchmove",this.dragMove),document.removeEventListener("touchend",this.dragEnd),document.removeEventListener("mousedown",this.blurHandle),document.removeEventListener("mousemove",this.dragMove),document.removeEventListener("mouseup",this.dragEnd),document.removeEventListener("mouseleave",this.dragEnd),document.removeEventListener("keydown",this.keydownHandle)},setScale(){const o=new I0(Math.floor(this.isHorizontal?this.$refs.rail.offsetWidth:this.$refs.rail.offsetHeight));this.zoom!==void 0&&o.multiply(this.zoom),o.divide(100),this.scale=o.toNumber()},initControl(){this.control=new an({value:this.modelValue,data:this.sliderData,enableCross:this.enableCross,fixed:this.fixed,max:this.max,min:this.min,interval:this.interval,minRange:this.minRange,maxRange:this.maxRange,order:this.order,marks:this.sliderMarks,included:this.included,process:this.process,adsorb:this.adsorb,dotOptions:this.dotOptions,onError:this.emitError}),this.syncValueByPos(),["data","enableCross","fixed","max","min","interval","minRange","maxRange","order","marks","process","adsorb","included","dotOptions"].forEach(o=>{this.$watch(o,t=>{if(o==="data"&&Array.isArray(this.control.data)&&Array.isArray(t)&&this.control.data.length===t.length&&t.every((r,l)=>r===this.control.data[l]))return!1;switch(o){case"data":case"dataLabel":case"dataValue":this.control.data=this.sliderData;break;case"mark":this.control.marks=this.sliderMarks;break;default:this.control[o]=t}["data","max","min","interval"].indexOf(o)>-1&&this.control.syncDotsPos()})})},syncValueByPos(){const o=this.control.dotsValue;if(this.isDiff(o,Array.isArray(this.modelValue)?this.modelValue:[this.modelValue])){const t=o.length===1?o[0]:[...o];this.$emit("change",t,this.focusDotIndex),this.$emit("update:modelValue",t,this.focusDotIndex)}},isDiff(o,t){return o.length!==t.length||o.some((r,l)=>r!==t[l])},emitError(o,t){this.silent||console.error(`[VueSlider error]: ${t}`),this.$emit("error",o,t)},dragStartOnProcess(o){if(this.dragOnClick){this.setScale();const t=this.getPosByEvent(o),r=this.control.getRecentDot(t);if(this.dots[r].disabled)return;this.dragStart(r),this.control.setDotPos(t,this.focusDotIndex),this.lazy||this.syncValueByPos()}},dragStart(o){this.focusDotIndex=o,this.setScale(),this.states.add(e0.Drag),this.states.add(e0.Focus),this.$emit("drag-start",this.focusDotIndex)},dragMove(o){if(!this.states.has(e0.Drag))return!1;o.preventDefault();const t=this.getPosByEvent(o);this.isCrossDot(t),this.control.setDotPos(t,this.focusDotIndex),this.lazy||this.syncValueByPos();const r=this.control.dotsValue;this.$emit("dragging",r.length===1?r[0]:[...r],this.focusDotIndex)},isCrossDot(o){if(this.canSort){const t=this.focusDotIndex;let r=o;if(r>this.dragRange[1]?(r=this.dragRange[1],this.focusDotIndex++):r<this.dragRange[0]&&(r=this.dragRange[0],this.focusDotIndex--),t!==this.focusDotIndex){const l=this.$refs[`dot-${this.focusDotIndex}`];l&&l.$el&&l.$el.focus(),this.control.setDotPos(r,t)}}},dragEnd(o){if(!this.states.has(e0.Drag))return!1;setTimeout(()=>{this.lazy&&this.syncValueByPos(),this.included&&this.isNotSync?this.control.setValue(this.modelValue):this.control.syncDotsPos(),this.states.delete(e0.Drag),(!this.useKeyboard||"targetTouches"in o)&&this.states.delete(e0.Focus),this.$emit("drag-end",this.focusDotIndex)})},blurHandle(o){if(!this.states.has(e0.Focus)||!this.$refs.container||this.$refs.container.contains(o.target))return!1;this.states.delete(e0.Focus)},clickHandle(o){if(!this.clickable||this.disabled)return!1;if(this.states.has(e0.Drag))return;this.setScale();const t=this.getPosByEvent(o);this.setValueByPos(t)},focus(o=0){this.states.add(e0.Focus),this.focusDotIndex=o},blur(){this.states.delete(e0.Focus)},getValue(){const o=this.control.dotsValue;return o.length===1?o[0]:o},getIndex(){const o=this.control.dotsIndex;return o.length===1?o[0]:o},setValue(o){this.control.setValue(Array.isArray(o)?[...o]:[o]),this.syncValueByPos()},setIndex(o){const t=Array.isArray(o)?o.map(r=>this.control.getValueByIndex(r)):this.control.getValueByIndex(o);this.setValue(t)},setValueByPos(o){const t=this.control.getRecentDot(o);if(this.disabled||this.dots[t].disabled)return!1;this.focusDotIndex=t,this.control.setDotPos(o,t),this.syncValueByPos(),this.useKeyboard&&this.states.add(e0.Focus),setTimeout(()=>{this.included&&this.isNotSync?this.control.setValue(this.modelValue):this.control.syncDotsPos()})},keydownHandle(o){if(!this.useKeyboard||!this.states.has(e0.Focus))return!1;const t=this.included&&this.marks,r=ln(o,{direction:this.direction,max:t?this.control.markList.length-1:this.control.total,min:0,hook:this.keydownHook});if(r){o.preventDefault();let l=-1,n=0;t?(this.control.markList.some((a,i)=>a.value===this.control.dotsValue[this.focusDotIndex]?(l=r(i),!0):!1),l<0?l=0:l>this.control.markList.length-1&&(l=this.control.markList.length-1),n=this.control.markList[l].pos):(l=r(this.control.getIndexByValue(this.control.dotsValue[this.focusDotIndex])),n=this.control.parseValue(this.control.getValueByIndex(l))),this.isCrossDot(n),this.control.setDotPos(n,this.focusDotIndex),this.syncValueByPos()}},getPosByEvent(o){return rn(o,this.$refs.rail,this.isReverse)[this.isHorizontal?"x":"y"]/this.scale}},watch:{modelValue:{handler(){this.control&&!this.states.has(e0.Drag)&&this.isNotSync&&(this.control.setValue(this.modelValue),this.syncValueByPos())},deep:!0}}},dn={key:0,class:"vue-slider-marks"};function un(o,t,r,l,n,a){const i=e.resolveComponent("VueSliderMark"),c=e.resolveComponent("VueSliderDot");return e.openBlock(),e.createElementBlock("div",e.mergeProps({ref:"container",class:a.containerClasses,style:a.containerStyles,onClick:t[0]||(t[0]=(...s)=>a.clickHandle&&a.clickHandle(...s)),onTouchstartPassive:t[1]||(t[1]=(...s)=>a.dragStartOnProcess&&a.dragStartOnProcess(...s)),onMousedown:t[2]||(t[2]=(...s)=>a.dragStartOnProcess&&a.dragStartOnProcess(...s))},o.$attrs),[e.createElementVNode("div",{ref:"rail",class:"vue-slider-rail",style:e.normalizeStyle(r.railStyle)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.processArray,(s,u)=>e.renderSlot(o.$slots,"process",e.mergeProps({ref_for:!0},{...s}),()=>[(e.openBlock(),e.createElementBlock("div",{class:"vue-slider-process",key:`process-${u}`,style:e.normalizeStyle(s.style)},null,4))])),256)),a.sliderMarks?(e.openBlock(),e.createElementBlock("div",dn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.control.markList,(s,u)=>e.renderSlot(o.$slots,"mark",e.mergeProps({ref_for:!0},{...s}),()=>[(e.openBlock(),e.createBlock(i,{key:`mark-${u}`,mark:s,hideLabel:r.hideLabel,style:e.normalizeStyle({[a.isHorizontal?"height":"width"]:"100%",[a.isHorizontal?"width":"height"]:a.tailSize,[a.mainDirection]:`${s.pos}%`}),stepStyle:r.stepStyle,stepActiveStyle:r.stepActiveStyle,labelStyle:r.labelStyle,labelActiveStyle:r.labelActiveStyle,onPressLabel:d=>r.clickable&&a.setValueByPos(d)},{step:e.withCtx(()=>[e.renderSlot(o.$slots,"step",e.mergeProps({ref_for:!0},{...s}))]),label:e.withCtx(()=>[e.renderSlot(o.$slots,"label",e.mergeProps({ref_for:!0},{...s}))]),_:2},1032,["mark","hideLabel","style","stepStyle","stepActiveStyle","labelStyle","labelActiveStyle","onPressLabel"]))])),256))])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.dots,(s,u)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createVNode(c,e.mergeProps({ref_for:!0,ref:`dot-${u}`,value:s.value,disabled:s.disabled,focus:s.focus,"dot-style":[s.style,s.disabled?s.disabledStyle:null,s.focus?s.focusStyle:null],tooltip:s.tooltip||r.tooltip,"tooltip-style":[r.tooltipStyle,s.tooltipStyle,s.disabled?s.tooltipDisabledStyle:null,s.focus?s.tooltipFocusStyle:null],"tooltip-formatter":Array.isArray(a.sliderTooltipFormatter)?a.sliderTooltipFormatter[u]:a.sliderTooltipFormatter,"tooltip-placement":a.tooltipDirections[u],style:[a.dotBaseStyle,{[a.mainDirection]:`${s.pos}%`,transition:`${a.mainDirection} ${a.animateTime}s`}],"onDrag-start":()=>a.dragStart(u),role:"slider","aria-valuenow":s.value,"aria-valuemin":this.min,"aria-valuemax":this.max,"aria-orientation":this.isHorizontal?"horizontal":"vertical",tabindex:"0",nativeOnFocus:()=>!s.disabled&&a.focus(u),nativeOnBlur:()=>a.blur()},{...r.dotAttrs}),{dot:e.withCtx(()=>[e.renderSlot(o.$slots,"dot",e.mergeProps({ref_for:!0},{...s}))]),tooltip:e.withCtx(()=>[e.renderSlot(o.$slots,"tooltip",e.mergeProps({ref_for:!0},{...s}))]),_:2},1040,["value","disabled","focus","dot-style","tooltip","tooltip-style","tooltip-formatter","tooltip-placement","style","onDrag-start","aria-valuenow","aria-valuemin","aria-valuemax","aria-orientation","nativeOnFocus","nativeOnBlur"]),e.renderSlot(o.$slots,"default",e.mergeProps({ref_for:!0},{value:a.getValue()}))],64))),256))],4)],16)}const w9=L9(cn,[["render",un]]);w9.VueSliderMark=j6,w9.VueSliderDot=P6;const Cn={class:"mc-field-range__header"},pn={key:0},hn={key:1,class:"mc-field-range__footer"},mn=e.defineComponent({__name:"McFieldRange",props:{modelValue:{type:[Number,String,Array],required:!0},min:{type:[String,Number],default:0},max:{type:[String,Number],default:100},step:{type:[String,Number],default:1},title:{type:String,default:null},helpText:{type:String,default:null},color:{type:String,default:"purple"},lazy:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},tooltip:{type:String,default:"hover"},tooltipPlacement:{type:String,default:"top"},coloredTooltip:{type:Boolean,default:!1},smooth:{type:Boolean,default:!0},showLabels:{type:Boolean,default:!1},errors:{type:Array,default:()=>[]}},emits:["update:modelValue","dragging"],setup(o,{emit:t}){const r=t,l=o,n=Z0(l.errors),a=p=>Number(p)!==p?p:(""+p).replace(/\B(?=(\d{3})+(?!\d))/g," "),i=e.computed({get(){return l.modelValue},set(p){d(p)}}),c=e.computed(()=>({"mc-range-slider":!0,[`mc-range-slider--color-${l.color}`]:!!l.color,"mc-range-slider--colored-tooltip":l.coloredTooltip})),s=e.computed(()=>({"--mc-range-slider-color":v2[l.color]})),u=e.reactive({style:s.value,interval:+l.step,min:+l.min,max:+l.max,disabled:l.disabled,lazy:l.lazy,tooltip:l.tooltip,marks:l.showLabels,adsorb:!l.smooth,"tooltip-placement":l.tooltipPlacement,"tooltip-formatter":a,"dot-size":20}),d=p=>{r("update:modelValue",p)},C=p=>{r("dragging",p)};return(p,h)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(c.value)},[e.createElementVNode("div",Cn,[e.renderSlot(p.$slots,"header",{},()=>[l.title?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,weight:e.unref(J2).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.title),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])]),e.createVNode(e.unref(w9),e.mergeProps({modelValue:i.value,"onUpdate:modelValue":h[0]||(h[0]=f=>i.value=f)},u,{onChange:d,onDragging:C}),null,16,["modelValue"]),(e.unref(n).errorText.value||l.helpText||p.$slots.footer)&&l.showLabels?(e.openBlock(),e.createElementBlock("br",pn)):e.createCommentVNode("",!0),e.unref(n).errorText.value||l.helpText||p.$slots.footer?(e.openBlock(),e.createElementBlock("div",hn,[e.unref(n).errorText.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createVNode(e.unref(g2),{"tag-name":"div",color:"red",variation:e.unref(F2).Overline,class:"mc-field-range__error-text","html-data":e.unref(n).errorText.value},null,8,["variation","html-data"]),h[1]||(h[1]=e.createElementVNode("br",null,null,-1))],64)):e.createCommentVNode("",!0),e.renderSlot(p.$slots,"footer",{},()=>[l.helpText?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",variation:e.unref(F2).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],2))}});function V9(o){return o===0?!1:Array.isArray(o)&&o.length===0?!0:!o}function fn(o){return(...t)=>!o(...t)}function kn(o,t){return o===void 0&&(o="undefined"),o===null&&(o="null"),o===!1&&(o="false"),o.toString().toLowerCase().indexOf(t.trim())!==-1}function R6(o,t,r,l){return t?o.filter(n=>kn(l(n,r),t)).sort((n,a)=>l(n,r).length-l(a,r).length):o}function yn(o){return o.filter(t=>!t.$isLabel)}function _9(o,t){return r=>r.reduce((l,n)=>n[o]&&n[o].length?(l.push({$groupLabel:n[t],$isLabel:!0}),l.concat(n[o])):l,[])}function gn(o,t,r,l,n){return a=>a.map(i=>{if(!i[r])return console.warn("Options passed to vue-multiselect do not contain groups, despite the config."),[];const c=R6(i[r],o,t,n);return c.length?{[l]:i[l],[r]:c}:[]})}const I6=(...o)=>t=>o.reduce((r,l)=>l(r),t);var bn={data(){return{search:"",isOpen:!1,preferredOpenDirection:"below",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:"Select option"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default(o,t){return V9(o)?"":t?o[t]:o}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:"Press enter to create a tag"},tagPosition:{type:String,default:"top"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1},preventAutofocus:{type:Boolean,default:!1}},mounted(){!this.multiple&&this.max&&console.warn("[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false."),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue(){return this.modelValue||this.modelValue===0?Array.isArray(this.modelValue)?this.modelValue:[this.modelValue]:[]},filteredOptions(){const o=this.search||"",t=o.toLowerCase().trim();let r=this.options.concat();return this.internalSearch?r=this.groupValues?this.filterAndFlat(r,t,this.label):R6(r,t,this.label,this.customLabel):r=this.groupValues?_9(this.groupValues,this.groupLabel)(r):r,r=this.hideSelected?r.filter(fn(this.isSelected)):r,this.taggable&&t.length&&!this.isExistingOption(t)&&(this.tagPosition==="bottom"?r.push({isTag:!0,label:o}):r.unshift({isTag:!0,label:o})),r.slice(0,this.optionsLimit)},valueKeys(){return this.trackBy?this.internalValue.map(o=>o[this.trackBy]):this.internalValue},optionKeys(){return(this.groupValues?this.flatAndStrip(this.options):this.options).map(t=>this.customLabel(t,this.label).toString().toLowerCase())},currentOptionLabel(){return this.multiple?this.searchable?"":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?"":this.placeholder}},watch:{internalValue:{handler(){this.resetAfter&&this.internalValue.length&&(this.search="",this.$emit("update:modelValue",this.multiple?[]:null))},deep:!0},search(){this.$emit("search-change",this.search)}},emits:["open","search-change","close","select","update:modelValue","remove","tag"],methods:{getValue(){return this.multiple?this.internalValue:this.internalValue.length===0?null:this.internalValue[0]},filterAndFlat(o,t,r){return I6(gn(t,r,this.groupValues,this.groupLabel,this.customLabel),_9(this.groupValues,this.groupLabel))(o)},flatAndStrip(o){return I6(_9(this.groupValues,this.groupLabel),yn)(o)},updateSearch(o){this.search=o},isExistingOption(o){return this.options?this.optionKeys.indexOf(o)>-1:!1},isSelected(o){const t=this.trackBy?o[this.trackBy]:o;return this.valueKeys.indexOf(t)>-1},isOptionDisabled(o){return!!o.$isDisabled},getOptionLabel(o){if(V9(o))return"";if(o.isTag)return o.label;if(o.$isLabel)return o.$groupLabel;const t=this.customLabel(o,this.label);return V9(t)?"":t},select(o,t){if(o.$isLabel&&this.groupSelect){this.selectGroup(o);return}if(!(this.blockKeys.indexOf(t)!==-1||this.disabled||o.$isDisabled||o.$isLabel)&&!(this.max&&this.multiple&&this.internalValue.length===this.max)&&!(t==="Tab"&&!this.pointerDirty)){if(o.isTag)this.$emit("tag",o.label,this.id),this.search="",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(o)){t!=="Tab"&&this.removeElement(o);return}this.multiple?this.$emit("update:modelValue",this.internalValue.concat([o])):this.$emit("update:modelValue",o),this.$emit("select",o,this.id),this.clearOnSelect&&(this.search="")}this.closeOnSelect&&this.deactivate()}},selectGroup(o){const t=this.options.find(r=>r[this.groupLabel]===o.$groupLabel);if(t){if(this.wholeGroupSelected(t)){this.$emit("remove",t[this.groupValues],this.id);const r=this.trackBy?t[this.groupValues].map(n=>n[this.trackBy]):t[this.groupValues],l=this.internalValue.filter(n=>r.indexOf(this.trackBy?n[this.trackBy]:n)===-1);this.$emit("update:modelValue",l)}else{let r=t[this.groupValues].filter(l=>!(this.isOptionDisabled(l)||this.isSelected(l)));this.max&&r.splice(this.max-this.internalValue.length),this.$emit("select",r,this.id),this.$emit("update:modelValue",this.internalValue.concat(r))}this.closeOnSelect&&this.deactivate()}},wholeGroupSelected(o){return o[this.groupValues].every(t=>this.isSelected(t)||this.isOptionDisabled(t))},wholeGroupDisabled(o){return o[this.groupValues].every(this.isOptionDisabled)},removeElement(o,t=!0){if(this.disabled||o.$isDisabled)return;if(!this.allowEmpty&&this.internalValue.length<=1){this.deactivate();return}const r=typeof o=="object"?this.valueKeys.indexOf(o[this.trackBy]):this.valueKeys.indexOf(o);if(this.multiple){const l=this.internalValue.slice(0,r).concat(this.internalValue.slice(r+1));this.$emit("update:modelValue",l)}else this.$emit("update:modelValue",null);this.$emit("remove",o,this.id),this.closeOnSelect&&t&&this.deactivate()},removeLastElement(){this.blockKeys.indexOf("Delete")===-1&&this.search.length===0&&Array.isArray(this.internalValue)&&this.internalValue.length&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate(){this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&this.pointer===0&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=""),this.preventAutofocus||this.$nextTick(()=>this.$refs.search&&this.$refs.search.focus())):this.preventAutofocus||typeof this.$el<"u"&&this.$el.focus(),this.$emit("open",this.id))},deactivate(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search!==null&&typeof this.$refs.search<"u"&&this.$refs.search.blur():typeof this.$el<"u"&&this.$el.blur(),this.preserveSearch||(this.search=""),this.$emit("close",this.getValue(),this.id))},toggle(){this.isOpen?this.deactivate():this.activate()},adjustPosition(){if(typeof window>"u")return;const o=this.$el.getBoundingClientRect().top,t=window.innerHeight-this.$el.getBoundingClientRect().bottom;t>this.maxHeight||t>o||this.openDirection==="below"||this.openDirection==="bottom"?(this.preferredOpenDirection="below",this.optimizedHeight=Math.min(t-40,this.maxHeight)):(this.preferredOpenDirection="above",this.optimizedHeight=Math.min(o-40,this.maxHeight))}}},Ln={data(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition(){return this.pointer*this.optionHeight},visibleElements(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions(){this.pointerAdjust()},isOpen(){this.pointerDirty=!1},pointer(){this.$refs.search&&this.$refs.search.setAttribute("aria-activedescendant",this.id+"-"+this.pointer.toString())}},methods:{optionHighlight(o,t){return{"multiselect__option--highlight":o===this.pointer&&this.showPointer,"multiselect__option--selected":this.isSelected(t)}},groupHighlight(o,t){if(!this.groupSelect)return["multiselect__option--disabled",{"multiselect__option--group":t.$isLabel}];const r=this.options.find(l=>l[this.groupLabel]===t.$groupLabel);return r&&!this.wholeGroupDisabled(r)?["multiselect__option--group",{"multiselect__option--highlight":o===this.pointer&&this.showPointer},{"multiselect__option--group-selected":this.wholeGroupSelected(r)}]:"multiselect__option--disabled"},addPointerElement({key:o}="Enter"){this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],o),this.pointerReset()},pointerForward(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet(o){this.pointer=o,this.pointerDirty=!0}}},Y6={name:"vue-multiselect",mixins:[bn,Ln],compatConfig:{MODE:3,ATTR_ENUMERATED_COERCION:!1},props:{name:{type:String,default:""},modelValue:{type:null,default(){return[]}},selectLabel:{type:String,default:"Press enter to select"},selectGroupLabel:{type:String,default:"Press enter to select group"},selectedLabel:{type:String,default:"Selected"},deselectLabel:{type:String,default:"Press enter to remove"},deselectGroupLabel:{type:String,default:"Press enter to deselect group"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:o=>`and ${o} more`},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},spellcheck:{type:Boolean,default:!1},openDirection:{type:String,default:""},showNoOptions:{type:Boolean,default:!0},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0},required:{type:Boolean,default:!1}},computed:{hasOptionGroup(){return this.groupValues&&this.groupLabel&&this.groupSelect},isSingleLabelVisible(){return(this.singleValue||this.singleValue===0)&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible(){return!this.internalValue.length&&(!this.searchable||!this.isOpen)},visibleValues(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue(){return this.internalValue[0]},deselectLabelText(){return this.showLabels?this.deselectLabel:""},deselectGroupLabelText(){return this.showLabels?this.deselectGroupLabel:""},selectLabelText(){return this.showLabels?this.selectLabel:""},selectGroupLabelText(){return this.showLabels?this.selectGroupLabel:""},selectedLabelText(){return this.showLabels?this.selectedLabel:""},inputStyle(){return this.searchable||this.multiple&&this.modelValue&&this.modelValue.length?this.isOpen?{width:"100%"}:{width:"0",position:"absolute",padding:"0"}:""},contentStyle(){return this.options.length?{display:"inline-block"}:{display:"block"}},isAbove(){return this.openDirection==="above"||this.openDirection==="top"?!0:this.openDirection==="below"||this.openDirection==="bottom"?!1:this.preferredOpenDirection==="above"},showSearchInput(){return this.searchable&&(this.hasSingleSelectedSlot&&(this.visibleSingleValue||this.visibleSingleValue===0)?this.isOpen:!0)}}};const Mn={ref:"tags",class:"multiselect__tags"},wn={class:"multiselect__tags-wrap"},Vn={class:"multiselect__spinner"},_n={key:0},vn={class:"multiselect__option"},Hn={class:"multiselect__option"},xn=e.createTextVNode("No elements found. Consider changing the search query."),Bn={class:"multiselect__option"},Sn=e.createTextVNode("List is empty.");function Zn(o,t,r,l,n,a){return e.openBlock(),e.createBlock("div",{tabindex:o.searchable?-1:r.tabindex,class:[{"multiselect--active":o.isOpen,"multiselect--disabled":r.disabled,"multiselect--above":a.isAbove,"multiselect--has-options-group":a.hasOptionGroup},"multiselect"],onFocus:t[14]||(t[14]=i=>o.activate()),onBlur:t[15]||(t[15]=i=>o.searchable?!1:o.deactivate()),onKeydown:[t[16]||(t[16]=e.withKeys(e.withModifiers(i=>o.pointerForward(),["self","prevent"]),["down"])),t[17]||(t[17]=e.withKeys(e.withModifiers(i=>o.pointerBackward(),["self","prevent"]),["up"]))],onKeypress:t[18]||(t[18]=e.withKeys(e.withModifiers(i=>o.addPointerElement(i),["stop","self"]),["enter","tab"])),onKeyup:t[19]||(t[19]=e.withKeys(i=>o.deactivate(),["esc"])),role:"combobox","aria-owns":"listbox-"+o.id},[e.renderSlot(o.$slots,"caret",{toggle:o.toggle},()=>[e.createVNode("div",{onMousedown:t[1]||(t[1]=e.withModifiers(i=>o.toggle(),["prevent","stop"])),class:"multiselect__select"},null,32)]),e.renderSlot(o.$slots,"clear",{search:o.search}),e.createVNode("div",Mn,[e.renderSlot(o.$slots,"selection",{search:o.search,remove:o.removeElement,values:a.visibleValues,isOpen:o.isOpen},()=>[e.withDirectives(e.createVNode("div",wn,[(e.openBlock(!0),e.createBlock(e.Fragment,null,e.renderList(a.visibleValues,(i,c)=>e.renderSlot(o.$slots,"tag",{option:i,search:o.search,remove:o.removeElement},()=>[(e.openBlock(),e.createBlock("span",{class:"multiselect__tag",key:c},[e.createVNode("span",{textContent:e.toDisplayString(o.getOptionLabel(i))},null,8,["textContent"]),e.createVNode("i",{tabindex:"1",onKeypress:e.withKeys(e.withModifiers(s=>o.removeElement(i),["prevent"]),["enter"]),onMousedown:e.withModifiers(s=>o.removeElement(i),["prevent"]),class:"multiselect__tag-icon"},null,40,["onKeypress","onMousedown"])]))])),256))],512),[[e.vShow,a.visibleValues.length>0]]),o.internalValue&&o.internalValue.length>r.limit?e.renderSlot(o.$slots,"limit",{key:0},()=>[e.createVNode("strong",{class:"multiselect__strong",textContent:e.toDisplayString(r.limitText(o.internalValue.length-r.limit))},null,8,["textContent"])]):e.createCommentVNode("v-if",!0)]),e.createVNode(e.Transition,{name:"multiselect__loading"},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"loading",{},()=>[e.withDirectives(e.createVNode("div",Vn,null,512),[[e.vShow,r.loading]])])]),_:3}),o.searchable?(e.openBlock(),e.createBlock("input",{key:0,ref:"search",name:r.name,id:o.id,type:"text",autocomplete:"off",spellcheck:r.spellcheck,placeholder:o.placeholder,required:r.required,style:a.inputStyle,value:o.search,disabled:r.disabled,tabindex:r.tabindex,onInput:t[2]||(t[2]=i=>o.updateSearch(i.target.value)),onFocus:t[3]||(t[3]=e.withModifiers(i=>o.activate(),["prevent"])),onBlur:t[4]||(t[4]=e.withModifiers(i=>o.deactivate(),["prevent"])),onKeyup:t[5]||(t[5]=e.withKeys(i=>o.deactivate(),["esc"])),onKeydown:[t[6]||(t[6]=e.withKeys(e.withModifiers(i=>o.pointerForward(),["prevent"]),["down"])),t[7]||(t[7]=e.withKeys(e.withModifiers(i=>o.pointerBackward(),["prevent"]),["up"])),t[9]||(t[9]=e.withKeys(e.withModifiers(i=>o.removeLastElement(),["stop"]),["delete"]))],onKeypress:t[8]||(t[8]=e.withKeys(e.withModifiers(i=>o.addPointerElement(i),["prevent","stop","self"]),["enter"])),class:"multiselect__input","aria-controls":"listbox-"+o.id},null,44,["name","id","spellcheck","placeholder","required","value","disabled","tabindex","aria-controls"])):e.createCommentVNode("v-if",!0),a.isSingleLabelVisible?(e.openBlock(),e.createBlock("span",{key:1,class:"multiselect__single",onMousedown:t[10]||(t[10]=e.withModifiers((...i)=>o.toggle&&o.toggle(...i),["prevent"]))},[e.renderSlot(o.$slots,"singleLabel",{option:a.singleValue},()=>[e.createTextVNode(e.toDisplayString(o.currentOptionLabel),1)])],32)):e.createCommentVNode("v-if",!0),a.isPlaceholderVisible?(e.openBlock(),e.createBlock("span",{key:2,class:"multiselect__placeholder",onMousedown:t[11]||(t[11]=e.withModifiers((...i)=>o.toggle&&o.toggle(...i),["prevent"]))},[e.renderSlot(o.$slots,"placeholder",{},()=>[e.createTextVNode(e.toDisplayString(o.placeholder),1)])],32)):e.createCommentVNode("v-if",!0)],512),e.createVNode(e.Transition,{name:"multiselect"},{default:e.withCtx(()=>[e.withDirectives(e.createVNode("div",{class:"multiselect__content-wrapper",onFocus:t[12]||(t[12]=(...i)=>o.activate&&o.activate(...i)),tabindex:"-1",onMousedown:t[13]||(t[13]=e.withModifiers(()=>{},["prevent"])),style:{maxHeight:o.optimizedHeight+"px"},ref:"list"},[e.createVNode("ul",{class:"multiselect__content",style:a.contentStyle,role:"listbox",id:"listbox-"+o.id,"aria-multiselectable":o.multiple},[e.renderSlot(o.$slots,"beforeList"),o.multiple&&o.max===o.internalValue.length?(e.openBlock(),e.createBlock("li",_n,[e.createVNode("span",vn,[e.renderSlot(o.$slots,"maxElements",{},()=>[e.createTextVNode("Maximum of "+e.toDisplayString(o.max)+" options selected. First remove a selected option to select another.",1)])])])):e.createCommentVNode("v-if",!0),!o.max||o.internalValue.length<o.max?(e.openBlock(!0),e.createBlock(e.Fragment,{key:1},e.renderList(o.filteredOptions,(i,c)=>(e.openBlock(),e.createBlock("li",{class:"multiselect__element",key:c,"aria-selected":o.isSelected(i),id:o.id+"-"+c,role:i&&(i.$isLabel||i.$isDisabled)?null:"option"},[i&&(i.$isLabel||i.$isDisabled)?e.createCommentVNode("v-if",!0):(e.openBlock(),e.createBlock("span",{key:0,class:[o.optionHighlight(c,i),"multiselect__option"],onClick:e.withModifiers(s=>o.select(i),["stop"]),onMouseenter:e.withModifiers(s=>o.pointerSet(c),["self"]),"data-select":i&&i.isTag?o.tagPlaceholder:a.selectLabelText,"data-selected":a.selectedLabelText,"data-deselect":a.deselectLabelText},[e.renderSlot(o.$slots,"option",{option:i,search:o.search,index:c},()=>[e.createVNode("span",null,e.toDisplayString(o.getOptionLabel(i)),1)])],42,["onClick","onMouseenter","data-select","data-selected","data-deselect"])),i&&(i.$isLabel||i.$isDisabled)?(e.openBlock(),e.createBlock("span",{key:1,"data-select":o.groupSelect&&a.selectGroupLabelText,"data-deselect":o.groupSelect&&a.deselectGroupLabelText,class:[o.groupHighlight(c,i),"multiselect__option"],onMouseenter:e.withModifiers(s=>o.groupSelect&&o.pointerSet(c),["self"]),onMousedown:e.withModifiers(s=>o.selectGroup(i),["prevent"])},[e.renderSlot(o.$slots,"option",{option:i,search:o.search,index:c},()=>[e.createVNode("span",null,e.toDisplayString(o.getOptionLabel(i)),1)])],42,["data-select","data-deselect","onMouseenter","onMousedown"])):e.createCommentVNode("v-if",!0)],8,["aria-selected","id","role"]))),128)):e.createCommentVNode("v-if",!0),e.withDirectives(e.createVNode("li",null,[e.createVNode("span",Hn,[e.renderSlot(o.$slots,"noResult",{search:o.search},()=>[xn])])],512),[[e.vShow,r.showNoResults&&o.filteredOptions.length===0&&o.search&&!r.loading]]),e.withDirectives(e.createVNode("li",null,[e.createVNode("span",Bn,[e.renderSlot(o.$slots,"noOptions",{},()=>[Sn])])],512),[[e.vShow,r.showNoOptions&&(o.options.length===0||a.hasOptionGroup===!0&&o.filteredOptions.length===0)&&!o.search&&!r.loading]]),e.renderSlot(o.$slots,"afterList")],12,["id","aria-multiselectable"])],36),[[e.vShow,o.isOpen]])]),_:3})],42,["tabindex","aria-owns"])}Y6.render=Zn;const Dn=["dir"],En={class:"mc-field-select__header"},Tn={class:"mc-field-select__main"},An={key:1,class:"mc-field-select__single-label"},$n={key:0,class:"mc-field-select__prepend"},Fn={key:0,class:"mc-field-select__footer"},zn={key:1},v9=e.defineComponent({__name:"McFieldSelect",props:{modelValue:{type:[Array,String,Number]},title:{type:String,default:null},helpText:{type:String,default:null},options:{type:Array,default:()=>[]},searchable:{type:Boolean,default:!0},multiple:{type:Boolean,default:!1},hideSelected:{type:Boolean,default:!0},allowEmpty:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},avatar:{type:String,default:null},icon:{type:String,default:null},backgroundColor:{type:String,default:null},placeholder:{type:String,default:""},openDirection:{type:String,default:"auto"},taggable:{type:Boolean,default:!1},showLabels:{type:Boolean,default:!1},internalSearch:{type:Boolean,default:!0},errors:{type:Array,default:null},name:{type:String,required:!0},optionsTooltip:{type:Boolean,default:!1},groupSelect:{type:Boolean,default:!1},required:{type:Boolean,default:!1},optionWithPreview:{type:Boolean,default:!1},tabindex:{type:[String,Number],default:null},maxHeight:{type:String,default:null},renderAbsoluteList:{type:Boolean,default:!1},locale:{type:String,default:null},noResultsText:{type:String,default:"No results"},loading:{type:Boolean,default:!1},dir:{type:String,default:g0.Ltr},titleField:{type:String,default:"name"},valueField:{type:String,default:"value"}},emits:["original-input","tag","search-change","update:modelValue","handle-open","handle-close"],setup(o,{emit:t}){const r=t,l=o,n=Z0(l.errors),a=e.ref(null),i=e.ref(null),c=e.ref(null),s=e.ref([]),u=e.computed(()=>l.options.some(A=>Object.prototype.hasOwnProperty.call(A,X0.Label)&&Object.prototype.hasOwnProperty.call(A,X0.Values)&&Array.isArray(A[X0.Values]))),d=e.computed(()=>!!l.title),C=e.computed(()=>l.avatar||l.icon),p=e.computed(()=>l.multiple),h=e.computed(()=>({label:l.titleField,trackBy:l.valueField,loading:l.loading,options:f.value,searchable:l.searchable,showLabels:l.showLabels,multiple:l.multiple,hideSelected:l.hideSelected,allowEmpty:l.allowEmpty,openDirection:l.openDirection,id:l.name,taggable:l.taggable,tagPlaceholder:"",placeholder:l.placeholder,disabled:l.disabled,internalSearch:l.internalSearch,tabindex:+l.tabindex,groupSelect:l.groupSelect&&l.multiple,...u.value?{groupLabel:X0.Label}:{},...u.value?{groupValues:X0.Values}:{}})),f=e.computed(()=>u.value?l.options:[...l.options,...s.value].filter((A,Q,x)=>x.findIndex(F=>F[l.valueField]===A[l.valueField])===Q)),m=e.computed(()=>l.dir===g0.Rtl),k=e.computed(()=>({"mc-field-select":!0,"mc-field-select--error":!!n.errorText.value,"mc-field-select--disabled":l.disabled,[`mc-field-select--bg-${l.backgroundColor}`]:!!l.backgroundColor,"mc-field-select--is-empty-options-list":b.value||l.loading,"mc-field-select--with-preview":l.optionWithPreview,"mc-field-select--max-height":!!l.maxHeight,"mc-field-select--rtl":m.value})),M=e.computed(()=>`${l.title}${l.required?" *":""}`),v=e.computed(()=>{const A=["gray","dark-gray","black"],Q=["white"];let x="gray",F=l.backgroundColor,D=l.backgroundColor,Y="black";return(!l.backgroundColor||Q.includes(l.backgroundColor))&&(F="purple"),A.includes(l.backgroundColor)&&(Y="white",x="white",F="black"),l.disabled&&!l.backgroundColor&&(D="hover-gray"),{"--mc-field-select-max-height":l.maxHeight,"--mc-field-select-color":D&&v2[D],"--mc-field-select-border-color":F&&v2[F],"--mc-field-select-label-color":v2[Y],"--mc-field-select-placeholder-color":v2[x]}}),b=e.computed(()=>{var A;return l.hideSelected&&!a.value||!l.options.length?l.multiple?u.value?!1:Array.isArray(l.modelValue)&&l.options.length===l.modelValue.length:!!l.modelValue&&((A=f.value)==null?void 0:A.length)===1&&!a.value:l.options.length===0?!l.options.length:!1}),L=e.computed({get(){let A=p.value?l.modelValue||[]:[l.modelValue].filter(Boolean);A=A.map(x=>{const D=(u.value?f.value.map(Y=>Y[X0.Values]).flat():f.value).find(Y=>String(Y[l.valueField])===String(x));return{[l.titleField]:D==null?void 0:D[l.titleField],[l.valueField]:D==null?void 0:D[l.valueField],text:D==null?void 0:D.text,icon:D==null?void 0:D.icon}});const[Q]=A;return p.value?A:Q},set(A){let Q=p.value?Array.isArray(A)?A:[]:[A];Q=Q.filter(Boolean).map(F=>F[l.valueField]);const[x]=Q;Z(A),S(p.value?Q:x)}}),T=()=>{s.value=s.value.filter(A=>{var Q;return((Q=l.modelValue)==null?void 0:Q.constructor)===Array?l.modelValue.map(x=>String(x)).includes(String(A[l.valueField])):String(A[l.valueField])===String(l.modelValue)}),s.value=s.value.filter((A,Q,x)=>x.findIndex(F=>String(F[l.valueField])===String(A[l.valueField]))===Q)},g=A=>{const Q={[l.titleField]:A,[l.valueField]:A};s.value.push(Q),L.value=p.value?[...L.value,Q]:Q,r("tag",A)},H=A=>{a.value=A,r("search-change",A)},S=A=>{n.toggleErrorVisible(),r("update:modelValue",A)},Z=A=>{r("original-input",A)},_=()=>{r("handle-open")},I=()=>{r("handle-close")};return e.watch(()=>l.options,A=>{s.value.push(...A),T()},{immediate:!0}),e.watch(()=>l.modelValue,()=>{T()},{immediate:!0,deep:!0}),(A,Q)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"field_select_wrapper_ref",ref:c,dir:o.dir,class:e.normalizeClass(k.value),style:e.normalizeStyle(v.value)},[e.createElementVNode("div",En,[e.renderSlot(A.$slots,"header",{},()=>[d.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"max-width":"100%",weight:e.unref(J2).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(M.value),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])]),e.createElementVNode("div",Tn,[e.createVNode(e.unref(Y6),e.mergeProps({ref_key:"field_select_ref",ref:i,modelValue:L.value,"onUpdate:modelValue":Q[0]||(Q[0]=x=>L.value=x)},h.value,{onTag:g,onSearchChange:H,onOpen:_,onClose:I}),e.createSlots({singleLabel:e.withCtx(({option:x})=>[l.optionWithPreview?(e.openBlock(),e.createBlock(e.unref(_1),{key:0,class:"option__desc",size:e.unref(Ve).L},e.createSlots({top:e.withCtx(()=>[e.createVNode(e.unref(g2),{weight:e.unref(J2).SemiBold,"html-data":x[l.titleField]},null,8,["weight","html-data"])]),right:e.withCtx(()=>[e.renderSlot(A.$slots,"arrow")]),_:2},[x.icon?{name:"left",fn:e.withCtx(()=>[e.createVNode(e.unref(V2),{name:x.icon,size:"400"},null,8,["name"])]),key:"0"}:void 0,x.text?{name:"bottom",fn:e.withCtx(()=>[e.createVNode(e.unref(g2),{color:"gray"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(x.text),1)]),_:2},1024)]),key:"1"}:void 0]),1032,["size"])):(e.openBlock(),e.createElementBlock("div",An,[C.value?(e.openBlock(),e.createElementBlock("div",$n,[o.avatar?(e.openBlock(),e.createBlock(e.unref(b3),{key:0,src:o.avatar},null,8,["src"])):(e.openBlock(),e.createBlock(e.unref(V2),{key:1,name:l.icon},null,8,["name"]))])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["mc-field-select__label-text",C.value?"mc-field-select__label-text--indent-left":""])},e.toDisplayString(x?x[l.titleField]:o.placeholder),3)]))]),noResult:e.withCtx(()=>[e.renderSlot(A.$slots,"noResult",{},()=>[e.createElementVNode("span",null,e.toDisplayString(l.noResultsText),1)])]),_:2},[o.optionsTooltip||l.optionWithPreview?{name:"option",fn:e.withCtx(({option:x})=>[l.optionWithPreview?(e.openBlock(),e.createBlock(e.unref(_1),{key:0,class:"option__desc",size:e.unref(Ve).L},e.createSlots({top:e.withCtx(()=>[e.createVNode(e.unref(g2),{weight:e.unref(J2).SemiBold,"html-data":x[l.titleField]},null,8,["weight","html-data"])]),_:2},[x.icon?{name:"left",fn:e.withCtx(()=>[e.createVNode(e.unref(V2),{name:x.icon,size:"400"},null,8,["name"])]),key:"0"}:void 0,x.text?{name:"bottom",fn:e.withCtx(()=>[e.createVNode(e.unref(g2),{color:"gray"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(x.text),1)]),_:2},1024)]),key:"1"}:void 0]),1032,["size"])):(e.openBlock(),e.createBlock(e.unref(V1),{key:1,class:"mc-field-select__options-tooltip-target","max-width":"m",color:"black",placement:e.unref(s0).Top,content:x[l.titleField]},{default:e.withCtx(()=>[e.createElementVNode("span",null,e.toDisplayString(x[l.titleField]),1)]),_:2},1032,["placement","content"]))]),key:"0"}:void 0]),1040,["modelValue"])]),e.unref(n).errorText.value||l.helpText||A.$slots.footer?(e.openBlock(),e.createElementBlock("div",Fn,[e.unref(n).errorText.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",color:"red",variation:e.unref(F2).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(n).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0),e.unref(n).errorText.value?(e.openBlock(),e.createElementBlock("br",zn)):e.createCommentVNode("",!0),e.renderSlot(A.$slots,"footer",{},()=>[l.helpText?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",variation:e.unref(F2).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],14,Dn))}});function p1(o){return typeof o=="string"||o instanceof String}function U6(o){var t;return typeof o=="object"&&o!=null&&(o==null||(t=o.constructor)==null?void 0:t.name)==="Object"}function q6(o,t){return Array.isArray(t)?q6(o,(r,l)=>t.includes(l)):Object.entries(o).reduce((r,l)=>{let[n,a]=l;return t(a,n)&&(r[n]=a),r},{})}const m2={NONE:"NONE",LEFT:"LEFT",FORCE_LEFT:"FORCE_LEFT",RIGHT:"RIGHT",FORCE_RIGHT:"FORCE_RIGHT"};function Nn(o){switch(o){case m2.LEFT:return m2.FORCE_LEFT;case m2.RIGHT:return m2.FORCE_RIGHT;default:return o}}function H9(o){return o.replace(/([.*+?^=!:${}()|[\]/\\])/g,"\\$1")}function Ye(o,t){if(t===o)return!0;const r=Array.isArray(t),l=Array.isArray(o);let n;if(r&&l){if(t.length!=o.length)return!1;for(n=0;n<t.length;n++)if(!Ye(t[n],o[n]))return!1;return!0}if(r!=l)return!1;if(t&&o&&typeof t=="object"&&typeof o=="object"){const a=t instanceof Date,i=o instanceof Date;if(a&&i)return t.getTime()==o.getTime();if(a!=i)return!1;const c=t instanceof RegExp,s=o instanceof RegExp;if(c&&s)return t.toString()==o.toString();if(c!=s)return!1;const u=Object.keys(t);for(n=0;n<u.length;n++)if(!Object.prototype.hasOwnProperty.call(o,u[n]))return!1;for(n=0;n<u.length;n++)if(!Ye(o[u[n]],t[u[n]]))return!1;return!0}else if(t&&o&&typeof t=="function"&&typeof o=="function")return t.toString()===o.toString();return!1}class On{constructor(t){for(Object.assign(this,t);this.value.slice(0,this.startChangePos)!==this.oldValue.slice(0,this.startChangePos);)--this.oldSelection.start;if(this.insertedCount)for(;this.value.slice(this.cursorPos)!==this.oldValue.slice(this.oldSelection.end);)this.value.length-this.cursorPos<this.oldValue.length-this.oldSelection.end?++this.oldSelection.end:++this.cursorPos}get startChangePos(){return Math.min(this.cursorPos,this.oldSelection.start)}get insertedCount(){return this.cursorPos-this.startChangePos}get inserted(){return this.value.substr(this.startChangePos,this.insertedCount)}get removedCount(){return Math.max(this.oldSelection.end-this.startChangePos||this.oldValue.length-this.value.length,0)}get removed(){return this.oldValue.substr(this.startChangePos,this.removedCount)}get head(){return this.value.substring(0,this.startChangePos)}get tail(){return this.value.substring(this.startChangePos+this.insertedCount)}get removeDirection(){return!this.removedCount||this.insertedCount?m2.NONE:(this.oldSelection.end===this.cursorPos||this.oldSelection.start===this.cursorPos)&&this.oldSelection.end===this.oldSelection.start?m2.RIGHT:m2.LEFT}}function y2(o,t){return new y2.InputMask(o,t)}function W6(o){if(o==null)throw new Error("mask property should be defined");return o instanceof RegExp?y2.MaskedRegExp:p1(o)?y2.MaskedPattern:o===Date?y2.MaskedDate:o===Number?y2.MaskedNumber:Array.isArray(o)||o===Array?y2.MaskedDynamic:y2.Masked&&o.prototype instanceof y2.Masked?o:y2.Masked&&o instanceof y2.Masked?o.constructor:o instanceof Function?y2.MaskedFunction:(console.warn("Mask not found for mask",o),y2.Masked)}function he(o){if(!o)throw new Error("Options in not defined");if(y2.Masked){if(o.prototype instanceof y2.Masked)return{mask:o};const{mask:t=void 0,...r}=o instanceof y2.Masked?{mask:o}:U6(o)&&o.mask instanceof y2.Masked?o:{};if(t){const l=t.mask;return{...q6(t,(n,a)=>!a.startsWith("_")),mask:t.constructor,_mask:l,...r}}}return U6(o)?{...o}:{mask:o}}function Y0(o){if(y2.Masked&&o instanceof y2.Masked)return o;const t=he(o),r=W6(t.mask);if(!r)throw new Error("Masked class is not found for provided mask "+t.mask+", appropriate module needs to be imported manually before creating mask.");return t.mask===r&&delete t.mask,t._mask&&(t.mask=t._mask,delete t._mask),new r(t)}y2.createMask=Y0;class x9{get selectionStart(){let t;try{t=this._unsafeSelectionStart}catch{}return t??this.value.length}get selectionEnd(){let t;try{t=this._unsafeSelectionEnd}catch{}return t??this.value.length}select(t,r){if(!(t==null||r==null||t===this.selectionStart&&r===this.selectionEnd))try{this._unsafeSelect(t,r)}catch{}}get isActive(){return!1}}y2.MaskElement=x9;const G6=90,Pn=89;class Ue extends x9{constructor(t){super(),this.input=t,this._onKeydown=this._onKeydown.bind(this),this._onInput=this._onInput.bind(this),this._onBeforeinput=this._onBeforeinput.bind(this),this._onCompositionEnd=this._onCompositionEnd.bind(this)}get rootElement(){var t,r,l;return(t=(r=(l=this.input).getRootNode)==null?void 0:r.call(l))!=null?t:document}get isActive(){return this.input===this.rootElement.activeElement}bindEvents(t){this.input.addEventListener("keydown",this._onKeydown),this.input.addEventListener("input",this._onInput),this.input.addEventListener("beforeinput",this._onBeforeinput),this.input.addEventListener("compositionend",this._onCompositionEnd),this.input.addEventListener("drop",t.drop),this.input.addEventListener("click",t.click),this.input.addEventListener("focus",t.focus),this.input.addEventListener("blur",t.commit),this._handlers=t}_onKeydown(t){if(this._handlers.redo&&(t.keyCode===G6&&t.shiftKey&&(t.metaKey||t.ctrlKey)||t.keyCode===Pn&&t.ctrlKey))return t.preventDefault(),this._handlers.redo(t);if(this._handlers.undo&&t.keyCode===G6&&(t.metaKey||t.ctrlKey))return t.preventDefault(),this._handlers.undo(t);t.isComposing||this._handlers.selectionChange(t)}_onBeforeinput(t){if(t.inputType==="historyUndo"&&this._handlers.undo)return t.preventDefault(),this._handlers.undo(t);if(t.inputType==="historyRedo"&&this._handlers.redo)return t.preventDefault(),this._handlers.redo(t)}_onCompositionEnd(t){this._handlers.input(t)}_onInput(t){t.isComposing||this._handlers.input(t)}unbindEvents(){this.input.removeEventListener("keydown",this._onKeydown),this.input.removeEventListener("input",this._onInput),this.input.removeEventListener("beforeinput",this._onBeforeinput),this.input.removeEventListener("compositionend",this._onCompositionEnd),this.input.removeEventListener("drop",this._handlers.drop),this.input.removeEventListener("click",this._handlers.click),this.input.removeEventListener("focus",this._handlers.focus),this.input.removeEventListener("blur",this._handlers.commit),this._handlers={}}}y2.HTMLMaskElement=Ue;class jn extends Ue{constructor(t){super(t),this.input=t}get _unsafeSelectionStart(){return this.input.selectionStart!=null?this.input.selectionStart:this.value.length}get _unsafeSelectionEnd(){return this.input.selectionEnd}_unsafeSelect(t,r){this.input.setSelectionRange(t,r)}get value(){return this.input.value}set value(t){this.input.value=t}}y2.HTMLMaskElement=Ue;class K6 extends Ue{get _unsafeSelectionStart(){const t=this.rootElement,r=t.getSelection&&t.getSelection(),l=r&&r.anchorOffset,n=r&&r.focusOffset;return n==null||l==null||l<n?l:n}get _unsafeSelectionEnd(){const t=this.rootElement,r=t.getSelection&&t.getSelection(),l=r&&r.anchorOffset,n=r&&r.focusOffset;return n==null||l==null||l>n?l:n}_unsafeSelect(t,r){if(!this.rootElement.createRange)return;const l=this.rootElement.createRange();l.setStart(this.input.firstChild||this.input,t),l.setEnd(this.input.lastChild||this.input,r);const n=this.rootElement,a=n.getSelection&&n.getSelection();a&&(a.removeAllRanges(),a.addRange(l))}get value(){return this.input.textContent||""}set value(t){this.input.textContent=t}}y2.HTMLContenteditableMaskElement=K6;class qe{constructor(){this.states=[],this.currentIndex=0}get currentState(){return this.states[this.currentIndex]}get isEmpty(){return this.states.length===0}push(t){this.currentIndex<this.states.length-1&&(this.states.length=this.currentIndex+1),this.states.push(t),this.states.length>qe.MAX_LENGTH&&this.states.shift(),this.currentIndex=this.states.length-1}go(t){return this.currentIndex=Math.min(Math.max(this.currentIndex+t,0),this.states.length-1),this.currentState}undo(){return this.go(-1)}redo(){return this.go(1)}clear(){this.states.length=0,this.currentIndex=0}}qe.MAX_LENGTH=100;class Rn{constructor(t,r){this.el=t instanceof x9?t:t.isContentEditable&&t.tagName!=="INPUT"&&t.tagName!=="TEXTAREA"?new K6(t):new jn(t),this.masked=Y0(r),this._listeners={},this._value="",this._unmaskedValue="",this._rawInputValue="",this.history=new qe,this._saveSelection=this._saveSelection.bind(this),this._onInput=this._onInput.bind(this),this._onChange=this._onChange.bind(this),this._onDrop=this._onDrop.bind(this),this._onFocus=this._onFocus.bind(this),this._onClick=this._onClick.bind(this),this._onUndo=this._onUndo.bind(this),this._onRedo=this._onRedo.bind(this),this.alignCursor=this.alignCursor.bind(this),this.alignCursorFriendly=this.alignCursorFriendly.bind(this),this._bindEvents(),this.updateValue(),this._onChange()}maskEquals(t){var r;return t==null||((r=this.masked)==null?void 0:r.maskEquals(t))}get mask(){return this.masked.mask}set mask(t){if(this.maskEquals(t))return;if(!(t instanceof y2.Masked)&&this.masked.constructor===W6(t)){this.masked.updateOptions({mask:t});return}const r=t instanceof y2.Masked?t:Y0({mask:t});r.unmaskedValue=this.masked.unmaskedValue,this.masked=r}get value(){return this._value}set value(t){this.value!==t&&(this.masked.value=t,this.updateControl("auto"))}get unmaskedValue(){return this._unmaskedValue}set unmaskedValue(t){this.unmaskedValue!==t&&(this.masked.unmaskedValue=t,this.updateControl("auto"))}get rawInputValue(){return this._rawInputValue}set rawInputValue(t){this.rawInputValue!==t&&(this.masked.rawInputValue=t,this.updateControl(),this.alignCursor())}get typedValue(){return this.masked.typedValue}set typedValue(t){this.masked.typedValueEquals(t)||(this.masked.typedValue=t,this.updateControl("auto"))}get displayValue(){return this.masked.displayValue}_bindEvents(){this.el.bindEvents({selectionChange:this._saveSelection,input:this._onInput,drop:this._onDrop,click:this._onClick,focus:this._onFocus,commit:this._onChange,undo:this._onUndo,redo:this._onRedo})}_unbindEvents(){this.el&&this.el.unbindEvents()}_fireEvent(t,r){const l=this._listeners[t];l&&l.forEach(n=>n(r))}get selectionStart(){return this._cursorChanging?this._changingCursorPos:this.el.selectionStart}get cursorPos(){return this._cursorChanging?this._changingCursorPos:this.el.selectionEnd}set cursorPos(t){!this.el||!this.el.isActive||(this.el.select(t,t),this._saveSelection())}_saveSelection(){this.displayValue!==this.el.value&&console.warn("Element value was changed outside of mask. Syncronize mask using `mask.updateValue()` to work properly."),this._selection={start:this.selectionStart,end:this.cursorPos}}updateValue(){this.masked.value=this.el.value,this._value=this.masked.value,this._unmaskedValue=this.masked.unmaskedValue,this._rawInputValue=this.masked.rawInputValue}updateControl(t){const r=this.masked.unmaskedValue,l=this.masked.value,n=this.masked.rawInputValue,a=this.displayValue,i=this.unmaskedValue!==r||this.value!==l||this._rawInputValue!==n;this._unmaskedValue=r,this._value=l,this._rawInputValue=n,this.el.value!==a&&(this.el.value=a),t==="auto"?this.alignCursor():t!=null&&(this.cursorPos=t),i&&this._fireChangeEvents(),!this._historyChanging&&(i||this.history.isEmpty)&&this.history.push({unmaskedValue:r,selection:{start:this.selectionStart,end:this.cursorPos}})}updateOptions(t){const{mask:r,...l}=t,n=!this.maskEquals(r),a=this.masked.optionsIsChanged(l);n&&(this.mask=r),a&&this.masked.updateOptions(l),(n||a)&&this.updateControl()}updateCursor(t){t!=null&&(this.cursorPos=t,this._delayUpdateCursor(t))}_delayUpdateCursor(t){this._abortUpdateCursor(),this._changingCursorPos=t,this._cursorChanging=setTimeout(()=>{this.el&&(this.cursorPos=this._changingCursorPos,this._abortUpdateCursor())},10)}_fireChangeEvents(){this._fireEvent("accept",this._inputEvent),this.masked.isComplete&&this._fireEvent("complete",this._inputEvent)}_abortUpdateCursor(){this._cursorChanging&&(clearTimeout(this._cursorChanging),delete this._cursorChanging)}alignCursor(){this.cursorPos=this.masked.nearestInputPos(this.masked.nearestInputPos(this.cursorPos,m2.LEFT))}alignCursorFriendly(){this.selectionStart===this.cursorPos&&this.alignCursor()}on(t,r){return this._listeners[t]||(this._listeners[t]=[]),this._listeners[t].push(r),this}off(t,r){if(!this._listeners[t])return this;if(!r)return delete this._listeners[t],this;const l=this._listeners[t].indexOf(r);return l>=0&&this._listeners[t].splice(l,1),this}_onInput(t){this._inputEvent=t,this._abortUpdateCursor();const r=new On({value:this.el.value,cursorPos:this.cursorPos,oldValue:this.displayValue,oldSelection:this._selection}),l=this.masked.rawInputValue,n=this.masked.splice(r.startChangePos,r.removed.length,r.inserted,r.removeDirection,{input:!0,raw:!0}).offset,a=l===this.masked.rawInputValue?r.removeDirection:m2.NONE;let i=this.masked.nearestInputPos(r.startChangePos+n,a);a!==m2.NONE&&(i=this.masked.nearestInputPos(i,m2.NONE)),this.updateControl(i),delete this._inputEvent}_onChange(){this.displayValue!==this.el.value&&this.updateValue(),this.masked.doCommit(),this.updateControl(),this._saveSelection()}_onDrop(t){t.preventDefault(),t.stopPropagation()}_onFocus(t){this.alignCursorFriendly()}_onClick(t){this.alignCursorFriendly()}_onUndo(){this._applyHistoryState(this.history.undo())}_onRedo(){this._applyHistoryState(this.history.redo())}_applyHistoryState(t){t&&(this._historyChanging=!0,this.unmaskedValue=t.unmaskedValue,this.el.select(t.selection.start,t.selection.end),this._saveSelection(),this._historyChanging=!1)}destroy(){this._unbindEvents(),this._listeners.length=0,delete this.el}}y2.InputMask=Rn;class b2{static normalize(t){return Array.isArray(t)?t:[t,new b2]}constructor(t){Object.assign(this,{inserted:"",rawInserted:"",tailShift:0,skip:!1},t)}aggregate(t){return this.inserted+=t.inserted,this.rawInserted+=t.rawInserted,this.tailShift+=t.tailShift,this.skip=this.skip||t.skip,this}get offset(){return this.tailShift+this.inserted.length}get consumed(){return!!this.rawInserted||this.skip}equals(t){return this.inserted===t.inserted&&this.tailShift===t.tailShift&&this.rawInserted===t.rawInserted&&this.skip===t.skip}}y2.ChangeDetails=b2;class F0{constructor(t,r,l){t===void 0&&(t=""),r===void 0&&(r=0),this.value=t,this.from=r,this.stop=l}toString(){return this.value}extend(t){this.value+=String(t)}appendTo(t){return t.append(this.toString(),{tail:!0}).aggregate(t._appendPlaceholder())}get state(){return{value:this.value,from:this.from,stop:this.stop}}set state(t){Object.assign(this,t)}unshift(t){if(!this.value.length||t!=null&&this.from>=t)return"";const r=this.value[0];return this.value=this.value.slice(1),r}shift(){if(!this.value.length)return"";const t=this.value[this.value.length-1];return this.value=this.value.slice(0,-1),t}}class n0{constructor(t){this._value="",this._update({...n0.DEFAULTS,...t}),this._initialized=!0}updateOptions(t){this.optionsIsChanged(t)&&this.withValueRefresh(this._update.bind(this,t))}_update(t){Object.assign(this,t)}get state(){return{_value:this.value,_rawInputValue:this.rawInputValue}}set state(t){this._value=t._value}reset(){this._value=""}get value(){return this._value}set value(t){this.resolve(t,{input:!0})}resolve(t,r){r===void 0&&(r={input:!0}),this.reset(),this.append(t,r,""),this.doCommit()}get unmaskedValue(){return this.value}set unmaskedValue(t){this.resolve(t,{})}get typedValue(){return this.parse?this.parse(this.value,this):this.unmaskedValue}set typedValue(t){this.format?this.value=this.format(t,this):this.unmaskedValue=String(t)}get rawInputValue(){return this.extractInput(0,this.displayValue.length,{raw:!0})}set rawInputValue(t){this.resolve(t,{raw:!0})}get displayValue(){return this.value}get isComplete(){return!0}get isFilled(){return this.isComplete}nearestInputPos(t,r){return t}totalInputPositions(t,r){return t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),Math.min(this.displayValue.length,r-t)}extractInput(t,r,l){return t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),this.displayValue.slice(t,r)}extractTail(t,r){return t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),new F0(this.extractInput(t,r),t)}appendTail(t){return p1(t)&&(t=new F0(String(t))),t.appendTo(this)}_appendCharRaw(t,r){return t?(this._value+=t,new b2({inserted:t,rawInserted:t})):new b2}_appendChar(t,r,l){r===void 0&&(r={});const n=this.state;let a;if([t,a]=this.doPrepareChar(t,r),t&&(a=a.aggregate(this._appendCharRaw(t,r)),!a.rawInserted&&this.autofix==="pad")){const i=this.state;this.state=n;let c=this.pad(r);const s=this._appendCharRaw(t,r);c=c.aggregate(s),s.rawInserted||c.equals(a)?a=c:this.state=i}if(a.inserted){let i,c=this.doValidate(r)!==!1;if(c&&l!=null){const s=this.state;if(this.overwrite===!0){i=l.state;for(let d=0;d<a.rawInserted.length;++d)l.unshift(this.displayValue.length-a.tailShift)}let u=this.appendTail(l);if(c=u.rawInserted.length===l.toString().length,!(c&&u.inserted)&&this.overwrite==="shift"){this.state=s,i=l.state;for(let d=0;d<a.rawInserted.length;++d)l.shift();u=this.appendTail(l),c=u.rawInserted.length===l.toString().length}c&&u.inserted&&(this.state=s)}c||(a=new b2,this.state=n,l&&i&&(l.state=i))}return a}_appendPlaceholder(){return new b2}_appendEager(){return new b2}append(t,r,l){if(!p1(t))throw new Error("value should be string");const n=p1(l)?new F0(String(l)):l;r!=null&&r.tail&&(r._beforeTailState=this.state);let a;[t,a]=this.doPrepare(t,r);for(let i=0;i<t.length;++i){const c=this._appendChar(t[i],r,n);if(!c.rawInserted&&!this.doSkipInvalid(t[i],r,n))break;a.aggregate(c)}return(this.eager===!0||this.eager==="append")&&r!=null&&r.input&&t&&a.aggregate(this._appendEager()),n!=null&&(a.tailShift+=this.appendTail(n).tailShift),a}remove(t,r){return t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),this._value=this.displayValue.slice(0,t)+this.displayValue.slice(r),new b2}withValueRefresh(t){if(this._refreshing||!this._initialized)return t();this._refreshing=!0;const r=this.rawInputValue,l=this.value,n=t();return this.rawInputValue=r,this.value&&this.value!==l&&l.indexOf(this.value)===0&&(this.append(l.slice(this.displayValue.length),{},""),this.doCommit()),delete this._refreshing,n}runIsolated(t){if(this._isolated||!this._initialized)return t(this);this._isolated=!0;const r=this.state,l=t(this);return this.state=r,delete this._isolated,l}doSkipInvalid(t,r,l){return!!this.skipInvalid}doPrepare(t,r){return r===void 0&&(r={}),b2.normalize(this.prepare?this.prepare(t,this,r):t)}doPrepareChar(t,r){return r===void 0&&(r={}),b2.normalize(this.prepareChar?this.prepareChar(t,this,r):t)}doValidate(t){return(!this.validate||this.validate(this.value,this,t))&&(!this.parent||this.parent.doValidate(t))}doCommit(){this.commit&&this.commit(this.value,this)}splice(t,r,l,n,a){l===void 0&&(l=""),n===void 0&&(n=m2.NONE),a===void 0&&(a={input:!0});const i=t+r,c=this.extractTail(i),s=this.eager===!0||this.eager==="remove";let u;s&&(n=Nn(n),u=this.extractInput(0,i,{raw:!0}));let d=t;const C=new b2;if(n!==m2.NONE&&(d=this.nearestInputPos(t,r>1&&t!==0&&!s?m2.NONE:n),C.tailShift=d-t),C.aggregate(this.remove(d)),s&&n!==m2.NONE&&u===this.rawInputValue)if(n===m2.FORCE_LEFT){let p;for(;u===this.rawInputValue&&(p=this.displayValue.length);)C.aggregate(new b2({tailShift:-1})).aggregate(this.remove(p-1))}else n===m2.FORCE_RIGHT&&c.unshift();return C.aggregate(this.append(l,a,c))}maskEquals(t){return this.mask===t}optionsIsChanged(t){return!Ye(this,t)}typedValueEquals(t){const r=this.typedValue;return t===r||n0.EMPTY_VALUES.includes(t)&&n0.EMPTY_VALUES.includes(r)||(this.format?this.format(t,this)===this.format(this.typedValue,this):!1)}pad(t){return new b2}}n0.DEFAULTS={skipInvalid:!0},n0.EMPTY_VALUES=[void 0,null,""],y2.Masked=n0;class w1{constructor(t,r){t===void 0&&(t=[]),r===void 0&&(r=0),this.chunks=t,this.from=r}toString(){return this.chunks.map(String).join("")}extend(t){if(!String(t))return;t=p1(t)?new F0(String(t)):t;const r=this.chunks[this.chunks.length-1],l=r&&(r.stop===t.stop||t.stop==null)&&t.from===r.from+r.toString().length;if(t instanceof F0)l?r.extend(t.toString()):this.chunks.push(t);else if(t instanceof w1){if(t.stop==null){let n;for(;t.chunks.length&&t.chunks[0].stop==null;)n=t.chunks.shift(),n.from+=t.from,this.extend(n)}t.toString()&&(t.stop=t.blockIndex,this.chunks.push(t))}}appendTo(t){if(!(t instanceof y2.MaskedPattern))return new F0(this.toString()).appendTo(t);const r=new b2;for(let l=0;l<this.chunks.length;++l){const n=this.chunks[l],a=t._mapPosToBlock(t.displayValue.length),i=n.stop;let c;if(i!=null&&(!a||a.index<=i)&&((n instanceof w1||t._stops.indexOf(i)>=0)&&r.aggregate(t._appendPlaceholder(i)),c=n instanceof w1&&t._blocks[i]),c){const s=c.appendTail(n);r.aggregate(s);const u=n.toString().slice(s.rawInserted.length);u&&r.aggregate(t.append(u,{tail:!0}))}else r.aggregate(t.append(n.toString(),{tail:!0}))}return r}get state(){return{chunks:this.chunks.map(t=>t.state),from:this.from,stop:this.stop,blockIndex:this.blockIndex}}set state(t){const{chunks:r,...l}=t;Object.assign(this,l),this.chunks=r.map(n=>{const a="chunks"in n?new w1:new F0;return a.state=n,a})}unshift(t){if(!this.chunks.length||t!=null&&this.from>=t)return"";const r=t!=null?t-this.from:t;let l=0;for(;l<this.chunks.length;){const n=this.chunks[l],a=n.unshift(r);if(n.toString()){if(!a)break;++l}else this.chunks.splice(l,1);if(a)return a}return""}shift(){if(!this.chunks.length)return"";let t=this.chunks.length-1;for(;0<=t;){const r=this.chunks[t],l=r.shift();if(r.toString()){if(!l)break;--t}else this.chunks.splice(t,1);if(l)return l}return""}}class In{constructor(t,r){this.masked=t,this._log=[];const{offset:l,index:n}=t._mapPosToBlock(r)||(r<0?{index:0,offset:0}:{index:this.masked._blocks.length,offset:0});this.offset=l,this.index=n,this.ok=!1}get block(){return this.masked._blocks[this.index]}get pos(){return this.masked._blockStartPos(this.index)+this.offset}get state(){return{index:this.index,offset:this.offset,ok:this.ok}}set state(t){Object.assign(this,t)}pushState(){this._log.push(this.state)}popState(){const t=this._log.pop();return t&&(this.state=t),t}bindBlock(){this.block||(this.index<0&&(this.index=0,this.offset=0),this.index>=this.masked._blocks.length&&(this.index=this.masked._blocks.length-1,this.offset=this.block.displayValue.length))}_pushLeft(t){for(this.pushState(),this.bindBlock();0<=this.index;--this.index,this.offset=((r=this.block)==null?void 0:r.displayValue.length)||0){var r;if(t())return this.ok=!0}return this.ok=!1}_pushRight(t){for(this.pushState(),this.bindBlock();this.index<this.masked._blocks.length;++this.index,this.offset=0)if(t())return this.ok=!0;return this.ok=!1}pushLeftBeforeFilled(){return this._pushLeft(()=>{if(!(this.block.isFixed||!this.block.value)&&(this.offset=this.block.nearestInputPos(this.offset,m2.FORCE_LEFT),this.offset!==0))return!0})}pushLeftBeforeInput(){return this._pushLeft(()=>{if(!this.block.isFixed)return this.offset=this.block.nearestInputPos(this.offset,m2.LEFT),!0})}pushLeftBeforeRequired(){return this._pushLeft(()=>{if(!(this.block.isFixed||this.block.isOptional&&!this.block.value))return this.offset=this.block.nearestInputPos(this.offset,m2.LEFT),!0})}pushRightBeforeFilled(){return this._pushRight(()=>{if(!(this.block.isFixed||!this.block.value)&&(this.offset=this.block.nearestInputPos(this.offset,m2.FORCE_RIGHT),this.offset!==this.block.value.length))return!0})}pushRightBeforeInput(){return this._pushRight(()=>{if(!this.block.isFixed)return this.offset=this.block.nearestInputPos(this.offset,m2.NONE),!0})}pushRightBeforeRequired(){return this._pushRight(()=>{if(!(this.block.isFixed||this.block.isOptional&&!this.block.value))return this.offset=this.block.nearestInputPos(this.offset,m2.NONE),!0})}}class Q6{constructor(t){Object.assign(this,t),this._value="",this.isFixed=!0}get value(){return this._value}get unmaskedValue(){return this.isUnmasking?this.value:""}get rawInputValue(){return this._isRawInput?this.value:""}get displayValue(){return this.value}reset(){this._isRawInput=!1,this._value=""}remove(t,r){return t===void 0&&(t=0),r===void 0&&(r=this._value.length),this._value=this._value.slice(0,t)+this._value.slice(r),this._value||(this._isRawInput=!1),new b2}nearestInputPos(t,r){r===void 0&&(r=m2.NONE);const l=0,n=this._value.length;switch(r){case m2.LEFT:case m2.FORCE_LEFT:return l;case m2.NONE:case m2.RIGHT:case m2.FORCE_RIGHT:default:return n}}totalInputPositions(t,r){return t===void 0&&(t=0),r===void 0&&(r=this._value.length),this._isRawInput?r-t:0}extractInput(t,r,l){return t===void 0&&(t=0),r===void 0&&(r=this._value.length),l===void 0&&(l={}),l.raw&&this._isRawInput&&this._value.slice(t,r)||""}get isComplete(){return!0}get isFilled(){return!!this._value}_appendChar(t,r){if(r===void 0&&(r={}),this.isFilled)return new b2;const l=this.eager===!0||this.eager==="append",a=this.char===t&&(this.isUnmasking||r.input||r.raw)&&(!r.raw||!l)&&!r.tail,i=new b2({inserted:this.char,rawInserted:a?this.char:""});return this._value=this.char,this._isRawInput=a&&(r.raw||r.input),i}_appendEager(){return this._appendChar(this.char,{tail:!0})}_appendPlaceholder(){const t=new b2;return this.isFilled||(this._value=t.inserted=this.char),t}extractTail(){return new F0("")}appendTail(t){return p1(t)&&(t=new F0(String(t))),t.appendTo(this)}append(t,r,l){const n=this._appendChar(t[0],r);return l!=null&&(n.tailShift+=this.appendTail(l).tailShift),n}doCommit(){}get state(){return{_value:this._value,_rawInputValue:this.rawInputValue}}set state(t){this._value=t._value,this._isRawInput=!!t._rawInputValue}pad(t){return this._appendPlaceholder()}}class We{constructor(t){const{parent:r,isOptional:l,placeholderChar:n,displayChar:a,lazy:i,eager:c,...s}=t;this.masked=Y0(s),Object.assign(this,{parent:r,isOptional:l,placeholderChar:n,displayChar:a,lazy:i,eager:c})}reset(){this.isFilled=!1,this.masked.reset()}remove(t,r){return t===void 0&&(t=0),r===void 0&&(r=this.value.length),t===0&&r>=1?(this.isFilled=!1,this.masked.remove(t,r)):new b2}get value(){return this.masked.value||(this.isFilled&&!this.isOptional?this.placeholderChar:"")}get unmaskedValue(){return this.masked.unmaskedValue}get rawInputValue(){return this.masked.rawInputValue}get displayValue(){return this.masked.value&&this.displayChar||this.value}get isComplete(){return!!this.masked.value||this.isOptional}_appendChar(t,r){if(r===void 0&&(r={}),this.isFilled)return new b2;const l=this.masked.state;let n=this.masked._appendChar(t,this.currentMaskFlags(r));return n.inserted&&this.doValidate(r)===!1&&(n=new b2,this.masked.state=l),!n.inserted&&!this.isOptional&&!this.lazy&&!r.input&&(n.inserted=this.placeholderChar),n.skip=!n.inserted&&!this.isOptional,this.isFilled=!!n.inserted,n}append(t,r,l){return this.masked.append(t,this.currentMaskFlags(r),l)}_appendPlaceholder(){return this.isFilled||this.isOptional?new b2:(this.isFilled=!0,new b2({inserted:this.placeholderChar}))}_appendEager(){return new b2}extractTail(t,r){return this.masked.extractTail(t,r)}appendTail(t){return this.masked.appendTail(t)}extractInput(t,r,l){return t===void 0&&(t=0),r===void 0&&(r=this.value.length),this.masked.extractInput(t,r,l)}nearestInputPos(t,r){r===void 0&&(r=m2.NONE);const l=0,n=this.value.length,a=Math.min(Math.max(t,l),n);switch(r){case m2.LEFT:case m2.FORCE_LEFT:return this.isComplete?a:l;case m2.RIGHT:case m2.FORCE_RIGHT:return this.isComplete?a:n;case m2.NONE:default:return a}}totalInputPositions(t,r){return t===void 0&&(t=0),r===void 0&&(r=this.value.length),this.value.slice(t,r).length}doValidate(t){return this.masked.doValidate(this.currentMaskFlags(t))&&(!this.parent||this.parent.doValidate(this.currentMaskFlags(t)))}doCommit(){this.masked.doCommit()}get state(){return{_value:this.value,_rawInputValue:this.rawInputValue,masked:this.masked.state,isFilled:this.isFilled}}set state(t){this.masked.state=t.masked,this.isFilled=t.isFilled}currentMaskFlags(t){var r;return{...t,_beforeTailState:(t==null||(r=t._beforeTailState)==null?void 0:r.masked)||(t==null?void 0:t._beforeTailState)}}pad(t){return new b2}}We.DEFAULT_DEFINITIONS={0:/\d/,a:/[\u0041-\u005A\u0061-\u007A\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,"*":/./};class Yn extends n0{updateOptions(t){super.updateOptions(t)}_update(t){const r=t.mask;r&&(t.validate=l=>l.search(r)>=0),super._update(t)}}y2.MaskedRegExp=Yn;class a0 extends n0{constructor(t){super({...a0.DEFAULTS,...t,definitions:Object.assign({},We.DEFAULT_DEFINITIONS,t==null?void 0:t.definitions)})}updateOptions(t){super.updateOptions(t)}_update(t){t.definitions=Object.assign({},this.definitions,t.definitions),super._update(t),this._rebuildMask()}_rebuildMask(){const t=this.definitions;this._blocks=[],this.exposeBlock=void 0,this._stops=[],this._maskedBlocks={};const r=this.mask;if(!r||!t)return;let l=!1,n=!1;for(let a=0;a<r.length;++a){if(this.blocks){const u=r.slice(a),d=Object.keys(this.blocks).filter(p=>u.indexOf(p)===0);d.sort((p,h)=>h.length-p.length);const C=d[0];if(C){const{expose:p,repeat:h,...f}=he(this.blocks[C]),m={lazy:this.lazy,eager:this.eager,placeholderChar:this.placeholderChar,displayChar:this.displayChar,overwrite:this.overwrite,autofix:this.autofix,...f,repeat:h,parent:this},k=h!=null?new y2.RepeatBlock(m):Y0(m);k&&(this._blocks.push(k),p&&(this.exposeBlock=k),this._maskedBlocks[C]||(this._maskedBlocks[C]=[]),this._maskedBlocks[C].push(this._blocks.length-1)),a+=C.length-1;continue}}let i=r[a],c=i in t;if(i===a0.STOP_CHAR){this._stops.push(this._blocks.length);continue}if(i==="{"||i==="}"){l=!l;continue}if(i==="["||i==="]"){n=!n;continue}if(i===a0.ESCAPE_CHAR){if(++a,i=r[a],!i)break;c=!1}const s=c?new We({isOptional:n,lazy:this.lazy,eager:this.eager,placeholderChar:this.placeholderChar,displayChar:this.displayChar,...he(t[i]),parent:this}):new Q6({char:i,eager:this.eager,isUnmasking:l});this._blocks.push(s)}}get state(){return{...super.state,_blocks:this._blocks.map(t=>t.state)}}set state(t){if(!t){this.reset();return}const{_blocks:r,...l}=t;this._blocks.forEach((n,a)=>n.state=r[a]),super.state=l}reset(){super.reset(),this._blocks.forEach(t=>t.reset())}get isComplete(){return this.exposeBlock?this.exposeBlock.isComplete:this._blocks.every(t=>t.isComplete)}get isFilled(){return this._blocks.every(t=>t.isFilled)}get isFixed(){return this._blocks.every(t=>t.isFixed)}get isOptional(){return this._blocks.every(t=>t.isOptional)}doCommit(){this._blocks.forEach(t=>t.doCommit()),super.doCommit()}get unmaskedValue(){return this.exposeBlock?this.exposeBlock.unmaskedValue:this._blocks.reduce((t,r)=>t+=r.unmaskedValue,"")}set unmaskedValue(t){if(this.exposeBlock){const r=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.unmaskedValue=t,this.appendTail(r),this.doCommit()}else super.unmaskedValue=t}get value(){return this.exposeBlock?this.exposeBlock.value:this._blocks.reduce((t,r)=>t+=r.value,"")}set value(t){if(this.exposeBlock){const r=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.value=t,this.appendTail(r),this.doCommit()}else super.value=t}get typedValue(){return this.exposeBlock?this.exposeBlock.typedValue:super.typedValue}set typedValue(t){if(this.exposeBlock){const r=this.extractTail(this._blockStartPos(this._blocks.indexOf(this.exposeBlock))+this.exposeBlock.displayValue.length);this.exposeBlock.typedValue=t,this.appendTail(r),this.doCommit()}else super.typedValue=t}get displayValue(){return this._blocks.reduce((t,r)=>t+=r.displayValue,"")}appendTail(t){return super.appendTail(t).aggregate(this._appendPlaceholder())}_appendEager(){var t;const r=new b2;let l=(t=this._mapPosToBlock(this.displayValue.length))==null?void 0:t.index;if(l==null)return r;this._blocks[l].isFilled&&++l;for(let n=l;n<this._blocks.length;++n){const a=this._blocks[n]._appendEager();if(!a.inserted)break;r.aggregate(a)}return r}_appendCharRaw(t,r){r===void 0&&(r={});const l=this._mapPosToBlock(this.displayValue.length),n=new b2;if(!l)return n;for(let i=l.index,c;c=this._blocks[i];++i){var a;const s=c._appendChar(t,{...r,_beforeTailState:(a=r._beforeTailState)==null||(a=a._blocks)==null?void 0:a[i]});if(n.aggregate(s),s.consumed)break}return n}extractTail(t,r){t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length);const l=new w1;return t===r||this._forEachBlocksInRange(t,r,(n,a,i,c)=>{const s=n.extractTail(i,c);s.stop=this._findStopBefore(a),s.from=this._blockStartPos(a),s instanceof w1&&(s.blockIndex=a),l.extend(s)}),l}extractInput(t,r,l){if(t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),l===void 0&&(l={}),t===r)return"";let n="";return this._forEachBlocksInRange(t,r,(a,i,c,s)=>{n+=a.extractInput(c,s,l)}),n}_findStopBefore(t){let r;for(let l=0;l<this._stops.length;++l){const n=this._stops[l];if(n<=t)r=n;else break}return r}_appendPlaceholder(t){const r=new b2;if(this.lazy&&t==null)return r;const l=this._mapPosToBlock(this.displayValue.length);if(!l)return r;const n=l.index,a=t??this._blocks.length;return this._blocks.slice(n,a).forEach(i=>{if(!i.lazy||t!=null){var c;r.aggregate(i._appendPlaceholder((c=i._blocks)==null?void 0:c.length))}}),r}_mapPosToBlock(t){let r="";for(let l=0;l<this._blocks.length;++l){const n=this._blocks[l],a=r.length;if(r+=n.displayValue,t<=r.length)return{index:l,offset:t-a}}}_blockStartPos(t){return this._blocks.slice(0,t).reduce((r,l)=>r+=l.displayValue.length,0)}_forEachBlocksInRange(t,r,l){r===void 0&&(r=this.displayValue.length);const n=this._mapPosToBlock(t);if(n){const a=this._mapPosToBlock(r),i=a&&n.index===a.index,c=n.offset,s=a&&i?a.offset:this._blocks[n.index].displayValue.length;if(l(this._blocks[n.index],n.index,c,s),a&&!i){for(let u=n.index+1;u<a.index;++u)l(this._blocks[u],u,0,this._blocks[u].displayValue.length);l(this._blocks[a.index],a.index,0,a.offset)}}}remove(t,r){t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length);const l=super.remove(t,r);return this._forEachBlocksInRange(t,r,(n,a,i,c)=>{l.aggregate(n.remove(i,c))}),l}nearestInputPos(t,r){if(r===void 0&&(r=m2.NONE),!this._blocks.length)return 0;const l=new In(this,t);if(r===m2.NONE)return l.pushRightBeforeInput()||(l.popState(),l.pushLeftBeforeInput())?l.pos:this.displayValue.length;if(r===m2.LEFT||r===m2.FORCE_LEFT){if(r===m2.LEFT){if(l.pushRightBeforeFilled(),l.ok&&l.pos===t)return t;l.popState()}if(l.pushLeftBeforeInput(),l.pushLeftBeforeRequired(),l.pushLeftBeforeFilled(),r===m2.LEFT){if(l.pushRightBeforeInput(),l.pushRightBeforeRequired(),l.ok&&l.pos<=t||(l.popState(),l.ok&&l.pos<=t))return l.pos;l.popState()}return l.ok?l.pos:r===m2.FORCE_LEFT?0:(l.popState(),l.ok||(l.popState(),l.ok)?l.pos:0)}return r===m2.RIGHT||r===m2.FORCE_RIGHT?(l.pushRightBeforeInput(),l.pushRightBeforeRequired(),l.pushRightBeforeFilled()?l.pos:r===m2.FORCE_RIGHT?this.displayValue.length:(l.popState(),l.ok||(l.popState(),l.ok)?l.pos:this.nearestInputPos(t,m2.LEFT))):t}totalInputPositions(t,r){t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length);let l=0;return this._forEachBlocksInRange(t,r,(n,a,i,c)=>{l+=n.totalInputPositions(i,c)}),l}maskedBlock(t){return this.maskedBlocks(t)[0]}maskedBlocks(t){const r=this._maskedBlocks[t];return r?r.map(l=>this._blocks[l]):[]}pad(t){const r=new b2;return this._forEachBlocksInRange(0,this.displayValue.length,l=>r.aggregate(l.pad(t))),r}}a0.DEFAULTS={...n0.DEFAULTS,lazy:!0,placeholderChar:"_"},a0.STOP_CHAR="`",a0.ESCAPE_CHAR="\\",a0.InputDefinition=We,a0.FixedDefinition=Q6,y2.MaskedPattern=a0;class Ge extends a0{get _matchFrom(){return this.maxLength-String(this.from).length}constructor(t){super(t)}updateOptions(t){super.updateOptions(t)}_update(t){const{to:r=this.to||0,from:l=this.from||0,maxLength:n=this.maxLength||0,autofix:a=this.autofix,...i}=t;this.to=r,this.from=l,this.maxLength=Math.max(String(r).length,n),this.autofix=a;const c=String(this.from).padStart(this.maxLength,"0"),s=String(this.to).padStart(this.maxLength,"0");let u=0;for(;u<s.length&&s[u]===c[u];)++u;i.mask=s.slice(0,u).replace(/0/g,"\\0")+"0".repeat(this.maxLength-u),super._update(i)}get isComplete(){return super.isComplete&&!!this.value}boundaries(t){let r="",l="";const[,n,a]=t.match(/^(\D*)(\d*)(\D*)/)||[];return a&&(r="0".repeat(n.length)+a,l="9".repeat(n.length)+a),r=r.padEnd(this.maxLength,"0"),l=l.padEnd(this.maxLength,"9"),[r,l]}doPrepareChar(t,r){r===void 0&&(r={});let l;return[t,l]=super.doPrepareChar(t.replace(/\D/g,""),r),t||(l.skip=!this.isComplete),[t,l]}_appendCharRaw(t,r){if(r===void 0&&(r={}),!this.autofix||this.value.length+1>this.maxLength)return super._appendCharRaw(t,r);const l=String(this.from).padStart(this.maxLength,"0"),n=String(this.to).padStart(this.maxLength,"0"),[a,i]=this.boundaries(this.value+t);return Number(i)<this.from?super._appendCharRaw(l[this.value.length],r):Number(a)>this.to?!r.tail&&this.autofix==="pad"&&this.value.length+1<this.maxLength?super._appendCharRaw(l[this.value.length],r).aggregate(this._appendCharRaw(t,r)):super._appendCharRaw(n[this.value.length],r):super._appendCharRaw(t,r)}doValidate(t){const r=this.value;if(r.search(/[^0]/)===-1&&r.length<=this._matchFrom)return!0;const[n,a]=this.boundaries(r);return this.from<=Number(a)&&Number(n)<=this.to&&super.doValidate(t)}pad(t){const r=new b2;if(this.value.length===this.maxLength)return r;const l=this.value,n=this.maxLength-this.value.length;if(n){this.reset();for(let a=0;a<n;++a)r.aggregate(super._appendCharRaw("0",t));l.split("").forEach(a=>this._appendCharRaw(a))}return r}}y2.MaskedRange=Ge;const Un="d{.}`m{.}`Y";class U0 extends a0{static extractPatternOptions(t){const{mask:r,pattern:l,...n}=t;return{...n,mask:p1(r)?r:l}}constructor(t){super(U0.extractPatternOptions({...U0.DEFAULTS,...t}))}updateOptions(t){super.updateOptions(t)}_update(t){const{mask:r,pattern:l,blocks:n,...a}={...U0.DEFAULTS,...t},i=Object.assign({},U0.GET_DEFAULT_BLOCKS());t.min&&(i.Y.from=t.min.getFullYear()),t.max&&(i.Y.to=t.max.getFullYear()),t.min&&t.max&&i.Y.from===i.Y.to&&(i.m.from=t.min.getMonth()+1,i.m.to=t.max.getMonth()+1,i.m.from===i.m.to&&(i.d.from=t.min.getDate(),i.d.to=t.max.getDate())),Object.assign(i,this.blocks,n),super._update({...a,mask:p1(r)?r:l,blocks:i})}doValidate(t){const r=this.date;return super.doValidate(t)&&(!this.isComplete||this.isDateExist(this.value)&&r!=null&&(this.min==null||this.min<=r)&&(this.max==null||r<=this.max))}isDateExist(t){return this.format(this.parse(t,this),this).indexOf(t)>=0}get date(){return this.typedValue}set date(t){this.typedValue=t}get typedValue(){return this.isComplete?super.typedValue:null}set typedValue(t){super.typedValue=t}maskEquals(t){return t===Date||super.maskEquals(t)}optionsIsChanged(t){return super.optionsIsChanged(U0.extractPatternOptions(t))}}U0.GET_DEFAULT_BLOCKS=()=>({d:{mask:Ge,from:1,to:31,maxLength:2},m:{mask:Ge,from:1,to:12,maxLength:2},Y:{mask:Ge,from:1900,to:9999}}),U0.DEFAULTS={...a0.DEFAULTS,mask:Date,pattern:Un,format:(o,t)=>{if(!o)return"";const r=String(o.getDate()).padStart(2,"0"),l=String(o.getMonth()+1).padStart(2,"0"),n=o.getFullYear();return[r,l,n].join(".")},parse:(o,t)=>{const[r,l,n]=o.split(".").map(Number);return new Date(n,l-1,r)}},y2.MaskedDate=U0;class Ke extends n0{constructor(t){super({...Ke.DEFAULTS,...t}),this.currentMask=void 0}updateOptions(t){super.updateOptions(t)}_update(t){super._update(t),"mask"in t&&(this.exposeMask=void 0,this.compiledMasks=Array.isArray(t.mask)?t.mask.map(r=>{const{expose:l,...n}=he(r),a=Y0({overwrite:this._overwrite,eager:this._eager,skipInvalid:this._skipInvalid,...n});return l&&(this.exposeMask=a),a}):[])}_appendCharRaw(t,r){r===void 0&&(r={});const l=this._applyDispatch(t,r);return this.currentMask&&l.aggregate(this.currentMask._appendChar(t,this.currentMaskFlags(r))),l}_applyDispatch(t,r,l){t===void 0&&(t=""),r===void 0&&(r={}),l===void 0&&(l="");const n=r.tail&&r._beforeTailState!=null?r._beforeTailState._value:this.value,a=this.rawInputValue,i=r.tail&&r._beforeTailState!=null?r._beforeTailState._rawInputValue:a,c=a.slice(i.length),s=this.currentMask,u=new b2,d=s==null?void 0:s.state;return this.currentMask=this.doDispatch(t,{...r},l),this.currentMask&&(this.currentMask!==s?(this.currentMask.reset(),i&&(this.currentMask.append(i,{raw:!0}),u.tailShift=this.currentMask.value.length-n.length),c&&(u.tailShift+=this.currentMask.append(c,{raw:!0,tail:!0}).tailShift)):d&&(this.currentMask.state=d)),u}_appendPlaceholder(){const t=this._applyDispatch();return this.currentMask&&t.aggregate(this.currentMask._appendPlaceholder()),t}_appendEager(){const t=this._applyDispatch();return this.currentMask&&t.aggregate(this.currentMask._appendEager()),t}appendTail(t){const r=new b2;return t&&r.aggregate(this._applyDispatch("",{},t)),r.aggregate(this.currentMask?this.currentMask.appendTail(t):super.appendTail(t))}currentMaskFlags(t){var r,l;return{...t,_beforeTailState:((r=t._beforeTailState)==null?void 0:r.currentMaskRef)===this.currentMask&&((l=t._beforeTailState)==null?void 0:l.currentMask)||t._beforeTailState}}doDispatch(t,r,l){return r===void 0&&(r={}),l===void 0&&(l=""),this.dispatch(t,this,r,l)}doValidate(t){return super.doValidate(t)&&(!this.currentMask||this.currentMask.doValidate(this.currentMaskFlags(t)))}doPrepare(t,r){r===void 0&&(r={});let[l,n]=super.doPrepare(t,r);if(this.currentMask){let a;[l,a]=super.doPrepare(l,this.currentMaskFlags(r)),n=n.aggregate(a)}return[l,n]}doPrepareChar(t,r){r===void 0&&(r={});let[l,n]=super.doPrepareChar(t,r);if(this.currentMask){let a;[l,a]=super.doPrepareChar(l,this.currentMaskFlags(r)),n=n.aggregate(a)}return[l,n]}reset(){var t;(t=this.currentMask)==null||t.reset(),this.compiledMasks.forEach(r=>r.reset())}get value(){return this.exposeMask?this.exposeMask.value:this.currentMask?this.currentMask.value:""}set value(t){this.exposeMask?(this.exposeMask.value=t,this.currentMask=this.exposeMask,this._applyDispatch()):super.value=t}get unmaskedValue(){return this.exposeMask?this.exposeMask.unmaskedValue:this.currentMask?this.currentMask.unmaskedValue:""}set unmaskedValue(t){this.exposeMask?(this.exposeMask.unmaskedValue=t,this.currentMask=this.exposeMask,this._applyDispatch()):super.unmaskedValue=t}get typedValue(){return this.exposeMask?this.exposeMask.typedValue:this.currentMask?this.currentMask.typedValue:""}set typedValue(t){if(this.exposeMask){this.exposeMask.typedValue=t,this.currentMask=this.exposeMask,this._applyDispatch();return}let r=String(t);this.currentMask&&(this.currentMask.typedValue=t,r=this.currentMask.unmaskedValue),this.unmaskedValue=r}get displayValue(){return this.currentMask?this.currentMask.displayValue:""}get isComplete(){var t;return!!((t=this.currentMask)!=null&&t.isComplete)}get isFilled(){var t;return!!((t=this.currentMask)!=null&&t.isFilled)}remove(t,r){const l=new b2;return this.currentMask&&l.aggregate(this.currentMask.remove(t,r)).aggregate(this._applyDispatch()),l}get state(){var t;return{...super.state,_rawInputValue:this.rawInputValue,compiledMasks:this.compiledMasks.map(r=>r.state),currentMaskRef:this.currentMask,currentMask:(t=this.currentMask)==null?void 0:t.state}}set state(t){const{compiledMasks:r,currentMaskRef:l,currentMask:n,...a}=t;r&&this.compiledMasks.forEach((i,c)=>i.state=r[c]),l!=null&&(this.currentMask=l,this.currentMask.state=n),super.state=a}extractInput(t,r,l){return this.currentMask?this.currentMask.extractInput(t,r,l):""}extractTail(t,r){return this.currentMask?this.currentMask.extractTail(t,r):super.extractTail(t,r)}doCommit(){this.currentMask&&this.currentMask.doCommit(),super.doCommit()}nearestInputPos(t,r){return this.currentMask?this.currentMask.nearestInputPos(t,r):super.nearestInputPos(t,r)}get overwrite(){return this.currentMask?this.currentMask.overwrite:this._overwrite}set overwrite(t){this._overwrite=t}get eager(){return this.currentMask?this.currentMask.eager:this._eager}set eager(t){this._eager=t}get skipInvalid(){return this.currentMask?this.currentMask.skipInvalid:this._skipInvalid}set skipInvalid(t){this._skipInvalid=t}get autofix(){return this.currentMask?this.currentMask.autofix:this._autofix}set autofix(t){this._autofix=t}maskEquals(t){return Array.isArray(t)?this.compiledMasks.every((r,l)=>{if(!t[l])return;const{mask:n,...a}=t[l];return Ye(r,a)&&r.maskEquals(n)}):super.maskEquals(t)}typedValueEquals(t){var r;return!!((r=this.currentMask)!=null&&r.typedValueEquals(t))}}Ke.DEFAULTS={...n0.DEFAULTS,dispatch:(o,t,r,l)=>{if(!t.compiledMasks.length)return;const n=t.rawInputValue,a=t.compiledMasks.map((i,c)=>{const s=t.currentMask===i,u=s?i.displayValue.length:i.nearestInputPos(i.displayValue.length,m2.FORCE_LEFT);return i.rawInputValue!==n?(i.reset(),i.append(n,{raw:!0})):s||i.remove(u),i.append(o,t.currentMaskFlags(r)),i.appendTail(l),{index:c,weight:i.rawInputValue.length,totalInputPositions:i.totalInputPositions(0,Math.max(u,i.nearestInputPos(i.displayValue.length,m2.FORCE_LEFT)))}});return a.sort((i,c)=>c.weight-i.weight||c.totalInputPositions-i.totalInputPositions),t.compiledMasks[a[0].index]}},y2.MaskedDynamic=Ke;class Qe extends a0{constructor(t){super({...Qe.DEFAULTS,...t})}updateOptions(t){super.updateOptions(t)}_update(t){const{enum:r,...l}=t;if(r){const n=r.map(c=>c.length),a=Math.min(...n),i=Math.max(...n)-a;l.mask="*".repeat(a),i&&(l.mask+="["+"*".repeat(i)+"]"),this.enum=r}super._update(l)}_appendCharRaw(t,r){r===void 0&&(r={});const l=Math.min(this.nearestInputPos(0,m2.FORCE_RIGHT),this.value.length),n=this.enum.filter(a=>this.matchValue(a,this.unmaskedValue+t,l));if(n.length){n.length===1&&this._forEachBlocksInRange(0,this.value.length,(i,c)=>{const s=n[0][c];c>=this.value.length||s===i.value||(i.reset(),i._appendChar(s,r))});const a=super._appendCharRaw(n[0][this.value.length],r);return n.length===1&&n[0].slice(this.unmaskedValue.length).split("").forEach(i=>a.aggregate(super._appendCharRaw(i))),a}return new b2({skip:!this.isComplete})}extractTail(t,r){return t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),new F0("",t)}remove(t,r){if(t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),t===r)return new b2;const l=Math.min(super.nearestInputPos(0,m2.FORCE_RIGHT),this.value.length);let n;for(n=t;n>=0&&!(this.enum.filter(c=>this.matchValue(c,this.value.slice(l,n),l)).length>1);--n);const a=super.remove(n,r);return a.tailShift+=n-t,a}get isComplete(){return this.enum.indexOf(this.value)>=0}}Qe.DEFAULTS={...a0.DEFAULTS,matchValue:(o,t,r)=>o.indexOf(t,r)===r},y2.MaskedEnum=Qe;class qn extends n0{updateOptions(t){super.updateOptions(t)}_update(t){super._update({...t,validate:t.mask})}}y2.MaskedFunction=qn;var X6;class m0 extends n0{constructor(t){super({...m0.DEFAULTS,...t})}updateOptions(t){super.updateOptions(t)}_update(t){super._update(t),this._updateRegExps()}_updateRegExps(){const t="^"+(this.allowNegative?"[+|\\-]?":""),r="\\d*",l=(this.scale?"("+H9(this.radix)+"\\d{0,"+this.scale+"})?":"")+"$";this._numberRegExp=new RegExp(t+r+l),this._mapToRadixRegExp=new RegExp("["+this.mapToRadix.map(H9).join("")+"]","g"),this._thousandsSeparatorRegExp=new RegExp(H9(this.thousandsSeparator),"g")}_removeThousandsSeparators(t){return t.replace(this._thousandsSeparatorRegExp,"")}_insertThousandsSeparators(t){const r=t.split(this.radix);return r[0]=r[0].replace(/\B(?=(\d{3})+(?!\d))/g,this.thousandsSeparator),r.join(this.radix)}doPrepareChar(t,r){r===void 0&&(r={});const[l,n]=super.doPrepareChar(this._removeThousandsSeparators(this.scale&&this.mapToRadix.length&&(r.input&&r.raw||!r.input&&!r.raw)?t.replace(this._mapToRadixRegExp,this.radix):t),r);return t&&!l&&(n.skip=!0),l&&!this.allowPositive&&!this.value&&l!=="-"&&n.aggregate(this._appendChar("-")),[l,n]}_separatorsCount(t,r){r===void 0&&(r=!1);let l=0;for(let n=0;n<t;++n)this._value.indexOf(this.thousandsSeparator,n)===n&&(++l,r&&(t+=this.thousandsSeparator.length));return l}_separatorsCountFromSlice(t){return t===void 0&&(t=this._value),this._separatorsCount(this._removeThousandsSeparators(t).length,!0)}extractInput(t,r,l){return t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),[t,r]=this._adjustRangeWithSeparators(t,r),this._removeThousandsSeparators(super.extractInput(t,r,l))}_appendCharRaw(t,r){r===void 0&&(r={});const l=r.tail&&r._beforeTailState?r._beforeTailState._value:this._value,n=this._separatorsCountFromSlice(l);this._value=this._removeThousandsSeparators(this.value);const a=this._value;this._value+=t;const i=this.number;let c=!isNaN(i),s=!1;if(c){let p;this.min!=null&&this.min<0&&this.number<this.min&&(p=this.min),this.max!=null&&this.max>0&&this.number>this.max&&(p=this.max),p!=null&&(this.autofix?(this._value=this.format(p,this).replace(m0.UNMASKED_RADIX,this.radix),s||(s=a===this._value&&!r.tail)):c=!1),c&&(c=!!this._value.match(this._numberRegExp))}let u;c?u=new b2({inserted:this._value.slice(a.length),rawInserted:s?"":t,skip:s}):(this._value=a,u=new b2),this._value=this._insertThousandsSeparators(this._value);const d=r.tail&&r._beforeTailState?r._beforeTailState._value:this._value,C=this._separatorsCountFromSlice(d);return u.tailShift+=(C-n)*this.thousandsSeparator.length,u}_findSeparatorAround(t){if(this.thousandsSeparator){const r=t-this.thousandsSeparator.length+1,l=this.value.indexOf(this.thousandsSeparator,r);if(l<=t)return l}return-1}_adjustRangeWithSeparators(t,r){const l=this._findSeparatorAround(t);l>=0&&(t=l);const n=this._findSeparatorAround(r);return n>=0&&(r=n+this.thousandsSeparator.length),[t,r]}remove(t,r){t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length),[t,r]=this._adjustRangeWithSeparators(t,r);const l=this.value.slice(0,t),n=this.value.slice(r),a=this._separatorsCount(l.length);this._value=this._insertThousandsSeparators(this._removeThousandsSeparators(l+n));const i=this._separatorsCountFromSlice(l);return new b2({tailShift:(i-a)*this.thousandsSeparator.length})}nearestInputPos(t,r){if(!this.thousandsSeparator)return t;switch(r){case m2.NONE:case m2.LEFT:case m2.FORCE_LEFT:{const l=this._findSeparatorAround(t-1);if(l>=0){const n=l+this.thousandsSeparator.length;if(t<n||this.value.length<=n||r===m2.FORCE_LEFT)return l}break}case m2.RIGHT:case m2.FORCE_RIGHT:{const l=this._findSeparatorAround(t);if(l>=0)return l+this.thousandsSeparator.length}}return t}doCommit(){if(this.value){const t=this.number;let r=t;this.min!=null&&(r=Math.max(r,this.min)),this.max!=null&&(r=Math.min(r,this.max)),r!==t&&(this.unmaskedValue=this.format(r,this));let l=this.value;this.normalizeZeros&&(l=this._normalizeZeros(l)),this.padFractionalZeros&&this.scale>0&&(l=this._padFractionalZeros(l)),this._value=l}super.doCommit()}_normalizeZeros(t){const r=this._removeThousandsSeparators(t).split(this.radix);return r[0]=r[0].replace(/^(\D*)(0*)(\d*)/,(l,n,a,i)=>n+i),t.length&&!/\d$/.test(r[0])&&(r[0]=r[0]+"0"),r.length>1&&(r[1]=r[1].replace(/0*$/,""),r[1].length||(r.length=1)),this._insertThousandsSeparators(r.join(this.radix))}_padFractionalZeros(t){if(!t)return t;const r=t.split(this.radix);return r.length<2&&r.push(""),r[1]=r[1].padEnd(this.scale,"0"),r.join(this.radix)}doSkipInvalid(t,r,l){r===void 0&&(r={});const n=this.scale===0&&t!==this.thousandsSeparator&&(t===this.radix||t===m0.UNMASKED_RADIX||this.mapToRadix.includes(t));return super.doSkipInvalid(t,r,l)&&!n}get unmaskedValue(){return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix,m0.UNMASKED_RADIX)}set unmaskedValue(t){super.unmaskedValue=t}get typedValue(){return this.parse(this.unmaskedValue,this)}set typedValue(t){this.rawInputValue=this.format(t,this).replace(m0.UNMASKED_RADIX,this.radix)}get number(){return this.typedValue}set number(t){this.typedValue=t}get allowNegative(){return this.min!=null&&this.min<0||this.max!=null&&this.max<0}get allowPositive(){return this.min!=null&&this.min>0||this.max!=null&&this.max>0}typedValueEquals(t){return(super.typedValueEquals(t)||m0.EMPTY_VALUES.includes(t)&&m0.EMPTY_VALUES.includes(this.typedValue))&&!(t===0&&this.value==="")}}X6=m0,m0.UNMASKED_RADIX=".",m0.EMPTY_VALUES=[...n0.EMPTY_VALUES,0],m0.DEFAULTS={...n0.DEFAULTS,mask:Number,radix:",",thousandsSeparator:"",mapToRadix:[X6.UNMASKED_RADIX],min:Number.MIN_SAFE_INTEGER,max:Number.MAX_SAFE_INTEGER,scale:2,normalizeZeros:!0,padFractionalZeros:!1,parse:Number,format:o=>o.toLocaleString("en-US",{useGrouping:!1,maximumFractionDigits:20})},y2.MaskedNumber=m0;const B9={MASKED:"value",UNMASKED:"unmaskedValue",TYPED:"typedValue"};function J6(o,t,r){t===void 0&&(t=B9.MASKED),r===void 0&&(r=B9.MASKED);const l=Y0(o);return n=>l.runIsolated(a=>(a[t]=n,a[r]))}function Wn(o,t,r,l){return J6(t,r,l)(o)}y2.PIPE_TYPE=B9,y2.createPipe=J6,y2.pipe=Wn;class Gn extends a0{get repeatFrom(){var t;return(t=Array.isArray(this.repeat)?this.repeat[0]:this.repeat===1/0?0:this.repeat)!=null?t:0}get repeatTo(){var t;return(t=Array.isArray(this.repeat)?this.repeat[1]:this.repeat)!=null?t:1/0}constructor(t){super(t)}updateOptions(t){super.updateOptions(t)}_update(t){var r,l,n;const{repeat:a,...i}=he(t);this._blockOpts=Object.assign({},this._blockOpts,i);const c=Y0(this._blockOpts);this.repeat=(r=(l=a??c.repeat)!=null?l:this.repeat)!=null?r:1/0,super._update({mask:"m".repeat(Math.max(this.repeatTo===1/0&&((n=this._blocks)==null?void 0:n.length)||0,this.repeatFrom)),blocks:{m:c},eager:c.eager,overwrite:c.overwrite,skipInvalid:c.skipInvalid,lazy:c.lazy,placeholderChar:c.placeholderChar,displayChar:c.displayChar})}_allocateBlock(t){if(t<this._blocks.length)return this._blocks[t];if(this.repeatTo===1/0||this._blocks.length<this.repeatTo)return this._blocks.push(Y0(this._blockOpts)),this.mask+="m",this._blocks[this._blocks.length-1]}_appendCharRaw(t,r){r===void 0&&(r={});const l=new b2;for(let s=(n=(a=this._mapPosToBlock(this.displayValue.length))==null?void 0:a.index)!=null?n:Math.max(this._blocks.length-1,0),u,d;u=(i=this._blocks[s])!=null?i:d=!d&&this._allocateBlock(s);++s){var n,a,i,c;const C=u._appendChar(t,{...r,_beforeTailState:(c=r._beforeTailState)==null||(c=c._blocks)==null?void 0:c[s]});if(C.skip&&d){this._blocks.pop(),this.mask=this.mask.slice(1);break}if(l.aggregate(C),C.consumed)break}return l}_trimEmptyTail(t,r){var l,n;t===void 0&&(t=0);const a=Math.max(((l=this._mapPosToBlock(t))==null?void 0:l.index)||0,this.repeatFrom,0);let i;r!=null&&(i=(n=this._mapPosToBlock(r))==null?void 0:n.index),i==null&&(i=this._blocks.length-1);let c=0;for(let s=i;a<=s&&!this._blocks[s].unmaskedValue;--s,++c);c&&(this._blocks.splice(i-c+1,c),this.mask=this.mask.slice(c))}reset(){super.reset(),this._trimEmptyTail()}remove(t,r){t===void 0&&(t=0),r===void 0&&(r=this.displayValue.length);const l=super.remove(t,r);return this._trimEmptyTail(t,r),l}totalInputPositions(t,r){return t===void 0&&(t=0),r==null&&this.repeatTo===1/0?1/0:super.totalInputPositions(t,r)}get state(){return super.state}set state(t){this._blocks.length=t._blocks.length,this.mask=this.mask.slice(0,this._blocks.length),super.state=t}}y2.RepeatBlock=Gn;try{globalThis.IMask=y2}catch{}var Kn={mask:void 0,prepare:Function,prepareChar:Function,validate:Function,commit:Function,overwrite:{type:Boolean,required:!1,default:void 0},eager:{required:!1,default:void 0,validator:o=>["append","remove"].includes(o)||typeof o=="boolean"},skipInvalid:{type:Boolean,required:!1,default:void 0},placeholderChar:String,displayChar:String,lazy:{type:Boolean,required:!1,default:void 0},definitions:Object,blocks:Object,enum:Array,maxLength:Number,from:Number,to:Number,pattern:String,format:Function,parse:Function,autofix:{required:!1,default:void 0,validator:o=>o==="pad"||typeof o=="boolean"},radix:String,thousandsSeparator:String,mapToRadix:Array,scale:Number,normalizeZeros:{type:Boolean,required:!1,default:void 0},padFractionalZeros:{type:Boolean,required:!1,default:void 0},min:[Number,Date],max:[Number,Date],dispatch:Function};function Qn(o,t){let{emit:r,onAccept:l,onComplete:n,defaultValue:a,defaultUnmaskedValue:i,defaultTypedValue:c}=t===void 0?{}:t;const s=e.isRef(o)?o:e.ref(o),u=e.ref(),d=e.ref(),C=e.ref(""),p=e.ref(""),h=e.ref();let f,m=C.value,k=p.value,M=h.value;function v(){M=h.value=d.value.typedValue,k=p.value=d.value.unmaskedValue,m=C.value=d.value.value}function b(_){v(),r&&(r("accept",C.value,_),r("accept:masked",C.value,_),r("accept:typed",h.value,_),r("accept:unmasked",p.value,_)),l==null||l(_)}function L(_){r&&(r("complete",d.value.value,_),r("complete:masked",d.value.value,_),r("complete:typed",d.value.typedValue,_),r("complete:unmasked",d.value.unmaskedValue,_)),n==null||n(_)}const T=()=>{!d.value||p.value===void 0||(k!==p.value&&(d.value.unmaskedValue=p.value,d.value.unmaskedValue!==p.value&&b()),k=void 0)};e.watch(p,T);const g=()=>{!d.value||C.value===void 0||(m!==C.value&&(d.value.value=C.value,d.value.value!==C.value&&b()),m=void 0)};e.watch(C,g);const H=()=>{!d.value||h.value===void 0||(M!==h.value&&(d.value.typedValue=h.value,d.value.masked.typedValueEquals(h.value)||b()),M=void 0)};e.watch(h,H);function S(){f=u.value;const _=s.value;!f||!(_!=null&&_.mask)||(d.value=y2(f,_),a!==void 0&&(C.value=a),i!==void 0&&(p.value=i),c!==void 0&&(h.value=c),T(),g(),H(),v(),d.value.on("accept",b).on("complete",L))}function Z(){var _;(_=d.value)==null||_.destroy(),d.value=void 0}return e.onMounted(S),e.onUnmounted(Z),e.watch([u,s],()=>{const _=u.value,I=s.value;(!(I!=null&&I.mask)||_!==f)&&Z(),_&&(d.value?d.value.updateOptions(I):S())}),{el:u,mask:e.readonly(d),masked:C,unmasked:p,typed:h}}function Xn(o,t){return o={...o},Object.keys(o).forEach(r=>{(o[r]===void 0||t.includes(r))&&delete o[r]}),o}const Jn=["typed","unmasked","value","modelValue"];var ea=e.defineComponent({name:"imask-input",inheritAttrs:!1,props:{modelValue:String,value:String,unmasked:String,typed:{validator:()=>!0},...Kn},emits:["update:modelValue","update:masked","update:value","update:unmasked","update:typed","accept","accept:value","accept:masked","accept:unmasked","accept:typed","complete","complete:value","complete:masked","complete:unmasked","complete:typed"],setup(o,t){let{attrs:r,emit:l}=t;const{el:n,mask:a,masked:i,unmasked:c,typed:s}=Qn(Xn(o,Jn),{emit:l,onAccept:h=>{const f=i.value;l("accept:value",f,h),l("update:value",f,h),l("update:masked",f,h),l("update:modelValue",f,h),l("update:unmasked",c.value,h),l("update:typed",s.value,h)},onComplete:h=>{l("complete:value",i.value,h)}}),u=e.toRef(o,"value"),d=e.toRef(o,"modelValue"),C=e.toRef(o,"unmasked"),p=e.toRef(o,"typed");return i.value=d.value||u.value||"",c.value=C.value||"",s.value=p.value,e.watch(u,h=>i.value=h),e.watch(d,h=>i.value=h),e.watch(C,h=>c.value=h),e.watch(p,h=>s.value=h),()=>{const h={...r,value:o.value!=null?o.value:o.modelValue!=null?o.modelValue:a.value?a.value.displayValue:"",ref:n};return o.mask||(h.onInput=f=>{l("update:modelValue",f.target.value),l("update:value",f.target.value)}),e.h("input",h)}}}),ta=ea;const oa=["dir"],ra=["for"],la={class:"mc-field-text__inner"},na={class:"mc-field-text__main"},aa={key:0,class:"mc-field-text__prepend"},ia={class:"mc-field-text__input-wrapper"},sa=["value","maxlength"],ca=["value"],da=["value","type","readonly","maxlength"],ua={key:0,class:"mc-field-text__right"},Ca={key:0,class:"mc-field-text__footer"},pa={key:1},Y1=e.defineComponent({__name:"McFieldText",props:{modelValue:{type:[String,Number],default:null},type:{type:String,default:P2.Text},title:{type:String,default:null},mask:{type:String,default:null},helpText:{type:String,default:null},disabled:{type:Boolean,default:!1},errors:{type:Array,default:null},placeholder:{type:String,default:null},name:{type:String,required:!0},dateMaskPlaceholder:{type:Object,default:()=>({})},maxLength:{type:Number,default:null},copy:{type:Boolean,default:!1},autocomplete:{type:String,default:h3.On},readOnly:{type:Boolean,default:!1},tabindex:{type:[String,Number]},passwordTooltip:{type:String,default:"Show/Hide"},passwordHideTooltip:{type:String,default:null},clearOutput:{type:Boolean,default:!1},maskOptions:{type:Object,default:null},required:{type:Boolean,default:!1},locale:{type:String,default:null},isMobile:{type:Boolean,default:!1},maxDecimals:{type:Number,default:2},dir:{type:String,default:g0.Ltr}},emits:["update:modelValue","keydown","copy"],setup(o,{emit:t}){const{textarea:r}=b8(),l=t,n=e.useSlots(),a=e.useAttrs(),i=o,c=e.ref(0),s=e.ref(0),u=e.ref(i.type),d=Z0(i.errors),C=e.computed(()=>i.dir===g0.Rtl),p=e.computed(()=>({"mc-field-text":!0,"mc-field-text--error":!!d.errorText.value,"mc-field-text--textarea":k.value,"mc-field-text--textarea-autosize":M.value,"mc-field-text--disabled":i.disabled,"mc-field-text--copy":i.copy,"mc-field-text--rtl":C.value})),h=e.computed(()=>`${i.title}${i.required?" *":""}`),f=e.computed(()=>u.value===P2.Date),m=e.computed(()=>!!i.mask||!!i.maskOptions||f.value),k=e.computed(()=>i.type===P2.Textarea),M=e.computed(()=>i.type===P2.TextareaAutosize),v=e.computed(()=>i.type===P2.Password),b=e.computed(()=>i.type===P2.AmountFormat),L=e.computed(()=>!!i.maxLength&&(k.value||M.value)),T=e.computed(()=>u.value===P2.Password),g=e.computed(()=>T.value?"visibility":"visibility_off"),H=e.computed(()=>i.modelValue?String(i.modelValue).length:0),S=e.computed(()=>`${H.value}/${i.maxLength}`),Z=e.computed(()=>i.maxLength<+H.value?"red":"dark-gray"),_=e.computed(()=>({mask:Date,autofix:!0,blocks:{d:{mask:y2.MaskedRange,placeholderChar:i.dateMaskPlaceholder.date||"d",from:1,to:31,maxLength:2},m:{mask:y2.MaskedRange,placeholderChar:i.dateMaskPlaceholder.month||"m",from:1,to:12,maxLength:2},Y:{mask:y2.MaskedRange,placeholderChar:i.dateMaskPlaceholder.year||"y",from:1900,to:2999,maxLength:4}}})),I=e.computed(()=>({...x.value,mask:i.mask,lazy:!1,overwrite:!1,unmask:i.clearOutput,definitions:{"#":/./},readonly:i.readOnly,maxlength:i.maxLength,type:"tel",...a,...i.maskOptions??{},...f.value?_.value:{}})),A=e.computed({get(){return b.value&&!C.value?N(String(i.modelValue)):i.modelValue},set(U){d.toggleErrorVisible(),l("update:modelValue",U)}}),Q=U=>{A.value=n2(U)},x=e.computed(()=>({style:F.value,placeholder:i.placeholder,disabled:i.disabled,name:i.name,id:i.name,autocomplete:i.autocomplete,tabindex:i.tabindex,...a,class:["mc-field-text__input",a.class||""].join(" ")})),F=e.computed(()=>{const U=parseInt(i0[150]);let l2={};if(k.value||M.value){const c2=L.value?"400":"150";l2={paddingBottom:`${+i0[c2].replace("px","")-1}px`}}return{paddingInlineStart:c.value&&`${c.value+U}px`,paddingInlineEnd:s.value&&`${s.value+U}px`,...!k.value&&!M.value?{boxSizing:"border-box"}:{},...l2}});e.onMounted(()=>{y()});const D=U=>{if(U&&i.maxDecimals){const[l2,c2]=U.split(".");if((c2==null?void 0:c2.length)>i.maxDecimals)return`${l2}.${c2.slice(0,i.maxDecimals)}`}return U},Y=U=>{let l2=U;const[c2]=U||[];return U.length>1&&+c2==0&&U.indexOf(".")===-1&&(l2=U.slice(1)),l2},n2=U=>{var w,G,r2,q;const l2=U.target;let c2=f.value&&l2&&l2.value?(w=l2.value)==null?void 0:w.substring(0,10):l2.value,P=(G=K(l2))==null?void 0:G.start,e2=E(c2);switch(i.type){case P2.Num:{let[p2]=/-?\d*[\.]?\d*/.exec(String(c2))||[];p2=D(p2),p2=Y(p2),c2=p2,l2.value=p2;break}case P2.Int:{let[p2]=/-?\d*/.exec(String(l2.value))||[];p2=Y(p2),c2=p2,l2.value=p2;break}case P2.AmountFormat:{c2=D(c2),c2=Y(c2),e2=E(c2);const p2=parseFloat(e2),V=e2.replace(/ /gm,"");c2=e2?String(p2)===V?p2:V||p2||e2:null;const z=N(e2);l2.value=C.value?z.replace(/ /gm,""):z;const J=((q=(r2=l2.value)==null?void 0:r2.slice(0,P).replace(/[^ ]/gm,""))==null?void 0:q.length)||0;X(l2,P+J,P+J);break}case P2.Uppercase:{c2=c2==null?void 0:c2.toUpperCase(),l2.value=c2,X(l2,P,P);break}case P2.Lowercase:{c2=c2==null?void 0:c2.toLowerCase(),l2.value=c2,X(l2,P,P);break}case P2.Password:c2=c2==null?void 0:c2.replace(/ /gm,""),l2.value=c2,X(l2,P,P);break;case P2.PhoneNumber:c2.length===0&&(c2="+"),c2.charAt(0)!=="+"&&(c2="+"+c2),c2=c2.replace(/(?!^)\D/g,""),l2.value=c2;break}return c2},$=U=>{var l2;switch(i.type){case P2.AmountFormat:case P2.Num:{U.key==="."&&typeof i.modelValue=="string"&&((l2=i.modelValue)!=null&&l2.includes("."))&&U.preventDefault();break}}l("keydown",U)},E=U=>{var c2,P;if(!U)return U;const[l2]=/-?\d*[\.]?\d*/.exec((P=(c2=String(U))==null?void 0:c2.replace(/ /gm,""))==null?void 0:P.trim())||[];return l2},X=(U,l2,c2)=>{U.setSelectionRange&&(U.focus(),U.setSelectionRange(l2,c2))},K=U=>U.selectionStart||U.selectionStart===0?{start:U.selectionStart,end:U.selectionEnd}:{start:0,end:0},N=U=>{var G;const l2=E(U),c2=!!((G=String(l2))!=null&&G.match(/\./)),[P,e2]=String(l2).replace(/[^\d\.-]/g,"").replace(/\B(?=(?:\d{3})+(?!\d))/g," ").split("."),w=[P,(e2==null?void 0:e2.replace(/ /gm,""))||""];return c2?w.join("."):w.filter(r2=>!!r2).join(".")},y=()=>{c.value=+O("prepend"),s.value=+O("append")},O=U=>{const l2=parseInt(i0[50]);let c2=n[U]?(n[U]||[]).reduce(e2=>e2+l2,0)+l2:l2;if(U==="prepend")return c2;const P=parseInt(i0[300]);return c2=c2?c2+l2:l2,i.copy&&(c2+=P),v.value&&(c2+=P),c2},t2=()=>{l("copy",i.modelValue)},B=()=>{u.value=T.value?P2.Text:P2.Password};return(U,l2)=>(e.openBlock(),e.createElementBlock("div",{ref:"field",dir:i.dir,class:e.normalizeClass(p.value)},[e.createElementVNode("label",{for:o.name,class:"mc-field-text__header"},[e.renderSlot(U.$slots,"header",{},()=>[o.title?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"max-width":"100%",weight:e.unref(J2).Medium},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h.value),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0)])],8,ra),e.createElementVNode("div",la,[e.createElementVNode("div",na,[U.$slots.prepend?(e.openBlock(),e.createElementBlock("div",aa,[e.renderSlot(U.$slots,"prepend")])):e.createCommentVNode("",!0),e.createElementVNode("label",ia,[k.value?(e.openBlock(),e.createElementBlock("textarea",e.mergeProps({key:0,value:A.value},x.value,{maxlength:o.maxLength,rows:"1",onInput:Q}),null,16,sa)):M.value?(e.openBlock(),e.createElementBlock("textarea",e.mergeProps({key:1,value:A.value,ref_key:"textarea",ref:r},x.value,{onInput:Q}),null,16,ca)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:2},[m.value?(e.openBlock(),e.createBlock(e.unref(ta),e.mergeProps({key:0,value:A.value},I.value,{onInput:Q}),null,16,["value"])):(e.openBlock(),e.createElementBlock("input",e.mergeProps({key:1,value:A.value,ref:"input"},x.value,{type:u.value,readonly:i.readOnly,maxlength:o.maxLength,onKeydown:$,onInput:Q}),null,16,da))],64))]),U.$slots.append||o.copy||v.value?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["mc-field-text__append",{"mc-field-text__append--indent-bottom":L.value}])},[e.renderSlot(U.$slots,"append"),o.copy?(e.openBlock(),e.createBlock(e.unref(E2),{key:0,variation:"black-link",size:e.unref(t0).MCompact,onClick:e.withModifiers(t2,["prevent"])},{"icon-append":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:"copy"})]),_:1},8,["size"])):e.createCommentVNode("",!0),v.value?(e.openBlock(),e.createBlock(e.unref(V1),{key:1,content:T.value?i.passwordTooltip:i.passwordHideTooltip||i.passwordTooltip},{default:e.withCtx(()=>[e.createVNode(e.unref(E2),{variation:"black-link",size:e.unref(t0).MCompact,tabindex:"-1",type:e.unref(y3).Button,onClick:e.withModifiers(B,["prevent"])},{"icon-append":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:g.value},null,8,["name"])]),_:1},8,["size","type"])]),_:1},8,["content"])):e.createCommentVNode("",!0)],2)):e.createCommentVNode("",!0),L.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:2,class:"mc-field-text__char-counter",variation:e.unref(F2).Overline,"text-align":e.unref(J0).Right,color:Z.value},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(S.value),1)]),_:1},8,["variation","text-align","color"])):e.createCommentVNode("",!0)]),U.$slots.right?(e.openBlock(),e.createElementBlock("div",ua,[e.renderSlot(U.$slots,"right")])):e.createCommentVNode("",!0)]),e.unref(d).errorText.value||i.helpText||U.$slots.footer?(e.openBlock(),e.createElementBlock("div",Ca,[e.unref(d).errorText.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",color:"red",variation:e.unref(F2).Overline,class:"mc-field-text__error-text","html-data":e.unref(d).errorText.value},null,8,["variation","html-data"])):e.createCommentVNode("",!0),e.unref(d).errorText.value?(e.openBlock(),e.createElementBlock("br",pa)):e.createCommentVNode("",!0),e.renderSlot(U.$slots,"footer",{},()=>[i.helpText?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",variation:e.unref(F2).Overline,color:"gray","max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.helpText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)],10,oa))}}),ha={class:"mc-field-toggle__content"},ma={class:"mc-field-toggle__text"},fa={class:"mc-field-toggle__wrapper"},ka=e.defineComponent({__name:"McFieldToggle",props:{modelValue:{type:[Boolean,String,Number],default:null},checkedValue:{type:[Boolean,String,Number],default:!0},uncheckedValue:{type:[Boolean,String,Number],default:!1},coloredText:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},textPosition:{type:String,default:"left"},color:{type:String,default:"purple"},errors:{type:Array,default:()=>[]},tabindex:{type:[String,Number]}},emits:["update:modelValue"],setup(o,{emit:t}){const r=t,l=o,n=Z0(l.errors),a=e.computed(()=>l.modelValue===l.checkedValue),i=e.computed(()=>({"mc-field-toggle":!0,"mc-field-toggle--checked":a.value,"mc-field-toggle--disabled":l.disabled,"mc-field-toggle--colored-text":l.coloredText,[`mc-field-toggle--text-position-${l.textPosition}`]:!!l.textPosition})),c=e.computed(()=>{let d,C="initial";switch(l.color){case"purple":{d="light-purple";break}default:d=l.color,C="50%"}return{"--mc-field-toggle-color":l.color&&v2[l.color],"--mc-field-toggle-disabled-color":d&&v2[d],"--mc-field-toggle-saturate-value":C}}),s=e.computed(()=>({checked:a.value,disabled:l.disabled,tabindex:l.tabindex,class:"mc-field-toggle__field",type:"checkbox"})),u=d=>{const p=d.target.checked;n.toggleErrorVisible(),r("update:modelValue",p?l.checkedValue:l.uncheckedValue)};return(d,C)=>(e.openBlock(),e.createElementBlock("div",ha,[e.createElementVNode("label",{class:e.normalizeClass(i.value),style:e.normalizeStyle(c.value)},[e.createElementVNode("span",ma,[e.renderSlot(d.$slots,"default")]),e.createElementVNode("span",fa,[e.createElementVNode("input",e.mergeProps(s.value,{onInput:u}),null,16),C[0]||(C[0]=e.createElementVNode("span",{class:"mc-field-toggle__slider"},null,-1))])],6),e.unref(n).errorText.value?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,"tag-name":"div",color:"red",variation:e.unref(F2).Overline,"max-width":"100%"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(n).errorText.value),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)]))}}),ya={class:"el-infinity-loading__wrapper"},ga=["id"],e4=e.defineComponent({__name:"McInfinityLoadingTrigger",props:{overlap:{type:Number,default:100},active:{type:Boolean,default:!1},root:{type:String,default:null}},emits:["loading","hide"],setup(o,{emit:t}){const r=t,l=o,n=e.ref(),a=e.ref(),i=e.ref(`indicator_${Date.now()}`);e.onMounted(()=>{c()}),e.onBeforeUnmount(()=>{s()});const c=()=>{var u;a.value=document.getElementById(i.value),n.value=new IntersectionObserver(([d])=>(d.intersectionRatio===1||d.isIntersecting)&&l.active?r("loading"):r("hide"),{...l.root?{root:(u=a.value)==null?void 0:u.closest(l.root)}:{},rootMargin:`${l.overlap}px`,threshold:.1}),a.value&&n.value.observe(a.value)},s=()=>{n.value&&n.value.disconnect(),n.value=null};return e.watch(()=>l.active,u=>{s(),u&&c()}),(u,d)=>(e.openBlock(),e.createElementBlock("section",ya,[e.createElementVNode("div",{id:i.value,class:"el-infinity-loading"},null,8,ga)]))}}),t4="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABQCAYAAABh05mTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIwSURBVHgB7dzBTRtBFMbxN0OQOLoEVxCziYi0RBG4hFQQd5B0gNNB0oFTASXgKIeNHJLBqWBLyBEJdl5m1ogDB/xW+gBp+H4Hs0I7svbvsQ9r64kQEREREdGDcENODiGMLq/9J/HyQVTGUpgU4yKqfDs8mHwZuM6mCWHsOn+qIvtSvnZvJ1bJP8vJL8Qq7pyoaA7Yqnezw1cvv0thVn/+HnWqi/wuu+zcafrX1LLOtBNXq7DfeR/SYStXcVrXVSuFyu847XxIYUbXGqfvDqrltjVeDKL3R5sjXZYcMKurqvVOFvl41/mJZY0pojoZ9QfOtfIMpM/9/rPw9rq3MEWk+zEiACMCMCIAIwIwIgAjAjAiACMCMCIAIwIwIgAjAjAigP3OdqYyb87XcymdDjudOxFg2E50Mq9fTz7LI2l+r0/y7n+y5zXiTgRgRABGBGBEAEYEYEQARgRgRABGBGBEAEYEYEQARgRgRABGBGBEAEYEMP3wfeid3mIY76hzJwLwO5b7nteIOxGAEQEYEYARARgRgBEBGBGAEQEYEYARARgRgBEBGBGAEQFMEZ1uZiLkCR3yLLhx/3hz3dvYBmloXOe/UWXWNGEsBcsjXdIVH+fjLkbT7B9TxLqfDeOW/U7c9Wc/foVjKVCTryv6s80IL128fVNdWNaZx1z1c8KiDyXOCLsrzwzTq/jeOgNo0MC17Of5+mN6lWYqrryZYU7a9LjY8/GrdU4YERERERE9oP9txaCZu8fa7wAAAABJRU5ErkJggg==",ba={class:"mc-no-data__wrapper"},La=["src"],Ma={key:3,class:"mc-no-data__text"},wa={key:4,class:"mc-no-data__actions"},o4=e.defineComponent({__name:"McNoData",props:{img:{type:String,default:t4},icon:{type:String,default:null},title:{type:String,default:""},text:{type:String,default:""},href:{type:String,default:""},btnName:{type:String,default:""},noAction:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},variation:{type:String,default:"small"}},emits:["click"],setup(o,{emit:t}){const r=t,l=o,n=e.computed(()=>({class:"mt-200",loading:l.loading,...l.href?{href:l.href}:{}})),a=e.computed(()=>l.href?{}:{click:()=>s()}),i=e.computed(()=>l.variation==="large"?{variation:F2.Subtitle,weight:J2.SemiBold}:{}),c=e.computed(()=>({"mc-no-data":!0,[`mc-no-data--variation-${l.variation}`]:!!l.variation})),s=()=>{r("click")};return(u,d)=>(e.openBlock(),e.createElementBlock("div",ba,[e.createElementVNode("section",{class:e.normalizeClass(c.value)},[l.icon?(e.openBlock(),e.createBlock(e.unref(V2),{key:0,weight:.5,name:l.icon,size:"1000",color:"outline-gray"},null,8,["name"])):e.createCommentVNode("",!0),l.img?(e.openBlock(),e.createElementBlock("img",{key:1,src:l.img,alt:"no_entity"},null,8,La)):e.createCommentVNode("",!0),o.title||u.$slots.title?e.renderSlot(u.$slots,"title",{key:2},()=>[l.title?(e.openBlock(),e.createBlock(e.unref(g2),e.mergeProps({key:0},i.value,{color:"gray","text-align":e.unref(J0).Center,"html-data":l.title}),null,16,["text-align","html-data"])):e.createCommentVNode("",!0)]):e.createCommentVNode("",!0),o.text||u.$slots.text?(e.openBlock(),e.createElementBlock("div",Ma,[e.renderSlot(u.$slots,"text",{},()=>[e.createVNode(e.unref(g2),{color:"gray",variation:e.unref(F2).Article,"text-align":e.unref(J0).Center,"html-data":o.text},null,8,["variation","text-align","html-data"])])])):e.createCommentVNode("",!0),o.btnName&&!o.noAction||u.$slots.action?(e.openBlock(),e.createElementBlock("div",wa,[e.renderSlot(u.$slots,"action",{},()=>[e.createVNode(e.unref(E2),e.mergeProps(n.value,e.toHandlers(a.value)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.btnName),1)]),_:1},16)])])):e.createCommentVNode("",!0)],2)]))}}),Va={class:"mc-notification__inner"},_a={class:"mc-notification__text"},va=e.defineComponent({__name:"McNotification",props:{variation:{type:String,default:"purple"},title:{type:String},content:{type:String,default:null},buttonVisible:{type:Boolean,default:!1},buttonText:{type:String,default:""},iconName:{type:String,default:"info"},iconVisible:{type:Boolean,default:!0}},emits:["click"],setup(o,{emit:t}){const r=t,l=o,n=e.computed(()=>({"--mc-notification-color":v2[l.variation]})),a=i=>{r("click",i)};return(i,c)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-notification",style:e.normalizeStyle(n.value)},[e.createElementVNode("div",Va,[e.createVNode(e.unref(_1),null,e.createSlots({_:2},[l.iconVisible&&(i.$slots.left||l.iconName)?{name:"left",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"left",{},()=>[e.createVNode(e.unref(V2),{name:l.iconName,size:"300"},null,8,["name"])])]),key:"0"}:void 0,i.$slots.header||l.title?{name:"top",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"header",{},()=>[l.title?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,color:l.variation,weight:e.unref(J2).SemiBold,class:"mc-notification__title"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.title),1)]),_:1},8,["color","weight"])):e.createCommentVNode("",!0)])]),key:"1"}:void 0,l.content||i.$slots.default?{name:"bottom",fn:e.withCtx(()=>[e.createElementVNode("div",_a,[e.renderSlot(i.$slots,"default",{},()=>[e.createVNode(e.unref(g2),{color:l.variation},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.content),1)]),_:1},8,["color"])])])]),key:"2"}:void 0,i.$slots.right||l.buttonVisible?{name:"right",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"right",{},()=>[l.buttonVisible?(e.openBlock(),e.createBlock(e.unref(E2),{key:0,variation:l.variation,class:"mc-notification__button",onClick:a},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(l.buttonText),1)]),_:1},8,["variation"])):e.createCommentVNode("",!0)])]),key:"3"}:void 0]),1024)])],4))}}),Ha={class:"mc-progress__wrapper-line"},xa={key:0,class:"mc-progress__errors-container"},Ba=e.defineComponent({__name:"McProgress",props:{percent:{type:Number,default:0},amount:{type:[String,Number,Boolean],default:null},color:{type:String,default:"dark-gray"},helpTextColor:{type:String,default:"gray"},helpText:{type:String,default:""},errors:{type:Array,default:()=>[]},reverseHeaders:{type:Boolean,default:!1},monospaceNumbers:{type:Boolean,default:!1}},setup(o){const t=o,r=Z0(t.errors),l=e.computed(()=>({"mc-progress":!0,"mc-progress--error":r.errorText.value})),n=e.computed(()=>({"mc-progress__top":!0,"mc-progress__top--reverse-headers":t.reverseHeaders})),a=e.computed(()=>({"mc-progress__percent":!0,"mc-progress__percent--monospace":t.monospaceNumbers})),i=e.computed(()=>({"mc-progress__line":!0})),c=e.computed(()=>({"--mc-progress-color":v2[t.color]})),s=e.computed(()=>({"--mc-progress-help-text-color":v2[t.helpTextColor]})),u=e.computed(()=>({width:`${r.errorText.value?2:Math.sign(t.percent)>0?t.percent:0}%`})),d=e.computed(()=>r.errorText.value?0:t.amount??`${t.percent}%`);return(C,p)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(l.value),style:e.normalizeStyle(c.value)},[e.createElementVNode("div",{class:e.normalizeClass(n.value)},[e.createElementVNode("div",{class:e.normalizeClass(a.value)},e.toDisplayString(d.value),3),t.helpText?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-progress__help-text",style:e.normalizeStyle(s.value)},e.toDisplayString(t.helpText),5)):e.createCommentVNode("",!0)],2),e.createElementVNode("div",Ha,[e.createElementVNode("div",{class:e.normalizeClass(i.value),style:e.normalizeStyle(u.value)},null,6)]),e.unref(r).errorText.value?(e.openBlock(),e.createElementBlock("div",xa,e.toDisplayString(e.unref(r).errorText.value),1)):e.createCommentVNode("",!0)],6))}}),Sa={class:"mc-separator__wrapper"},S9=e.defineComponent({__name:"McSeparator",props:{weight:{type:String,default:"s"},color:{type:String,default:"outline-gray"},indentX:{type:String,default:""},indentY:{type:String,default:""},indentTop:{type:String,default:""},indentBottom:{type:String,default:""},indentLeft:{type:String,default:""},indentRight:{type:String,default:""}},setup(o){const t=o,r=e.computed(()=>({top:t.indentTop||t.indentY,bottom:t.indentBottom||t.indentY,left:t.indentLeft||t.indentX,right:t.indentRight||t.indentX})),l=e.computed(()=>({"mc-separator":!0})),n=e.computed(()=>{let a={};t.color&&(a["--mc-separator-color"]=v2[t.color]),r.value.top&&(a["--mc-separator-indent-top"]=i0[r.value.top]),r.value.bottom&&(a["--mc-separator-indent-bottom"]=i0[r.value.bottom]),r.value.left&&(a["--mc-separator-indent-left"]=i0[r.value.left]),r.value.right&&(a["--mc-separator-indent-right"]=i0[r.value.right]);let i;switch(t.weight){case"s":{i="1px";break}case"m":i="2px"}return i&&(a["--mc-separator-weight"]=i),a});return(a,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(l.value),style:e.normalizeStyle(n.value)},[e.createElementVNode("div",Sa,[e.renderSlot(a.$slots,"default")])],6))}}),Z9=e.defineComponent({__name:"McSlideUpDown",props:{active:{type:Boolean,default:!1},duration:{type:Number,default:300},type:{type:String,default:"ease-out"},tag:{type:String,default:"div"},useHidden:{type:Boolean,default:!0}},emits:["slide-open-start","slide-close-start","slide-open-end","slide-close-end"],setup(o,{emit:t}){const r=t,l=o,n=e.ref(l.active),a=e.ref(!1),i=e.ref(null),c=e.ref();e.onMounted(()=>{s()});const s=()=>{c.value&&!n.value&&(c.value.style.height="0")},u=()=>{if(!c.value||a.value)return;a.value=!0;const f={contentHeight:c.value.scrollHeight};i.value&&i.value.cancel(),n.value?C(f):p(f)},d=()=>{n.value=!n.value},C=({contentHeight:h})=>{r("slide-close-start",n.value),c.value&&(i.value=c.value.animate([{height:`${h}px`},{height:"0"}],{duration:l.duration,easing:l.type,fill:"forwards"}),i.value.onfinish=()=>{r("slide-close-end",n.value),a.value=!1,d()})},p=({contentHeight:h})=>{r("slide-open-start",n.value),c.value&&(i.value=c.value.animate([{height:"0"},{height:`${h}px`}],{duration:l.duration,easing:l.type,fill:"forwards"}),i.value.onfinish=()=>{r("slide-open-end",n.value),a.value=!1,d()})};return e.watch(()=>l.active,()=>{u()}),(h,f)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(l.tag),{ref_key:"container",ref:c,class:"mc-slide-up-down"},{default:e.withCtx(()=>[e.renderSlot(h.$slots,"default")]),_:3},512))}}),Za={ref:"content",class:"mc-stack__content"},Da={key:0,class:"mc-stack__more-label"},Ea=e.defineComponent({__name:"McStack",props:{visibleCount:{type:Number,default:1/0},collapsed:{type:Boolean,default:!1}},setup(o){var u;const t=o,r=e.useSlots(),l=e.ref(null),n=(r.default&&((u=r.default()[0].children)!=null&&u.length)?r.default()[0].children:r.default())||[],a=e.ref(n||[]),i=e.ref(0),c=e.computed(()=>({"mc-stack":!0,"mc-stack--collapsed":t.collapsed}));e.onMounted(()=>{const d=new ResizeObserver(s);l.value&&d.observe(l.value),s(),e.onUnmounted(()=>{d.disconnect()})});const s=()=>{if(!l.value)return;let d=0;const C=[];let p=0;i.value=0;const h=document.createElement("div");h.style.position="absolute",h.style.visibility="hidden",h.style.whiteSpace="nowrap",document.body.appendChild(h);for(const f of n){const m=e.h(f),k=document.createElement("div");h.appendChild(k);const M=e.createApp({render:()=>m});M.mount(k);const v=t.collapsed?k.getBoundingClientRect().width+6:k.getBoundingClientRect().width;M.unmount(),k.remove();const b=+i0[300].replace("px",""),L=t.collapsed?-i0[200].replace("px",""):+i0[150].replace("px","");if(d+(v+L)<=l.value.clientWidth-b&&p<t.visibleCount)d+=v+L,C.push(f),p++;else{i.value=n.length-C.length;break}}document.body.removeChild(h),a.value=C};return(d,C)=>(e.openBlock(),e.createElementBlock("div",{ref_key:"container",ref:l,class:e.normalizeClass(c.value)},[e.createElementVNode("div",Za,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,(p,h)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(p),{key:`mc-stack-item-${h}`}))),128)),i.value>0?(e.openBlock(),e.createElementBlock("span",Da,"+"+e.toDisplayString(i.value),1)):e.createCommentVNode("",!0)],512)],2))}}),Ta="data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cclipPath%20id='api_a'%3e%3cpath%20class='a'%20d='M0,0H24V24H0Z'%20transform='translate(20%20280)'/%3e%3c/clipPath%3e%3clinearGradient%20id='clickup_paint0_linear_8030_38779'%20x1='3'%20y1='19.766'%20x2='21'%20y2='19.766'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%238930FD'/%3e%3cstop%20offset='1'%20stop-color='%2349CCF9'/%3e%3c/linearGradient%3e%3clinearGradient%20id='clickup_paint1_linear_8030_38779'%20x1='3.5'%20y1='8.68692'%20x2='20.5'%20y2='8.68692'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FF02F0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC800'/%3e%3c/linearGradient%3e%3cclipPath%20id='enrollment_a'%3e%3crect%20width='28'%20height='28'%20rx='4'%20transform='translate(166%20310)'/%3e%3c/clipPath%3e%3cclipPath%20id='hand_money_clip0_10494_49603'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3clinearGradient%20id='help_ukraine_colored_paint0_linear_8335_38758'%20x1='12'%20y1='0'%20x2='12'%20y2='24'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%232860B2'/%3e%3cstop%20offset='1'%20stop-color='%23F2D24C'/%3e%3c/linearGradient%3e%3cradialGradient%20id='instagram_colored_paint0_radial'%20cx='0'%20cy='0'%20r='1'%20gradientUnits='userSpaceOnUse'%20gradientTransform='translate(6.37503%2025.8485)%20rotate(-90)%20scale(23.7858%2022.1226)'%3e%3cstop%20stop-color='%23FFDD55'/%3e%3cstop%20offset='0.1'%20stop-color='%23FFDD55'/%3e%3cstop%20offset='0.5'%20stop-color='%23FF543E'/%3e%3cstop%20offset='1'%20stop-color='%23C837AB'/%3e%3c/radialGradient%3e%3cradialGradient%20id='instagram_colored_paint1_radial'%20cx='0'%20cy='0'%20r='1'%20gradientUnits='userSpaceOnUse'%20gradientTransform='translate(-4.02013%201.72892)%20rotate(78.6806)%20scale(10.6323%2043.827)'%3e%3cstop%20stop-color='%233771C8'/%3e%3cstop%20offset='0.128'%20stop-color='%233771C8'/%3e%3cstop%20offset='1'%20stop-color='%236600FF'%20stop-opacity='0'/%3e%3c/radialGradient%3e%3cclipPath%20id='kraken_clip0_10709_44626'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3clinearGradient%20id='mc_pay_mobile_app_linear0'%20gradientUnits='userSpaceOnUse'%20x1='29.3597'%20y1='3.08534'%20x2='3.09748'%20y2='28.4464'%20gradientTransform='matrix(0.75,0,0,0.75,0,0)'%3e%3cstop%20offset='0'%20style='stop-color:rgb(43.921569%25,28.235294%25,96.470588%25);stop-opacity:1;'/%3e%3cstop%20offset='0.28'%20style='stop-color:rgb(41.960784%25,26.666667%25,92.54902%25);stop-opacity:1;'/%3e%3cstop%20offset='0.32'%20style='stop-color:rgb(41.568627%25,26.27451%25,91.764706%25);stop-opacity:1;'/%3e%3cstop%20offset='0.73'%20style='stop-color:rgb(36.862745%25,22.352941%25,83.137255%25);stop-opacity:1;'/%3e%3cstop%20offset='1'%20style='stop-color:rgb(35.294118%25,21.176471%25,80%25);stop-opacity:1;'/%3e%3c/linearGradient%3e%3clinearGradient%20id='mc_pay_mobile_app_linear1'%20gradientUnits='userSpaceOnUse'%20x1='7.4502'%20y1='16.0008'%20x2='24.547'%20y2='16.0008'%20gradientTransform='matrix(0.75,0,0,0.75,0,0)'%3e%3cstop%20offset='0'%20style='stop-color:rgb(43.921569%25,28.235294%25,96.470588%25);stop-opacity:1;'/%3e%3cstop%20offset='0.22'%20style='stop-color:rgb(41.960784%25,26.666667%25,92.54902%25);stop-opacity:1;'/%3e%3cstop%20offset='1'%20style='stop-color:rgb(35.294118%25,21.176471%25,80%25);stop-opacity:1;'/%3e%3c/linearGradient%3e%3clinearGradient%20id='mc_vidwide_paint0_linear'%20x1='12'%20y1='2'%20x2='12'%20y2='22'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2326DFD5'/%3e%3cstop%20offset='1'%20stop-color='%233580F8'/%3e%3c/linearGradient%3e%3cpath%20id='mediacube_kndia'%20d='M863.5%20345.58l337.44-194.88v243.79L863.51%20589.36z'/%3e%3cpath%20id='mediacube_kndib'%20d='M1538.76%20345.58l-211.18%20121.7-337.82-194.5%20211.18-122.08z'/%3e%3cpath%20id='mediacube_kndic'%20d='M1538.76%20735.33l-337.82%20194.88-211.18-122.08%20549-316.2z'/%3e%3cpath%20id='mediacube_kndid'%20d='M863.5%20735.33l337.44%20194.88v-243.4L863.51%20491.92z'/%3e%3cpath%20id='mediacube_kndie'%20d='M1139.9%20429.75L989.76%20272.78l211.18%20121.7z'/%3e%3clinearGradient%20id='messenger_colored_paint0_linear'%20x1='12'%20y1='1.6224'%20x2='12'%20y2='22.944'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2300C6FF'/%3e%3cstop%20offset='1'%20stop-color='%230068FF'/%3e%3c/linearGradient%3e%3cpath%20id='new_a'%20d='M0%200h24v24H0V0z'/%3e%3cstyle%20id='payment_undefined'%3e.a{}.b{}.c{fill:none;}%3c/style%3e%3cclipPath%20id='payment_a'%3e%3crect%20width='24'%20height='24'%20transform='translate(8%208)'/%3e%3c/clipPath%3e%3clinearGradient%20id='payoneer_colored_paint0_linear_9155_43603'%20x1='2.5'%20y1='13.5'%20x2='19.5'%20y2='15'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FE4700'/%3e%3cstop%20offset='0.571856'%20stop-color='%23DFCB04'/%3e%3cstop%20offset='0.715722'%20stop-color='%23DFCB04'/%3e%3cstop%20offset='1'%20stop-color='%2335D96F'/%3e%3c/linearGradient%3e%3clinearGradient%20id='payoneer_colored_paint1_linear_9155_43603'%20x1='4.81452'%20y1='13.0161'%20x2='19.1855'%20y2='12.7984'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FB5401'/%3e%3cstop%20offset='0.485039'%20stop-color='%23CD56C5'/%3e%3cstop%20offset='0.743886'%20stop-color='%231596E2'/%3e%3cstop%20offset='1'%20stop-color='%233ED96A'/%3e%3c/linearGradient%3e%3clinearGradient%20id='personal_email_colored_paint0_linear_17277_40980'%20x1='16'%20y1='0'%20x2='16'%20y2='32'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23F26567'/%3e%3cstop%20offset='1'%20stop-color='%23F79440'/%3e%3c/linearGradient%3e%3cclipPath%20id='sort_list_a'%3e%3cpath%20class='a'%20d='M0,0H18V18H0Z'/%3e%3c/clipPath%3e%3clinearGradient%20id='steam_colored_paint0_linear'%20x1='12'%20y1='0'%20x2='12'%20y2='24'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23111D2E'/%3e%3cstop%20offset='0.21248'%20stop-color='%23051839'/%3e%3cstop%20offset='0.40695'%20stop-color='%230A1B48'/%3e%3cstop%20offset='0.5811'%20stop-color='%23132E62'/%3e%3cstop%20offset='0.7376'%20stop-color='%23144B7E'/%3e%3cstop%20offset='0.87279'%20stop-color='%23136497'/%3e%3cstop%20offset='1'%20stop-color='%231387B8'/%3e%3c/linearGradient%3e%3clinearGradient%20id='telegram_colored_paint0_linear'%20x1='12'%20y1='0'%20x2='12'%20y2='23.822'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%232AABEE'/%3e%3cstop%20offset='1'%20stop-color='%23229ED9'/%3e%3c/linearGradient%3e%3cpath%20id='timeline_a'%20d='M0%200h24v24H0V0z'/%3e%3cstyle%20id='transaction_undefined'%3e.a,.a{}.c{fill:none;}%3c/style%3e%3cclipPath%20id='transaction_a'%3e%3crect%20class='a'%20width='24'%20height='24'%20transform='translate(708%201508)'/%3e%3c/clipPath%3e%3cpath%20id='unarchive_a'%20d='M0%200h24v24H0V0z'/%3e%3cclipPath%20id='vkontakte_a'%3e%3crect%20width='28'%20height='28'%20transform='translate(4.116%204.116)'/%3e%3c/clipPath%3e%3cclipPath%20id='worldfirst_clip0_10709_44614'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3cclipPath%20id='yandexmoney_a'%3e%3crect%20width='28'%20height='28'%20rx='4'%20transform='translate(166%20310)'/%3e%3c/clipPath%3e%3c/defs%3e%3csymbol%20id='a_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.315%2015.25L12%208.25L8.684%2015.249M9.347%2013.849H14.65M21%2012C21%2016.9706%2016.9706%2021%2012%2021C7.02944%2021%203%2016.9706%203%2012C3%207.02944%207.02944%203%2012%203C16.9706%203%2021%207.02944%2021%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='access_time'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.99%202C6.47%202%202%206.48%202%2012s4.47%2010%209.99%2010C17.52%2022%2022%2017.52%2022%2012S17.52%202%2011.99%202zM12%2020c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12.5%207H11v6l5.25%203.15.75-1.23-4.5-2.67z'/%3e%3c/symbol%3e%3csymbol%20id='account_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%203c1.66%200%203%201.34%203%203s-1.34%203-3%203-3-1.34-3-3%201.34-3%203-3zm0%2014.2c-2.5%200-4.71-1.28-6-3.22.03-1.99%204-3.08%206-3.08%201.99%200%205.97%201.09%206%203.08-1.29%201.94-3.5%203.22-6%203.22z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='account_edit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2019C4%2016.5%206%2014.5%208.5%2014.5H11.1M14%2020H16.3L19.7%2016.6C20.1%2016.2%2020.1%2015.6%2019.7%2015.2L18.8%2014.3C18.4%2013.9%2017.8%2013.9%2017.4%2014.3L14%2017.7V20ZM16%207C16%209.20914%2014.2091%2011%2012%2011C9.79086%2011%208%209.20914%208%207C8%204.79086%209.79086%203%2012%203C14.2091%203%2016%204.79086%2016%207Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='add'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2012H19M12%205V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='add_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2012H16M12%208V16M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='address'%20viewBox='0%200%2021%2020'%3e%3cpath%20d='M9.66667%202.5H7.16667C6.0616%202.5%205.00179%202.93899%204.22039%203.72039C3.43899%204.50179%203%205.5616%203%206.66667V13.3333C3%2014.4384%203.43899%2015.4982%204.22039%2016.2796C5.00179%2017.061%206.0616%2017.5%207.16667%2017.5H13.8333C14.9384%2017.5%2015.9982%2017.061%2016.7796%2016.2796C17.561%2015.4982%2018%2014.4384%2018%2013.3333V10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.1451%202.52224C17.6921%203.06922%2017.9993%203.81109%2017.9993%204.58464C17.9993%205.95006%2016.5093%207.40864%2015.6585%208.12993C15.4957%208.26235%2015.2922%208.33464%2015.0823%208.33464C14.8724%208.33464%2014.6689%208.26235%2014.506%208.12993C13.656%207.40865%2012.166%205.95006%2012.166%204.58464C12.166%203.81109%2012.4733%203.06922%2013.0203%202.52224C13.5673%201.97526%2014.3091%201.66797%2015.0827%201.66797C15.8562%201.66797%2016.5981%201.97526%2017.1451%202.52224Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3.83398%204.16797L16.334%2016.668'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3.83398%2015.8333L9.66732%2010'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='ads_banner'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2018H13M16%2018H18M19%2021H5C3.895%2021%203%2020.105%203%2019V5C3%203.895%203.895%203%205%203H19C20.105%203%2021%203.895%2021%205V19C21%2020.105%2020.105%2021%2019%2021ZM6%206H18V15H6V6Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='album'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2014.5c-2.49%200-4.5-2.01-4.5-4.5S9.51%207.5%2012%207.5s4.5%202.01%204.5%204.5-2.01%204.5-4.5%204.5zm0-5.5c-.55%200-1%20.45-1%201s.45%201%201%201%201-.45%201-1-.45-1-1-1z'/%3e%3c/symbol%3e%3csymbol%20id='alert_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.0711%2019.0711C22.9763%2015.1658%2022.9763%208.83419%2019.0711%204.92894C15.1658%201.02369%208.83418%201.02369%204.92894%204.92894C1.02369%208.83416%201.02369%2015.1658%204.92894%2019.0711C8.83416%2022.9763%2015.1658%2022.9763%2019.0711%2019.0711ZM13%2017.25C13%2016.8358%2012.4142%2016.5%2012%2016.5C11.5858%2016.5%2011%2016.8358%2011%2017.25V17.75C11%2018.1642%2011.5858%2018.5%2012%2018.5C12.4142%2018.5%2013%2018.1642%2013%2017.75V17.25ZM13%207C13%206.58579%2012.4142%206%2012%206C11.5858%206%2011%206.58579%2011%207V13C11%2013.4142%2011.5858%2014%2012%2014C12.4142%2014%2013%2013.4142%2013%2013V7Z'/%3e%3c/symbol%3e%3csymbol%20id='alternate_email'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-opacity='.9'%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010h5v-2h-5c-4.34%200-8-3.66-8-8s3.66-8%208-8%208%203.66%208%208v1.43c0%20.79-.71%201.57-1.5%201.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5%202.24-5%205%202.24%205%205%205c1.38%200%202.64-.56%203.54-1.47.65.89%201.77%201.47%202.96%201.47%201.97%200%203.5-1.6%203.5-3.57V12c0-5.52-4.48-10-10-10zm0%2013c-1.66%200-3-1.34-3-3s1.34-3%203-3%203%201.34%203%203-1.34%203-3%203z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='amocrm'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23329DC7'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.3098%2011.271C14.3098%2011.012%2014.1629%2010.8826%2013.8689%2010.8826C13.6672%2010.8826%2013.4426%2011.0768%2013.1954%2011.4649C12.9493%2011.8526%2012.7686%2012.2799%2012.661%2012.7289V12.7524C12.6629%2013.0281%2012.7039%2013.3025%2012.7832%2013.5675C12.8465%2013.7557%2012.8875%2013.9513%2012.9049%2014.1499C12.9049%2014.4082%2012.5757%2014.6675%2011.918%2014.9261C11.8327%2014.9617%2011.7422%2014.9814%2011.6505%2014.9845C11.5598%2014.9868%2011.4709%2014.9581%2011.398%2014.903C11.3256%2014.8485%2011.2735%2014.7704%2011.2504%2014.6816C11.1674%2014.4164%2011.1299%2014.1386%2011.1396%2013.8604C11.1396%2013.5149%2011.1495%2013.1915%2011.1691%2012.8899C11.1881%2012.5883%2011.2075%2012.3049%2011.2272%2012.0399C11.2436%2011.8104%2011.2632%2011.5813%2011.2852%2011.3522C11.3049%2011.1529%2011.3141%2010.9923%2011.3141%2010.8691C11.3141%2010.6105%2011.194%2010.481%2010.954%2010.481C10.7137%2010.481%2010.4354%2010.7638%2010.118%2011.329C9.80057%2011.8926%209.64156%2012.3384%209.64156%2012.6685C9.63896%2012.9777%209.68014%2013.2856%209.76385%2013.5826C9.82747%2013.7715%209.86811%2013.9667%209.88583%2014.165C9.88583%2014.4243%209.55663%2014.6829%208.8986%2014.9419C8.81359%2014.9773%208.72311%2014.9969%208.63138%2014.9999C8.54069%2015.002%208.45189%2014.9732%208.37891%2014.9181C8.30659%2014.8636%208.25446%2014.7857%208.23104%2014.697C8.19828%2014.5829%208.17259%2014.467%208.154%2014.35C7.99582%2014.4562%207.82948%2014.5496%207.65646%2014.6292C7.36611%2014.7705%207.0494%2014.846%206.72793%2014.8506C6.31708%2014.8506%206.04234%2014.489%205.90298%2013.7671C5.70404%2014.0984%205.43406%2014.3791%205.11347%2014.588C4.71681%2014.8203%204.26338%2014.9315%203.80689%2014.9083C3.56407%2014.9191%203.32164%2014.8791%203.09441%2014.7909C2.86807%2014.7033%202.66181%2014.5689%202.48849%2014.3961C2.32625%2014.2334%202.19896%2014.038%202.11473%2013.8221C2.03094%2013.6075%201.99227%2013.3772%202.00128%2013.1462C2.00128%2011.8262%202.43834%2010.7856%203.31344%2010.0248C3.61554%209.74463%203.96875%209.52827%204.3528%209.38812C4.68229%209.28599%205.02492%209.23499%205.3692%209.23683C5.67086%209.22676%205.9702%209.29318%206.23972%209.43072C6.34792%209.20597%206.47186%209.09292%206.6112%209.09292C6.90501%209.10261%207.18326%209.23037%207.38564%209.4485C7.48696%209.52955%207.57139%209.63056%207.63391%209.74556C7.6964%209.86057%207.73575%209.98723%207.74958%2010.1181C7.60999%2010.4347%207.45088%2010.7419%207.27317%2011.0379C7.20175%2011.5352%207.17071%2012.0378%207.18038%2012.5404C7.18038%2013.1875%207.26171%2013.5112%207.42432%2013.5112C7.54792%2013.5112%207.77983%2013.3583%208.12016%2013.053C8.13266%2012.4926%208.17541%2011.9334%208.24841%2011.3777C8.36812%2010.6447%208.63712%209.94575%209.03794%209.32605C9.08069%209.23727%209.14456%209.16089%209.22367%209.10392C9.30278%209.04695%209.39461%209.01121%209.49073%209C9.74876%209%209.98516%209.20932%2010.199%209.62864C10.255%209.72492%2010.3019%209.82655%2010.3386%209.93155C10.4881%209.71914%2010.6843%209.54563%2010.9114%209.42502C11.1401%209.30343%2011.3931%209.23764%2011.6508%209.2328C11.978%209.23077%2012.2951%209.34857%2012.5449%209.5649C12.668%209.6636%2012.767%209.79016%2012.8342%209.93463C12.9014%2010.0791%2012.9349%2010.2375%2012.9321%2010.3975V10.5256C13.1328%2010.2499%2013.3942%2010.0265%2013.6951%209.87352C13.9979%209.71954%2014.3316%209.63973%2014.6698%209.64038C14.8424%209.62857%2015.0156%209.65171%2015.1794%209.70848C15.343%209.76517%2015.4935%209.85406%2015.622%209.97013C15.7278%2010.0737%2015.8114%2010.1987%2015.8674%2010.3371C15.9234%2010.4756%2015.9506%2010.6244%2015.9472%2010.7742C15.9499%2011.0627%2015.9266%2011.3512%2015.8777%2011.6356C15.8348%2011.8785%2015.7825%2012.1196%2015.721%2012.3582L15.5643%2012.958C15.5247%2013.0904%2015.5013%2013.2273%2015.4945%2013.3656C15.4945%2013.4625%2015.5256%2013.5112%2015.5872%2013.5112C15.7509%2013.4887%2015.902%2013.4105%2016.0171%2013.2898C16.1286%2013.193%2016.2375%2013.093%2016.3437%2012.9903C16.3347%2012.8926%2016.3321%2012.7942%2016.3361%2012.6957C16.3127%2011.8144%2016.625%2010.9584%2017.2069%2010.3083C17.496%209.97994%2017.8524%209.72094%2018.2506%209.54981C18.6511%209.3774%2019.0836%209.29647%2019.5178%209.31264C19.8734%209.30073%2020.2279%209.35729%2020.5631%209.47936C21.0198%209.66587%2021.2483%209.84064%2021.2483%2010.0037C21.2483%2010.1332%2020.929%2010.1976%2020.2903%2010.1976C19.9923%2010.1921%2019.6964%2010.2482%2019.4201%2010.3626C19.1453%2010.4763%2018.896%2010.6461%2018.6876%2010.8618C18.475%2011.0795%2018.3078%2011.3393%2018.1965%2011.6252C18.0857%2011.9099%2018.0335%2012.2147%2018.043%2012.5209C18.0332%2012.8423%2018.143%2013.1559%2018.3506%2013.4005C18.4614%2013.5209%2018.5978%2013.6148%2018.7496%2013.6752C18.9017%2013.7356%2019.0649%2013.7612%2019.2276%2013.75C19.5544%2013.7622%2019.8781%2013.6815%2020.1627%2013.5169C19.8978%2013.3436%2019.6816%2013.1025%2019.5358%2012.8175C19.3914%2012.5344%2019.3231%2012.2172%2019.3378%2011.8983C19.3353%2011.7097%2019.3694%2011.5224%2019.4381%2011.3474C19.5069%2011.1724%2019.6088%2011.013%2019.7381%2010.8785C19.8708%2010.7282%2020.0337%2010.609%2020.2155%2010.529C20.3983%2010.4484%2020.5959%2010.4087%2020.7949%2010.4126C21.2244%2010.4126%2021.5323%2010.5313%2021.7179%2010.7682C21.9217%2011.0593%2022.0202%2011.4139%2021.9965%2011.7712C21.9425%2012.5679%2021.6969%2013.3595%2021.1611%2013.9493L21.1614%2013.9496C20.4703%2014.7265%2019.7306%2014.9962%2018.885%2014.9962C18.0391%2014.9962%2017.3889%2014.7768%2016.9627%2014.3324C16.8664%2014.2337%2016.7796%2014.1262%2016.7035%2014.0114C16.681%2014.0335%2016.658%2014.0556%2016.6345%2014.0777C16.1733%2014.5564%2015.5494%2014.8346%2014.8928%2014.8543C14.3354%2014.8543%2014.0564%2014.3458%2014.0564%2013.3283C14.0679%2012.9721%2014.1105%2012.6172%2014.1843%2012.2683C14.2538%2011.9402%2014.2957%2011.6065%2014.3098%2011.271ZM3.70819%2012.7618C3.70819%2013.3595%203.92884%2013.6584%204.37051%2013.6584C4.84265%2013.6507%205.23346%2013.3985%205.54298%2012.9017C5.66193%2012.7065%205.75197%2012.4945%205.8102%2012.2723C5.79739%2011.52%205.87536%2010.769%206.04234%2010.0362C5.41843%2010.1579%204.84653%2010.4739%204.40493%2010.9409C4.17421%2011.1813%203.99332%2011.4669%203.87311%2011.7806C3.75344%2012.0927%203.69733%2012.4266%203.70819%2012.7618ZM21.1746%2011.739C21.1713%2012.0221%2021.1051%2012.3009%2020.9811%2012.5541V12.5622C20.8811%2012.4626%2020.8023%2012.3429%2020.7497%2012.2106C20.697%2012.0784%2020.6717%2011.9364%2020.6752%2011.7936C20.6771%2011.6923%2020.701%2011.5926%2020.745%2011.5018C20.7913%2011.4012%2020.8493%2011.3508%2020.9188%2011.3508C21.0893%2011.3508%2021.1746%2011.48%2021.1746%2011.739Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='amper_music'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23221F1F'/%3e%3cpath%20d='M17.1327%205.63879C13.7503%204.20766%209.73428%205.31719%206.98558%207.61666C3.58674%2010.4709%202.50043%2015.9542%206.88683%2018.0608C11.0922%2020.0949%2016.2357%2018.6638%2019.2724%2015.3191C22.2269%2012.0628%2021.3134%207.39154%2017.1327%205.63879ZM15.1247%2015.1261C14.3593%2015.2708%2013.6351%2015.0618%2013.0426%2014.6357C11.6024%2015.4718%209.81658%2015.2146%208.92778%2014.0085C7.9896%2012.7141%208.42577%2010.8407%209.89888%209.80357C10.7054%209.24076%2011.6518%209.0478%2012.4994%209.19252C13.2648%209.32116%2013.6845%2010.1332%2013.3224%2010.8086L13.0344%2011.3633C12.7052%2010.9774%2012.1538%2010.7523%2011.5448%2010.8005C10.6231%2010.8809%209.94002%2011.5644%2010.0059%2012.3282C10.0717%2013.092%2010.8782%2013.6548%2011.7917%2013.5744C12.4501%2013.5181%2013.0014%2013.1483%2013.2236%2012.6578L13.2319%2012.6658L14.0302%2011.098C14.3676%2011.4035%2014.8037%2011.6046%2015.2728%2011.6608L14.919%2012.3121L14.8284%2012.4809C14.1207%2013.8719%2015.1247%2015.1261%2015.1247%2015.1261ZM15.6185%2011.0176C14.9354%2010.897%2014.4416%2010.5915%2014.1289%209.81965C13.808%208.73423%2013.2648%208.59755%2012.483%208.58147C13.199%208.10711%2014.1701%208.09103%2014.9107%208.62167C15.7008%209.17644%2015.9723%2010.1734%2015.6185%2011.0176Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='analytics'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.688%209.75H16.5M16.5%209.75V12.562M16.5%209.75L12.562%2013.688L10.312%2011.438L7.5%2014.25M18%2021H6C4.343%2021%203%2019.657%203%2018V6C3%204.343%204.343%203%206%203H18C19.657%203%2021%204.343%2021%206V18C21%2019.657%2019.657%2021%2018%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='animation_motion'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5.72177%2010C5.5327%2010.1239%205.35097%2010.2582%205.17742%2010.402C3.84946%2011.5026%203%2013.163%203%2015.0121C3%2016.3556%203.45399%2017.5956%204.20847%2018.5961C5.30262%2020.0517%207.03802%2021%208.98789%2021C10.837%2021%2012.4974%2020.1505%2013.598%2018.8226C13.7418%2018.649%2013.8761%2018.4673%2014%2018.2782'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-dasharray='3%203'/%3e%3cpath%20d='M14.5%2016C18.075%2016%2021%2013.075%2021%209.5C21%205.925%2018.075%203%2014.5%203C10.925%203%208%205.925%208%209.5C8%2010.9584%208.49282%2012.3045%209.31182%2013.3905C10.4995%2014.9706%2012.3834%2016%2014.5%2016Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='api'%20viewBox='0%200%2024%2024'%3e%3cg%20class='b'%20transform='translate(-20%20-280)'%3e%3cg%20transform='translate(20%20280)'%3e%3cpath%20class='a'%20d='M7,7H5A2.006,2.006,0,0,0,3,9v8H5V13H7v4H9V9A2.006,2.006,0,0,0,7,7m0,4H5V9H7m7-2H10V17h2V13h2a2.006,2.006,0,0,0,2-2V9a2.006,2.006,0,0,0-2-2m0,4H12V9h2m6,0v6h1v2H17V15h1V9H17V7h4V9Z'/%3e%3cpath%20fill='none'%20d='M0,0H24V24H0Z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='apple_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.1402%207.03379C10.2674%207.03379%208.91626%206.09065%207.49342%206.12474C5.61624%206.14747%203.8945%207.15878%202.92601%208.76097C0.977093%2011.9767%202.42384%2016.7265%204.32493%2019.34C5.25755%2020.6126%206.35755%2022.0444%207.81625%2021.9989C9.21517%2021.9421%209.74126%2021.1354%2011.4391%2021.1354C13.125%2021.1354%2013.6032%2021.9989%2015.0858%2021.9649C16.5924%2021.9421%2017.5489%2020.6695%2018.4696%2019.3854C19.5337%2017.9082%2019.9761%2016.4765%2020%2016.397C19.9641%2016.3856%2017.0706%2015.3288%2017.0348%2012.1472C17.0109%209.48821%2019.3185%208.21555%2019.4261%208.15873C18.1109%206.32928%2016.0902%206.12474%2015.3848%206.07929C13.5435%205.94293%2012.0011%207.03379%2011.1402%207.03379ZM14.2489%204.3521C15.0261%203.46579%2015.5402%202.22721%2015.3967%201C14.2848%201.04545%2012.9456%201.70451%2012.1445%202.59083C11.4271%203.37488%2010.8054%204.63618%2010.9728%205.84067C12.2043%205.93157%2013.4717%205.23842%2014.2489%204.3521Z'%20fill='black'/%3e%3c/symbol%3e%3csymbol%20id='applications'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%206C3.895%206%203%206.895%203%208V19C3%2020.1%203.9%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V8C21%206.9%2020.1%206%2019%206M5%206H19M5%206L4.99977%205C4.99977%203.895%205.89477%203%206.99977%203H16.9998C18.1048%203%2018.9998%203.895%2018.9998%205L19%206M11.0523%2011.0865L14.6581%2012.9704C15.114%2013.2085%2015.114%2013.7915%2014.6581%2014.0296L11.0523%2015.9135C10.5876%2016.1559%2010%2015.8601%2010%2015.3838V11.6162C10.001%2011.1399%2010.5886%2010.8441%2011.0523%2011.0865Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='applications_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2010V16.5C21%2017.6935%2020.5259%2018.8381%2019.682%2019.682C18.8381%2020.5259%2017.6935%2021%2016.5%2021H7.5C6.30653%2021%205.16193%2020.5259%204.31802%2019.682C3.47411%2018.8381%203%2017.6935%203%2016.5V7.5C3%206.30653%203.47411%205.16193%204.31802%204.31802C5.16193%203.47411%206.30653%203%207.5%203H14M14%208H7M7%2012H17M7%2016H17M22%204.5C22%205.88071%2020.8807%207%2019.5%207C18.1193%207%2017%205.88071%2017%204.5C17%203.11929%2018.1193%202%2019.5%202C20.8807%202%2022%203.11929%2022%204.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='apps'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%206C4%207.10457%204.89543%208%206%208C7.10457%208%208%207.10457%208%206C8%204.89543%207.10457%204%206%204C4.89543%204%204%204.89543%204%206ZM10%2018C10%2019.1046%2010.8954%2020%2012%2020C13.1046%2020%2014%2019.1046%2014%2018C14%2016.8954%2013.1046%2016%2012%2016C10.8954%2016%2010%2016.8954%2010%2018ZM4%2018C4%2019.1046%204.89543%2020%206%2020C7.10457%2020%208%2019.1046%208%2018C8%2016.8954%207.10457%2016%206%2016C4.89543%2016%204%2016.8954%204%2018ZM4%2012C4%2013.1046%204.89543%2014%206%2014C7.10457%2014%208%2013.1046%208%2012C8%2010.8954%207.10457%2010%206%2010C4.89543%2010%204%2010.8954%204%2012ZM10%2012C10%2013.1046%2010.8954%2014%2012%2014C13.1046%2014%2014%2013.1046%2014%2012C14%2010.8954%2013.1046%2010%2012%2010C10.8954%2010%2010%2010.8954%2010%2012ZM18%204C16.8954%204%2016%204.89543%2016%206C16%207.10457%2016.8954%208%2018%208C19.1046%208%2020%207.10457%2020%206C20%204.89543%2019.1046%204%2018%204ZM10%206C10%207.10457%2010.8954%208%2012%208C13.1046%208%2014%207.10457%2014%206C14%204.89543%2013.1046%204%2012%204C10.8954%204%2010%204.89543%2010%206ZM16%2012C16%2013.1046%2016.8954%2014%2018%2014C19.1046%2014%2020%2013.1046%2020%2012C20%2010.8954%2019.1046%2010%2018%2010C16.8954%2010%2016%2010.8954%2016%2012ZM16%2018C16%2019.1046%2016.8954%2020%2018%2020C19.1046%2020%2020%2019.1046%2020%2018C20%2016.8954%2019.1046%2016%2018%2016C16.8954%2016%2016%2016.8954%2016%2018Z'/%3e%3c/symbol%3e%3csymbol%20id='archive'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.54%205.23l-1.39-1.68C18.88%203.21%2018.47%203%2018%203H6c-.47%200-.88.21-1.16.55L3.46%205.23C3.17%205.57%203%206.02%203%206.5V19c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V6.5c0-.48-.17-.93-.46-1.27zM12%2017.5L6.5%2012H10v-2h4v2h3.5L12%2017.5zM5.12%205l.81-1h12l.94%201H5.12z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='archive_in'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%207H3M21%207C21.552%207%2022%206.552%2022%206V4C22%203.448%2021.552%203%2021%203H3C2.448%203%202%203.448%202%204V6C2%206.552%202.448%207%203%207M21%207V19C21%2020.105%2020.0706%2021%2018.9232%2021H5.07684C3.92939%2021%203%2020.105%203%2019V7M9%2011H15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='archive_out'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%207H3M21%207C21.552%207%2022%206.552%2022%206V4C22%203.448%2021.552%203%2021%203H3C2.448%203%202%203.448%202%204V6C2%206.552%202.448%207%203%207M21%207V19C21%2020.105%2020.0706%2021%2018.9232%2021H5.07684C3.92939%2021%203%2020.105%203%2019V7M16%2015L12%2011L8%2015'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow-stats-down'%20viewBox='0%200%2012%2012'%3e%3cpath%20d='M6.00004%2010L12%202H0L6.00004%2010Z'%20fill='%23FA533A'/%3e%3c/symbol%3e%3csymbol%20id='arrow-stats-up'%20viewBox='0%200%2012%2012'%3e%3cpath%20d='M6.00004%202L12%2010H0L6.00004%202Z'%20fill='%2340BF40'/%3e%3c/symbol%3e%3csymbol%20id='arrow_backward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14%2016L10%2012L14%208'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_downward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12.01%204V20M6%2013.6096L12%2019.9925L18%2013.6096'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_drop_down'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2010L12%2014L16%2010'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_drop_up'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2014L12%2010L8%2014'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_forward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%2016L14%2012L10%208'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_leftward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2012.01L4%2012.01M10.3904%206L4.00748%2012L10.3904%2018'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_rightward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2012.01L4%2012.01M10.3904%206L4.00748%2012L10.3904%2018'%20stroke='currentColor'%20fill='none'%20transform='rotate(180%2012%2012)'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_to_grow_circle'%20viewBox='0%200%2032%2032'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.0003%2029.3327C23.3641%2029.3327%2029.3337%2023.3631%2029.3337%2015.9993C29.3337%208.63555%2023.3641%202.66602%2016.0003%202.66602C8.63653%202.66602%202.66699%208.63555%202.66699%2015.9993C2.66699%2023.3631%208.63653%2029.3327%2016.0003%2029.3327ZM16.749%2012.5827C16.3348%2012.5827%2015.999%2012.9185%2015.999%2013.3327C15.999%2013.7469%2016.3348%2014.0827%2016.749%2014.0827H17.7746C17.7594%2014.1012%2017.7414%2014.1226%2017.7208%2014.1465C17.6314%2014.2506%2017.4921%2014.4036%2017.3022%2014.5855C16.9218%2014.9498%2016.3423%2015.4269%2015.5584%2015.8619C14.0822%2016.6809%2011.8526%2017.3678%208.79721%2016.8285C8.76624%2016.5564%208.75033%2016.2797%208.75033%2015.9993C8.75033%2011.9949%2011.9959%208.74935%2016.0003%208.74935C16.4145%208.74935%2016.7503%208.41356%2016.7503%207.99935C16.7503%207.58514%2016.4145%207.24935%2016.0003%207.24935C11.1674%207.24935%207.25033%2011.1665%207.25033%2015.9993C7.25033%2020.8322%2011.1674%2024.7493%2016.0003%2024.7493C20.8332%2024.7493%2024.7503%2020.8322%2024.7503%2015.9993C24.7503%2015.5851%2024.4145%2015.2493%2024.0003%2015.2493C23.5861%2015.2493%2023.2503%2015.5851%2023.2503%2015.9993C23.2503%2020.0038%2020.0048%2023.2493%2016.0003%2023.2493C12.8379%2023.2493%2010.1489%2021.2253%209.15776%2018.4018C12.2722%2018.815%2014.643%2018.0852%2016.2862%2017.1735C17.2018%2016.6654%2017.8836%2016.1056%2018.3397%2015.6687C18.5357%2015.481%2018.6906%2015.3154%2018.8052%2015.1854V16.1389C18.8052%2016.5531%2019.141%2016.8889%2019.5552%2016.8889C19.9695%2016.8889%2020.3052%2016.5531%2020.3052%2016.1389V13.3327C20.3052%2012.9185%2019.9695%2012.5827%2019.5552%2012.5827H16.749ZM18.4449%2014.4438L18.8052%2014.706V14.7061L18.4449%2014.4438Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='arrow_up_down'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%203.00002L12.01%2021M12%203.00002L7%208M12%203.00002L17%208M12.01%2021L7%2016M12.01%2021L17%2016'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrow_upward'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12.01%204.0128V20M6%2010.4162L12%204L18%2010.4162'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='arrows'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8.6%203.4L6.8%205.2L5%207L8.6%2010.6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%207H5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.4004%2020.6L19.0004%2017L15.4004%2013.4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%2017H19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='artist'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M11,14c1,0,2.1,0.2,3.2,0.4c-0.8,0.9-1.2,1.9-1.2,3.1c0,0.9,0.3,1.7,0.8,2.5H3v-2c0-1.2,0.9-2.1,2.7-2.9%20C7.6,14.4,9.3,14,11,14%20M11,12c-1.1,0-2-0.4-2.8-1.2C7.4,10.1,7,9.1,7,8c0-1.1,0.4-2,1.2-2.8C9,4.4,9.9,4,11,4%20c1.1,0,2.1,0.4,2.8,1.2C14.6,6,15,6.9,15,8c0,1.1-0.4,2.1-1.2,2.8S12.1,12,11,12%20M18.5,10H20h2v2h-2v5.5c0,1.4-1.1,2.5-2.5,2.5%20S15,18.9,15,17.5s1.1-2.5,2.5-2.5c0.4,0,0.7,0.1,1,0.2V10z'/%3e%3c/symbol%3e%3csymbol%20id='assessment'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%203H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zM9%2017H7v-7h2v7zm4%200h-2V7h2v10zm4%200h-2v-4h2v4z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='assets_unassigned'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2013V16.5C21%2017.6935%2020.5259%2018.8381%2019.682%2019.682C18.8381%2020.5259%2017.6935%2021%2016.5%2021H7.5C6.30653%2021%205.16193%2020.5259%204.31802%2019.682C3.47411%2018.8381%203%2017.6935%203%2016.5V7.5C3%206.30653%203.47411%205.16193%204.31802%204.31802C5.16193%203.47411%206.30653%203%207.5%203H11M10%208H7M7%2012H13M7%2016H17M16.125%204.95833C16.125%204.6287%2016.2227%204.30646%2016.4059%204.03238C16.589%203.7583%2016.8493%203.54468%2017.1539%203.41853C17.4584%203.29239%2017.7935%203.25938%2018.1168%203.32369C18.4401%203.388%2018.7371%203.54673%2018.9702%203.77982C19.2033%204.01291%2019.362%204.30988%2019.4263%204.63318C19.4906%204.95648%2019.4576%205.2916%2019.3315%205.59614C19.2053%205.90068%2018.9917%206.16098%2018.7176%206.34412C18.4435%206.52725%2018.1213%206.625%2017.7917%206.625M17.7917%208.63V8.29167M23%206C23%208.76142%2020.7614%2011%2018%2011C15.2386%2011%2013%208.76142%2013%206C13%203.23858%2015.2386%201%2018%201C20.7614%201%2023%203.23858%2023%206Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='assignment'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M18.4,15c-1.9,0-3.5,1.6-3.5,3.5s1.6,3.5,3.5,3.5s3.5-1.6,3.5-3.5S20.4,15,18.4,15z%20M19.1,20.7h-1.4v-2.2h1.4V20.7z%20M19.1,17.7h-1.4v-1.4h1.4V17.7z'/%3e%3cpath%20d='M13.6,18.5c0-2.7,2.2-4.8,4.8-4.8c1,0,1.8,0.3,2.6,0.8V5c0-1.1-0.9-2-2-2h-4.2c-0.4-1.2-1.5-2-2.8-2S9.6,1.8,9.2,3H5%20C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h9.3C13.9,20.3,13.6,19.4,13.6,18.5z%20M12,3c0.5,0,1,0.5,1,1s-0.5,1-1,1s-1-0.5-1-1S11.5,3,12,3z%20M7,7h10v2H7V7z%20M7,11h10v2H7V11z%20M13,17H7v-2h6V17z'/%3e%3c/symbol%3e%3csymbol%20id='assignment_ind'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19%203h-4.18C14.4%201.84%2013.3%201%2012%201c-1.3%200-2.4.84-2.82%202H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zm-7%200c.55%200%201%20.45%201%201s-.45%201-1%201-1-.45-1-1%20.45-1%201-1zm0%204c1.66%200%203%201.34%203%203s-1.34%203-3%203-3-1.34-3-3%201.34-3%203-3zm6%2012H6v-1.4c0-2%204-3.1%206-3.1s6%201.1%206%203.1V19z'/%3e%3c/symbol%3e%3csymbol%20id='assist_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.8,8.4-8.4c0,0,0,0,0,0v-3.2%20C22,5.8,18.2,2,13.6,2z%20M16.9,13.7C16.9,13.7,16.9,13.7,16.9,13.7c0,1.1-0.9,1.9-1.9,1.9h-3.7l-2.5,2.5c-0.1,0.1-0.1,0.1-0.2,0.1%20c-0.2,0-0.3-0.1-0.3-0.3v-2.3c-1-0.1-1.8-0.9-1.8-1.9V9.5c0,0,0,0,0,0c0-1.1,0.9-1.9,1.9-1.9h6.8c0,0,0,0,0,0c0.9,0,1.7,0.8,1.7,1.7%20V13.7z'/%3e%3cpath%20d='M15,8.5H8.4c-0.6,0-1,0.5-1,1l0,4.1c0,0.6,0.5,1,1,1h0.7v1.4c0,0,0,0.1,0,0.1c0.1,0.1,0.2,0.1,0.2,0l1.5-1.5h4%20c0.6,0,1-0.5,1-1V9.5C16,9,15.5,8.5,15,8.5z%20M11.7,13.7c-0.2,0-0.4-0.2-0.4-0.4c0-0.2,0.2-0.4,0.4-0.4s0.4,0.2,0.4,0.4%20C12.1,13.5,11.9,13.7,11.7,13.7z%20M12.1,11.8C12.1,11.8,12.1,11.9,12.1,11.8l0,0.3l0,0c0,0,0,0.1,0,0.1c0,0.2-0.2,0.4-0.4,0.3%20s-0.4-0.2-0.3-0.4v-0.3c0-0.3,0.2-0.6,0.5-0.8c0.2-0.1,0.4-0.3,0.4-0.5c0-0.3-0.2-0.5-0.5-0.5c-0.1,0-0.3,0-0.4,0.2%20c-0.1,0.1-0.2,0.2-0.2,0.4c0,0,0,0.1,0,0.1c0,0.2-0.2,0.4-0.4,0.3s-0.4-0.2-0.3-0.4c0,0,0,0,0,0c0-0.7,0.6-1.3,1.3-1.2%20c0.5,0,1,0.4,1.1,0.9C13.1,10.9,12.8,11.6,12.1,11.8z'/%3e%3c/symbol%3e%3csymbol%20id='attach_money'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M11.8%2010.9c-2.27-.59-3-1.2-3-2.15%200-1.09%201.01-1.85%202.7-1.85%201.78%200%202.44.85%202.5%202.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5%201.68-3.5%203.61%200%202.31%201.91%203.46%204.7%204.13%202.5.6%203%201.48%203%202.41%200%20.69-.49%201.79-2.7%201.79-2.06%200-2.87-.92-2.98-2.1h-2.2c.12%202.19%201.76%203.42%203.68%203.83V21h3v-2.15c1.95-.37%203.5-1.5%203.5-3.55%200-2.84-2.43-3.81-4.7-4.4z'/%3e%3c/symbol%3e%3csymbol%20id='audiotrack'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%203v9.28c-.47-.17-.97-.28-1.5-.28C8.01%2012%206%2014.01%206%2016.5S8.01%2021%2010.5%2021c2.31%200%204.2-1.75%204.45-4H15V6h4V3h-7z'/%3e%3c/symbol%3e%3csymbol%20id='backspace'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M22%203H7c-.69%200-1.23.35-1.59.88L0%2012l5.41%208.11c.36.53.9.89%201.59.89h15c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zm-3%2012.59L17.59%2017%2014%2013.41%2010.41%2017%209%2015.59%2012.59%2012%209%208.41%2010.41%207%2014%2010.59%2017.59%207%2019%208.41%2015.41%2012%2019%2015.59z'/%3e%3c/symbol%3e%3csymbol%20id='bank'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.35742%2017V8.934'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%208.934V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2017H4L3%2019V20H11'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%205.928L12%202L3%205.928V8.934H21V5.928Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.999%2019.5L21%2013.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2013.5V19.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2013.5C21%2012.6707%2019.432%2012%2017.5%2012C15.568%2012%2014.001%2012.6718%2014%2013.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2019.5C14%2020.3293%2015.568%2021%2017.5%2021C19.432%2021%2020.999%2020.3282%2021%2019.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2013.5C14%2014.3293%2015.568%2015%2017.5%2015C19.432%2015%2020.999%2014.3282%2021%2013.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2016.5C14%2017.3293%2015.568%2018%2017.5%2018C19.432%2018%2020.999%2017.3282%2021%2016.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_building'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M19.524%2013.3333V24M25.3333%2024V13.3333M6.66667%2013.3333V24M12.476%2024V13.3333M28%2013.3333H4V9.32533L16.2027%204L28%209.148V13.3333ZM4%2028H28V26.6667L26.6667%2024H5.33333L4%2026.6667V28Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_building_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M14.0557%209.44444V15.6667M17.4444%2015.6667V9.44444M6.55556%209.44444V15.6667M9.94433%2015.6667V9.44444M19%209.44444H5V7.10644L12.1182%204L19%207.003V9.44444ZM5%2018H19V17.2222L18.2222%2015.6667H5.77778L5%2017.2222V18Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%209H21M12%2015.1818H6.85714M18%2019H6C4.343%2019%203%2017.657%203%2016V8C3%206.343%204.343%205%206%205H18C19.657%205%2021%206.343%2021%208V16C21%2017.657%2019.657%2019%2018%2019Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_arrow'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2016.001C12%2018.762%2014.239%2021%2017%2021C19.762%2021%2022%2018.761%2022%2016C22%2013.24%2019.764%2011.002%2017.005%2011C14.3%2010.998%2012%2013.296%2012%2016.001ZM12%2016.001L4%2016C2.895%2016%202%2015.105%202%2014V5C2%203.895%202.895%203%204%203H19C20.105%203%2021%203.895%2021%205V13M2%206.85H21M16.5%2014.232L18.268%2016L16.5%2017.768'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_clock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2016.001C12%2018.762%2014.239%2021%2017%2021C19.762%2021%2022%2018.761%2022%2016C22%2013.24%2019.764%2011.002%2017.005%2011C14.3%2010.998%2012%2013.296%2012%2016.001ZM12%2016.001L4%2016C2.895%2016%202%2015.105%202%2014V5C2%203.895%202.895%203%204%203H19C20.105%203%2021%203.895%2021%205V13M2%206.85H21M18.5%2016H16.5V14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_double'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2012H20M7%2016H6C4.895%2016%204%2015.105%204%2014V7C4%205.895%204.895%205%206%205H15C16.105%205%2017%205.895%2017%207V8M12%2016H10M18%2019H9C7.895%2019%207%2018.105%207%2017V10C7%208.895%207.895%208%209%208H18C19.105%208%2020%208.895%2020%2010V17C20%2018.105%2019.105%2019%2018%2019Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bank_card_virtual_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M6.60059%209.79999H18.3006'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.8707%2012.4H9.2002'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4506%2016.3H8.55059C7.47354%2016.3%206.60059%2015.427%206.60059%2014.35V9.14998C6.60059%208.07293%207.47354%207.19998%208.55059%207.19998H16.3506C17.4276%207.19998%2018.3006%208.07293%2018.3006%209.14998V11.75'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.3572%2013.6324V11.9676C16.3572%2011.9315%2016.3459%2011.8964%2016.3251%2011.8674C16.3043%2011.8385%2016.275%2011.8173%2016.2416%2011.807C16.2082%2011.7967%2016.1725%2011.7978%2016.1398%2011.8103C16.1071%2011.8227%2016.0791%2011.8458%2016.0601%2011.876L13.8257%2015.463C13.8105%2015.4874%2013.8019%2015.5157%2013.8009%2015.5448C13.7999%2015.5739%2013.8064%2015.6028%2013.8199%2015.6283C13.8334%2015.6539%2013.8533%2015.6752%2013.8775%2015.69C13.9017%2015.7048%2013.9293%2015.7126%2013.9574%2015.7125H15.6839C15.7033%2015.7122%2015.7226%2015.716%2015.7406%2015.7235C15.7586%2015.731%2015.775%2015.7422%2015.7889%2015.7563C15.8027%2015.7705%2015.8137%2015.7873%2015.8211%2015.8059C15.8286%2015.8245%2015.8325%2015.8444%2015.8325%2015.8645V17.4904C15.8317%2017.5246%2015.8418%2017.5581%2015.8612%2017.5858C15.8807%2017.6135%2015.9084%2017.6338%2015.94%2017.6436C15.9717%2017.6533%2016.0056%2017.652%2016.0364%2017.6398C16.0673%2017.6276%2016.0935%2017.6053%2016.1108%2017.5761L18.3245%2014.0399C18.3404%2014.0146%2018.3495%2013.9853%2018.3506%2013.9551C18.3518%2013.9249%2018.3451%2013.895%2018.3313%2013.8684C18.3174%2013.8419%2018.2969%2013.8197%2018.2718%2013.8042C18.2468%2013.7888%2018.2182%2013.7806%2018.1891%2013.7806H16.4964C16.4594%2013.7786%2016.4246%2013.7623%2016.3988%2013.7348C16.373%2013.7073%2016.3581%2013.6708%2016.3572%2013.6324Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='bank_money_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.333984'%20width='40'%20height='40'%20rx='20'%20fill='%23B265FF'/%3e%3cpath%20d='M17.0302%2027.084V17.0015M11.584%2017.0015V27.084M19.084%2027.084H10.334L9.08398%2029.584V30.834H19.084M31.584%2022.709L31.5827%2030.209C31.5815%2031.2442%2029.624%2032.084%2027.209%2032.084C24.794%2032.084%2022.834%2031.2456%2022.834%2030.209V22.709M31.584%2022.709C31.584%2021.6724%2029.624%2020.834%2027.209%2020.834C24.794%2020.834%2022.8352%2021.6737%2022.834%2022.709M31.584%2022.709C31.5827%2023.7442%2029.624%2024.584%2027.209%2024.584C24.794%2024.584%2022.834%2023.7456%2022.834%2022.709M22.834%2026.459C22.834%2027.4956%2024.794%2028.334%2027.209%2028.334C29.624%2028.334%2031.5827%2027.4942%2031.584%2026.459M31.584%2013.244L20.334%208.33398L9.08398%2013.244V17.0015H31.584V13.244Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bankwire'%20viewBox='0%200%20512%20512'%3e%3cg%3e%3cg%3e%3cpath%20d='M467,422H45c-24.814,0-45,20.186-45,45v30c0,8.291,6.709,15,15,15h482c8.291,0,15-6.709,15-15v-30%20C512,442.186,491.814,422,467,422z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M340.373,271h-48.746c-6.103,39.814-6.176,81.202-0.225,121h49.197C346.549,352.202,346.476,310.814,340.373,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M461.368,271h-48.741c-6.103,39.814-6.176,81.202-0.225,121H461.6C467.549,352.204,467.469,310.814,461.368,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M220.373,271h-48.746c-6.103,39.814-6.176,81.202-0.225,121h49.197C226.549,352.202,226.476,310.814,220.373,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M99.373,271H50.632c-6.101,39.814-6.182,81.204-0.233,121h49.199C105.549,352.202,105.476,310.814,99.373,271z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M263.954,2.285c-4.863-3.047-11.045-3.047-15.908,0L11.703,151h488.595L263.954,2.285z%20M256,121c-8.284,0-15-6.716-15-15%20s6.716-15,15-15c8.284,0,15,6.716,15,15S264.284,121,256,121z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M0,181v15c0,24.814,20.186,45,45,45h422c24.814,0,45-20.186,45-45v-15H0z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='bell'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.51%2018V18.512C9.51%2018.8389%209.57442%2019.1626%209.69958%2019.4646C9.82474%2019.7666%2010.0082%2020.0409%2010.2394%2020.272C10.4707%2020.503%2010.7452%2020.6863%2011.0473%2020.8112C11.3494%2020.9361%2011.6731%2021.0003%2012%2021C12.3269%2021.0001%2012.6507%2020.9358%2012.9528%2020.8108C13.2549%2020.6858%2013.5294%2020.5025%2013.7606%2020.2713C13.9919%2020.0402%2014.1753%2019.7658%2014.3004%2019.4637C14.4256%2019.1617%2014.49%2018.8379%2014.49%2018.511V18M17.947%2018C18.4915%2018%2019.0137%2017.7837%2019.3987%2017.3987C19.7837%2017.0137%2020%2016.4915%2020%2015.947C19.9995%2015.371%2019.7708%2014.8187%2019.364%2014.411L18%2013.048V9C18%207.4087%2017.3679%205.88258%2016.2426%204.75736C15.1174%203.63214%2013.5913%203%2012%203C10.4087%203%208.88258%203.63214%207.75736%204.75736C6.63214%205.88258%206%207.4087%206%209V13.048L4.636%2014.411C4.22916%2014.8187%204.00046%2015.371%204%2015.947C4%2016.4915%204.2163%2017.0137%204.60131%2017.3987C4.98632%2017.7837%205.50851%2018%206.053%2018H17.947Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='binance_coin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23F4C139'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.25543%209.68906L11.9783%206L15.5924%209.68906L14.2201%2010.9816L11.9783%208.71967L9.62772%2011.0489L8.25543%209.68906ZM7.33152%2010.645L6%2011.9644L7.33152%2013.2839L8.66304%2011.9644L7.33152%2010.645ZM10.606%2011.951L11.9375%2010.6315L13.269%2011.951L11.9375%2013.2704L10.606%2011.951ZM16.5435%2010.6181L15.212%2011.9375L16.5435%2013.2569L17.875%2011.9375L16.5435%2010.6181ZM9.62772%2012.8934L8.26902%2014.2398L11.9375%2017.875L15.606%2014.2398L14.2473%2012.8934L11.9375%2015.1823L9.62772%2012.8934Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='biometrics'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.3164%2011V9.684C10.3164%208.754%2011.0704%208%2012.0004%208C12.9304%208%2013.6844%208.754%2013.6844%209.684V11'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14%2016H10C9.448%2016%209%2015.552%209%2015V12C9%2011.448%209.448%2011%2010%2011H14C14.552%2011%2015%2011.448%2015%2012V15C15%2015.552%2014.552%2016%2014%2016Z'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.5%203H5.25C4.007%203%203%204.007%203%205.25V7.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2016.5V18.75C3%2019.993%204.007%2021%205.25%2021H7.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5%2021H18.75C19.993%2021%2021%2019.993%2021%2018.75V16.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%207.5V5.25C21%204.007%2019.993%203%2018.75%203H16.5'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bitcoin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.5,4h2.3V2.1h2.4v2h2.3v-2h2.3v2c2.6,0.3,4.6,2.1,4.6,4.5c0,1.3-0.6,2.5-1.7,3.2C18,12.6,19,14,19,15.5%20c0,2.5-2.3,4.5-5.2,4.5v2h-2.3v-2H9.2v2H6.9v-2H4.6l0.6-2H7V6H4.7V4%20M9.2,13v5h4.6c1.6,0,2.9-1.1,2.9-2.5S15.4,13,13.8,13H9.2%20M9.2,6v5h4c1.6,0,2.9-1.1,2.9-2.5S14.9,6,13.2,6l0,0H9.2z'/%3e%3c/symbol%3e%3csymbol%20id='bitcoin_cash_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2350AF95'/%3e%3cpath%20d='M14.5593%208.79965C14.0515%207.86483%2013.0355%207.93271%2011.8872%208.33928L11.3184%206.98143L10.4592%207.36889L11.013%208.69094C10.7871%208.7928%2010.558%208.90119%2010.3304%209.00902L9.77316%207.67813L8.91434%208.06527L9.48259%209.42289C9.29808%209.51041%209.11678%209.5961%208.93869%209.67653L8.93681%209.67237L7.7515%2010.2063L8.12146%2011.0889C8.12146%2011.0889%208.75112%2010.7912%208.74528%2010.8072C9.09338%2010.6504%209.28805%2010.7937%209.39125%2010.9466L10.0392%2012.4934C10.0633%2012.4827%2010.095%2012.4695%2010.1325%2012.4582C10.1039%2012.4712%2010.0731%2012.4848%2010.0417%2012.4993L10.9492%2014.6664C10.978%2014.7787%2010.984%2014.9757%2010.741%2015.0857C10.7559%2015.0901%2010.1163%2015.3671%2010.1163%2015.3671L10.359%2016.4312L11.4772%2015.927C11.6854%2015.8334%2011.8916%2015.7445%2012.0931%2015.6551L12.6687%2017.0283L13.5271%2016.6415L12.9579%2015.2827C13.1956%2015.1811%2013.4244%2015.0801%2013.647%2014.9795L14.2131%2016.3322L15.0723%2015.9448L14.4984%2014.5738C15.9096%2013.8428%2016.7741%2013.0369%2016.3531%2011.6754C16.0144%2010.579%2015.3042%2010.3418%2014.4048%2010.5221C14.8008%2010.0535%2014.9322%209.48312%2014.5593%208.79965ZM14.5871%2012.2781C15.0174%2013.3042%2013.1416%2014.011%2012.5595%2014.2741L11.7976%2012.4544C12.3802%2012.192%2014.1388%2011.2076%2014.5871%2012.2781ZM13.1122%209.89109C13.503%2010.8249%2011.9338%2011.4029%2011.4487%2011.6216L10.7576%209.97128C11.2426%209.75257%2012.7042%208.91726%2013.1122%209.89109Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='bitcoin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23F7931A'/%3e%3cpath%20d='M15.9791%2011.0202C16.1456%209.96943%2015.2984%209.40456%2014.1399%209.02774L14.5157%207.60435L13.5982%207.38842L13.2324%208.7743C12.9912%208.71754%2012.7434%208.664%2012.4973%208.61094L12.8657%207.21593L11.9488%207L11.5727%208.42289C11.3731%208.37995%2011.1771%208.33752%2010.9869%208.29285L10.9879%208.28841L9.72261%207.99005L9.47854%208.91545C9.47854%208.91545%2010.1593%209.06278%2010.1449%209.07191C10.5165%209.15951%2010.5837%209.39172%2010.5724%209.57582L10.1444%2011.1974C10.17%2011.2035%2010.2032%2011.2124%2010.2398%2011.2262C10.2092%2011.2191%2010.1765%2011.2112%2010.1428%2011.2035L9.54282%2013.4751C9.49735%2013.5817%209.38212%2013.7416%209.12237%2013.6809C9.13151%2013.6935%208.45548%2013.5237%208.45548%2013.5237L8%2014.5155L9.19396%2014.7966C9.41608%2014.8491%209.63376%2014.9041%209.84804%2014.956L9.46835%2016.3957L10.3848%2016.6116L10.7608%2015.1872C11.0112%2015.2514%2011.2542%2015.3106%2011.492%2015.3664L11.1173%2016.7841L12.0348%2017L12.4145%2015.563C13.979%2015.8426%2015.1554%2015.7299%2015.6506%2014.3936C16.0497%2013.3176%2015.6308%2012.697%2014.8076%2012.2923C15.4071%2012.1618%2015.8586%2011.7894%2015.9791%2011.0202ZM13.8828%2013.7961C13.5993%2014.8721%2011.6809%2014.2904%2011.059%2014.1446L11.5628%2012.2373C12.1848%2012.3839%2014.1791%2012.6741%2013.8828%2013.7961ZM14.1666%2011.0046C13.9079%2011.9833%2012.3112%2011.4861%2011.7933%2011.3642L12.2501%209.63431C12.768%209.75622%2014.436%209.98374%2014.1666%2011.0046Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='bloggerhood'%20viewBox='0%200%20513.000000%20512.000000'%3e%3cg%20transform='translate(0.000000,512.000000)%20scale(0.100000,-0.100000)'%3e%3cpath%20d='M2055%204416%20c-244%20-37%20-306%20-56%20-478%20-143%20-312%20-159%20-498%20-389%20-570-708%20-19%20-84%20-21%20-130%20-25%20-690%20-5%20-759%2014%20-1139%2078%20-1599%2040%20-285%20134%20-464285%20-544%2045%20-24%2060%20-27%20160%20-27%2061%200%20142%202%20180%205%2047%203%20103%20-1%20170%20-15%2082%20-16144%20-19%20340%20-19%20248%20-1%20344%207%20625%2050%20180%2028%20257%2050%20459%20131%20279%20111%20490%20242652%20402%20152%20151%20229%20279%20275%20461%2028%20111%2026%20325%20-5%20439%20-47%20178%20-124%20306%20-270451%20-72%2072%20-226%20191%20-279%20216%20-2%201%2011%2053%2027%20115%2045%20167%2064%20300%2058%20394%20-8%20109-49%20289%20-86%20370%20-82%20180%20-260%20393%20-417%20497%20-224%20149%20-506%20232%20-824%20243%20-118%204-163%201%20-355%20-29z%20m513%20-925%20c188%20-47%20269%20-127%20243%20-241%20-39%20-172%20-274%20-276-735%20-325%20-80%20-8%20-153%20-15%20-162%20-15%20-15%200%20-16%2017%20-10%20193%204%20105%2012%20209%2018%2023023%2079%2099%20141%20211%20172%2076%2022%20324%2014%20435%20-14z%20m483%20-1435%20c93%20-20%20161%20-51%20200-93%20l34%20-35%20-62%20-57%20c-108%20-98%20-245%20-168%20-423%20-216%20-153%20-41%20-296%20-55%20-554-55%20l-234%200%20-29%2033%20c-40%2046%20-58%20115%20-58%20222%20l0%2089%2060%2012%20c142%2030%20469%2085%2058098%20161%2019%20402%2020%20486%202z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='board'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M18.3,2.5c1.7,0,3.1,1.4,3.2,3.1l0,0.2l0,12c0,1.8-1.5,3.2-3.3,3.2h-12c-1.7,0-3.1-1.4-3.2-3.1l0-0.2l0-12%20C3,4,4.5,2.5,6.3,2.5H18.3z%20M11.5,9.5l-7,0l0,8.3l0,0.2c0.1,0.9,0.8,1.6,1.7,1.6l5.2,0V9.5z%20M20,15.5l-7,0v4l5.3,0%20c1,0,1.8-0.8,1.8-1.8L20,15.5z%20M18.3,4L13,4v10l7,0l0-8.2l0-0.2C19.9,4.7,19.2,4,18.3,4z%20M11.5,4L6.3,4L6.1,4%20C5.2,4.1,4.5,4.8,4.5,5.7l0,2.3l7,0V4z'/%3e%3c/symbol%3e%3csymbol%20id='book'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3.5%2019V5C3.5%203.895%204.395%203%205.5%203H18.5C19.605%203%2020.5%203.895%2020.5%205V15M3.5%2019C3.5%2017.895%204.395%2017%205.5%2017H18.5C19.605%2017%2020.5%2016.105%2020.5%2015M3.5%2019C3.5%2020.105%204.395%2021%205.5%2021H18.5C19.605%2021%2020.5%2020.105%2020.5%2019V15M16.5%207.657H7.5M16.5%2012H7.5'%20stroke='currentColor'%20fill='none'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='broken_link'%20viewBox='0%200%2040%2040'%3e%3cpath%20d='M28.9262%2020.0191L31.4892%2017.4561C32.6934%2016.2878%2033.3841%2014.6891%2033.4095%2013.0115C33.4349%2011.334%2032.7929%209.71505%2031.6246%208.51089C30.4564%207.30672%2028.8576%206.61596%2027.1801%206.59057C25.5025%206.56517%2023.8836%207.20722%2022.6794%208.37547C22.6336%208.41991%2022.5885%208.46505%2022.544%208.51089L17.0625%2013.9924C16.4752%2014.5794%2016.0092%2015.2762%2015.6911%2016.0432C15.3731%2016.8103%2015.2093%2017.6324%2015.209%2018.4628C15.2087%2019.2931%2015.3719%2020.1154%2015.6894%2020.8826C16.0069%2021.6499%2016.4724%2022.3471%2017.0594%2022.9344L17.0625%2022.9376L17.0462%2022.9539C17.5568%2023.4548%2018.1496%2023.8642%2018.7988%2024.1643'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.2022%2015.834C21.8515%2016.1346%2022.4443%2016.5445%2022.9548%2017.0458C24.141%2018.2312%2024.8078%2019.8392%2024.8084%2021.5162C24.809%2023.1931%2024.1434%2024.8016%2022.958%2025.9879L22.9548%2025.991L17.4734%2031.4725C16.2811%2032.6294%2014.6817%2033.2708%2013.0205%2033.2583C11.3593%2033.2458%209.76968%2032.5803%208.59501%2031.4057C7.42033%2030.231%206.75487%2028.6414%206.74237%2026.9802C6.72986%2025.319%207.37131%2023.7195%208.52817%2022.5273L11.0911%2019.9643'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M26.666%2034.9993V31.666'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M31.666%2026.666H34.9993'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%2013.334H8.33333'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.334%205V8.33333'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='bug'%20viewBox='0%200%2040%2040'%3e%3cg%20transform='translate(8%208)'%3e%3cpath%20d='M20,0A20,20,0,1,1,0,20,20,20,0,0,1,20,0Z'%20transform='translate(-8%20-8)'%20fill='none'/%3e%3cg%20transform='translate(15478%2019354)'%3e%3crect%20width='24'%20height='24'%20transform='translate(-15478%20-19354)'%20fill='none'/%3e%3cpath%20d='M10.5,2.751a.75.75,0,0,0-1.5,0V3.5a2.986,2.986,0,0,0,.53,1.7A3.753,3.753,0,0,0,7.009,8.49H6.753A2.25,2.25,0,0,1,4.512,6.231l.006-1.486a.75.75,0,0,0-1.5-.006L3.012,6.224A3.75,3.75,0,0,0,6.747,9.99H7V11.5H2.75a.75.75,0,0,0,0,1.5H7v1.992H6.747a3.75,3.75,0,0,0-3.734,3.765l.006,1.486a.75.75,0,1,0,1.5-.006l-.006-1.486a2.25,2.25,0,0,1,2.241-2.259h.473a5,5,0,0,0,9.547,0h.473a2.25,2.25,0,0,1,2.241,2.259l-.006,1.486a.75.75,0,1,0,1.5.006l.006-1.486a3.75,3.75,0,0,0-3.734-3.765H17V13h4.251a.75.75,0,0,0,0-1.5H17V9.99h.253a3.75,3.75,0,0,0,3.734-3.765l-.006-1.486a.75.75,0,0,0-1.5.006l.006,1.486A2.25,2.25,0,0,1,17.247,8.49h-.256A3.753,3.753,0,0,0,14.47,5.206,2.986,2.986,0,0,0,15,3.5V2.751a.75.75,0,0,0-1.5,0V3.5a1.5,1.5,0,0,1-3,0Zm-2,6A2.25,2.25,0,0,1,10.75,6.5h2.5a2.25,2.25,0,0,1,2.25,2.25V15a3.5,3.5,0,0,1-7,0Z'%20transform='translate(-15478%20-19353.496)'%20fill='currentColor'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='bug_big'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.5%202.75098C10.5%202.33676%2010.1642%202.00098%209.75%202.00098C9.33579%202.00098%209%202.33676%209%202.75098V3.50309C9%204.13555%209.19571%204.7223%209.52988%205.20608C8.13703%205.68509%207.11506%206.96142%207.00909%208.48994H6.76245L6.75315%208.48992C5.51052%208.48479%204.50733%207.47327%204.51247%206.23064L4.51861%204.74504C4.52032%204.33083%204.18593%203.99366%203.77172%203.99195C3.35751%203.99024%203.02034%204.32463%203.01863%204.73884L3.01248%206.22444C3.00392%208.29549%204.6759%209.98135%206.74695%209.98991L6.76245%209.98994H7V11.4996H2.75C2.33579%2011.4996%202%2011.8354%202%2012.2496C2%2012.6638%202.33579%2012.9996%202.75%2012.9996H7V14.9919H6.76245L6.74695%2014.992C4.6759%2015.0005%203.00392%2016.6864%203.01248%2018.7574L3.01863%2020.243C3.02034%2020.6572%203.35751%2020.9916%203.77172%2020.9899C4.18593%2020.9882%204.52032%2020.651%204.51861%2020.2368L4.51247%2018.7512C4.50733%2017.5086%205.51052%2016.4971%206.75315%2016.492L6.76245%2016.4919H7.22633C7.86093%2018.5247%209.75816%2020.0001%2012%2020.0001C14.2418%2020.0001%2016.1391%2018.5247%2016.7737%2016.4919H17.2375L17.2468%2016.492C18.4895%2016.4971%2019.4927%2017.5086%2019.4875%2018.7512L19.4814%2020.2368C19.4797%2020.651%2019.8141%2020.9882%2020.2283%2020.9899C20.6425%2020.9916%2020.9797%2020.6572%2020.9814%2020.243L20.9875%2018.7574C20.9961%2016.6864%2019.3241%2015.0005%2017.253%2014.992L17.2375%2014.9919H17V12.9996H21.2514C21.6656%2012.9996%2022.0014%2012.6638%2022.0014%2012.2496C22.0014%2011.8354%2021.6656%2011.4996%2021.2514%2011.4996H17V9.98994H17.2375L17.253%209.98991C19.3241%209.98135%2020.9961%208.29549%2020.9875%206.22444L20.9814%204.73884C20.9797%204.32463%2020.6425%203.99024%2020.2283%203.99195C19.8141%203.99366%2019.4797%204.33083%2019.4814%204.74504L19.4875%206.23064C19.4927%207.47327%2018.4895%208.48479%2017.2468%208.48992L17.2375%208.48994H16.9909C16.8849%206.96142%2015.863%205.6851%2014.4701%205.20608C14.8043%204.7223%2015%204.13555%2015%203.50309V2.75098C15%202.33676%2014.6642%202.00098%2014.25%202.00098C13.8358%202.00098%2013.5%202.33676%2013.5%202.75098V3.50309C13.5%204.33151%2012.8284%205.00309%2012%205.00309C11.1716%205.00309%2010.5%204.33151%2010.5%203.50309V2.75098ZM8.5%208.75311C8.5%207.51047%209.50736%206.50311%2010.75%206.50311H13.25C14.4926%206.50311%2015.5%207.51047%2015.5%208.75311V15.0001C15.5%2016.9331%2013.933%2018.5001%2012%2018.5001C10.067%2018.5001%208.5%2016.9331%208.5%2015.0001V8.75311Z'/%3e%3c/symbol%3e%3csymbol%20id='bug_report'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%207L17%209L15.667%209.917M5%2012H8.111M15.889%2012H19M6%203H5C3.895%203%203%203.895%203%205V6M18%2021H19C20.105%2021%2021%2020.105%2021%2019V18M3%2018V19C3%2020.105%203.895%2021%205%2021H6M21%206V5C21%203.895%2020.105%203%2019%203H18M6%207L7%209L8.333%209.917M6%2017L7%2015L8.333%2014.083M18%2017L17%2015L15.667%2014.083M12.444%2017H11.555C9.898%2017%208.555%2015.657%208.555%2014V11C8.555%209.895%209.45%209%2010.555%209H13.444C14.549%209%2015.444%209.895%2015.444%2011V14C15.444%2015.657%2014.101%2017%2012.444%2017ZM14%209H10V7C10%206.448%2010.448%206%2011%206H13C13.552%206%2014%206.448%2014%207V9Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='building'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2019V5.77778V5.77778C9%205.34822%209.33579%205%209.75%205H14.25V5C14.6642%205%2015%205.34822%2015%205.77778V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%2019V8.71736V8.71736C19%208.32117%2018.673%208%2018.2696%208H15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%208H5.7304H5.7304C5.32701%208%205%208.32117%205%208.71736V8.71736V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2010H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012.5H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2015H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2010H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2012.5H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2015H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2013H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2015.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2010.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%208H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2018V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2019H4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='building_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='white'/%3e%3cpath%20d='M9%2019V5.77778V5.77778C9%205.34822%209.33579%205%209.75%205H14.25V5C14.6642%205%2015%205.34822%2015%205.77778V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%2019V8.71736V8.71736C19%208.32117%2018.673%208%2018.2696%208H15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%208H5.7304H5.7304C5.32701%208%205%208.32117%205%208.71736V8.71736V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2010H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012.5H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2015H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2010H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2012.5H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2015H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2013H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2015.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2010.5H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%208H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2018V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2019H4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='business_center'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0zm10%205h4v2h-4zm0%200h4v2h-4z'/%3e%3cpath%20d='M10%2016v-1H3.01L3%2019c0%201.11.89%202%202%202h14c1.11%200%202-.89%202-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2%202v2H4c-1.1%200-2%20.9-2%202v3c0%201.11.89%202%202%202h6v-2h4v2h6c1.1%200%202-.9%202-2V9c0-1.1-.9-2-2-2zm-6%200h-4V5h4v2z'/%3e%3c/symbol%3e%3csymbol%20id='calendar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%202V6M17%2012V12.5M12%2012V12.5M12%2016V16.5M7%2016V16.5M8%202V6M3%209H21M19%204H5C3.895%204%203%204.895%203%206V19C3%2020.105%203.895%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V6C21%204.895%2020.105%204%2019%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_colored'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='%234EA9A2'/%3e%3cpath%20d='M14.166%208.3335V12.2224'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M25.833%208.3335V12.2224'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.119%2017.9389H19.106C19.3393%2017.4463%2019.9227%2017.2519%2020.4023%2017.4982C20.5838%2017.5889%2020.7393%2017.7445%2020.8301%2017.9259L21.5301%2019.3519L21.5171%2019.3389C21.6467%2019.6241%2021.919%2019.8185%2022.243%2019.8574L23.8245%2020.0908C24.343%2020.1556%2024.719%2020.6482%2024.6412%2021.1797C24.6023%2021.3871%2024.4986%2021.5815%2024.356%2021.7241L23.2023%2022.8389H23.1893C22.956%2023.0593%2022.8523%2023.3704%2022.9041%2023.6945L23.1634%2025.263L23.1504%2025.25C23.2412%2025.7685%2022.8782%2026.2741%2022.3597%2026.3648C22.1393%2026.3908%2021.9319%2026.3648%2021.7375%2026.2611L20.3115%2025.5093C20.0264%2025.3537%2019.6764%2025.3537%2019.4041%2025.4963L17.9782%2026.2352V26.2222C17.4986%2026.4685%2016.9153%2026.2871%2016.669%2025.8074C16.5653%2025.613%2016.5264%2025.3926%2016.5653%2025.1852L16.8245%2023.6037V23.5908C16.8764%2023.2667%2016.7727%2022.9556%2016.5393%2022.7222L15.3986%2021.5945C15.0097%2021.2185%2014.9967%2020.5963%2015.3727%2020.2204C15.5153%2020.0648%2015.7097%2019.9611%2015.9171%2019.9352L17.4986%2019.6889V19.6759C17.8097%2019.6241%2018.0819%2019.4297%2018.2245%2019.1445L19.119%2017.9389Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M27.7775%2010.2778H12.2219C10.0741%2010.2778%208.33301%2012.0189%208.33301%2014.1667V27.7778C8.33301%2029.9256%2010.0741%2031.6667%2012.2219%2031.6667H27.7775C29.9252%2031.6667%2031.6663%2029.9256%2031.6663%2027.7778V14.1667C31.6663%2012.0189%2029.9252%2010.2778%2027.7775%2010.2778Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_load'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M13.3333%201.6665V4.99984M5.83333%209.99984V10.4165M10%209.99984V10.4165M5.83333%2013.3332V13.7498M6.66667%201.6665V4.99984M2.5%207.49984H17.5M9.16667%2017.4998H4.16667C3.24583%2017.4998%202.5%2016.754%202.5%2015.8332V4.99984C2.5%204.079%203.24583%203.33317%204.16667%203.33317H15.8333C16.7542%203.33317%2017.5%204.079%2017.5%204.99984V9.99984M11.6667%2015.3123L12.6042%2016.2498M12.6042%2016.2498L13.5417%2015.3123M12.6042%2016.2498V13.7498C12.6042%2013.4183%2012.7359%2013.1004%2012.9703%2012.866C13.2047%2012.6315%2013.5226%2012.4998%2013.8542%2012.4998H15.8333M18.3333%2014.6873L17.3958%2013.7498M17.3958%2013.7498L16.4583%2014.6873M17.3958%2013.7498V16.2498C17.3958%2016.5814%2017.2641%2016.8993%2017.0297%2017.1337C16.7953%2017.3681%2016.4774%2017.4998%2016.1458%2017.4998H14.1667'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_sixteen'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8%201.5C8.27614%201.5%208.5%201.72386%208.5%202V3.5H15.5V2C15.5%201.72386%2015.7239%201.5%2016%201.5C16.2761%201.5%2016.5%201.72386%2016.5%202V3.5H19C20.3811%203.5%2021.5%204.61886%2021.5%206V19C21.5%2020.3811%2020.3811%2021.5%2019%2021.5H5C3.61886%2021.5%202.5%2020.3811%202.5%2019V6C2.5%204.61886%203.61886%203.5%205%203.5H7.5V2C7.5%201.72386%207.72386%201.5%208%201.5ZM7.5%204.5H5C4.17114%204.5%203.5%205.17114%203.5%206V19C3.5%2019.8289%204.17114%2020.5%205%2020.5H19C19.8289%2020.5%2020.5%2019.8289%2020.5%2019V6C20.5%205.17114%2019.8289%204.5%2019%204.5H16.5V6C16.5%206.27614%2016.2761%206.5%2016%206.5C15.7239%206.5%2015.5%206.27614%2015.5%206V4.5H8.5V6C8.5%206.27614%208.27614%206.5%208%206.5C7.72386%206.5%207.5%206.27614%207.5%206V4.5Z'%20fill='currentColor'/%3e%3cpath%20d='M9.09089%208.9C9.26423%208.90867%209.40289%208.97367%209.5069%209.095C9.61956%209.20767%209.67589%209.35067%209.67589%209.524V17.376C9.67589%2017.5493%209.6109%2017.6967%209.4809%2017.818C9.35089%2017.9393%209.19056%2018%208.99989%2018C8.80923%2018%208.65323%2017.9393%208.53189%2017.818C8.41056%2017.6967%208.34989%2017.5493%208.34989%2017.376V10.616L7.20589%2011.305C7.11056%2011.3657%207.00223%2011.396%206.88089%2011.396C6.70756%2011.396%206.56023%2011.331%206.43889%2011.201C6.31756%2011.0623%206.25689%2010.915%206.25689%2010.759C6.25689%2010.655%206.28723%2010.5553%206.34789%2010.46C6.40856%2010.3647%206.48656%2010.2867%206.58189%2010.226L8.63589%208.991C8.75723%208.93033%208.90889%208.9%209.09089%208.9Z'%20fill='currentColor'/%3e%3cpath%20d='M14.5715%2012.163C15.0482%2012.163%2015.4988%2012.3017%2015.9235%2012.579C16.3482%2012.8477%2016.6862%2013.2117%2016.9375%2013.671C17.1975%2014.1303%2017.3275%2014.6243%2017.3275%2015.153C17.3275%2015.6903%2017.1975%2016.1887%2016.9375%2016.648C16.6775%2017.0987%2016.3222%2017.4583%2015.8715%2017.727C15.4208%2017.9957%2014.9225%2018.13%2014.3765%2018.13C13.7525%2018.13%2013.2108%2017.9697%2012.7515%2017.649C12.3008%2017.3283%2011.9542%2016.908%2011.7115%2016.388C11.4688%2015.868%2011.3475%2015.309%2011.3475%2014.711C11.3475%2014.0437%2011.4775%2013.3113%2011.7375%2012.514C11.9975%2011.708%2012.4222%2010.9627%2013.0115%2010.278C13.6095%209.58467%2014.3722%209.09067%2015.2995%208.796C15.3775%208.77%2015.4555%208.757%2015.5335%208.757C15.7155%208.757%2015.8628%208.80467%2015.9755%208.9C16.0968%208.99533%2016.1575%209.147%2016.1575%209.355C16.1575%209.50233%2016.1098%209.63233%2016.0145%209.745C15.9192%209.85767%2015.7892%209.93567%2015.6245%209.979C15.0178%2010.1957%2014.4545%2010.5683%2013.9345%2011.097C13.4145%2011.6257%2013.0418%2012.2193%2012.8165%2012.878C13.3278%2012.4013%2013.9128%2012.163%2014.5715%2012.163ZM14.3635%2016.986C14.8575%2016.986%2015.2692%2016.8127%2015.5985%2016.466C15.9278%2016.1193%2016.0925%2015.6817%2016.0925%2015.153C16.0925%2014.6417%2015.9322%2014.2083%2015.6115%2013.853C15.2995%2013.489%2014.8922%2013.307%2014.3895%2013.307C13.8695%2013.307%2013.4405%2013.489%2013.1025%2013.853C12.7732%2014.2083%2012.6085%2014.6503%2012.6085%2015.179C12.6085%2015.6817%2012.7688%2016.1107%2013.0895%2016.466C13.4188%2016.8127%2013.8435%2016.986%2014.3635%2016.986Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='calendar_two_weeks'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%202V6M8%202V6M7%2011L9%2010V17M16%2015H11.5L15.5%2010H16V15ZM16%2015H17.5M16%2015V17M19%204H5C3.895%204%203%204.895%203%206V19C3%2020.105%203.895%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V6C21%204.895%2020.105%204%2019%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='calendar_user'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%203V6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5%203V6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2021H6C5.20435%2021%204.44129%2020.6839%203.87868%2020.1213C3.31607%2019.5587%203%2018.7956%203%2018V7.5C3%206.70435%203.31607%205.94129%203.87868%205.37868C4.44129%204.81607%205.20435%204.5%206%204.5H18C18.7956%204.5%2019.5587%204.81607%2020.1213%205.37868C20.6839%205.94129%2021%206.70435%2021%207.5V9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.5%2016H10.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%2012H10.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.43573%2011.2188C7.28739%2011.2188%207.14239%2011.2627%207.01905%2011.3452C6.89572%2011.4276%206.79959%2011.5447%206.74282%2011.6817C6.68606%2011.8188%206.6712%2011.9696%206.70014%2012.1151C6.72908%2012.2606%206.80051%2012.3942%206.9054%2012.4991C7.01029%2012.604%207.14393%2012.6754%207.28941%2012.7043C7.4349%2012.7333%207.5857%2012.7184%207.72274%2012.6617C7.85979%2012.6049%207.97692%2012.5088%208.05933%2012.3854C8.14174%2012.2621%208.18573%2012.1171%208.18573%2011.9688C8.18573%2011.7698%208.10671%2011.5791%207.96606%2011.4384C7.82541%2011.2978%207.63464%2011.2188%207.43573%2011.2188Z'%20fill='currentColor'/%3e%3cpath%20d='M7.43573%2015.2188C7.28739%2015.2188%207.14239%2015.2627%207.01905%2015.3452C6.89572%2015.4276%206.79959%2015.5447%206.74282%2015.6817C6.68606%2015.8188%206.6712%2015.9696%206.70014%2016.1151C6.72908%2016.2606%206.80051%2016.3942%206.9054%2016.4991C7.01029%2016.604%207.14393%2016.6754%207.28941%2016.7043C7.4349%2016.7333%207.5857%2016.7184%207.72274%2016.6617C7.85979%2016.6049%207.97692%2016.5088%208.05933%2016.3854C8.14174%2016.2621%208.18573%2016.1171%208.18573%2015.9688C8.18573%2015.7698%208.10671%2015.5791%207.96606%2015.4384C7.82541%2015.2978%207.63464%2015.2188%207.43573%2015.2188Z'%20fill='currentColor'/%3e%3cpath%20d='M15%2020.5V20.094C15.0016%2019.5391%2015.2227%2019.0074%2015.6151%2018.6151C16.0074%2018.2227%2016.5391%2018.0016%2017.094%2018H19.906C20.4609%2018.0016%2020.9926%2018.2227%2021.3849%2018.6151C21.7773%2019.0074%2021.9984%2019.5391%2022%2020.094V20.5C22%2020.6326%2021.9473%2020.7598%2021.8536%2020.8536C21.7598%2020.9473%2021.6326%2021%2021.5%2021H15.5C15.3674%2021%2015.2402%2020.9473%2015.1464%2020.8536C15.0527%2020.7598%2015%2020.6326%2015%2020.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.5%2015.75C19.6046%2015.75%2020.5%2014.8546%2020.5%2013.75C20.5%2012.6454%2019.6046%2011.75%2018.5%2011.75C17.3954%2011.75%2016.5%2012.6454%2016.5%2013.75C16.5%2014.8546%2017.3954%2015.75%2018.5%2015.75Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='camera_alt'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='12'%20cy='12'%20r='3.2'/%3e%3cpath%20d='M9%202L7.17%204H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2h-3.17L15%202H9zm3%2015c-2.76%200-5-2.24-5-5s2.24-5%205-5%205%202.24%205%205-2.24%205-5%205z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='camera_plus'%20viewBox='0%200%2024%2024'%3e%3crect%20fill='none'%20height='24'%20width='24'/%3e%3cpath%20d='M3,4V1h2v3h3v2H5v3H3V6H0V4H3z%20M6,10V7h3V4h7l1.83,2H21c1.1,0,2,0.9,2,2v12c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10H6z%20M13,19c2.76,0,5-2.24,5-5s-2.24-5-5-5s-5,2.24-5,5S10.24,19,13,19z%20M9.8,14c0,1.77,1.43,3.2,3.2,3.2s3.2-1.43,3.2-3.2%20s-1.43-3.2-3.2-3.2S9.8,12.23,9.8,14z'/%3e%3c/symbol%3e%3csymbol%20id='camera_video'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2012.9968L19.048%2015.7719C19.8331%2016.3107%2021%2015.8346%2021%2014.9759V9.02413C21%208.16545%2019.8331%207.68931%2019.048%208.22814L15%2011.0032M12.8182%2018H5.18182C3.97648%2018%203%2016.9492%203%2015.6522V8.34783C3%207.05078%203.97648%206%205.18182%206H12.8182C14.0235%206%2015%207.05078%2015%208.34783V15.6522C15%2016.9492%2014.0235%2018%2012.8182%2018Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cancel'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%202C6.47%202%202%206.47%202%2012s4.47%2010%2010%2010%2010-4.47%2010-10S17.53%202%2012%202zm5%2013.59L15.59%2017%2012%2013.41%208.41%2017%207%2015.59%2010.59%2012%207%208.41%208.41%207%2012%2010.59%2015.59%207%2017%208.41%2013.41%2012%2017%2015.59z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='cancel_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.42%200-8-3.58-8-8%200-1.85.63-3.55%201.69-4.9L16.9%2018.31C15.55%2019.37%2013.85%2020%2012%2020zm6.31-3.1L7.1%205.69C8.45%204.63%2010.15%204%2012%204c4.42%200%208%203.58%208%208%200%201.85-.63%203.55-1.69%204.9z'/%3e%3c/symbol%3e%3csymbol%20id='capitalist'%20viewBox='0%200%2024%2024'%3e%3cg%3e%3cpath%20d='M12,2.5c1.2,0,2.3,0,3.5,0c0.1,0,0.2,0,0.2,0c0.6,0,0.9,0.3,0.8,0.9c-0.2,1.1-0.4,2.3-0.5,3.4c0,0,0,0,0,0%20c-0.2,0.9,0,0.8-1,0.8c-2.1,0-4.2,0-6.3,0c-0.5,0-0.5,0-0.6-0.5C7.9,6,7.7,4.6,7.5,3.3C7.4,2.9,7.7,2.5,8.2,2.5c0.4,0,0.9,0,1.3,0%20C10.4,2.5,11.2,2.5,12,2.5z'/%3e%3cpath%20d='M12,8.5c1.1,0,2.2,0,3.2,0c0.4,0,0.5,0.1,0.4,0.5c-0.1,0.5-0.2,1-0.2,1.5c0,0.4-0.3,0.6-0.6,0.8c-0.5,0.2-1.1,0.3-1.6,0.4%20c-1.2,0.2-2.3,0.1-3.5-0.2c-0.2,0-0.4-0.1-0.6-0.2c-0.3-0.1-0.5-0.4-0.6-0.8c-0.1-0.5-0.1-1-0.2-1.5c-0.1-0.4,0-0.5,0.4-0.5%20C9.8,8.5,10.9,8.5,12,8.5z'/%3e%3cpath%20d='M6.9,19.9c0.2,0.1,0.5,0.3,0.7,0.4c0.4,0.2,0.9,0.2,1.3,0.1c0.7-0.2,1.2-0.5,1.7-1.1c0.4-0.5,0.8-0.5,1.2,0%20c0.2,0.2,0.3,0.2,0.4,0c0.5-0.5,0.8-0.5,1.2,0c0.5,0.6,1.2,1,2.1,1.1c0.3,0,0.5,0,0.8-0.1c0.3-0.1,0.6-0.3,0.8-0.5%20c0,0.7-0.5,1.4-1.2,1.7c-1.3,0.6-2.5,0.3-3.6-0.5c-0.2-0.2-0.3-0.2-0.6,0c-1,0.9-2.8,1.2-4.1,0.3C7.2,21,6.9,20.5,6.9,19.9%20L6.9,19.9z'/%3e%3cpath%20d='M12.3,13.6C10.1,13.7,8,13,6,11.8c-0.3-0.2-0.4-0.6-0.2-0.9c0.2-0.3,0.5-0.3,0.8-0.1c1,0.6,2,1.1,3.2,1.4%20c2.5,0.6,4.9,0.2,7.2-1.2c0.2-0.1,0.3-0.2,0.5-0.3c0.4-0.2,0.6-0.1,0.7,0.2c0.2,0.3,0.1,0.6-0.2,0.8c-0.4,0.3-0.8,0.5-1.2,0.7%20C15.4,13.1,14,13.5,12.3,13.6z'/%3e%3cpath%20d='M16.4,16.2c0,1-0.8,1.9-1.9,1.9c-1,0-1.9-0.7-1.9-1.7c0-0.2-0.1-0.3-0.3-0.3c-0.1,0-0.3,0-0.5,0c-0.3,0-0.5,0.1-0.5,0.4%20c-0.1,0.9-0.9,1.6-1.9,1.7c-0.9,0-1.7-0.7-1.9-1.6c-0.1-0.9,0.4-1.8,1.3-2.1c0.9-0.3,1.9,0.1,2.3,1c0.1,0.2,0.2,0.3,0.4,0.2%20c0.3-0.1,0.5-0.1,0.8,0c0.2,0.1,0.3,0,0.4-0.2c0.4-0.8,1.3-1.2,2.2-1C15.8,14.5,16.4,15.3,16.4,16.2z%20M9.5,17.7%20c0.8,0,1.5-0.6,1.5-1.4c0-0.8-0.7-1.5-1.5-1.5c-0.8,0-1.4,0.7-1.5,1.5C8,17,8.6,17.6,9.5,17.7z%20M14.5,17.7c0.8,0,1.4-0.6,1.4-1.4%20c0-0.8-0.7-1.5-1.5-1.5c-0.8,0-1.4,0.7-1.4,1.5C13.1,17,13.7,17.7,14.5,17.7z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='capitalist_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238EB748'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.3795%209.62832C10.3795%2010.6804%209.42163%2011.5752%208.18345%2011.5752C6.94527%2011.5752%205.98737%2010.6804%205.98737%209.62832C5.98737%208.57622%206.94527%207.68142%208.18345%207.68142C9.42163%207.68142%2010.3795%208.57622%2010.3795%209.62832ZM11.1116%209.62832C11.1116%2011.0799%209.8006%2012.2566%208.18345%2012.2566C6.5663%2012.2566%205.25535%2011.0799%205.25535%209.62832C5.25535%208.17674%206.5663%207%208.18345%207C9.46641%207%2010.5567%207.74064%2010.9525%208.77158C11.3271%208.66988%2011.6572%208.609%2011.9972%208.60629C12.366%208.60335%2012.7239%208.66893%2013.1436%208.79649C13.5313%207.7526%2014.6287%207%2015.922%207C17.5392%207%2018.8501%208.17674%2018.8501%209.62832C18.8501%2011.0799%2017.5392%2012.2566%2015.922%2012.2566C14.3049%2012.2566%2012.9939%2011.0799%2012.9939%209.62832C12.9939%209.575%2012.9957%209.52206%2012.9992%209.46953C12.9931%209.46793%2012.9871%209.46619%2012.9811%209.4643C12.5755%209.33643%2012.2833%209.28545%2012.0034%209.28768C11.7426%209.28975%2011.4709%209.33812%2011.1042%209.44041C11.1091%209.50248%2011.1116%209.56514%2011.1116%209.62832ZM14.87%2014.4883C16.0789%2015.3933%2017.5805%2016.5175%2019.9482%2014.9823C19.5299%2018.146%2015.19%2018.8274%2012.0527%2016.3938C8.8109%2018.9735%204.47103%2018.146%204.05273%2014.9823C6.72194%2016.5482%208.19382%2015.4124%209.35043%2014.52C10.3009%2013.7865%2011.0385%2013.2174%2012.0527%2014.4469C13.0168%2013.1008%2013.8364%2013.7144%2014.87%2014.4883ZM15.922%2011.5752C17.1602%2011.5752%2018.1181%2010.6804%2018.1181%209.62832C18.1181%208.57622%2017.1602%207.68142%2015.922%207.68142C14.6838%207.68142%2013.7259%208.57622%2013.7259%209.62832C13.7259%2010.6804%2014.6838%2011.5752%2015.922%2011.5752Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='card'%20viewBox='0%20-91%20512%20512'%3e%3cpath%20d='m347.339844%200c-33.765625%200-65.1875%2010.222656-91.339844%2027.722656-26.15625-17.5-57.574219-27.722656-91.339844-27.722656-90.792968%200-164.660156%2073.859375-164.660156%20164.644531%200%2090.785157%2073.867188%20164.644531%20164.660156%20164.644531%2033.765625%200%2065.1875-10.222656%2091.339844-27.722656%2026.15625%2017.5%2057.574219%2027.722656%2091.339844%2027.722656%2090.792968%200%20164.660156-73.859374%20164.660156-164.644531%200-90.785156-73.867188-164.644531-164.660156-164.644531zm0%20299.289062c-49.03125%200-92.023438-26.34375-115.570313-65.613281h17.304688c8.285156%200%2015-6.714843%2015-15%200-8.28125-6.714844-15-15-15h-30.617188c-1.851562-6.101562-3.285156-12.378906-4.261719-18.8125h58.882813c8.28125%200%2015-6.714843%2015-15%200-8.28125-6.71875-15-15-15h-60.042969c.460938-6.402343%201.378906-12.683593%202.710938-18.808593h33.328125c8.285156%200%2015-6.71875%2015-15%200-8.285157-6.714844-15-15-15h-22.960938c21.828125-44.972657%2067.964844-76.054688%20121.226563-76.054688%2074.25%200%20134.660156%2060.402344%20134.660156%20134.644531%200%2074.242188-60.410156%20134.644531-134.660156%20134.644531zm0%200'/%3e%3c/symbol%3e%3csymbol%20id='card_off'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%208H21'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2012H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%2018H6C5.20435%2018%204.44129%2017.6839%203.87868%2017.1213C3.31607%2016.5587%203%2015.7956%203%2015V7C3%206.20435%203.31607%205.44129%203.87868%204.87868C4.44129%204.31607%205.20435%204%206%204H18C18.7956%204%2019.5587%204.31607%2020.1213%204.87868C20.6839%205.44129%2021%206.20435%2021%207V12'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17%2017L20%2020'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2017L17%2020'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='card_off_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2%206.85H21M17%2021C14.239%2021%2012%2018.761%2012%2016C12%2013.239%2014.239%2011%2017%2011C19.762%2011%2022%2013.239%2022%2016C22%2018.761%2019.762%2021%2017%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2013V5C21%203.895%2020.105%203%2019%203H4C2.895%203%202%203.895%202%205V14C2%2015.105%202.895%2016%204%2016H12M18.41%2014.59L15.59%2017.41M18.41%2017.41L15.59%2014.59'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='card_to_card_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M15.667%2017.6667L14.667%2016.6667L15.667%2015.6667'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.667%2016.6667H16.667C17.0206%2016.6667%2017.3598%2016.5262%2017.6098%2016.2761C17.8598%2016.0261%2018.0003%2015.6869%2018.0003%2015.3333V14.6667'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.33301%206.33334L9.33301%207.33334L8.33301%208.33334'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.33333%207.33334H7.33333C6.97971%207.33334%206.64057%207.47382%206.39052%207.72387C6.14048%207.97392%206%208.31305%206%208.66668V9.33334'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.6663%2014.3333H5.33301'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.1663%2012H6.83301C6.00458%2012%205.33301%2012.6716%205.33301%2013.5V16.5C5.33301%2017.3284%206.00458%2018%206.83301%2018H11.1663C11.9948%2018%2012.6663%2017.3284%2012.6663%2016.5V13.5C12.6663%2012.6716%2011.9948%2012%2011.1663%2012Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.6663%2012H17.1663C17.5642%2012%2017.9457%2011.842%2018.227%2011.5607C18.5083%2011.2794%2018.6663%2010.8978%2018.6663%2010.5V7.5C18.6663%207.10218%2018.5083%206.72064%2018.227%206.43934C17.9457%206.15804%2017.5642%206%2017.1663%206H12.833C12.4352%206%2012.0537%206.15804%2011.7723%206.43934C11.491%206.72064%2011.333%207.10218%2011.333%207.5V10'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.6663%208.33334H11.333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='card_to_card_colored'%20viewBox='0%200%2032%2032'%3e%3crect%20width='32'%20height='32'%20rx='16'%20fill='%234EA9A2'/%3e%3cpath%20d='M20.888%2023.5553L19.5547%2022.222L20.888%2020.8887'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.5547%2022.2223H22.2214C22.6929%2022.2223%2023.145%2022.035%2023.4784%2021.7016C23.8118%2021.3682%2023.9991%2020.916%2023.9991%2020.4446V19.5557'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.1113%208.44434L12.4447%209.77767L11.1113%2011.111'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4444%209.77783H9.77778C9.30628%209.77783%208.8541%209.96513%208.5207%2010.2985C8.1873%2010.6319%208%2011.0841%208%2011.5556V12.4445'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.8891%2019.1113H7.11133'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.8891%2016H9.11133C8.00676%2016%207.11133%2016.8954%207.11133%2018V22C7.11133%2023.1046%208.00676%2024%209.11133%2024H14.8891C15.9937%2024%2016.8891%2023.1046%2016.8891%2022V18C16.8891%2016.8954%2015.9937%2016%2014.8891%2016Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.5557%2016H22.8891C23.4195%2016%2023.9282%2015.7893%2024.3033%2015.4142C24.6784%2015.0391%2024.8891%2014.5304%2024.8891%2014V10C24.8891%209.46957%2024.6784%208.96086%2024.3033%208.58579C23.9282%208.21071%2023.4195%208%2022.8891%208H17.1113C16.5809%208%2016.0722%208.21071%2015.6971%208.58579C15.322%208.96086%2015.1113%209.46957%2015.1113%2010V13.3333'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M24.8891%2011.1113H15.1113'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cash-ad'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2022L14%2020L16%2018'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20%2020H14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.0589%207.40433L7.40399%2012.0592C6.95489%2012.5083%206.95489%2013.2364%207.40399%2013.6856L10.3141%2016.5956C10.7632%2017.0447%2011.4913%2017.0447%2011.9404%2016.5956L16.5953%2011.9408C17.0444%2011.4917%2017.0444%2010.7635%2016.5953%2010.3144L13.6852%207.40433C13.2361%206.95523%2012.508%206.95523%2012.0589%207.40433Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.2077%2012.1391C12.2352%2012.098%2012.2499%2012.0497%2012.25%2012.0003C12.25%2011.9674%2012.2436%2011.9349%2012.231%2011.9045C12.2185%2011.8741%2012.2%2011.8465%2012.1768%2011.8232C12.1535%2011.8%2012.1259%2011.7815%2012.0955%2011.769C12.0651%2011.7564%2012.0326%2011.75%2011.9997%2011.75C11.9503%2011.7501%2011.902%2011.7648%2011.8609%2011.7923C11.8198%2011.8198%2011.7879%2011.8588%2011.769%2011.9045C11.7501%2011.9501%2011.7452%2012.0004%2011.7548%2012.0489C11.7645%2012.0973%2011.7883%2012.1418%2011.8232%2012.1768C11.8582%2012.2117%2011.9027%2012.2355%2011.9511%2012.2452C11.9996%2012.2548%2012.0499%2012.2499%2012.0955%2012.231C12.1412%2012.2121%2012.1802%2012.1802%2012.2077%2012.1391Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.0534%2016C20.8856%2014.325%2021.175%2012.4322%2020.8815%2010.5851C20.5879%208.73788%2019.7259%207.02813%2018.4154%205.69364C17.105%204.35915%2015.4111%203.46628%2013.5696%203.13924C11.728%202.81219%209.83035%203.06724%208.1405%203.8689C6.45066%204.67055%205.05268%205.97896%204.14103%207.6121C3.22939%209.24524%202.84942%2011.1219%203.05397%2012.981C3.25853%2014.8402%204.03744%2016.5893%205.28235%2017.9852C6.52727%2019.3811%208.17628%2020.3542%2010%2020.7693'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cash'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M6.3,7.5H21v9.8H6.3V7.5%20M13.6,9.9c1.4,0,2.5,1.1,2.5,2.5s-1.1,2.5-2.5,2.5s-2.5-1.1-2.5-2.5S12.3,9.9,13.6,9.9%20M9.5,9.1%20c0,0.9-0.7,1.6-1.6,1.6V14c0.9,0,1.6,0.7,1.6,1.6h8.2c0-0.9,0.7-1.6,1.6-1.6v-3.3c-0.9,0-1.6-0.7-1.6-1.6H9.5%20M3,10.7h1.6v8.2h13.1%20v1.6H3V10.7z'/%3e%3c/symbol%3e%3csymbol%20id='category'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%2011C5.567%2011%204%209.433%204%207.5C4%205.567%205.567%204%207.5%204C9.433%204%2011%205.567%2011%207.5C11%209.433%209.433%2011%207.5%2011Z'/%3e%3cpath%20d='M16.5%2011C14.567%2011%2013%209.433%2013%207.5C13%205.567%2014.567%204%2016.5%204C18.433%204%2020%205.567%2020%207.5C20%209.433%2018.433%2011%2016.5%2011Z'/%3e%3cpath%20d='M7.5%2020C5.567%2020%204%2018.433%204%2016.5C4%2014.567%205.567%2013%207.5%2013C9.433%2013%2011%2014.567%2011%2016.5C11%2018.433%209.433%2020%207.5%2020Z'/%3e%3cpath%20d='M20%2016.5C20%2014.567%2018.433%2013%2016.5%2013C14.567%2013%2013%2014.567%2013%2016.5C13%2018.433%2014.567%2020%2016.5%2020C18.433%2020%2020%2018.433%2020%2016.5Z'/%3e%3c/symbol%3e%3csymbol%20id='cellphone'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17,19H7V5H17M17,1H7C5.89,1%205,1.89%205,3V21A2,2%200%200,0%207,23H17A2,2%200%200,0%2019,21V3C19,1.89%2018.1,1%2017,1Z'/%3e%3c/symbol%3e%3csymbol%20id='change_sheet'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2013H7M5%2016H9M16%2019.316V19.5C16%2019.8978%2015.842%2020.2794%2015.5607%2020.5607C15.2794%2020.842%2014.8978%2021%2014.5%2021H3.5C3.10218%2021%202.72064%2020.842%202.43934%2020.5607C2.15804%2020.2794%202%2019.8978%202%2019.5V4.5C2%204.10218%202.15804%203.72064%202.43934%203.43934C2.72064%203.15804%203.10218%203%203.5%203H14.5C14.8978%203%2015.2794%203.15804%2015.5607%203.43934C15.842%203.72064%2016%204.10218%2016%204.5V14M16%2014L16.0019%2013.997L13.6229%2011.4763C13.4835%2011.3286%2013.3159%2011.2103%2013.13%2011.1285C12.9441%2011.0468%2012.7436%2011.0031%2012.5405%2011.0002C12.3374%2010.9972%2012.1358%2011.0351%2011.9476%2011.1114C11.7594%2011.1878%2011.5884%2011.3012%2011.4448%2011.4448C11.1968%2011.6928%2011.0423%2012.019%2011.0075%2012.3679C10.9727%2012.7169%2011.0598%2013.0672%2011.254%2013.3592L14.2411%2017.8527C14.7341%2018.5943%2015.4606%2019.1502%2016.3053%2019.4322L21%2021M16%2014H17.5M16%209H17.2918C17.7575%209%2018.2169%209.10843%2018.6334%209.31671L19.2874%209.64371C19.7544%209.87719%2020.1523%2010.2285%2020.4419%2010.6629L22%2013M8%207.5C8%208.32843%207.32843%209%206.5%209C5.67157%209%205%208.32843%205%207.5C5%206.67157%205.67157%206%206.5%206C7.32843%206%208%206.67157%208%207.5Z'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='channels_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2C13.6,2,13.6,2,13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22c0,0,0,0,0,0h10.3c4.6,0,8.4-3.8,8.4-8.4%20v-3.2C22,5.8,18.2,2,13.6,2z%20M16.6,15c0,0.7-0.6,1.3-1.3,1.3H7.8c-0.5,0-1-0.4-1-1V9.4c0-0.5,0.4-1,1-1h7.5c0,0,0,0,0,0%20c0.7,0,1.3,0.6,1.3,1.2V15z'/%3e%3cpath%20d='M12.9,13.3H8c-0.1,0-0.3,0.1-0.3,0.3v1.4c0,0.1,0.1,0.3,0.3,0.3h4.8c0.1,0,0.3-0.1,0.3-0.3v-1.4%20C13.1,13.4,13,13.3,12.9,13.3z'/%3e%3cpath%20d='M12.9,10.8H8c0,0,0,0,0,0c-0.2,0-0.3,0.1-0.3,0.3v1.4c0,0.1,0.1,0.3,0.3,0.3h4.8c0,0,0,0,0,0c0.2,0,0.3-0.1,0.3-0.3v-1.4%20C13.1,10.9,13,10.8,12.9,10.8z'/%3e%3cpath%20d='M15.3,10.8h-1.4c0,0,0,0,0,0c-0.2,0-0.3,0.1-0.3,0.3v3.9c0,0.2,0.1,0.3,0.3,0.3h1.4c0,0,0,0,0,0c0.2,0,0.3-0.1,0.3-0.3v-3.9%20C15.6,10.9,15.5,10.8,15.3,10.8z'/%3e%3c/symbol%3e%3csymbol%20id='chart_bar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2020H20M5%2012V20H8V12H5ZM10.5%204V20H13.5V4H10.5ZM16%209V20H19V9H16Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chart_line'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%204V20H20M14.7205%209.30658L18.2909%205.70516M9.90395%208.4282L12.9995%2010M12.9995%2010C12.9995%2010.5523%2013.4477%2011%2014%2011C14.5523%2011%2015%2010.5523%2015%2010C15%209.44772%2014.5523%209%2014%209C13.4477%209%2012.9995%209.44772%2012.9995%2010ZM4%2011L8.15234%208.53079M14.8486%2015.4706L18.1577%2013.5392M9%2016H13M9%2016C9%2016.5523%208.55228%2017%208%2017C7.44772%2017%207%2016.5523%207%2016C7%2015.4477%207.44772%2015%208%2015C8.55228%2015%209%2015.4477%209%2016ZM13%2016C13%2016.5523%2013.4477%2017%2014%2017C14.5523%2017%2015%2016.5523%2015%2016C15%2015.4477%2014.5523%2015%2014%2015C13.4477%2015%2013%2015.4477%2013%2016ZM4%2018L7.13378%2016.5M10%208C10%208.55228%209.55228%209%209%209C8.44772%209%208%208.55228%208%208C8%207.44772%208.44772%207%209%207C9.55228%207%2010%207.44772%2010%208ZM20%205C20%205.55228%2019.5523%206%2019%206C18.4477%206%2018%205.55228%2018%205C18%204.44772%2018.4477%204%2019%204C19.5523%204%2020%204.44772%2020%205ZM20%2013C20%2013.5523%2019.5523%2014%2019%2014C18.4477%2014%2018%2013.5523%2018%2013C18%2012.4477%2018.4477%2012%2019%2012C19.5523%2012%2020%2012.4477%2020%2013Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chat'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.541%2016.938C3.577%2015.5126%203%2013.8066%203%2011.9582C3%207.01029%207.029%203%2012%203C16.971%203%2021%207.01029%2021%2011.9582C21%2016.9061%2016.971%2020.9164%2012%2020.9164C10.474%2020.9164%209.04%2020.5312%207.78%2019.8643C6.434%2020.579%204.907%2021%203.276%2021C2.842%2021%202.419%2020.9612%202%2020.9064C3.173%2019.8444%204.055%2018.4808%204.541%2016.938Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='chat_add'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%206.49997H19'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M17.5%207.99997V4.99997'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M17.5%2011C19.9853%2011%2022%208.98528%2022%206.5C22%204.01472%2019.9853%202%2017.5%202C15.0147%202%2013%204.01472%2013%206.5C13%208.98528%2015.0147%2011%2017.5%2011Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%203H6C5.20435%203%204.44129%203.31607%203.87868%203.87868C3.31607%204.44129%203%205.20435%203%206V15C3%2015.7956%203.31607%2016.5587%203.87868%2017.1213C4.44129%2017.6839%205.20435%2018%206%2018H8.007V20.4429C8.007%2020.5476%208.03659%2020.6503%208.09235%2020.7389C8.14812%2020.8276%208.22779%2020.8987%208.3222%2020.9441C8.41662%2020.9895%208.52192%2021.0073%208.626%2020.9954C8.73008%2020.9836%208.82869%2020.9426%208.91049%2020.8771L12.507%2018H18C18.7956%2018%2019.5587%2017.6839%2020.1213%2017.1213C20.6839%2016.5587%2021%2015.7956%2021%2015V14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chat_forum'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6.557%2011.9612C6.199%2011.1347%206%2010.2338%206%209.28847C6%205.24458%209.598%202%2014%202C18.402%202%2022%205.24458%2022%209.28847C22%2011.6784%2020.738%2013.7824%2018.801%2015.1092C18.802%2015.8702%2018.8%2016.8961%2018.8%2017.9732L15.661%2016.4169C15.124%2016.5206%2014.569%2016.5769%2014%2016.5769C13.293%2016.5769%2012.607%2016.4924%2011.953%2016.3343M7.18359%2021.8117C9.89159%2021.8117%2011.982%2019.596%2011.982%2016.8699C11.982%2014.1438%209.787%2011.9331%207.078%2011.9331C4.369%2011.9331%202.174%2014.1438%202.174%2016.8699C2.174%2017.6148%202.338%2018.3215%202.631%2018.9558L2%2022L5.018%2021.3547C5.70092%2021.6733%206.43388%2021.8117%207.18359%2021.8117Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='chat_messages'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2013V13.5M15%2013V13.5M18%2013V13.5M9%2015L6%2017V14H5C3.895%2014%203%2013.105%203%2012V6C3%204.895%203.895%204%205%204H14C15.105%204%2016%204.895%2016%206V8M14%2018L18%2021V18H19C20.105%2018%2021%2017.105%2021%2016V10C21%208.895%2020.105%208%2019%208H11C9.895%208%209%208.895%209%2010V16C9%2017.105%209.895%2018%2011%2018H14Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check-rhombus'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14.5122%2010.707L11.3732%2013.846L9.48621%2011.965M4.51427%208.46446L8.46467%204.51406C10.4173%202.56144%2013.5831%202.56144%2015.5357%204.51407L19.4861%208.46447C21.4388%2010.4171%2021.4388%2013.5829%2019.4861%2015.5355L15.5357%2019.4859C13.5831%2021.4386%2010.4173%2021.4386%208.46467%2019.4859L4.51427%2015.5355C2.56165%2013.5829%202.56165%2010.4171%204.51427%208.46446Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M9%2016.17L4.83%2012l-1.42%201.41L9%2019%2021%207l-1.41-1.41z'/%3e%3c/symbol%3e%3csymbol%20id='check_all'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.623%2016.3119H18.123'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.37402%2015.8818L6.6186%2017L9.12402%2014.75'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.623%209.56194H18.123'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.37402%209.13175L6.6186%2010.25L9.12402%208'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2022C6.47667%2022%202%2017.5233%202%2012C2%206.47667%206.47667%202%2012%202C17.5233%202%2022%206.47667%2022%2012C22%2017.5233%2017.5233%2022%2012%2022Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%209L11%2015L8%2012'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check_circle_second'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19.4639%206.688L11.9999%2014.125L8.96289%2011.088'%20stroke='currentColor'%20stroke-linecap='round'%20fill='none'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.5%2011C20.6841%2012.9752%2020.4739%2014.0787%2019.5763%2015.8477C18.6788%2017.6168%2017.1907%2019.0163%2015.3699%2019.8036C13.5491%2020.591%2011.5103%2020.7168%209.60655%2020.1591C7.7028%2019.6014%206.05407%2018.3954%204.94593%2016.75C3.8378%2015.1047%203.34006%2013.1235%203.53893%2011.1498C3.7378%209.17601%204.62075%207.33397%206.03485%205.94272C7.44895%204.55147%209.30513%203.69864%2011.2819%203.53195C13.2586%203.36526%2014.2486%203.56839%2016%204.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='check_circle_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20stroke='none'%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2012C2%2017.5233%206.47667%2022%2012%2022C17.5233%2022%2022%2017.5233%2022%2012C22%206.47667%2017.5233%202%2012%202C6.47667%202%202%206.47667%202%2012ZM16.5762%209.48014C16.8413%209.16193%2016.7983%208.68901%2016.4801%208.42383C16.1619%208.15866%2015.689%208.20165%2015.4238%208.51986L10.9496%2013.8889L8.53033%2011.4697C8.23744%2011.1768%207.76256%2011.1768%207.46967%2011.4697C7.17678%2011.7626%207.17678%2012.2374%207.46967%2012.5303L10.4697%2015.5303C10.6187%2015.6793%2010.8235%2015.7588%2011.034%2015.7492C11.2445%2015.7397%2011.4413%2015.642%2011.5762%2015.4801L16.5762%209.48014Z'/%3e%3c/symbol%3e%3csymbol%20id='check_polygonal'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2010.5L11.25%2014.25L9%2012M8.827%2018.657H6.346C5.792%2018.657%205.343%2018.208%205.343%2017.654V15.172C5.343%2014.906%205.237%2014.651%205.049%2014.463L3.294%2012.708C2.902%2012.316%202.902%2011.681%203.294%2011.29L5.067%209.517C5.244%209.34%205.343%209.101%205.343%208.851V6.346C5.343%205.792%205.792%205.343%206.346%205.343H8.828C9.094%205.343%209.349%205.237%209.537%205.049L11.292%203.294C11.684%202.902%2012.319%202.902%2012.71%203.294L14.465%205.049C14.653%205.237%2014.908%205.343%2015.174%205.343H17.656C18.21%205.343%2018.659%205.792%2018.659%206.346V8.828C18.659%209.094%2018.765%209.349%2018.953%209.537L20.708%2011.292C21.1%2011.684%2021.1%2012.319%2020.708%2012.71L18.953%2014.465C18.765%2014.653%2018.659%2014.908%2018.659%2015.174V17.656C18.659%2018.21%2018.21%2018.659%2017.656%2018.659H15.174C14.908%2018.659%2014.653%2018.765%2014.465%2018.953L12.71%2020.708C12.318%2021.1%2011.683%2021.1%2011.292%2020.708L9.537%2018.953C9.348%2018.762%209.093%2018.657%208.827%2018.657Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='checkbox--checked'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M8.20801%2014.4596L16.208%206.45956L14.9582%205.16711L8.20801%2011.9182L5.04001%208.75022L3.79379%2010L8.20801%2014.4596ZM16.208%202C16.7081%202%2017.1319%202.18074%2017.4791%202.54222C17.8264%202.9037%2018%203.3197%2018%203.79022V16.208C18%2016.6803%2017.8264%2017.0969%2017.4791%2017.4578C17.1319%2017.8193%2016.7081%2018%2016.208%2018H3.79023C3.29068%2018%202.86698%2017.8193%202.51912%2017.4578C2.17127%2017.0963%201.99824%2016.6797%202.00001%2016.208V3.79022C2.00001%203.31852%202.17335%202.90252%202.52001%202.54222C2.86668%202.18074%203.29038%202%203.79112%202H16.2089H16.208Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='checkbox'%20viewBox='0%200%2020%2020'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17%204C17%203.44772%2016.5523%203%2016%203H4C3.44772%203%203%203.44772%203%204V16C3%2016.5523%203.44772%2017%204%2017H16C16.5523%2017%2017%2016.5523%2017%2016V4ZM2.54222%202.54222C2.18074%202.90252%202%203.31852%202%203.79022V16.208C2%2016.6797%202.18044%2017.0963%202.54133%2017.4578C2.90222%2017.8193%203.31852%2018%203.79022%2018H16.208C16.6797%2018%2017.0963%2017.8193%2017.4578%2017.4578C17.8193%2017.0969%2018%2016.6803%2018%2016.208V3.79022C18%203.3197%2017.8193%202.9037%2017.4578%202.54222C17.0969%202.18074%2016.6803%202%2016.208%202H3.79022C3.3197%202%202.9037%202.18074%202.54222%202.54222Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='checkboxes'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M16.5232%203.05896C17.8252%204.36051%2017.8255%206.47106%2016.524%207.77301C15.2224%209.07495%2013.1119%209.07527%2011.8099%207.77372C10.508%206.47217%2010.5077%204.36162%2011.8092%203.05968C11.8094%203.05944%2011.8097%203.0592%2011.8099%203.05896C13.1116%201.75769%2015.2216%201.75769%2016.5232%203.05896Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.3006%204.70703L13.8839%206.1237L13.0322%205.27453'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5232%2012.226C17.8252%2013.5275%2017.8255%2015.6381%2016.524%2016.94C15.2224%2018.2419%2013.1119%2018.2423%2011.8099%2016.9407C10.508%2015.6392%2010.5077%2013.5286%2011.8092%2012.2267C11.8094%2012.2264%2011.8097%2012.2262%2011.8099%2012.226C13.1116%2010.9247%2015.2216%2010.9247%2016.5232%2012.226Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.16667%207.79682H3.4525C2.92645%207.79682%202.5%207.37037%202.5%206.84432V3.98766C2.5%203.46161%202.92645%203.03516%203.4525%203.03516H9.16667'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.16667%2016.9638H3.4525C2.92645%2016.9638%202.5%2016.5374%202.5%2016.0113V13.1546C2.5%2012.6286%202.92645%2012.2021%203.4525%2012.2021H9.16667'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.8761%2013.874L13.4595%2015.2907'%20stroke='currentColor'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%203.11111C7.0908%203.11111%203.11111%207.0908%203.11111%2012C3.11111%2016.9092%207.0908%2020.8889%2012%2020.8889C16.9092%2020.8889%2020.8889%2016.9092%2020.8889%2012C20.8889%207.0908%2016.9092%203.11111%2012%203.11111ZM12%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='circle_arrows'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.3069%203.22916C9.37227%203.27218%208.43086%203.47653%207.52041%203.87546C4.11758%205.36754%202.28217%208.97941%202.85301%2012.518M17.7241%2014.9085C18.1537%2014.0686%2018.4497%2013.1426%2018.5629%2012.1472C18.9867%208.42292%2016.8078%205.01148%2013.4901%203.74136M7.81572%201.8335L10.5645%202.779L9.22735%205.12173M20.1667%2013.4275L17.982%2015.3606L16.6429%2013.0188M4.05437%2018.4393L3.4903%2015.5607L6.1665%2015.5598M4.00323%2015.5615C4.50828%2016.3584%205.15363%2017.08%205.94991%2017.6764C8.92992%2019.9086%2012.9433%2019.7092%2015.6901%2017.4398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='click'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5.20996%208H6.20996M17.21%208H16.21M15.45%203.76L14.74%204.46M6.95996%203.76L7.66996%204.46M11.21%202V3M12.706%2013V8.5C12.706%207.672%2012.034%207%2011.206%207C10.378%207%209.70596%207.672%209.70596%208.5V16L7.67396%2015.323C7.08096%2015.125%206.42696%2015.28%205.98396%2015.722C5.29696%2016.409%205.34896%2017.536%206.09396%2018.158L10.149%2021.537C10.51%2021.836%2010.963%2022%2011.43%2022H15.94C16.949%2022%2017.799%2021.249%2017.925%2020.248L18.468%2015.905C18.601%2014.84%2017.87%2013.861%2016.812%2013.684L12.706%2013Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='clickup'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2017.3703L6.32155%2015.0167C8.08626%2017.147%209.96117%2018.129%2012.0481%2018.129C14.1239%2018.129%2015.9458%2017.1587%2017.631%2015.0451L21%2017.3419C18.5685%2020.3896%2015.5468%2022%2012.0481%2022C8.56057%2022%205.50965%2020.4%203%2017.3703Z'%20fill='url(%23clickup_paint0_linear_8030_38779)'/%3e%3cpath%20d='M12.0213%207.12L6.19376%2011.8323L3.5%208.90064L12.0337%202L20.5%208.9058L17.7939%2011.8271L12.0213%207.12Z'%20fill='url(%23clickup_paint1_linear_8030_38779)'/%3e%3c/symbol%3e%3csymbol%20id='clip'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M11.5656%206.98021L6.99392%2011.5519C6.30559%2012.2402%206.30559%2013.3569%206.99392%2014.0452C7.68225%2014.7335%208.79892%2014.7335%209.48725%2014.0452L15.5139%208.01854C16.7764%206.75604%2016.7764%204.70938%2015.5139%203.44688C14.2514%202.18438%2012.2048%202.18438%2010.9423%203.44688L4.91559%209.47354C3.07892%2011.3102%203.07892%2014.2869%204.91559%2016.1235C6.75225%2017.9602%209.72892%2017.9602%2011.5656%2016.1235L15.2231%2012.466'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='clock_check'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M10.3257%205.83334V10.3258H6.6665'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.4512%209.16672C17.2945%207.76326%2016.7447%206.43258%2015.8651%205.32783C14.9854%204.22307%2013.8117%203.38916%2012.479%202.92207C11.1463%202.45498%209.70884%202.3737%208.33199%202.68758C6.95514%203.00147%205.69491%203.69776%204.69635%204.69632C3.69779%205.69487%203.00149%206.9551%202.68759%208.33194C2.3737%209.70879%202.45497%2011.1463%202.92205%2012.479C3.38914%2013.8117%204.22304%2014.9854%205.32779%2015.865C6.43254%2016.7447%207.76322%2017.2945%209.16667%2017.4512'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.9998%2018.3333C16.8408%2018.3333%2018.3332%2016.8409%2018.3332%2015C18.3332%2013.159%2016.8408%2011.6667%2014.9998%2011.6667C13.1589%2011.6667%2011.6665%2013.159%2011.6665%2015C11.6665%2016.8409%2013.1589%2018.3333%2014.9998%2018.3333Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.9585%2014.8763L14.7918%2015.7096L16.0418%2014.4596'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='clock_solid'%20viewBox='0%200%2024%2024'%3e%3crect%20x='1'%20y='1'%20width='22'%20height='22'%20rx='11'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.28769%208.28769C10.3379%206.23744%2013.6621%206.23744%2015.7123%208.28769C17.7626%2010.3379%2017.7626%2013.6621%2015.7123%2015.7123C13.6621%2017.7626%2010.3379%2017.7626%208.28769%2015.7123C6.23744%2013.6621%206.23744%2010.3379%208.28769%208.28769ZM12.5626%208.5C12.5626%208.08579%2012.2268%207.75%2011.8126%207.75C11.3984%207.75%2011.0626%208.08579%2011.0626%208.5V12.7093C11.0626%2012.9748%2011.2029%2013.2204%2011.4315%2013.3553L13.6189%2014.6459C13.9756%2014.8564%2014.4354%2014.7379%2014.6459%2014.3811C14.8564%2014.0244%2014.7379%2013.5646%2014.3811%2013.3541L12.5626%2012.2811V8.5Z'%20fill='currentColor'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%2022C6.47667%2022%202%2017.5233%202%2012C2%206.47667%206.47667%202%2012%202C17.5233%202%2022%206.47667%2022%2012C22%2017.5233%2017.5233%2022%2012%2022ZM16.773%207.22703C14.1369%204.59099%209.86307%204.59099%207.22703%207.22703C4.59099%209.86306%204.59099%2014.1369%207.22703%2016.773C9.86306%2019.409%2014.1369%2019.409%2016.773%2016.773C19.409%2014.1369%2019.409%209.86307%2016.773%207.22703Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='close'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%207L17%2017M17%207L7%2017'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='close_circle_outline'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M21.3337%2010.668L10.667%2021.3346'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.3337%2021.3346L10.667%2010.668'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.0003%2029.3346C8.63588%2029.3346%202.66699%2023.3657%202.66699%2016.0013C2.66699%208.63686%208.63588%202.66797%2016.0003%202.66797C23.3648%202.66797%2029.3337%208.63686%2029.3337%2016.0013C29.3337%2023.3657%2023.3648%2029.3346%2016.0003%2029.3346Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='close_circle_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%2022C6.47667%2022%202%2017.5233%202%2012C2%206.47667%206.47667%202%2012%202C17.5233%202%2022%206.47667%2022%2012C22%2017.5233%2017.5233%2022%2012%2022ZM8.53033%207.46967C8.23744%207.17678%207.76256%207.17678%207.46967%207.46967C7.17678%207.76256%207.17678%208.23744%207.46967%208.53033L10.9393%2012L7.46967%2015.4697C7.17678%2015.7626%207.17678%2016.2374%207.46967%2016.5303C7.76256%2016.8232%208.23744%2016.8232%208.53033%2016.5303L12%2013.0607L15.4697%2016.5303C15.7626%2016.8232%2016.2374%2016.8232%2016.5303%2016.5303C16.8232%2016.2374%2016.8232%2015.7626%2016.5303%2015.4697L13.0607%2012L16.5303%208.53033C16.8232%208.23744%2016.8232%207.76256%2016.5303%207.46967C16.2374%207.17678%2015.7626%207.17678%2015.4697%207.46967L12%2010.9393L8.53033%207.46967Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='cloud_upload'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19.35%2010.04C18.67%206.59%2015.64%204%2012%204%209.11%204%206.6%205.64%205.35%208.04%202.34%208.36%200%2010.91%200%2014c0%203.31%202.69%206%206%206h13c2.76%200%205-2.24%205-5%200-2.64-2.05-4.78-4.65-4.96zM14%2013v4h-4v-4H7l5-5%205%205h-3z'/%3e%3c/symbol%3e%3csymbol%20id='coin_speed'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M8.00065%2012H5.33398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.00065%2020H5.33398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.33268%2016H2.66602'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.55273%207.51473C9.23096%205.8365%2011.3692%204.69361%2013.6969%204.23058C16.0247%203.76756%2018.4375%204.0052%2020.6302%204.91345C22.8229%205.8217%2024.6971%207.35977%2026.0157%209.33316C27.3342%2011.3066%2028.038%2013.6266%2028.038%2016C28.038%2018.3734%2027.3342%2020.6935%2026.0157%2022.6668C24.6971%2024.6402%2022.8229%2026.1783%2020.6302%2027.0866C18.4375%2027.9948%2016.0247%2028.2324%2013.6969%2027.7694C11.3692%2027.3064%209.23096%2026.1635%207.55273%2024.4853'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.7467%2014.5845L17.4129%2011.2516C17.2272%2011.0659%2017.0067%2010.9186%2016.764%2010.8182C16.5213%2010.7177%2016.2613%2010.666%2015.9986%2010.666C15.736%2010.6661%2015.4759%2010.7178%2015.2332%2010.8184C14.9906%2010.9189%2014.7701%2011.0663%2014.5845%2011.252L11.2516%2014.5858C11.0659%2014.7715%2010.9186%2014.992%2010.8182%2015.2347C10.7177%2015.4774%2010.666%2015.7375%2010.666%2016.0001C10.6661%2016.2628%2010.7178%2016.5228%2010.8184%2016.7655C10.9189%2017.0081%2011.0663%2017.2286%2011.252%2017.4143L14.5858%2020.7471C14.7715%2020.9328%2014.992%2021.0801%2015.2347%2021.1806C15.4774%2021.281%2015.7375%2021.3327%2016.0001%2021.3327C16.2628%2021.3327%2016.5228%2021.2809%2016.7655%2021.1804C17.0081%2021.0798%2017.2286%2020.9324%2017.4143%2020.7467L20.7471%2017.4129C20.9328%2017.2272%2021.0801%2017.0067%2021.1806%2016.764C21.281%2016.5213%2021.3327%2016.2613%2021.3327%2015.9986C21.3327%2015.736%2021.2809%2015.4759%2021.1804%2015.2332C21.0798%2014.9906%2020.9324%2014.7701%2020.7467%2014.5845Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='comment'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.99%204c0-1.1-.89-2-1.99-2H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h14l4%204-.01-18zM18%2014H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='company'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%207V3H2v18h20V7H12zM6%2019H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4%2012H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10%2012h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0%204h-2v2h2v-2z'/%3e%3c/symbol%3e%3csymbol%20id='confetti'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.8718%2016.5757L6.29224%2020.3655C5.52946%2020.7469%204.6082%2020.5974%204.00517%2019.9944V19.9944C3.40214%2019.3913%203.25264%2018.4701%203.63403%2017.7073L7.42382%2010.1277C7.56757%209.84019%207.84078%209.63929%208.15809%209.5878C8.4754%209.53631%208.79812%209.6405%209.02542%209.86782L14.1317%2014.9741C14.3591%2015.2014%2014.4632%2015.5242%2014.4117%2015.8415C14.3603%2016.1588%2014.1594%2016.432%2013.8718%2016.5757Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%203V3.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5%207V6.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%205H6.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%205H3.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.3354%202.32919C11.9649%202.14394%2011.5144%202.29409%2011.3292%202.66457C11.1439%203.03505%2011.2941%203.48556%2011.6646%203.67081L12.3354%202.32919ZM12.7596%205.86052L13.3837%206.27654L13.3837%206.27653L12.7596%205.86052ZM11.376%206.58398C11.1462%206.92862%2011.2393%207.39427%2011.584%207.62404C11.9286%207.8538%2012.3943%207.76067%2012.624%207.41602L11.376%206.58398ZM11.6646%203.67081C11.9786%203.82782%2012.21%204.11211%2012.3002%204.45142L13.7499%204.06642C13.5494%203.31129%2013.0342%202.67861%2012.3354%202.32919L11.6646%203.67081ZM12.3002%204.45142C12.3903%204.79073%2012.3303%205.1524%2012.1356%205.44451L13.3837%206.27653C13.8171%205.62644%2013.9504%204.82155%2013.7499%204.06642L12.3002%204.45142ZM12.1356%205.4445L11.376%206.58398L12.624%207.41602L13.3837%206.27654L12.1356%205.4445Z'%20fill='currentColor'/%3e%3cpath%20d='M16.584%2011.376C16.2393%2011.6057%2016.1462%2012.0714%2016.376%2012.416C16.6057%2012.7607%2017.0714%2012.8538%2017.416%2012.624L16.584%2011.376ZM18.1395%2011.2403L17.7235%2010.6163L17.7235%2010.6163L18.1395%2011.2403ZM20.3292%2012.3354C20.5144%2012.7059%2020.9649%2012.8561%2021.3354%2012.6708C21.7059%2012.4856%2021.8561%2012.0351%2021.6708%2011.6646L20.3292%2012.3354ZM17.416%2012.624L18.5555%2011.8644L17.7235%2010.6163L16.584%2011.376L17.416%2012.624ZM18.5555%2011.8644C18.8476%2011.6697%2019.2093%2011.6097%2019.5486%2011.6998L19.9336%2010.2501C19.1785%2010.0496%2018.3736%2010.1829%2017.7235%2010.6163L18.5555%2011.8644ZM19.5486%2011.6998C19.8879%2011.79%2020.1722%2012.0214%2020.3292%2012.3354L21.6708%2011.6646C21.3214%2010.9658%2020.6887%2010.4506%2019.9336%2010.2501L19.5486%2011.6998Z'%20fill='currentColor'/%3e%3cpath%20d='M19%2017V17.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%2021V20.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2019H20.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17%2019H17.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%203V3.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%207V6.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%205H20.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17%205H17.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2010L15%209'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='connection'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.053%2016C18.58%2018.961%2015.532%2021%2012%2021C8.468%2021%205.42%2018.961%203.947%2016M20.053%208C18.58%205.039%2015.532%203%2012%203C8.468%203%205.42%205.039%203.947%208M10%2012H3M8%2010L10%2012L8%2014M14%2012H21M16%2014L14%2012L16%2010'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='contacts'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0zm0%200h24v24H0zm0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M20%200H4v2h16V0zM4%2024h16v-2H4v2zM20%204H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm-8%202.75c1.24%200%202.25%201.01%202.25%202.25s-1.01%202.25-2.25%202.25S9.75%2010.24%209.75%209%2010.76%206.75%2012%206.75zM17%2017H7v-1.5c0-1.67%203.33-2.5%205-2.5s5%20.83%205%202.5V17z'/%3e%3c/symbol%3e%3csymbol%20id='contracts'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14%2019L19%2014M6%207H18M6%2011H9M6%2015H7M9%2021H7C4.791%2021%203%2019.209%203%2017V7C3%204.791%204.791%203%207%203H17C19.209%203%2021%204.791%2021%207V10M14.5607%2012.4393C15.1464%2013.0251%2015.1464%2013.9749%2014.5607%2014.5607C13.9749%2015.1464%2013.0251%2015.1464%2012.4393%2014.5607C11.8536%2013.9749%2011.8536%2013.0251%2012.4393%2012.4393C13.0251%2011.8536%2013.9749%2011.8536%2014.5607%2012.4393ZM20.5607%2018.4393C21.1464%2019.0251%2021.1464%2019.9749%2020.5607%2020.5607C19.9749%2021.1464%2019.0251%2021.1464%2018.4393%2020.5607C17.8536%2019.9749%2017.8536%2019.0251%2018.4393%2018.4393C19.0251%2017.8536%2019.9749%2017.8536%2020.5607%2018.4393Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='convert'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%206H9C5.686%206%203%208.686%203%2012C3%2013.912%203.897%2015.611%205.29%2016.71'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2018H15C18.314%2018%2021%2015.314%2021%2012C21%2010.088%2020.103%208.38899%2018.71%207.28999'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.5%2015.5L9%2018L11.5%2020.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.5%208.5L15%206L12.5%203.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='copy'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2017H5C4.46957%2017%203.96086%2016.7893%203.58579%2016.4142C3.21071%2016.0391%203%2015.5304%203%2015V5C3%204.46957%203.21071%203.96086%203.58579%203.58579C3.96086%203.21071%204.46957%203%205%203H15C15.5304%203%2016.0391%203.21071%2016.4142%203.58579C16.7893%203.96086%2017%204.46957%2017%205V7M9%207H19C20.1046%207%2021%207.89543%2021%209V19C21%2020.1046%2020.1046%2021%2019%2021H9C7.89543%2021%207%2020.1046%207%2019V9C7%207.89543%207.89543%207%209%207Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='copyright'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14.639%209C13.935%208.379%2013.013%208%2012%208C9.791%208%208%209.791%208%2012C8%2014.209%209.791%2016%2012%2016C13.012%2016%2013.934%2015.62%2014.639%2015M12%2021C7.029%2021%203%2016.971%203%2012C3%207.029%207.029%203%2012%203C16.971%203%2021%207.029%2021%2012C21%2016.971%2016.971%2021%2012%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='credit-card'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.996%206.6H5.795C4.804%206.6%204%207.404%204%208.395V19.206C4%2020.196%204.804%2021%205.795%2021H12.942C13.933%2021%2014.737%2020.196%2014.737%2019.205V18.442'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.8041%2018.73L9.29505%2016.976C8.23105%2016.689%207.60005%2015.595%207.88305%2014.53L10.5591%204.486C10.8441%203.417%2011.9431%202.782%2013.0121%203.07L19.5211%204.824C20.5801%205.11%2021.2151%206.21%2020.9331%207.27L18.2571%2017.314C17.9721%2018.383%2016.8731%2019.018%2015.8041%2018.73Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.4004%2017.54L15.1204%203.64'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='credit_card_blink'%20viewBox='0%200%2033%2032'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.7026%201.14203C15.5142%200.552459%2013.2644%201.85241%2012.681%204.04076L12.681%204.04091L12.0075%206.56851H6.27713C4.19162%206.56851%202.5%208.26014%202.5%2010.3456V27.0719C2.5%2029.1562%204.19199%2030.8475%206.27713%2030.8475H17.3346C17.3955%2030.8475%2017.4561%2030.846%2017.5164%2030.8432C16.9396%2030.2387%2016.4302%2029.5695%2016%2028.8475H6.27713C5.29583%2028.8475%204.5%2028.0509%204.5%2027.0719V10.3456C4.5%209.36471%205.29619%208.56851%206.27713%208.56851H11.4747L8.5408%2019.5805L8.54063%2019.5811C7.96389%2021.7515%209.24196%2023.9816%2011.4044%2024.5804L14.7211%2025.6634C14.5356%2024.8571%2014.4375%2024.0174%2014.4375%2023.1547C14.4375%2022.9176%2014.4449%2022.6821%2014.4595%2022.4486L14.2071%2023.3917L12.0021%2022.6717C11.9855%2022.6663%2011.9689%2022.6613%2011.9521%2022.6568C10.8385%2022.3564%2010.177%2021.2109%2010.4735%2020.0949L10.4735%2020.0947L13.7311%207.8679C13.7396%207.84071%2013.747%207.81302%2013.7532%207.78489L14.6135%204.55597L14.6136%204.55581C14.9121%203.43646%2016.0629%202.77161%2017.1822%203.07315L17.1823%203.07317L19.4792%203.69214L15.5956%2018.2035C16.3335%2016.7189%2017.3929%2015.4222%2018.6827%2014.4047L21.4104%204.21252L27.2521%205.78671L27.2522%205.78675C28.356%206.08493%2029.0222%207.23503%2028.7333%208.33998L27.624%2012.2034C28.2884%2012.3268%2028.932%2012.5092%2029.5493%2012.7449L30.6586%208.88159L30.6638%208.86272C31.2417%206.69038%2029.9437%204.44197%2027.7735%203.85589L27.773%203.85574L17.7026%201.14204L17.7026%201.14203Z'%20fill='currentColor'/%3e%3cpath%20d='M26%2028.5C26%2027.1739%2025.4732%2025.9021%2024.5355%2024.9645C23.5979%2024.0268%2022.3261%2023.5%2021%2023.5C22.3261%2023.5%2023.5979%2022.9732%2024.5355%2022.0355C25.4732%2021.0979%2026%2019.8261%2026%2018.5C26%2019.8261%2026.5268%2021.0979%2027.4645%2022.0355C28.4021%2022.9732%2029.6739%2023.5%2031%2023.5C29.6739%2023.5%2028.4021%2024.0268%2027.4645%2024.9645C26.5268%2025.9021%2026%2027.1739%2026%2028.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='crypto'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.67969%204.94212C12.2687%202.35213%2016.4677%202.35312%2019.0577%204.94212C21.6477%207.53112%2021.6477%2011.7301%2019.0577%2014.3201'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.632%2021.0003C13.295%2021.0003%2016.264%2018.0313%2016.264%2014.3683C16.264%2010.7053%2013.295%207.73633%209.632%207.73633C5.969%207.73633%203%2010.7053%203%2014.3683C3%2018.0313%205.969%2021.0003%209.632%2021.0003Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.70508%2017.0675H10.8711C11.6201%2017.0675%2012.2271%2016.4595%2012.2271%2015.7105C12.2271%2014.9615%2011.6191%2014.3535%2010.8701%2014.3535H7.70508V17.0675Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.70508%2014.3537V11.5547H10.5271C11.3001%2011.5547%2011.9261%2012.1807%2011.9261%2012.9537C11.9261%2013.7267%2011.3001%2014.3527%2010.5271%2014.3527'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.47266%2010.752V11.554'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.47266%2017.9841V17.0801'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='crypto_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M10.1953%206.51056C12.209%204.49613%2015.4748%204.49691%2017.4893%206.51056C19.5037%208.52421%2019.5037%2011.7901%2017.4893%2013.8045'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.1582%2019C13.0072%2019%2015.3164%2016.6908%2015.3164%2013.8418C15.3164%2010.9929%2013.0072%208.68365%2010.1582%208.68365C7.30921%208.68365%205%2010.9929%205%2013.8418C5%2016.6908%207.30921%2019%2010.1582%2019Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.66016%2015.941H11.1226C11.7051%2015.941%2012.1772%2015.4682%2012.1772%2014.8856C12.1772%2014.3031%2011.7044%2013.8302%2011.1218%2013.8302H8.66016V15.941Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.66016%2013.8302V11.6532H10.855C11.4562%2011.6532%2011.9431%2012.1401%2011.9431%2012.7413C11.9431%2013.3425%2011.4562%2013.8294%2010.855%2013.8294'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.0332%2011.0286V11.6524'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.0332%2016.655V15.9519'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='crypto_colored'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='%233C88FA'/%3e%3cpath%20d='M16.9922%2010.8509C20.3483%207.49354%2025.7914%207.49484%2029.1488%2010.8509C32.5062%2014.207%2032.5062%2019.6501%2029.1488%2023.0075'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.9303%2031.6667C21.6786%2031.6667%2025.5273%2027.8181%2025.5273%2023.0698C25.5273%2018.3215%2021.6786%2014.4728%2016.9303%2014.4728C12.182%2014.4728%208.33333%2018.3215%208.33333%2023.0698C8.33333%2027.8181%2012.182%2031.6667%2016.9303%2031.6667Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.433%2026.5684H18.537C19.5079%2026.5684%2020.2948%2025.7803%2020.2948%2024.8094C20.2948%2023.8384%2019.5067%2023.0503%2018.5357%2023.0503H14.433V26.5684Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.433%2023.0503V19.422H18.0911C19.0931%2019.422%2019.9046%2020.2335%2019.9046%2021.2355C19.9046%2022.2375%2019.0931%2023.049%2018.0911%2023.049'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.7216%2018.3811V19.4207'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.7216%2027.7584V26.5865'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cryptowallet'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M16%207.57667C17.2133%206.99935%2018.5666%206.66602%2020%206.66602C25.1546%206.66602%2029.3332%2010.8446%2029.3332%2015.9993C29.3332%2021.1539%2025.1546%2025.3325%2020%2025.3325C18.5666%2025.3325%2017.2133%2024.9992%2016%2024.4219'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.5989%2022.5989C22.2437%2018.954%2022.2437%2013.0445%2018.5989%209.39966C14.954%205.7548%209.04452%205.7548%205.39966%209.39966C1.7548%2013.0445%201.7548%2018.954%205.39966%2022.5989C9.04452%2026.2437%2014.954%2026.2437%2018.5989%2022.5989Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.434%2010.3012C11.4958%2010.2019%2011.5817%2010.128%2011.6799%2010.0898C11.7781%2010.0515%2011.8837%2010.0508%2011.9823%2010.0876C12.0808%2010.1245%2012.1675%2010.1971%2012.2303%2010.2955C12.2931%2010.394%2012.329%2010.5134%2012.333%2010.6373V14.5395H15.2416C15.3311%2014.5411%2015.4186%2014.5717%2015.495%2014.6278C15.5713%2014.684%2015.6337%2014.7639%2015.6755%2014.859C15.7174%2014.9541%2015.7372%2015.0609%2015.7329%2015.1684C15.7286%2015.2758%2015.7004%2015.3799%2015.6511%2015.4698L12.0553%2021.7834C11.9935%2021.8827%2011.9076%2021.9566%2011.8094%2021.9948C11.7112%2022.0331%2011.6056%2022.0338%2011.507%2021.997C11.4085%2021.9601%2011.3218%2021.8875%2011.259%2021.7891C11.1962%2021.6906%2011.1604%2021.5713%2011.1563%2021.4473V17.5451H8.2497C8.16019%2017.5435%208.07268%2017.513%207.99635%2017.4568C7.92001%2017.4006%207.85764%2017.3208%207.81578%2017.2257C7.77392%2017.1306%207.7541%2017.0237%207.75839%2016.9162C7.76268%2016.8088%207.79092%2016.7047%207.84017%2016.6149L11.434%2010.3012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cryptowallet_blue'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.666016'%20width='40'%20height='40'%20rx='20'%20fill='%238756FF'/%3e%3cpath%20d='M20.4277%2012.5604C21.6194%2011.9934%2022.9486%2011.666%2024.3563%2011.666C29.4189%2011.666%2033.523%2015.7701%2033.523%2020.8327C33.523%2025.8953%2029.4189%2029.9993%2024.3563%2029.9993C22.9486%2029.9993%2021.6194%2029.672%2020.4277%2029.1049'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M22.9805%2027.3145C26.5603%2023.7347%2026.5603%2017.9307%2022.9805%2014.3509C19.4007%2010.7711%2013.5967%2010.7711%2010.0169%2014.3509C6.43708%2017.9307%206.43708%2023.7347%2010.0169%2027.3145C13.5967%2030.8943%2019.4007%2030.8943%2022.9805%2027.3145Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.9426%2015.2364C16.0033%2015.1388%2016.0877%2015.0663%2016.1841%2015.0287C16.2806%2014.9912%2016.3843%2014.9904%2016.4811%2015.0266C16.5779%2015.0628%2016.663%2015.1341%2016.7247%2015.2308C16.7863%2015.3275%2016.8216%2015.4447%2016.8255%2015.5665V19.399H19.6823C19.7702%2019.4006%2019.8561%2019.4306%2019.9311%2019.4858C20.0061%2019.541%2020.0673%2019.6194%2020.1084%2019.7128C20.1495%2019.8062%2020.169%2019.9111%2020.1648%2020.0167C20.1606%2020.1222%2020.1328%2020.2244%2020.0845%2020.3127L16.5528%2026.5136C16.4921%2026.6112%2016.4077%2026.6837%2016.3113%2026.7213C16.2149%2026.7588%2016.1111%2026.7596%2016.0143%2026.7234C15.9175%2026.6872%2015.8324%2026.6159%2015.7708%2026.5192C15.7091%2026.4225%2015.6738%2026.3053%2015.6699%2026.1835V22.351H12.8151C12.7272%2022.3494%2012.6413%2022.3194%2012.5663%2022.2642C12.4913%2022.209%2012.4301%2022.1306%2012.389%2022.0372C12.3478%2021.9438%2012.3284%2021.8389%2012.3326%2021.7333C12.3368%2021.6278%2012.3646%2021.5256%2012.4129%2021.4373L15.9426%2015.2364Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='cryptowallet_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.666687'%20width='40'%20height='40'%20rx='20'%20fill='%239673ED'/%3e%3cpath%20d='M20.429%2012.561C21.6207%2011.994%2022.9499%2011.6666%2024.3576%2011.6666C29.4202%2011.6666%2033.5243%2015.7707%2033.5243%2020.8333C33.5243%2025.8959%2029.4202%2030%2024.3576%2030C22.9499%2030%2021.6207%2029.6726%2020.429%2029.1056'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M22.9818%2027.3151C26.5616%2023.7353%2026.5616%2017.9313%2022.9818%2014.3515C19.402%2010.7717%2013.598%2010.7717%2010.0182%2014.3515C6.43839%2017.9313%206.43839%2023.7353%2010.0182%2027.3151C13.598%2030.8949%2019.402%2030.8949%2022.9818%2027.3151Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M15.9439%2015.2364C16.0047%2015.1388%2016.089%2015.0663%2016.1855%2015.0287C16.2819%2014.9912%2016.3856%2014.9904%2016.4824%2015.0266C16.5792%2015.0628%2016.6643%2015.1341%2016.726%2015.2308C16.7877%2015.3275%2016.8229%2015.4447%2016.8268%2015.5665V19.399H19.6836C19.7715%2019.4006%2019.8574%2019.4306%2019.9324%2019.4858C20.0074%2019.541%2020.0686%2019.6194%2020.1097%2019.7128C20.1509%2019.8062%2020.1703%2019.9111%2020.1661%2020.0167C20.1619%2020.1222%2020.1342%2020.2244%2020.0858%2020.3127L16.5541%2026.5136C16.4934%2026.6112%2016.409%2026.6837%2016.3126%2026.7213C16.2162%2026.7588%2016.1124%2026.7596%2016.0156%2026.7234C15.9188%2026.6872%2015.8338%2026.6159%2015.7721%2026.5192C15.7104%2026.4225%2015.6752%2026.3053%2015.6712%2026.1835V22.351H12.8165C12.7285%2022.3494%2012.6426%2022.3194%2012.5676%2022.2642C12.4926%2022.209%2012.4314%2022.1306%2012.3903%2022.0372C12.3492%2021.9438%2012.3297%2021.8389%2012.3339%2021.7333C12.3381%2021.6278%2012.3659%2021.5256%2012.4142%2021.4373L15.9439%2015.2364Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='cup'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.3621%206.2851H18.5438C19.3471%206.2851%2019.9983%206.96731%2019.9983%207.80887V9.33263C19.9983%2011.0157%2018.6959%2012.3802%2017.0894%2012.3802H16.2705'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.9977%2014.6664V19.2377'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.9077%2019.2381H9.08984'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.09021%204H14.9081C15.7114%204%2016.3626%204.68221%2016.3626%205.52376V11.6188C16.3626%2013.3019%2015.0602%2014.6663%2013.4536%2014.6663H10.5447C8.93812%2014.6663%207.63574%2013.3019%207.63574%2011.6188V5.52376C7.63574%204.68221%208.28693%204%209.09021%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.63618%206.2851H5.45447C4.65119%206.2851%204%206.96731%204%207.80887V9.33263C4%2011.0157%205.30238%2012.3802%206.90895%2012.3802H7.72781'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='dashboard'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M3%2013h8V3H3v10zm0%208h8v-6H3v6zm10%200h8V11h-8v10zm0-18v6h8V3h-8z'/%3e%3c/symbol%3e%3csymbol%20id='date_range'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2011H7v2h2v-2zm4%200h-2v2h2v-2zm4%200h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11%200-1.99.9-1.99%202L3%2020c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%2016H5V9h14v11z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='deeplinks'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11%2015H13C14.657%2015%2016%2013.657%2016%2012V8C16%206.343%2014.657%205%2013%205H5C3.343%205%202%206.343%202%208V12C2%2013.657%203.343%2015%205%2015M13%209H11C9.343%209%208%2010.343%208%2012V16C8%2017.657%209.343%2019%2011%2019H19C20.657%2019%2022%2017.657%2022%2016V12C22%2010.343%2020.657%209%2019%209'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='delete-account'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%2016C7.69423%2015.5544%208.01424%2015.1751%208.42081%2014.9087C8.82738%2014.6423%209.30285%2014.5002%209.78894%2014.5H14.2111C14.6972%2014.5002%2015.1726%2014.6423%2015.5792%2014.9087C15.9858%2015.1751%2016.3058%2015.5544%2016.5%2016M20.5%206.5L17.5%203.5L20.5%206.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2012C13.3807%2012%2014.5%2010.8807%2014.5%209.5C14.5%208.11929%2013.3807%207%2012%207C10.6193%207%209.5%208.11929%209.5%209.5C9.5%2010.8807%2010.6193%2012%2012%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2011V15C21%2016.5913%2020.3679%2018.1174%2019.2426%2019.2426C18.1174%2020.3679%2016.5913%2021%2015%2021H9C7.4087%2021%205.88258%2020.3679%204.75736%2019.2426C3.63214%2018.1174%203%2016.5913%203%2015V9C3%207.4087%203.63214%205.88258%204.75736%204.75736C5.88258%203.63214%207.4087%203%209%203H13M20.5%203.5L17.5%206.5L20.5%203.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='delete'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.5%206H19.5M8%206L8.544%204.368C8.6767%203.96959%208.93143%203.62305%209.2721%203.37752C9.61276%203.13198%2010.0221%202.9999%2010.442%203H13.558C13.9783%202.99948%2014.388%203.13136%2014.7291%203.37693C15.0702%203.6225%2015.3252%203.96927%2015.458%204.368L16%206M6%209V19C6%2019.5304%206.21071%2020.0391%206.58579%2020.4142C6.96086%2020.7893%207.46957%2021%208%2021H16C16.5304%2021%2017.0391%2020.7893%2017.4142%2020.4142C17.7893%2020.0391%2018%2019.5304%2018%2019V9H6Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='delete_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M6%2019c0%201.1.9%202%202%202h8c1.1%200%202-.9%202-2V7H6v12zm2.46-7.12l1.41-1.41L12%2012.59l2.12-2.12%201.41%201.41L13.41%2014l2.12%202.12-1.41%201.41L12%2015.41l-2.12%202.12-1.41-1.41L10.59%2014l-2.13-2.12zM15.5%204l-1-1h-5l-1%201H5v2h14V4z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='deprecated'%20viewBox='0%200%20512%20512'%3e%3cpath%20d='M497.9%20150.5c9%209%2014.1%2021.2%2014.1%2033.9v143.1c0%2012.7-5.1%2024.9-14.1%2033.9L361.5%20497.9c-9%209-21.2%2014.1-33.9%2014.1H184.5c-12.7%200-24.9-5.1-33.9-14.1L14.1%20361.5c-9-9-14.1-21.2-14.1-33.9V184.5c0-12.7%205.1-24.9%2014.1-33.9L150.5%2014.1c9-9%2021.2-14.1%2033.9-14.1h143.1c12.7%200%2024.9%205.1%2033.9%2014.1l136.5%20136.4zM377.6%20338c4.7-4.7%204.7-12.3%200-17l-65-65%2065.1-65.1c4.7-4.7%204.7-12.3%200-17L338%20134.4c-4.7-4.7-12.3-4.7-17%200l-65%2065-65.1-65.1c-4.7-4.7-12.3-4.7-17%200L134.4%20174c-4.7%204.7-4.7%2012.3%200%2017l65.1%2065.1-65.1%2065.1c-4.7%204.7-4.7%2012.3%200%2017l39.6%2039.6c4.7%204.7%2012.3%204.7%2017%200l65.1-65.1%2065.1%2065.1c4.7%204.7%2012.3%204.7%2017%200l39.4-39.8z'/%3e%3c/symbol%3e%3csymbol%20id='desktop_device'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M21.3332%2029.5C21.8855%2029.5%2022.3332%2029.0523%2022.3332%2028.5C22.3332%2027.9477%2021.8855%2027.5%2021.3332%2027.5V29.5ZM10.6665%2027.5C10.1142%2027.5%209.6665%2027.9477%209.6665%2028.5C9.6665%2029.0523%2010.1142%2029.5%2010.6665%2029.5V27.5ZM29.3332%2020.1667C29.8855%2020.1667%2030.3332%2019.719%2030.3332%2019.1667C30.3332%2018.6144%2029.8855%2018.1667%2029.3332%2018.1667V20.1667ZM2.6665%2018.1667C2.11422%2018.1667%201.6665%2018.6144%201.6665%2019.1667C1.6665%2019.719%202.11422%2020.1667%202.6665%2020.1667V18.1667ZM19.6665%2023.1667C19.6665%2022.6144%2019.2188%2022.1667%2018.6665%2022.1667C18.1142%2022.1667%2017.6665%2022.6144%2017.6665%2023.1667H19.6665ZM20.6665%2029.5C21.2188%2029.5%2021.6665%2029.0523%2021.6665%2028.5C21.6665%2027.9477%2021.2188%2027.5%2020.6665%2027.5V29.5ZM14.3332%2023.1667C14.3332%2022.6144%2013.8855%2022.1667%2013.3332%2022.1667C12.7809%2022.1667%2012.3332%2022.6144%2012.3332%2023.1667H14.3332ZM11.3332%2027.5C10.7809%2027.5%2010.3332%2027.9477%2010.3332%2028.5C10.3332%2029.0523%2010.7809%2029.5%2011.3332%2029.5V27.5ZM21.3332%2027.5H10.6665V29.5H21.3332V27.5ZM5.33317%205.5H26.6665V3.5H5.33317V5.5ZM26.6665%205.5C27.587%205.5%2028.3332%206.24619%2028.3332%207.16667H30.3332C30.3332%205.14162%2028.6915%203.5%2026.6665%203.5V5.5ZM28.3332%207.16667V20.5H30.3332V7.16667H28.3332ZM28.3332%2020.5C28.3332%2021.4205%2027.587%2022.1667%2026.6665%2022.1667V24.1667C28.6915%2024.1667%2030.3332%2022.525%2030.3332%2020.5H28.3332ZM26.6665%2022.1667H5.33317V24.1667H26.6665V22.1667ZM5.33317%2022.1667C4.4127%2022.1667%203.6665%2021.4205%203.6665%2020.5H1.6665C1.6665%2022.525%203.30813%2024.1667%205.33317%2024.1667V22.1667ZM3.6665%2020.5V7.16667H1.6665V20.5H3.6665ZM3.6665%207.16667C3.6665%206.24619%204.4127%205.5%205.33317%205.5V3.5C3.30813%203.5%201.6665%205.14162%201.6665%207.16667H3.6665ZM29.3332%2018.1667H2.6665V20.1667H29.3332V18.1667ZM17.6665%2023.1667V24.5H19.6665V23.1667H17.6665ZM17.6665%2024.5C17.6665%2025.7262%2017.9129%2026.8857%2018.3579%2027.7756C18.7729%2028.6058%2019.5314%2029.5%2020.6665%2029.5V27.5C20.6654%2027.5%2020.6639%2027.4999%2020.6611%2027.4994C20.6581%2027.4988%2020.6519%2027.4972%2020.6422%2027.4932C20.6225%2027.4852%2020.5854%2027.4658%2020.5339%2027.4222C20.426%2027.331%2020.286%2027.1598%2020.1467%2026.8812C19.8678%2026.3235%2019.6665%2025.483%2019.6665%2024.5H17.6665ZM12.3332%2023.1667V24.5H14.3332V23.1667H12.3332ZM12.3332%2024.5C12.3332%2025.483%2012.1318%2026.3235%2011.853%2026.8812C11.7137%2027.1598%2011.5736%2027.331%2011.4658%2027.4222C11.4142%2027.4658%2011.3772%2027.4852%2011.3575%2027.4932C11.3477%2027.4972%2011.3416%2027.4988%2011.3386%2027.4994C11.3358%2027.4999%2011.3342%2027.5%2011.3332%2027.5V29.5C12.4683%2029.5%2013.2267%2028.6058%2013.6418%2027.7756C14.0868%2026.8857%2014.3332%2025.7262%2014.3332%2024.5H12.3332Z'/%3e%3c/symbol%3e%3csymbol%20id='dialog'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2010H15M9%2013H12M12%204C7.03%204%203%207.35868%203%2011.4971C3.03694%2012.7249%203.39056%2013.9223%204.02657%2014.9731C4.66258%2016.024%205.55939%2016.8926%206.63%2017.4948C6.41369%2018.0826%206.11292%2018.6358%205.73714%2019.1369C5.63591%2019.2847%205.58282%2019.4601%205.58511%2019.6392C5.58741%2019.8184%205.64498%2019.9924%205.74996%2020.1376C5.85494%2020.2827%206.00219%2020.3919%206.17159%2020.4501C6.34098%2020.5084%206.52424%2020.5129%206.6963%2020.4631C7.89863%2020.113%209.03031%2019.555%2010.04%2018.8143C10.6863%2018.9354%2011.3425%2018.9956%2012%2018.9942C16.97%2018.9942%2021%2015.6355%2021%2011.4971C21%207.35869%2016.97%204%2012%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='discord'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M19.3,6.6c0,0-1.4-1.5-4.6-1.7v0.5c0,0,1.8-0.1,3.9,2c-1.6-1.2-4-1.9-6.6-1.9S7,6.2,5.4,7.4c2.2-2.1,3.9-2,3.9-2V4.9%20C6.1,5.1,4.7,6.6,4.7,6.6c-2.4,3.1-2.6,10-2.6,10c2.3,2.8,5.2,2.4,5.2,2.4l1.1-1.5c-1.4-0.4-2.3-1.2-2.9-1.9c1.6,1.2,4,1.9,6.5,1.9%20s4.9-0.7,6.5-1.9c-0.6,0.7-1.6,1.5-2.9,1.9l1.1,1.5c0,0,2.9,0.4,5.2-2.4C21.9,16.7,21.7,9.8,19.3,6.6z%20M8.9,14.7%20c-0.9,0-1.7-0.8-1.7-1.8s0.7-1.8,1.7-1.8c0.9,0,1.7,0.8,1.7,1.8S9.9,14.7,8.9,14.7z%20M15.1,14.7c-0.9,0-1.7-0.8-1.7-1.8%20s0.7-1.8,1.7-1.8s1.7,0.8,1.7,1.8S16,14.7,15.1,14.7z'/%3e%3c/symbol%3e%3csymbol%20id='discord_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%237289DA'/%3e%3cpath%20d='M18.0183%207.88874C16.9174%207.00874%2015.5963%206.56874%2014.2018%206.49541L13.9817%206.71541C15.2294%207.00874%2016.3303%207.59541%2017.3578%208.40207C16.1101%207.74207%2014.7156%207.30207%2013.2477%207.15541C12.8073%207.08207%2012.4404%207.08207%2012%207.08207C11.5596%207.08207%2011.1927%207.08207%2010.7523%207.15541C9.2844%207.30207%207.88991%207.74207%206.6422%208.40207C7.66972%207.59541%208.77064%207.00874%2010.0183%206.71541L9.79817%206.49541C8.40367%206.56874%207.08257%207.00874%205.98165%207.88874C4.73394%2010.2354%204.07339%2012.8754%204%2015.5887C5.10092%2016.7621%206.6422%2017.4954%208.25688%2017.4954C8.25688%2017.4954%208.77064%2016.9087%209.13761%2016.3954C8.18349%2016.1754%207.30275%2015.6621%206.7156%2014.8554C7.22936%2015.1487%207.74312%2015.4421%208.25688%2015.6621C8.91743%2015.9554%209.57798%2016.1021%2010.2385%2016.2487C10.8257%2016.3221%2011.4128%2016.3954%2012%2016.3954C12.5872%2016.3954%2013.1743%2016.3221%2013.7615%2016.2487C14.422%2016.1021%2015.0826%2015.9554%2015.7431%2015.6621C16.2569%2015.4421%2016.7706%2015.1487%2017.2844%2014.8554C16.6972%2015.6621%2015.8165%2016.1754%2014.8624%2016.3954C15.2294%2016.9087%2015.7431%2017.4954%2015.7431%2017.4954C17.3578%2017.4954%2018.8991%2016.7621%2020%2015.5887C19.9266%2012.8754%2019.2661%2010.2354%2018.0183%207.88874ZM9.57798%2014.2687C8.84404%2014.2687%208.18349%2013.6087%208.18349%2012.8021C8.18349%2011.9954%208.84404%2011.3354%209.57798%2011.3354C10.3119%2011.3354%2010.9725%2011.9954%2010.9725%2012.8021C10.9725%2013.6087%2010.3119%2014.2687%209.57798%2014.2687ZM14.422%2014.2687C13.6881%2014.2687%2013.0275%2013.6087%2013.0275%2012.8021C13.0275%2011.9954%2013.6881%2011.3354%2014.422%2011.3354C15.156%2011.3354%2015.8165%2011.9954%2015.8165%2012.8021C15.8165%2013.6087%2015.156%2014.2687%2014.422%2014.2687Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='dislike'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.9971%2013.571L12.3481%2018.322C11.6691%2019.207%2010.3431%2019.229%209.63407%2018.368C9.36907%2018.047%209.22507%2017.643%209.22507%2017.227L9.22507%2013.956L6.12907%2013.956C5.52807%2013.956%204.96707%2013.656%204.63307%2013.157L4.30407%2012.666C4.00907%2012.225%203.92307%2011.676%204.07007%2011.167L5.42907%206.445C5.65107%205.674%206.35607%205.143%207.15807%205.143L13.4471%205.143C13.9471%205.143%2014.4251%205.351%2014.7651%205.717L15.9971%207.043M17.0531%205.143L18.9411%205.143C19.5241%205.143%2019.9971%205.616%2019.9971%206.199L19.9971%2013.587C19.9971%2014.17%2019.5241%2014.643%2018.9411%2014.643L17.0531%2014.643C16.4701%2014.643%2015.9971%2014.17%2015.9971%2013.587L15.9971%206.199C15.9971%205.616%2016.4701%205.143%2017.0531%205.143Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='doc-export'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2017V19C21%2020.1046%2020.1046%2021%2019%2021H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%207V5C3%203.89543%203.89543%203%205%203H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%209V5C10%203.89543%2010.8954%203%2012%203H19C20.1046%203%2021%203.89543%2021%205V12C21%2013.1046%2020.1046%2014%2019%2014H17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%207.00001H18'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2010H18'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.75%2012H5.25C4.00736%2012%203%2013.0074%203%2014.25V18.75C3%2019.9926%204.00736%2021%205.25%2021H11.75C12.9926%2021%2014%2019.9926%2014%2018.75V14.25C14%2013.0074%2012.9926%2012%2011.75%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2018.25C9.9665%2018.25%2010.75%2017.4665%2010.75%2016.5C10.75%2015.5335%209.9665%2014.75%209%2014.75C8.0335%2014.75%207.25%2015.5335%207.25%2016.5C7.25%2017.4665%208.0335%2018.25%209%2018.25Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.55%2014.5001C5.54996%2014.5277%205.52757%2014.55%205.49997%2014.55C5.47238%2014.55%205.45001%2014.5276%205.45%2014.5C5.44999%2014.4724%205.47234%2014.45%205.49994%2014.45C5.51322%2014.45%205.52596%2014.4553%205.53536%2014.4646C5.54475%2014.474%205.55002%2014.4868%205.55%2014.5001'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='document'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M14%202H6c-1.1%200-1.99.9-1.99%202L4%2020c0%201.1.89%202%201.99%202H18c1.1%200%202-.9%202-2V8l-6-6zm2%2016H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5%209H13z'/%3e%3c/symbol%3e%3csymbol%20id='dollar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%206V7.5M12%2018V16.5M9%2014.255C9%2015.498%2010.007%2016.505%2011.25%2016.505H12.893C14.056%2016.505%2015%2015.562%2015%2014.398C15%2013.432%2014.343%2012.59%2013.406%2012.355L10.594%2011.65C9.657%2011.415%209%2010.573%209%209.607C9%208.443%209.943%207.5%2011.107%207.5H12.75C13.993%207.5%2015%208.507%2015%209.75M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='donate_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M8%2018H6.66667C6.29867%2018%206%2017.7013%206%2017.3333V13.3333C6%2012.9653%206.29867%2012.6667%206.66667%2012.6667H8C8.368%2012.6667%208.66667%2012.9653%208.66667%2013.3333V17.3333C8.66667%2017.7013%208.368%2018%208%2018Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.667%2015.3334H14.2223C14.511%2015.3334%2014.7917%2015.24%2015.0223%2015.0667L16.633%2013.8587C17.035%2013.5574%2017.5977%2013.5974%2017.953%2013.9527C18.3477%2014.3474%2018.3477%2014.9867%2017.953%2015.3807L16.571%2016.7627C16.199%2017.1347%2015.7243%2017.3887%2015.2083%2017.492L13.255%2017.8827C12.8677%2017.96%2012.4683%2017.9507%2012.085%2017.8547L10.3183%2017.4134C10.107%2017.36%209.89033%2017.3334%209.67233%2017.3334H8.66699'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.667%2015.3333H13.657C14.215%2015.3333%2014.667%2014.8813%2014.667%2014.3233V14.1213C14.667%2013.658%2014.3517%2013.254%2013.9023%2013.142L12.3743%2012.76C12.1257%2012.698%2011.871%2012.6667%2011.615%2012.6667C10.997%2012.6667%2010.3923%2012.8493%209.87833%2013.1927L8.66699%2014'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.5%205.64162C14.7679%205.33937%2015.2315%205%2015.9373%205C17.1721%205%2018%206.1175%2018%207.15812C18%209.3335%2015.1914%2011%2014.5%2011C13.8086%2011%2011%209.3335%2011%207.15812C11%206.1175%2011.8279%205%2013.0627%205C13.7685%205%2014.2321%205.33937%2014.5%205.64162Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='donate_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.333313'%20width='40'%20height='40'%20rx='20'%20fill='%23FF6681'/%3e%3cpath%20d='M13.6666%2030H11.4444C10.8311%2030%2010.3333%2029.5022%2010.3333%2028.8889V22.2222C10.3333%2021.6089%2010.8311%2021.1111%2011.4444%2021.1111H13.6666C14.28%2021.1111%2014.7778%2021.6089%2014.7778%2022.2222V28.8889C14.7778%2029.5022%2014.28%2030%2013.6666%2030Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M21.445%2025.5556H24.0372C24.5183%2025.5556%2024.9861%2025.4%2025.3705%2025.1112L28.055%2023.0978C28.725%2022.5956%2029.6628%2022.6623%2030.255%2023.2545C30.9128%2023.9123%2030.9128%2024.9778%2030.255%2025.6345L27.9517%2027.9378C27.3317%2028.5578%2026.5405%2028.9812%2025.6805%2029.1534L22.425%2029.8045C21.7794%2029.9334%2021.1139%2029.9178%2020.475%2029.7578L17.5305%2029.0223C17.1783%2028.9334%2016.8172%2028.8889%2016.4539%2028.8889H14.7783'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.445%2025.5555H23.095C24.025%2025.5555%2024.7783%2024.8022%2024.7783%2023.8722V23.5355C24.7783%2022.7633%2024.2528%2022.09%2023.5039%2021.9033L20.9572%2021.2666C20.5428%2021.1633%2020.1183%2021.1111%2019.6917%2021.1111C18.6617%2021.1111%2017.6539%2021.4155%2016.7972%2021.9878L14.7783%2023.3333'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M24.5%209.40275C24.9465%208.899%2025.7191%208.33337%2026.8955%208.33337C28.9534%208.33337%2030.3333%2010.1959%2030.3333%2011.9302C30.3333%2015.5559%2025.6524%2018.3334%2024.5%2018.3334C23.3476%2018.3334%2018.6666%2015.5559%2018.6666%2011.9302C18.6666%2010.1959%2020.0465%208.33337%2022.1044%208.33337C23.2808%208.33337%2024.0534%208.899%2024.5%209.40275Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20fill='none'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='dot-status'%20viewBox='0%200%2012%2012'%3e%3crect%20x='0.5'%20y='0.5'%20width='11'%20height='11'%20rx='5.5'%20fill='currentColor'%20stroke='white'/%3e%3c/symbol%3e%3csymbol%20id='download'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.5001%2011L12.0001%2014.5L8.50009%2011M12.0001%204V14M19.9443%2016.5C19.9443%2017.4431%2019.6254%2018.2916%2018.9586%2018.9585C18.2917%2019.6254%2017.3872%2020%2016.4441%2020H7.55609C6.61298%2020%205.7085%2019.6254%205.04162%2018.9585C4.37474%2018.2916%203.94434%2017.4431%203.94434%2016.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='drag'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M11%2018c0%201.1-.9%202-2%202s-2-.9-2-2%20.9-2%202-2%202%20.9%202%202zm-2-8c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm0-6c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm6%204c1.1%200%202-.9%202-2s-.9-2-2-2-2%20.9-2%202%20.9%202%202%202zm0%202c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm0%206c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2z'/%3e%3c/symbol%3e%3csymbol%20id='eWallet'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M9.2,4.1C9.1,4.2,9,4.2,9,4.2C6.7,5.5,5.2,7.5,4.7,10c-0.4,1.9-0.2,3.7,0.6,5.5c0.5,1.2,1.1,2.3,2.1,3.3%20c1.5,1.5,3.3,2.4,5.3,2.8c1.1,0.2,2.2,0.3,3.4,0.2c0.6-0.1,1.1-0.2,1.7-0.3c-0.1,0.1-0.2,0.1-0.3,0.1c-1,0.4-2,0.6-3.1,0.7%20c-2,0.1-3.9-0.1-5.8-0.9c-3.2-1.5-5.1-4-5.8-7.4c-0.3-1.4-0.3-2.7,0.1-4.1C3.5,8,4.6,6.6,6.1,5.5C7,4.9,8,4.5,9,4.1%20C9,4.1,9.1,4.1,9.2,4.1C9.1,4.1,9.2,4.1,9.2,4.1z'/%3e%3cpath%20d='M3.7,7.3C3.8,7.1,3.9,6.9,4,6.7c1.6-2.7,3.9-4.3,7-4.8c2.2-0.4,4.4-0.2,6.4,0.9C19.4,4,20.9,5.7,21.5,8%20c0.8,3.1-0.5,6.3-3.1,8.1c-0.7,0.4-1.4,0.8-2.1,1.1c-0.1,0-0.1,0-0.2,0c0.1,0,0.1-0.1,0.2-0.1c2.2-1.4,3.5-3.4,4-5.9%20c0.1-0.4,0.2-0.9,0.2-1.3c0.1-1.6-0.5-3-1.5-4.1c-1.2-1.4-2.8-2.2-4.6-2.4c-2.6-0.4-5.1,0-7.4,1.3c-1.2,0.7-2.2,1.5-3,2.6%20C3.8,7.2,3.8,7.3,3.7,7.3C3.7,7.3,3.7,7.3,3.7,7.3z'/%3e%3cpath%20d='M11.9,14.5c-0.3-0.1-0.7-0.2-1-0.4c-1.2-0.5-2.2-1.3-2.8-2.5C7.8,10.8,7.6,10,7.8,9.1c0-0.2,0.1-0.5,0.3-0.6%20c1-1.3,2.3-2.1,3.9-2.3c1.3-0.2,2.6,0,3.8,0.5c0.6,0.3,1.1,0.6,1.5,1.1c0.1,0.1,0.1,0.1,0.2,0.2c-0.3-0.1-0.6-0.3-0.8-0.3%20c-1.7-0.4-3.3,0-4.6,1.2c-0.5,0.5-0.8,1.2-0.9,1.9c-0.1,0.9-0.1,1.9,0.2,2.7C11.5,13.7,11.7,14.1,11.9,14.5z'/%3e%3cpath%20d='M7.3,9.9c0.1,0.4,0.1,0.7,0.2,1.1c0.4,1.5,1.4,2.5,2.8,3.2c1,0.5,2.1,0.8,3.2,0.9c0.7,0.1,1.5,0.1,2.2,0%20c1.3-0.2,2.4-0.8,3.3-1.8c0-0.1,0.1-0.1,0.1-0.2c0,0,0,0,0.1,0c0,0.1,0,0.1-0.1,0.2c-1.2,2.4-3.1,3.8-5.8,4.2%20c-1.5,0.2-2.8-0.2-4-1.1C7.8,15.3,7,13.8,7,11.9C7,11.2,7.1,10.3,7.3,9.9z'/%3e%3cpath%20d='M11.5,11.3c0.2,0,0.4,0,0.6,0c0.5,0,0.9,0,1.3-0.2c0.7-0.3,1.2-1.1,1-1.8c-0.1-0.5-0.4-0.7-0.7-0.9c0,0-0.1,0-0.1,0%20c0,0-0.1,0-0.1,0c0,0,0-0.1,0-0.1c1.1-0.4,2.2-0.6,3.3-0.1c0.2,0.1,0.4,0.2,0.6,0.4c0.8,0.6,1,1.4,0.7,2.3%20c-0.2,0.7-0.7,1.2-1.3,1.6c-1.3,0.8-2.6,0.9-4,0.2c-0.5-0.2-0.9-0.6-1.1-1.1C11.5,11.4,11.5,11.4,11.5,11.3z'/%3e%3cpath%20d='M7.7,18.5c2,1.5,4.3,2,6.8,1.8c2.5-0.3,4.6-1.3,6.4-3c0,0.2,0.1,0.4,0,0.5c-0.2,1.1-0.7,1.9-1.6,2.5%20c-0.9,0.6-1.9,0.8-2.9,1c-1.8,0.2-3.5,0.1-5.3-0.5c-1.3-0.4-2.4-1.1-3.4-2C7.8,18.6,7.7,18.6,7.7,18.5z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='e_wallet_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238756FF'/%3e%3cpath%20d='M15.3337%2013.0606V14C15.3337%2014.3536%2015.1932%2014.6927%2014.9431%2014.9428C14.6931%2015.1928%2014.3539%2015.3333%2014.0003%2015.3333H10.0003C9.6467%2015.3333%209.30756%2015.1928%209.05752%2014.9428C8.80747%2014.6927%208.66699%2014.3536%208.66699%2014V9.99999C8.66699%209.64637%208.80747%209.30723%209.05752%209.05718C9.30756%208.80713%209.6467%208.66666%2010.0003%208.66666H14.0003C14.3539%208.66666%2014.6931%208.80713%2014.9431%209.05718C15.1932%209.30723%2015.3337%209.64637%2015.3337%209.99999V10.9394'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.7276%2010.9394H15.5761C15.6886%2010.9394%2015.7965%2010.9841%2015.8761%2011.0636C15.9556%2011.1432%2016.0003%2011.2511%2016.0003%2011.3636V12.6364C16.0003%2012.7489%2015.9556%2012.8568%2015.8761%2012.9363C15.7965%2013.0159%2015.6886%2013.0606%2015.5761%2013.0606H14.7276C14.4463%2013.0606%2014.1765%2012.9489%2013.9776%2012.75C13.7787%2012.5511%2013.667%2012.2813%2013.667%2012V12C13.667%2011.8607%2013.6944%2011.7228%2013.7477%2011.5941C13.801%2011.4654%2013.8792%2011.3485%2013.9776%2011.25C14.0761%2011.1516%2014.193%2011.0734%2014.3217%2011.0201C14.4504%2010.9668%2014.5883%2010.9394%2014.7276%2010.9394V10.9394Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.667%2018H16.0003C16.5308%2018%2017.0395%2017.7893%2017.4145%2017.4142C17.7896%2017.0391%2018.0003%2016.5304%2018.0003%2016V14.6667'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.667%206H16.0003C16.5308%206%2017.0395%206.21071%2017.4145%206.58579C17.7896%206.96086%2018.0003%207.46957%2018.0003%208V9.33333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2014.6667V16C6%2016.5304%206.21071%2017.0391%206.58579%2017.4142C6.96086%2017.7893%207.46957%2018%208%2018H9.33333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%209.33333V8C6%207.46957%206.21071%206.96086%206.58579%206.58579C6.96086%206.21071%207.46957%206%208%206H9.33333'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='e_wallet_colored'%20viewBox='0%200%2041%2040'%3e%3crect%20x='0.333313'%20width='40'%20height='40'%20rx='20'%20fill='%23C55FE8'/%3e%3cpath%20d='M25.8889%2021.7676V23.3332C25.8889%2023.9226%2025.6548%2024.4878%2025.238%2024.9046C24.8213%2025.3213%2024.256%2025.5554%2023.6667%2025.5554H17C16.4106%2025.5554%2015.8454%2025.3213%2015.4286%2024.9046C15.0119%2024.4878%2014.7778%2023.9226%2014.7778%2023.3332V16.6666C14.7778%2016.0772%2015.0119%2015.512%2015.4286%2015.0952C15.8454%2014.6785%2016.4106%2014.4443%2017%2014.4443H23.6667C24.256%2014.4443%2024.8213%2014.6785%2025.238%2015.0952C25.6548%2015.512%2025.8889%2016.0772%2025.8889%2016.6666V18.2322'%20stroke='white'%20stroke-width='1.5'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M24.8788%2018.2324H26.2929C26.4804%2018.2324%2026.6603%2018.3069%2026.7929%2018.4395C26.9255%2018.5721%2027%2018.752%2027%2018.9395V21.0607C27%2021.2482%2026.9255%2021.4281%2026.7929%2021.5607C26.6603%2021.6933%2026.4804%2021.7678%2026.2929%2021.7678H24.8788C24.4099%2021.7678%2023.9603%2021.5815%2023.6288%2021.25C23.2973%2020.9185%2023.1111%2020.4689%2023.1111%2020.0001V20.0001C23.1111%2019.768%2023.1568%2019.5381%2023.2456%2019.3236C23.3345%2019.1092%2023.4647%2018.9143%2023.6288%2018.7502C23.793%2018.586%2023.9878%2018.4558%2024.2023%2018.367C24.4168%2018.2781%2024.6466%2018.2324%2024.8788%2018.2324V18.2324Z'%20stroke='white'%20fill='none'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M24.7778%2029.9999H27C27.884%2029.9999%2028.7319%2029.6487%2029.357%2029.0236C29.9821%2028.3985%2030.3333%2027.5506%2030.3333%2026.6666V24.4443'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M24.7778%2010H27C27.884%2010%2028.7319%2010.3512%2029.357%2010.9763C29.9821%2011.6014%2030.3333%2012.4493%2030.3333%2013.3333V15.5556'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M10.3333%2024.4443V26.6666C10.3333%2027.5506%2010.6845%2028.3985%2011.3096%2029.0236C11.9347%2029.6487%2012.7826%2029.9999%2013.6666%2029.9999H15.8889'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3cpath%20d='M10.3333%2015.5556V13.3333C10.3333%2012.4493%2010.6845%2011.6014%2011.3096%2010.9763C11.9347%2010.3512%2012.7826%2010%2013.6666%2010H15.8889'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='edit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.54%2010.12L13.88%206.46001M6.251%2021H3V17.749C3%2017.484%203.105%2017.229%203.293%2017.042L16.627%203.70701C17.018%203.31601%2017.651%203.31601%2018.041%203.70701L20.292%205.95801C20.683%206.34901%2020.683%206.98201%2020.292%207.37201L6.958%2020.707C6.771%2020.895%206.516%2021%206.251%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='edit_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14.4072%205.51307L14.4101%205.51592L18.0701%209.17592L18.0722%209.17807L20.2919%206.95825C20.6829%206.56825%2020.6829%205.93525%2020.2919%205.54425L18.0409%203.29325C17.6509%202.90225%2017.0179%202.90225%2016.6269%203.29325L14.4072%205.51307Z'%20fill='currentColor'/%3e%3cpath%20d='M3.7%2020.5863H6.251C6.516%2020.5863%206.771%2020.4813%206.958%2020.2933L17.0117%2010.2388L17.0096%2010.2366L13.3496%206.57659L13.3467%206.57376L3.293%2016.6283C3.105%2016.8153%203%2017.0703%203%2017.3353V19.8863C3%2020.2729%203.3134%2020.5863%203.7%2020.5863Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='email'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20class='st0'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cpath%20d='M12,14.7l-2.3-2l-6.7,5.6c0.3,0.3,0.5,0.4,0.9,0.4h16c0.4,0,0.7-0.1,0.9-0.4l-6.7-5.6L12,14.7z'/%3e%3cpath%20d='M20.9,5.7c-0.3-0.3-0.5-0.4-0.9-0.4H4c-0.4,0-0.7,0.1-0.9,0.4l8.9,7.6L20.9,5.7z'/%3e%3cpolygon%20points='2.7,6.5%202.7,17.6%209.1,12.1%20'/%3e%3cpolygon%20points='14.9,12.1%2021.3,17.6%2021.3,6.5%20'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='email_circle'%20viewBox='0%200%2064%2064'%3e%3cpath%20d='M0%2032C0%2014.3269%2014.3269%200%2032%200V0C49.6731%200%2064%2014.3269%2064%2032V32C64%2049.6731%2049.6731%2064%2032%2064V64C14.3269%2064%200%2049.6731%200%2032V32Z'/%3e%3cpath%20d='M13.3422%2023.6801C13.3359%2023.7859%2013.3328%2023.8926%2013.3328%2024V40C13.3328%2042.9455%2015.7206%2045.3333%2018.6661%2045.3333H45.3328C48.2783%2045.3333%2050.6661%2042.9455%2050.6661%2040V24C50.6661%2023.8915%2050.6629%2023.7838%2050.6565%2023.6769L35.4676%2032.8675C33.3519%2034.3803%2030.5393%2034.3768%2028.4272%2032.8608L13.3422%2023.6801Z'%20fill='white'/%3e%3cpath%20d='M15.078%2020.054L30.5779%2029.4871C30.6303%2029.5191%2030.6813%2029.5534%2030.7306%2029.59C31.4654%2030.1358%2032.4351%2030.1366%2033.1704%2029.5924C33.2203%2029.5555%2033.2718%2029.5209%2033.3249%2029.4888L48.9194%2020.0527C47.9722%2019.1915%2046.7138%2018.6666%2045.3328%2018.6666H18.6661C17.2844%2018.6666%2016.0254%2019.1921%2015.078%2020.054Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='email_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238B55F6'/%3e%3cpath%20d='M5.00354%208.88006C5.00119%208.91974%205%208.95973%205%209V15C5%2016.1046%205.89543%2017%207%2017H17C18.1046%2017%2019%2016.1046%2019%2015V9C19%208.95933%2018.9988%208.91893%2018.9964%208.87886L13.3006%2012.3253C12.5072%2012.8926%2011.4525%2012.8913%2010.6604%2012.3228L5.00354%208.88006Z'%20fill='white'/%3e%3cpath%20d='M5.65447%207.52027L11.4669%2011.0577C11.4866%2011.0697%2011.5057%2011.0825%2011.5242%2011.0963C11.7997%2011.3009%2012.1634%2011.3013%2012.4391%2011.0972C12.4578%2011.0833%2012.4772%2011.0704%2012.4971%2011.0583L18.345%207.51979C17.9898%207.19684%2017.5179%207%2017%207H7C6.48186%207%206.00974%207.19704%205.65447%207.52027Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='enrollment'%20viewBox='0%200%2028%2028'%3e%3cg%20transform='translate(-166%20-310)'%3e%3cpath%20d='M9.831,21.541V25.5h4.947v3.957h3.957V25.5h1.979a4.947,4.947,0,0,0,0-9.894H12.8a.989.989,0,1,1,0-1.979H23.683V9.669H18.736V5.711H14.778V9.669H12.8a4.947,4.947,0,1,0,0,9.894h7.915a.989.989,0,1,1,0,1.979Z'%20transform='translate(163.243%20306.417)'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='epayments_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20fill='%23EDF0F3'/%3e%3cpath%20d='M13.3342%2018.2815C14.906%2018.3995%2016.4184%2018.0901%2017.3793%2017.4532C17.4583%2017.3961%2017.5341%2017.3314%2017.6068%2017.2624C17.6662%2017.1997%2017.7249%2017.1369%2017.7799%2017.0704C18.025%2016.7748%2018.2031%2016.468%2018.3074%2016.1755C18.3426%2016.074%2018.3701%2015.9699%2018.3895%2015.8643L18.3952%2015.8266C18.404%2015.7676%2018.4091%2015.7105%2018.4116%2015.6541C18.4129%2015.6164%2018.4142%2015.5788%2018.4123%2015.5424C18.4094%2015.4696%2018.3994%2015.3973%2018.3826%2015.3265C18.1716%2015.5424%2017.9454%2015.7438%2017.7091%2015.9308C15.6856%2017.5605%2013.47%2017.6816%2012.2564%2017.5906C11.8489%2017.5627%2011.4447%2017.499%2011.0485%2017.4005C10.1135%2017.1313%209.30291%2016.7271%208.62945%2016.2094C9.03363%2016.6221%209.49024%2016.9807%209.98774%2017.2762C10.931%2017.8397%2012.0883%2018.1874%2013.3342%2018.2815ZM6.93191%207.26648C5.88698%208.21531%205.22174%209.40448%205.05306%2010.5861C5.04093%2010.6737%205.03124%2010.7616%205.024%2010.8497V10.856L5.02337%2010.8603C5.01389%2010.9859%205.00694%2011.1164%205.00441%2011.2494C4.93785%2013.1799%205.6266%2015.061%206.92617%2016.498C8.22574%2017.935%2010.0351%2018.8162%2011.9746%2018.9568L12.0277%2018.9593L12.0795%2018.9618L12.1193%2018.9655C12.1433%2018.9687%2012.1679%2018.9718%2012.1945%2018.9731C13.6507%2019.0829%2015.0014%2018.8538%2016.0905%2018.3411C15.2566%2018.5702%2014.2932%2018.6599%2013.3108%2018.5859C12.017%2018.4886%2010.8128%2018.1259%209.82853%2017.5379C7.90293%2016.3864%207.23705%2014.8351%206.95213%2014.1731L6.92244%2014.1041C6.4701%2013.1414%206.27362%2012.0269%206.36775%2010.802L6.37912%2010.6501H6.38986C6.60656%208.48514%207.97242%206.6402%209.83169%205.70142C8.7577%206.02773%207.74752%206.55988%206.93191%207.26648ZM13.6785%209.69816C13.645%2010.1299%2013.3841%2011.1201%2011.6777%2010.9915C11.6191%2010.9872%2011.5605%2010.9817%2011.5021%2010.9752C11.6695%2011.3862%2012.1528%2012.1085%2013.4921%2012.2095C15.129%2012.3325%2016.3199%2011.2243%2016.4045%2010.113C16.4166%209.95844%2016.407%209.80301%2016.3761%209.6511C16.366%209.62537%2016.354%209.60152%2016.3432%209.57705C16.3287%209.54567%2016.3154%209.51241%2016.3003%209.48292C16.2877%209.45782%2016.2731%209.4346%2016.2592%209.41012C16.2434%209.38314%2016.2289%209.3549%2016.2125%209.32855C16.1973%209.30533%2016.1809%209.28462%2016.1657%209.26203C16.1487%209.23818%2016.1329%209.21308%2016.1152%209.19049C16.0981%209.16915%2016.0804%209.1497%2016.0627%209.12899C16.0451%209.10828%2016.028%209.08695%2016.0097%209.06749C15.9907%209.04804%2015.9718%209.03047%2015.9528%209.01227C15.9345%208.99407%2015.9162%208.97525%2015.8972%208.9583C15.8783%208.94073%2015.8574%208.92567%2015.8372%208.90936C15.8183%208.89367%2015.7993%208.87735%2015.7797%208.86292C15.7589%208.84723%2015.7374%208.83405%2015.7165%208.81962C15.6976%208.80644%2015.6774%208.79201%2015.6578%208.77946L15.5915%208.7418C15.5725%208.73051%2015.5529%208.71859%2015.5327%208.70792C15.5112%208.69662%2015.4891%208.68658%2015.4676%208.67654C15.4468%208.6665%2015.4272%208.65583%2015.407%208.64705L15.3419%208.62132C15.3217%208.61316%2015.3008%208.60375%2015.2806%208.59622L15.2124%208.57363L15.1555%208.5548C15.1344%208.54844%2015.1131%208.54258%2015.0917%208.53723L15.033%208.52091L14.9786%208.50899L14.9142%208.49456L14.8599%208.48514L14.8011%208.4751C14.7689%208.47008%2014.7379%208.46632%2014.7076%208.46255L14.6944%208.4613C14.5673%208.44649%2014.4393%208.44124%2014.3115%208.44561L14.2433%208.44749C14.1485%208.45126%2014.0537%208.45816%2013.959%208.46946L13.9318%208.47385C13.843%208.48589%2013.7548%208.50117%2013.6671%208.51966L13.6008%208.53409C13.5072%208.55519%2013.4145%208.57989%2013.3228%208.60814L13.2811%208.62257C13.199%208.64893%2013.1187%208.67905%2013.0398%208.71043L12.9816%208.73427L12.9437%208.75247C13.3816%208.86919%2013.7107%209.27395%2013.6785%209.69816ZM13.2369%2013.8436C13.1422%2013.8332%2013.0476%2013.8215%2012.9532%2013.8085V13.8116C10.3504%2013.4633%209.2549%2012.2848%208.79434%2011.358C8.66375%2011.0939%208.56779%2010.8142%208.50879%2010.5259L8.49552%2010.4631C8.49173%2010.4455%208.4892%2010.428%208.48668%2010.411C8.4601%2010.2602%208.44406%2010.1078%208.43866%209.95482C8.30945%2010.3154%208.22935%2010.6915%208.20049%2011.0731C8.02296%2013.3981%209.77799%2015.4325%2012.1142%2015.6082L12.1439%2015.6089C12.1587%2015.6087%2012.1734%2015.6091%2012.1882%2015.6101H12.1945L12.2128%2015.6133C12.343%2015.6257%2012.4737%2015.6311%2012.6045%2015.6296C14.3096%2015.4131%2015.4506%2014.6494%2016.2144%2013.7533C16.4345%2013.4913%2016.6331%2013.2122%2016.8082%2012.9186C16.9163%2012.7354%2017.011%2012.5522%2017.0957%2012.3727C16.6255%2012.9162%2016.0267%2013.3351%2015.3532%2013.5919C14.6796%2013.8486%2013.9524%2013.9351%2013.2369%2013.8436ZM11.1281%2010.7775C11.1805%2010.0948%2011.4837%209.42958%2011.9197%209.04051C11.9194%209.04069%2011.9192%209.0409%2011.919%209.04114C11.919%209.04114%2011.979%208.9878%2011.9948%208.97525C12.638%208.4318%2013.5635%208.11741%2014.4435%208.13812C14.5623%208.14084%2014.6808%208.14985%2014.7986%208.1651C14.8182%208.16761%2014.8371%208.17138%2014.8567%208.17452C14.8953%208.18079%2014.9344%208.18581%2014.9723%208.19334L15.0399%208.20778C15.0734%208.21531%2015.1069%208.22221%2015.1397%208.23037L15.2092%208.24982L15.3002%208.2768C15.3236%208.28433%2015.3463%208.29312%2015.3697%208.30128C15.3975%208.31132%2015.4266%208.32136%2015.4537%208.33265C15.4771%208.34144%2015.4986%208.35148%2015.5213%208.36089C15.5479%208.37282%2015.575%208.38411%2015.6009%208.39666C15.623%208.4067%2015.6439%208.418%2015.6654%208.42929L15.7412%208.46946L15.8025%208.50711L15.853%208.5366C15.3255%207.87644%2014.3987%207.31292%2012.9678%207.20624C11.2734%207.07822%209.79884%207.73964%208.92006%209.01917C8.84299%209.15409%208.78234%209.36055%208.7577%209.61282L8.75517%209.63164L8.75201%209.68498C8.73933%209.89146%208.74907%2010.0987%208.78108%2010.3031C8.82656%2010.5999%208.92006%2010.9181%209.08053%2011.235C9.44063%2011.9472%2010.2126%2012.8044%2011.8495%2013.2688C11.4022%2012.8446%2011.027%2012.096%2011.1281%2010.7775ZM12.8856%205.04376C12.7188%205.03121%2012.5521%205.02494%2012.3865%205.02117H12.341C12.2273%205.01929%2012.1136%205.01866%2012.0012%205.02117L11.8868%205.02494C11.7996%205.02808%2011.7131%205.03121%2011.6265%205.03749C11.5633%205.04125%2011.5002%205.0469%2011.4364%205.05192C11.377%205.05694%2011.3176%205.06134%2011.2595%205.06761C11.171%205.07702%2011.0838%205.08832%2010.9967%205.10024C10.9632%205.10464%2010.9291%205.1084%2010.8956%205.11342C10.7857%205.12974%2010.6776%205.14856%2010.5702%205.16864L10.5342%205.17492C8.43045%205.57842%206.76071%206.72743%205.75621%208.13247C7.05321%205.47362%209.87718%203.7818%2013.089%204.02277L13.1143%204.02654L13.156%204.03156L13.3114%204.04223C14.5762%204.16836%2015.8448%204.68356%2016.8126%205.46735L16.8468%205.49559C18.344%206.72555%2019.1236%208.4751%2018.984%2010.2962C18.7989%2012.7166%2017.1102%2014.6368%2014.7765%2015.3447C15.3577%2015.0216%2015.8788%2014.602%2016.3173%2014.1041C16.6017%2013.791%2016.8527%2013.4497%2017.0666%2013.0856C17.8645%2011.7715%2017.9808%2010.6482%2017.9902%2010.5353C18.0332%2010.2855%2018.0471%2010.123%2018.0496%2010.0885C18.2284%207.75972%2016.3755%205.63427%2013.736%205.1448C13.614%205.12534%2013.3828%205.09459%2013.2299%205.07389V5.0651L13.0764%205.05381C13.0423%205.0513%2013.0082%205.05004%2012.9747%205.04878C12.9452%205.04793%2012.9157%205.04647%2012.8863%205.04439'%20fill='%23E5353E'/%3e%3c/symbol%3e%3csymbol%20id='epidemic-sound'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M1.4,14.5c0-0.2,0.1-0.4,0.1-0.6C1.8,13.1,2.3,12.4,3,12c0.3-0.2,0.6-0.3,0.9-0.5c0,0-0.1,0-0.1-0.1%20c-0.6-0.4-0.9-0.9-1-1.6C2.8,9.2,3,8.6,3.4,8.1c0.4-0.6,1-0.9,1.7-1c0.6-0.1,1.2,0,1.8,0.4c0.5,0.4,0.7,1,0.6,1.5%20C7.4,9.3,7.1,9.6,6.8,9.7c0-0.2,0-0.3,0-0.5c0-0.8-0.5-1.3-1.3-1.3c-0.9,0-1.5,0.5-1.6,1.4c-0.2,0.9,0.5,1.8,1.4,1.9%20c0.1,0,0.2,0,0.3,0c0.1,0.2,0,0.4-0.1,0.5c-0.1,0.1-0.3,0.2-0.4,0.3c-0.5,0.3-1,0.5-1.4,0.8c-0.4,0.2-0.7,0.5-0.9,0.9%20c-0.2,0.5-0.3,1.1,0,1.6c0.2,0.6,0.8,0.9,1.4,0.8c0.7-0.1,1.2-0.5,1.7-1c0.1-0.1,0.1-0.2,0.3-0.3c0,0.1,0,0.2,0,0.3%20c0,1-0.7,1.8-1.7,2.1c-0.1,0-0.2,0-0.4,0.1c-0.2,0-0.3,0-0.5,0c-0.1,0-0.1,0-0.2,0c-1-0.2-1.6-0.8-1.8-1.8c0-0.1,0-0.2-0.1-0.3%20C1.4,14.9,1.4,14.7,1.4,14.5z'/%3e%3cpath%20d='M16.9,10.3c0.1-0.1,0.1-0.2,0.2-0.3c0.2-0.2,0.4-0.4,0.7-0.4c0.3,0,0.4,0.1,0.5,0.4c0.1,0.3,0,0.6-0.1,0.9%20c-0.1,0.2-0.1,0.4-0.2,0.6c0,0.1,0,0.1,0,0.2c0,0.2,0.1,0.2,0.2,0.2c0.2-0.1,0.4-0.2,0.5-0.5c0.1-0.5,0.3-1.1,0.4-1.6%20c0-0.1,0.1-0.1,0.2-0.1c0.2,0,0.3,0,0.5-0.1c0,0.1,0,0.1,0,0.2c-0.2,0.6-0.3,1.2-0.5,1.9c0,0.1,0,0.1,0.1,0.2%20c0.2,0,0.5-0.2,0.6-0.4c0,0,0-0.1,0-0.1c-0.1-0.7,0.2-1.3,0.7-1.7C21,9.1,21.3,9,21.6,9C22,9.1,22.1,9.5,22,9.8%20c0,0.1-0.1,0.2-0.3,0.1c-0.1,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1,0-0.1,0-0.2,0.1c-0.3,0.2-0.5,0.7-0.4,1.1%20c0.1,0.4,0.5,0.6,0.8,0.4c0.2-0.1,0.4-0.2,0.5-0.4c0-0.1,0.1-0.1,0.1-0.2c0.2,0.3,0,0.8-0.4,1.1c-0.4,0.3-1.1,0.4-1.5-0.2%20c-0.1,0.1-0.2,0.3-0.3,0.4c-0.2,0.2-0.5,0.3-0.9,0.3c-0.2,0-0.3-0.1-0.5-0.3c0,0,0,0.1-0.1,0.1c-0.2,0.2-0.4,0.3-0.7,0.4%20c-0.4,0.1-0.6-0.2-0.6-0.5c0.1-0.3,0.2-0.6,0.2-0.9c0-0.1,0-0.2,0.1-0.4c0-0.2-0.1-0.3-0.3-0.2c-0.1,0.1-0.2,0.2-0.3,0.3%20c-0.1,0.3-0.2,0.7-0.3,1c-0.1,0.2-0.1,0.5-0.2,0.7c0,0,0,0.1-0.1,0.1c-0.2,0-0.4,0-0.6,0.1c0,0,0-0.1,0-0.1c0.1-0.5,0.2-1,0.4-1.5%20c0-0.1,0-0.1,0-0.2c0-0.2-0.1-0.3-0.3-0.2c-0.1,0-0.1,0.1-0.2,0.2c-0.2,0.2-0.3,0.5-0.3,0.8c-0.1,0.3-0.2,0.7-0.3,1%20c0,0.1,0,0.1-0.1,0.1c-0.2,0-0.3,0-0.5,0.1c0-0.1,0.1-0.3,0.1-0.4c-0.1,0.1-0.2,0.1-0.3,0.2C14,12.8,13.6,13,13.1,13%20c-0.4,0-0.7-0.1-0.9-0.4c0,0.1-0.1,0.1-0.1,0.1c-0.2,0.2-0.4,0.5-0.7,0.5c-0.3,0.1-0.5,0-0.6-0.3c0,0-0.1,0.1-0.1,0.1%20c-0.2,0.2-0.4,0.3-0.6,0.3c-0.3,0-0.5-0.1-0.6-0.4c0,0,0,0.1-0.1,0.1c-0.2,0.3-0.6,0.5-1,0.4c-0.1,0-0.3-0.1-0.3-0.2c0,0,0,0,0,0%20c-0.2,0.2-0.5,0.3-0.7,0.3c-0.3,0-0.7,0.1-1,0.2c0,0-0.1,0-0.1,0c0-0.1,0-0.3,0.1-0.4c0.1-0.2,0.2-0.3,0.3-0.4%20c0.2-0.3,0.4-0.5,0.5-0.8c0-0.1,0-0.2,0-0.3c0-0.2-0.2-0.2-0.4-0.1c-0.2,0.1-0.3,0.3-0.3,0.4c-0.2,0.5-0.4,1.1-0.6,1.6%20c-0.1,0.3-0.2,0.6-0.3,1c-0.1,0.3-0.3,0.4-0.6,0.5c-0.1,0-0.1,0-0.2,0c0-0.1,0-0.1,0-0.2c0.4-1.3,0.9-2.6,1.3-3.9%20C6,11.1,6,11,6.1,11c0.2,0,0.4,0,0.6-0.1c0,0.1,0,0.1-0.1,0.2c0,0,0.1,0,0.1-0.1C6.9,11,7,10.9,7.1,10.9c0.4-0.2,0.8,0.1,0.8,0.5%20c0,0.6-0.2,1-0.5,1.4c-0.1,0.1-0.2,0.2-0.3,0.3c0.4,0.1,0.9-0.1,1-0.5c0.1-0.3,0.2-0.6,0.3-1c0.1-0.3,0.2-0.6,0.2-0.9%20c0-0.1,0-0.1,0.1-0.1c0.2,0,0.4,0,0.5-0.1c-0.1,0.5-0.3,1-0.4,1.5c0,0.2-0.1,0.4-0.1,0.5c0,0.1,0,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0%20c0.2-0.1,0.4-0.2,0.5-0.5c0.1-0.5,0.2-1,0.5-1.4c0.2-0.3,0.4-0.5,0.8-0.6c0.2,0,0.4,0,0.6,0.1c0.1-0.3,0.1-0.6,0.2-1%20c-0.2,0-0.3,0-0.5,0c-0.3,0-0.6-0.1-0.9-0.2C9.9,9,9.7,8.7,9.7,8.2c0.1-0.5,0.4-0.9,0.9-0.9c0.4-0.1,0.9,0,1.2,0.3%20c0.3,0.3,0.4,0.6,0.4,1c0,0.1,0,0.2,0,0.3c2.4-0.3,4.6-1,6.7-2.1c0,0.4-0.1,0.8-0.4,1.1c-0.3,0.3-0.7,0.4-1.1,0.6%20C16.7,8.8,16,9,15.3,9.1c-1,0.2-2,0.3-3,0.3c-0.1,0-0.1,0-0.1,0.1c-0.2,0.9-0.5,1.9-0.7,2.8c0,0.1,0,0.2,0.1,0.2c0.1,0,0.1,0,0.2,0%20c0.2-0.1,0.4-0.3,0.4-0.6c0.1-0.5,0.2-1,0.6-1.4c0.3-0.3,0.6-0.5,1.1-0.5c0.4,0,0.7,0.3,0.7,0.7c0,0.6-0.2,0.9-0.8,1.1%20c-0.2,0.1-0.5,0.1-0.7,0.2c-0.1,0-0.1,0-0.1,0.1c0,0.2,0.2,0.4,0.4,0.4c0.6,0,1.4-0.4,1.5-1c0.1-0.4,0.2-0.9,0.4-1.4%20c0-0.1,0.1-0.2,0.2-0.2c0.2,0,0.3,0,0.5-0.1c0,0.1,0,0.2-0.1,0.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.1,0.3-0.2%20c0.2-0.1,0.5,0.1,0.5,0.3C16.8,10.1,16.8,10.2,16.9,10.3z%20M11.7,8.9c0-0.1,0-0.2,0-0.3c-0.1-0.4-0.4-0.7-0.7-0.7%20c-0.4,0-0.6,0.2-0.6,0.5c0,0.2,0.2,0.3,0.3,0.4C10.9,8.9,11.3,8.9,11.7,8.9z%20M11.2,11.1c-0.2-0.1-0.4,0-0.6,0.1%20c-0.2,0.2-0.4,0.4-0.5,0.7c0,0.2-0.1,0.3,0,0.5c0.1,0.2,0.3,0.3,0.4,0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.2,0.2-0.5,0.2-0.7%20C11.1,11.4,11.1,11.3,11.2,11.1z%20M12.9,11.6c0.3-0.1,0.5-0.1,0.7-0.3c0.1-0.1,0.2-0.2,0.2-0.3c0-0.1-0.1-0.2-0.2-0.2%20c-0.1,0-0.1,0-0.2,0C13.1,10.9,13,11.2,12.9,11.6z'/%3e%3cpath%20d='M6.1,16.9c0-0.3,0.1-0.6,0.2-0.8c0.3-0.7,0.8-1.2,1.6-1.5c0.7-0.3,1.4-0.4,2.1-0.5c0.7-0.1,1.4-0.2,2.1-0.3%20c0.6-0.1,1.2-0.1,1.8-0.2c0.8,0,1.6-0.1,2.4-0.1c0,0,0,0,0.1,0c0-0.2,0-0.4,0.2-0.6c0.2-0.2,0.5-0.2,0.8-0.1%20c0.2,0.1,0.3,0.3,0.2,0.5c0,0.2-0.1,0.3-0.3,0.4c0,0-0.1,0-0.1,0c0.1,0.2,0.2,0.4,0.1,0.6c-0.1,0.5-0.6,0.8-1.1,0.5%20c-0.2-0.1-0.3-0.4-0.1-0.6c0.1,0.1,0.1,0.2,0.3,0.3c0.1,0,0.3,0,0.4-0.1c0.1-0.1,0.2-0.3,0-0.4c-0.1-0.1-0.2-0.2-0.4-0.2%20c-1.3,0.2-2.6,0.4-3.9,0.6c-1.7,0.4-3.3,0.8-4.8,1.5c-0.5,0.2-0.9,0.4-1.3,0.7C6.3,16.8,6.2,16.8,6.1,16.9z%20M17.1,13.1%20c-0.1,0-0.3,0.1-0.3,0.2c0,0.1,0.1,0.3,0.2,0.3c0.1,0,0.3-0.2,0.3-0.3C17.3,13.2,17.2,13.1,17.1,13.1z'/%3e%3cpath%20d='M20.6,12.9c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.2,0,0.2,0.2c0,0.2-0.1,0.3-0.1,0.4c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0.1,0.1%20c0.1,0,0.2-0.1,0.2-0.2c0-0.3,0.2-0.5,0.4-0.7c0.1-0.1,0.3-0.2,0.4-0.2c0.1,0,0.1,0,0.1-0.1c0-0.2,0.1-0.3,0.1-0.5%20c0.1-0.2,0.1-0.2,0.4-0.2c-0.1,0.2-0.1,0.5-0.2,0.7c-0.1,0.4-0.2,0.8-0.3,1.2c0,0.1,0,0.1-0.1,0.1c-0.1,0-0.1,0-0.2,0%20c-0.3,0.2-0.4,0.2-0.6-0.1c0,0-0.1,0.1-0.1,0.1c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.2-0.1-0.2-0.2c0-0.2,0-0.3,0.1-0.5%20c0-0.1,0-0.2,0-0.2c0,0-0.1,0.1-0.2,0.1c-0.1,0.1-0.1,0.3-0.2,0.5c0,0,0,0.1,0,0.1c-0.1,0.3-0.1,0.3-0.4,0.3c0,0,0-0.1,0-0.1%20c-0.1,0-0.2,0.1-0.2,0.1c-0.1,0-0.2,0-0.2-0.1c0,0-0.1,0.1-0.1,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.4-0.1-0.4-0.3%20c0,0,0-0.1,0-0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.1,0.2-0.2,0.2c-0.1,0.1-0.3,0.2-0.5,0.2c-0.2,0-0.3-0.1-0.3-0.3%20c-0.1-0.4,0.3-0.9,0.6-1c0.3-0.1,0.5,0.1,0.5,0.4c0,0.1,0,0.1,0,0.2c0.1,0,0.2-0.1,0.2-0.2c0-0.1,0.1-0.2,0.1-0.3%20c0-0.1,0-0.1,0.1-0.1c0.1,0,0.2,0,0.2,0c-0.1,0.2-0.1,0.4-0.1,0.6c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.1c0,0,0.1,0,0.1,0%20c0-0.1,0.1-0.1,0.1-0.2c0.1-0.2,0.1-0.4,0.2-0.6c0-0.1,0-0.1,0.1-0.1c0.1,0,0.1,0,0.2,0c0,0.1-0.1,0.2-0.1,0.3%20c0,0.2-0.1,0.4-0.1,0.5c0,0,0,0.1,0,0.1c0,0,0.1,0,0.1,0c0.1-0.1,0.2-0.2,0.2-0.3c0-0.2,0.1-0.4,0.1-0.6c0-0.1,0.1-0.1,0.1-0.1%20C20.4,12.9,20.4,12.9,20.6,12.9C20.5,12.9,20.5,12.9,20.6,12.9z%20M18.1,13.5C18.1,13.5,18.1,13.5,18.1,13.5c-0.2,0-0.4,0.3-0.3,0.5%20c0,0.1,0.1,0.2,0.2,0.1c0.2-0.1,0.2-0.2,0.3-0.4C18.3,13.6,18.2,13.5,18.1,13.5z%20M22,13c-0.1,0-0.1,0-0.2,0%20c-0.2,0.1-0.3,0.3-0.3,0.5c0,0,0,0.1,0.1,0.1c0.1,0,0.2-0.1,0.2-0.2C21.9,13.3,21.9,13.2,22,13z'/%3e%3cpath%20d='M20.2,8.4c0,0.3-0.3,0.7-0.7,0.7c-0.2,0-0.3-0.1-0.3-0.3c0-0.3,0.3-0.8,0.6-0.8C20.1,8.1,20.2,8.2,20.2,8.4z'/%3e%3cpath%20d='M9.7,9.7c0,0.3-0.3,0.7-0.6,0.7c-0.2,0-0.3-0.1-0.3-0.3c0-0.3,0.3-0.7,0.6-0.7C9.5,9.3,9.7,9.5,9.7,9.7z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='epidemic_sound_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23213139'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.71302%206.5761C4.10105%2010.0061%204.09644%2015.5656%207.69457%2019H13.3086L10.5177%2016.3511C8.4511%2014.3874%208.4511%2011.2062%2010.5177%209.24242C12.5843%207.27868%2015.9334%207.27868%2018%209.24242V4.74765C14.6048%203.32503%2010.4947%203.9316%207.71302%206.5761ZM17.9993%209.24238V15.3867H11.5319L17.9993%209.24238Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='error'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2014V7M12%2017.5V17M19.0711%204.92894C22.9763%208.83419%2022.9763%2015.1658%2019.0711%2019.0711C15.1658%2022.9763%208.83416%2022.9763%204.92894%2019.0711C1.02369%2015.1658%201.02369%208.83416%204.92894%204.92894C8.83418%201.02369%2015.1658%201.02369%2019.0711%204.92894Z'%20stroke='currentColor'%20fill='none'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='ethereum_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23E1EDFF'/%3e%3cpath%20d='M11.9983%2010.4625V5L7.5%2012.523L11.9983%2010.4625Z'%20fill='%238A92B2'/%3e%3cpath%20d='M11.9983%2015.2034V10.4625L7.5%2012.523L11.9983%2015.2034ZM11.9983%2010.4625L16.4974%2012.523L11.9983%205V10.4625Z'%20fill='%2362688F'/%3e%3cpath%20d='M11.998%2010.4625V15.2034L16.4972%2012.523L11.998%2010.4625Z'%20fill='%23454A75'/%3e%3cpath%20d='M11.9983%2016.0619L7.5%2013.3831L11.9983%2019.7721V16.0619Z'%20fill='%238A92B2'/%3e%3cpath%20d='M16.4997%2013.3831L11.998%2016.0619V19.7721L16.4997%2013.3831Z'%20fill='%2362688F'/%3e%3c/symbol%3e%3csymbol%20id='event'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%2012h-5v5h5v-5zM16%201v2H8V1H6v2H5c-1.11%200-1.99.9-1.99%202L3%2019c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3%2018H5V8h14v11z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='event_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2011H7v2h2v-2zm4%200h-2v2h2v-2zm4%200h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11%200-1.99.9-1.99%202L3%2020c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%2016H5V9h14v11z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='exit_to_app'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M10.09%2015.59L11.5%2017l5-5-5-5-1.41%201.41L12.67%2011H3v2h9.67l-2.58%202.59zM19%203H5c-1.11%200-2%20.9-2%202v4h2V5h14v14H5v-4H3v4c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2z'/%3e%3c/symbol%3e%3csymbol%20id='explicit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19%203H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zm-4%206h-4v2h4v2h-4v2h4v2H9V7h6v2z'/%3e%3c/symbol%3e%3csymbol%20id='export'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M6.66665%207.5H4.99998C4.07915%207.5%203.33331%208.24583%203.33331%209.16667V15C3.33331%2015.9208%204.07915%2016.6667%204.99998%2016.6667H15C15.9208%2016.6667%2016.6666%2015.9208%2016.6666%2015V9.16667C16.6666%208.24583%2015.9208%207.5%2015%207.5H13.3333'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%201.66797V10.8346'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.50085%204.16797L10%201.66797L12.5%204.16797'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='export_all'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2010H18C18.5304%2010%2019.0391%2010.2107%2019.4142%2010.5858C19.7893%2010.9609%2020%2011.4696%2020%2012V19C20%2019.5304%2019.7893%2020.0391%2019.4142%2020.4142C19.0391%2020.7893%2018.5304%2021%2018%2021H10C9.46957%2021%208.96086%2020.7893%208.58579%2020.4142C8.21071%2020.0391%208%2019.5304%208%2019V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.5%204.5L10%202L7.5%204.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2011V2'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%207H14C14.5304%207%2015.0391%207.21071%2015.4142%207.58579C15.7893%207.96086%2016%208.46957%2016%209V15C16%2015.5304%2015.7893%2016.0391%2015.4142%2016.4142C15.0391%2016.7893%2014.5304%2017%2014%2017H6C5.46957%2017%204.96086%2016.7893%204.58579%2016.4142C4.21071%2016.0391%204%2015.5304%204%2015V9C4%208.46957%204.21071%207.96086%204.58579%207.58579C4.96086%207.21071%205.46957%207%206%207H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='express_payment'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.8736%2011.9165C16.9531%2011.7856%2016.9966%2011.6356%2016.9998%2011.482C17.003%2011.3284%2016.9657%2011.1767%2016.8917%2011.0425C16.8178%2010.9084%2016.7098%2010.7967%2016.5791%2010.7189C16.4483%2010.6411%2016.2994%2010.6001%2016.1477%2010.6H13.2501V3L7.12653%2013.0844C7.04701%2013.2152%207.0034%2013.3651%207.00019%2013.5187C6.99698%2013.6723%207.0343%2013.824%207.10829%2013.9581C7.18227%2014.0922%207.29025%2014.2039%207.42106%2014.2816C7.55187%2014.3592%207.70078%2014.4001%207.8524%2014.4H10.75V22L16.8736%2011.9165Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='face'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2011.75c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zm6%200c-.69%200-1.25.56-1.25%201.25s.56%201.25%201.25%201.25%201.25-.56%201.25-1.25-.56-1.25-1.25-1.25zM12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8%200-.29.02-.58.05-.86%202.36-1.05%204.23-2.98%205.21-5.37C11.07%208.33%2014.05%2010%2017.42%2010c.78%200%201.53-.09%202.25-.26.21.71.33%201.47.33%202.26%200%204.41-3.59%208-8%208z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='face_alt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M11.99%202C6.47%202%202%206.48%202%2012s4.47%2010%209.99%2010C17.52%2022%2022%2017.52%2022%2012S17.52%202%2011.99%202zM12%2020c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208zm3.5-9c.83%200%201.5-.67%201.5-1.5S16.33%208%2015.5%208%2014%208.67%2014%209.5s.67%201.5%201.5%201.5zm-7%200c.83%200%201.5-.67%201.5-1.5S9.33%208%208.5%208%207%208.67%207%209.5%207.67%2011%208.5%2011zm3.5%206.5c2.33%200%204.31-1.46%205.11-3.5H6.89c.8%202.04%202.78%203.5%205.11%203.5z'/%3e%3c/symbol%3e%3csymbol%20id='facebook'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M18.1%2028.5V17.6H21.8L22.4%2013.3H18.2V10.6C18.1%209.3%2018.4%208.5%2020.2%208.5H22.5V4.7C22%204.6%2020.7%204.5%2019.1%204.5C15.8%204.5%2013.6%206.5%2013.6%2010.1V13.2H10V17.5H13.7V28.5H18.1Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='facebook_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%234267B2'/%3e%3cpath%20d='M12.8015%2019.9999V12.7016H15.2513L15.618%209.85726H12.8015V8.04126C12.8015%207.21779%2013.0302%206.65655%2014.2111%206.65655L15.7173%206.65585V4.11195C15.4567%204.07742%2014.5627%204%2013.5226%204C11.351%204%209.86432%205.32545%209.86432%207.75971V9.85733H7.4082V12.7016H9.86424V20L12.8015%2019.9999Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='fast'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%202H14'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2010L12%2013'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.0002%205L17.6602%207.34'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%204L21%206'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2015H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8%2018H5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8%2021H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.26758%2011C5.15558%207.552%208.27358%205%2011.9996%205C16.4176%205%2019.9996%208.582%2019.9996%2013C19.9996%2017.418%2016.4176%2021%2011.9996%2021'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='favorite'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%2021.35l-1.45-1.32C5.4%2015.36%202%2012.28%202%208.5%202%205.42%204.42%203%207.5%203c1.74%200%203.41.81%204.5%202.09C13.09%203.81%2014.76%203%2016.5%203%2019.58%203%2022%205.42%2022%208.5c0%203.78-3.4%206.86-8.55%2011.54L12%2021.35z'/%3e%3c/symbol%3e%3csymbol%20id='file'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%202c-1.1%200-1.99.9-1.99%202L4%2020c0%201.1.89%202%201.99%202H18c1.1%200%202-.9%202-2V8l-6-6H6zm7%207V3.5L18.5%209H13z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='file_add'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2010V7.828C18%207.298%2017.789%206.789%2017.414%206.414L14.586%203.586C14.211%203.211%2013.702%203%2013.172%203H6C4.895%203%204%203.895%204%205V19C4%2020.105%204.895%2021%206%2021H10M18%208H14C13.448%208%2013%207.552%2013%207V3M16.5%2015.705V19.294M18.295%2017.5H14.706M16.5%2022C14.015%2022%2012%2019.985%2012%2017.5C12%2015.015%2014.015%2013%2016.5%2013C18.986%2013%2021%2015.015%2021%2017.5C21%2019.985%2018.986%2022%2016.5%2022Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='file_copy'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M16%201H4c-1.1%200-2%20.9-2%202v14h2V3h12V1zm-1%204l6%206v10c0%201.1-.9%202-2%202H7.99C6.89%2023%206%2022.1%206%2021l.01-14c0-1.1.89-2%201.99-2h7zm-1%207h5.5L14%206.5V12z'/%3e%3c/symbol%3e%3csymbol%20id='file_download'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M14,2H6C4.89,2%204,2.89%204,4V20C4,21.11%204.89,22%206,22H18C19.11,22%2020,21.11%2020,20V8L14,2M12,19L8,15H10.5V12H13.5V15H16L12,19M13,9V3.5L18.5,9H13Z'/%3e%3c/symbol%3e%3csymbol%20id='file_export'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%208H15C14.448%208%2014%207.552%2014%207V3M19%208C19%207.469%2018.789%206.789%2018.414%206.414L15.586%203.586C15.211%203.211%2014.531%203%2014%203M19%208V13M14%203H7C5.895%203%205%203.895%205%205V19C5%2020.105%205.895%2021%207%2021H11M15%2017L19%2021M19%2021H15M19%2021V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='file_eye'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2011V5C19%203.895%2018.105%203%2017%203H5C3.895%203%203%203.895%203%205V18C3%2019.105%203.895%2020%205%2020H11M7%2011H13M7%207H15M7%2015H9M13.767%2017.691C13.493%2017.275%2013.493%2016.727%2013.767%2016.311C14.615%2015.028%2015.947%2014%2017.28%2014C18.613%2014%2019.944%2015.028%2020.793%2016.31C21.068%2016.726%2021.068%2017.275%2020.793%2017.69C19.943%2018.972%2018.612%2020%2017.28%2020C15.947%2020.001%2014.615%2018.973%2013.767%2017.691ZM17.8%2017C17.8%2017.2761%2017.5762%2017.5%2017.3%2017.5C17.0239%2017.5%2016.8%2017.2761%2016.8%2017C16.8%2016.7239%2017.0239%2016.5%2017.3%2016.5C17.5762%2016.5%2017.8%2016.7239%2017.8%2017Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='bevel'/%3e%3c/symbol%3e%3csymbol%20id='file_import'%20viewBox='0%200%2016%2016'%3e%3cpath%20d='M8.66602%2014H11.3327C11.8631%2014%2012.3718%2013.7893%2012.7469%2013.4142C13.122%2013.0391%2013.3327%2012.5304%2013.3327%2012V5.67287C13.3327%205.14244%2013.122%204.63374%2012.7469%204.25867L11.074%202.58579C10.6989%202.21072%2010.1902%202%209.65981%202H4.66602C4.13558%202%203.62687%202.21071%203.2518%202.58579C2.87673%202.96086%202.66602%203.46957%202.66602%204V8'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.3327%205.66667H10.9993C10.6457%205.66667%2010.3066%205.52619%2010.0565%205.27614C9.80649%205.02609%209.66602%204.68696%209.66602%204.33333V2'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3.33398%2013.3334L6.00065%2010.6667'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4%2010.6667H6'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2012.6667V10.6667'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='file_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2011H14M8%2014H14M8%2017H12.33M14%203C14.53%203%2015.211%203.211%2015.586%203.586L18.414%206.414C18.789%206.789%2019%207.47%2019%208M14%203H7C5.895%203%205%203.895%205%205V19C5%2020.105%205.895%2021%207%2021H17C18.105%2021%2019%2020.105%2019%2019V8M14%203V7C14%207.552%2014.448%208%2015%208H19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='filter_list'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%207H3M18%2012H6M14%2017H10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='find_in_page'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M20%2019.59V8l-6-6H6c-1.1%200-1.99.9-1.99%202L4%2020c0%201.1.89%202%201.99%202H18c.45%200%20.85-.15%201.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76%200-5-2.24-5-5s2.24-5%205-5%205%202.24%205%205c0%201.02-.31%201.96-.83%202.75L20%2019.59zM9%2013c0%201.66%201.34%203%203%203s3-1.34%203-3-1.34-3-3-3-3%201.34-3%203z'/%3e%3c/symbol%3e%3csymbol%20id='fire'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71647%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3866%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992V16.5992Z'%20stroke='currentColor'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='fire_colored'%20viewBox='0%200%2024%2024'%3e%3cmask%20id='path-1-outside-1'%20maskUnits='userSpaceOnUse'%20x='5'%20y='2'%20width='16'%20height='20'%20fill='black'%3e%3crect%20fill='white'%20x='5'%20y='2'%20width='16'%20height='20'/%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71646%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3865%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992Z'/%3e%3c/mask%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71646%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3865%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992Z'%20fill='%23F5563D'/%3e%3cpath%20d='M11.562%203.11095L11.1042%204L11.1063%204.0011L11.562%203.11095ZM10.2343%204.37694L11.1184%203.90971L11.1161%203.90544L10.2343%204.37694ZM10.2639%2011.318L11.1286%2011.8204L11.1408%2011.7994L11.152%2011.7777L10.2639%2011.318ZM9.99324%2011.3865L9.48634%2012.2485L9.99324%2011.3865ZM9.92264%2011.3142L10.7988%2010.8321L10.7967%2010.8285L9.92264%2011.3142ZM9.48526%2010.1312L10.4654%209.93253L10.4632%209.92239L9.48526%2010.1312ZM9.11037%209.71174L8.77672%2010.6544L8.77794%2010.6549L9.11037%209.71174ZM8.54491%209.80152L9.15512%2010.5938L9.15817%2010.5914L8.54491%209.80152ZM6.37287%2017.0443L5.43165%2017.3822L5.43197%2017.383L6.37287%2017.0443ZM12.4251%2020.9932V19.9932H12.4018L12.3786%2019.9943L12.4251%2020.9932ZM18.7639%2016.5555L17.7958%2016.3049L17.7955%2016.306L18.7639%2016.5555ZM12.5219%2018.7336L12.5885%2017.7358L12.5551%2017.7336L12.5215%2017.7336L12.5219%2018.7336ZM9.90155%2016.6128L10.8851%2016.4321L10.8847%2016.43L9.90155%2016.6128ZM10.3756%2016.179L10.1533%2017.154L10.2706%2017.1807L10.3909%2017.1789L10.3756%2016.179ZM12.3282%2015.1152L11.6133%2014.416L11.5435%2014.4874L11.4891%2014.5711L12.3282%2015.1152ZM12.682%2013.2592L13.601%2012.865L13.5772%2012.8094L13.5468%2012.7571L12.682%2013.2592ZM13.1592%2012.7213L13.5616%2011.8058L13.5305%2011.7921L13.4985%2011.7806L13.1592%2012.7213ZM12.0198%202.22191C11.6509%202.03191%2011.2318%201.96202%2010.8224%202.01959L11.1009%204.0001C11.102%203.99995%2011.1031%203.99997%2011.1041%204.00014C11.1051%204.00031%2011.1051%204.00047%2011.1042%204L12.0198%202.22191ZM10.8224%202.01959C10.4129%202.07718%2010.0281%202.26029%209.72594%202.54837L11.1061%203.99585C11.1005%204.00117%2011.0981%204.0005%2011.1009%204.0001L10.8224%202.01959ZM9.72594%202.54837C9.42331%202.83693%209.2193%203.21631%209.15069%203.63339L11.1242%203.95803C11.121%203.97759%2011.1122%203.99005%2011.1061%203.99585L9.72594%202.54837ZM9.15069%203.63339C9.08203%204.05076%209.15383%204.47703%209.3524%204.84844L11.1161%203.90544C11.1235%203.91922%2011.1274%203.93818%2011.1242%203.95803L9.15069%203.63339ZM9.35013%204.84417C9.84278%205.7764%2010.1008%206.80531%2010.1053%207.84832L12.1052%207.83977C12.0994%206.47147%2011.7607%205.12516%2011.1184%203.90971L9.35013%204.84417ZM10.1053%207.84832C10.1097%208.89133%209.86051%209.9222%209.3759%2010.8582L11.152%2011.7777C11.7839%2010.5571%2012.1111%209.20807%2012.1052%207.83977L10.1053%207.84832ZM9.39931%2010.8156C9.47409%2010.6869%209.58069%2010.5845%209.70428%2010.5155L10.679%2012.2619C10.8631%2012.1592%2011.0196%2012.0079%2011.1286%2011.8204L9.39931%2010.8156ZM9.70428%2010.5155C9.82765%2010.4466%209.9653%2010.4124%2010.1032%2010.4139L10.0811%2012.4138C10.2888%2012.4161%2010.4952%2012.3645%2010.679%2012.2619L9.70428%2010.5155ZM10.1032%2010.4139C10.2411%2010.4155%2010.3781%2010.4527%2010.5001%2010.5245L9.48634%2012.2485C9.66802%2012.3553%209.87337%2012.4115%2010.0811%2012.4138L10.1032%2010.4139ZM10.5001%2010.5245C10.6224%2010.5964%2010.7268%2010.7014%2010.7987%2010.8321L9.04653%2011.7963C9.15121%2011.9866%209.30444%2012.1415%209.48634%2012.2485L10.5001%2010.5245ZM10.7967%2010.8285C10.6401%2010.5465%2010.5286%2010.2445%2010.4653%209.93254L8.5052%2010.3299C8.60949%2010.8444%208.79287%2011.3399%209.04854%2011.8L10.7967%2010.8285ZM10.4632%209.92239C10.4061%209.65484%2010.2798%209.40929%2010.0999%209.20803L8.60865%2010.5408C8.56001%2010.4863%208.52387%2010.4176%208.50731%2010.34L10.4632%209.92239ZM10.0999%209.20803C9.92022%209.00699%209.69336%208.85692%209.4428%208.76861L8.77794%2010.6549C8.71604%2010.633%208.65709%2010.595%208.60865%2010.5408L10.0999%209.20803ZM9.44402%208.76904C9.19205%208.67986%208.92183%208.65541%208.65861%208.6972L8.97223%2010.6725C8.90717%2010.6828%208.84014%2010.6769%208.77672%2010.6544L9.44402%208.76904ZM8.65861%208.6972C8.39533%208.73901%208.14469%208.84622%207.93164%209.01164L9.15817%2010.5914C9.10164%2010.6353%209.03736%2010.6621%208.97223%2010.6725L8.65861%208.6972ZM7.93469%209.00928C6.67904%209.97644%205.75939%2011.3003%205.30903%2012.8021L7.22474%2013.3766C7.5524%2012.284%208.22455%2011.3105%209.15512%2010.5938L7.93469%209.00928ZM5.30903%2012.8021C4.85854%2014.3043%204.90156%2015.9052%205.43165%2017.3822L7.31408%2016.7065C6.92826%2015.6315%206.89721%2014.4688%207.22474%2013.3766L5.30903%2012.8021ZM5.43197%2017.383C5.93961%2018.7933%206.90364%2020.0003%208.17278%2020.8284L9.26566%2019.1534C8.35303%2018.5579%207.6708%2017.6975%207.31377%2016.7057L5.43197%2017.383ZM8.17278%2020.8284C9.44143%2021.6562%2010.9493%2022.0628%2012.4715%2021.9921L12.3786%2019.9943C11.271%2020.0457%2010.1788%2019.7492%209.26566%2019.1534L8.17278%2020.8284ZM12.4251%2021.9932C14.238%2021.9932%2015.8526%2021.5483%2017.1343%2020.6507C18.4243%2019.7474%2019.3139%2018.4288%2019.7323%2016.8049L17.7955%2016.306C17.4875%2017.5016%2016.8591%2018.4018%2015.9871%2019.0125C15.1068%2019.6289%2013.915%2019.9932%2012.4251%2019.9932V21.9932ZM19.732%2016.806C20.3458%2014.4336%2019.8834%2011.5444%2018.5761%208.90975C17.2606%206.25851%2015.046%203.77101%2012.0177%202.22081L11.1063%204.0011C13.7139%205.33595%2015.6388%207.48953%2016.7845%209.79868C17.9385%2012.1244%2018.2589%2014.5149%2017.7958%2016.3049L19.732%2016.806ZM14.2729%2016.4503C14.218%2016.815%2014.0212%2017.1547%2013.7107%2017.3966L14.9397%2018.9744C15.6453%2018.4248%2016.1176%2017.6312%2016.2506%2016.7481L14.2729%2016.4503ZM13.7107%2017.3966C13.3991%2017.6393%2012.9982%2017.7632%2012.5885%2017.7358L12.4553%2019.7314C13.3478%2019.791%2014.2352%2019.5233%2014.9397%2018.9744L13.7107%2017.3966ZM12.5215%2017.7336C12.122%2017.7337%2011.7398%2017.5977%2011.4415%2017.3563L10.1833%2018.9109C10.8433%2019.4451%2011.6715%2019.7339%2012.5223%2019.7336L12.5215%2017.7336ZM11.4415%2017.3563C11.1439%2017.1154%2010.9502%2016.7869%2010.8851%2016.4321L8.918%2016.7934C9.07126%2017.6279%209.52254%2018.3761%2010.1833%2018.9109L11.4415%2017.3563ZM10.8847%2016.43C10.9047%2016.5374%2010.8965%2016.6479%2010.8617%2016.7503L8.96815%2016.1064C8.89287%2016.3278%208.87553%2016.565%208.9184%2016.7956L10.8847%2016.43ZM10.8617%2016.7503C10.8269%2016.8526%2010.7675%2016.9413%2010.6924%2017.01L9.34228%2015.5345C9.17314%2015.6893%209.04337%2015.8852%208.96815%2016.1064L10.8617%2016.7503ZM10.6924%2017.01C10.6175%2017.0785%2010.5291%2017.1255%2010.4362%2017.1496L9.93235%2015.2141C9.71441%2015.2709%209.51123%2015.3799%209.34228%2015.5345L10.6924%2017.01ZM10.4362%2017.1496C10.3435%2017.1738%2010.2466%2017.1752%2010.1533%2017.154L10.598%2015.204C10.3786%2015.154%2010.1502%2015.1574%209.93235%2015.2141L10.4362%2017.1496ZM10.3909%2017.1789C10.943%2017.1704%2011.4858%2017.0288%2011.9703%2016.7649L11.0134%2015.0086C10.8158%2015.1163%2010.5912%2015.1756%2010.3604%2015.1791L10.3909%2017.1789ZM11.9703%2016.7649C12.4549%2016.5008%2012.8673%2016.1218%2013.1673%2015.6592L11.4891%2014.5711C11.3734%2014.7496%2011.2108%2014.9011%2011.0134%2015.0086L11.9703%2016.7649ZM13.0431%2015.8144C13.4164%2015.4327%2013.6712%2014.9507%2013.7714%2014.425L11.8068%2014.0505C11.7815%2014.1834%2011.7161%2014.3109%2011.6133%2014.416L13.0431%2015.8144ZM13.7714%2014.425C13.8717%2013.899%2013.812%2013.3567%2013.601%2012.865L11.763%2013.6534C11.8175%2013.7804%2011.8321%2013.9178%2011.8068%2014.0505L13.7714%2014.425ZM13.5468%2012.7571C13.6128%2012.8707%2013.6426%2013.0045%2013.6288%2013.1395L11.6392%2012.9356C11.6096%2013.2243%2011.673%2013.513%2011.8172%2013.7613L13.5468%2012.7571ZM13.6288%2013.1395C13.615%2013.2743%2013.559%2013.3972%2013.4741%2013.4928L11.978%2012.1656C11.7891%2012.3785%2011.6688%2012.6469%2011.6392%2012.9356L13.6288%2013.1395ZM13.4741%2013.4928C13.3898%2013.588%2013.2815%2013.6512%2013.1669%2013.6797L12.6833%2011.7391C12.4137%2011.8063%2012.1665%2011.9531%2011.978%2012.1656L13.4741%2013.4928ZM13.1669%2013.6797C13.0524%2013.7083%2012.9318%2013.7023%2012.8199%2013.662L13.4985%2011.7806C13.2367%2011.6862%2012.9527%2011.6719%2012.6833%2011.7391L13.1669%2013.6797ZM12.7568%2013.6367C13.3054%2013.8779%2013.7478%2014.2856%2014.0203%2014.7883L15.7786%2013.8351C15.2895%2012.9331%2014.5072%2012.2215%2013.5616%2011.8058L12.7568%2013.6367ZM14.0203%2014.7883C14.2925%2015.2904%2014.3823%2015.8623%2014.2788%2016.4153L16.2447%2016.7831C16.4332%2015.7757%2016.268%2014.7377%2015.7786%2013.8351L14.0203%2014.7883Z'%20fill='white'%20mask='url(%23path-1-outside-1)'/%3e%3c/symbol%3e%3csymbol%20id='fire_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.562%203.11095C11.3782%203.01628%2011.1678%202.98085%2010.9616%203.00985C10.7555%203.03884%2010.5643%203.13073%2010.416%203.27211C10.2677%203.41349%2010.1701%203.59695%2010.1374%203.79571C10.1047%203.99447%2010.1387%204.19813%2010.2343%204.37694C10.8017%205.45078%2011.1001%206.63839%2011.1052%207.84405C11.1104%209.0497%2010.8222%2010.2397%2010.2639%2011.318C10.2469%2011.3474%2010.2219%2011.3718%2010.1917%2011.3887C10.1614%2011.4056%2010.127%2011.4143%2010.0921%2011.4139C10.0572%2011.4135%2010.0231%2011.404%209.99324%2011.3865C9.96341%2011.369%209.93903%2011.344%209.92264%2011.3142C9.71646%2010.9432%209.56903%2010.5444%209.48526%2010.1312C9.46498%2010.0362%209.41989%209.94782%209.35427%209.8744C9.28866%209.80098%209.2047%209.74498%209.11037%209.71174C9.0161%209.67837%208.9145%209.6691%208.81542%209.68483C8.71635%209.70056%208.62316%209.74076%208.54491%209.80152C7.45179%2010.6435%206.6559%2011.7922%206.26689%2013.0894C5.87788%2014.3865%205.91491%2015.7683%206.37287%2017.0443C6.80521%2018.2454%207.62834%2019.2791%208.71922%2019.9909C9.81011%2020.7027%2011.1102%2021.0543%2012.4251%2020.9932C15.728%2020.9932%2018.0375%2019.3749%2018.7639%2016.5555C19.8409%2012.3931%2017.1979%205.99601%2011.562%203.11095ZM15.2617%2016.5992C15.1678%2017.2231%2014.8333%2017.7897%2014.3252%2018.1855C13.8171%2018.5813%2013.173%2018.7771%2012.5219%2018.7336C11.8968%2018.7338%2011.2915%2018.5214%2010.8124%2018.1336C10.3332%2017.7458%2010.0108%2017.2074%209.90155%2016.6128C9.8901%2016.5512%209.89469%2016.4878%209.91491%2016.4284C9.93512%2016.3689%209.97033%2016.3153%2010.0174%2016.2723C10.0644%2016.2292%2010.1218%2016.1982%2010.1843%2016.1819C10.2468%2016.1656%2010.3126%2016.1646%2010.3756%2016.179C10.7671%2016.173%2011.1508%2016.0725%2011.4918%2015.8867C11.8329%2015.7009%2012.1204%2015.4357%2012.3282%2015.1152C12.5663%2014.8718%2012.7264%2014.567%2012.7891%2014.2377C12.8519%2013.9084%2012.8147%2013.5686%2012.682%2013.2592C12.6429%2013.1918%2012.6261%2013.1144%2012.634%2013.0375C12.6419%2012.9606%2012.674%2012.8879%2012.7261%2012.8292C12.7781%2012.7705%2012.8476%2012.7287%2012.9251%2012.7094C13.0025%2012.6901%2013.0843%2012.6942%2013.1592%2012.7213C13.9063%2013.0497%2014.5186%2013.6093%2014.8994%2014.3117C15.2803%2015.014%2015.4077%2015.819%2015.2617%2016.5992Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='flag_ar'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V19H1V4Z'%20fill='%23199D00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.54316%208.251C6.52025%208.60256%206.48587%209.2178%206.78092%209.28225C7.13326%209.3174%206.93848%208.67287%207.06738%208.55569C7.0903%208.49709%207.13326%208.49709%207.13613%208.57033V9.11819C7.13613%209.29397%207.25071%209.3467%207.33665%209.38186C7.42832%209.376%207.49134%209.38186%207.52571%209.46975L7.57155%2010.416C7.57155%2010.416%207.78352%2010.4805%207.79498%209.88576C7.80358%209.5342%207.72624%209.24416%207.77207%209.17678C7.77207%209.1094%207.85801%209.10647%207.9153%209.13869C8.00697%209.20315%208.04706%209.28518%208.1903%209.25588C8.40801%209.19143%208.53978%209.08303%208.54264%208.91311C8.53834%208.74612%208.50437%208.58133%208.44238%208.42678C8.45384%208.39748%208.40228%208.31838%208.41373%208.28908C8.45097%208.35354%208.51113%208.34768%208.52259%208.28908C8.48535%208.16604%208.42806%208.04592%208.33639%207.99612C8.25905%207.9258%208.14446%207.93752%208.10723%208.08401C8.08431%208.251%208.16452%208.44729%208.28197%208.61135C8.30775%208.67287%208.34212%208.77834%208.32779%208.87209C8.26478%208.91018%208.20176%208.8926%208.14733%208.83694C8.14733%208.83694%207.97545%208.7051%207.97545%208.67287C8.02129%208.37405%207.98405%208.33889%207.95826%208.25393C7.94108%208.13967%207.88665%208.10158%207.84369%208.02541C7.80071%207.97854%207.74343%207.97854%207.71478%208.02541C7.63743%208.16018%207.67468%208.45022%207.7291%208.58205C7.7692%208.70217%207.82936%208.77834%207.80071%208.77834C7.77779%208.84573%207.7291%208.82815%207.69186%208.74905C7.64994%208.58258%207.62971%208.41117%207.63171%208.23928C7.61738%208.10451%207.60019%207.8174%207.51139%207.74123C7.45983%207.67092%207.38249%207.70608%207.35384%207.77053C7.34627%207.90141%207.34915%208.0327%207.36243%208.16311C7.41972%208.37991%207.43978%208.57326%207.46843%208.79299C7.47702%209.08889%207.30228%208.9219%207.31087%208.77248C7.34845%208.58464%207.34552%208.39068%207.30228%208.20412C7.27363%208.12795%207.24212%208.11037%207.17051%208.12209C7.11608%208.12209%206.97571%208.27737%206.93562%208.54104C6.93562%208.54104%206.90124%208.6758%206.88691%208.79592C6.86686%208.93069%206.78092%209.0303%206.7179%208.77834C6.66634%208.59377%206.63197%208.14553%206.54603%208.251H6.54316Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5026%209.68945L6.58594%2010.1406C6.59453%209.92676%207.01849%209.54297%207.31068%209.54004C7.49687%209.54297%207.45105%209.61328%207.49974%209.68945H7.5026Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.33913%209.98245C6.85788%2011.2568%208.47063%2011.4355%208.6511%2010.0352C8.66829%209.97659%208.73704%209.92093%208.7485%2010.0146C8.71126%2011.2832%207.49954%2011.3682%207.29329%2010.9697C7.24477%2010.8326%207.22052%2010.6878%207.22168%2010.542C7.19303%2010.293%207.06413%2010.3896%207.04407%2010.6357C7.02402%2010.7734%207.02975%2010.8115%207.02975%2010.9434C7.09277%2011.9453%208.65397%2011.5146%208.90892%2010.6885C9.04355%2010.2314%208.886%209.89456%208.95761%209.89456C9.1123%2010.0645%209.33001%209.918%209.3787%209.85941C9.39876%209.83011%209.45033%209.8096%209.4847%209.84769C9.60501%209.93558%209.81699%209.89456%209.86282%209.73929C9.88861%209.58402%209.90866%209.42581%209.91439%209.26468C9.81413%209.29398%209.74251%209.31448%209.73392%209.35843L9.71387%209.4932C9.70527%209.53714%209.6222%209.53714%209.61647%209.48148C9.57923%209.3057%209.42454%209.28519%209.33001%209.55472C9.26986%209.60745%209.15527%209.61917%209.14381%209.54007C9.15814%209.35843%209.08652%209.33499%208.94329%209.41995L8.80579%208.35941C8.86308%208.35941%208.92037%208.40335%208.9748%208.33304C8.91751%208.14261%208.78861%207.75589%208.71699%207.72659C8.68548%207.68558%208.65683%207.71195%208.611%207.72366C8.53652%207.7471%208.46777%207.81155%208.49069%207.94046C8.57662%208.49124%208.63392%208.91019%208.72272%209.4639C8.73704%209.52542%208.68548%209.61038%208.61673%209.60159C8.50215%209.52249%208.4735%209.36136%208.27297%209.36722C8.12975%209.36722%207.96934%209.52835%207.94928%209.68069C7.9235%209.80374%207.9149%209.93558%207.94928%2010.041C8.04954%2010.1641%208.16986%2010.1523%208.27584%2010.126C8.36179%2010.0879%208.4334%2010%208.4649%2010.0205C8.48496%2010.0469%208.46777%2010.3398%208.05527%2010.5625C7.80606%2010.6797%207.60553%2010.7031%207.49954%2010.4951C7.43366%2010.3633%207.50527%209.86819%207.33913%209.98245Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.39306%208.68752C9.48759%208.65237%209.94593%208.1133%209.94593%208.1133L9.87717%208.05471C9.8514%208.0342%209.85425%208.01076%209.87717%207.99026C9.99176%207.91994%209.95451%207.77346%209.89722%207.70315C9.85833%207.68376%209.81554%207.67392%209.77227%207.67443C9.72901%207.67494%209.68645%207.68578%209.64801%207.70608C9.5678%207.78518%209.55061%207.91115%209.61363%207.98733C9.67378%208.01662%209.73395%208.08108%209.69384%208.11623C9.50477%208.32131%208.99202%208.6758%209.05217%208.68752C9.06363%208.7051%209.3816%208.7051%209.3902%208.68752H9.39306ZM6.61441%2010.5918C6.44254%2010.873%206.42822%2011.292%206.52275%2011.418C6.57431%2011.4766%206.65738%2011.5029%206.71754%2011.4824C6.8264%2011.4355%206.87509%2011.21%206.84931%2011.1309C6.81207%2011.0723%206.78342%2011.0635%206.74618%2011.1104C6.6717%2011.2686%206.6402%2011.1602%206.6316%2011.0723C6.62339%2010.9234%206.63108%2010.7741%206.65451%2010.627C6.67457%2010.5039%206.65451%2010.5391%206.61441%2010.5918ZM13.9792%2010.1436C13.8131%209.77444%2013.5811%209.41115%2013.5095%209.27346C13.2863%208.91253%2013.0493%208.5607%2012.799%208.21877C12.6215%208.00197%2013.0912%208.30959%2012.7417%207.876L12.4868%207.65627C12.4295%207.61526%2012.292%207.53908%2012.2691%207.66213C12.2576%207.77346%2012.2634%207.83205%2012.2805%207.92287C12.2949%207.98147%2012.3808%208.08401%2012.4238%208.1426C13.011%208.93814%2013.5269%209.78632%2013.9649%2010.6768C14.0395%2010.6387%2014.0222%2010.2051%2013.9792%2010.1436Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.2494%2011.3682C13.215%2011.4063%2013.3296%2011.5674%2013.4785%2011.5674C13.7249%2011.5381%2013.9426%2011.3975%2014.1431%2011.0225C14.2246%2010.8977%2014.2766%2010.7553%2014.2949%2010.6064C14.3192%209.89527%2014.2635%209.18357%2014.1288%208.48538C14.1202%208.42679%2014.1288%208.35648%2014.1345%208.3389C14.1517%208.31839%2014.2062%208.3389%2014.2348%208.2891C14.2777%208.24515%2014.1202%207.87894%2014.0343%207.74124C14.0056%207.67679%2013.9913%207.63578%2013.9397%207.7471C13.8775%207.86994%2013.8479%208.00733%2013.8538%208.14554C13.9712%208.9805%2014.0085%209.70999%2014.083%2010.5449C14.0916%2010.627%2014.0801%2010.7441%2014.0257%2010.791C13.8095%2011.0372%2013.545%2011.2338%2013.2494%2011.3682ZM16.5866%2011.3652C16.409%2011.4707%2016.409%2011.5908%2016.5522%2011.5938C16.7985%2011.5645%2017.0908%2011.5439%2017.2913%2011.2334C17.3621%2011.0871%2017.4031%2010.9276%2017.4116%2010.7647C17.4477%2010.0644%2017.4025%209.36226%2017.277%208.67288C17.2712%208.61429%2017.2455%208.4766%2017.2541%208.45902C17.2712%208.418%2017.3515%208.46195%2017.3801%208.41507C17.4202%208.37113%2017.171%208.043%2017.0822%207.90238C17.0536%207.83792%2017.0421%207.79691%2016.9876%207.90824C16.93%208.03221%2016.9119%208.17162%2016.9361%208.30667C17.0678%209.21488%2017.1652%209.89456%2017.1854%2010.6973C17.1738%2010.7734%2017.171%2010.8145%2017.1366%2010.9111C17.0592%2011.0107%2016.9734%2011.1397%2016.8931%2011.2012C16.8129%2011.2598%2016.641%2011.3184%2016.5866%2011.3652Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.7183%2010.5537C16.7183%2010.3398%2016.7211%2010.1582%2016.7153%209.99707C16.7135%209.86061%2016.6842%209.72599%2016.6294%209.60157C16.5779%209.48145%2016.6093%209.38477%2016.5836%209.25586C16.5606%209.12696%2016.5664%208.9336%2016.532%208.78418C16.5206%208.72559%2016.4919%208.53516%2016.5005%208.51465C16.5149%208.47364%2016.5693%208.51465%2016.5979%208.46778C16.638%208.42383%2016.4547%207.94043%2016.363%207.80274C16.3316%207.74122%2016.2685%207.76172%2016.1969%207.86133C16.1252%207.92872%2016.1511%208.07813%2016.1797%208.22168C16.3544%209.16797%2016.4891%2010.0264%2016.4604%2010.9258C16.449%2011.002%2016.7183%2010.6973%2016.7183%2010.5537ZM15.4091%209.38184C15.2974%209.37598%2015.0653%209.15625%2014.9966%209.03028C14.9854%208.99949%2014.9806%208.96662%2014.9825%208.93382C14.9846%208.90101%2014.9932%208.86899%2015.008%208.83985C15.0511%208.81055%2015.114%208.78125%2015.1627%208.81055C15.1627%208.81055%2015.2115%208.88086%2015.2029%208.88965C15.2602%208.91895%2015.2889%208.9043%2015.2945%208.87793C15.2974%208.83399%2015.2773%208.80762%2015.2773%208.76075C15.3031%208.62598%2015.4492%208.60547%2015.5065%208.69043C15.5466%208.74317%2015.5638%208.85157%2015.5666%208.92481C15.5666%208.9629%2015.5093%208.91895%2015.4722%208.92481C15.4406%208.93653%2015.432%208.97754%2015.4292%209.0127C15.4235%209.10938%2015.412%209.26465%2015.4091%209.37891V9.38184ZM13.3524%2010.7881C13.381%2010.501%2013.3409%209.98829%2013.338%209.81836C13.3227%209.38136%2013.2873%208.94533%2013.232%208.51172C13.1977%208.26563%2013.3294%208.53809%2013.3123%208.39454C13.2693%208.15137%2013.1375%207.98438%2012.9799%207.76465C12.9312%207.69141%2012.9312%207.67676%2012.8539%207.78223C12.7679%207.97852%2012.8425%208.11622%2012.8653%208.27149C12.9771%208.7754%2013.043%209.23829%2013.0745%209.69825C13.1074%2010.1761%2013.1113%2010.6555%2013.0859%2011.1338C13.1719%2011.1367%2013.3037%2010.9961%2013.3524%2010.7881Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.099%2010.3281C16.9014%209.98827%2016.6063%209.62499%2016.5261%209.48729C16.2605%209.10792%2015.9815%208.73854%2015.6896%208.37987C15.4462%208.1162%2015.8042%208.33592%2015.6438%208.13085C15.5091%207.98143%2015.472%207.93163%2015.3545%207.84081C15.2972%207.80272%2015.2628%207.72948%2015.2399%207.85546C15.2308%207.96457%2015.2288%208.0742%2015.2342%208.18358C15.2342%208.23339%2015.2857%208.33007%2015.3316%208.38866C15.9245%209.13573%2016.5748%209.89745%2017.0962%2010.8555C17.1707%2010.8174%2017.1449%2010.3867%2017.0962%2010.3281H17.099Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.17823%209.70408C8.16391%209.73045%208.1324%209.76268%208.14386%209.7949C8.16391%209.8242%208.18396%209.83299%208.21834%209.83299C8.24984%209.83299%208.29568%209.84178%208.30428%209.8242C8.32147%209.80369%208.33293%209.76561%208.32147%209.72752C8.28709%209.63963%208.19542%209.67479%208.17823%209.70408Z'%20fill='%231BA400'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.8131%2014.6201C15.0766%2014.6318%2015.2485%2014.6348%2015.4805%2014.6611L15.7554%2014.6318C16.0591%2014.6025%2016.0706%2015.0742%2016.0706%2015.0742C16.0706%2015.3525%2015.9646%2015.3672%2015.83%2015.3965C15.7526%2015.4082%2015.7154%2015.3496%2015.6724%2015.291C15.6076%2015.3123%2015.5386%2015.3163%2015.4719%2015.3027C15.3601%2015.2969%2015.2513%2015.2969%2015.1425%2015.2881C15.0279%2015.2793%2014.9648%2015.3027%2014.8474%2015.291C14.8245%2015.3291%2014.7901%2015.3818%2014.7214%2015.3672C14.6641%2015.3584%2014.5925%2015.1914%2014.6125%2015.0596C14.6554%2014.9658%2014.6412%2014.998%2014.6412%2014.957C13.5641%2014.9277%2012.4784%2014.8779%2011.4242%2014.8926C10.5992%2014.8955%209.78568%2014.9307%208.96927%2014.9658C8.53386%2014.96%208.20156%2014.8896%207.9724%2014.5469C7.99532%2014.5469%209.08386%2014.6084%209.40182%2014.5879C9.98906%2014.582%2010.5276%2014.5322%2011.1263%2014.5146C12.3065%2014.5352%2013.4781%2014.5352%2014.6583%2014.6201C14.5438%2014.541%2014.5438%2014.3564%2014.7156%2014.3096C14.73%2014.2978%2014.7386%2014.4004%2014.7643%2014.3975C14.9047%2014.3887%2014.8416%2014.582%2014.8131%2014.6201ZM10.0693%207.96384C9.89167%208.48533%2010.1724%209.05955%2010.3672%209.00388C10.5105%209.06248%2010.5964%208.78709%2010.6536%208.48826C10.6966%208.4033%2010.7253%208.39451%2010.7453%208.43845C10.7395%208.83689%2010.774%208.92771%2010.8742%209.04783C11.0976%209.22361%2011.2839%209.07127%2011.2982%209.05662L11.47%208.87791C11.5101%208.83396%2011.5618%208.83396%2011.6161%208.86912C11.6706%208.91892%2011.662%209.00388%2011.7766%209.06248C11.874%209.10349%2012.0773%209.0742%2012.126%208.98923C12.1891%208.87498%2012.2062%208.83689%2012.2349%208.79588C12.2807%208.73435%2012.3581%208.76072%2012.3581%208.78123C12.3495%208.81638%2012.3036%208.84861%2012.3352%208.91306C12.3925%208.95408%2012.4039%208.92771%2012.4354%208.91892C12.55%208.86033%2012.6359%208.60838%2012.6359%208.60838C12.6388%208.51463%2012.5873%208.52048%2012.5528%208.54392L12.4641%208.60545C12.4068%208.61423%2012.3008%208.65232%2012.2464%208.56736C12.1919%208.46775%2012.1919%208.3242%2012.1518%208.22166C12.1518%208.2158%2012.0773%208.06052%2012.1461%208.05173C12.1805%208.05759%2012.2521%208.0781%2012.2635%208.01658C12.2979%207.95506%2012.1891%207.7822%2012.1118%207.69431C12.0459%207.62107%2011.9541%207.61228%2011.8654%207.68845C11.8024%207.74705%2011.8109%207.8115%2011.7995%207.87302C11.7886%207.91711%2011.7881%207.96321%2011.7981%208.00752C11.8081%208.05184%2011.8282%208.0931%2011.8568%208.12791C11.9198%208.25095%2012.0315%208.41209%2011.9942%208.6406C11.9942%208.6406%2011.9284%208.74607%2011.8138%208.73142C11.7651%208.72263%2011.6878%208.70213%2011.6476%208.38572C11.6161%208.15134%2011.6534%207.81736%2011.556%207.66209C11.5187%207.56541%2011.4929%207.47459%2011.4071%207.63572C11.3841%207.70017%2011.2839%207.79685%2011.3554%207.99314C11.4232%208.17002%2011.4431%208.36234%2011.4127%208.54978C11.3698%208.61423%2011.3612%208.63474%2011.3068%208.69627C11.2322%208.78416%2011.1492%208.76072%2011.0862%208.72849C11.0289%208.69041%2010.9831%208.6699%2010.9545%208.53806C10.9601%208.33298%2010.9716%207.99607%2010.9344%207.92576C10.88%207.81443%2010.7912%207.85545%2010.7539%207.8906C10.5835%208.08421%2010.4694%208.32267%2010.4245%208.57908C10.3729%208.749%2010.3185%208.6992%2010.2813%208.63181C10.1895%208.54392%2010.1809%207.84959%2010.0693%207.96384Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.6074%209.1006C10.6905%209.042%2010.6532%209.00099%2010.7735%209.12403C10.9288%209.40505%2011.019%209.71877%2011.0371%2010.041C11.0313%2010.1172%2011.0828%2010.1641%2011.1087%2010.1465C11.1201%209.97071%2011.5412%209.72462%2011.9279%209.68946C11.9852%209.67482%2011.9566%209.56056%2011.9652%209.50196C11.9423%209.28224%2012.0855%209.08302%2012.286%209.06837C12.561%209.10939%2012.6527%209.2588%2012.6584%209.48439C12.6269%209.92384%2012.18%209.99708%2011.9308%2010.0322C11.8935%2010.0469%2011.8764%2010.0645%2011.9308%2010.085L12.9792%2010.0908L13.0337%2010.1201C13.0394%2010.1494%2013.0165%2010.126%2012.9764%2010.1963C12.9187%2010.2999%2012.8826%2010.4146%2012.8704%2010.5332C12.5581%2010.6387%2012.2345%2010.6797%2011.9079%2010.7236C11.7933%2010.7822%2011.736%2010.8613%2011.759%2010.9492C11.7991%2011.0459%2012.0511%2011.1455%2012.0511%2011.1484C12.0998%2011.1777%2012.1542%2011.251%2012.0368%2011.4004C11.5269%2011.377%2011.1287%2011.1543%2010.9912%2010.8408C10.9511%2010.8086%2010.9053%2010.8408%2010.8766%2010.8818C10.6761%2011.1455%2010.4813%2011.3799%2010.1405%2011.5088C9.93992%2011.5615%209.7308%2011.4766%209.63341%2011.3418C9.56752%2011.2627%209.57039%2011.1777%209.54747%2011.1602C9.43576%2011.21%208.49044%2011.6201%208.61076%2011.4268C8.83992%2011.1777%209.24096%2010.9902%209.59044%2010.7441C9.61623%2010.6592%209.66205%2010.3779%209.79956%2010.2871C9.80814%2010.2871%209.77951%2010.4512%209.78237%2010.5215C9.78237%2010.5801%209.77664%2010.6006%209.7881%2010.5859C9.81387%2010.5713%2010.2378%2010.2285%2010.2751%2010.123C10.3152%2010.0645%2010.2837%209.91212%2010.2837%209.90626C10.2034%209.69532%2010.0918%209.67775%2010.0517%209.57228C10.0144%209.43458%2010.0316%209.27638%2010.109%209.2295C10.1777%209.16798%2010.2579%209.17384%2010.3352%209.24415C10.4212%209.32325%2010.4957%209.47853%2010.5186%209.59278C10.5042%209.63673%2010.404%209.56349%2010.3753%209.584C10.4305%209.6488%2010.4671%209.72785%2010.4813%209.81251C10.5386%2010.0527%2010.5214%2010.1465%2010.4641%2010.3018C10.2751%2010.709%2010.0345%2010.8291%209.82247%2010.9814C9.81674%2010.9814%209.81387%2011.084%209.89123%2011.1396C9.91987%2011.1689%2010.0316%2011.1836%2010.1605%2011.1396C10.4358%2010.9832%2010.6586%2010.7453%2010.7993%2010.457C10.8236%2010.2377%2010.8002%2010.0156%2010.7306%209.80665C10.6474%209.61036%2010.5501%209.33204%2010.5501%209.32618C10.5472%209.20314%2010.5558%209.16212%2010.6074%209.1006ZM7.8631%207.96974C7.98341%208.02833%208.21258%208.00196%208.20112%207.80275L8.19539%207.71192C8.17247%207.65333%208.10372%207.66798%208.0894%207.72657C8.08367%207.74708%208.09799%207.77931%208.0808%207.7881C8.06934%207.79982%208.03211%207.79396%208.03211%207.73829C8.03211%207.72071%208.02065%207.70314%208.01205%207.69142C8.00633%207.68556%208.0006%207.68556%207.98627%207.68556C7.96909%207.68556%207.96909%207.68849%207.9605%207.70314C7.95763%207.71778%207.9519%207.73243%207.9519%207.75001C7.9519%207.77052%207.94044%207.77638%207.92898%207.77931C7.91179%207.77931%207.91466%207.77931%207.90033%207.77345C7.8946%207.76466%207.88601%207.76173%207.88601%207.74415L7.87742%207.69728C7.87169%207.68849%207.86024%207.68263%207.84878%207.6797C7.78289%207.6797%207.77716%207.7588%207.78289%207.7881C7.77716%207.79396%207.7743%207.93165%207.8631%207.96974Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.4013%209.499C11.5217%209.55759%2011.811%209.52537%2011.7393%209.33494L11.7337%209.24119C11.7078%209.18259%2011.6419%209.19724%2011.6277%209.25877C11.6219%209.27634%2011.6363%209.30857%2011.6162%209.31736C11.6076%209.32908%2011.5675%209.32322%2011.5704%209.27049C11.5704%209.25291%2011.5589%209.2324%2011.5503%209.22068C11.5417%209.21775%2011.5389%209.21482%2011.5217%209.21482C11.5073%209.21482%2011.5073%209.22068%2011.4987%209.23533C11.493%209.24998%2011.4902%209.26463%2011.4902%209.2822C11.4873%209.29978%2011.4787%209.30564%2011.4644%209.3115C11.45%209.3115%2011.4529%209.3115%2011.4415%209.30271C11.4329%209.29392%2011.4243%209.29099%2011.4243%209.27635L11.4157%209.22947C11.4099%209.22068%2011.3985%209.21482%2011.387%209.21189C11.3211%209.21189%2011.3154%209.28806%2011.3183%209.31736C11.3154%209.32322%2011.3125%209.46384%2011.4042%209.499H11.4013ZM13.4638%208.86619C13.5842%208.92478%2013.8105%208.89842%2013.8019%208.70213L13.7962%208.60838C13.7704%208.54978%2013.7045%208.56443%2013.6902%208.62302C13.6844%208.64353%2013.6987%208.67576%2013.6787%208.68748C13.6701%208.69627%2013.63%208.69041%2013.6329%208.63474C13.6329%208.61717%2013.6214%208.59959%2013.6129%208.58787C13.6042%208.58201%2013.6013%208.58201%2013.5842%208.58201C13.5698%208.58201%2013.5698%208.58787%2013.5612%208.60252L13.5526%208.64646C13.5498%208.66697%2013.5412%208.67576%2013.5269%208.67576C13.5125%208.67576%2013.5154%208.67576%2013.5039%208.6699C13.4953%208.66111%2013.4868%208.65818%2013.4868%208.64353C13.4868%208.62888%2013.4839%208.60545%2013.4782%208.59373C13.4724%208.58494%2013.461%208.58201%2013.4496%208.57908C13.3837%208.57908%2013.3779%208.65525%2013.3808%208.68455C13.3779%208.69041%2013.3751%208.8281%2013.4667%208.86619H13.4638ZM14.5324%2010.457C14.3232%2010.7002%2014.4149%2011.1016%2014.4636%2011.1895C14.5324%2011.3301%2014.5868%2011.4209%2014.7214%2011.4912C14.8446%2011.582%2014.9419%2011.5264%2014.9936%2011.4619C15.1167%2011.3301%2015.1196%2010.9932%2015.1769%2010.9287C15.217%2010.8057%2015.3201%2010.8262%2015.3688%2010.8818C15.4144%2010.948%2015.4754%2011.0014%2015.5464%2011.0371C15.661%2011.1396%2015.7985%2011.1602%2015.936%2011.0664C16.0277%2011.0107%2016.0878%2010.9434%2016.1423%2010.8057C16.1996%2010.6416%2016.1709%209.87986%2016.1565%209.42869L16.0363%208.79881C16.0363%208.79295%2016.0219%208.49998%2016.0076%208.4326C16.0076%208.4033%2015.999%208.39451%2016.0277%208.39744C16.0592%208.42674%2016.062%208.42674%2016.085%208.43552C16.1136%208.44138%2016.1423%208.38572%2016.1222%208.33885L15.8357%207.79392C15.8129%207.77049%2015.7813%207.74705%2015.744%207.79978C15.7221%207.82012%2015.7046%207.84501%2015.6928%207.87279C15.6809%207.90057%2015.675%207.93061%2015.6753%207.96092C15.6839%208.08982%2015.7039%208.22166%2015.7125%208.35056L15.8271%209.01267C15.8644%209.48142%2015.873%209.86814%2015.9102%2010.3398C15.9045%2010.5391%2015.8443%2010.7119%2015.787%2010.7383C15.787%2010.7383%2015.7011%2010.7881%2015.6438%2010.7324C15.6009%2010.7148%2015.4318%2010.4424%2015.4318%2010.4424C15.3459%2010.3633%2015.2886%2010.3838%2015.2284%2010.4424C15.0565%2010.6123%2014.982%2010.9228%2014.8646%2011.1396C14.836%2011.1895%2014.75%2011.2275%2014.6584%2011.1367C14.4235%2010.8057%2014.561%2010.3369%2014.5324%2010.457ZM13.5183%207.71189C13.6271%207.75584%2013.7016%207.98142%2013.6787%208.09275C13.6558%208.22459%2013.5985%208.37107%2013.5584%208.35349C13.5125%208.33592%2013.587%208.21873%2013.544%208.09568C13.5211%208.01365%2013.3722%207.86717%2013.3893%207.82615C13.3607%207.73533%2013.4524%207.69431%2013.5183%207.70896V7.71189Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.882%2010.5918C14.902%2010.3223%2014.8648%2010.1582%2014.859%209.99999C14.8534%209.84179%2014.6843%208.63476%2014.65%208.51757C14.607%208.28906%2014.8133%208.48827%2014.7903%208.35351C14.7187%208.18945%2014.544%207.94628%2014.4895%207.80273C14.4551%207.74413%2014.4695%207.68554%2014.395%207.78808C14.3308%207.96786%2014.3083%208.16039%2014.3291%208.35058C14.5067%209.29687%2014.6871%2010.082%2014.6585%2010.9814C14.7444%2010.9814%2014.839%2010.7852%2014.882%2010.5918ZM16.7268%208.09277C16.827%208.14257%2016.8843%208.42382%2016.8729%208.50292C16.8528%208.64941%2016.8013%208.80761%2016.764%208.7871C16.721%208.76952%2016.7726%208.57031%2016.7525%208.50878C16.7296%208.42089%2016.595%208.26269%2016.6093%208.21581C16.5807%208.1162%2016.6666%208.07519%2016.7268%208.09277ZM9.40202%2010.082C9.49655%2010.1201%209.55384%2010.3252%209.54525%2010.3838C9.52233%2010.4922%209.47363%2010.6094%209.4364%2010.5918C9.39915%2010.5801%209.44499%2010.4336%209.4278%2010.3867C9.41921%2010.2783%209.28743%2010.2197%209.2903%2010.1729C9.26739%2010.085%209.34759%2010.0703%209.40488%2010.082H9.40202Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.6821%2010.3926C11.8025%2010.3984%2011.8626%2010.498%2011.7509%2010.5391C11.6364%2010.5771%2011.5304%2010.6094%2011.5274%2010.7734C11.5705%2011.0078%2011.4701%2010.9258%2011.4129%2010.8965C11.3441%2010.8438%2011.1493%2010.7207%2011.1207%2010.457C11.1179%2010.3955%2011.1665%2010.3398%2011.2439%2010.3398C11.3585%2010.3721%2011.5304%2010.375%2011.6821%2010.3926Z'%20fill='%231B9D00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.88391%207.64455C7.02142%207.68557%207.03001%207.8965%207.02142%207.95803C7.00137%208.06935%206.95267%208.18947%206.91829%208.17482C6.87819%208.16017%206.91829%208.00783%206.89824%207.96096C6.87819%207.8965%206.76074%207.77346%206.7722%207.7383C6.74642%207.66506%206.82949%207.6299%206.88391%207.64455ZM9.63105%208.62892C9.5222%208.68752%209.4821%208.8633%209.54798%208.96877C9.61101%209.05666%209.7084%209.02443%209.71985%209.02443C9.82584%209.03615%209.88887%208.82228%209.88887%208.82228C9.88887%208.82228%209.89174%208.76369%209.76855%208.87795C9.71412%208.88674%209.71127%208.86623%209.69694%208.83693C9.68382%208.78116%209.68886%208.72253%209.71127%208.66994C9.73131%208.61721%209.69121%208.59377%209.63105%208.62892ZM10.4331%207.56252C10.3758%207.6006%2010.2698%207.71486%2010.267%207.84377C10.2642%207.91701%2010.2498%207.91701%2010.2956%207.96096C10.3329%208.01369%2010.3644%208.01076%2010.4331%207.97267C10.4502%207.96165%2010.465%207.9471%2010.4763%207.92995C10.4877%207.9128%2010.4954%207.89343%2010.499%207.87307C10.5162%207.79103%2010.4131%207.91408%2010.4016%207.82033C10.3787%207.73244%2010.4446%207.69728%2010.5076%207.61525C10.5076%207.55666%2010.5076%207.51857%2010.4303%207.56252H10.4331ZM11.0748%207.67971C11.0495%207.78639%2011.0342%207.89527%2011.029%208.0049C11.0118%208.08693%2011.1149%208.12209%2011.1578%208.01662C11.2267%207.82619%2011.2266%207.74416%2011.2323%207.66506C11.2123%207.53908%2011.1292%207.54201%2011.0748%207.67971ZM15.1425%209.79787C15.154%209.78322%2015.7155%209.376%2015.7155%209.376C15.7728%209.35549%2015.7584%209.58693%2015.7326%209.584C15.5585%209.75563%2015.3582%209.89713%2015.1396%2010.0029C15.111%2010.0234%2015.0852%209.84767%2015.1396%209.79787H15.1425ZM15.6496%209.79201C15.7498%209.84182%2015.7899%2010.1377%2015.7784%2010.2168C15.7784%2010.375%2015.6839%2010.498%2015.6438%2010.4805C15.6037%2010.46%2015.6496%2010.2842%2015.6295%2010.2227C15.6065%2010.1348%2015.5235%209.97365%2015.5378%209.92678C15.5091%209.82717%2015.5894%209.77443%2015.6524%209.79201H15.6496ZM12.3266%2011.0635C12.3731%2011.008%2012.4271%2010.9597%2012.487%2010.9199C12.5443%2010.8906%2012.5959%2010.9434%2012.593%2010.9404C12.6016%2010.999%2012.5587%2011.0488%2012.573%2011.125C12.5844%2011.1543%2012.593%2011.1895%2012.6475%2011.1777C12.7363%2011.1045%2012.8194%2011.0986%2012.9052%2011.0957C12.9769%2011.0986%2012.9797%2011.2187%2012.9339%2011.2187C12.7707%2011.2539%2012.699%2011.3008%2012.5816%2011.3447C12.5243%2011.3799%2012.4784%2011.3359%2012.4784%2011.333C12.4784%2011.3301%2012.4469%2011.3008%2012.467%2011.2246C12.4728%2011.166%2012.4498%2011.1309%2012.3982%2011.1367C12.3638%2011.1602%2012.3295%2011.1719%2012.3123%2011.1279C12.3037%2011.0986%2012.3009%2011.0811%2012.3266%2011.0635ZM16.2396%2011.2217C16.2625%2011.251%2016.2797%2011.2803%2016.2368%2011.333L16.1308%2011.4268C16.1136%2011.4561%2016.1022%2011.5088%2016.1595%2011.5234C16.2625%2011.5527%2016.5032%2011.3916%2016.5032%2011.3887C16.5432%2011.3594%2016.5318%2011.3008%2016.5261%2011.3008C16.5032%2011.2744%2016.4516%2011.292%2016.4172%2011.2861C16.4001%2011.2861%2016.3456%2011.2803%2016.3714%2011.2275C16.3906%2011.2016%2016.4061%2011.173%2016.4172%2011.1426C16.4316%2011.1074%2016.4172%2011.084%2016.3599%2011.0635C16.2998%2011.0518%2016.2741%2011.0576%2016.2082%2011.0635C16.1737%2011.0693%2016.1623%2011.0869%2016.1537%2011.1309C16.1565%2011.1982%2016.1967%2011.1953%2016.2396%2011.2187V11.2217Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.3468%209.55759C12.3325%209.58689%2012.2809%209.58689%2012.2322%209.55759C12.1835%209.5283%2012.1549%209.48142%2012.1721%209.45506C12.1893%209.42869%2012.238%209.42869%2012.2867%209.45506C12.3354%209.48142%2012.3612%209.53123%2012.3468%209.55759ZM9.79736%207.98728C9.76871%207.99607%209.72862%207.9697%209.71143%207.92869C9.69424%207.88767%209.70283%207.85252%209.73148%207.84373C9.76012%207.83494%209.79736%207.86424%209.81742%207.90232C9.83747%207.94041%209.82601%207.98142%209.7945%207.99021L9.79736%207.98728Z'%20fill='%23259F00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.8413%2014.9863C15.1106%2014.998%2015.3627%2014.9863%2015.6291%2015.001C15.6778%2015.0449%2015.6434%2015.1475%2015.6119%2015.1416L15.3885%2015.1328C15.3856%2015.0449%2015.1679%2015.0596%2015.1736%2015.1357C15.0561%2015.1504%2014.9502%2015.1328%2014.8299%2015.127C14.7955%2015.083%2014.8012%2015.0039%2014.8413%2014.9863Z'%20fill='%23209000'/%3e%3c/symbol%3e%3csymbol%20id='flag_en'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V5.1543H1V4ZM1%206.30859H23V7.46289H1V6.30859ZM1%208.61426H23V9.77148H1V8.61426ZM1%2010.9229H23V12.0771H1V10.9229ZM1%2013.2314H23V14.3857H1V13.2314ZM1%2015.5371H23V16.6914H1V15.5371ZM1%2017.8457H23V19H1V17.8457Z'%20fill='%23BD3D44'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%205.1543H23V6.30859H1V5.1543ZM1%207.46289H23V8.61426H1V7.46289ZM1%209.76855H23V10.9229H1V9.76855ZM1%2012.0771H23V13.2314H1V12.0771ZM1%2014.3857H23V15.54H1V14.3857ZM1%2016.6914H23V17.8457H1V16.6914Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H13.5393V12.0771H1V4Z'%20fill='%23192F5D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2.04414%204.3457L2.16016%204.66504H2.52754L2.23105%204.86133L2.34385%205.18359L2.04414%204.98437L1.74766%205.18066L1.86045%204.86133L1.56075%204.66504H1.93457L2.04414%204.3457ZM4.13565%204.3457L4.24843%204.66504H4.61904L4.31934%204.86133L4.43213%205.18359L4.13565%204.98437L3.83593%205.18066L3.94872%204.86133L3.65224%204.66504H4.01963L4.13565%204.3457ZM6.22392%204.3457L6.33994%204.66504H6.7041L6.40762%204.86133L6.5204%205.18359L6.2207%204.98437L5.92421%205.18066L6.03701%204.86133L5.7373%204.66504H6.1079L6.22392%204.3457ZM8.31543%204.3457L8.42822%204.66504H8.79882L8.49912%204.86133L8.61513%205.18359L8.31543%204.98437L8.01572%205.18066L8.13174%204.86133L7.83203%204.66504H8.19941L8.31543%204.3457ZM10.4037%204.3457L10.5197%204.66504H10.8871L10.5907%204.86133L10.7034%205.18359L10.4037%204.98437L10.1072%205.18066L10.22%204.86133L9.92353%204.66504H10.2909L10.4037%204.3457ZM12.4952%204.3457L12.608%204.66504H12.9786L12.6789%204.86133L12.795%205.18359L12.4952%204.98437L12.1955%205.18066L12.3115%204.86133L12.0118%204.66504H12.3825L12.4952%204.3457ZM3.09151%205.1543L3.2043%205.47363H3.5749L3.27519%205.66992L3.38477%205.98926L3.09473%205.79297L2.79502%205.98926L2.90137%205.66992L2.61132%205.47363H2.97871L3.09151%205.1543ZM5.17978%205.1543L5.2958%205.47363H5.66318L5.36348%205.66992L5.4795%205.98926L5.17978%205.79297L4.88007%205.98926L4.99609%205.66992L4.69638%205.47363H5.067L5.17978%205.1543ZM7.27129%205.1543L7.38408%205.47363H7.75468L7.45497%205.66992L7.56777%205.98926L7.27129%205.79297L6.97158%205.98926L7.08437%205.66992L6.78789%205.47363H7.15527L7.27129%205.1543ZM9.35957%205.1543L9.47559%205.47363H9.84301L9.54326%205.66992L9.65928%205.98926L9.35957%205.79297L9.06309%205.98926L9.17588%205.66992L8.87617%205.47363H9.25L9.35957%205.1543ZM11.4511%205.1543L11.5638%205.47363H11.9344L11.6348%205.66992L11.7475%205.98926L11.4511%205.79297L11.1513%205.98926L11.2642%205.66992L10.9676%205.47363H11.335L11.4511%205.1543ZM2.04414%205.95996L2.16016%206.28516H2.52754L2.23105%206.48144L2.34385%206.80078L2.04414%206.60156L1.74766%206.80078L1.86045%206.47851L1.56075%206.28223H1.93457L2.04414%205.95996ZM4.13565%205.95996L4.24843%206.28223H4.61904L4.31934%206.47851L4.43213%206.79785L4.13565%206.59863L3.83593%206.79785L3.94872%206.47558L3.65224%206.2793H4.01963L4.13565%205.95996ZM6.22392%205.95996L6.33994%206.28223H6.7041L6.40762%206.47851L6.5204%206.79785L6.2207%206.59863L5.92421%206.79785L6.03701%206.47558L5.7373%206.2793H6.1079L6.22392%205.95996ZM8.31543%205.95996L8.42822%206.28223H8.79882L8.49912%206.47851L8.61513%206.79785L8.31543%206.59863L8.01572%206.79785L8.13174%206.47558L7.83203%206.2793H8.19941L8.31543%205.95996ZM10.4037%205.95996L10.5197%206.28223H10.8871L10.5907%206.47851L10.7034%206.79785L10.4037%206.59863L10.1072%206.79785L10.22%206.47558L9.92353%206.2793H10.2909L10.4037%205.95996ZM12.4952%205.95996L12.608%206.28223H12.9786L12.6789%206.47851L12.795%206.79785L12.4952%206.59863L12.1955%206.79785L12.3115%206.47558L12.0118%206.2793H12.3825L12.4952%205.95996ZM3.09151%206.76855L3.2043%207.08789H3.5749L3.27519%207.28418L3.38799%207.60644L3.09151%207.40723L2.7918%207.60351L2.90459%207.28418L2.6081%207.08789H2.97549L3.09151%206.76855ZM5.17978%206.76855L5.2958%207.08789H5.66318L5.36348%207.28418L5.4795%207.60644L5.17978%207.40723L4.88007%207.60351L4.99609%207.28418L4.69638%207.08789H5.067L5.17978%206.76855ZM7.27129%206.76855L7.38408%207.08789H7.75468L7.45497%207.28418L7.56777%207.60644L7.27129%207.40723L6.97158%207.60351L7.08437%207.28418L6.78789%207.08789H7.15527L7.27129%206.76855ZM9.35957%206.76855L9.47559%207.08789H9.84301L9.54648%207.28418L9.65928%207.60644L9.35957%207.40723L9.06309%207.60351L9.17588%207.28418L8.87617%207.08789H9.25L9.35957%206.76855ZM11.4511%206.76855L11.5638%207.08789H11.9344L11.6348%207.28418L11.7475%207.60644L11.4511%207.40723L11.1513%207.60351L11.2642%207.28418L10.9676%207.08789H11.335L11.4511%206.76855ZM2.04414%207.57715L2.16016%207.89648H2.52754L2.23105%208.09277L2.34385%208.41504L2.04414%208.21582L1.74766%208.41211L1.86045%208.09277L1.56075%207.89648H1.93457L2.04414%207.57715ZM4.13565%207.57715L4.24843%207.89648H4.61904L4.31934%208.09277L4.43213%208.41211L4.13565%208.21582L3.83593%208.41211L3.94872%208.09277L3.65224%207.89648H4.01963L4.13565%207.57715ZM6.22392%207.57715L6.33994%207.89648H6.7041L6.40762%208.09277L6.5204%208.41504L6.2207%208.21582L5.92421%208.41211L6.03701%208.09277L5.7373%207.89648H6.1079L6.22392%207.57715ZM8.31543%207.57715L8.42822%207.89648H8.79882L8.49912%208.09277L8.61513%208.41504L8.31543%208.21582L8.01572%208.41211L8.13174%208.09277L7.83203%207.89648H8.19941L8.31543%207.57715ZM10.4037%207.57715L10.5197%207.89648H10.8871L10.5907%208.09277L10.7034%208.41504L10.4037%208.21582L10.1072%208.41211L10.22%208.09277L9.92353%207.89648H10.2909L10.4037%207.57715ZM12.4952%207.57715L12.608%207.89648H12.9786L12.6789%208.09277L12.795%208.41504L12.4952%208.21582L12.1955%208.41211L12.3115%208.09277L12.0118%207.89648H12.3825L12.4952%207.57715ZM3.09151%208.38574L3.2043%208.70508H3.5749L3.27519%208.90137L3.38799%209.2207L3.09151%209.02148L2.7918%209.2207L2.90459%208.89844L2.6081%208.70215H2.97549L3.09151%208.38574ZM5.17978%208.38574L5.2958%208.70508H5.66318L5.36348%208.90137L5.4795%209.2207L5.17978%209.02148L4.88007%209.2207L4.99609%208.89844L4.69638%208.70215H5.067L5.17978%208.38574ZM7.27129%208.38574L7.38408%208.70508H7.75468L7.45497%208.90137L7.56777%209.2207L7.27129%209.02148L6.97158%209.2207L7.08437%208.89844L6.78789%208.70215H7.15527L7.27129%208.38574ZM9.35957%208.38574L9.47559%208.70508H9.84301L9.54648%208.90137L9.65928%209.2207L9.35957%209.02148L9.06309%209.2207L9.17588%208.89844L8.87617%208.70215H9.25L9.35957%208.38574ZM11.4511%208.38574L11.5638%208.70508H11.9344L11.6348%208.90137L11.7475%209.2207L11.4511%209.02148L11.1513%209.2207L11.2642%208.89844L10.9676%208.70215H11.335L11.4511%208.38574ZM2.04414%209.1914L2.16016%209.51367H2.52754L2.23105%209.70996L2.34385%2010.0264L2.04414%209.83008L1.74766%2010.0264L1.86045%209.70703L1.56075%209.51074H1.93457L2.04414%209.1914ZM4.13565%209.1914L4.24843%209.51367H4.61904L4.31934%209.70996L4.43535%2010.0264L4.13565%209.83008L3.83593%2010.0264L3.95195%209.70703L3.65224%209.51074H4.01963L4.13565%209.1914ZM6.22392%209.1914L6.33994%209.51367H6.7041L6.40762%209.70996L6.5204%2010.0264L6.2207%209.83008L5.92421%2010.0264L6.03701%209.70703L5.7373%209.51074H6.1079L6.22392%209.1914ZM8.31543%209.1914L8.42822%209.51367H8.79882L8.49912%209.70996L8.61513%2010.0264L8.31543%209.83008L8.01572%2010.0264L8.13174%209.70703L7.83203%209.51074H8.19941L8.31543%209.1914ZM10.4037%209.1914L10.5197%209.51367H10.8871L10.5907%209.70996L10.7034%2010.0264L10.4037%209.83008L10.1072%2010.0264L10.22%209.70703L9.92353%209.51074H10.2909L10.4037%209.1914ZM12.4952%209.1914L12.608%209.51367H12.9786L12.6789%209.70996L12.795%2010.0264L12.4952%209.83008L12.1955%2010.0264L12.3115%209.70703L12.0118%209.51074H12.3825L12.4952%209.1914ZM3.09151%2010L3.2043%2010.3193H3.5749L3.27519%2010.5156L3.38799%2010.8379L3.09151%2010.6387L2.7918%2010.835L2.90459%2010.5156L2.6081%2010.3193H2.97549L3.09151%2010ZM5.17978%2010L5.2958%2010.3193H5.66318L5.36348%2010.5156L5.4795%2010.8379L5.17978%2010.6387L4.88007%2010.835L4.99609%2010.5156L4.69638%2010.3193H5.067L5.17978%2010ZM7.27129%2010L7.38408%2010.3193H7.75468L7.45497%2010.5156L7.56777%2010.8379L7.27129%2010.6387L6.97158%2010.835L7.08437%2010.5156L6.78789%2010.3193H7.15527L7.27129%2010ZM9.35957%2010L9.47559%2010.3193H9.84301L9.54648%2010.5156L9.65928%2010.8379L9.35957%2010.6387L9.06309%2010.835L9.17588%2010.5156L8.87617%2010.3193H9.25L9.35957%2010ZM11.4511%2010L11.5638%2010.3193H11.9344L11.6348%2010.5156L11.7475%2010.8379L11.4511%2010.6387L11.1513%2010.835L11.2642%2010.5156L10.9676%2010.3193H11.335L11.4511%2010ZM2.04414%2010.8086L2.16016%2011.1279H2.52754L2.23105%2011.3242L2.34385%2011.6436L2.04414%2011.4473L1.74766%2011.6436L1.86045%2011.3213L1.56075%2011.125H1.93457L2.04414%2010.8086ZM4.13565%2010.8086L4.24843%2011.1279H4.61904L4.31934%2011.3242L4.43535%2011.6436L4.13565%2011.4473L3.83593%2011.6436L3.95195%2011.3213L3.65224%2011.125H4.01963L4.13565%2010.8086ZM6.22392%2010.8086L6.33994%2011.1279H6.7041L6.41407%2011.3242L6.52685%2011.6436L6.22714%2011.4473L5.93066%2011.6436L6.04345%2011.3213L5.74375%2011.125H6.11435L6.22392%2010.8086ZM8.31543%2010.8086L8.42822%2011.1279H8.79882L8.49912%2011.3242L8.61513%2011.6436L8.31543%2011.4473L8.01572%2011.6436L8.13174%2011.3213L7.83203%2011.125H8.19941L8.31543%2010.8086ZM10.4037%2010.8086L10.5197%2011.1279H10.8871L10.5907%2011.3242L10.7034%2011.6436L10.4037%2011.4473L10.1072%2011.6436L10.22%2011.3213L9.92353%2011.125H10.2909L10.4037%2010.8086ZM12.4952%2010.8086L12.608%2011.1279H12.9786L12.6789%2011.3242L12.795%2011.6436L12.4952%2011.4473L12.1955%2011.6436L12.3115%2011.3213L12.0118%2011.125H12.3825L12.4952%2010.8086Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='flag_es'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M1%204H23V19H1V4Z'%20fill='%23C60B1E'/%3e%3cpath%20d='M1%208H23V15H1V8Z'%20fill='%23FFC400'/%3e%3cpath%20d='M4.9789%2010.6656L4.9539%2010.6625L4.92265%2010.6312L4.90077%2010.6187L4.88202%2010.5937C4.88202%2010.5937%204.86015%2010.5594%204.86952%2010.5312C4.8789%2010.5031%204.89765%2010.4937%204.91327%2010.4844C4.92854%2010.4781%204.9442%2010.4729%204.96015%2010.4687L4.9914%2010.4562L5.03202%2010.4469L5.04765%2010.4375C5.0539%2010.4375%205.06952%2010.4375%205.0789%2010.4312L5.11015%2010.425L5.16015%2010.4281H5.31015C5.32265%2010.4281%205.34765%2010.4375%205.3539%2010.4406C5.37451%2010.4485%205.39535%2010.4558%205.4164%2010.4625C5.43202%2010.4656%205.4664%2010.4719%205.48515%2010.4812C5.50077%2010.4906%205.51327%2010.5031%205.51952%2010.5125L5.53515%2010.5437V10.5781L5.51952%2010.6031L5.50077%2010.6344L5.47577%2010.6531C5.47577%2010.6531%205.46015%2010.6687%205.44452%2010.6656C5.43202%2010.6656%205.29452%2010.6406%205.20702%2010.6406C5.11952%2010.6406%204.9789%2010.6687%204.9789%2010.6687'%20fill='%23AD1519'/%3e%3cpath%20d='M4.9789%2010.6656L4.9539%2010.6625L4.92265%2010.6312L4.90077%2010.6187L4.88202%2010.5937C4.88202%2010.5937%204.86015%2010.5594%204.86952%2010.5312C4.8789%2010.5031%204.89765%2010.4937%204.91327%2010.4844C4.92854%2010.4781%204.9442%2010.4729%204.96015%2010.4687L4.9914%2010.4562L5.03202%2010.4469L5.04765%2010.4375C5.0539%2010.4375%205.06952%2010.4375%205.0789%2010.4312L5.11015%2010.425L5.16015%2010.4281H5.31015C5.32265%2010.4281%205.34765%2010.4375%205.3539%2010.4406C5.37451%2010.4485%205.39535%2010.4558%205.4164%2010.4625C5.43202%2010.4656%205.4664%2010.4719%205.48515%2010.4812C5.50077%2010.4906%205.51327%2010.5031%205.51952%2010.5125L5.53515%2010.5437V10.5781L5.51952%2010.6031L5.50077%2010.6344L5.47577%2010.6531C5.47577%2010.6531%205.46015%2010.6687%205.44452%2010.6656C5.43202%2010.6656%205.29452%2010.6406%205.20702%2010.6406C5.11952%2010.6406%204.9789%2010.6687%204.9789%2010.6687V10.6656Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.16602%2010.4687C5.16602%2010.4281%205.18477%2010.3969%205.20664%2010.3969C5.23164%2010.3969%205.25039%2010.4281%205.25039%2010.4719C5.25039%2010.5125%205.23164%2010.5469%205.20664%2010.5469C5.18164%2010.5469%205.16602%2010.5125%205.16602%2010.4687Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.16602%2010.4687C5.16602%2010.4281%205.18477%2010.3969%205.20664%2010.3969C5.23164%2010.3969%205.25039%2010.4281%205.25039%2010.4719C5.25039%2010.5125%205.23164%2010.5469%205.20664%2010.5469C5.18164%2010.5469%205.16602%2010.5125%205.16602%2010.4687Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.18848%2010.4687C5.18848%2010.4312%205.19785%2010.4031%205.21035%2010.4031C5.21973%2010.4031%205.2291%2010.4344%205.2291%2010.4687C5.2291%2010.5094%205.21973%2010.5375%205.21035%2010.5375C5.19785%2010.5375%205.1916%2010.5062%205.1916%2010.4687'%20fill='%23C8B100'/%3e%3cpath%20d='M5.18848%2010.4687C5.18848%2010.4312%205.19785%2010.4031%205.21035%2010.4031C5.21973%2010.4031%205.2291%2010.4344%205.2291%2010.4687C5.2291%2010.5094%205.21973%2010.5375%205.21035%2010.5375C5.19785%2010.5375%205.1916%2010.5062%205.1916%2010.4687H5.18848Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.18262%2010.3906C5.18262%2010.3781%205.19512%2010.3656%205.20762%2010.3656C5.22012%2010.3656%205.23887%2010.3781%205.23887%2010.3906C5.23887%2010.4062%205.22324%2010.4187%205.20762%2010.4187C5.19199%2010.4187%205.18262%2010.4062%205.18262%2010.3906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.22676%2010.3813V10.4H5.18301V10.3813H5.19863V10.3438H5.17676V10.325H5.19863V10.3094H5.21426V10.325H5.23301V10.3438H5.21426V10.3813H5.22676Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.22676%2010.3813V10.4H5.18301V10.3813H5.19863V10.3438H5.17676V10.325H5.19863V10.3094H5.21426V10.325H5.23301V10.3438H5.21426V10.3813H5.22676Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.24707%2010.3813V10.4H5.16895V10.3813H5.2002V10.3438H5.17832V10.325H5.2002V10.3094H5.21582V10.325H5.23457V10.3438H5.21582V10.3813H5.24707Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.24707%2010.3813V10.4H5.16895V10.3813H5.2002V10.3438H5.17832V10.325H5.2002V10.3094H5.21582V10.325H5.23457V10.3438H5.21582V10.3813H5.24707Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.21426%2010.3656C5.22676%2010.3687%205.23301%2010.3781%205.23301%2010.3906C5.23301%2010.4062%205.22051%2010.4187%205.20801%2010.4187C5.19551%2010.4187%205.17676%2010.4062%205.17676%2010.3906C5.17676%2010.3781%205.18613%2010.3687%205.19863%2010.3656'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20918%2010.6625H5.0623V10.6281L5.05293%2010.5906L5.04668%2010.5437C5.00605%2010.4906%204.96855%2010.4562%204.95605%2010.4656C4.95918%2010.4562%204.9623%2010.4469%204.97168%2010.4437C5.00605%2010.4219%205.08105%2010.475%205.13418%2010.5562L5.1498%2010.5781H5.26855L5.28105%2010.5562C5.3373%2010.4719%205.40918%2010.4219%205.44355%2010.4437C5.45293%2010.4469%205.45605%2010.4562%205.45918%2010.4656C5.44668%2010.4562%205.40918%2010.4906%205.36855%2010.5437L5.3623%2010.5906L5.35605%2010.6281L5.35293%2010.6625H5.20605'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20918%2010.6625H5.0623V10.6281L5.05293%2010.5906L5.04668%2010.5437C5.00605%2010.4906%204.96855%2010.4562%204.95605%2010.4656C4.95918%2010.4562%204.9623%2010.4469%204.97168%2010.4437C5.00605%2010.4219%205.08105%2010.475%205.13418%2010.5562L5.1498%2010.5781H5.26855L5.28105%2010.5562C5.3373%2010.4719%205.40918%2010.4219%205.44355%2010.4437C5.45293%2010.4469%205.45605%2010.4562%205.45918%2010.4656C5.44668%2010.4562%205.40918%2010.4906%205.36855%2010.5437L5.3623%2010.5906L5.35605%2010.6281L5.35293%2010.6625H5.20605H5.20918Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.45137%2010.4625C5.42637%2010.4469%205.36387%2010.4969%205.31074%2010.575M4.96387%2010.4625C4.99512%2010.4469%205.05762%2010.4969%205.10762%2010.575L4.96387%2010.4625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.99414%2010.7281L4.97852%2010.6969C5.12876%2010.6549%205.28765%2010.6549%205.43789%2010.6969L5.42227%2010.7219C5.41852%2010.73%205.41539%2010.7383%205.41289%2010.7469C5.34572%2010.7286%205.27624%2010.7201%205.20664%2010.7219C5.12539%2010.7219%205.04414%2010.7313%205.00352%2010.7469L4.99414%2010.7281Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.99414%2010.7281L4.97852%2010.6969C5.12876%2010.6549%205.28765%2010.6549%205.43789%2010.6969L5.42227%2010.7219C5.41852%2010.73%205.41539%2010.7383%205.41289%2010.7469C5.34572%2010.7286%205.27624%2010.7201%205.20664%2010.7219C5.12539%2010.7219%205.04414%2010.7313%205.00352%2010.7469L4.99414%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20664%2010.8031C5.28164%2010.8031%205.36289%2010.7906%205.39102%2010.7844C5.40977%2010.7781%205.42227%2010.7688%205.42227%2010.7594C5.42227%2010.7531%205.41602%2010.75%205.40977%2010.7469C5.36602%2010.7313%205.28477%2010.7219%205.20664%2010.7219C5.12852%2010.7219%205.05039%2010.7313%205.00664%2010.7469C5.00039%2010.7469%204.99727%2010.7531%204.99414%2010.7563C4.99414%2010.7688%205.00352%2010.7781%205.02539%2010.7844C5.05664%2010.7906%205.13477%2010.8031%205.20664%2010.8031Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20664%2010.8031C5.28164%2010.8031%205.36289%2010.7906%205.39102%2010.7844C5.40977%2010.7781%205.42227%2010.7688%205.42227%2010.7594C5.42227%2010.7531%205.41602%2010.75%205.40977%2010.7469C5.36602%2010.7313%205.28477%2010.7219%205.20664%2010.7219C5.12852%2010.7219%205.05039%2010.7313%205.00664%2010.7469C5.00039%2010.7469%204.99727%2010.7531%204.99414%2010.7563C4.99414%2010.7688%205.00352%2010.7781%205.02539%2010.7844C5.05664%2010.7906%205.13477%2010.8031%205.20664%2010.8031Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.44121%2010.6625L5.42559%2010.6469C5.42559%2010.6469%205.40684%2010.6563%205.38496%2010.6531C5.36621%2010.6531%205.35684%2010.6219%205.35684%2010.6219C5.35684%2010.6219%205.33496%2010.6438%205.31621%2010.6438C5.29434%2010.6438%205.28496%2010.625%205.28496%2010.625C5.28496%2010.625%205.26309%2010.6406%205.24434%2010.6375C5.22559%2010.6375%205.20684%2010.6125%205.20684%2010.6125C5.20684%2010.6125%205.18809%2010.6375%205.16934%2010.6375C5.15059%2010.6406%205.13809%2010.6219%205.13809%2010.6219C5.13809%2010.6219%205.12559%2010.6406%205.10371%2010.6438C5.08184%2010.6469%205.05996%2010.625%205.05996%2010.625C5.05996%2010.625%205.04434%2010.6469%205.02871%2010.6563C5.01309%2010.6563%204.99121%2010.6438%204.99121%2010.6438L4.98496%2010.6594L4.97559%2010.6625L4.98184%2010.6781C5.05523%2010.6587%205.13091%2010.6492%205.20684%2010.65C5.30059%2010.65%205.37871%2010.6625%205.43809%2010.6813L5.44434%2010.6625'%20fill='%23C8B100'/%3e%3cpath%20d='M5.44121%2010.6625L5.42559%2010.6469C5.42559%2010.6469%205.40684%2010.6563%205.38496%2010.6531C5.36621%2010.6531%205.35684%2010.6219%205.35684%2010.6219C5.35684%2010.6219%205.33496%2010.6438%205.31621%2010.6438C5.29434%2010.6438%205.28496%2010.625%205.28496%2010.625C5.28496%2010.625%205.26309%2010.6406%205.24434%2010.6375C5.22559%2010.6375%205.20684%2010.6125%205.20684%2010.6125C5.20684%2010.6125%205.18809%2010.6375%205.16934%2010.6375C5.15059%2010.6406%205.13809%2010.6219%205.13809%2010.6219C5.13809%2010.6219%205.12559%2010.6406%205.10371%2010.6438C5.08184%2010.6469%205.05996%2010.625%205.05996%2010.625C5.05996%2010.625%205.04434%2010.6469%205.02871%2010.6563C5.01309%2010.6563%204.99121%2010.6438%204.99121%2010.6438L4.98496%2010.6594L4.97559%2010.6625L4.98184%2010.6781C5.05523%2010.6587%205.13091%2010.6492%205.20684%2010.65C5.30059%2010.65%205.37871%2010.6625%205.43809%2010.6813L5.44434%2010.6625H5.44121Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.21074%2010.5844H5.21699C5.21615%2010.5885%205.21615%2010.5927%205.21699%2010.5969C5.21699%2010.6156%205.22949%2010.6281%205.24824%2010.6281C5.25514%2010.6284%205.26194%2010.6265%205.26759%2010.6225C5.27324%2010.6186%205.27743%2010.6128%205.27949%2010.6062L5.28574%2010.5969V10.6094C5.28887%2010.625%205.30449%2010.6344%205.32012%2010.6344C5.33887%2010.6344%205.35137%2010.6219%205.35137%2010.6031V10.6L5.36387%2010.5875L5.37012%2010.6031C5.36812%2010.607%205.36705%2010.6113%205.36699%2010.6156C5.36699%2010.6239%205.37028%2010.6319%205.37614%2010.6377C5.38201%2010.6436%205.38995%2010.6469%205.39824%2010.6469C5.41074%2010.6469%205.42012%2010.6406%205.42637%2010.6312L5.43262%2010.625V10.6344C5.43262%2010.6437%205.43574%2010.6531%205.44512%2010.6562C5.44512%2010.6562%205.45762%2010.6562%205.47637%2010.6437L5.49824%2010.6219V10.6344C5.49824%2010.6344%205.48262%2010.6594%205.46699%2010.6656C5.46074%2010.6719%205.45137%2010.6781%205.44199%2010.675C5.43262%2010.675%205.42324%2010.6656%205.42012%2010.6562C5.41387%2010.6625%205.40762%2010.6625%205.39824%2010.6625C5.37949%2010.6625%205.36074%2010.6531%205.35449%2010.6375C5.34512%2010.6469%205.33262%2010.6531%205.32012%2010.6531C5.31288%2010.6529%205.30578%2010.6511%205.29931%2010.6479C5.29283%2010.6446%205.28714%2010.64%205.28262%2010.6344C5.27396%2010.642%205.26292%2010.6464%205.25137%2010.6469C5.2436%2010.6471%205.23589%2010.6456%205.22884%2010.6423C5.22179%2010.639%205.21559%2010.6342%205.21074%2010.6281C5.20651%2010.6339%205.2011%2010.6386%205.19488%2010.6421C5.18866%2010.6456%205.18176%2010.6477%205.17466%2010.6483C5.16756%2010.6489%205.16041%2010.6479%205.1537%2010.6455C5.14699%2010.6431%205.14086%2010.6393%205.13574%2010.6344C5.13122%2010.64%205.12553%2010.6446%205.11905%2010.6479C5.11258%2010.6511%205.10548%2010.6529%205.09824%2010.6531C5.09174%2010.653%205.08533%2010.6516%205.07941%2010.6489C5.07349%2010.6462%205.0682%2010.6423%205.06387%2010.6375C5.05762%2010.6531%205.03887%2010.6625%205.02012%2010.6625C5.01387%2010.6625%205.00449%2010.6625%204.99824%2010.6562C4.99512%2010.6656%204.98574%2010.675%204.97637%2010.675C4.96699%2010.675%204.95762%2010.675%204.94824%2010.6687L4.91699%2010.6375L4.92012%2010.6219L4.94512%2010.6437C4.96074%2010.6562%204.97324%2010.6562%204.97324%2010.6562C4.98262%2010.6562%204.98574%2010.6437%204.98574%2010.6344V10.625L4.99199%2010.6312C4.99824%2010.6406%205.00762%2010.6469%205.02012%2010.6469C5.02841%2010.6469%205.03635%2010.6436%205.04221%2010.6377C5.04807%2010.6319%205.05137%2010.6239%205.05137%2010.6156C5.0523%2010.6115%205.0523%2010.6072%205.05137%2010.6031V10.5875L5.06387%2010.6V10.6031C5.06387%2010.6219%205.07949%2010.6344%205.09512%2010.6344C5.11387%2010.6344%205.12637%2010.625%205.12949%2010.6062V10.5969L5.13574%2010.6062C5.14199%2010.6187%205.15449%2010.6281%205.16699%2010.6281C5.18887%2010.6281%205.20137%2010.6156%205.20137%2010.5969C5.20184%2010.5938%205.20184%2010.5906%205.20137%2010.5875H5.21074'%20fill='%23C8B100'/%3e%3cpath%20d='M5.21074%2010.5844H5.21699C5.21615%2010.5885%205.21615%2010.5927%205.21699%2010.5969C5.21699%2010.6156%205.22949%2010.6281%205.24824%2010.6281C5.25514%2010.6284%205.26194%2010.6265%205.26759%2010.6225C5.27324%2010.6186%205.27743%2010.6128%205.27949%2010.6062L5.28574%2010.5969V10.6094C5.28887%2010.625%205.30449%2010.6344%205.32012%2010.6344C5.33887%2010.6344%205.35137%2010.6219%205.35137%2010.6031V10.6L5.36387%2010.5875L5.37012%2010.6031C5.36812%2010.607%205.36705%2010.6113%205.36699%2010.6156C5.36699%2010.6239%205.37028%2010.6319%205.37614%2010.6377C5.38201%2010.6436%205.38995%2010.6469%205.39824%2010.6469C5.41074%2010.6469%205.42012%2010.6406%205.42637%2010.6312L5.43262%2010.625V10.6344C5.43262%2010.6437%205.43574%2010.6531%205.44512%2010.6562C5.44512%2010.6562%205.45762%2010.6562%205.47637%2010.6437L5.49824%2010.6219V10.6344C5.49824%2010.6344%205.48262%2010.6594%205.46699%2010.6656C5.46074%2010.6719%205.45137%2010.6781%205.44199%2010.675C5.43262%2010.675%205.42324%2010.6656%205.42012%2010.6562C5.41387%2010.6625%205.40762%2010.6625%205.39824%2010.6625C5.37949%2010.6625%205.36074%2010.6531%205.35449%2010.6375C5.34512%2010.6469%205.33262%2010.6531%205.32012%2010.6531C5.31288%2010.6529%205.30578%2010.6511%205.29931%2010.6479C5.29283%2010.6446%205.28714%2010.64%205.28262%2010.6344C5.27396%2010.642%205.26292%2010.6464%205.25137%2010.6469C5.2436%2010.6471%205.23589%2010.6456%205.22884%2010.6423C5.22179%2010.639%205.21559%2010.6342%205.21074%2010.6281C5.20651%2010.6339%205.2011%2010.6386%205.19488%2010.6421C5.18866%2010.6456%205.18176%2010.6477%205.17466%2010.6483C5.16756%2010.6489%205.16041%2010.6479%205.1537%2010.6455C5.14699%2010.6431%205.14086%2010.6393%205.13574%2010.6344C5.13122%2010.64%205.12553%2010.6446%205.11905%2010.6479C5.11258%2010.6511%205.10548%2010.6529%205.09824%2010.6531C5.09174%2010.653%205.08533%2010.6516%205.07941%2010.6489C5.07349%2010.6462%205.0682%2010.6423%205.06387%2010.6375C5.05762%2010.6531%205.03887%2010.6625%205.02012%2010.6625C5.01387%2010.6625%205.00449%2010.6625%204.99824%2010.6562C4.99512%2010.6656%204.98574%2010.675%204.97637%2010.675C4.96699%2010.675%204.95762%2010.675%204.94824%2010.6687L4.91699%2010.6375L4.92012%2010.6219L4.94512%2010.6437C4.96074%2010.6562%204.97324%2010.6562%204.97324%2010.6562C4.98262%2010.6562%204.98574%2010.6437%204.98574%2010.6344V10.625L4.99199%2010.6312C4.99824%2010.6406%205.00762%2010.6469%205.02012%2010.6469C5.02841%2010.6469%205.03635%2010.6436%205.04221%2010.6377C5.04807%2010.6319%205.05137%2010.6239%205.05137%2010.6156C5.0523%2010.6115%205.0523%2010.6072%205.05137%2010.6031V10.5875L5.06387%2010.6V10.6031C5.06387%2010.6219%205.07949%2010.6344%205.09512%2010.6344C5.11387%2010.6344%205.12637%2010.625%205.12949%2010.6062V10.5969L5.13574%2010.6062C5.14199%2010.6187%205.15449%2010.6281%205.16699%2010.6281C5.18887%2010.6281%205.20137%2010.6156%205.20137%2010.5969C5.20184%2010.5938%205.20184%2010.5906%205.20137%2010.5875H5.21074V10.5844Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20723%2010.6656C5.1166%2010.6656%205.03535%2010.6781%204.9791%2010.6969L4.96973%2010.6906L4.97285%2010.6812C5.04912%2010.6599%205.12802%2010.6494%205.20723%2010.65C5.30098%2010.65%205.38535%2010.6625%205.44473%2010.6812C5.44473%2010.6812%205.45098%2010.6875%205.44785%2010.6906L5.43848%2010.6969C5.36319%2010.6759%205.28538%2010.6654%205.20723%2010.6656Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20723%2010.6656C5.1166%2010.6656%205.03535%2010.6781%204.9791%2010.6969L4.96973%2010.6906L4.97285%2010.6812C5.04912%2010.6599%205.12802%2010.6494%205.20723%2010.65C5.30098%2010.65%205.38535%2010.6625%205.44473%2010.6812C5.44473%2010.6812%205.45098%2010.6875%205.44785%2010.6906L5.43848%2010.6969C5.36319%2010.6759%205.28538%2010.6654%205.20723%2010.6656Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.11817%2010.7004C5.11817%2010.6907%205.12463%2010.6875%205.13432%2010.6875C5.13774%2010.6875%205.14103%2010.6889%205.14345%2010.6913C5.14587%2010.6937%205.14723%2010.697%205.14723%2010.7004C5.14723%2010.7069%205.14077%2010.7133%205.13432%2010.7133C5.13237%2010.7138%205.13034%2010.7139%205.12838%2010.7135C5.12642%2010.713%205.12458%2010.7122%205.12301%2010.7109C5.12301%2010.7109%205.12019%2010.7081%205.11935%2010.7062C5.11935%2010.7062%205.11811%2010.7024%205.11817%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M5.11817%2010.7004C5.11817%2010.6907%205.12463%2010.6875%205.13432%2010.6875C5.13774%2010.6875%205.14103%2010.6889%205.14345%2010.6913C5.14587%2010.6937%205.14723%2010.697%205.14723%2010.7004C5.14723%2010.7069%205.14077%2010.7133%205.13432%2010.7133C5.13237%2010.7138%205.13034%2010.7139%205.12838%2010.7135C5.12642%2010.713%205.12458%2010.7122%205.12301%2010.7109C5.12301%2010.7109%205.12019%2010.7081%205.11935%2010.7062C5.11935%2010.7062%205.11811%2010.7024%205.11817%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20957%2010.7031H5.17832C5.1752%2010.7031%205.16895%2010.7031%205.16895%2010.6938L5.17832%2010.6844H5.24082C5.24274%2010.685%205.24438%2010.6863%205.24551%2010.688C5.24664%2010.6897%205.24718%2010.6917%205.24707%2010.6938C5.24707%2010.6962%205.24608%2010.6986%205.24432%2010.7004C5.24256%2010.7021%205.24018%2010.7031%205.23769%2010.7031H5.20644'%20fill='%23AD1519'/%3e%3cpath%20d='M5.20957%2010.7031H5.17832C5.1752%2010.7031%205.16895%2010.7031%205.16895%2010.6938L5.17832%2010.6844H5.24082C5.24274%2010.685%205.24438%2010.6863%205.24551%2010.688C5.24664%2010.6897%205.24718%2010.6917%205.24707%2010.6938C5.24707%2010.6962%205.24608%2010.6986%205.24432%2010.7004C5.24256%2010.7021%205.24018%2010.7031%205.23769%2010.7031H5.20644'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.06154%2010.7156H5.03966C5.03654%2010.7156%205.03029%2010.7156%205.03029%2010.7094C5.03017%2010.7073%205.03072%2010.7053%205.03185%2010.7036C5.03185%2010.7036%205.03462%2010.7007%205.03654%2010.7L5.05841%2010.6969L5.08029%2010.6937C5.08654%2010.6937%205.08966%2010.6937%205.09279%2010.7L5.09322%2010.7045L5.09146%2010.7088L5.0879%2010.7116L5.08341%2010.7125H5.06154'%20fill='%23058E6E'/%3e%3cpath%20d='M5.06154%2010.7156H5.03966C5.03654%2010.7156%205.03029%2010.7156%205.03029%2010.7094C5.03017%2010.7073%205.03072%2010.7053%205.03185%2010.7036C5.03185%2010.7036%205.03462%2010.7007%205.03654%2010.7L5.05841%2010.6969L5.08029%2010.6937C5.08654%2010.6937%205.08966%2010.6937%205.09279%2010.7L5.09322%2010.7045L5.09146%2010.7088L5.0879%2010.7116L5.08341%2010.7125H5.06154'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.97852%2010.7281L4.98789%2010.7156H5.00977L4.99727%2010.7344L4.97852%2010.7281Z'%20fill='%23AD1519'/%3e%3cpath%20d='M4.97852%2010.7281L4.98789%2010.7156H5.00977L4.99727%2010.7344L4.97852%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.26855%2010.7004C5.26855%2010.6907%205.27501%2010.6875%205.28147%2010.6875C5.28341%2010.687%205.28545%2010.687%205.28741%2010.6874C5.28937%2010.6878%205.29278%2010.6899%205.29278%2010.6899C5.29434%2010.6912%205.29644%2010.6946%205.29644%2010.6946C5.29644%2010.6946%205.29768%2010.6984%205.29762%2010.7004C5.29768%2010.7024%205.29728%2010.7044%205.29644%2010.7063L5.29278%2010.7109C5.29121%2010.7122%205.28937%2010.7131%205.28741%2010.7135C5.28545%2010.7139%205.28341%2010.7139%205.28147%2010.7133C5.27805%2010.7133%205.27476%2010.712%205.27234%2010.7096C5.26992%2010.7071%205.26855%2010.7039%205.26855%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M5.26855%2010.7004C5.26855%2010.6907%205.27501%2010.6875%205.28147%2010.6875C5.28341%2010.687%205.28545%2010.687%205.28741%2010.6874C5.28937%2010.6878%205.29278%2010.6899%205.29278%2010.6899C5.29434%2010.6912%205.29644%2010.6946%205.29644%2010.6946C5.29644%2010.6946%205.29768%2010.6984%205.29762%2010.7004C5.29768%2010.7024%205.29728%2010.7044%205.29644%2010.7063L5.29278%2010.7109C5.29121%2010.7122%205.28937%2010.7131%205.28741%2010.7135C5.28545%2010.7139%205.28341%2010.7139%205.28147%2010.7133C5.27805%2010.7133%205.27476%2010.712%205.27234%2010.7096C5.26992%2010.7071%205.26855%2010.7039%205.26855%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.35352%2010.7156H5.37227L5.37612%2010.7163L5.37991%2010.7153L5.38297%2010.7129L5.38477%2010.7094L5.38405%2010.7058L5.38202%2010.7027L5.37898%2010.7007L5.37539%2010.7L5.35664%2010.6969L5.33477%2010.6937C5.32852%2010.6937%205.32539%2010.6937%205.32227%2010.7C5.32227%2010.7062%205.32539%2010.7094%205.33164%2010.7125H5.35352'%20fill='%23058E6E'/%3e%3cpath%20d='M5.35352%2010.7156H5.37227L5.37612%2010.7163L5.37991%2010.7153L5.38297%2010.7129L5.38477%2010.7094L5.38405%2010.7058L5.38202%2010.7027L5.37898%2010.7007L5.37539%2010.7L5.35664%2010.6969L5.33477%2010.6937C5.32852%2010.6937%205.32539%2010.6937%205.32227%2010.7C5.32227%2010.7062%205.32539%2010.7094%205.33164%2010.7125H5.35352'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.43848%2010.7313L5.4291%2010.7156H5.40723L5.4166%2010.7344L5.43535%2010.7313'%20fill='%23AD1519'/%3e%3cpath%20d='M5.43848%2010.7313L5.4291%2010.7156H5.40723L5.4166%2010.7344L5.43535%2010.7313'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20703%2010.7844C5.144%2010.7857%205.08105%2010.7794%205.01953%2010.7656C5.14375%2010.7353%205.27344%2010.7353%205.39766%2010.7656C5.34766%2010.7781%205.28203%2010.7844%205.21016%2010.7844'%20fill='%23AD1519'/%3e%3cpath%20d='M5.20703%2010.7844C5.144%2010.7857%205.08105%2010.7794%205.01953%2010.7656C5.14375%2010.7353%205.27344%2010.7353%205.39766%2010.7656C5.34766%2010.7781%205.28203%2010.7844%205.21016%2010.7844H5.20703Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.43848%2010.625L5.43535%2010.6156C5.4291%2010.6156%205.42598%2010.6156%205.42285%2010.6219C5.42285%2010.6281%205.42285%2010.6344%205.4291%2010.6344C5.4291%2010.6344%205.43535%2010.6344%205.43848%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.43848%2010.625L5.43535%2010.6156C5.4291%2010.6156%205.42598%2010.6156%205.42285%2010.6219C5.42285%2010.6281%205.42285%2010.6344%205.4291%2010.6344C5.4291%2010.6344%205.43535%2010.6344%205.43848%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.29124%2010.6004C5.29124%2010.594%205.29124%2010.5875%205.28478%2010.5875C5.28478%2010.5875%205.27832%2010.5907%205.27832%2010.5972C5.27832%2010.6036%205.27832%2010.6101%205.28478%2010.6101L5.29447%2010.6004'%20fill='%23C8B100'/%3e%3cpath%20d='M5.29124%2010.6004C5.29124%2010.594%205.29124%2010.5875%205.28478%2010.5875C5.28478%2010.5875%205.27832%2010.5907%205.27832%2010.5972C5.27832%2010.6036%205.27832%2010.6101%205.28478%2010.6101L5.29447%2010.6004H5.29124Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.125%2010.6004L5.12823%2010.5875C5.13469%2010.5875%205.13792%2010.5907%205.13792%2010.5972C5.13792%2010.6036%205.13792%2010.6101%205.13146%2010.6101L5.125%2010.6004Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.125%2010.6004L5.12823%2010.5875C5.13469%2010.5875%205.13792%2010.5907%205.13792%2010.5972C5.13792%2010.6036%205.13792%2010.6101%205.13146%2010.6101L5.125%2010.6004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.97852%2010.625L4.98164%2010.6156C4.98789%2010.6156%204.99102%2010.6156%204.99414%2010.6219C4.99414%2010.6281%204.99414%2010.6344%204.98789%2010.6344C4.98789%2010.6344%204.98164%2010.6344%204.97852%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.97852%2010.625L4.98164%2010.6156C4.98789%2010.6156%204.99102%2010.6156%204.99414%2010.6219C4.99414%2010.6281%204.99414%2010.6344%204.98789%2010.6344C4.98789%2010.6344%204.98164%2010.6344%204.97852%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.20762%2010.5156L5.18262%2010.5313L5.20137%2010.5719L5.20762%2010.575L5.21387%2010.5719L5.23574%2010.5313L5.20762%2010.5156Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.20762%2010.5156L5.18262%2010.5313L5.20137%2010.5719L5.20762%2010.575L5.21387%2010.5719L5.23574%2010.5313L5.20762%2010.5156Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.15137%2010.5781L5.16387%2010.5938L5.20449%2010.5813L5.20762%2010.575L5.20449%2010.5688L5.16387%2010.5594L5.15137%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.15137%2010.5781L5.16387%2010.5938L5.20449%2010.5813L5.20762%2010.575L5.20449%2010.5688L5.16387%2010.5594L5.15137%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.2623%2010.5781L5.25293%2010.5938L5.2123%2010.5813L5.20605%2010.575L5.2123%2010.5688L5.25293%2010.5594L5.2623%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.2623%2010.5781L5.25293%2010.5938L5.2123%2010.5813L5.20605%2010.575L5.2123%2010.5688L5.25293%2010.5594L5.2623%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.04141%2010.5312L5.01953%2010.5531L5.04766%2010.5844L5.05391%2010.5875L5.05703%2010.5844L5.06641%2010.5437L5.04141%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M5.04141%2010.5312L5.01953%2010.5531L5.04766%2010.5844L5.05391%2010.5875L5.05703%2010.5844L5.06641%2010.5437L5.04141%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.00117%2010.6L5.01367%2010.6156L5.05117%2010.5969V10.5906L5.04805%2010.5844L5.00742%2010.5812L4.99805%2010.6'%20fill='%23C8B100'/%3e%3cpath%20d='M5.00117%2010.6L5.01367%2010.6156L5.05117%2010.5969V10.5906L5.04805%2010.5844L5.00742%2010.5812L4.99805%2010.6'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.11074%2010.5781L5.10137%2010.5969H5.06387L5.05762%2010.5906L5.06074%2010.5813L5.09824%2010.5625L5.11387%2010.5781'%20fill='%23C8B100'/%3e%3cpath%20d='M5.11074%2010.5781L5.10137%2010.5969H5.06387L5.05762%2010.5906L5.06074%2010.5813L5.09824%2010.5625L5.11387%2010.5781'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.95625%2010.6062V10.625L4.9125%2010.6312L4.90625%2010.6281V10.6219L4.9375%2010.5938L4.95625%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95625%2010.6062V10.625L4.9125%2010.6312L4.90625%2010.6281V10.6219L4.9375%2010.5938L4.95625%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.03711%2010.5906C5.03711%2010.5812%205.04336%2010.575%205.05273%2010.575C5.06211%2010.575%205.06836%2010.5812%205.06836%2010.5906C5.06763%2010.5942%205.06567%2010.5974%205.06281%2010.5997C5.05996%2010.602%205.05639%2010.6032%205.05273%2010.6031C5.04908%2010.6032%205.04551%2010.602%205.04266%2010.5997C5.0398%2010.5974%205.03784%2010.5942%205.03711%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.03711%2010.5906C5.03711%2010.5812%205.04336%2010.575%205.05273%2010.575C5.06211%2010.575%205.06836%2010.5812%205.06836%2010.5906C5.06763%2010.5942%205.06567%2010.5974%205.06281%2010.5997C5.05996%2010.602%205.05639%2010.6032%205.05273%2010.6031C5.04908%2010.6032%205.04551%2010.602%205.04266%2010.5997C5.0398%2010.5974%205.03784%2010.5942%205.03711%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.37559%2010.5312L5.39746%2010.5531L5.36934%2010.5844L5.36309%2010.5875L5.35996%2010.5844L5.35059%2010.5437L5.37559%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M5.37559%2010.5312L5.39746%2010.5531L5.36934%2010.5844L5.36309%2010.5875L5.35996%2010.5844L5.35059%2010.5437L5.37559%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.41836%2010.6L5.40273%2010.6156L5.36523%2010.5969V10.5906L5.36836%2010.5844L5.40898%2010.5812L5.41836%2010.6Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.41836%2010.6L5.40273%2010.6156L5.36523%2010.5969V10.5906L5.36836%2010.5844L5.40898%2010.5812L5.41836%2010.6Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.30664%2010.5781L5.31602%2010.5969H5.35664L5.36289%2010.5906L5.35977%2010.5813L5.32227%2010.5625L5.30664%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.30664%2010.5781L5.31602%2010.5969H5.35664L5.36289%2010.5906L5.35977%2010.5813L5.32227%2010.5625L5.30664%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.45312%2010.6062L5.45625%2010.625L5.49687%2010.6312L5.50313%2010.6281V10.6219L5.47188%2010.5938L5.45312%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.45312%2010.6062L5.45625%2010.625L5.49687%2010.6312L5.50313%2010.6281V10.6219L5.47188%2010.5938L5.45312%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.19434%2010.5754C5.19494%2010.5722%205.19649%2010.5693%205.1988%2010.567C5.2011%2010.5647%205.20405%2010.5631%205.20726%2010.5625C5.21694%2010.5625%205.2234%2010.569%205.2234%2010.5754C5.2234%2010.5797%205.2217%2010.5838%205.21867%2010.5868C5.21564%2010.5899%205.21154%2010.5916%205.20726%2010.5916C5.20355%2010.5908%205.20023%2010.5888%205.19787%2010.5858C5.19551%2010.5829%205.19426%2010.5792%205.19434%2010.5754Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.19434%2010.5754C5.19494%2010.5722%205.19649%2010.5693%205.1988%2010.567C5.2011%2010.5647%205.20405%2010.5631%205.20726%2010.5625C5.21694%2010.5625%205.2234%2010.569%205.2234%2010.5754C5.2234%2010.5797%205.2217%2010.5838%205.21867%2010.5868C5.21564%2010.5899%205.21154%2010.5916%205.20726%2010.5916C5.20355%2010.5908%205.20023%2010.5888%205.19787%2010.5858C5.19551%2010.5829%205.19426%2010.5792%205.19434%2010.5754Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.34668%2010.5906C5.34668%2010.5812%205.35605%2010.575%205.3623%2010.575C5.36645%2010.575%205.37042%2010.5766%205.37335%2010.5796C5.37628%2010.5825%205.37793%2010.5865%205.37793%2010.5906C5.3772%2010.5942%205.37524%2010.5974%205.37238%2010.5997C5.36953%2010.602%205.36596%2010.6032%205.3623%2010.6031C5.35865%2010.6032%205.35508%2010.602%205.35223%2010.5997C5.34937%2010.5974%205.34741%2010.5942%205.34668%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.34668%2010.5906C5.34668%2010.5812%205.35605%2010.575%205.3623%2010.575C5.36645%2010.575%205.37042%2010.5766%205.37335%2010.5796C5.37628%2010.5825%205.37793%2010.5865%205.37793%2010.5906C5.3772%2010.5942%205.37524%2010.5974%205.37238%2010.5997C5.36953%2010.602%205.36596%2010.6032%205.3623%2010.6031C5.35865%2010.6032%205.35508%2010.602%205.35223%2010.5997C5.34937%2010.5974%205.34741%2010.5942%205.34668%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.90098%2010.6312L4.88223%2010.6094C4.87598%2010.6031%204.86035%2010.6%204.86035%2010.6C4.86035%2010.5969%204.86973%2010.5906%204.8791%2010.5906C4.88153%2010.5906%204.88392%2010.5912%204.88609%2010.5923C4.88826%2010.5934%204.89015%2010.5949%204.8916%2010.5969V10.5906C4.8916%2010.5906%204.90098%2010.5906%204.9041%2010.6V10.6312'%20fill='%23C8B100'/%3e%3cpath%20d='M4.90098%2010.6312L4.88223%2010.6094C4.87598%2010.6031%204.86035%2010.6%204.86035%2010.6C4.86035%2010.5969%204.86973%2010.5906%204.8791%2010.5906C4.88153%2010.5906%204.88392%2010.5912%204.88609%2010.5923C4.88826%2010.5934%204.89015%2010.5949%204.8916%2010.5969V10.5906C4.8916%2010.5906%204.90098%2010.5906%204.9041%2010.6V10.6312H4.90098Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.90068%2010.6252C4.90391%2010.6187%204.9136%2010.6187%204.91683%2010.6252C4.92328%2010.6284%204.92651%2010.6348%204.92328%2010.6413L4.90714%2010.6381C4.90068%2010.6348%204.89745%2010.6252%204.90068%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M4.90068%2010.6252C4.90391%2010.6187%204.9136%2010.6187%204.91683%2010.6252C4.92328%2010.6284%204.92651%2010.6348%204.92328%2010.6413L4.90714%2010.6381C4.90068%2010.6348%204.89745%2010.6252%204.90068%2010.6219V10.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.50898%2010.6312L5.52773%2010.6094C5.53398%2010.6031%205.54961%2010.6%205.54961%2010.6C5.54961%2010.5969%205.54023%2010.5906%205.53086%2010.5906C5.52604%2010.591%205.52157%2010.5933%205.51836%2010.5969V10.5906C5.51836%2010.5906%205.50898%2010.5906%205.50586%2010.6V10.6219L5.50898%2010.6312Z'%20fill='%23C8B100'/%3e%3cpath%20d='M5.50898%2010.6312L5.52773%2010.6094C5.53398%2010.6031%205.54961%2010.6%205.54961%2010.6C5.54961%2010.5969%205.54023%2010.5906%205.53086%2010.5906C5.52604%2010.591%205.52157%2010.5933%205.51836%2010.5969V10.5906C5.51836%2010.5906%205.50898%2010.5906%205.50586%2010.6V10.6219L5.50898%2010.6312Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.50978%2010.6252C5.50978%2010.6187%205.50009%2010.6187%205.49363%2010.6252C5.48717%2010.6284%205.48717%2010.6348%205.4904%2010.6413L5.50655%2010.6381C5.51301%2010.6348%205.51301%2010.6252%205.50978%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M5.50978%2010.6252C5.50978%2010.6187%205.50009%2010.6187%205.49363%2010.6252C5.48717%2010.6284%205.48717%2010.6348%205.4904%2010.6413L5.50655%2010.6381C5.51301%2010.6348%205.51301%2010.6252%205.50978%2010.6219V10.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M4.87598%2010.9688H5.54473V10.7969H4.87598V10.9719V10.9688Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.87598%2010.9688H5.54473V10.7969H4.87598V10.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.94238%2011.0875C4.94651%2011.0867%204.95076%2011.0867%204.95488%2011.0875H5.47051C5.46216%2011.0851%205.45473%2011.0802%205.44917%2011.0735C5.4436%2011.0668%205.44015%2011.0586%205.43926%2011.05C5.43926%2011.0313%205.45488%2011.0156%205.47051%2011.0094C5.46636%2011.0099%205.46216%2011.0099%205.45801%2011.0094H4.95801C4.95284%2011.0103%204.94755%2011.0103%204.94238%2011.0094C4.96113%2011.0156%204.97363%2011.0313%204.97363%2011.05C4.97319%2011.0588%204.9699%2011.0672%204.96427%2011.074C4.95863%2011.0807%204.95095%2011.0855%204.94238%2011.0875Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.94238%2011.0875C4.94651%2011.0867%204.95076%2011.0867%204.95488%2011.0875H5.47051C5.46216%2011.0851%205.45473%2011.0802%205.44917%2011.0735C5.4436%2011.0668%205.44015%2011.0586%205.43926%2011.05C5.43926%2011.0313%205.45488%2011.0156%205.47051%2011.0094C5.46636%2011.0099%205.46216%2011.0099%205.45801%2011.0094H4.95801C4.95284%2011.0103%204.94755%2011.0103%204.94238%2011.0094C4.96113%2011.0156%204.97363%2011.0313%204.97363%2011.05C4.97319%2011.0588%204.9699%2011.0672%204.96427%2011.074C4.95863%2011.0807%204.95095%2011.0855%204.94238%2011.0875Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.95703%2011.0875H5.45703C5.47578%2011.0875%205.48828%2011.0969%205.48828%2011.1094C5.48828%2011.1219%205.47578%2011.1344%205.45703%2011.1344H4.95703C4.94141%2011.1344%204.92578%2011.1219%204.92578%2011.1094C4.92578%2011.0969%204.94141%2011.0844%204.95703%2011.0844'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95703%2011.0875H5.45703C5.47578%2011.0875%205.48828%2011.0969%205.48828%2011.1094C5.48828%2011.1219%205.47578%2011.1344%205.45703%2011.1344H4.95703C4.94141%2011.1344%204.92578%2011.1219%204.92578%2011.1094C4.92578%2011.0969%204.94141%2011.0844%204.95703%2011.0844V11.0875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.95703%2010.9688H5.45703C5.47578%2010.9688%205.48828%2010.9812%205.48828%2010.9906C5.48828%2011.0031%205.47578%2011.0094%205.45703%2011.0094H4.95703C4.94141%2011.0094%204.92578%2011.0031%204.92578%2010.9906C4.92578%2010.9812%204.94141%2010.9719%204.95703%2010.9719'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95703%2010.9688H5.45703C5.47578%2010.9688%205.48828%2010.9812%205.48828%2010.9906C5.48828%2011.0031%205.47578%2011.0094%205.45703%2011.0094H4.95703C4.94141%2011.0094%204.92578%2011.0031%204.92578%2010.9906C4.92578%2010.9812%204.94141%2010.9719%204.95703%2010.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2013.9188C5.63184%2013.9188%205.58809%2013.9094%205.55996%2013.8938C5.52287%2013.8763%205.4822%2013.8677%205.44121%2013.8688C5.39746%2013.8688%205.35684%2013.8781%205.32559%2013.8938C5.28854%2013.9114%205.24784%2013.9199%205.20684%2013.9188C5.15996%2013.9188%205.11934%2013.9094%205.09121%2013.8938C5.05507%2013.8767%205.01553%2013.8682%204.97559%2013.8688C4.9356%2013.8677%204.89595%2013.8763%204.85996%2013.8938C4.82291%2013.9114%204.78221%2013.9199%204.74121%2013.9188V13.9938C4.78809%2013.9938%204.82871%2013.9813%204.85996%2013.9656C4.89603%2013.9484%204.93562%2013.9398%204.97559%2013.9406C5.01934%2013.9406%205.05996%2013.95%205.09121%2013.9656C5.12246%2013.9813%205.15996%2013.9938%205.20684%2013.9938C5.24808%2013.9938%205.28876%2013.9842%205.32559%2013.9656C5.35684%2013.95%205.39746%2013.9406%205.44121%2013.9406C5.48809%2013.9406%205.52871%2013.95%205.55996%2013.9656C5.59121%2013.9813%205.62871%2013.9938%205.67559%2013.9938V13.9188Z'%20fill='%23005BBF'/%3e%3cpath%20d='M5.67559%2013.9188C5.63184%2013.9188%205.58809%2013.9094%205.55996%2013.8938C5.52287%2013.8763%205.4822%2013.8677%205.44121%2013.8688C5.39746%2013.8688%205.35684%2013.8781%205.32559%2013.8938C5.28854%2013.9114%205.24784%2013.9199%205.20684%2013.9188C5.15996%2013.9188%205.11934%2013.9094%205.09121%2013.8938C5.05507%2013.8767%205.01553%2013.8682%204.97559%2013.8688C4.9356%2013.8677%204.89595%2013.8763%204.85996%2013.8938C4.82291%2013.9114%204.78221%2013.9199%204.74121%2013.9188V13.9938C4.78809%2013.9938%204.82871%2013.9813%204.85996%2013.9656C4.89603%2013.9484%204.93562%2013.9398%204.97559%2013.9406C5.01934%2013.9406%205.05996%2013.95%205.09121%2013.9656C5.12246%2013.9813%205.15996%2013.9938%205.20684%2013.9938C5.24808%2013.9938%205.28876%2013.9842%205.32559%2013.9656C5.35684%2013.95%205.39746%2013.9406%205.44121%2013.9406C5.48809%2013.9406%205.52871%2013.95%205.55996%2013.9656C5.59121%2013.9813%205.62871%2013.9938%205.67559%2013.9938V13.9188Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2013.9938C5.63534%2013.9938%205.59568%2013.9842%205.55996%2013.9656C5.52291%2013.948%205.48221%2013.9395%205.44121%2013.9406C5.39746%2013.9406%205.35684%2013.95%205.32559%2013.9656C5.29434%2013.9813%205.25371%2013.9938%205.20684%2013.9938C5.15996%2013.9938%205.11934%2013.9813%205.09121%2013.9656C5.05507%2013.9486%205.01553%2013.9401%204.97559%2013.9406C4.93562%2013.9398%204.89603%2013.9484%204.85996%2013.9656C4.82871%2013.9813%204.78809%2013.9938%204.74121%2013.9938V14.0656C4.78809%2014.0656%204.82871%2014.0531%204.85996%2014.0375C4.89625%2014.0212%204.93586%2014.0137%204.97559%2014.0156C5.01934%2014.0156%205.05996%2014.0219%205.09121%2014.0375C5.12754%2014.0559%205.16768%2014.0655%205.2084%2014.0655C5.24912%2014.0655%205.28926%2014.0559%205.32559%2014.0375C5.36229%2014.0201%205.4025%2014.0113%205.44314%2014.0118C5.48377%2014.0124%205.52374%2014.0222%205.55996%2014.0406C5.59599%2014.058%205.63561%2014.0665%205.67559%2014.0656V13.9938Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M5.67559%2013.9938C5.63534%2013.9938%205.59568%2013.9842%205.55996%2013.9656C5.52291%2013.948%205.48221%2013.9395%205.44121%2013.9406C5.39746%2013.9406%205.35684%2013.95%205.32559%2013.9656C5.29434%2013.9813%205.25371%2013.9938%205.20684%2013.9938C5.15996%2013.9938%205.11934%2013.9813%205.09121%2013.9656C5.05507%2013.9486%205.01553%2013.9401%204.97559%2013.9406C4.93562%2013.9398%204.89603%2013.9484%204.85996%2013.9656C4.82871%2013.9813%204.78809%2013.9938%204.74121%2013.9938V14.0656C4.78809%2014.0656%204.82871%2014.0531%204.85996%2014.0375C4.89625%2014.0212%204.93586%2014.0137%204.97559%2014.0156C5.01934%2014.0156%205.05996%2014.0219%205.09121%2014.0375C5.12754%2014.0559%205.16768%2014.0655%205.2084%2014.0655C5.24912%2014.0655%205.28926%2014.0559%205.32559%2014.0375C5.36229%2014.0201%205.4025%2014.0113%205.44314%2014.0118C5.48377%2014.0124%205.52374%2014.0222%205.55996%2014.0406C5.59599%2014.058%205.63561%2014.0665%205.67559%2014.0656V13.9938Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2014.0625C5.63548%2014.0649%205.59548%2014.0563%205.55996%2014.0375C5.52265%2014.021%205.48196%2014.0135%205.44121%2014.0156C5.39746%2014.0156%205.35684%2014.0219%205.32559%2014.0375C5.29434%2014.0563%205.25371%2014.0656%205.20684%2014.0656C5.15996%2014.0656%205.11934%2014.0531%205.09121%2014.0375C5.05507%2014.0205%205.01553%2014.0119%204.97559%2014.0125C4.9356%2014.0115%204.89595%2014.02%204.85996%2014.0375C4.82871%2014.0531%204.78809%2014.0656%204.74121%2014.0656V14.1375C4.78809%2014.1375%204.82871%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12641%2014.1293%205.16644%2014.139%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44121%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.62871%2014.1375%205.67559%2014.1375V14.0625Z'%20fill='%23005BBF'/%3e%3cpath%20d='M5.67559%2014.0625C5.63548%2014.0649%205.59548%2014.0563%205.55996%2014.0375C5.52265%2014.021%205.48196%2014.0135%205.44121%2014.0156C5.39746%2014.0156%205.35684%2014.0219%205.32559%2014.0375C5.29434%2014.0563%205.25371%2014.0656%205.20684%2014.0656C5.15996%2014.0656%205.11934%2014.0531%205.09121%2014.0375C5.05507%2014.0205%205.01553%2014.0119%204.97559%2014.0125C4.9356%2014.0115%204.89595%2014.02%204.85996%2014.0375C4.82871%2014.0531%204.78809%2014.0656%204.74121%2014.0656V14.1375C4.78809%2014.1375%204.82871%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12641%2014.1293%205.16644%2014.139%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44121%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.62871%2014.1375%205.67559%2014.1375V14.0625Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2014.2094C5.6356%2014.2104%205.59595%2014.2018%205.55996%2014.1844C5.52871%2014.1688%205.48809%2014.1594%205.44434%2014.1594C5.40334%2014.1583%205.36267%2014.1669%205.32559%2014.1844C5.29434%2014.2%205.25371%2014.2094%205.20684%2014.2094C5.16644%2014.2109%205.12641%2014.2011%205.09121%2014.1813C5.05482%2014.1653%205.01529%2014.1578%204.97559%2014.1594C4.93184%2014.1594%204.89121%2014.1688%204.85996%2014.1844C4.82871%2014.2%204.78809%2014.2094%204.74121%2014.2094V14.1375C4.78247%2014.1377%204.82318%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12693%2014.1279%205.16659%2014.1376%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44434%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.63184%2014.1375%205.67559%2014.1375V14.2094Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M5.67559%2014.2094C5.6356%2014.2104%205.59595%2014.2018%205.55996%2014.1844C5.52871%2014.1688%205.48809%2014.1594%205.44434%2014.1594C5.40334%2014.1583%205.36267%2014.1669%205.32559%2014.1844C5.29434%2014.2%205.25371%2014.2094%205.20684%2014.2094C5.16644%2014.2109%205.12641%2014.2011%205.09121%2014.1813C5.05482%2014.1653%205.01529%2014.1578%204.97559%2014.1594C4.93184%2014.1594%204.89121%2014.1688%204.85996%2014.1844C4.82871%2014.2%204.78809%2014.2094%204.74121%2014.2094V14.1375C4.78247%2014.1377%204.82318%2014.1281%204.85996%2014.1094C4.93433%2014.0804%205.01685%2014.0804%205.09121%2014.1094C5.12693%2014.1279%205.16659%2014.1376%205.20684%2014.1375C5.24783%2014.1386%205.2885%2014.13%205.32559%2014.1125C5.35684%2014.0969%205.39746%2014.0875%205.44434%2014.0875C5.48809%2014.0875%205.52871%2014.0969%205.55996%2014.1125C5.59121%2014.1281%205.63184%2014.1375%205.67559%2014.1375V14.2094Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.67559%2014.2813C5.63561%2014.2822%205.59599%2014.2736%205.55996%2014.2563C5.52871%2014.2406%205.48809%2014.2313%205.44434%2014.2313C5.40334%2014.2302%205.36267%2014.2388%205.32559%2014.2563C5.29434%2014.2719%205.25371%2014.2813%205.20684%2014.2813C5.16644%2014.2827%205.12641%2014.273%205.09121%2014.2531C5.05482%2014.2372%205.01529%2014.2297%204.97559%2014.2313C4.93184%2014.2313%204.89121%2014.2406%204.85996%2014.2563C4.82871%2014.2719%204.78809%2014.2813%204.74121%2014.2813V14.2094C4.78221%2014.2106%204.82291%2014.202%204.85996%2014.1844C4.89121%2014.1688%204.93184%2014.1594%204.97559%2014.1594C5.01934%2014.1594%205.05996%2014.1688%205.09121%2014.1813C5.12761%2014.1994%205.16772%2014.2089%205.2084%2014.2089C5.24907%2014.2089%205.28919%2014.1994%205.32559%2014.1813C5.35684%2014.1688%205.39746%2014.1594%205.44434%2014.1594C5.48809%2014.1594%205.52871%2014.1688%205.55996%2014.1844C5.59121%2014.2%205.62871%2014.2094%205.67559%2014.2094V14.2813Z'%20fill='%23005BBF'/%3e%3cpath%20d='M5.67559%2014.2813C5.63561%2014.2822%205.59599%2014.2736%205.55996%2014.2563C5.52871%2014.2406%205.48809%2014.2313%205.44434%2014.2313C5.40334%2014.2302%205.36267%2014.2388%205.32559%2014.2563C5.29434%2014.2719%205.25371%2014.2813%205.20684%2014.2813C5.16644%2014.2827%205.12641%2014.273%205.09121%2014.2531C5.05482%2014.2372%205.01529%2014.2297%204.97559%2014.2313C4.93184%2014.2313%204.89121%2014.2406%204.85996%2014.2563C4.82871%2014.2719%204.78809%2014.2813%204.74121%2014.2813V14.2094C4.78221%2014.2106%204.82291%2014.202%204.85996%2014.1844C4.89121%2014.1688%204.93184%2014.1594%204.97559%2014.1594C5.01934%2014.1594%205.05996%2014.1688%205.09121%2014.1813C5.12761%2014.1994%205.16772%2014.2089%205.2084%2014.2089C5.24907%2014.2089%205.28919%2014.1994%205.32559%2014.1813C5.35684%2014.1688%205.39746%2014.1594%205.44434%2014.1594C5.48809%2014.1594%205.52871%2014.1688%205.55996%2014.1844C5.59121%2014.2%205.62871%2014.2094%205.67559%2014.2094V14.2813Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.94434%2013.625L4.95059%2013.6406C4.95059%2013.6875%204.90996%2013.7219%204.86621%2013.7219H5.55371C5.53186%2013.7219%205.51086%2013.7134%205.49513%2013.6983C5.47939%2013.6831%205.47015%2013.6625%205.46934%2013.6406V13.625C5.46622%2013.6254%205.46308%2013.6254%205.45996%2013.625H4.95996C4.95479%2013.6259%204.9495%2013.6259%204.94434%2013.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.94434%2013.625L4.95059%2013.6406C4.95059%2013.6875%204.90996%2013.7219%204.86621%2013.7219H5.55371C5.53186%2013.7219%205.51086%2013.7134%205.49513%2013.6983C5.47939%2013.6831%205.47015%2013.6625%205.46934%2013.6406V13.625C5.46622%2013.6254%205.46308%2013.6254%205.45996%2013.625H4.95996C4.95479%2013.6259%204.9495%2013.6259%204.94434%2013.625Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.95703%2013.5781H5.45703C5.47578%2013.5781%205.48828%2013.5875%205.48828%2013.6031C5.48828%2013.6156%205.47578%2013.625%205.45703%2013.625H4.95703C4.94141%2013.625%204.92578%2013.6156%204.92578%2013.6C4.92578%2013.5875%204.94141%2013.5781%204.95703%2013.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.95703%2013.5781H5.45703C5.47578%2013.5781%205.48828%2013.5875%205.48828%2013.6031C5.48828%2013.6156%205.47578%2013.625%205.45703%2013.625H4.95703C4.94141%2013.625%204.92578%2013.6156%204.92578%2013.6C4.92578%2013.5875%204.94141%2013.5781%204.95703%2013.5781Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.86621%2013.8969H5.55371V13.7188H4.86621V13.8938V13.8969Z'%20fill='%23C8B100'/%3e%3cpath%20d='M4.86621%2013.8969H5.55371V13.7188H4.86621V13.8938V13.8969Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.8135%2012.9594C4.74475%2012.9969%204.69787%2013.0375%204.70725%2013.0594C4.70725%2013.0781%204.73225%2013.0906%204.7635%2013.1094C4.81037%2013.1437%204.84162%2013.2031%204.81662%2013.2344C4.83779%2013.2181%204.85488%2013.1972%204.86654%2013.1732C4.87821%2013.1492%204.88412%2013.1228%204.88382%2013.0961C4.88351%2013.0694%204.877%2013.0432%204.8648%2013.0194C4.85259%2012.9957%204.83503%2012.9751%204.8135%2012.9594Z'%20fill='%23AD1519'/%3e%3cpath%20d='M4.8135%2012.9594C4.74475%2012.9969%204.69787%2013.0375%204.70725%2013.0594C4.70725%2013.0781%204.73225%2013.0906%204.7635%2013.1094C4.81037%2013.1437%204.84162%2013.2031%204.81662%2013.2344C4.83779%2013.2181%204.85488%2013.1972%204.86654%2013.1732C4.87821%2013.1492%204.88412%2013.1228%204.88382%2013.0961C4.88351%2013.0694%204.877%2013.0432%204.8648%2013.0194C4.85259%2012.9957%204.83503%2012.9751%204.8135%2012.9594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.96387%2013.55H5.45137V11.1562H4.96387V13.5469V13.55Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M5.31387%2011.1625V13.5469M5.36699%2011.1625V13.5469M4.96387%2013.5469H5.45137V11.1594H4.96387V13.55V13.5469Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.94965%2012.0531C5.71539%2011.9746%205.46574%2011.9531%205.22152%2011.9906C4.92777%2012.0406%204.7059%2012.1562%204.72465%2012.2531V12.2594L4.61527%2012.0031C4.59652%2011.9%204.84027%2011.7688%205.16527%2011.7156C5.26004%2011.698%205.35643%2011.6907%205.45277%2011.6938C5.65902%2011.6938%205.84027%2011.7188%205.94652%2011.7594V12.0531'%20fill='%23AD1519'/%3e%3cpath%20d='M5.94965%2012.0531C5.71539%2011.9746%205.46574%2011.9531%205.22152%2011.9906C4.92777%2012.0406%204.7059%2012.1562%204.72465%2012.2531V12.2594L4.61527%2012.0031C4.59652%2011.9%204.84027%2011.7688%205.16527%2011.7156C5.26004%2011.698%205.35643%2011.6907%205.45277%2011.6938C5.65902%2011.6938%205.84027%2011.7188%205.94652%2011.7594V12.0531'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.96232%2012.3531C4.82794%2012.3437%204.73419%2012.3094%204.72482%2012.2531C4.71544%2012.2062%204.76232%2012.1594%204.84357%2012.1125C4.88107%2012.1156%204.92169%2012.1219%204.96232%2012.1219V12.3531Z'%20fill='%23AD1519'/%3e%3cpath%20d='M4.96232%2012.3531C4.82794%2012.3437%204.73419%2012.3094%204.72482%2012.2531C4.71544%2012.2062%204.76232%2012.1594%204.84357%2012.1125C4.88107%2012.1156%204.92169%2012.1219%204.96232%2012.1219V12.3531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.45332%2012.1719C5.5377%2012.1844%205.6002%2012.2031%205.63145%2012.2312L5.63457%2012.2375C5.6502%2012.2688%205.5752%2012.3312%205.4502%2012.4062V12.1719'%20fill='%23AD1519'/%3e%3cpath%20d='M5.45332%2012.1719C5.5377%2012.1844%205.6002%2012.2031%205.63145%2012.2312L5.63457%2012.2375C5.6502%2012.2688%205.5752%2012.3312%205.4502%2012.4062V12.1719'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M4.65903%2012.8125C4.64653%2012.775%204.77778%2012.7%204.96528%2012.6313L5.20903%2012.5313C5.4684%2012.4156%205.65903%2012.2844%205.63403%2012.2375V12.2313C5.64653%2012.2438%205.66528%2012.4813%205.66528%2012.4813C5.69028%2012.5219%205.51528%2012.6531%205.27778%2012.7656C5.19965%2012.8031%205.04028%2012.8594%204.96528%2012.8906C4.82778%2012.9344%204.6934%2013.025%204.7059%2013.0563L4.65903%2012.8156'%20fill='%23AD1519'/%3e%3cpath%20d='M4.65903%2012.8125C4.64653%2012.775%204.77778%2012.7%204.96528%2012.6313L5.20903%2012.5313C5.4684%2012.4156%205.65903%2012.2844%205.63403%2012.2375V12.2313C5.64653%2012.2438%205.66528%2012.4813%205.66528%2012.4813C5.69028%2012.5219%205.51528%2012.6531%205.27778%2012.7656C5.19965%2012.8031%205.04028%2012.8594%204.96528%2012.8906C4.82778%2012.9344%204.6934%2013.025%204.7059%2013.0563L4.65903%2012.8156V12.8125Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.93145%2011.9375C4.99082%2011.9188%205.02832%2011.8906%205.00957%2011.8438C4.99707%2011.8125%204.96582%2011.8125%204.92207%2011.825L4.84082%2011.8563L4.9127%2012.0375L4.9377%2012.0281L4.9627%2012.0187L4.93145%2011.9406V11.9375ZM4.89395%2011.8531L4.91582%2011.8438C4.93145%2011.8375%204.95332%2011.8469%204.95957%2011.8688C4.96582%2011.8844%204.96582%2011.9%204.94395%2011.9156C4.93794%2011.9192%204.93167%2011.9224%204.9252%2011.925L4.89395%2011.8531ZM5.12207%2011.775L5.09395%2011.7844H5.06895L5.10957%2011.975L5.24395%2011.95L5.2377%2011.9375V11.925L5.15957%2011.9437L5.12207%2011.7781V11.775ZM5.38457%2011.9406C5.40957%2011.8719%205.4377%2011.8063%205.46895%2011.7406C5.45855%2011.7416%205.44809%2011.7416%205.4377%2011.7406C5.42112%2011.7894%205.40235%2011.8373%205.38145%2011.8844L5.30645%2011.75L5.2752%2011.7531H5.24395C5.28205%2011.8147%205.31852%2011.8772%205.35332%2011.9406H5.38457ZM5.65957%2011.7938L5.67207%2011.7656C5.65637%2011.7547%205.63802%2011.7482%205.61895%2011.7469C5.56582%2011.7438%205.53457%2011.7656%205.53145%2011.8C5.5252%2011.8656%205.63145%2011.8625%205.6252%2011.9063C5.6252%2011.925%205.60332%2011.9344%205.58145%2011.9313C5.55645%2011.9313%205.5377%2011.9156%205.5377%2011.8938H5.52832C5.52508%2011.9055%205.5209%2011.917%205.51582%2011.9281C5.5328%2011.9388%205.55209%2011.9452%205.57207%2011.9469C5.6252%2011.9531%205.66582%2011.9313%205.67207%2011.8938C5.67832%2011.8313%205.56895%2011.8281%205.5752%2011.7875C5.5752%2011.7719%205.5877%2011.7625%205.61582%2011.7656C5.6377%2011.7656%205.64707%2011.7781%205.65332%2011.7938H5.65957Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6842%2010.6125C9.6842%2010.6125%209.6623%2010.6375%209.6436%2010.6406C9.628%2010.6406%209.6092%2010.625%209.6092%2010.625C9.6092%2010.625%209.5936%2010.6406%209.578%2010.6437C9.5592%2010.6469%209.5342%2010.625%209.5342%2010.625L9.503%2010.6562C9.4842%2010.6562%209.4686%2010.6469%209.4686%2010.6469C9.4686%2010.6469%209.4592%2010.6594%209.4467%2010.6656H9.4342L9.4155%2010.6531L9.3936%2010.6312L9.378%2010.6219L9.3655%2010.5906V10.575C9.3623%2010.5562%209.3905%2010.5312%209.4342%2010.5219C9.4547%2010.5164%209.4762%2010.5164%209.4967%2010.5219C9.5123%2010.5062%209.5498%2010.4969%209.5905%2010.4969C9.6311%2010.4969%209.6655%2010.5062%209.6842%2010.5187C9.7118%2010.5032%209.7432%2010.4957%209.7748%2010.4969C9.8155%2010.4969%209.853%2010.5062%209.8686%2010.5219C9.8842%2010.5156%209.9061%2010.5156%209.9311%2010.5219C9.9748%2010.5312%2010.003%2010.5531%209.9998%2010.575V10.5906L9.9873%2010.6219L9.9686%2010.6312L9.9498%2010.6531L9.9311%2010.6625C9.9311%2010.6625%209.9217%2010.6687%209.9186%2010.6625C9.9061%2010.6594%209.8967%2010.6469%209.8967%2010.6469C9.8967%2010.6469%209.878%2010.6594%209.8655%2010.6531C9.8498%2010.6469%209.8342%2010.6219%209.8342%2010.6219C9.8342%2010.6219%209.8061%2010.6469%209.7905%2010.6437C9.7717%2010.6406%209.7592%2010.625%209.7592%2010.625C9.7592%2010.625%209.7373%2010.6437%209.7217%2010.6406C9.7061%2010.6375%209.6842%2010.6125%209.6842%2010.6125Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.6842%2010.6125C9.6842%2010.6125%209.6623%2010.6375%209.6436%2010.6406C9.628%2010.6406%209.6092%2010.625%209.6092%2010.625C9.6092%2010.625%209.5936%2010.6406%209.578%2010.6437C9.5592%2010.6469%209.5342%2010.625%209.5342%2010.625L9.503%2010.6562C9.4842%2010.6562%209.4686%2010.6469%209.4686%2010.6469C9.4686%2010.6469%209.4592%2010.6594%209.4467%2010.6656H9.4342L9.4155%2010.6531L9.3936%2010.6312L9.378%2010.6219L9.3655%2010.5906V10.575C9.3623%2010.5562%209.3905%2010.5312%209.4342%2010.5219C9.4547%2010.5164%209.4762%2010.5164%209.4967%2010.5219C9.5123%2010.5062%209.5498%2010.4969%209.5905%2010.4969C9.6311%2010.4969%209.6655%2010.5062%209.6842%2010.5187C9.7118%2010.5032%209.7432%2010.4957%209.7748%2010.4969C9.8155%2010.4969%209.853%2010.5062%209.8686%2010.5219C9.8842%2010.5156%209.9061%2010.5156%209.9311%2010.5219C9.9748%2010.5312%2010.003%2010.5531%209.9998%2010.575V10.5906L9.9873%2010.6219L9.9686%2010.6312L9.9498%2010.6531L9.9311%2010.6625C9.9311%2010.6625%209.9217%2010.6687%209.9186%2010.6625C9.9061%2010.6594%209.8967%2010.6469%209.8967%2010.6469C9.8967%2010.6469%209.878%2010.6594%209.8655%2010.6531C9.8498%2010.6469%209.8342%2010.6219%209.8342%2010.6219C9.8342%2010.6219%209.8061%2010.6469%209.7905%2010.6437C9.7717%2010.6406%209.7592%2010.625%209.7592%2010.625C9.7592%2010.625%209.7373%2010.6437%209.7217%2010.6406C9.7061%2010.6375%209.6842%2010.6125%209.6842%2010.6125Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6416%2010.4875C9.6416%2010.4562%209.6604%2010.425%209.6822%2010.425C9.7072%2010.425%209.7229%2010.4562%209.7229%2010.4875C9.7229%2010.5187%209.7072%2010.5437%209.6822%2010.5437C9.6604%2010.5437%209.6416%2010.5187%209.6416%2010.4844'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6416%2010.4875C9.6416%2010.4562%209.6604%2010.425%209.6822%2010.425C9.7072%2010.425%209.7229%2010.4562%209.7229%2010.4875C9.7229%2010.5187%209.7072%2010.5437%209.6822%2010.5437C9.6604%2010.5437%209.6416%2010.5187%209.6416%2010.4844V10.4875Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.666%2010.4875C9.666%2010.4563%209.6723%2010.4313%209.6816%2010.4313C9.6941%2010.4313%209.7035%2010.4563%209.7035%2010.4875C9.7035%2010.5188%209.6941%2010.5406%209.6848%2010.5406C9.6723%2010.5406%209.666%2010.5156%209.666%2010.4844'%20fill='%23C8B100'/%3e%3cpath%20d='M9.666%2010.4875C9.666%2010.4563%209.6723%2010.4313%209.6816%2010.4313C9.6941%2010.4313%209.7035%2010.4563%209.7035%2010.4875C9.7035%2010.5188%209.6941%2010.5406%209.6848%2010.5406C9.6723%2010.5406%209.666%2010.5156%209.666%2010.4844V10.4875Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.46869%2010.7281C9.46489%2010.7171%209.45959%2010.7066%209.45309%2010.6969C9.60439%2010.6544%209.76439%2010.6544%209.91559%2010.6969L9.89689%2010.7219C9.89309%2010.7299%209.88989%2010.7383%209.88749%2010.7469C9.82029%2010.7286%209.75079%2010.7201%209.68119%2010.7219C9.59999%2010.7219%209.51879%2010.7312%209.47499%2010.7469L9.46869%2010.7281Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.46869%2010.7281C9.46489%2010.7171%209.45959%2010.7066%209.45309%2010.6969C9.60439%2010.6544%209.76439%2010.6544%209.91559%2010.6969L9.89689%2010.7219C9.89309%2010.7299%209.88989%2010.7383%209.88749%2010.7469C9.82029%2010.7286%209.75079%2010.7201%209.68119%2010.7219C9.59999%2010.7219%209.51879%2010.7312%209.47499%2010.7469L9.46869%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6822%2010.8031C9.7572%2010.8031%209.8385%2010.7906%209.8666%2010.7844C9.8854%2010.7781%209.8979%2010.7687%209.8979%2010.7594C9.8979%2010.7531%209.8916%2010.75%209.8854%2010.7469C9.8191%2010.7293%209.7508%2010.7209%209.6822%2010.7219C9.6041%2010.7219%209.526%2010.7312%209.4822%2010.7469C9.476%2010.7469%209.4729%2010.7531%209.4697%2010.7562C9.4697%2010.7687%209.4791%2010.7781%209.501%2010.7844C9.5322%2010.7906%209.6104%2010.8031%209.6822%2010.8031Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6822%2010.8031C9.7572%2010.8031%209.8385%2010.7906%209.8666%2010.7844C9.8854%2010.7781%209.8979%2010.7687%209.8979%2010.7594C9.8979%2010.7531%209.8916%2010.75%209.8854%2010.7469C9.8191%2010.7293%209.7508%2010.7209%209.6822%2010.7219C9.6041%2010.7219%209.526%2010.7312%209.4822%2010.7469C9.476%2010.7469%209.4729%2010.7531%209.4697%2010.7562C9.4697%2010.7687%209.4791%2010.7781%209.501%2010.7844C9.5322%2010.7906%209.6104%2010.8031%209.6822%2010.8031Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8604%2010.5129C9.8604%2010.5065%209.8668%2010.5%209.8733%2010.5C9.8797%2010.5%209.8894%2010.5065%209.8894%2010.5129C9.8894%2010.5194%209.883%2010.5258%209.8733%2010.5258C9.8698%2010.5258%209.8666%2010.5245%209.8641%2010.5221C9.8617%2010.5196%209.8604%2010.5163%209.8604%2010.5129Z'%20fill='white'/%3e%3cpath%20d='M9.85961%2010.5125C9.85961%2010.5062%209.86581%2010.5%209.87211%2010.5C9.87831%2010.5%209.88771%2010.5062%209.88771%2010.5125C9.88771%2010.5187%209.88141%2010.525%209.87211%2010.525C9.86881%2010.525%209.86561%2010.5237%209.86321%2010.5213C9.86091%2010.519%209.85961%2010.5158%209.85961%2010.5125ZM9.85331%2010.4687C9.85331%2010.4654%209.85461%2010.4623%209.85701%2010.4599C9.85931%2010.4576%209.86251%2010.4562%209.86581%2010.4562C9.87211%2010.4562%209.87831%2010.4594%209.87831%2010.4687C9.87831%2010.4781%209.87211%2010.4812%209.86581%2010.4812C9.86251%2010.4812%209.85931%2010.4799%209.85701%2010.4776C9.85461%2010.4752%209.85331%2010.4721%209.85331%2010.4687ZM9.81901%2010.4375C9.81901%2010.4312%209.82521%2010.4281%209.83151%2010.4281C9.83771%2010.4281%209.84401%2010.4312%209.84401%2010.4406C9.84401%2010.4469%209.83771%2010.4531%209.83151%2010.4531C9.82951%2010.4532%209.82581%2010.452%209.82581%2010.452C9.82581%2010.452%209.82251%2010.45%209.82131%2010.4484L9.81881%2010.4432L9.81901%2010.4375ZM9.77521%2010.425C9.77521%2010.4187%209.78151%2010.4125%209.78771%2010.4125C9.79711%2010.4125%209.80331%2010.4187%209.80331%2010.425C9.80331%2010.4312%209.79711%2010.4375%209.79081%2010.4375C9.78461%2010.4375%209.77521%2010.4312%209.77521%2010.425ZM9.73151%2010.425C9.73151%2010.4187%209.73771%2010.4156%209.74711%2010.4156C9.75651%2010.4156%209.75961%2010.4187%209.75961%2010.4281C9.75961%2010.4344%209.75331%2010.4406%209.74711%2010.4406L9.74131%2010.4407C9.74131%2010.4407%209.73771%2010.4395%209.73611%2010.4383L9.73261%2010.4338C9.73261%2010.4338%209.73141%2010.4301%209.73151%2010.4281V10.425Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.99471%2010.6L10.001%2010.5688C10.0014%2010.5574%209.99951%2010.5461%209.99551%2010.5355C9.99141%2010.5249%209.98531%2010.5152%209.97741%2010.5071C9.96951%2010.4989%209.96011%2010.4924%209.94961%2010.488C9.93921%2010.4835%209.92791%2010.4812%209.91661%2010.4813C9.90101%2010.4813%209.88541%2010.4844%209.87601%2010.4906'%20stroke='black'%20stroke-width='0.075'%20stroke-linecap='round'/%3e%3cpath%20d='M9.8436%2010.5375L9.8498%2010.5125C9.8498%2010.4781%209.8154%2010.45%209.7717%2010.45C9.7529%2010.45%209.73419%2010.4563%209.72169%2010.4625'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M10.0076%2010.5625C10.0076%2010.5531%2010.0139%2010.5469%2010.0201%2010.5469C10.0264%2010.5469%2010.0326%2010.5531%2010.0326%2010.5594C10.0326%2010.5687%2010.0264%2010.5719%2010.0201%2010.5719C10.0139%2010.5719%2010.0076%2010.5687%2010.0076%2010.5594V10.5625ZM10.0014%2010.5125C10.0014%2010.5062%2010.0076%2010.5%2010.0139%2010.5L10.0196%2010.4999L10.0248%2010.5023L10.0283%2010.5069L10.0295%2010.5125C10.0295%2010.5187%2010.0232%2010.525%2010.017%2010.525C10.0076%2010.525%2010.0014%2010.5187%2010.0014%2010.5125ZM9.9701%2010.4781C9.9701%2010.4781%209.9704%2010.4743%209.9713%2010.4725L9.9748%2010.468L9.98%2010.4655L9.9857%2010.4656C9.992%2010.4656%209.9982%2010.4687%209.9982%2010.4781C9.9982%2010.4814%209.9969%2010.4846%209.9946%2010.487C9.9922%2010.4893%209.9891%2010.4906%209.9857%2010.4906L9.98%2010.4907L9.9748%2010.4883L9.9713%2010.4838C9.9704%2010.482%209.9701%2010.4801%209.9701%2010.4781ZM9.9295%2010.4562C9.9295%2010.45%209.9357%2010.4437%209.9451%2010.4437C9.9545%2010.4437%209.9576%2010.45%209.9576%2010.4562C9.9576%2010.4656%209.9514%2010.4719%209.9451%2010.4719C9.9429%2010.4725%209.9406%2010.4726%209.9384%2010.4721C9.9362%2010.4715%209.9342%2010.4704%209.9326%2010.4688C9.931%2010.4672%209.9299%2010.4651%209.9293%2010.4629C9.9288%2010.4607%209.9288%2010.4584%209.9295%2010.4562ZM9.8857%2010.4594C9.8857%2010.4531%209.892%2010.4469%209.9014%2010.4469C9.9107%2010.4469%209.9139%2010.4531%209.9139%2010.4594C9.9139%2010.4656%209.9076%2010.4719%209.9014%2010.4719C9.8951%2010.4719%209.8857%2010.4656%209.8857%2010.4594Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.91559%2010.6625L9.89999%2010.6469C9.89999%2010.6469%209.88119%2010.6563%209.85939%2010.6531C9.84059%2010.6531%209.83129%2010.6219%209.83129%2010.6219C9.83129%2010.6219%209.80939%2010.6438%209.79059%2010.6438C9.76869%2010.6438%209.75939%2010.625%209.75939%2010.625C9.75939%2010.625%209.73749%2010.6406%209.71879%2010.6375C9.69999%2010.6375%209.68119%2010.6125%209.68119%2010.6125C9.68119%2010.6125%209.66249%2010.6375%209.64379%2010.6375C9.62499%2010.6406%209.61249%2010.6219%209.61249%2010.6219C9.61249%2010.6219%209.60309%2010.6406%209.57809%2010.6438C9.55309%2010.6469%209.53439%2010.625%209.53439%2010.625C9.53439%2010.625%209.52189%2010.6469%209.50309%2010.6563C9.48749%2010.6563%209.46559%2010.6438%209.46559%2010.6438L9.46249%2010.6594L9.45309%2010.6625L9.45629%2010.6781C9.53069%2010.6584%209.60739%2010.6489%209.68439%2010.65C9.77189%2010.65%209.85309%2010.6625%209.91249%2010.6813L9.91869%2010.6625'%20fill='%23C8B100'/%3e%3cpath%20d='M9.91559%2010.6625L9.89999%2010.6469C9.89999%2010.6469%209.88119%2010.6563%209.85939%2010.6531C9.84059%2010.6531%209.83129%2010.6219%209.83129%2010.6219C9.83129%2010.6219%209.80939%2010.6438%209.79059%2010.6438C9.76869%2010.6438%209.75939%2010.625%209.75939%2010.625C9.75939%2010.625%209.73749%2010.6406%209.71879%2010.6375C9.69999%2010.6375%209.68119%2010.6125%209.68119%2010.6125C9.68119%2010.6125%209.66249%2010.6375%209.64379%2010.6375C9.62499%2010.6406%209.61249%2010.6219%209.61249%2010.6219C9.61249%2010.6219%209.60309%2010.6406%209.57809%2010.6438C9.55309%2010.6469%209.53439%2010.625%209.53439%2010.625C9.53439%2010.625%209.52189%2010.6469%209.50309%2010.6563C9.48749%2010.6563%209.46559%2010.6438%209.46559%2010.6438L9.46249%2010.6594L9.45309%2010.6625L9.45629%2010.6781C9.53069%2010.6584%209.60739%2010.6489%209.68439%2010.65C9.77189%2010.65%209.85309%2010.6625%209.91249%2010.6813L9.91869%2010.6625H9.91559Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.47949%2010.5129C9.47949%2010.5065%209.48599%2010.5%209.49239%2010.5C9.49889%2010.5%209.50529%2010.5065%209.50529%2010.5129C9.50529%2010.5163%209.50399%2010.5196%209.50149%2010.5221C9.49909%2010.5245%209.49579%2010.5258%209.49239%2010.5258C9.48899%2010.5258%209.48569%2010.5245%209.48329%2010.5221C9.48089%2010.5196%209.47949%2010.5163%209.47949%2010.5129Z'%20fill='white'/%3e%3cpath%20d='M9.47949%2010.5125C9.47949%2010.5062%209.48569%2010.5%209.49199%2010.5C9.49819%2010.5%209.50449%2010.5062%209.50449%2010.5125C9.50449%2010.5158%209.50319%2010.519%209.50079%2010.5213C9.49849%2010.5237%209.49529%2010.525%209.49199%2010.525C9.48869%2010.525%209.48549%2010.5237%209.48319%2010.5213C9.48079%2010.519%209.47949%2010.5158%209.47949%2010.5125ZM9.48569%2010.4687C9.48569%2010.4594%209.49199%2010.4562%209.49819%2010.4562C9.50449%2010.4562%209.51389%2010.4594%209.51389%2010.4687C9.51389%2010.4781%209.50759%2010.4812%209.49819%2010.4812C9.49489%2010.4812%209.49169%2010.4799%209.48939%2010.4776C9.48709%2010.4752%209.48569%2010.4721%209.48569%2010.4687ZM9.51699%2010.4375C9.51699%2010.4312%209.52639%2010.4281%209.53259%2010.4281C9.53889%2010.4281%209.54819%2010.4312%209.54819%2010.4406C9.54819%2010.4469%209.54199%2010.4531%209.53259%2010.4531L9.52699%2010.452C9.52699%2010.452%209.52369%2010.45%209.52249%2010.4484L9.51999%2010.4432L9.52009%2010.4375H9.51699ZM9.56069%2010.425C9.56069%2010.4187%209.56699%2010.4125%209.57639%2010.4125C9.58569%2010.4125%209.58889%2010.4187%209.58889%2010.425C9.58889%2010.4312%209.58259%2010.4375%209.57639%2010.4375C9.57009%2010.4375%209.56069%2010.4312%209.56069%2010.425ZM9.60449%2010.425C9.60449%2010.4187%209.61069%2010.4156%209.62009%2010.4156C9.62639%2010.4156%209.63259%2010.4187%209.63259%2010.4281C9.63259%2010.4344%209.62639%2010.4406%209.62009%2010.4406L9.61439%2010.4407L9.60919%2010.4383L9.60559%2010.4338C9.60559%2010.4338%209.60439%2010.4301%209.60449%2010.4281V10.425Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.3696%2010.6C9.3656%2010.5901%209.3635%2010.5795%209.3633%2010.5688C9.3629%2010.5574%209.3648%2010.5461%209.3688%2010.5355C9.3729%2010.5249%209.379%2010.5152%209.3869%2010.5071C9.3948%2010.4989%209.4042%2010.4924%209.4147%2010.488C9.4251%2010.4835%209.4364%2010.4812%209.4477%2010.4813C9.4633%2010.4813%209.479%2010.4844%209.4915%2010.4906'%20stroke='black'%20stroke-width='0.075'%20stroke-linecap='round'/%3e%3cpath%20d='M9.5221%2010.5375C9.5169%2010.5301%209.5136%2010.5215%209.5127%2010.5125C9.5127%2010.4813%209.55019%2010.45%209.59389%2010.45C9.61039%2010.45%209.6266%2010.4543%209.6408%2010.4625'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.3311%2010.5625C9.3311%2010.5531%209.3373%2010.5469%209.3436%2010.5469C9.3529%2010.5469%209.3561%2010.5531%209.3561%2010.5594C9.3561%2010.5627%209.3547%2010.5659%209.3524%2010.5682C9.35%2010.5706%209.3469%2010.5719%209.3436%2010.5719C9.3373%2010.5719%209.3311%2010.5687%209.3311%2010.5594V10.5625ZM9.3342%2010.5125C9.3342%2010.5062%209.3436%2010.5%209.3498%2010.5C9.3561%2010.5%209.3623%2010.5062%209.3623%2010.5125C9.3623%2010.5187%209.3561%2010.525%209.3498%2010.525C9.3436%2010.525%209.3373%2010.5187%209.3373%2010.5125H9.3342ZM9.3654%2010.4781C9.3654%2010.4687%209.3717%2010.4656%209.3811%2010.4656C9.3844%2010.4656%209.3875%2010.4669%209.3899%2010.4693C9.3922%2010.4716%209.3936%2010.4748%209.3936%2010.4781C9.3936%2010.4814%209.3922%2010.4846%209.3899%2010.487C9.3875%2010.4893%209.3844%2010.4906%209.3811%2010.4906L9.3753%2010.4907L9.3701%2010.4883L9.3666%2010.4838C9.3666%2010.4838%209.3654%2010.4801%209.3654%2010.4781ZM9.4061%2010.4562C9.4061%2010.45%209.4123%2010.4437%209.4217%2010.4437C9.4279%2010.4437%209.4342%2010.45%209.4342%2010.4562C9.4342%2010.4656%209.4279%2010.4719%209.4217%2010.4719C9.4195%2010.4725%209.4172%2010.4726%209.415%2010.4721C9.4128%2010.4715%209.4108%2010.4704%209.4092%2010.4688C9.4076%2010.4672%209.4064%2010.4651%209.4059%2010.4629C9.4053%2010.4607%209.4054%2010.4584%209.4061%2010.4562ZM9.4498%2010.4594C9.4498%2010.4531%209.4561%2010.4469%209.4654%2010.4469C9.4687%2010.4469%209.4719%2010.4482%209.4743%2010.4505C9.4766%2010.4529%209.4779%2010.4561%209.4779%2010.4594C9.4779%2010.4627%209.4766%2010.4659%209.4743%2010.4682C9.4719%2010.4706%209.4687%2010.4719%209.4654%2010.4719C9.4561%2010.4719%209.4498%2010.4656%209.4498%2010.4594Z'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.6854%2010.5844H9.6916C9.6908%2010.5885%209.6908%2010.5927%209.6916%2010.5969C9.6916%2010.6156%209.7072%2010.6281%209.7229%2010.6281C9.7297%2010.6284%209.7365%2010.6265%209.7422%2010.6225C9.7479%2010.6186%209.752%2010.6128%209.7541%2010.6062L9.7604%2010.5969V10.6094C9.7635%2010.625%209.7791%2010.6344%209.7947%2010.6344C9.8135%2010.6344%209.826%2010.6219%209.826%2010.6031V10.6L9.8385%2010.5875L9.8447%2010.6031C9.8428%2010.607%209.8418%2010.6113%209.8416%2010.6156C9.8416%2010.6239%209.8449%2010.6319%209.8508%2010.6377C9.8566%2010.6436%209.8646%2010.6469%209.8729%2010.6469C9.8854%2010.6469%209.8947%2010.6406%209.901%2010.6312L9.9072%2010.625V10.6344C9.9072%2010.6437%209.9104%2010.6531%209.9197%2010.6562C9.9197%2010.6562%209.9322%2010.6562%209.951%2010.6437C9.9697%2010.6312%209.9729%2010.6219%209.9729%2010.6219V10.6344C9.9729%2010.6344%209.9572%2010.6594%209.9416%2010.6656C9.9354%2010.6719%209.926%2010.6781%209.9166%2010.675C9.9072%2010.675%209.8979%2010.6656%209.8947%2010.6562C9.8881%2010.6601%209.8805%2010.6622%209.8729%2010.6625C9.8541%2010.6625%209.8354%2010.6531%209.8291%2010.6375C9.8248%2010.6423%209.8195%2010.6462%209.8136%2010.6489C9.8076%2010.6516%209.8012%2010.653%209.7947%2010.6531C9.7791%2010.6531%209.7635%2010.6469%209.7572%2010.6344C9.7487%2010.6423%209.7376%2010.6467%209.726%2010.6469C9.7072%2010.6469%209.6947%2010.6406%209.6822%2010.6281C9.676%2010.6406%209.6604%2010.6469%209.6447%2010.6469C9.6322%2010.6469%209.6197%2010.6437%209.6135%2010.6344C9.6086%2010.6404%209.6024%2010.6453%209.5954%2010.6485C9.5883%2010.6518%209.5806%2010.6534%209.5729%2010.6531C9.5604%2010.6531%209.5479%2010.6469%209.5385%2010.6375C9.5322%2010.6531%209.5135%2010.6625%209.4947%2010.6625C9.4885%2010.6625%209.4791%2010.6625%209.4729%2010.6562C9.4697%2010.6656%209.4604%2010.675%209.451%2010.675C9.4416%2010.675%209.4322%2010.675%209.4229%2010.6687C9.4107%2010.6602%209.4002%2010.6496%209.3916%2010.6375L9.3947%2010.6219L9.4197%2010.6437C9.4354%2010.6562%209.4479%2010.6562%209.4479%2010.6562C9.4572%2010.6562%209.4604%2010.6437%209.4604%2010.6344V10.625L9.4666%2010.6312C9.4729%2010.6406%209.4822%2010.6469%209.4947%2010.6469C9.503%2010.6469%209.511%2010.6436%209.5168%2010.6377C9.5227%2010.6319%209.526%2010.6239%209.526%2010.6156C9.5268%2010.6115%209.5268%2010.6072%209.526%2010.6031V10.5875L9.5385%2010.6V10.6031C9.5385%2010.6219%209.5541%2010.6344%209.5697%2010.6344C9.5885%2010.6344%209.601%2010.625%209.6041%2010.6062V10.5969L9.6104%2010.6062C9.6166%2010.6187%209.6291%2010.6281%209.6416%2010.6281C9.6604%2010.6281%209.676%2010.6156%209.676%2010.5969C9.6764%2010.5938%209.6764%2010.5906%209.676%2010.5875H9.6822'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6854%2010.5844H9.6916C9.6908%2010.5885%209.6908%2010.5927%209.6916%2010.5969C9.6916%2010.6156%209.7072%2010.6281%209.7229%2010.6281C9.7297%2010.6284%209.7365%2010.6265%209.7422%2010.6225C9.7479%2010.6186%209.752%2010.6128%209.7541%2010.6062L9.7604%2010.5969V10.6094C9.7635%2010.625%209.7791%2010.6344%209.7947%2010.6344C9.8135%2010.6344%209.826%2010.6219%209.826%2010.6031V10.6L9.8385%2010.5875L9.8447%2010.6031C9.8428%2010.607%209.8418%2010.6113%209.8416%2010.6156C9.8416%2010.6239%209.8449%2010.6319%209.8508%2010.6377C9.8566%2010.6436%209.8646%2010.6469%209.8729%2010.6469C9.8854%2010.6469%209.8947%2010.6406%209.901%2010.6312L9.9072%2010.625V10.6344C9.9072%2010.6437%209.9104%2010.6531%209.9197%2010.6562C9.9197%2010.6562%209.9322%2010.6562%209.951%2010.6437C9.9697%2010.6312%209.9729%2010.6219%209.9729%2010.6219V10.6344C9.9729%2010.6344%209.9572%2010.6594%209.9416%2010.6656C9.9354%2010.6719%209.926%2010.6781%209.9166%2010.675C9.9072%2010.675%209.8979%2010.6656%209.8947%2010.6562C9.8881%2010.6601%209.8805%2010.6622%209.8729%2010.6625C9.8541%2010.6625%209.8354%2010.6531%209.8291%2010.6375C9.8248%2010.6423%209.8195%2010.6462%209.8136%2010.6489C9.8076%2010.6516%209.8012%2010.653%209.7947%2010.6531C9.7791%2010.6531%209.7635%2010.6469%209.7572%2010.6344C9.7487%2010.6423%209.7376%2010.6467%209.726%2010.6469C9.7072%2010.6469%209.6947%2010.6406%209.6822%2010.6281C9.676%2010.6406%209.6604%2010.6469%209.6447%2010.6469C9.6322%2010.6469%209.6197%2010.6437%209.6135%2010.6344C9.6086%2010.6404%209.6024%2010.6453%209.5954%2010.6485C9.5883%2010.6518%209.5806%2010.6534%209.5729%2010.6531C9.5604%2010.6531%209.5479%2010.6469%209.5385%2010.6375C9.5322%2010.6531%209.5135%2010.6625%209.4947%2010.6625C9.4885%2010.6625%209.4791%2010.6625%209.4729%2010.6562C9.4697%2010.6656%209.4604%2010.675%209.451%2010.675C9.4416%2010.675%209.4322%2010.675%209.4229%2010.6687C9.4107%2010.6602%209.4002%2010.6496%209.3916%2010.6375L9.3947%2010.6219L9.4197%2010.6437C9.4354%2010.6562%209.4479%2010.6562%209.4479%2010.6562C9.4572%2010.6562%209.4604%2010.6437%209.4604%2010.6344V10.625L9.4666%2010.6312C9.4729%2010.6406%209.4822%2010.6469%209.4947%2010.6469C9.503%2010.6469%209.511%2010.6436%209.5168%2010.6377C9.5227%2010.6319%209.526%2010.6239%209.526%2010.6156C9.5268%2010.6115%209.5268%2010.6072%209.526%2010.6031V10.5875L9.5385%2010.6V10.6031C9.5385%2010.6219%209.5541%2010.6344%209.5697%2010.6344C9.5885%2010.6344%209.601%2010.625%209.6041%2010.6062V10.5969L9.6104%2010.6062C9.6166%2010.6187%209.6291%2010.6281%209.6416%2010.6281C9.6604%2010.6281%209.676%2010.6156%209.676%2010.5969C9.6764%2010.5938%209.6764%2010.5906%209.676%2010.5875H9.6822L9.6854%2010.5844Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6809%2010.6656C9.5902%2010.6656%209.509%2010.6781%209.4527%2010.6969L9.44341%2010.6906L9.4465%2010.6813C9.509%2010.6625%209.5902%2010.65%209.6809%2010.65C9.7746%2010.65%209.859%2010.6625%209.9184%2010.6813C9.9184%2010.6813%209.9246%2010.6875%209.9215%2010.6906L9.9121%2010.6969C9.8368%2010.6758%209.759%2010.6653%209.6809%2010.6656Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6809%2010.6656C9.5902%2010.6656%209.509%2010.6781%209.4527%2010.6969L9.44341%2010.6906L9.4465%2010.6813C9.509%2010.6625%209.5902%2010.65%209.6809%2010.65C9.7746%2010.65%209.859%2010.6625%209.9184%2010.6813C9.9184%2010.6813%209.9246%2010.6875%209.9215%2010.6906L9.9121%2010.6969C9.8368%2010.6758%209.759%2010.6653%209.6809%2010.6656Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.5938%2010.7004C9.5938%2010.6907%209.6002%2010.6875%209.6099%2010.6875C9.6133%2010.6875%209.6166%2010.6889%209.619%2010.6913C9.6215%2010.6937%209.6228%2010.697%209.6228%2010.7004C9.6228%2010.7038%209.6215%2010.7071%209.619%2010.7096C9.6166%2010.712%209.6133%2010.7133%209.6099%2010.7133C9.6002%2010.7133%209.5938%2010.7069%209.5938%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M9.5938%2010.7004C9.5938%2010.6907%209.6002%2010.6875%209.6099%2010.6875C9.6133%2010.6875%209.6166%2010.6889%209.619%2010.6913C9.6215%2010.6937%209.6228%2010.697%209.6228%2010.7004C9.6228%2010.7038%209.6215%2010.7071%209.619%2010.7096C9.6166%2010.712%209.6133%2010.7133%209.6099%2010.7133C9.6002%2010.7133%209.5938%2010.7069%209.5938%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6842%2010.7031H9.6529C9.6498%2010.7031%209.6436%2010.7031%209.6436%2010.6938L9.6529%2010.6844H9.7154C9.7154%2010.6844%209.719%2010.6863%209.7201%2010.688C9.7212%2010.6897%209.7218%2010.6917%209.7217%2010.6938C9.7217%2010.6962%209.7207%2010.6986%209.7189%2010.7004C9.7172%2010.7021%209.7148%2010.7031%209.7123%2010.7031H9.6811'%20fill='%23AD1519'/%3e%3cpath%20d='M9.6842%2010.7031H9.6529C9.6498%2010.7031%209.6436%2010.7031%209.6436%2010.6938L9.6529%2010.6844H9.7154C9.7154%2010.6844%209.719%2010.6863%209.7201%2010.688C9.7212%2010.6897%209.7218%2010.6917%209.7217%2010.6938C9.7217%2010.6962%209.7207%2010.6986%209.7189%2010.7004C9.7172%2010.7021%209.7148%2010.7031%209.7123%2010.7031H9.6811'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.5371%2010.7156H9.5184L9.5145%2010.7163L9.5107%2010.7153L9.5077%2010.7129L9.50591%2010.7094C9.50591%2010.7069%209.50681%2010.7045%209.50861%2010.7027C9.51041%2010.701%209.5127%2010.7%209.5152%2010.7L9.53401%2010.6969L9.5559%2010.6937C9.5621%2010.6937%209.56521%2010.6937%209.56841%2010.7L9.5688%2010.7045L9.56701%2010.7088L9.56351%2010.7116L9.559%2010.7125H9.5371'%20fill='%23058E6E'/%3e%3cpath%20d='M9.5371%2010.7156H9.5184L9.5145%2010.7163L9.5107%2010.7153L9.5077%2010.7129L9.50591%2010.7094C9.50591%2010.7069%209.50681%2010.7045%209.50861%2010.7027C9.51041%2010.701%209.5127%2010.7%209.5152%2010.7L9.53401%2010.6969L9.5559%2010.6937C9.5621%2010.6937%209.56521%2010.6937%209.56841%2010.7L9.5688%2010.7045L9.56701%2010.7088L9.56351%2010.7116L9.559%2010.7125H9.5371'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.45309%2010.7281L9.46249%2010.7156H9.48439L9.47189%2010.7344L9.45309%2010.7281Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.45309%2010.7281L9.46249%2010.7156H9.48439L9.47189%2010.7344L9.45309%2010.7281Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7451%2010.7004C9.7451%2010.6907%209.7516%2010.6875%209.758%2010.6875C9.7677%2010.6875%209.7742%2010.6907%209.7742%2010.7004C9.7742%2010.7069%209.7677%2010.7133%209.758%2010.7133C9.7546%2010.7133%209.7513%2010.712%209.7489%2010.7096C9.7465%2010.7071%209.7451%2010.7038%209.7451%2010.7004Z'%20fill='white'/%3e%3cpath%20d='M9.7451%2010.7004C9.7451%2010.6907%209.7516%2010.6875%209.758%2010.6875C9.7677%2010.6875%209.7742%2010.6907%209.7742%2010.7004C9.7742%2010.7069%209.7677%2010.7133%209.758%2010.7133C9.7546%2010.7133%209.7513%2010.712%209.7489%2010.7096C9.7465%2010.7071%209.7451%2010.7038%209.7451%2010.7004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8291%2010.7156H9.851C9.853%2010.7157%209.855%2010.7152%209.8567%2010.7141C9.8584%2010.7129%209.8603%2010.7094%209.8603%2010.7094C9.8605%2010.7073%209.8599%2010.7053%209.8588%2010.7036C9.8588%2010.7036%209.856%2010.7007%209.8541%2010.7L9.8322%2010.6969L9.8104%2010.6937C9.8041%2010.6937%209.801%2010.6937%209.7979%2010.7C9.7979%2010.7062%209.801%2010.7094%209.8072%2010.7125H9.8291'%20fill='%23058E6E'/%3e%3cpath%20d='M9.8291%2010.7156H9.851C9.853%2010.7157%209.855%2010.7152%209.8567%2010.7141C9.8584%2010.7129%209.8603%2010.7094%209.8603%2010.7094C9.8605%2010.7073%209.8599%2010.7053%209.8588%2010.7036C9.8588%2010.7036%209.856%2010.7007%209.8541%2010.7L9.8322%2010.6969L9.8104%2010.6937C9.8041%2010.6937%209.801%2010.6937%209.7979%2010.7C9.7979%2010.7062%209.801%2010.7094%209.8072%2010.7125H9.8291'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.91091%2010.7318L9.90441%2010.7156H9.88181L9.89151%2010.735L9.91091%2010.7318Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.91091%2010.7318L9.90441%2010.7156H9.88181L9.89151%2010.735L9.91091%2010.7318Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6826%2010.7844C9.6196%2010.7857%209.5566%2010.7794%209.4951%2010.7656C9.5565%2010.7509%209.6195%2010.7436%209.6826%2010.7437C9.7576%2010.7437%209.8232%2010.7531%209.8732%2010.7656C9.8232%2010.7781%209.7576%2010.7844%209.6857%2010.7844'%20fill='%23AD1519'/%3e%3cpath%20d='M9.6826%2010.7844C9.6196%2010.7857%209.5566%2010.7794%209.4951%2010.7656C9.5565%2010.7509%209.6195%2010.7436%209.6826%2010.7437C9.7576%2010.7437%209.8232%2010.7531%209.8732%2010.7656C9.8232%2010.7781%209.7576%2010.7844%209.6857%2010.7844H9.6826Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.91311%2010.625L9.91001%2010.6156C9.90371%2010.6156%209.90061%2010.6156%209.89751%2010.6219L9.90061%2010.6344C9.90681%2010.6344%209.91001%2010.6344%209.91311%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.91311%2010.625L9.91001%2010.6156C9.90371%2010.6156%209.90061%2010.6156%209.89751%2010.6219L9.90061%2010.6344C9.90681%2010.6344%209.91001%2010.6344%209.91311%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.77011%2010.6004C9.77011%2010.594%209.76681%2010.5875%209.76041%2010.5875C9.76041%2010.5875%209.75391%2010.5907%209.75391%2010.5972C9.75391%2010.6036%209.75391%2010.6101%209.76041%2010.6101L9.77011%2010.6004Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.77011%2010.6004C9.77011%2010.594%209.76681%2010.5875%209.76041%2010.5875C9.76041%2010.5875%209.75391%2010.5907%209.75391%2010.5972C9.75391%2010.6036%209.75391%2010.6101%209.76041%2010.6101L9.77011%2010.6004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.59959%2010.6004C9.59959%2010.594%209.59959%2010.5875%209.60609%2010.5875L9.61579%2010.5972L9.60929%2010.6101C9.60279%2010.6101%209.59959%2010.6036%209.59959%2010.6004Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.59959%2010.6004C9.59959%2010.594%209.59959%2010.5875%209.60609%2010.5875L9.61579%2010.5972L9.60929%2010.6101C9.60279%2010.6101%209.59959%2010.6036%209.59959%2010.6004Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.45309%2010.625L9.45629%2010.6156C9.46249%2010.6156%209.46559%2010.6156%209.46879%2010.6219L9.46559%2010.6344C9.45939%2010.6344%209.45629%2010.6344%209.45309%2010.625Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.45309%2010.625L9.45629%2010.6156C9.46249%2010.6156%209.46559%2010.6156%209.46879%2010.6219L9.46559%2010.6344C9.45939%2010.6344%209.45629%2010.6344%209.45309%2010.625Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6822%2010.5156L9.6572%2010.5313L9.676%2010.5719L9.6822%2010.575L9.6916%2010.5719L9.7104%2010.5313L9.6822%2010.5156Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6822%2010.5156L9.6572%2010.5313L9.676%2010.5719L9.6822%2010.575L9.6916%2010.5719L9.7104%2010.5313L9.6822%2010.5156Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.62601%2010.5781L9.63851%2010.5938L9.67911%2010.5813L9.68221%2010.575L9.67911%2010.5688L9.63851%2010.5594L9.62601%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.62601%2010.5781L9.63851%2010.5938L9.67911%2010.5813L9.68221%2010.575L9.67911%2010.5688L9.63851%2010.5594L9.62601%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7387%2010.5781L9.7293%2010.5938L9.6887%2010.5813L9.6855%2010.575V10.5688L9.7293%2010.5594L9.7418%2010.5781'%20fill='%23C8B100'/%3e%3cpath%20d='M9.7387%2010.5781L9.7293%2010.5938L9.6887%2010.5813L9.6855%2010.575V10.5688L9.7293%2010.5594L9.7418%2010.5781'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.517%2010.5312L9.4951%2010.5531L9.5232%2010.5844L9.5295%2010.5875L9.5357%2010.5844L9.542%2010.5437L9.517%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M9.517%2010.5312L9.4951%2010.5531L9.5232%2010.5844L9.5295%2010.5875L9.5357%2010.5844L9.542%2010.5437L9.517%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.4727%2010.6L9.4883%2010.6156L9.5258%2010.5969V10.5906L9.5227%2010.5844L9.482%2010.5812L9.4727%2010.6Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4727%2010.6L9.4883%2010.6156L9.5258%2010.5969V10.5906L9.5227%2010.5844L9.482%2010.5812L9.4727%2010.6Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.58461%2010.5781L9.5752%2010.5969H9.53461L9.52831%2010.5906L9.5314%2010.5813L9.5689%2010.5625L9.58461%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.58461%2010.5781L9.5752%2010.5969H9.53461L9.52831%2010.5906L9.5314%2010.5813L9.5689%2010.5625L9.58461%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.43181%2010.6062V10.625L9.38811%2010.6312L9.38181%2010.6281V10.6219L9.41311%2010.5938L9.43181%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.43181%2010.6062V10.625L9.38811%2010.6312L9.38181%2010.6281V10.6219L9.41311%2010.5938L9.43181%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.5127%2010.5906C9.5127%2010.5812%209.5189%2010.575%209.5283%2010.575C9.5325%2010.575%209.5364%2010.5766%209.5394%2010.5796C9.5423%2010.5825%209.54389%2010.5865%209.54389%2010.5906C9.54319%2010.5942%209.54129%2010.5974%209.53839%2010.5997C9.53549%2010.602%209.532%2010.6032%209.5283%2010.6031C9.5247%2010.6032%209.5211%2010.602%209.5182%2010.5997C9.5154%2010.5974%209.5134%2010.5942%209.5127%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.5127%2010.5906C9.5127%2010.5812%209.5189%2010.575%209.5283%2010.575C9.5325%2010.575%209.5364%2010.5766%209.5394%2010.5796C9.5423%2010.5825%209.54389%2010.5865%209.54389%2010.5906C9.54319%2010.5942%209.54129%2010.5974%209.53839%2010.5997C9.53549%2010.602%209.532%2010.6032%209.5283%2010.6031C9.5247%2010.6032%209.5211%2010.602%209.5182%2010.5997C9.5154%2010.5974%209.5134%2010.5942%209.5127%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.85019%2010.5312L9.8721%2010.5531L9.84389%2010.5844L9.8377%2010.5875L9.8346%2010.5844L9.8252%2010.5437L9.85019%2010.5344'%20fill='%23C8B100'/%3e%3cpath%20d='M9.85019%2010.5312L9.8721%2010.5531L9.84389%2010.5844L9.8377%2010.5875L9.8346%2010.5844L9.8252%2010.5437L9.85019%2010.5344'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8949%2010.6L9.8793%2010.6156L9.8418%2010.5969V10.5906L9.8449%2010.5844L9.8855%2010.5812L9.8949%2010.6Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.8949%2010.6L9.8793%2010.6156L9.8418%2010.5969V10.5906L9.8449%2010.5844L9.8855%2010.5812L9.8949%2010.6Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7822%2010.5781L9.7916%2010.5969H9.8322L9.8385%2010.5906L9.8354%2010.5813L9.7979%2010.5625L9.7822%2010.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.7822%2010.5781L9.7916%2010.5969H9.8322L9.8385%2010.5906L9.8354%2010.5813L9.7979%2010.5625L9.7822%2010.5781Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.9287%2010.6062V10.625L9.9725%2010.6312L9.97869%2010.6281V10.6219L9.9475%2010.5938L9.9287%2010.6062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9287%2010.6062V10.625L9.9725%2010.6312L9.97869%2010.6281V10.6219L9.9475%2010.5938L9.9287%2010.6062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6689%2010.5754C9.6689%2010.569%209.6754%2010.5625%209.6851%2010.5625C9.6915%2010.5625%209.698%2010.569%209.698%2010.5754C9.698%2010.5851%209.6915%2010.5916%209.6851%2010.5916C9.6808%2010.5916%209.6767%2010.5899%209.6737%2010.5868C9.6706%2010.5838%209.6689%2010.5797%209.6689%2010.5754Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6689%2010.5754C9.6689%2010.569%209.6754%2010.5625%209.6851%2010.5625C9.6915%2010.5625%209.698%2010.569%209.698%2010.5754C9.698%2010.5851%209.6915%2010.5916%209.6851%2010.5916C9.6808%2010.5916%209.6767%2010.5899%209.6737%2010.5868C9.6706%2010.5838%209.6689%2010.5797%209.6689%2010.5754Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.8232%2010.5906C9.8232%2010.5812%209.8326%2010.575%209.8389%2010.575C9.8482%2010.575%209.8545%2010.5812%209.8545%2010.5906C9.8545%2010.6%209.8482%2010.6031%209.8389%2010.6031C9.8352%2010.6032%209.8316%2010.602%209.8288%2010.5997C9.8259%2010.5974%209.824%2010.5942%209.8232%2010.5906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.8232%2010.5906C9.8232%2010.5812%209.8326%2010.575%209.8389%2010.575C9.8482%2010.575%209.8545%2010.5812%209.8545%2010.5906C9.8545%2010.6%209.8482%2010.6031%209.8389%2010.6031C9.8352%2010.6032%209.8316%2010.602%209.8288%2010.5997C9.8259%2010.5974%209.824%2010.5942%209.8232%2010.5906Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.6572%2010.4187C9.6572%2010.4031%209.6697%2010.3937%209.6822%2010.3937C9.6947%2010.3937%209.7135%2010.4031%209.7135%2010.4187C9.7135%2010.4344%209.6979%2010.4437%209.6822%2010.4437C9.6758%2010.4431%209.6699%2010.4402%209.6653%2010.4357C9.6608%2010.4311%209.6579%2010.4251%209.6572%2010.4187Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.70331%2010.4094V10.4281H9.6564V10.4094H9.6689V10.3687H9.65331V10.3531H9.6689V10.3344H9.68771V10.3531H9.7064V10.3719H9.68771V10.4094H9.7002'%20fill='%23C8B100'/%3e%3cpath%20d='M9.70331%2010.4094V10.4281H9.6564V10.4094H9.6689V10.3687H9.65331V10.3531H9.6689V10.3344H9.68771V10.3531H9.7064V10.3719H9.68771V10.4094H9.7002H9.70331Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.7186%2010.4094V10.4281H9.6436V10.4094H9.6748V10.3687H9.6529V10.3531H9.6717V10.3344H9.6904V10.3531H9.7092V10.3719H9.6904V10.4094H9.7217'%20fill='%23C8B100'/%3e%3cpath%20d='M9.6916%2010.3937C9.7041%2010.3937%209.7104%2010.4062%209.7104%2010.4187C9.7104%2010.4344%209.6979%2010.4437%209.6822%2010.4437C9.6758%2010.4431%209.6699%2010.4402%209.6653%2010.4357C9.6608%2010.4311%209.6579%2010.4251%209.6572%2010.4187C9.6572%2010.4062%209.6635%2010.3969%209.676%2010.3937'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.37561%2010.6312L9.35681%2010.6094C9.35011%2010.6051%209.34271%2010.6019%209.33501%2010.6C9.33501%2010.5969%209.34431%2010.5906%209.35371%2010.5906C9.36001%2010.5906%209.36311%2010.5906%209.36621%2010.5969V10.5906C9.36621%2010.5906%209.37561%2010.5906%209.37871%2010.6V10.6312'%20fill='%23C8B100'/%3e%3cpath%20d='M9.37561%2010.6312L9.35681%2010.6094C9.35011%2010.6051%209.34271%2010.6019%209.33501%2010.6C9.33501%2010.5969%209.34431%2010.5906%209.35371%2010.5906C9.36001%2010.5906%209.36311%2010.5906%209.36621%2010.5969V10.5906C9.36621%2010.5906%209.37561%2010.5906%209.37871%2010.6V10.6312H9.37561Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.37549%2010.6252C9.37869%2010.6187%209.38839%2010.6187%209.39159%2010.6252C9.39809%2010.6284%209.4013%2010.6348%209.3949%2010.6413L9.3787%2010.6381C9.3755%2010.6348%209.3723%2010.6252%209.3787%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M9.37549%2010.6252C9.37869%2010.6187%209.38839%2010.6187%209.39159%2010.6252C9.39809%2010.6284%209.4013%2010.6348%209.3949%2010.6413L9.3787%2010.6381C9.3755%2010.6348%209.3723%2010.6252%209.3787%2010.6219L9.37549%2010.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.9846%2010.6312L10.0033%2010.6094C10.0096%2010.6031%2010.0252%2010.6%2010.0252%2010.6C10.0252%2010.5969%2010.0158%2010.5906%2010.0064%2010.5906C10.0016%2010.591%209.9972%2010.5933%209.9939%2010.5969V10.5906C9.9939%2010.5906%209.9846%2010.5906%209.9814%2010.6V10.6219L9.9846%2010.6312Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9846%2010.6312L10.0033%2010.6094C10.0096%2010.6031%2010.0252%2010.6%2010.0252%2010.6C10.0252%2010.5969%2010.0158%2010.5906%2010.0064%2010.5906C10.0016%2010.591%209.9972%2010.5933%209.9939%2010.5969V10.5906C9.9939%2010.5906%209.9846%2010.5906%209.9814%2010.6V10.6219L9.9846%2010.6312Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.9863%2010.6252C9.9831%2010.6187%209.9767%2010.6187%209.9702%2010.6252C9.9637%2010.6284%209.9637%2010.6348%209.967%2010.6413L9.9831%2010.6381C9.9896%2010.6348%209.9896%2010.6252%209.9863%2010.6219'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9863%2010.6252C9.9831%2010.6187%209.9767%2010.6187%209.9702%2010.6252C9.9637%2010.6284%209.9637%2010.6348%209.967%2010.6413L9.9831%2010.6381C9.9896%2010.6348%209.9896%2010.6252%209.9863%2010.6219V10.6252Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M9.34959%2010.9688H10.0184V10.7969H9.34959V10.9719V10.9688Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.34959%2010.9688H10.0184V10.7969H9.34959V10.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.9471%2011.0875C9.9429%2011.0867%209.9387%2011.0867%209.9346%2011.0875H9.4189C9.4377%2011.0813%209.4502%2011.0656%209.4502%2011.05C9.4502%2011.0313%209.4377%2011.0156%209.4189%2011.0094H9.9502H9.9471C9.9283%2011.0156%209.9158%2011.0313%209.9158%2011.05C9.9158%2011.0656%209.9283%2011.0813%209.9471%2011.0875Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9471%2011.0875C9.9429%2011.0867%209.9387%2011.0867%209.9346%2011.0875H9.4189C9.4377%2011.0813%209.4502%2011.0656%209.4502%2011.05C9.4502%2011.0313%209.4377%2011.0156%209.4189%2011.0094H9.9502H9.9471C9.9283%2011.0156%209.9158%2011.0313%209.9158%2011.05C9.9158%2011.0656%209.9283%2011.0813%209.9471%2011.0875Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.4346%2011.0875H9.9346C9.9533%2011.0875%209.96581%2011.0969%209.96581%2011.1094C9.96581%2011.1219%209.9533%2011.1344%209.9346%2011.1344H9.4346C9.4158%2011.1344%209.40331%2011.1219%209.40331%2011.1094C9.40331%2011.0969%209.4189%2011.0844%209.4346%2011.0844'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4346%2011.0875H9.9346C9.9533%2011.0875%209.96581%2011.0969%209.96581%2011.1094C9.96581%2011.1219%209.9533%2011.1344%209.9346%2011.1344H9.4346C9.4158%2011.1344%209.40331%2011.1219%209.40331%2011.1094C9.40331%2011.0969%209.4189%2011.0844%209.4346%2011.0844V11.0875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.4346%2010.9688H9.9346C9.9533%2010.9688%209.96581%2010.9812%209.96581%2010.9906C9.96581%2011.0031%209.9533%2011.0094%209.9346%2011.0094H9.4346C9.4158%2011.0094%209.40331%2011.0031%209.40331%2010.9906C9.40331%2010.9812%209.4158%2010.9719%209.4346%2010.9719'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4346%2010.9688H9.9346C9.9533%2010.9688%209.96581%2010.9812%209.96581%2010.9906C9.96581%2011.0031%209.9533%2011.0094%209.9346%2011.0094H9.4346C9.4158%2011.0094%209.40331%2011.0031%209.40331%2010.9906C9.40331%2010.9812%209.4158%2010.9719%209.4346%2010.9719V10.9688Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2013.9188C9.2637%2013.9188%209.3043%2013.9094%209.3355%2013.8938C9.3717%2013.8767%209.4112%2013.8682%209.4512%2013.8688C9.4949%2013.8688%209.5387%2013.8781%209.5699%2013.8938C9.6012%2013.9094%209.6418%2013.9188%209.6855%2013.9188C9.7324%2013.9188%209.773%2013.9094%209.8043%2013.8938C9.8395%2013.8772%209.8779%2013.8686%209.9168%2013.8688C9.9568%2013.8677%209.9964%2013.8763%2010.0324%2013.8938C10.0637%2013.9094%2010.1074%2013.9188%2010.1512%2013.9188V13.9938C10.1099%2013.994%2010.0692%2013.9843%2010.0324%2013.9656C9.9964%2013.9484%209.9568%2013.9398%209.9168%2013.9406C9.873%2013.9406%209.8324%2013.95%209.8043%2013.9656C9.773%2013.9813%209.7324%2013.9938%209.6855%2013.9938C9.6453%2013.9938%209.6056%2013.9842%209.5699%2013.9656C9.5328%2013.9481%209.4922%2013.9396%209.4512%2013.9406C9.4112%2013.9399%209.3716%2013.9485%209.3355%2013.9656C9.3043%2013.9813%209.2637%2013.9938%209.2168%2013.9938V13.9188'%20fill='%23005BBF'/%3e%3cpath%20d='M9.2199%2013.9188C9.2637%2013.9188%209.3043%2013.9094%209.3355%2013.8938C9.3717%2013.8767%209.4112%2013.8682%209.4512%2013.8688C9.4949%2013.8688%209.5387%2013.8781%209.5699%2013.8938C9.6012%2013.9094%209.6418%2013.9188%209.6855%2013.9188C9.7324%2013.9188%209.773%2013.9094%209.8043%2013.8938C9.8395%2013.8772%209.8779%2013.8686%209.9168%2013.8688C9.9568%2013.8677%209.9964%2013.8763%2010.0324%2013.8938C10.0637%2013.9094%2010.1074%2013.9188%2010.1512%2013.9188V13.9938C10.1099%2013.994%2010.0692%2013.9843%2010.0324%2013.9656C9.9964%2013.9484%209.9568%2013.9398%209.9168%2013.9406C9.873%2013.9406%209.8324%2013.95%209.8043%2013.9656C9.773%2013.9813%209.7324%2013.9938%209.6855%2013.9938C9.6453%2013.9938%209.6056%2013.9842%209.5699%2013.9656C9.5328%2013.9481%209.4922%2013.9396%209.4512%2013.9406C9.4112%2013.9399%209.3716%2013.9485%209.3355%2013.9656C9.3043%2013.9813%209.2637%2013.9938%209.2168%2013.9938V13.9188H9.2199Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2013.9938C9.2637%2013.9938%209.3043%2013.9813%209.3355%2013.9656C9.3668%2013.95%209.4074%2013.9406%209.4512%2013.9406C9.4949%2013.9406%209.5387%2013.95%209.5699%2013.9656C9.6012%2013.9813%209.6418%2013.9938%209.6855%2013.9938C9.7268%2013.9941%209.7676%2013.9844%209.8043%2013.9656C9.8395%2013.9491%209.8779%2013.9405%209.9168%2013.9406C9.9637%2013.9406%2010.0043%2013.95%2010.0324%2013.9656C10.0637%2013.9813%2010.1074%2013.9938%2010.1512%2013.9938V14.0656C10.1099%2014.0658%2010.0692%2014.0562%2010.0324%2014.0375C9.9961%2014.0212%209.9565%2014.0137%209.9168%2014.0156C9.873%2014.0156%209.8324%2014.0219%209.8043%2014.0375C9.773%2014.0531%209.7324%2014.0656%209.6855%2014.0656C9.6451%2014.0671%209.6051%2014.0574%209.5699%2014.0375C9.5387%2014.025%209.498%2014.0156%209.4512%2014.0156C9.4115%2014.014%209.3719%2014.0214%209.3355%2014.0375C9.2989%2014.0564%209.2581%2014.0661%209.2168%2014.0656V13.9938'%20fill='%23CCCCCC'/%3e%3cpath%20d='M9.2199%2013.9938C9.2637%2013.9938%209.3043%2013.9813%209.3355%2013.9656C9.3668%2013.95%209.4074%2013.9406%209.4512%2013.9406C9.4949%2013.9406%209.5387%2013.95%209.5699%2013.9656C9.6012%2013.9813%209.6418%2013.9938%209.6855%2013.9938C9.7268%2013.9941%209.7676%2013.9844%209.8043%2013.9656C9.8395%2013.9491%209.8779%2013.9405%209.9168%2013.9406C9.9637%2013.9406%2010.0043%2013.95%2010.0324%2013.9656C10.0637%2013.9813%2010.1074%2013.9938%2010.1512%2013.9938V14.0656C10.1099%2014.0658%2010.0692%2014.0562%2010.0324%2014.0375C9.9961%2014.0212%209.9565%2014.0137%209.9168%2014.0156C9.873%2014.0156%209.8324%2014.0219%209.8043%2014.0375C9.773%2014.0531%209.7324%2014.0656%209.6855%2014.0656C9.6451%2014.0671%209.6051%2014.0574%209.5699%2014.0375C9.5387%2014.025%209.498%2014.0156%209.4512%2014.0156C9.4115%2014.014%209.3719%2014.0214%209.3355%2014.0375C9.2989%2014.0564%209.2581%2014.0661%209.2168%2014.0656V13.9938'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2014.0625C9.2637%2014.0625%209.3043%2014.0563%209.3355%2014.0375C9.3668%2014.025%209.4074%2014.0156%209.4512%2014.0156C9.4949%2014.0156%209.5387%2014.0219%209.5699%2014.0375C9.6012%2014.0531%209.6418%2014.0656%209.6855%2014.0656C9.7268%2014.066%209.7676%2014.0563%209.8043%2014.0375C9.8395%2014.0209%209.8779%2014.0124%209.9168%2014.0125C9.9568%2014.0115%209.9964%2014.02%2010.0324%2014.0375C10.0637%2014.0531%2010.1074%2014.0656%2010.1512%2014.0656V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.1281%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.0625'%20fill='%23005BBF'/%3e%3cpath%20d='M9.2199%2014.0625C9.2637%2014.0625%209.3043%2014.0563%209.3355%2014.0375C9.3668%2014.025%209.4074%2014.0156%209.4512%2014.0156C9.4949%2014.0156%209.5387%2014.0219%209.5699%2014.0375C9.6012%2014.0531%209.6418%2014.0656%209.6855%2014.0656C9.7268%2014.066%209.7676%2014.0563%209.8043%2014.0375C9.8395%2014.0209%209.8779%2014.0124%209.9168%2014.0125C9.9568%2014.0115%209.9964%2014.02%2010.0324%2014.0375C10.0637%2014.0531%2010.1074%2014.0656%2010.1512%2014.0656V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.1281%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.0625'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2014.2094C9.2599%2014.2104%209.2996%2014.2018%209.3355%2014.1844C9.3668%2014.1687%209.4074%2014.1594%209.4512%2014.1594C9.4949%2014.1594%209.5387%2014.1687%209.5699%2014.1844C9.6012%2014.2%209.6418%2014.2094%209.6855%2014.2094C9.7324%2014.2094%209.773%2014.2%209.8043%2014.1812C9.8397%2014.1658%209.8781%2014.1583%209.9168%2014.1594C9.9637%2014.1594%2010.0043%2014.1687%2010.0324%2014.1844C10.0695%2014.202%2010.1102%2014.2105%2010.1512%2014.2094V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.125%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.2094'%20fill='%23CCCCCC'/%3e%3cpath%20d='M9.2199%2014.2094C9.2599%2014.2104%209.2996%2014.2018%209.3355%2014.1844C9.3668%2014.1687%209.4074%2014.1594%209.4512%2014.1594C9.4949%2014.1594%209.5387%2014.1687%209.5699%2014.1844C9.6012%2014.2%209.6418%2014.2094%209.6855%2014.2094C9.7324%2014.2094%209.773%2014.2%209.8043%2014.1812C9.8397%2014.1658%209.8781%2014.1583%209.9168%2014.1594C9.9637%2014.1594%2010.0043%2014.1687%2010.0324%2014.1844C10.0695%2014.202%2010.1102%2014.2105%2010.1512%2014.2094V14.1375C10.1099%2014.1377%2010.0692%2014.1281%2010.0324%2014.1094C9.9961%2014.0932%209.9565%2014.0857%209.9168%2014.0875C9.873%2014.0875%209.8324%2014.0969%209.8043%2014.1094C9.773%2014.125%209.7324%2014.1375%209.6855%2014.1375C9.6418%2014.1375%209.598%2014.1281%209.5699%2014.1125C9.5328%2014.095%209.4922%2014.0864%209.4512%2014.0875C9.4112%2014.0868%209.3716%2014.0954%209.3355%2014.1125C9.3043%2014.1281%209.2637%2014.1375%209.2168%2014.1375V14.2094'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.2199%2014.2812C9.2599%2014.2822%209.2995%2014.2736%209.3355%2014.2562C9.3668%2014.2406%209.4074%2014.2312%209.4512%2014.2312C9.4949%2014.2312%209.5387%2014.2406%209.5699%2014.2562C9.6012%2014.2719%209.6418%2014.2812%209.6855%2014.2812C9.7268%2014.2816%209.7676%2014.2719%209.8043%2014.2531C9.8397%2014.2376%209.8781%2014.2302%209.9168%2014.2312C9.9637%2014.2312%2010.0043%2014.2406%2010.0324%2014.2562C10.0637%2014.2719%2010.1074%2014.2812%2010.1512%2014.2812V14.2094C10.1102%2014.2105%2010.0695%2014.202%2010.0324%2014.1844C9.9964%2014.1671%209.9568%2014.1586%209.9168%2014.1594C9.8781%2014.1583%209.8397%2014.1658%209.8043%2014.1812C9.7676%2014.2%209.7268%2014.2097%209.6855%2014.2094C9.6418%2014.2094%209.598%2014.2%209.5699%2014.1844C9.5387%2014.1687%209.498%2014.1594%209.4512%2014.1594C9.4074%2014.1594%209.3668%2014.1687%209.3355%2014.1844C9.3043%2014.2%209.2637%2014.2094%209.2168%2014.2094V14.2812'%20fill='%23005BBF'/%3e%3cpath%20d='M9.2199%2014.2812C9.2599%2014.2822%209.2995%2014.2736%209.3355%2014.2562C9.3668%2014.2406%209.4074%2014.2312%209.4512%2014.2312C9.4949%2014.2312%209.5387%2014.2406%209.5699%2014.2562C9.6012%2014.2719%209.6418%2014.2812%209.6855%2014.2812C9.7268%2014.2816%209.7676%2014.2719%209.8043%2014.2531C9.8397%2014.2376%209.8781%2014.2302%209.9168%2014.2312C9.9637%2014.2312%2010.0043%2014.2406%2010.0324%2014.2562C10.0637%2014.2719%2010.1074%2014.2812%2010.1512%2014.2812V14.2094C10.1102%2014.2105%2010.0695%2014.202%2010.0324%2014.1844C9.9964%2014.1671%209.9568%2014.1586%209.9168%2014.1594C9.8781%2014.1583%209.8397%2014.1658%209.8043%2014.1812C9.7676%2014.2%209.7268%2014.2097%209.6855%2014.2094C9.6418%2014.2094%209.598%2014.2%209.5699%2014.1844C9.5387%2014.1687%209.498%2014.1594%209.4512%2014.1594C9.4074%2014.1594%209.3668%2014.1687%209.3355%2014.1844C9.3043%2014.2%209.2637%2014.2094%209.2168%2014.2094V14.2812H9.2199Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.9471%2013.625L9.9439%2013.6406C9.9439%2013.6875%209.98141%2013.7219%2010.0283%2013.7219H9.34081C9.38771%2013.7219%209.42521%2013.6844%209.42521%2013.6406L9.4221%2013.625H9.9471Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.9471%2013.625L9.9439%2013.6406C9.9439%2013.6875%209.98141%2013.7219%2010.0283%2013.7219H9.34081C9.38771%2013.7219%209.42521%2013.6844%209.42521%2013.6406L9.4221%2013.625H9.9471Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.4346%2013.5781H9.9346C9.9533%2013.5781%209.96581%2013.5875%209.96581%2013.6031C9.96581%2013.6156%209.9533%2013.625%209.9346%2013.625H9.4346C9.4158%2013.625%209.40331%2013.6156%209.40331%2013.6C9.40331%2013.5875%209.4189%2013.5781%209.4346%2013.5781Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.4346%2013.5781H9.9346C9.9533%2013.5781%209.96581%2013.5875%209.96581%2013.6031C9.96581%2013.6156%209.9533%2013.625%209.9346%2013.625H9.4346C9.4158%2013.625%209.40331%2013.6156%209.40331%2013.6C9.40331%2013.5875%209.4189%2013.5781%209.4346%2013.5781Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.34081%2013.8969H10.0283V13.7188H9.34081V13.8938V13.8969Z'%20fill='%23C8B100'/%3e%3cpath%20d='M9.34081%2013.8969H10.0283V13.7188H9.34081V13.8938V13.8969Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M10.0817%2012.9594C10.1473%2012.9969%2010.1942%2013.0375%2010.188%2013.0594C10.1848%2013.0781%2010.163%2013.0906%2010.1317%2013.1094C10.0817%2013.1437%2010.0536%2013.2031%2010.0755%2013.2344C10.0545%2013.2179%2010.0376%2013.1967%2010.0262%2013.1726C10.0148%2013.1485%2010.0092%2013.122%2010.0098%2013.0953C10.0104%2013.0686%2010.0172%2013.0424%2010.0297%2013.0189C10.0422%2012.9953%2010.06%2012.9749%2010.0817%2012.9594Z'%20fill='%23AD1519'/%3e%3cpath%20d='M10.0817%2012.9594C10.1473%2012.9969%2010.1942%2013.0375%2010.188%2013.0594C10.1848%2013.0781%2010.163%2013.0906%2010.1317%2013.1094C10.0817%2013.1437%2010.0536%2013.2031%2010.0755%2013.2344C10.0545%2013.2179%2010.0376%2013.1967%2010.0262%2013.1726C10.0148%2013.1485%2010.0092%2013.122%2010.0098%2013.0953C10.0104%2013.0686%2010.0172%2013.0424%2010.0297%2013.0189C10.0422%2012.9953%2010.06%2012.9749%2010.0817%2012.9594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.4404%2013.55H9.9279V11.1562H9.4404V13.5469V13.55Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M9.7936%2011.1594V13.5437M9.8498%2011.1594V13.5437M9.4436%2013.55H9.9279V11.1562H9.4404V13.5469L9.4436%2013.55Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.94434%2012.0531C9.1786%2011.9746%209.4282%2011.9531%209.6725%2011.9906C9.9631%2012.0406%2010.185%2012.1563%2010.1693%2012.2531V12.2594L10.2787%2012.0031C10.2975%2011.9%2010.0506%2011.7688%209.7287%2011.7156C9.6337%2011.7001%209.5375%2011.6928%209.4412%2011.6938C9.2318%2011.6938%209.0537%2011.7188%208.94434%2011.7594V12.0531Z'%20fill='%23AD1519'/%3e%3cpath%20d='M8.94434%2012.0531C9.1786%2011.9746%209.4282%2011.9531%209.6725%2011.9906C9.9631%2012.0406%2010.185%2012.1563%2010.1693%2012.2531V12.2594L10.2787%2012.0031C10.2975%2011.9%2010.0506%2011.7688%209.7287%2011.7156C9.6337%2011.7001%209.5375%2011.6928%209.4412%2011.6938C9.2318%2011.6938%209.0537%2011.7188%208.94434%2011.7594V12.0531Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.9287%2012.3531C10.0662%2012.3437%2010.1568%2012.3094%2010.1693%2012.2531C10.1756%2012.2062%2010.1318%2012.1594%2010.0506%2012.1125C10.0131%2012.1156%209.9725%2012.1219%209.9287%2012.1219V12.3531Z'%20fill='%23AD1519'/%3e%3cpath%20d='M9.9287%2012.3531C10.0662%2012.3437%2010.1568%2012.3094%2010.1693%2012.2531C10.1756%2012.2062%2010.1318%2012.1594%2010.0506%2012.1125C10.0131%2012.1156%209.9725%2012.1219%209.9287%2012.1219V12.3531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.43809%2012.1719C9.37489%2012.1775%209.31389%2012.1978%209.25989%2012.2312V12.2375C9.24429%2012.2688%209.31619%2012.3312%209.44119%2012.4062V12.1719'%20fill='%23AD1519'/%3e%3cpath%20d='M9.43809%2012.1719C9.37489%2012.1775%209.31389%2012.1978%209.25989%2012.2312V12.2375C9.24429%2012.2688%209.31619%2012.3312%209.44119%2012.4062V12.1719'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M10.2321%2012.8125C10.2446%2012.775%2010.1133%2012.7%209.92889%2012.6313C9.84139%2012.6%209.77269%2012.5688%209.68519%2012.5313C9.42579%2012.4156%209.23519%2012.2844%209.26019%2012.2375V12.2313C9.24769%2012.2438%209.2289%2012.4813%209.2289%2012.4813C9.2039%2012.5219%209.37889%2012.6531%209.61639%2012.7656C9.69139%2012.8031%209.85389%2012.8594%209.92889%2012.8906C10.0633%2012.9344%2010.2008%2013.025%2010.1883%2013.0563L10.2321%2012.8156'%20fill='%23AD1519'/%3e%3cpath%20d='M10.2321%2012.8125C10.2446%2012.775%2010.1133%2012.7%209.92889%2012.6313C9.84139%2012.6%209.77269%2012.5688%209.68519%2012.5313C9.42579%2012.4156%209.23519%2012.2844%209.26019%2012.2375V12.2313C9.24769%2012.2438%209.2289%2012.4813%209.2289%2012.4813C9.2039%2012.5219%209.37889%2012.6531%209.61639%2012.7656C9.69139%2012.8031%209.85389%2012.8594%209.92889%2012.8906C10.0633%2012.9344%2010.2008%2013.025%2010.1883%2013.0563L10.2321%2012.8156V12.8125Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.248%2011.95C9.2668%2011.8781%209.2918%2011.8125%209.3137%2011.7438H9.298C9.2929%2011.745%209.2877%2011.7461%209.2824%2011.7469C9.2702%2011.7975%209.2556%2011.8476%209.2387%2011.8969C9.2074%2011.8531%209.1762%2011.8125%209.1543%2011.7688L9.123%2011.775H9.0918C9.135%2011.8333%209.1767%2011.8927%209.2168%2011.9531H9.2324L9.248%2011.95ZM9.4355%2011.7438H9.4043C9.396%2011.7442%209.3876%2011.7442%209.3793%2011.7438V11.9375H9.5105V11.9156H9.4293L9.4324%2011.7438H9.4355ZM9.6449%2011.775L9.7074%2011.7844V11.7625L9.5262%2011.7469V11.7719C9.547%2011.7708%209.5679%2011.7708%209.5887%2011.7719L9.5762%2011.9469H9.6262L9.6418%2011.7781L9.6449%2011.775ZM9.7168%2011.9656C9.7262%2011.9656%209.7324%2011.9656%209.7418%2011.9719L9.7668%2011.9781L9.7887%2011.8875L9.8074%2011.925L9.8324%2011.9906L9.8637%2011.9969C9.8762%2011.9969%209.8855%2012.0031%209.8949%2012.0063L9.8855%2011.9844C9.873%2011.9531%209.8543%2011.925%209.8449%2011.8938C9.8762%2011.8938%209.9043%2011.8844%209.9105%2011.8563C9.9137%2011.8375%209.9105%2011.825%209.8887%2011.8094C9.8762%2011.8%209.8512%2011.7969%209.8355%2011.7938L9.7605%2011.7781L9.7168%2011.9656ZM9.8105%2011.8031C9.8324%2011.8094%209.8574%2011.8125%209.8574%2011.8344V11.85C9.848%2011.8781%209.8262%2011.8875%209.7949%2011.8781L9.8105%2011.8031ZM10.0605%2012.0219L10.0543%2012.0844L10.0793%2012.1L10.1074%2012.1156L10.123%2011.8969C10.1154%2011.8946%2010.1081%2011.8914%2010.1012%2011.8875L9.9105%2012.0063L9.9262%2012.0156L9.9387%2012.0219L9.9918%2011.9844L10.0637%2012.025L10.0605%2012.0219ZM10.0074%2011.975L10.0699%2011.9313L10.0637%2012.0031L10.0074%2011.9719'%20fill='%23C8B100'/%3e%3cpath%20d='M6.69336%2010.0125C6.69336%209.98126%206.72461%209.95001%206.75586%209.95001C6.78711%209.95001%206.82461%209.98126%206.82461%2010.0125C6.82461%2010.0469%206.79336%2010.075%206.75898%2010.075C6.75052%2010.0754%206.74205%2010.0741%206.73411%2010.0712C6.72616%2010.0682%206.7189%2010.0637%206.71276%2010.0578C6.70662%2010.052%206.70173%2010.045%206.6984%2010.0372C6.69506%2010.0294%206.69335%2010.021%206.69336%2010.0125Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M7.4293%209.48126C7.62617%209.48126%207.8043%209.51251%207.91992%209.55626C8.06422%209.61583%208.22055%209.64046%208.37617%209.62814C8.46055%209.62814%208.5793%209.65314%208.69805%209.70314C8.78254%209.73932%208.86063%209.78892%208.9293%209.85001L8.88243%209.89376L8.86993%2010.0125L8.7418%2010.1594L8.6793%2010.2156L8.52305%2010.3375L8.44492%2010.3438L8.42305%2010.4094L7.43555%2010.2938L6.44492%2010.4094L6.41992%2010.3438L6.3418%2010.3375L6.18867%2010.2125L6.12617%2010.1594L5.99805%2010.0125L5.98242%209.89376L5.93555%209.85001C6.00526%209.78876%206.0844%209.73917%206.16992%209.70314C6.26998%209.65676%206.37843%209.63124%206.48867%209.62814C6.55117%209.63439%206.61992%209.63126%206.69492%209.62189C6.78074%209.61266%206.86486%209.59163%206.94492%209.55939C7.06055%209.51251%207.22617%209.48126%207.4293%209.48126Z'%20fill='%23AD1519'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.44403%2010.7844C7.07528%2010.7844%206.74403%2010.7406%206.50965%2010.6719C6.50167%2010.6697%206.49474%2010.6647%206.49015%2010.6578C6.48556%2010.6509%206.4836%2010.6426%206.48465%2010.6344C6.48465%2010.6187%206.49403%2010.6031%206.50965%2010.5969C6.8144%2010.5163%207.12886%2010.4785%207.44403%2010.4844C7.80965%2010.4844%208.1409%2010.5281%208.37528%2010.5969C8.38268%2010.6%208.389%2010.6052%208.39345%2010.6118C8.3979%2010.6185%208.40028%2010.6264%208.40028%2010.6344C8.40028%2010.6424%208.3979%2010.6502%208.39345%2010.6569C8.389%2010.6636%208.38268%2010.6688%208.37528%2010.6719C8.1409%2010.7406%207.81278%2010.7844%207.44403%2010.7844Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.44403%2010.7844C7.07528%2010.7844%206.74403%2010.7406%206.50965%2010.6719C6.50167%2010.6697%206.49474%2010.6647%206.49015%2010.6578C6.48556%2010.6509%206.4836%2010.6426%206.48465%2010.6344C6.48465%2010.6187%206.49403%2010.6031%206.50965%2010.5969C6.8144%2010.5163%207.12886%2010.4785%207.44403%2010.4844C7.80965%2010.4844%208.1409%2010.5281%208.37528%2010.5969C8.38268%2010.6%208.389%2010.6052%208.39345%2010.6118C8.3979%2010.6185%208.40028%2010.6264%208.40028%2010.6344C8.40028%2010.6424%208.3979%2010.6502%208.39345%2010.6569C8.389%2010.6636%208.38268%2010.6688%208.37528%2010.6719C8.1409%2010.7406%207.81278%2010.7844%207.44403%2010.7844Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44043%2010.7375C7.10918%2010.7375%206.80918%2010.7%206.58105%2010.6406C6.80918%2010.5781%207.10918%2010.5469%207.44043%2010.5437C7.73066%2010.5401%208.02027%2010.5715%208.30293%2010.6375C8.07481%2010.7%207.77168%2010.7375%207.44043%2010.7375Z'%20fill='%23AD1519'/%3e%3cpath%20d='M7.41211%2010.7406V10.5438M7.46524%2010.7406V10.5438'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M7.31348%2010.7406V10.5438M7.36348%2010.7406V10.5438'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M7.14414%2010.725V10.55M7.26914%2010.7406V10.5438M7.18163%2010.7281V10.55M7.22227%2010.7313V10.5438M7.10352%2010.7188V10.5563'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M6.96289%2010.7094V10.5687M7.00039%2010.7125V10.5625M7.03164%2010.7094V10.5625M7.06914%2010.7188V10.5625'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.8916%2010.7V10.575M6.9291%2010.7031V10.5719'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M6.77637%2010.6812V10.5937M6.81387%2010.6875V10.5937M6.85449%2010.6937V10.5844'%20stroke='black'%20stroke-width='0.15'/%3e%3cpath%20d='M6.66309%2010.6594V10.6188M6.74121%2010.675V10.6031M6.70059%2010.6656V10.6094'%20stroke='black'%20stroke-width='0.175'/%3e%3cpath%20d='M6.61914%2010.6507V10.6281'%20stroke='black'%20stroke-width='0.225'/%3e%3cpath%20d='M7.52051%2010.7375V10.5406M7.67676%2010.7281V10.5469M7.58613%2010.7344V10.5438'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M7.43789%2010.4812C7.12122%2010.4777%206.80562%2010.5187%206.50039%2010.6031C6.51914%2010.5937%206.51602%2010.5719%206.49102%2010.5094C6.45977%2010.4312%206.41602%2010.4344%206.41602%2010.4344C6.67539%2010.3562%207.04102%2010.3094%207.44102%2010.3094C7.78884%2010.3042%208.13576%2010.3462%208.47227%2010.4344C8.47227%2010.4344%208.42539%2010.4312%208.39414%2010.5062C8.36914%2010.5687%208.36914%2010.5937%208.38789%2010.6C8.15352%2010.5312%207.81289%2010.4844%207.44102%2010.4844'%20fill='%23C8B100'/%3e%3cpath%20d='M7.43789%2010.4812C7.12122%2010.4777%206.80562%2010.5187%206.50039%2010.6031C6.51914%2010.5937%206.51602%2010.5719%206.49102%2010.5094C6.45977%2010.4312%206.41602%2010.4344%206.41602%2010.4344C6.67539%2010.3562%207.04102%2010.3094%207.44102%2010.3094C7.78884%2010.3042%208.13576%2010.3462%208.47227%2010.4344C8.47227%2010.4344%208.42539%2010.4312%208.39414%2010.5062C8.36914%2010.5687%208.36914%2010.5937%208.38789%2010.6C8.15352%2010.5312%207.81289%2010.4844%207.44102%2010.4844'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.4414%2010.3094C7.03828%2010.3094%206.67578%2010.3562%206.4164%2010.4344C6.41251%2010.4359%206.40835%2010.4366%206.40419%2010.4364C6.40002%2010.4363%206.39592%2010.4353%206.39214%2010.4336C6.38835%2010.4318%206.38495%2010.4293%206.38214%2010.4262C6.37933%2010.4232%206.37717%2010.4196%206.37578%2010.4156C6.37434%2010.4115%206.37378%2010.4072%206.37412%2010.4028C6.37446%2010.3985%206.3757%2010.3943%206.37776%2010.3905C6.37982%2010.3867%206.38265%2010.3833%206.38607%2010.3806C6.3895%2010.378%206.39344%2010.3761%206.39765%2010.375C6.73775%2010.2828%207.08907%2010.2387%207.4414%2010.2438C7.8539%2010.2438%208.2289%2010.2969%208.48828%2010.375C8.50703%2010.3812%208.5164%2010.4%208.51015%2010.4156C8.5039%2010.4312%208.48515%2010.4406%208.46953%2010.4344C8.20703%2010.3562%207.84453%2010.3094%207.4414%2010.3094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.4414%2010.3094C7.03828%2010.3094%206.67578%2010.3562%206.4164%2010.4344C6.41251%2010.4359%206.40835%2010.4366%206.40419%2010.4364C6.40002%2010.4363%206.39592%2010.4353%206.39214%2010.4336C6.38835%2010.4318%206.38495%2010.4293%206.38214%2010.4262C6.37933%2010.4232%206.37717%2010.4196%206.37578%2010.4156C6.37434%2010.4115%206.37378%2010.4072%206.37412%2010.4028C6.37446%2010.3985%206.3757%2010.3943%206.37776%2010.3905C6.37982%2010.3867%206.38265%2010.3833%206.38607%2010.3806C6.3895%2010.378%206.39344%2010.3761%206.39765%2010.375C6.73775%2010.2828%207.08907%2010.2387%207.4414%2010.2438C7.8539%2010.2438%208.2289%2010.2969%208.48828%2010.375C8.50703%2010.3812%208.5164%2010.4%208.51015%2010.4156C8.5039%2010.4312%208.48515%2010.4406%208.46953%2010.4344C8.20703%2010.3562%207.84453%2010.3094%207.4414%2010.3094Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44043%2010.7375C7.10918%2010.7375%206.80918%2010.7%206.58105%2010.6406C6.80918%2010.5781%207.10918%2010.5469%207.44043%2010.5437C7.73066%2010.5401%208.02027%2010.5715%208.30293%2010.6375C8.07481%2010.7%207.77168%2010.7375%207.44043%2010.7375Z'%20stroke='black'%20stroke-width='0.1'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.15723%2010.4C7.15723%2010.3844%207.16973%2010.3688%207.18848%2010.3688C7.2041%2010.3688%207.21973%2010.3844%207.21973%2010.4C7.21973%2010.4156%207.20723%2010.4313%207.18848%2010.4313C7.18019%2010.4313%207.17224%2010.428%207.16638%2010.4221C7.16052%2010.4162%207.15723%2010.4083%207.15723%2010.4Z'%20fill='white'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.4416%2010.425H7.34473C7.33644%2010.425%207.32849%2010.4217%207.32263%2010.4158C7.31677%2010.41%207.31348%2010.402%207.31348%2010.3937C7.31348%2010.3855%207.31677%2010.3775%207.32263%2010.3717C7.32849%2010.3658%207.33644%2010.3625%207.34473%2010.3625H7.54473C7.56035%2010.3625%207.57598%2010.3781%207.57598%2010.3937C7.57598%2010.4094%207.56035%2010.425%207.54473%2010.425H7.44473'%20fill='%23AD1519'/%3e%3cpath%20d='M7.4416%2010.425H7.34473C7.33644%2010.425%207.32849%2010.4217%207.32263%2010.4158C7.31677%2010.41%207.31348%2010.402%207.31348%2010.3937C7.31348%2010.3855%207.31677%2010.3775%207.32263%2010.3717C7.32849%2010.3658%207.33644%2010.3625%207.34473%2010.3625H7.54473C7.56035%2010.3625%207.57598%2010.3781%207.57598%2010.3937C7.57598%2010.4094%207.56035%2010.425%207.54473%2010.425H7.44473'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.9484%2010.4531L6.87652%2010.4594C6.85777%2010.4625%206.84527%2010.45%206.83902%2010.4344C6.83859%2010.43%206.83907%2010.4256%206.84044%2010.4215C6.84182%2010.4173%206.84405%2010.4135%206.84699%2010.4102C6.84994%2010.407%206.85354%2010.4044%206.85755%2010.4026C6.86156%2010.4009%206.86589%2010.4%206.87027%2010.4L6.93902%2010.3906L7.01402%2010.3812C7.02965%2010.3812%207.04527%2010.3906%207.0484%2010.4094C7.05152%2010.425%207.03902%2010.4406%207.02027%2010.4406L6.9484%2010.4531Z'%20fill='%23058E6E'/%3e%3cpath%20d='M6.9484%2010.4531L6.87652%2010.4594C6.85777%2010.4625%206.84527%2010.45%206.83902%2010.4344C6.83859%2010.43%206.83907%2010.4256%206.84044%2010.4215C6.84182%2010.4173%206.84405%2010.4135%206.84699%2010.4102C6.84994%2010.407%206.85354%2010.4044%206.85755%2010.4026C6.86156%2010.4009%206.86589%2010.4%206.87027%2010.4L6.93902%2010.3906L7.01402%2010.3812C7.02965%2010.3812%207.04527%2010.3906%207.0484%2010.4094C7.05152%2010.425%207.03902%2010.4406%207.02027%2010.4406L6.9484%2010.4531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.65723%2010.4594C6.65723%2010.4406%206.67285%2010.4281%206.6916%2010.4281C6.71035%2010.4281%206.72285%2010.4406%206.72285%2010.4594C6.72285%2010.475%206.71035%2010.4906%206.6916%2010.4906C6.68331%2010.4906%206.67537%2010.4873%206.6695%2010.4815C6.66364%2010.4756%206.66035%2010.4677%206.66035%2010.4594'%20fill='white'/%3e%3cpath%20d='M6.65723%2010.4594C6.65723%2010.4406%206.67285%2010.4281%206.6916%2010.4281C6.71035%2010.4281%206.72285%2010.4406%206.72285%2010.4594C6.72285%2010.475%206.71035%2010.4906%206.6916%2010.4906C6.68331%2010.4906%206.67537%2010.4873%206.6695%2010.4815C6.66364%2010.4756%206.66035%2010.4677%206.66035%2010.4594'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.43652%2010.5156L6.47402%2010.4656L6.57715%2010.4781L6.4959%2010.5406L6.43965%2010.5156'%20fill='%23AD1519'/%3e%3cpath%20d='M6.43652%2010.5156L6.47402%2010.4656L6.57715%2010.4781L6.4959%2010.5406L6.43965%2010.5156'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.93739%2010.4531L8.00927%2010.4594C8.02489%2010.4625%208.04052%2010.45%208.04364%2010.4344C8.04407%2010.4303%208.04369%2010.4261%208.0425%2010.4222C8.04132%2010.4182%208.03936%2010.4145%208.03675%2010.4113C8.03413%2010.4081%208.03091%2010.4055%208.02727%2010.4035C8.02362%2010.4016%208.01963%2010.4004%208.01552%2010.4L7.94677%2010.3906L7.87177%2010.3813C7.86766%2010.3808%207.86351%2010.3812%207.85955%2010.3824C7.85559%2010.3836%207.85191%2010.3855%207.84871%2010.3881C7.84552%2010.3908%207.84287%2010.394%207.84093%2010.3976C7.83898%2010.4013%207.83778%2010.4053%207.83739%2010.4094C7.83427%2010.425%207.84677%2010.4406%207.86552%2010.4406L7.93739%2010.4531Z'%20fill='%23058E6E'/%3e%3cpath%20d='M7.93739%2010.4531L8.00927%2010.4594C8.02489%2010.4625%208.04052%2010.45%208.04364%2010.4344C8.04407%2010.4303%208.04369%2010.4261%208.0425%2010.4222C8.04132%2010.4182%208.03936%2010.4145%208.03675%2010.4113C8.03413%2010.4081%208.03091%2010.4055%208.02727%2010.4035C8.02362%2010.4016%208.01963%2010.4004%208.01552%2010.4L7.94677%2010.3906L7.87177%2010.3813C7.86766%2010.3808%207.86351%2010.3812%207.85955%2010.3824C7.85559%2010.3836%207.85191%2010.3855%207.84871%2010.3881C7.84552%2010.3908%207.84287%2010.394%207.84093%2010.3976C7.83898%2010.4013%207.83778%2010.4053%207.83739%2010.4094C7.83427%2010.425%207.84677%2010.4406%207.86552%2010.4406L7.93739%2010.4531Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.66602%2010.4C7.66602%2010.3844%207.67852%2010.3688%207.69727%2010.3688C7.71602%2010.3688%207.72852%2010.3844%207.72852%2010.4C7.72852%2010.4156%207.71602%2010.4313%207.69727%2010.4313C7.68898%2010.4313%207.68103%2010.428%207.67517%2010.4221C7.66931%2010.4162%207.66602%2010.4083%207.66602%2010.4ZM8.15977%2010.4594C8.15977%2010.4406%208.17539%2010.4281%208.19102%2010.4281C8.20977%2010.4281%208.22539%2010.4406%208.22539%2010.4594C8.22539%2010.475%208.21289%2010.4906%208.19414%2010.4906C8.18586%2010.4906%208.17791%2010.4873%208.17205%2010.4815C8.16619%2010.4756%208.16289%2010.4677%208.16289%2010.4594'%20fill='white'/%3e%3cpath%20d='M8.15977%2010.4594C8.15977%2010.4406%208.17539%2010.4281%208.19102%2010.4281C8.20977%2010.4281%208.22539%2010.4406%208.22539%2010.4594C8.22539%2010.475%208.21289%2010.4906%208.19414%2010.4906C8.18586%2010.4906%208.17791%2010.4873%208.17205%2010.4815C8.16619%2010.4756%208.16289%2010.4677%208.16289%2010.4594M7.66602%2010.4C7.66602%2010.3844%207.67852%2010.3688%207.69727%2010.3688C7.71602%2010.3688%207.72852%2010.3844%207.72852%2010.4C7.72852%2010.4156%207.71602%2010.4313%207.69727%2010.4313C7.68898%2010.4313%207.68103%2010.428%207.67517%2010.4221C7.66931%2010.4162%207.66602%2010.4083%207.66602%2010.4Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.44512%2010.5156L8.41074%2010.4656L8.30762%2010.4781L8.38887%2010.5406L8.44512%2010.5156Z'%20fill='%23AD1519'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.54199%2010.65C6.77324%2010.5844%207.09199%2010.5438%207.44199%2010.5438C7.79511%2010.5438%208.11074%2010.5844%208.34511%2010.65'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.6977%209.74374L6.74145%209.77499L6.80395%209.67499C6.76549%209.65235%206.7344%209.61905%206.71443%209.57913C6.69447%209.5392%206.68649%209.49435%206.69145%209.44999C6.6977%209.32186%206.85395%209.21249%207.05708%209.21249C7.1602%209.21249%207.25395%209.24374%207.3227%209.28749C7.3227%209.26874%207.3227%209.24999%207.32895%209.23124C7.2456%209.18603%207.15188%209.16341%207.05708%209.16561C6.82583%209.16561%206.64458%209.29374%206.6352%209.44999C6.63073%209.49419%206.6369%209.53881%206.65321%209.58013C6.66953%209.62146%206.6955%209.65827%206.72895%209.68749L6.6977%209.74374Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.6977%209.74374L6.74145%209.77499L6.80395%209.67499C6.76549%209.65235%206.7344%209.61905%206.71443%209.57913C6.69447%209.5392%206.68649%209.49435%206.69145%209.44999C6.6977%209.32186%206.85395%209.21249%207.05708%209.21249C7.1602%209.21249%207.25395%209.24374%207.3227%209.28749C7.3227%209.26874%207.3227%209.24999%207.32895%209.23124C7.2456%209.18603%207.15188%209.16341%207.05708%209.16561C6.82583%209.16561%206.64458%209.29374%206.6352%209.44999C6.63073%209.49419%206.6369%209.53881%206.65321%209.58013C6.66953%209.62146%206.6955%209.65827%206.72895%209.68749L6.6977%209.74374Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.7002%209.74375C6.66307%209.71805%206.63245%209.68405%206.61075%209.64445C6.58905%209.60486%206.57688%209.56075%206.5752%209.51562C6.5752%209.41563%206.6377%209.325%206.74082%209.26562C6.70783%209.29037%206.68106%209.32245%206.66262%209.35933C6.64417%209.39622%206.63457%209.4369%206.63457%209.47814C6.63441%209.51769%206.64269%209.55682%206.65885%209.59293C6.67502%209.62903%206.6987%209.66128%206.72832%209.6875L6.7002%209.74375Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.7002%209.74375C6.66307%209.71805%206.63245%209.68405%206.61075%209.64445C6.58905%209.60486%206.57688%209.56075%206.5752%209.51562C6.5752%209.41562%206.6377%209.325%206.74082%209.26562C6.70783%209.29037%206.68106%209.32245%206.66262%209.35933C6.64417%209.39622%206.63457%209.4369%206.63457%209.47814C6.63441%209.51769%206.64269%209.55682%206.65885%209.59293C6.67502%209.62903%206.6987%209.66128%206.72832%209.6875L6.7002%209.74375Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.00352%209.84685C5.95751%209.79644%205.93189%209.73073%205.93164%209.66248C5.93164%209.62185%205.94102%209.58123%205.96289%209.54373C6.02539%209.41248%206.22539%209.31873%206.46289%209.31873C6.52539%209.31873%206.58789%209.32497%206.64727%209.33747L6.61602%209.38123C6.5655%209.37214%206.51422%209.36794%206.46289%209.36872C6.24414%209.36872%206.06289%209.4531%206.00977%209.5656C5.99514%209.59579%205.98766%209.62894%205.98789%209.66248C5.98821%209.69606%205.99593%209.72916%206.01052%209.75941C6.0251%209.78966%206.04619%209.81631%206.07227%209.83747L5.99102%209.9656L5.95039%209.93435L6.00352%209.84685Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.00352%209.84685C5.95751%209.79644%205.93189%209.73073%205.93164%209.66248C5.93164%209.62185%205.94102%209.58123%205.96289%209.54373C6.02539%209.41248%206.22539%209.31873%206.46289%209.31873C6.52539%209.31873%206.58789%209.32497%206.64727%209.33747L6.61602%209.38123C6.5655%209.37214%206.51422%209.36794%206.46289%209.36872C6.24414%209.36872%206.06289%209.4531%206.00977%209.5656C5.99514%209.59579%205.98766%209.62894%205.98789%209.66248C5.98821%209.69606%205.99593%209.72916%206.01052%209.75941C6.0251%209.78966%206.04619%209.81631%206.07227%209.83747L5.99102%209.9656L5.95039%209.93435L6.00352%209.84685Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.08574%209.41565C6.033%209.44594%205.98973%209.4903%205.96074%209.54377C5.94238%209.58067%205.93276%209.62131%205.93262%209.66252C5.93262%209.7344%205.96074%209.7969%206.00449%209.8469L5.95762%209.92502C5.91126%209.86746%205.88591%209.79581%205.88574%209.7219C5.88574%209.5969%205.96387%209.48752%206.08574%209.41565Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.08574%209.41565C6.033%209.44594%205.98973%209.4903%205.96074%209.54377C5.94238%209.58067%205.93276%209.62131%205.93262%209.66252C5.93262%209.7344%205.96074%209.7969%206.00449%209.8469L5.95762%209.92502C5.91126%209.86746%205.88591%209.79581%205.88574%209.7219C5.88574%209.5969%205.96387%209.48752%206.08574%209.41565Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.43789%209.13751C7.49102%209.13751%207.53789%209.17189%207.54727%209.21876C7.55664%209.26251%207.55977%209.30939%207.55977%209.35939V9.39376C7.56289%209.49689%207.57852%209.59064%207.60039%209.64689L7.43789%209.80314L7.27539%209.64689C7.29727%209.59064%207.31289%209.49689%207.31602%209.39376V9.35939C7.31602%209.30939%207.32227%209.26251%207.32852%209.21876C7.33789%209.17189%207.38477%209.13751%207.43789%209.13751Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.43789%209.13751C7.49102%209.13751%207.53789%209.17189%207.54727%209.21876C7.55664%209.26251%207.55977%209.30939%207.55977%209.35939V9.39376C7.56289%209.49689%207.57852%209.59064%207.60039%209.64689L7.43789%209.80314L7.27539%209.64689C7.29727%209.59064%207.31289%209.49689%207.31602%209.39376V9.35939C7.31602%209.30939%207.32227%209.26251%207.32852%209.21876C7.33789%209.17189%207.38477%209.13751%207.43789%209.13751Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.4373%209.1875C7.46855%209.1875%207.49044%209.20625%207.49356%209.23125C7.49981%209.26875%207.50605%209.3125%207.50605%209.3625V9.39375C7.50918%209.49375%207.5248%209.58125%207.54355%209.63438L7.4373%209.73438L7.33105%209.63438C7.35293%209.58125%207.36544%209.49375%207.36856%209.39375V9.3625C7.36944%209.3185%207.3736%209.27462%207.38105%209.23125C7.38486%209.21909%207.39229%209.20839%207.40234%209.20057C7.4124%209.19275%207.42459%209.18819%207.4373%209.1875Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.4373%209.1875C7.46855%209.1875%207.49044%209.20625%207.49356%209.23125C7.49981%209.26875%207.50605%209.3125%207.50605%209.3625V9.39375C7.50918%209.49375%207.5248%209.58125%207.54355%209.63438L7.4373%209.73438L7.33105%209.63438C7.35293%209.58125%207.36544%209.49375%207.36856%209.39375V9.3625C7.36944%209.3185%207.3736%209.27462%207.38105%209.23125C7.38486%209.21909%207.39229%209.20839%207.40234%209.20057C7.4124%209.19275%207.42459%209.18819%207.4373%209.1875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.17793%209.74374L8.1373%209.77499L8.0748%209.67499C8.10888%209.6546%208.13715%209.62577%208.15685%209.59129C8.17656%209.55681%208.18704%209.51783%208.1873%209.47812C8.18791%209.46875%208.18791%209.45936%208.1873%209.44999C8.18105%209.32186%208.02168%209.21249%207.82168%209.21249C7.72762%209.21026%207.63507%209.2364%207.55606%209.28749C7.55472%209.26867%207.55263%209.2499%207.5498%209.23124C7.63316%209.18603%207.72688%209.16341%207.82168%209.16561C8.05293%209.16561%208.23418%209.29374%208.24043%209.44999C8.24491%209.49419%208.23873%209.53881%208.22242%209.58013C8.20611%209.62146%208.18014%209.65827%208.14668%209.68749L8.17793%209.74374Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.17793%209.74374L8.1373%209.77499L8.0748%209.67499C8.10888%209.6546%208.13715%209.62577%208.15685%209.59129C8.17655%209.55681%208.18704%209.51783%208.1873%209.47812C8.18791%209.46875%208.18791%209.45936%208.1873%209.44999C8.18105%209.32186%208.02168%209.21249%207.82168%209.21249C7.72762%209.21026%207.63507%209.2364%207.55606%209.28749C7.55472%209.26867%207.55263%209.2499%207.5498%209.23124C7.63316%209.18603%207.72688%209.16341%207.82168%209.16561C8.05293%209.16561%208.23418%209.29374%208.24043%209.44999C8.24491%209.49419%208.23873%209.53881%208.22242%209.58013C8.20611%209.62146%208.18014%209.65827%208.14668%209.68749L8.17793%209.74374Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.17617%209.74375C8.21423%209.71876%208.24573%209.685%208.26803%209.6453C8.29033%209.6056%208.30277%209.56114%208.3043%209.51562C8.3043%209.41563%208.23867%209.325%208.13867%209.26562C8.17166%209.29037%208.19844%209.32245%208.21688%209.35933C8.23532%209.39622%208.24492%209.4369%208.24492%209.47814C8.24431%209.51818%208.23506%209.55761%208.2178%209.59375C8.20054%209.62988%208.17568%209.66186%208.14492%209.6875L8.17617%209.74375Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.17617%209.74375C8.21423%209.71876%208.24573%209.685%208.26803%209.6453C8.29033%209.6056%208.30277%209.56114%208.3043%209.51562C8.3043%209.41562%208.23867%209.325%208.13867%209.26562C8.17166%209.29037%208.19844%209.32245%208.21688%209.35933C8.23532%209.39622%208.24492%209.4369%208.24492%209.47814C8.24431%209.51818%208.23506%209.55761%208.2178%209.59375C8.20054%209.62988%208.17568%209.66186%208.14492%209.6875L8.17617%209.74375Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.87637%209.84686C8.92124%209.79598%208.94573%209.73031%208.94512%209.66248C8.94487%209.62128%208.93525%209.58067%208.917%209.54373C8.8545%209.41248%208.65449%209.31873%208.41699%209.31873C8.35401%209.31845%208.29117%209.32473%208.22949%209.33748L8.26074%209.38123C8.31229%209.37192%208.36462%209.36773%208.41699%209.36873C8.63574%209.36873%208.817%209.45311%208.867%209.56561C8.88262%209.59686%208.88887%209.62811%208.88887%209.66248C8.88894%209.69581%208.8817%209.72876%208.86766%209.75899C8.85362%209.78923%208.83313%209.81602%208.80762%209.83748L8.88575%209.96561L8.92637%209.93436L8.87325%209.84686'%20fill='%23C8B100'/%3e%3cpath%20d='M8.87637%209.84686C8.92124%209.79598%208.94573%209.73031%208.94512%209.66248C8.94487%209.62128%208.93525%209.58067%208.917%209.54373C8.8545%209.41248%208.65449%209.31873%208.41699%209.31873C8.35401%209.31845%208.29117%209.32473%208.22949%209.33748L8.26074%209.38123C8.31229%209.37192%208.36462%209.36773%208.41699%209.36873C8.63574%209.36873%208.817%209.45311%208.867%209.56561C8.88262%209.59686%208.88887%209.62811%208.88887%209.66248C8.88894%209.69581%208.8817%209.72876%208.86766%209.75899C8.85362%209.78923%208.83313%209.81602%208.80762%209.83748L8.88575%209.96561L8.92637%209.93436L8.87325%209.84686H8.87637Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.79199%209.41565C8.84463%209.44607%208.88787%209.4904%208.91699%209.54377C8.93524%209.58071%208.94486%209.62132%208.94512%209.66252C8.94487%209.73077%208.91925%209.79649%208.87324%209.8469L8.92324%209.92502C8.9696%209.86746%208.99495%209.79581%208.99512%209.7219C8.99512%209.5969%208.91387%209.48752%208.79199%209.41565Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.79199%209.41565C8.84463%209.44607%208.88787%209.4904%208.91699%209.54377C8.93524%209.58071%208.94486%209.62132%208.94512%209.66252C8.94487%209.73077%208.91925%209.79649%208.87324%209.8469L8.92324%209.92502C8.9696%209.86746%208.99495%209.79581%208.99512%209.7219C8.99512%209.5969%208.91387%209.48752%208.79199%209.41565Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.38086%209.66874C7.38086%209.63749%207.40586%209.61249%207.43711%209.61249C7.46836%209.61249%207.49648%209.63749%207.49648%209.66874C7.49648%209.69999%207.46836%209.72187%207.43711%209.72187C7.42272%209.72189%207.40886%209.7164%207.3984%209.70651C7.38794%209.69663%207.38166%209.68311%207.38086%209.66874Z'%20fill='white'/%3e%3cpath%20d='M7.38086%209.66874C7.38086%209.63749%207.40586%209.61249%207.43711%209.61249C7.46836%209.61249%207.49648%209.63749%207.49648%209.66874C7.49648%209.69999%207.46836%209.72187%207.43711%209.72187C7.42272%209.72189%207.40886%209.7164%207.3984%209.70651C7.38794%209.69663%207.38166%209.68311%207.38086%209.66874Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.38086%209.56251C7.38086%209.53126%207.40586%209.50626%207.43711%209.50626C7.46836%209.50626%207.49648%209.53126%207.49648%209.56251C7.49648%209.59376%207.46836%209.61563%207.43711%209.61563C7.42272%209.61565%207.40886%209.61016%207.3984%209.60028C7.38794%209.5904%207.38166%209.57688%207.38086%209.56251ZM7.39336%209.44688C7.39336%209.42501%207.41211%209.40626%207.43711%209.40626C7.46211%209.40626%207.48398%209.42501%207.48398%209.44688C7.48398%209.47188%207.46211%209.49063%207.43711%209.49063C7.41211%209.49063%207.39336%209.47188%207.39336%209.44688ZM7.40586%209.34376C7.40586%209.32813%207.41836%209.31251%207.43711%209.31251C7.45586%209.31251%207.46836%209.32813%207.46836%209.34376C7.46836%209.35938%207.45586%209.37501%207.43711%209.37501C7.42882%209.37501%207.42087%209.37171%207.41501%209.36585C7.40915%209.35999%207.40586%209.35205%207.40586%209.34376ZM7.41211%209.25626C7.41211%209.24063%207.42461%209.23126%207.43711%209.23126C7.45273%209.23126%207.46523%209.24063%207.46523%209.25626C7.46523%209.26876%207.45273%209.28126%207.43711%209.28126C7.43048%209.28126%207.42412%209.27862%207.41943%209.27393C7.41474%209.26925%207.41211%209.26289%207.41211%209.25626Z'%20fill='white'/%3e%3cpath%20d='M7.41211%209.25626C7.41211%209.24063%207.42461%209.23126%207.43711%209.23126C7.45273%209.23126%207.46523%209.24063%207.46523%209.25626C7.46523%209.26876%207.45273%209.28126%207.43711%209.28126C7.43048%209.28126%207.42412%209.27862%207.41943%209.27393C7.41474%209.26925%207.41211%209.26289%207.41211%209.25626ZM7.38086%209.56251C7.38086%209.53126%207.40586%209.50626%207.43711%209.50626C7.46836%209.50626%207.49648%209.53126%207.49648%209.56251C7.49648%209.59376%207.46836%209.61563%207.43711%209.61563C7.42272%209.61565%207.40886%209.61016%207.3984%209.60028C7.38794%209.5904%207.38166%209.57688%207.38086%209.56251ZM7.39336%209.44688C7.39336%209.42501%207.41211%209.40626%207.43711%209.40626C7.46211%209.40626%207.48398%209.42501%207.48398%209.44688C7.48398%209.47188%207.46211%209.49063%207.43711%209.49063C7.41211%209.49063%207.39336%209.47188%207.39336%209.44688ZM7.40586%209.34376C7.40586%209.32813%207.41836%209.31251%207.43711%209.31251C7.45586%209.31251%207.46836%209.32813%207.46836%209.34376C7.46836%209.35938%207.45586%209.37501%207.43711%209.37501C7.42882%209.37501%207.42087%209.37171%207.41501%209.36585C7.40915%209.35999%207.40586%209.35205%207.40586%209.34376Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44336%209.99377L7.48086%2010C7.47387%2010.0219%207.47221%2010.0451%207.47603%2010.0677C7.47984%2010.0903%207.48901%2010.1117%207.50278%2010.13C7.51654%2010.1484%207.5345%2010.1632%207.55515%2010.1732C7.57581%2010.1832%207.59855%2010.1881%207.62149%2010.1875C7.6512%2010.1876%207.68025%2010.1787%207.7048%2010.162C7.72934%2010.1452%207.74824%2010.1215%207.75899%2010.0938C7.76211%2010.0938%207.77461%2010.0406%207.78086%2010.0406C7.78711%2010.0406%207.78399%2010.0969%207.78711%2010.0938C7.79649%2010.1656%207.86211%2010.2125%207.93399%2010.2125C7.95422%2010.213%207.97434%2010.2093%207.99303%2010.2015C8.01171%2010.1937%208.02853%2010.182%208.0424%2010.1673C8.05627%2010.1525%208.06686%2010.135%208.07349%2010.1159C8.08012%2010.0967%208.08263%2010.0764%208.08086%2010.0563L8.12774%2010.0094L8.14961%2010.0719C8.14063%2010.0903%208.13634%2010.1107%208.13711%2010.1313C8.13874%2010.1672%208.15437%2010.201%208.18065%2010.2256C8.20694%2010.2501%208.24179%2010.2634%208.27774%2010.2625C8.32774%2010.2625%208.37149%2010.2406%208.39649%2010.2031L8.42461%2010.1656V10.2125C8.42461%2010.2594%208.44336%2010.3%208.48711%2010.3063C8.48711%2010.3063%208.54024%2010.3094%208.61211%2010.2563C8.67774%2010.2031%208.71524%2010.1594%208.71524%2010.1594L8.72149%2010.2125C8.72149%2010.2125%208.66524%2010.3%208.60274%2010.3375C8.57149%2010.3563%208.51836%2010.3781%208.47774%2010.3688C8.43399%2010.3625%208.40274%2010.3281%208.38399%2010.2875C8.35293%2010.3067%208.31737%2010.3175%208.28086%2010.3188C8.24127%2010.3202%208.20214%2010.31%208.16827%2010.2894C8.1344%2010.2689%208.10728%2010.2389%208.09024%2010.2031C8.06908%2010.2253%208.04349%2010.2428%208.01513%2010.2545C7.98678%2010.2661%207.95629%2010.2717%207.92565%2010.2708C7.89501%2010.2699%207.86489%2010.2626%207.83726%2010.2493C7.80962%2010.236%207.78508%2010.2171%207.76524%2010.1938C7.72575%2010.2293%207.67465%2010.2493%207.62149%2010.25C7.58641%2010.25%207.55185%2010.2415%207.52081%2010.2252C7.48977%2010.2089%207.46319%2010.1852%207.44336%2010.1563C7.42353%2010.1852%207.39695%2010.2089%207.36591%2010.2252C7.33487%2010.2415%207.30031%2010.25%207.26524%2010.25C7.211%2010.2501%207.15865%2010.2301%207.11836%2010.1938C7.09851%2010.2171%207.07398%2010.236%207.04634%2010.2493C7.01871%2010.2626%206.98859%2010.2699%206.95795%2010.2708C6.9273%2010.2717%206.89682%2010.2661%206.86846%2010.2545C6.84011%2010.2428%206.81452%2010.2253%206.79336%2010.2031C6.77654%2010.2384%206.7499%2010.2681%206.71664%2010.2886C6.68339%2010.3091%206.64492%2010.3196%206.60586%2010.3188C6.56828%2010.3181%206.53158%2010.3073%206.49961%2010.2875C6.48086%2010.3281%206.45273%2010.3625%206.40586%2010.3719C6.36836%2010.3781%206.31523%2010.3563%206.28086%2010.3375C6.21836%2010.3%206.16211%2010.2125%206.16211%2010.2125L6.16836%2010.1594C6.16836%2010.1594%206.20586%2010.2031%206.27461%2010.2563C6.34336%2010.3125%206.39648%2010.3063%206.39648%2010.3063C6.44023%2010.3%206.45898%2010.2594%206.45898%2010.2125V10.1656L6.49023%2010.2031C6.50315%2010.222%206.52038%2010.2375%206.54049%2010.2484C6.56059%2010.2592%206.58301%2010.2652%206.60586%2010.2656C6.68398%2010.2656%206.74648%2010.2031%206.74648%2010.1313C6.74779%2010.1097%206.74348%2010.0882%206.73399%2010.0688L6.75899%2010.0094L6.80586%2010.0563C6.80543%2010.0625%206.80543%2010.0688%206.80586%2010.075C6.80586%2010.15%206.86836%2010.2125%206.94961%2010.2125C7.02461%2010.2125%207.08711%2010.1656%207.09649%2010.0938C7.09649%2010.0938%207.09649%2010.0438%207.10274%2010.0406C7.10899%2010.0406%207.12149%2010.0938%207.12461%2010.0906C7.13503%2010.1194%207.15418%2010.1442%207.1794%2010.1616C7.20461%2010.179%207.23462%2010.188%207.26524%2010.1875C7.28817%2010.1881%207.31092%2010.1832%207.33157%2010.1732C7.35222%2010.1632%207.37018%2010.1484%207.38395%2010.13C7.39771%2010.1117%207.40688%2010.0903%207.4107%2010.0677C7.41451%2010.0451%207.41285%2010.0219%207.40586%2010L7.44336%209.99377Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.44336%209.99377L7.48086%2010C7.47387%2010.0219%207.47221%2010.0451%207.47603%2010.0677C7.47984%2010.0903%207.48901%2010.1117%207.50278%2010.13C7.51654%2010.1484%207.5345%2010.1632%207.55515%2010.1732C7.57581%2010.1832%207.59855%2010.1881%207.62149%2010.1875C7.6512%2010.1876%207.68025%2010.1787%207.7048%2010.162C7.72934%2010.1452%207.74824%2010.1215%207.75899%2010.0938C7.76211%2010.0938%207.77461%2010.0406%207.78086%2010.0406C7.78711%2010.0406%207.78399%2010.0969%207.78711%2010.0938C7.79649%2010.1656%207.86211%2010.2125%207.93399%2010.2125C7.95422%2010.213%207.97434%2010.2093%207.99303%2010.2015C8.01171%2010.1937%208.02853%2010.182%208.0424%2010.1673C8.05627%2010.1525%208.06686%2010.135%208.07349%2010.1159C8.08012%2010.0967%208.08263%2010.0764%208.08086%2010.0563L8.12774%2010.0094L8.14961%2010.0719C8.14063%2010.0903%208.13634%2010.1107%208.13711%2010.1313C8.13874%2010.1672%208.15437%2010.201%208.18065%2010.2256C8.20694%2010.2501%208.24179%2010.2634%208.27774%2010.2625C8.32774%2010.2625%208.37149%2010.2406%208.39649%2010.2031L8.42461%2010.1656V10.2125C8.42461%2010.2594%208.44336%2010.3%208.48711%2010.3063C8.48711%2010.3063%208.54024%2010.3094%208.61211%2010.2563C8.67774%2010.2031%208.71524%2010.1594%208.71524%2010.1594L8.72149%2010.2125C8.72149%2010.2125%208.66524%2010.3%208.60274%2010.3375C8.57149%2010.3563%208.51836%2010.3781%208.47774%2010.3688C8.43399%2010.3625%208.40274%2010.3281%208.38399%2010.2875C8.35293%2010.3067%208.31737%2010.3175%208.28086%2010.3188C8.24127%2010.3202%208.20214%2010.31%208.16827%2010.2894C8.1344%2010.2689%208.10728%2010.2389%208.09024%2010.2031C8.06908%2010.2253%208.04349%2010.2428%208.01513%2010.2545C7.98678%2010.2661%207.95629%2010.2717%207.92565%2010.2708C7.89501%2010.2699%207.86489%2010.2626%207.83726%2010.2493C7.80962%2010.236%207.78508%2010.2171%207.76524%2010.1938C7.72575%2010.2293%207.67465%2010.2493%207.62149%2010.25C7.58641%2010.25%207.55185%2010.2415%207.52081%2010.2252C7.48977%2010.2089%207.46319%2010.1852%207.44336%2010.1563C7.42353%2010.1852%207.39695%2010.2089%207.36591%2010.2252C7.33487%2010.2415%207.30031%2010.25%207.26524%2010.25C7.211%2010.2501%207.15865%2010.2301%207.11836%2010.1938C7.09851%2010.2171%207.07398%2010.236%207.04634%2010.2493C7.01871%2010.2626%206.98859%2010.2699%206.95795%2010.2708C6.9273%2010.2717%206.89682%2010.2661%206.86846%2010.2545C6.84011%2010.2428%206.81452%2010.2253%206.79336%2010.2031C6.77654%2010.2384%206.7499%2010.2681%206.71664%2010.2886C6.68339%2010.3091%206.64492%2010.3196%206.60586%2010.3188C6.56828%2010.3181%206.53158%2010.3073%206.49961%2010.2875C6.48086%2010.3281%206.45273%2010.3625%206.40586%2010.3719C6.36836%2010.3781%206.31523%2010.3563%206.28086%2010.3375C6.21836%2010.3%206.16211%2010.2125%206.16211%2010.2125L6.16836%2010.1594C6.16836%2010.1594%206.20586%2010.2031%206.27461%2010.2563C6.34336%2010.3125%206.39648%2010.3063%206.39648%2010.3063C6.44023%2010.3%206.45898%2010.2594%206.45898%2010.2125V10.1656L6.49023%2010.2031C6.50315%2010.222%206.52038%2010.2375%206.54049%2010.2484C6.56059%2010.2592%206.58301%2010.2652%206.60586%2010.2656C6.68398%2010.2656%206.74648%2010.2031%206.74648%2010.1313C6.74779%2010.1097%206.74348%2010.0882%206.73399%2010.0688L6.75899%2010.0094L6.80586%2010.0563C6.80543%2010.0625%206.80543%2010.0688%206.80586%2010.075C6.80586%2010.15%206.86836%2010.2125%206.94961%2010.2125C7.02461%2010.2125%207.08711%2010.1656%207.09649%2010.0938C7.09649%2010.0938%207.09649%2010.0438%207.10274%2010.0406C7.10899%2010.0406%207.12149%2010.0938%207.12461%2010.0906C7.13503%2010.1194%207.15418%2010.1442%207.1794%2010.1616C7.20461%2010.179%207.23462%2010.188%207.26524%2010.1875C7.28817%2010.1881%207.31092%2010.1832%207.33157%2010.1732C7.35222%2010.1632%207.37018%2010.1484%207.38395%2010.13C7.39771%2010.1117%207.40688%2010.0903%207.4107%2010.0677C7.41451%2010.0451%207.41285%2010.0219%207.40586%2010L7.44336%209.99377Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.45625%2010.1781C8.46563%2010.1531%208.45625%2010.1281%208.4375%2010.1219C8.42188%2010.1156%208.4%2010.1312%208.39063%2010.1562C8.38125%2010.1812%208.39063%2010.2062%208.40938%2010.2125C8.425%2010.2188%208.44688%2010.2031%208.45625%2010.1781ZM7.81563%2010.0531C7.81563%2010.0281%207.80625%2010.0031%207.78438%2010.0031C7.76875%209.99998%207.75313%2010.0187%207.74688%2010.0469C7.74375%2010.0719%207.75625%2010.0937%207.775%2010.0969C7.79375%2010.0969%207.8125%2010.0781%207.81563%2010.0531ZM7.06875%2010.0531C7.06875%2010.0281%207.08125%2010.0031%207.1%2010.0031C7.11875%209.99998%207.13438%2010.0187%207.1375%2010.0469C7.14063%2010.0719%207.12813%2010.0937%207.10938%2010.0969C7.09063%2010.0969%207.075%2010.0781%207.07188%2010.0531H7.06875ZM6.42812%2010.1781C6.42187%2010.1531%206.42813%2010.1281%206.44688%2010.1219C6.46563%2010.1156%206.48438%2010.1312%206.49375%2010.1562C6.50313%2010.1812%206.49375%2010.2062%206.47813%2010.2125C6.45938%2010.2188%206.4375%2010.2031%206.42812%2010.1781Z'%20fill='white'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.70977%209.75C6.74305%209.77072%206.76753%209.80299%206.77852%209.84062C6.77852%209.84062%206.77852%209.83125%206.79727%209.82188C6.81602%209.8125%206.82852%209.8125%206.82852%209.8125L6.82539%209.85313L6.81602%209.92188C6.81072%209.93935%206.80338%209.95613%206.79414%209.97188C6.78765%209.96661%206.78012%209.96277%206.77204%209.96062C6.76396%209.95846%206.75552%209.95804%206.74727%209.95937C6.73936%209.96109%206.73192%209.96449%206.72545%209.96935C6.71897%209.9742%206.71363%209.98039%206.70977%209.9875C6.70977%209.9875%206.68789%209.96875%206.67227%209.94688L6.63789%209.88438L6.61602%209.85C6.61602%209.85%206.63164%209.84375%206.65039%209.85C6.66914%209.85%206.67539%209.85625%206.67539%209.85625C6.67219%209.81817%206.68333%209.78028%206.70664%209.75H6.70977ZM6.71914%2010.0563C6.7096%2010.0482%206.703%2010.0372%206.70039%2010.025C6.70039%2010.0094%206.70039%209.99688%206.70977%209.9875C6.70977%209.9875%206.68164%209.97187%206.65352%209.96562C6.63164%209.95937%206.59102%209.95937%206.58164%209.95937H6.55039L6.55664%209.975C6.56289%209.99062%206.57227%209.99687%206.57227%209.99687C6.53433%2010.0053%206.50091%2010.0276%206.47852%2010.0594C6.51014%2010.0824%206.54889%2010.0934%206.58789%2010.0906L6.58164%2010.1156V10.1344L6.61289%2010.1219C6.62227%2010.1187%206.65977%2010.1062%206.67539%2010.0906C6.70039%2010.0781%206.72227%2010.0563%206.72227%2010.0563H6.71914ZM6.80664%2010.0406C6.81279%2010.0303%206.81501%2010.0181%206.81289%2010.0062C6.81052%209.99395%206.80388%209.98288%206.79414%209.975L6.83789%209.93437C6.85763%209.92274%206.87859%209.91331%206.90039%209.90625L6.93477%209.89375V9.9125C6.93329%209.92097%206.9312%209.92933%206.92852%209.9375C6.96656%209.93459%207.00435%209.94571%207.03477%209.96875C7.01314%209.99989%206.98093%2010.0221%206.94414%2010.0312C6.95005%2010.0445%206.95738%2010.0571%206.96602%2010.0687H6.93477C6.92227%2010.0687%206.88477%2010.0687%206.86289%2010.0625C6.84354%2010.0569%206.82471%2010.0496%206.80664%2010.0406Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.70977%209.9875C6.71363%209.98039%206.71897%209.9742%206.72545%209.96935C6.73192%209.96449%206.73936%209.96109%206.74727%209.95937C6.75552%209.95804%206.76396%209.95846%206.77204%209.96062C6.78012%209.96277%206.78765%209.96661%206.79414%209.97188C6.80338%209.95613%206.81072%209.93935%206.81602%209.92188L6.82539%209.85313L6.82852%209.8125C6.82852%209.8125%206.81602%209.8125%206.79727%209.82188C6.77852%209.83125%206.77852%209.84062%206.77852%209.84062C6.76753%209.80299%206.74305%209.77072%206.70977%209.75H6.70664C6.68333%209.78028%206.67219%209.81817%206.67539%209.85625C6.67539%209.85625%206.66914%209.85%206.65039%209.85C6.63164%209.84375%206.61602%209.85%206.61602%209.85L6.63789%209.88438L6.67227%209.94688C6.68789%209.96875%206.70977%209.9875%206.70977%209.9875ZM6.70977%209.9875C6.70039%209.99688%206.70039%2010.0094%206.70039%2010.025C6.703%2010.0372%206.7096%2010.0482%206.71914%2010.0563H6.72227C6.72227%2010.0563%206.70039%2010.0781%206.67539%2010.0906C6.65977%2010.1062%206.62227%2010.1187%206.61289%2010.1219L6.58164%2010.1344V10.1156L6.58789%2010.0906C6.54889%2010.0934%206.51014%2010.0824%206.47852%2010.0594C6.50091%2010.0276%206.53433%2010.0053%206.57227%209.99687C6.57227%209.99687%206.56289%209.99062%206.55664%209.975L6.55039%209.95937H6.58164C6.59102%209.95937%206.63164%209.95937%206.65352%209.96562C6.68164%209.97187%206.70977%209.9875%206.70977%209.9875ZM6.80664%2010.0406C6.81279%2010.0303%206.81501%2010.0181%206.81289%2010.0062C6.81052%209.99395%206.80388%209.98288%206.79414%209.975L6.83789%209.93437C6.85763%209.92274%206.87859%209.91331%206.90039%209.90625L6.93477%209.89375V9.9125C6.93329%209.92097%206.9312%209.92933%206.92852%209.9375C6.96656%209.93459%207.00435%209.94571%207.03477%209.96875C7.01314%209.99989%206.98093%2010.0221%206.94414%2010.0312C6.95005%2010.0445%206.95738%2010.0571%206.96602%2010.0687H6.93477C6.92227%2010.0687%206.88477%2010.0688%206.86289%2010.0625C6.84354%2010.0569%206.82471%2010.0496%206.80664%2010.0406Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.69336%2010.0125C6.69336%209.98126%206.72461%209.95001%206.75586%209.95001C6.78711%209.95001%206.82461%209.98126%206.82461%2010.0125C6.82461%2010.0469%206.79336%2010.075%206.75898%2010.075C6.75052%2010.0754%206.74205%2010.0741%206.73411%2010.0712C6.72616%2010.0682%206.7189%2010.0637%206.71276%2010.0578C6.70662%2010.052%206.70173%2010.045%206.6984%2010.0372C6.69506%2010.0294%206.69335%2010.021%206.69336%2010.0125Z'%20fill='%23AD1519'/%3e%3cpath%20d='M6.69336%2010.0125C6.69336%209.98126%206.72461%209.95001%206.75586%209.95001C6.78711%209.95001%206.82461%209.98126%206.82461%2010.0125C6.82461%2010.0469%206.79336%2010.075%206.75898%2010.075C6.75052%2010.0754%206.74205%2010.0741%206.73411%2010.0712C6.72616%2010.0682%206.7189%2010.0637%206.71276%2010.0578C6.70662%2010.052%206.70173%2010.045%206.6984%2010.0372C6.69506%2010.0294%206.69335%2010.021%206.69336%2010.0125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.44121%209.65002C7.47486%209.67971%207.49606%209.721%207.50059%209.76565C7.50059%209.76565%207.50684%209.75627%207.52871%209.75002C7.55059%209.74065%207.56621%209.74377%207.56621%209.74377L7.55059%209.78753L7.52559%209.86252C7.51734%209.88142%207.50685%209.89927%207.49434%209.91566C7.48772%209.90822%207.4795%209.90238%207.47029%209.89859C7.46109%209.8948%207.45115%209.89315%207.44121%209.89377C7.42246%209.89377%207.40371%209.90316%207.39121%209.91566C7.39121%209.91566%207.37246%209.89377%207.35996%209.86252L7.33496%209.78753L7.31934%209.74377L7.35684%209.75002C7.37871%209.75627%207.38496%209.76565%207.38496%209.76565C7.38496%209.7219%207.40996%209.67815%207.44121%209.65002Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.39492%209.99376C7.38568%209.98335%207.38018%209.97015%207.3793%209.95626C7.3793%209.94064%207.38242%209.92501%207.3918%209.91564C7.3918%209.91564%207.3668%209.89376%207.33555%209.88439C7.31367%209.87189%207.27305%209.86251%207.25742%209.86251L7.21992%209.85626L7.22617%209.87501L7.23867%209.90314C7.19505%209.90656%207.15406%209.92539%207.12305%209.95626C7.1543%209.98439%207.19492%2010.0063%207.23867%2010.0063L7.22617%2010.0375L7.21992%2010.0563L7.25742%2010.05C7.26992%2010.0469%207.31367%2010.0375%207.33555%2010.0281C7.3668%2010.0156%207.39492%209.99689%207.39492%209.99689V9.99376ZM7.48867%209.99689C7.49943%209.98628%207.50574%209.97198%207.50632%209.95688C7.50691%209.94178%207.50171%209.92704%207.4918%209.91564C7.4918%209.91564%207.51992%209.89376%207.54805%209.88439C7.57272%209.87289%207.59911%209.8655%207.62617%209.86251L7.66367%209.85314L7.66055%209.87501L7.64805%209.90314C7.6918%209.90314%207.73242%209.92814%207.76055%209.95626C7.72988%209.98533%207.69017%2010.003%207.64805%2010.0063C7.6512%2010.0235%207.65645%2010.0403%207.66367%2010.0563L7.62617%2010.05L7.54805%2010.0281C7.5168%2010.0156%207.4918%209.99689%207.4918%209.99689H7.48867ZM8.1793%209.74689C8.1456%209.76859%208.12112%209.80198%208.11055%209.84064L8.08867%209.82189C8.06992%209.81251%208.05742%209.81251%208.05742%209.81251L8.06367%209.85314C8.06367%209.86251%208.06367%209.89376%208.07305%209.92189C8.0793%209.95314%208.0918%209.97189%208.0918%209.97189C8.09838%209.96678%208.10592%209.96305%208.11397%209.9609C8.12202%209.95876%208.13042%209.95824%208.13867%209.95939C8.15742%209.96251%208.16992%209.97501%208.1793%209.98751L8.21367%209.94689C8.23242%209.92189%208.24492%209.89376%208.24805%209.88439L8.26992%209.85001C8.26992%209.85001%208.25742%209.84376%208.23867%209.85001C8.2168%209.85001%208.20742%209.85626%208.20742%209.85626C8.21063%209.81819%208.19948%209.78029%208.17617%209.75001L8.1793%209.74689ZM8.1668%2010.0563C8.17617%2010.0469%208.18242%2010.0375%208.18555%2010.025C8.18848%2010.0122%208.18624%209.9987%208.1793%209.98751C8.1793%209.98751%208.2043%209.97189%208.23242%209.96564C8.2543%209.95939%208.29492%209.95939%208.3043%209.95939H8.33867L8.3293%209.97501C8.32561%209.98257%208.32143%209.98987%208.3168%209.99689C8.35359%2010.006%208.3858%2010.0282%208.40742%2010.0594C8.3758%2010.0824%208.33705%2010.0934%208.29805%2010.0906L8.3043%2010.1156V10.1344L8.27305%2010.1219C8.26367%2010.1188%208.2293%2010.1063%208.21055%2010.0906C8.18555%2010.0781%208.1668%2010.0563%208.1668%2010.0563ZM8.0793%2010.0406C8.0734%2010.0302%208.0712%2010.0181%208.07305%2010.0063C8.07305%209.99064%208.08242%209.98126%208.0918%209.97501C8.0918%209.97501%208.07305%209.95001%208.04805%209.93439C8.0293%209.92189%207.99492%209.90939%207.98555%209.90626C7.97512%209.90213%207.9647%209.89796%207.9543%209.89376V9.91251C7.9543%209.92814%207.96055%209.93751%207.96055%209.93751C7.92151%209.93441%207.88267%209.94551%207.85117%209.96876C7.87305%209.99689%207.9043%2010.0219%207.94492%2010.0313C7.94492%2010.0313%207.93555%2010.0375%207.9293%2010.0531L7.91992%2010.0688H7.95117C7.96367%2010.0688%208.0043%2010.0688%208.02305%2010.0625C8.0424%2010.0569%208.06122%2010.0495%208.0793%2010.0406Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.1793%209.98751C8.16992%209.97501%208.15742%209.96251%208.13867%209.95939C8.13042%209.95824%208.12202%209.95876%208.11397%209.9609C8.10592%209.96305%208.09838%209.96678%208.0918%209.97189C8.0918%209.97189%208.0793%209.95314%208.07305%209.92189C8.06367%209.89376%208.06367%209.86251%208.06367%209.85314L8.05742%209.81251C8.05742%209.81251%208.06992%209.81251%208.08867%209.82189L8.11055%209.84064C8.12112%209.80198%208.1456%209.76859%208.1793%209.74689L8.17617%209.75001C8.19948%209.78029%208.21063%209.81819%208.20742%209.85626C8.20742%209.85626%208.2168%209.85001%208.23867%209.85001C8.25742%209.84376%208.26992%209.85001%208.26992%209.85001L8.24805%209.88439C8.24492%209.89376%208.23242%209.92189%208.21367%209.94689L8.1793%209.98751ZM8.1793%209.98751C8.18624%209.9987%208.18848%2010.0122%208.18555%2010.025C8.18242%2010.0375%208.17617%2010.0469%208.1668%2010.0563C8.1668%2010.0563%208.18555%2010.0781%208.21055%2010.0906C8.2293%2010.1063%208.26367%2010.1188%208.27305%2010.1219L8.3043%2010.1344V10.1156L8.29805%2010.0906C8.33705%2010.0934%208.3758%2010.0824%208.40742%2010.0594C8.3858%2010.0282%208.35359%2010.006%208.3168%209.99689C8.32143%209.98987%208.32561%209.98257%208.3293%209.97501L8.33867%209.95939H8.3043C8.29492%209.95939%208.2543%209.95939%208.23242%209.96564C8.2043%209.97189%208.1793%209.98751%208.1793%209.98751ZM8.0793%2010.0406C8.0734%2010.0302%208.0712%2010.0181%208.07305%2010.0063C8.07305%209.99064%208.08242%209.98126%208.0918%209.97501C8.0918%209.97501%208.07305%209.95001%208.04805%209.93439C8.0293%209.92189%207.99492%209.90939%207.98555%209.90626C7.97512%209.90213%207.9647%209.89796%207.9543%209.89376V9.91251C7.9543%209.92814%207.96055%209.93751%207.96055%209.93751C7.92151%209.93441%207.88267%209.94551%207.85117%209.96876C7.87305%209.99689%207.9043%2010.0219%207.94492%2010.0313C7.94492%2010.0313%207.93555%2010.0375%207.9293%2010.0531L7.91992%2010.0688H7.95117C7.96367%2010.0688%208.0043%2010.0688%208.02305%2010.0625C8.0424%2010.0569%208.06122%2010.0495%208.0793%2010.0406ZM7.39492%209.99376C7.38568%209.98335%207.38018%209.97015%207.3793%209.95626C7.3793%209.94064%207.38242%209.92501%207.3918%209.91564C7.3918%209.91564%207.3668%209.89376%207.33555%209.88439C7.31367%209.87189%207.27305%209.86251%207.25742%209.86251L7.21992%209.85626L7.22617%209.87501L7.23867%209.90314C7.19505%209.90656%207.15406%209.92539%207.12305%209.95626C7.1543%209.98439%207.19492%2010.0063%207.23867%2010.0063L7.22617%2010.0375L7.21992%2010.0563L7.25742%2010.05C7.26992%2010.0469%207.31367%2010.0375%207.33555%2010.0281C7.3668%2010.0156%207.39492%209.99689%207.39492%209.99689V9.99376ZM7.48867%209.99689C7.49943%209.98628%207.50574%209.97198%207.50632%209.95688C7.50691%209.94178%207.50171%209.92704%207.4918%209.91564C7.4918%209.91564%207.51992%209.89376%207.54805%209.88439C7.57272%209.87289%207.59911%209.8655%207.62617%209.86251L7.66367%209.85314L7.66055%209.87501L7.64805%209.90314C7.6918%209.90314%207.73242%209.92814%207.76055%209.95626C7.72988%209.98533%207.69017%2010.003%207.64805%2010.0063C7.6512%2010.0235%207.65645%2010.0403%207.66367%2010.0563L7.62617%2010.05L7.54805%2010.0281C7.5168%2010.0156%207.4918%209.99689%207.4918%209.99689H7.48867Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.06348%2010.0125C8.06348%209.98126%208.09473%209.95001%208.12598%209.95001C8.15723%209.95001%208.1916%209.98126%208.1916%2010.0125C8.1916%2010.0291%208.18502%2010.045%208.1733%2010.0567C8.16157%2010.0684%208.14568%2010.075%208.1291%2010.075C8.12063%2010.0754%208.11217%2010.0741%208.10422%2010.0712C8.09628%2010.0682%208.08901%2010.0637%208.08287%2010.0578C8.07673%2010.052%208.07185%2010.045%208.06851%2010.0372C8.06518%2010.0294%208.06347%2010.021%208.06348%2010.0125ZM8.78847%2010.15C8.77597%2010.1344%208.74472%2010.1375%208.71972%2010.1563C8.69472%2010.1781%208.68847%2010.2063%208.7041%2010.225C8.71972%2010.2406%208.75097%2010.2375%208.77597%2010.2156C8.79785%2010.1969%208.80722%2010.1656%208.7916%2010.1531'%20fill='%23AD1519'/%3e%3cpath%20d='M8.78847%2010.15C8.77597%2010.1344%208.74472%2010.1375%208.71972%2010.1563C8.69472%2010.1781%208.68847%2010.2063%208.7041%2010.225C8.71972%2010.2406%208.75097%2010.2375%208.77597%2010.2156C8.79785%2010.1969%208.80722%2010.1656%208.7916%2010.1531M8.06348%2010.0125C8.06348%209.98126%208.09473%209.95001%208.12598%209.95001C8.15723%209.95001%208.1916%209.98126%208.1916%2010.0125C8.1916%2010.0291%208.18502%2010.045%208.1733%2010.0567C8.16157%2010.0684%208.14568%2010.075%208.1291%2010.075C8.12063%2010.0754%208.11217%2010.0741%208.10422%2010.0712C8.09628%2010.0682%208.08901%2010.0637%208.08287%2010.0578C8.07673%2010.052%208.07185%2010.045%208.06851%2010.0372C8.06518%2010.0294%208.06347%2010.021%208.06348%2010.0125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.69727%2010.1875L8.71914%2010.1562C8.74102%2010.1375%208.77539%2010.1344%208.79102%2010.15L8.79414%2010.1562C8.79414%2010.1562%208.82539%2010.0937%208.86602%2010.075C8.90664%2010.0531%208.97227%2010.0594%208.97227%2010.0594C8.97227%2010.0476%208.96991%2010.036%208.96532%2010.0252C8.96073%2010.0143%208.954%2010.0045%208.94554%209.99637C8.93708%209.9882%208.92707%209.98182%208.91609%209.97762C8.90511%209.97341%208.89339%209.97145%208.88164%209.97187C8.8676%209.97112%208.85356%209.97354%208.84058%209.97895C8.8276%209.98436%208.816%209.99262%208.80664%2010.0031L8.80039%209.97187C8.80039%209.97187%208.75977%209.98125%208.74102%2010.0281C8.72227%2010.075%208.74102%2010.1406%208.74102%2010.1406C8.74102%2010.1406%208.73164%2010.1125%208.71914%2010.0937C8.69738%2010.0727%208.67196%2010.0557%208.64414%2010.0437L8.60352%2010.0219L8.60039%2010.0375C8.59972%2010.0458%208.59972%2010.0542%208.60039%2010.0625C8.56115%2010.0584%208.52151%2010.0638%208.48477%2010.0781C8.50154%2010.1098%208.52933%2010.1343%208.56289%2010.1469L8.53789%2010.1687C8.53331%2010.1736%208.52913%2010.1788%208.52539%2010.1844L8.56602%2010.1906L8.64414%2010.1969C8.66196%2010.1958%208.6797%2010.1938%208.69727%2010.1906V10.1875ZM6.18789%2010.1906C6.18789%2010.1781%206.17852%2010.1688%206.16602%2010.1594C6.14414%2010.1375%206.11289%2010.1344%206.09727%2010.15L6.09102%2010.1594C6.09102%2010.1594%206.05977%2010.0969%206.01914%2010.075C5.98164%2010.0531%205.91602%2010.0594%205.91602%2010.0594C5.91602%2010.0479%205.91828%2010.0365%205.92268%2010.0259C5.92707%2010.0153%205.93352%2010.0056%205.94164%209.9975C5.94977%209.98938%205.95941%209.98293%205.97003%209.97853C5.98065%209.97414%205.99203%209.97187%206.00352%209.97187C6.03477%209.97187%206.06289%209.98437%206.07852%2010.0031L6.08477%209.97187C6.08477%209.97187%206.12539%209.98125%206.14727%2010.0281C6.16289%2010.075%206.14414%2010.1406%206.14414%2010.1406C6.14414%2010.1406%206.15352%2010.1125%206.16914%2010.0937C6.1909%2010.0727%206.21632%2010.0557%206.24414%2010.0437L6.28477%2010.0219V10.0625C6.324%2010.0584%206.36365%2010.0638%206.40039%2010.0781C6.38361%2010.1098%206.35583%2010.1343%206.32227%2010.1469L6.34727%2010.1687L6.35977%2010.1844L6.32227%2010.1906L6.24102%2010.1969C6.2232%2010.1958%206.20546%2010.1937%206.18789%2010.1906Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.18789%2010.1906C6.18789%2010.1781%206.17852%2010.1688%206.16602%2010.1594C6.14414%2010.1375%206.11289%2010.1344%206.09727%2010.15L6.09102%2010.1594C6.09102%2010.1594%206.05977%2010.0969%206.01914%2010.075C5.98164%2010.0531%205.91602%2010.0594%205.91602%2010.0594C5.91602%2010.0479%205.91828%2010.0365%205.92268%2010.0259C5.92707%2010.0153%205.93352%2010.0056%205.94164%209.9975C5.94977%209.98938%205.95941%209.98293%205.97003%209.97853C5.98065%209.97414%205.99203%209.97187%206.00352%209.97187C6.03477%209.97187%206.06289%209.98437%206.07852%2010.0031L6.08477%209.97187C6.08477%209.97187%206.12539%209.98125%206.14727%2010.0281C6.16289%2010.075%206.14414%2010.1406%206.14414%2010.1406C6.14414%2010.1406%206.15352%2010.1125%206.16914%2010.0937C6.1909%2010.0727%206.21632%2010.0557%206.24414%2010.0437L6.28477%2010.0219V10.0625C6.324%2010.0584%206.36365%2010.0638%206.40039%2010.0781C6.38361%2010.1098%206.35583%2010.1343%206.32227%2010.1469L6.34727%2010.1687L6.35977%2010.1844L6.32227%2010.1906L6.24102%2010.1969C6.2232%2010.1958%206.20546%2010.1937%206.18789%2010.1906ZM8.69727%2010.1875L8.71914%2010.1562C8.74102%2010.1375%208.77539%2010.1344%208.79102%2010.15L8.79414%2010.1562C8.79414%2010.1562%208.82539%2010.0937%208.86602%2010.075C8.90664%2010.0531%208.97227%2010.0594%208.97227%2010.0594C8.97227%2010.0476%208.96991%2010.036%208.96532%2010.0252C8.96073%2010.0143%208.954%2010.0045%208.94554%209.99637C8.93708%209.9882%208.92707%209.98182%208.91609%209.97762C8.90511%209.97341%208.89339%209.97145%208.88164%209.97187C8.8676%209.97112%208.85356%209.97354%208.84058%209.97895C8.8276%209.98436%208.816%209.99262%208.80664%2010.0031L8.80039%209.97187C8.80039%209.97187%208.75977%209.98125%208.74102%2010.0281C8.72227%2010.075%208.74102%2010.1406%208.74102%2010.1406C8.74102%2010.1406%208.73164%2010.1125%208.71914%2010.0937C8.69738%2010.0727%208.67196%2010.0557%208.64414%2010.0437L8.60352%2010.0219L8.60039%2010.0375C8.59972%2010.0458%208.59972%2010.0542%208.60039%2010.0625C8.56115%2010.0584%208.52151%2010.0638%208.48477%2010.0781C8.50154%2010.1098%208.52933%2010.1343%208.56289%2010.1469L8.53789%2010.1687C8.53331%2010.1736%208.52913%2010.1788%208.52539%2010.1844L8.56602%2010.1906L8.64414%2010.1969C8.66196%2010.1958%208.6797%2010.1938%208.69727%2010.1906V10.1875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.09426%2010.15C6.11301%2010.1344%206.14426%2010.1375%206.16926%2010.1594C6.19114%2010.1781%206.20051%2010.2062%206.18176%2010.2219C6.16614%2010.2406%206.13489%2010.2375%206.11301%2010.2156C6.08801%2010.1969%206.08176%2010.1656%206.09739%2010.1531L6.09426%2010.15ZM7.37864%209.95624C7.37864%209.92186%207.40676%209.89374%207.44114%209.89374C7.47551%209.89374%207.50676%209.92186%207.50676%209.95624C7.50676%209.98749%207.47551%2010.0187%207.44426%2010.0187C7.4358%2010.0192%207.42733%2010.0179%207.41938%2010.0149C7.41144%2010.012%207.40417%2010.0074%207.39803%2010.0016C7.3919%209.99573%207.38701%209.9887%207.38368%209.9809C7.38034%209.97311%207.37863%209.96472%207.37864%209.95624Z'%20fill='%23AD1519'/%3e%3cpath%20d='M7.37864%209.95624C7.37864%209.92186%207.40676%209.89374%207.44114%209.89374C7.47551%209.89374%207.50676%209.92186%207.50676%209.95624C7.50676%209.98749%207.47551%2010.0187%207.44426%2010.0187C7.4358%2010.0192%207.42733%2010.0179%207.41938%2010.0149C7.41144%2010.012%207.40417%2010.0074%207.39803%2010.0016C7.3919%209.99573%207.38701%209.9887%207.38368%209.9809C7.38034%209.97311%207.37863%209.96472%207.37864%209.95624ZM6.09426%2010.15C6.11301%2010.1344%206.14426%2010.1375%206.16926%2010.1594C6.19114%2010.1781%206.20051%2010.2062%206.18176%2010.2219C6.16614%2010.2406%206.13489%2010.2375%206.11301%2010.2156C6.08801%2010.1969%206.08176%2010.1656%206.09739%2010.1531L6.09426%2010.15Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.30762%209.01874C7.30762%208.94999%207.36699%208.89374%207.44199%208.89374C7.51699%208.89374%207.57324%208.94999%207.57324%209.01874C7.57324%209.08749%207.51387%209.14374%207.43887%209.14374C7.42204%209.14415%207.4053%209.14125%207.38959%209.13519C7.37389%209.12913%207.35953%209.12004%207.34734%209.10843C7.33515%209.09682%207.32537%209.08293%207.31856%209.06754C7.31174%209.05215%207.30802%209.03557%207.30762%209.01874Z'%20fill='%23005BBF'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.40762%208.66565V8.7344H7.33262V8.80315H7.40449V9.00002H7.31387L7.30762%209.01877C7.30762%209.03752%207.31074%209.05315%207.31699%209.06877H7.56387C7.57012%209.05315%207.57324%209.03752%207.57324%209.01877L7.56699%209.00002H7.47949V8.80315H7.55137V8.7344H7.47949V8.66565H7.40449H7.40762Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.45371%2014.3313C7.06938%2014.3301%206.69023%2014.2425%206.34434%2014.075C6.22458%2014.017%206.12356%2013.9264%206.05282%2013.8137C5.98209%2013.7009%205.9445%2013.5706%205.94434%2013.4375V12.4375H8.95684V13.4375C8.95668%2013.5706%208.91908%2013.7009%208.84835%2013.8137C8.77761%2013.9264%208.6766%2014.017%208.55684%2014.075C8.2132%2014.2426%207.83605%2014.3302%207.45371%2014.3313Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M7.45371%2014.3313C7.06938%2014.3301%206.69023%2014.2425%206.34434%2014.075C6.22458%2014.017%206.12356%2013.9264%206.05282%2013.8137C5.98209%2013.7009%205.9445%2013.5706%205.94434%2013.4375V12.4375H8.95684V13.4375C8.95668%2013.5706%208.91908%2013.7009%208.84835%2013.8137C8.77761%2013.9264%208.6766%2014.017%208.55684%2014.075C8.2132%2014.2426%207.83605%2014.3302%207.45371%2014.3313Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44824%2012.4375H8.95762V10.7656H7.44824V12.4375Z'%20fill='%23CCCCCC'/%3e%3cpath%20d='M7.44824%2012.4375H8.95762V10.7656H7.44824V12.4375Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44765%2013.4375C7.44765%2013.8313%207.11328%2014.1531%206.69765%2014.1531C6.28203%2014.1531%205.94141%2013.8313%205.94141%2013.4344V12.4344H7.44765V13.4344'%20fill='%23AD1519'/%3e%3cpath%20d='M6.26855%2014.0281C6.31543%2014.0531%206.38105%2014.0906%206.4498%2014.1094L6.44668%2012.4H6.26855V14.025V14.0281Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M5.9375%2013.425C5.94056%2013.5961%206.0011%2013.7612%206.10937%2013.8937V12.4094H5.94063V13.425H5.9375Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.60645%2014.1469C6.66462%2014.153%206.72327%2014.153%206.78145%2014.1469V12.4H6.60645V14.15V14.1469Z'%20fill='%23C7B500'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M6.9377%2014.1094C7.00205%2014.0936%207.06331%2014.0672%207.11895%2014.0313V12.4H6.9377L6.93457%2014.1094H6.9377Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M5.94063%2012.4375H7.44687V10.7656H5.9375V12.4375H5.94063Z'%20fill='%23AD1519'/%3e%3cpath%20d='M5.94063%2012.4375H7.44687V10.7656H5.9375V12.4375H5.94063Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.28223%2013.875C7.35723%2013.8125%207.42598%2013.6625%207.45098%2013.4938L7.4541%2012.4H7.28223L7.28535%2013.8781L7.28223%2013.875Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44765%2013.4375C7.44765%2013.8313%207.11328%2014.1531%206.69765%2014.1531C6.28203%2014.1531%205.94141%2013.8313%205.94141%2013.4344V12.4344H7.44765V13.4344'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M8.95762%2012.4375V13.4375C8.95762%2013.8313%208.62012%2014.1531%208.20449%2014.1531C7.78887%2014.1531%207.44824%2013.8313%207.44824%2013.4344V12.4344H8.95762'%20fill='%23AD1519'/%3e%3cpath%20d='M8.95762%2012.4375V13.4375C8.95762%2013.8313%208.62012%2014.1531%208.20449%2014.1531C7.78887%2014.1531%207.44824%2013.8313%207.44824%2013.4344V12.4344H8.95762'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.72142%2013.1906L7.72454%2013.2063C7.72454%2013.225%207.70892%2013.2375%207.69017%2013.2375C7.68581%2013.2379%207.68141%2013.2375%207.67725%2013.2361C7.67309%2013.2347%207.66926%2013.2325%207.66602%2013.2295C7.66278%2013.2266%207.66019%2013.223%207.65843%2013.219C7.65667%2013.215%207.65577%2013.2106%207.65579%2013.2063V13.1906H7.60892C7.60506%2013.21%207.60873%2013.2302%207.61917%2013.247C7.62961%2013.2639%207.64605%2013.2761%207.66517%2013.2812V13.4031H7.71517V13.2812C7.72731%2013.2776%207.73843%2013.2712%207.74766%2013.2625C7.75688%2013.2539%207.76395%2013.2431%207.76829%2013.2312H7.90579V13.1938H7.71829L7.72142%2013.1906ZM8.39954%2013.1938V13.2312H8.27454C8.27227%2013.2379%208.26912%2013.2442%208.26517%2013.25L8.40892%2013.4125L8.37141%2013.4438L8.22767%2013.2781L8.22142%2013.2812V13.5531H8.17142V13.2812H8.16517L8.01517%2013.4438L7.97767%2013.4125L8.12454%2013.2469C8.12202%2013.2429%208.11992%2013.2388%208.11829%2013.2344H7.99329V13.1875H8.39954V13.1938ZM8.48079%2013.1938V13.2312H8.61829C8.62766%2013.2562%208.64641%2013.275%208.67141%2013.2812V13.4031H8.72141V13.2812C8.73764%2013.2765%208.7519%2013.2666%208.76204%2013.2531C8.77218%2013.2396%208.77766%2013.2232%208.77766%2013.2063C8.77832%2013.2011%208.77832%2013.1958%208.77766%2013.1906H8.72766L8.73079%2013.2063C8.73079%2013.225%208.71516%2013.2375%208.69954%2013.2375C8.67766%2013.2375%208.66204%2013.225%208.66204%2013.2063C8.66171%2013.2009%208.66279%2013.1955%208.66516%2013.1906H8.48079V13.1938ZM8.27141%2013.8812C8.31109%2013.8756%208.34993%2013.8651%208.38704%2013.85L8.41204%2013.8937C8.36902%2013.9119%208.32387%2013.9245%208.27766%2013.9312C8.27336%2013.9494%208.26294%2013.9655%208.24814%2013.9769C8.23334%2013.9883%208.21508%2013.9943%208.19642%2013.9937C8.17829%2013.9935%208.16075%2013.9873%208.14659%2013.976C8.13244%2013.9646%208.12247%2013.9489%208.11829%2013.9312C8.06889%2013.9253%208.02053%2013.9127%207.97454%2013.8937L7.99954%2013.85C8.04017%2013.8656%208.08079%2013.8781%208.12454%2013.8812C8.12917%2013.8716%208.13571%2013.8631%208.14377%2013.8561C8.15183%2013.8491%208.16124%2013.8438%208.17142%2013.8406V13.6312H8.22142V13.8406C8.24329%2013.8469%208.26204%2013.8625%208.27141%2013.8844V13.8812ZM7.92767%2013.8125L7.90267%2013.8562C7.86071%2013.8295%207.82283%2013.7969%207.79017%2013.7594C7.76204%2013.7656%207.73392%2013.7594%207.71204%2013.7437C7.70393%2013.7374%207.69722%2013.7294%207.69232%2013.7204C7.68741%2013.7113%207.68443%2013.7014%207.68355%2013.6911C7.68267%2013.6808%207.68391%2013.6705%207.6872%2013.6607C7.69049%2013.651%207.69576%2013.642%207.70267%2013.6344L7.70579%2013.6312C7.68416%2013.5838%207.67044%2013.5331%207.66517%2013.4812H7.71829C7.72204%2013.5243%207.73259%2013.5665%207.74954%2013.6062C7.76517%2013.6062%207.78079%2013.6062%207.79329%2013.6125L7.92142%2013.4719L7.96204%2013.5031L7.83392%2013.6437C7.84954%2013.6719%207.84954%2013.7062%207.83079%2013.7312C7.85932%2013.7625%207.8919%2013.7899%207.92767%2013.8125ZM7.74017%2013.6625C7.74954%2013.65%207.77142%2013.6469%207.78704%2013.6625C7.80267%2013.6781%207.80267%2013.6937%207.79017%2013.7062C7.78368%2013.7128%207.77499%2013.7168%207.76576%2013.7174C7.75654%2013.718%207.74742%2013.7151%207.74017%2013.7094C7.73684%2013.7064%207.73418%2013.7028%207.73235%2013.6988C7.73053%2013.6948%207.72959%2013.6904%207.72959%2013.6859C7.72959%2013.6815%207.73053%2013.6771%207.73235%2013.6731C7.73418%2013.669%207.73684%2013.6654%207.74017%2013.6625ZM7.67142%2013.5219L7.62142%2013.5125L7.61204%2013.3781L7.66517%2013.3594V13.4375C7.66517%2013.4687%207.66517%2013.4938%207.67142%2013.5219ZM7.71517%2013.3562L7.76829%2013.3687V13.4375C7.76829%2013.4125%207.77767%2013.5031%207.77767%2013.5031L7.72454%2013.5219C7.71869%2013.4941%207.71555%2013.4659%207.71517%2013.4375V13.3562ZM7.89017%2013.7844C7.93504%2013.82%207.9858%2013.8475%208.04017%2013.8656L8.05267%2013.8156C8.00786%2013.8018%207.96563%2013.7807%207.92767%2013.7531L7.89017%2013.7844ZM7.86517%2013.8281C7.91058%2013.8629%207.9612%2013.8904%208.01517%2013.9094L7.97767%2013.9437C7.93365%2013.928%207.89168%2013.907%207.85267%2013.8812L7.86517%2013.8281ZM7.93392%2013.5344L7.98392%2013.5562L8.07767%2013.4531L8.04642%2013.4094L7.93392%2013.5344ZM7.89329%2013.5031L7.86204%2013.4594L7.95579%2013.3562L8.00579%2013.3781L7.89329%2013.5031ZM8.45891%2013.8125L8.48391%2013.8562C8.52584%2013.8295%208.56372%2013.7969%208.59641%2013.7594C8.62454%2013.7656%208.65266%2013.7594%208.67454%2013.7437C8.68265%2013.7374%208.68936%2013.7294%208.69426%2013.7204C8.69917%2013.7113%208.70215%2013.7014%208.70303%2013.6911C8.70391%2013.6808%208.70267%2013.6705%208.69938%2013.6607C8.69609%2013.651%208.69082%2013.642%208.68391%2013.6344L8.68079%2013.6312C8.70258%2013.5839%208.71631%2013.5332%208.72141%2013.4812H8.66829C8.66443%2013.5243%208.65389%2013.5665%208.63704%2013.6062C8.62217%2013.6048%208.60717%2013.607%208.59329%2013.6125L8.46516%2013.4719L8.42454%2013.5031L8.55266%2013.6437C8.54396%2013.6568%208.53957%2013.6723%208.54013%2013.688C8.54069%2013.7037%208.54617%2013.7188%208.55579%2013.7312C8.52732%2013.7626%208.49473%2013.7899%208.45891%2013.8125ZM8.64641%2013.6625C8.63976%2013.6572%208.6315%2013.6543%208.62298%2013.6543C8.61446%2013.6543%208.60619%2013.6572%208.59954%2013.6625C8.59338%2013.6679%208.5896%2013.6755%208.58901%2013.6837C8.58843%2013.6919%208.59109%2013.7%208.59641%2013.7062C8.6029%2013.7128%208.61159%2013.7168%208.62082%2013.7174C8.63004%2013.718%208.63916%2013.7151%208.64641%2013.7094C8.64974%2013.7064%208.6524%2013.7028%208.65423%2013.6988C8.65605%2013.6948%208.65699%2013.6904%208.65699%2013.6859C8.65699%2013.6815%208.65605%2013.6771%208.65423%2013.6731C8.6524%2013.669%208.64974%2013.6654%208.64641%2013.6625ZM8.71516%2013.5219L8.76516%2013.5125L8.77454%2013.3781L8.72141%2013.3594V13.4375C8.72141%2013.4687%208.72141%2013.4969%208.71516%2013.525V13.5219ZM8.67141%2013.3562L8.61829%2013.3687V13.4375C8.61829%2013.4125%208.60891%2013.5031%208.60891%2013.5031L8.66204%2013.5219L8.67141%2013.4375V13.3562ZM8.49641%2013.7844C8.45154%2013.82%208.40078%2013.8475%208.34642%2013.8656L8.33391%2013.8156C8.37872%2013.8018%208.42095%2013.7807%208.45891%2013.7531L8.49641%2013.7844ZM8.52141%2013.8281C8.476%2013.8629%208.42538%2013.8904%208.37141%2013.9094L8.40892%2013.9437C8.45294%2013.928%208.49491%2013.907%208.53391%2013.8812L8.52141%2013.8281ZM8.45266%2013.5344L8.40266%2013.5562L8.31204%2013.4531L8.34329%2013.4094L8.45266%2013.5344ZM8.49329%2013.5031L8.52454%2013.4594L8.43079%2013.3562L8.38079%2013.3781L8.49329%2013.5031ZM7.86517%2013.2312L7.88079%2013.2812H8.02142L8.03704%2013.2312H7.86517ZM8.52454%2013.2312L8.50891%2013.2812H8.36829L8.35267%2013.2312H8.52454ZM8.16204%2013.9156C8.16204%2013.8969%208.17767%2013.8844%208.19642%2013.8844C8.20077%2013.8839%208.20518%2013.8844%208.20934%2013.8858C8.2135%2013.8872%208.21732%2013.8894%208.22056%2013.8923C8.2238%2013.8953%208.22639%2013.8989%208.22815%2013.9029C8.22991%2013.9069%208.23081%2013.9112%208.23079%2013.9156C8.23079%2013.9344%208.21516%2013.9469%208.19954%2013.9469C8.19502%2013.9473%208.19046%2013.9468%208.18613%2013.9455C8.18179%2013.9442%208.17777%2013.942%208.17428%2013.9391C8.17079%2013.9362%208.16792%2013.9326%208.16582%2013.9286C8.16372%2013.9245%208.16243%2013.9201%208.16204%2013.9156ZM8.22142%2013.6719L8.27454%2013.6594V13.525L8.22142%2013.5094V13.6719ZM8.17142%2013.6719L8.11829%2013.6594V13.525L8.17142%2013.5094V13.6719Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.6084%2013.1938C7.61465%2013.1625%207.63965%2013.1438%207.66465%2013.1313V12.9688H7.71465V13.1344C7.73965%2013.1438%207.76152%2013.1625%207.76777%2013.1844H7.90527V13.1938H7.71777C7.71459%2013.1882%207.71005%2013.1836%207.70458%2013.1803C7.69911%2013.177%207.6929%2013.1752%207.68652%2013.175C7.67402%2013.175%207.66465%2013.1844%207.65527%2013.1938H7.6084ZM7.98965%2013.1938V13.1844H8.11777C8.11962%2013.1811%208.12171%2013.178%208.12402%2013.175L7.96777%2012.9969L8.00527%2012.9656L8.16152%2013.1406L8.16777%2013.1375V12.9063H8.21777V13.1344H8.22715L8.38027%2012.9625L8.41777%2012.9938L8.26465%2013.1656L8.27402%2013.1844H8.39902V13.1938H7.99277H7.98965ZM8.66465%2013.1938C8.66758%2013.188%208.67206%2013.1832%208.67758%2013.1799C8.68311%2013.1766%208.68946%2013.1749%208.6959%2013.175C8.71152%2013.175%208.7209%2013.1844%208.72715%2013.1938H8.77715C8.7709%2013.1625%208.74902%2013.1438%208.7209%2013.1313V12.9688H8.6709V13.1344C8.6459%2013.1438%208.62715%2013.1594%208.61777%2013.1844H8.48027V13.1938H8.66777H8.66465ZM7.72402%2012.725L7.91152%2012.9375L7.95215%2012.9063L7.76152%2012.6969L7.7709%2012.6781H7.9084V12.625H7.7709C7.76504%2012.6091%207.75436%2012.5954%207.74035%2012.5859C7.72634%2012.5764%207.70971%2012.5715%207.69277%2012.5719C7.6821%2012.5715%207.67145%2012.5731%207.66143%2012.5768C7.65142%2012.5805%207.64223%2012.5862%207.63439%2012.5934C7.62655%2012.6007%207.62022%2012.6094%207.61576%2012.6191C7.6113%2012.6288%207.6088%2012.6393%207.6084%2012.65C7.6084%2012.6669%207.61388%2012.6834%207.62402%2012.6969C7.63417%2012.7104%207.64842%2012.7203%207.66465%2012.725V12.8875H7.71465V12.725H7.72402ZM8.72402%2012.725V12.8906H8.6709V12.7281C8.66655%2012.7264%208.66237%2012.7243%208.6584%2012.7219L8.4709%2012.9344L8.43027%2012.9031L8.62402%2012.6875L8.6209%2012.6781H8.48027V12.625H8.6209C8.62657%2012.6096%208.63678%2012.5963%208.65017%2012.5868C8.66355%2012.5773%208.6795%2012.5721%208.6959%2012.5719C8.70657%2012.5715%208.71722%2012.5731%208.72724%2012.5768C8.73726%2012.5805%208.74645%2012.5862%208.75428%2012.5934C8.76212%2012.6007%208.76845%2012.6094%208.77291%2012.6191C8.77737%2012.6288%208.77987%2012.6393%208.78027%2012.65C8.78009%2012.6673%208.77415%2012.6841%208.76341%2012.6976C8.75266%2012.7112%208.73771%2012.7208%208.7209%2012.725H8.72402ZM8.2209%2012.725V12.8281H8.16777V12.7281C8.15563%2012.7245%208.14451%2012.7181%208.13528%2012.7094C8.12606%2012.7007%208.11899%2012.69%208.11465%2012.6781H7.98965V12.625H8.11465C8.12051%2012.6091%208.13119%2012.5954%208.1452%2012.5859C8.1592%2012.5764%208.17584%2012.5715%208.19277%2012.5719C8.23027%2012.5719%208.26152%2012.5937%208.2709%2012.625H8.3959V12.675H8.2709C8.26708%2012.6867%208.26057%2012.6973%208.25188%2012.706C8.24319%2012.7147%208.23258%2012.7212%208.2209%2012.725ZM7.66465%2012.85L7.61152%2012.8625V12.9969L7.66465%2013.0125V12.85ZM7.71465%2012.85L7.76777%2012.8625V12.9969L7.71465%2013.0125V12.85ZM8.6709%2012.85L8.61777%2012.8625V12.9969L8.6709%2013.0125V12.85ZM8.7209%2012.85L8.77402%2012.8625V12.9969L8.7209%2013.0125V12.85ZM7.92402%2012.875L7.97402%2012.8531L8.06465%2012.9563L8.0334%2013L7.92402%2012.875ZM7.8834%2012.9063L7.85215%2012.95L7.9459%2013.0531L7.9959%2013.0313L7.8834%2012.9063ZM8.46152%2012.8719L8.41152%2012.85L8.31777%2012.9531L8.34902%2012.9969L8.46152%2012.8719ZM8.49902%2012.9031L8.53027%2012.9469L8.43652%2013.05L8.38965%2013.0281L8.49902%2012.9031ZM7.86465%2013.1844L7.88027%2013.1344H8.0209L8.03652%2013.1844H7.86465ZM7.65527%2012.6531C7.65527%2012.6344%207.6709%2012.6219%207.69277%2012.6219C7.70106%2012.6219%207.70901%2012.6252%207.71487%2012.631C7.72073%2012.6369%207.72402%2012.6448%207.72402%2012.6531C7.72402%2012.6719%207.71152%2012.6844%207.69277%2012.6844C7.68826%2012.6848%207.6837%2012.6843%207.67936%2012.683C7.67503%2012.6817%207.671%2012.6795%207.66751%2012.6766C7.66403%2012.6737%207.66115%2012.6701%207.65905%2012.6661C7.65695%2012.662%207.65567%2012.6576%207.65527%2012.6531ZM8.0334%2012.6781L8.01777%2012.7281H7.87715L7.86152%2012.6781H8.0334ZM8.0334%2012.6281L8.01777%2012.5781H7.87715L7.86152%2012.6281H8.0334ZM8.52402%2013.1844L8.5084%2013.1344H8.36777L8.35215%2013.1844H8.52402ZM8.66152%2012.6531C8.66152%2012.6344%208.67715%2012.6219%208.6959%2012.6219C8.70026%2012.6214%208.70466%2012.6219%208.70882%2012.6233C8.71298%2012.6247%208.7168%2012.6269%208.72005%2012.6298C8.72329%2012.6328%208.72587%2012.6364%208.72763%2012.6404C8.7294%2012.6444%208.7303%2012.6487%208.73027%2012.6531C8.73027%2012.6719%208.71465%2012.6844%208.69902%2012.6844C8.69451%2012.6848%208.68995%2012.6843%208.68561%2012.683C8.68128%2012.6817%208.67725%2012.6795%208.67376%2012.6766C8.67028%2012.6737%208.6674%2012.6701%208.6653%2012.6661C8.6632%2012.662%208.66192%2012.6576%208.66152%2012.6531ZM8.1584%2012.6531C8.1584%2012.6344%208.17402%2012.6219%208.19277%2012.6219C8.19713%2012.6214%208.20153%2012.6219%208.20569%2012.6233C8.20985%2012.6247%208.21368%2012.6269%208.21692%2012.6298C8.22016%2012.6328%208.22275%2012.6364%208.22451%2012.6404C8.22627%2012.6444%208.22717%2012.6487%208.22715%2012.6531C8.22715%2012.6719%208.21152%2012.6844%208.19277%2012.6844C8.18417%2012.6844%208.17587%2012.6812%208.16951%2012.6754C8.16314%2012.6697%208.15918%2012.6617%208.1584%2012.6531ZM8.35215%2012.6781L8.36777%2012.7281H8.51152L8.52715%2012.6781H8.35215ZM8.35215%2012.6281L8.36777%2012.5781H8.51152L8.52715%2012.6281H8.35215ZM8.16777%2012.7844L8.11465%2012.8V12.9344L8.16777%2012.95V12.7813V12.7844ZM8.2209%2012.7813L8.2709%2012.7969V12.9313L8.2209%2012.9469V12.7813Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.86465%2013.8281C7.91006%2013.8629%207.96068%2013.8904%208.01465%2013.9094L7.97715%2013.9438C7.93313%2013.928%207.89117%2013.907%207.85215%2013.8813L7.86465%2013.8281ZM8.2709%2013.8844C8.31071%2013.8777%208.34955%2013.8662%208.38652%2013.85L8.41152%2013.8938C8.36851%2013.9119%208.32335%2013.9245%208.27715%2013.9312C8.27285%2013.9494%208.26242%2013.9655%208.24762%2013.9769C8.23283%2013.9883%208.21456%2013.9943%208.1959%2013.9937C8.17777%2013.9935%208.16023%2013.9873%208.14608%2013.976C8.13192%2013.9646%208.12196%2013.9489%208.11777%2013.9312C8.06837%2013.9253%208.02001%2013.9127%207.97402%2013.8938L7.99902%2013.85C8.03965%2013.8656%208.08027%2013.8781%208.12402%2013.8813C8.12865%2013.8716%208.13519%2013.8631%208.14326%2013.8561C8.15132%2013.8491%208.16073%2013.8438%208.1709%2013.8406V13.6313H8.2209V13.8406C8.24277%2013.8469%208.26152%2013.8625%208.2709%2013.8844ZM8.12402%2013.2469C8.12134%2013.2419%208.11924%2013.2367%208.11777%2013.2313H7.99277V13.1875H8.11777C8.11949%2013.1832%208.12158%2013.179%208.12402%2013.175L7.96777%2013L8.00527%2012.9688L8.16152%2013.1406C8.16361%2013.1405%208.16569%2013.1405%208.16777%2013.1406V12.9063H8.2209V13.1344H8.22715L8.38027%2012.9625L8.41777%2012.9938L8.26465%2013.1656L8.27402%2013.1844H8.39902V13.2313H8.27402C8.27402%2013.2375%208.26777%2013.2438%208.26465%2013.2469L8.41152%2013.4125L8.3709%2013.4438L8.22715%2013.2781L8.2209%2013.2813V13.5531H8.1709V13.2813L8.16465%2013.2781L8.01465%2013.4438L7.97715%2013.4125L8.12402%2013.2469ZM7.72402%2012.725L7.91152%2012.9375L7.95215%2012.9063L7.76152%2012.6969L7.7709%2012.6781H7.9084V12.625H7.7709C7.76504%2012.6091%207.75436%2012.5954%207.74035%2012.5859C7.72634%2012.5764%207.70971%2012.5715%207.69277%2012.5719C7.67176%2012.5719%207.65155%2012.58%207.6364%2012.5946C7.62125%2012.6091%207.61233%2012.629%207.61152%2012.65C7.61132%2012.6665%207.61635%2012.6827%207.62589%2012.6961C7.63543%2012.7096%207.649%2012.7197%207.66465%2012.725V12.8875H7.71465V12.725H7.72402ZM7.92715%2013.8125L7.90215%2013.8562C7.8602%2013.8295%207.82231%2013.7969%207.78965%2013.7594C7.76152%2013.7656%207.7334%2013.7594%207.71152%2013.7437C7.70341%2013.7374%207.6967%2013.7295%207.6918%2013.7204C7.6869%2013.7113%207.68391%2013.7014%207.68303%2013.6911C7.68215%2013.6808%207.6834%2013.6705%207.68669%2013.6607C7.68997%2013.651%207.69524%2013.642%207.70215%2013.6344L7.70527%2013.6313C7.68472%2013.5836%207.67205%2013.533%207.66777%2013.4813H7.71777C7.72153%2013.5243%207.73207%2013.5665%207.74902%2013.6063C7.76465%2013.6063%207.78027%2013.6063%207.79277%2013.6125L7.9209%2013.4719L7.96152%2013.5031L7.8334%2013.6438C7.85215%2013.6719%207.84902%2013.7063%207.83027%2013.7313C7.8588%2013.7625%207.89138%2013.7899%207.92715%2013.8125ZM7.66465%2013.4031V13.2813C7.64842%2013.2765%207.63417%2013.2666%207.62402%2013.2531C7.61388%2013.2396%207.6084%2013.2232%207.6084%2013.2063C7.6084%2013.175%207.6334%2013.1438%207.66465%2013.1313V12.9688H7.71465V13.1344C7.73965%2013.1406%207.76152%2013.1594%207.76777%2013.1844H7.90527V13.2313H7.76777C7.76375%2013.2428%207.75716%2013.2533%207.7485%2013.262C7.73984%2013.2706%207.72934%2013.2772%207.71777%2013.2813V13.4031H7.66465ZM7.73652%2013.6625C7.74902%2013.65%207.7709%2013.6469%207.78652%2013.6625C7.80215%2013.6781%207.80215%2013.6938%207.78965%2013.7063C7.78317%2013.7128%207.77448%2013.7168%207.76525%2013.7174C7.75602%2013.718%207.7469%2013.7151%207.73965%2013.7094C7.73632%2013.7064%207.73366%2013.7028%207.73184%2013.6988C7.73001%2013.6948%207.72907%2013.6904%207.72907%2013.6859C7.72907%2013.6815%207.73001%2013.6771%207.73184%2013.6731C7.73366%2013.669%207.73632%2013.6654%207.73965%2013.6625H7.73652ZM7.67402%2013.5219L7.6209%2013.5125L7.61152%2013.3781L7.66465%2013.3594V13.4375C7.66465%2013.4688%207.66465%2013.4938%207.67402%2013.5219ZM7.71777%2013.3563L7.76777%2013.3688V13.4375C7.76777%2013.4125%207.77715%2013.5031%207.77715%2013.5031L7.72402%2013.5219L7.71465%2013.4375V13.3563H7.71777ZM7.88965%2013.7844C7.93452%2013.82%207.98529%2013.8475%208.03965%2013.8656L8.05215%2013.8156C8.00734%2013.8018%207.96511%2013.7807%207.92715%2013.7531L7.88965%2013.7844Z'%20stroke='%23C8B100'%20stroke-width='0.075'/%3e%3cpath%20d='M7.93419%2013.5344L7.98419%2013.5563L8.07794%2013.4531L8.04669%2013.4094L7.93419%2013.5344ZM7.89355%2013.5031L7.8623%2013.4594L7.95605%2013.3563L8.00605%2013.3781L7.89355%2013.5031ZM7.65605%2013.2063C7.65605%2013.1875%207.67168%2013.175%207.6873%2013.175C7.70918%2013.175%207.7248%2013.1906%207.7248%2013.2063C7.7248%2013.225%207.70918%2013.2406%207.69043%2013.2406C7.68607%2013.2411%207.68168%2013.2406%207.67752%2013.2392C7.67336%2013.2378%207.66952%2013.2356%207.66628%2013.2327C7.66304%2013.2297%207.66047%2013.2261%207.6587%2013.2221C7.65694%2013.2181%207.65603%2013.2138%207.65605%2013.2094V13.2063ZM8.45918%2013.8125L8.48419%2013.8563C8.52611%2013.8295%208.56399%2013.7969%208.59668%2013.7594C8.6248%2013.7656%208.65293%2013.7594%208.67793%2013.7438C8.68582%2013.7372%208.69227%2013.729%208.69689%2013.7199C8.70151%2013.7107%208.7042%2013.7007%208.70479%2013.6904C8.70537%2013.6802%208.70385%2013.6699%208.7003%2013.6603C8.69676%2013.6506%208.69128%2013.6418%208.68419%2013.6344L8.68106%2013.6313C8.70286%2013.5839%208.71658%2013.5332%208.72168%2013.4813H8.66855C8.6647%2013.5243%208.65416%2013.5665%208.6373%2013.6063C8.62243%2013.6048%208.60743%2013.607%208.59355%2013.6125L8.46544%2013.4719L8.4248%2013.5031L8.55293%2013.6438C8.54422%2013.6568%208.53984%2013.6723%208.5404%2013.688C8.54096%2013.7037%208.54645%2013.7188%208.55606%2013.7313C8.52855%2013.7624%208.49703%2013.7897%208.46231%2013.8125H8.45918ZM8.72168%2013.4031V13.2813C8.73791%2013.2765%208.75216%2013.2666%208.7623%2013.2531C8.77245%2013.2396%208.77794%2013.2232%208.77794%2013.2063C8.77794%2013.175%208.75605%2013.1438%208.72168%2013.1313V12.9688H8.67169V13.1344C8.64669%2013.1406%208.62794%2013.1594%208.61856%2013.1844H8.48105V13.2313H8.61856C8.62794%2013.2563%208.64669%2013.2719%208.67169%2013.2813V13.4031H8.72168ZM8.64981%2013.6625C8.64294%2013.6564%208.63403%2013.653%208.6248%2013.653C8.61558%2013.653%208.60668%2013.6564%208.5998%2013.6625C8.59364%2013.6679%208.58986%2013.6755%208.58928%2013.6837C8.58869%2013.6919%208.59135%2013.7%208.59668%2013.7063C8.60316%2013.7128%208.61186%2013.7168%208.62109%2013.7174C8.63032%2013.718%208.63943%2013.7151%208.64668%2013.7094C8.65%2013.7064%208.65268%2013.7028%208.6545%2013.6988C8.65633%2013.6948%208.65726%2013.6904%208.65726%2013.6859C8.65726%2013.6815%208.65633%2013.6771%208.6545%2013.6731C8.65268%2013.669%208.65%2013.6654%208.64668%2013.6625H8.64981ZM8.71231%2013.5219L8.76544%2013.5125L8.77481%2013.3781L8.72168%2013.3594V13.4375C8.72168%2013.4688%208.72169%2013.4938%208.71544%2013.5219H8.71231ZM8.67169%2013.3563L8.61856%2013.3688V13.4375C8.61856%2013.4125%208.60919%2013.5031%208.60919%2013.5031L8.6623%2013.5219L8.67169%2013.4375V13.3563ZM8.72168%2012.7281V12.8906H8.67169V12.7281C8.66733%2012.7265%208.66313%2012.7244%208.65918%2012.7219L8.47168%2012.9344L8.43419%2012.9031L8.62169%2012.6844V12.6781H8.48105V12.625H8.61856C8.62442%2012.6091%208.6351%2012.5954%208.64911%2012.5859C8.66312%2012.5764%208.67974%2012.5715%208.69668%2012.5719C8.7177%2012.5719%208.7379%2012.58%208.75305%2012.5946C8.76821%2012.6091%208.77713%2012.629%208.77794%2012.65C8.77794%2012.6669%208.77245%2012.6834%208.7623%2012.6969C8.75216%2012.7104%208.73791%2012.7203%208.72168%2012.725V12.7281ZM8.22168%2012.7281V12.8281H8.16855V12.7281C8.15641%2012.7245%208.14529%2012.7181%208.13606%2012.7094C8.12684%2012.7007%208.11977%2012.69%208.11543%2012.6781H7.99043V12.625H8.11543C8.12793%2012.5938%208.15605%2012.5719%208.19355%2012.5719C8.23105%2012.5719%208.2623%2012.5938%208.27168%2012.625H8.39668V12.675H8.27168C8.26786%2012.6867%208.26135%2012.6973%208.25266%2012.706C8.24397%2012.7147%208.23336%2012.7212%208.22168%2012.725V12.7281ZM8.49669%2013.7844C8.45182%2013.82%208.40104%2013.8475%208.34668%2013.8656L8.33418%2013.8156C8.37899%2013.8018%208.42122%2013.7807%208.45918%2013.7531L8.49669%2013.7844ZM8.52168%2013.8281C8.47627%2013.8629%208.42565%2013.8904%208.37169%2013.9094L8.40918%2013.9438C8.4532%2013.928%208.49516%2013.907%208.53418%2013.8813L8.52168%2013.8281ZM7.66543%2012.8469L7.6123%2012.8625V12.9969L7.66543%2013.0125V12.85V12.8469ZM7.71855%2012.85L7.76855%2012.8625V12.9969L7.71855%2013.0125V12.8438V12.85ZM8.67169%2012.8438L8.61856%2012.8594V12.9938L8.67169%2013.0094V12.8438Z'%20stroke='%23C8B100'%20stroke-width='0.075'/%3e%3cpath%20d='M8.72188%2012.8469L8.775%2012.8625V12.9969L8.72188%2013.0125V12.8437V12.8469ZM8.45313%2013.5312L8.40313%2013.5531L8.31251%2013.45L8.34376%2013.4062L8.45313%2013.5312ZM8.49376%2013.5L8.52501%2013.4562L8.43126%2013.3531L8.38126%2013.375L8.49376%2013.5ZM7.92501%2012.875L7.97501%2012.8531L8.06876%2012.9562L8.03751%2013L7.92501%2012.875ZM7.88438%2012.9062L7.85313%2012.95L7.94688%2013.0531L7.99688%2013.0312L7.88438%2012.9062ZM8.46251%2012.8719L8.41251%2012.85L8.31876%2012.9531L8.35001%2012.9969L8.46251%2012.8719ZM8.50001%2012.9031L8.53126%2012.9469L8.43751%2013.0469L8.39063%2013.0281L8.50001%2012.9031ZM7.86563%2013.1844L7.88126%2013.1344H8.02188L8.03751%2013.1844H7.86563ZM7.86563%2013.2312L7.88126%2013.2812H8.02188L8.03751%2013.2312H7.86563ZM7.65626%2012.6562C7.65626%2012.6375%207.67188%2012.625%207.69376%2012.625C7.71251%2012.625%207.72501%2012.6375%207.72501%2012.6562C7.72501%2012.675%207.71251%2012.6875%207.69376%2012.6875C7.68916%2012.6884%207.68442%2012.6883%207.67987%2012.6872C7.67533%2012.686%207.6711%2012.6839%207.66749%2012.6809C7.66389%2012.6779%207.66101%2012.6741%207.65907%2012.6698C7.65712%2012.6656%207.65616%2012.6609%207.65626%2012.6562ZM8.03438%2012.6812L8.01876%2012.7312H7.87813L7.86251%2012.6812H8.03438ZM8.03438%2012.6312L8.01876%2012.5812H7.87813L7.86251%2012.6312H8.03438ZM8.6625%2013.2094C8.6625%2013.1937%208.67813%2013.1781%208.69688%2013.1781C8.71563%2013.1781%208.73125%2013.1937%208.73125%2013.2094C8.73125%2013.2281%208.71563%2013.2437%208.7%2013.2437C8.69541%2013.2447%208.69067%2013.2446%208.68612%2013.2434C8.68157%2013.2423%208.67734%2013.2401%208.67374%2013.2371C8.67014%2013.2341%208.66726%2013.2304%208.66532%2013.2261C8.66337%2013.2218%208.66241%2013.2172%208.6625%2013.2125V13.2094ZM8.52501%2013.1875L8.50938%2013.1375H8.36876L8.35313%2013.1875H8.52501ZM8.52501%2013.2344L8.50938%2013.2844H8.36876L8.35313%2013.2344H8.52501ZM8.16251%2013.9187C8.16251%2013.9%208.17813%2013.8875%208.19688%2013.8875C8.21563%2013.8875%208.23126%2013.9%208.23126%2013.9187C8.23126%2013.9375%208.21563%2013.95%208.20001%2013.95C8.19549%2013.9504%208.19093%2013.95%208.18659%2013.9486C8.18226%2013.9473%208.17823%2013.9451%208.17475%2013.9422C8.17126%2013.9393%208.16838%2013.9357%208.16628%2013.9317C8.16418%2013.9277%208.1629%2013.9233%208.16251%2013.9187ZM8.22188%2013.675L8.27501%2013.6625V13.5281L8.22188%2013.5125V13.675ZM8.17188%2013.675L8.11876%2013.6625V13.5281L8.17188%2013.5125V13.675ZM8.6625%2012.6562C8.6625%2012.6375%208.67813%2012.625%208.69688%2012.625C8.70124%2012.6246%208.70564%2012.625%208.7098%2012.6264C8.71396%2012.6278%208.71779%2012.63%208.72103%2012.633C8.72427%2012.6359%208.72685%2012.6395%208.72862%2012.6435C8.73038%2012.6475%208.73128%2012.6519%208.73125%2012.6562C8.73125%2012.675%208.71563%2012.6875%208.7%2012.6875C8.69549%2012.6879%208.69093%2012.6875%208.68659%2012.6861C8.68226%2012.6848%208.67823%2012.6826%208.67474%2012.6797C8.67126%2012.6768%208.66838%2012.6732%208.66628%2012.6692C8.66418%2012.6652%208.6629%2012.6608%208.6625%2012.6562ZM8.15938%2012.6562C8.15938%2012.6375%208.17501%2012.625%208.19376%2012.625C8.19811%2012.6246%208.20252%2012.625%208.20668%2012.6264C8.21084%2012.6278%208.21466%2012.63%208.2179%2012.633C8.22114%2012.6359%208.22373%2012.6395%208.22549%2012.6435C8.22725%2012.6475%208.22815%2012.6519%208.22813%2012.6562C8.22813%2012.675%208.21251%2012.6875%208.19688%2012.6875C8.19236%2012.6879%208.1878%2012.6875%208.18347%2012.6861C8.17913%2012.6848%208.17511%2012.6826%208.17162%2012.6797C8.16813%2012.6768%208.16526%2012.6732%208.16316%2012.6692C8.16106%2012.6652%208.15977%2012.6608%208.15938%2012.6562ZM8.35313%2012.6812L8.36876%2012.7312H8.5125L8.52813%2012.6812H8.35626H8.35313ZM8.35626%2012.6312L8.36876%2012.5812H8.5125L8.52813%2012.6312H8.35626ZM8.16876%2012.7875L8.11876%2012.8031V12.9375L8.16876%2012.9531V12.7812V12.7875ZM8.22188%2012.7812L8.27188%2012.7969V12.9312L8.22188%2012.9469V12.7812Z'%20stroke='%23C8B100'%20stroke-width='0.075'/%3e%3cpath%20d='M8.11523%2013.2094C8.11604%2013.1884%208.12496%2013.1685%208.14011%2013.1539C8.15526%2013.1394%208.17548%2013.1312%208.1965%2013.1312C8.21751%2013.1312%208.23771%2013.1394%208.25286%2013.1539C8.26801%2013.1685%208.27693%2013.1884%208.27774%2013.2094C8.27616%2013.2298%208.26691%2013.2489%208.25184%2013.2628C8.23677%2013.2767%208.21701%2013.2844%208.1965%2013.2844C8.15275%2013.2844%208.11523%2013.2531%208.11523%2013.2094Z'%20fill='%23058E6E'/%3e%3cpath%20d='M8.21562%2011.1781V11.1594L8.21875%2011.15L8.14687%2011.1469C8.12043%2011.1399%208.09588%2011.1271%208.075%2011.1094C8.05%2011.0875%208.04063%2011.0781%208.025%2011.0719C7.98438%2011.0656%207.95312%2011.0844%207.95312%2011.0844C7.95312%2011.0844%207.98438%2011.0969%208.00626%2011.125C8.02813%2011.1531%208.05313%2011.1656%208.0625%2011.1687C8.08125%2011.175%208.14375%2011.1687%208.15938%2011.1719L8.21562%2011.1781Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.21562%2011.1781V11.1594L8.21875%2011.15L8.14687%2011.1469C8.12043%2011.1399%208.09588%2011.1271%208.075%2011.1094C8.05%2011.0875%208.04063%2011.0781%208.025%2011.0719C7.98438%2011.0656%207.95312%2011.0844%207.95312%2011.0844C7.95312%2011.0844%207.98438%2011.0969%208.00626%2011.125C8.02813%2011.1531%208.05312%2011.1656%208.0625%2011.1687C8.08125%2011.175%208.14375%2011.1687%208.15938%2011.1719L8.21562%2011.1781Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.44179%2011.1094V11.1531C8.44804%2011.1719%208.43867%2011.1906%208.44179%2011.2C8.44179%2011.2125%208.44492%2011.2188%208.45117%2011.2281L8.45742%2011.2562L8.43554%2011.2406L8.41679%2011.2281V11.2594C8.41992%2011.2656%208.42617%2011.2844%208.43554%2011.2937L8.46679%2011.3344C8.47304%2011.35%208.46992%2011.3781%208.46992%2011.3781C8.46992%2011.3781%208.45742%2011.3563%208.44492%2011.3531L8.40742%2011.3313C8.40742%2011.3313%208.42929%2011.3563%208.42929%2011.3781C8.42929%2011.4031%208.41992%2011.4281%208.41992%2011.4281C8.41992%2011.4281%208.41054%2011.4063%208.39492%2011.3938L8.36367%2011.3656C8.36367%2011.3656%208.37617%2011.4031%208.37617%2011.4281V11.5L8.34804%2011.4688L8.31679%2011.4469C8.31679%2011.4406%208.33242%2011.4656%208.33554%2011.4812C8.33554%2011.4969%208.34492%2011.5531%208.39179%2011.6219C8.42304%2011.6625%208.46367%2011.7344%208.55742%2011.7125C8.65117%2011.6875%208.61679%2011.5625%208.59804%2011.5031C8.58093%2011.4569%208.57041%2011.4085%208.56679%2011.3594C8.56679%2011.3344%208.58554%2011.2687%208.58242%2011.2562C8.57815%2011.2239%208.58028%2011.1909%208.58867%2011.1594C8.60117%2011.1188%208.61054%2011.1031%208.61679%2011.0875C8.62304%2011.0688%208.62929%2011.0594%208.62929%2011.0469L8.63242%2011.0062L8.65429%2011.0469L8.65742%2011.0938C8.65742%2011.0938%208.66054%2011.0625%208.68867%2011.0437C8.71367%2011.025%208.74492%2011.0094%208.75117%2011C8.76054%2010.9906%208.76054%2010.9844%208.76054%2010.9844C8.76054%2010.9844%208.76054%2011.0406%208.74179%2011.0656L8.68867%2011.1281C8.68867%2011.1281%208.71054%2011.1188%208.72617%2011.1188H8.75429C8.75429%2011.1188%208.73554%2011.1312%208.71054%2011.1687C8.68554%2011.2%208.69492%2011.2062%208.67929%2011.2344C8.66054%2011.2656%208.64804%2011.2656%208.62617%2011.2812C8.59492%2011.3063%208.61054%2011.4125%208.61367%2011.4281C8.61992%2011.4437%208.67617%2011.5687%208.67617%2011.6C8.67617%2011.6312%208.68242%2011.7%208.62929%2011.7438C8.59492%2011.775%208.53554%2011.775%208.52304%2011.7812C8.51054%2011.7906%208.48554%2011.8156%208.48554%2011.8688C8.48554%2011.9219%208.50429%2011.9312%208.51679%2011.9437C8.53554%2011.9594%208.55429%2011.95%208.55742%2011.9625C8.56367%2011.9719%208.56367%2011.9781%208.57304%2011.9844C8.57929%2011.9906%208.58242%2011.9969%208.57929%2012.0094C8.57929%2012.0187%208.55429%2012.0438%208.54492%2012.0625L8.51992%2012.1375C8.51992%2012.1437%208.51679%2012.1688%208.52304%2012.1781C8.52304%2012.1781%208.55117%2012.2094%208.53242%2012.2156C8.51992%2012.2219%208.50742%2012.2094%208.50117%2012.2094L8.47304%2012.225C8.46367%2012.2219%208.46367%2012.2156%208.46054%2012.2L8.45742%2012.1781C8.45117%2012.1781%208.44804%2012.1844%208.44492%2012.1938C8.44492%2012.2%208.44492%2012.2188%208.43554%2012.2188C8.42929%2012.2188%208.41992%2012.2062%208.41054%2012.2031C8.40429%2012.2031%208.38554%2012.1969%208.38554%2012.1906C8.38554%2012.1813%208.39804%2012.1625%208.40742%2012.1594C8.41992%2012.1594%208.43242%2012.15%208.42304%2012.1438C8.41367%2012.1375%208.40742%2012.1375%208.40117%2012.1438C8.39492%2012.15%208.37617%2012.1437%208.37929%2012.1375V12.1125C8.37929%2012.1063%208.36679%2012.0969%208.38242%2012.0875C8.40117%2012.0781%208.40742%2012.0937%208.42617%2012.0906C8.44492%2012.0906%208.45117%2012.0812%208.45742%2012.0719C8.46367%2012.0625%208.46367%2012.0406%208.45117%2012.0281C8.43867%2012.0125%208.42929%2012.0125%208.42304%2012.0031L8.41367%2011.975V12.0437L8.39179%2012.0188C8.38242%2012.0094%208.37304%2011.9781%208.37304%2011.9781V12.0188C8.37304%2012.0313%208.38242%2012.0406%208.37929%2012.0437C8.37617%2012.0469%208.35429%2012.0219%208.34804%2012.0188C8.33571%2012.0104%208.3251%2011.9998%208.31679%2011.9875L8.30429%2011.9437C8.30148%2011.9283%208.30148%2011.9124%208.30429%2011.8969L8.31679%2011.8656H8.27304C8.25117%2011.8656%208.23554%2011.8562%208.22617%2011.8719C8.21679%2011.8875%208.21992%2011.9187%208.23242%2011.9594C8.24179%2011.9969%208.24804%2012.0187%208.24492%2012.025C8.23917%2012.0346%208.23176%2012.043%208.22304%2012.05H8.19492C8.1834%2012.0438%208.17051%2012.0406%208.15742%2012.0406H8.11679L8.08242%2012.0312C8.07304%2012.0344%208.05742%2012.0406%208.06367%2012.0531C8.06992%2012.0719%208.05742%2012.075%208.04804%2012.075L8.01992%2012.0688C8.00742%2012.0656%207.99179%2012.0687%207.99492%2012.0562C7.99492%2012.0437%208.00117%2012.0438%208.00742%2012.0344C8.01367%2012.025%208.01367%2012.0188%208.00742%2012.0188H7.98867C7.98242%2012.025%207.97304%2012.0344%207.96367%2012.0312C7.95742%2012.0281%207.95117%2012.0187%207.95117%2012C7.95117%2011.9812%207.92929%2011.9625%207.95117%2011.9656C7.96679%2011.9656%207.99179%2011.9781%207.99492%2011.9656C8.00117%2011.9562%207.99492%2011.9531%207.98867%2011.9437C7.98242%2011.9344%207.96367%2011.9312%207.97929%2011.9219L8.00117%2011.9062C8.00429%2011.9%208.01367%2011.8812%208.02304%2011.8875C8.04179%2011.8937%208.02304%2011.9094%208.04179%2011.9281C8.06054%2011.95%208.07304%2011.9594%208.10429%2011.9531C8.13554%2011.9531%208.14492%2011.9469%208.14492%2011.9375L8.14179%2011.9062V11.875C8.14179%2011.875%208.12929%2011.8844%208.12617%2011.8938L8.11367%2011.9187V11.8562C8.11202%2011.8478%208.10993%2011.8395%208.10742%2011.8313L8.09804%2011.8594L8.09492%2011.8906C8.09492%2011.8906%208.07304%2011.875%208.07929%2011.8438C8.08242%2011.8219%208.07617%2011.7937%208.08242%2011.7812C8.08867%2011.7719%208.10429%2011.7344%208.14492%2011.7312H8.22617L8.28867%2011.7219C8.28867%2011.7219%208.20117%2011.6781%208.17929%2011.6625C8.15546%2011.6449%208.13439%2011.6238%208.11679%2011.6L8.09804%2011.55C8.09804%2011.55%208.08242%2011.55%208.06679%2011.5594C8.05273%2011.5678%208.04008%2011.5783%208.02929%2011.5906L8.00742%2011.6219L8.01054%2011.5844V11.5594C8.01054%2011.5594%207.99804%2011.5969%207.97929%2011.6125L7.93554%2011.6438V11.6188L7.94179%2011.5875C7.94179%2011.5875%207.92929%2011.6125%207.90742%2011.6188C7.88554%2011.6188%207.85117%2011.6187%207.84804%2011.6312C7.84804%2011.6469%207.85429%2011.6625%207.84804%2011.675C7.84804%2011.6844%207.83554%2011.6906%207.83554%2011.6906L7.81054%2011.6781C7.79804%2011.6781%207.78867%2011.6844%207.78867%2011.6844C7.78867%2011.6844%207.77929%2011.6719%207.78242%2011.6625C7.78554%2011.6562%207.80429%2011.6437%207.79804%2011.6375L7.77304%2011.6438C7.76367%2011.6469%207.74804%2011.6531%207.74804%2011.6375C7.74804%2011.625%207.75429%2011.6156%207.74804%2011.6062C7.74804%2011.5969%207.74804%2011.5906%207.75429%2011.5875L7.79179%2011.5844C7.79179%2011.5781%207.78554%2011.5688%207.76679%2011.5656C7.74804%2011.5625%207.74179%2011.55%207.75117%2011.5406C7.76054%2011.5344%207.76054%2011.5312%207.76679%2011.5219C7.76992%2011.5156%207.77304%2011.5%207.78867%2011.5062C7.80429%2011.5156%207.80117%2011.5312%207.81992%2011.5375C7.84094%2011.5408%207.86246%2011.5386%207.88242%2011.5312L7.92929%2011.5L7.97617%2011.4688L7.94492%2011.4437C7.93554%2011.4344%207.92304%2011.4156%207.91367%2011.4125C7.8957%2011.4041%207.87682%2011.3978%207.85742%2011.3938C7.83924%2011.3903%207.82144%2011.3851%207.80429%2011.3781L7.82929%2011.3688C7.83554%2011.3625%207.84804%2011.35%207.85429%2011.35H7.86367H7.81992C7.81054%2011.3469%207.78867%2011.3313%207.77929%2011.3313L7.75429%2011.3344C7.75429%2011.3344%207.77929%2011.3219%207.79804%2011.3187L7.82929%2011.3156C7.82929%2011.3156%207.80117%2011.3063%207.79492%2011.2969L7.77617%2011.2656C7.76992%2011.2625%207.76679%2011.25%207.75742%2011.25L7.72617%2011.2594C7.71367%2011.2594%207.70742%2011.2531%207.70742%2011.2406L7.70429%2011.225C7.69804%2011.2156%207.68554%2011.2%207.69804%2011.1937H7.74179C7.74179%2011.1875%207.72617%2011.175%207.71679%2011.1687C7.70429%2011.1625%207.68554%2011.1531%207.69492%2011.1438L7.71992%2011.1281C7.72617%2011.1188%207.72929%2011.0969%207.74179%2011.1062C7.75429%2011.1125%207.76679%2011.1437%207.77617%2011.1406C7.78554%2011.1406%207.78554%2011.1156%207.78554%2011.1094C7.78554%2011.0969%207.78554%2011.0781%207.79179%2011.0813C7.80117%2011.0813%207.80742%2011.0938%207.82304%2011.0969C7.83554%2011.0969%207.85429%2011.0938%207.85429%2011.1031C7.85429%2011.1125%207.84492%2011.125%207.83554%2011.1344C7.82617%2011.1438%207.82304%2011.1656%207.82617%2011.1781C7.83242%2011.1937%207.84804%2011.2156%207.86367%2011.2219C7.87617%2011.2313%207.90117%2011.2375%207.91679%2011.25C7.93242%2011.2594%207.96992%2011.2875%207.98242%2011.2906L8.00742%2011.3031C8.00742%2011.3031%208.02304%2011.2969%208.04179%2011.2969C8.06367%2011.2969%208.10742%2011.2969%208.12304%2011.2906C8.14179%2011.2844%208.16367%2011.2719%208.15429%2011.2594C8.15117%2011.2406%208.11367%2011.2281%208.11679%2011.2156C8.11679%2011.2031%208.13242%2011.2031%208.15429%2011.2031C8.17929%2011.2031%208.21054%2011.2062%208.21679%2011.1719C8.22304%2011.1406%208.22304%2011.125%208.19179%2011.1156C8.16054%2011.1094%208.13554%2011.1094%208.12929%2011.0844C8.12304%2011.0625%208.11679%2011.0563%208.12304%2011.05C8.13242%2011.0438%208.14179%2011.0406%208.16679%2011.0375C8.19179%2011.0375%208.21679%2011.0375%208.22617%2011.0312C8.23242%2011.025%208.23554%2011.0094%208.24492%2011.0031C8.25429%2010.9969%208.28867%2010.9906%208.28867%2010.9906C8.28867%2010.9906%208.33242%2011.0125%208.37304%2011.0437C8.39812%2011.0632%208.42116%2011.0852%208.44179%2011.1094Z'%20fill='%23ED72AA'/%3e%3cpath%20d='M8.44179%2011.1094V11.1531C8.44804%2011.1719%208.43867%2011.1906%208.44179%2011.2C8.44179%2011.2125%208.44492%2011.2188%208.45117%2011.2281L8.45742%2011.2562L8.43554%2011.2406L8.41679%2011.2281V11.2594C8.41992%2011.2656%208.42617%2011.2844%208.43554%2011.2937L8.46679%2011.3344C8.47304%2011.35%208.46992%2011.3781%208.46992%2011.3781C8.46992%2011.3781%208.45742%2011.3563%208.44492%2011.3531L8.40742%2011.3313C8.40742%2011.3313%208.42929%2011.3563%208.42929%2011.3781C8.42929%2011.4031%208.41992%2011.4281%208.41992%2011.4281C8.41992%2011.4281%208.41054%2011.4063%208.39492%2011.3938L8.36367%2011.3656C8.36367%2011.3656%208.37617%2011.4031%208.37617%2011.4281V11.5L8.34804%2011.4688L8.31679%2011.4469C8.31679%2011.4406%208.33242%2011.4656%208.33554%2011.4812C8.33554%2011.4969%208.34492%2011.5531%208.39179%2011.6219C8.42304%2011.6625%208.46367%2011.7344%208.55742%2011.7125C8.65117%2011.6875%208.61679%2011.5625%208.59804%2011.5031C8.58093%2011.4569%208.57041%2011.4085%208.56679%2011.3594C8.56679%2011.3344%208.58554%2011.2687%208.58242%2011.2562C8.57815%2011.2239%208.58028%2011.1909%208.58867%2011.1594C8.60117%2011.1188%208.61054%2011.1031%208.61679%2011.0875C8.62304%2011.0688%208.62929%2011.0594%208.62929%2011.0469L8.63242%2011.0062L8.65429%2011.0469L8.65742%2011.0938C8.65742%2011.0938%208.66054%2011.0625%208.68867%2011.0437C8.71367%2011.025%208.74492%2011.0094%208.75117%2011C8.76054%2010.9906%208.76054%2010.9844%208.76054%2010.9844C8.76054%2010.9844%208.76054%2011.0406%208.74179%2011.0656L8.68867%2011.1281C8.68867%2011.1281%208.71054%2011.1188%208.72617%2011.1188H8.75429C8.75429%2011.1188%208.73554%2011.1312%208.71054%2011.1687C8.68554%2011.2%208.69492%2011.2063%208.67929%2011.2344C8.66054%2011.2656%208.64804%2011.2656%208.62617%2011.2812C8.59492%2011.3063%208.61054%2011.4125%208.61367%2011.4281C8.61992%2011.4437%208.67617%2011.5687%208.67617%2011.6C8.67617%2011.6312%208.68242%2011.7%208.62929%2011.7438C8.59492%2011.775%208.53554%2011.775%208.52304%2011.7812C8.51054%2011.7906%208.48554%2011.8156%208.48554%2011.8688C8.48554%2011.9219%208.50429%2011.9312%208.51679%2011.9437C8.53554%2011.9594%208.55429%2011.95%208.55742%2011.9625C8.56367%2011.9719%208.56367%2011.9781%208.57304%2011.9844C8.57929%2011.9906%208.58242%2011.9969%208.57929%2012.0094C8.57929%2012.0187%208.55429%2012.0437%208.54492%2012.0625L8.51992%2012.1375C8.51992%2012.1437%208.51679%2012.1688%208.52304%2012.1781C8.52304%2012.1781%208.55117%2012.2094%208.53242%2012.2156C8.51992%2012.2219%208.50742%2012.2094%208.50117%2012.2094L8.47304%2012.225C8.46367%2012.2219%208.46367%2012.2156%208.46054%2012.2L8.45742%2012.1781C8.45117%2012.1781%208.44804%2012.1844%208.44492%2012.1938C8.44492%2012.2%208.44492%2012.2188%208.43554%2012.2188C8.42929%2012.2188%208.41992%2012.2063%208.41054%2012.2031C8.40429%2012.2031%208.38554%2012.1969%208.38554%2012.1906C8.38554%2012.1813%208.39804%2012.1625%208.40742%2012.1594C8.41992%2012.1594%208.43242%2012.15%208.42304%2012.1438C8.41367%2012.1375%208.40742%2012.1375%208.40117%2012.1438C8.39492%2012.15%208.37617%2012.1437%208.37929%2012.1375V12.1125C8.37929%2012.1063%208.36679%2012.0969%208.38242%2012.0875C8.40117%2012.0781%208.40742%2012.0937%208.42617%2012.0906C8.44492%2012.0906%208.45117%2012.0812%208.45742%2012.0719C8.46367%2012.0625%208.46367%2012.0406%208.45117%2012.0281C8.43867%2012.0125%208.42929%2012.0125%208.42304%2012.0031L8.41367%2011.975V12.0437L8.39179%2012.0188C8.38242%2012.0094%208.37304%2011.9781%208.37304%2011.9781V12.0188C8.37304%2012.0313%208.38242%2012.0406%208.37929%2012.0437C8.37617%2012.0469%208.35429%2012.0219%208.34804%2012.0188C8.33571%2012.0104%208.3251%2011.9998%208.31679%2011.9875L8.30429%2011.9437C8.30148%2011.9283%208.30148%2011.9124%208.30429%2011.8969L8.31679%2011.8656H8.27304C8.25117%2011.8656%208.23554%2011.8562%208.22617%2011.8719C8.21679%2011.8875%208.21992%2011.9187%208.23242%2011.9594C8.24179%2011.9969%208.24804%2012.0187%208.24492%2012.025C8.23917%2012.0346%208.23176%2012.043%208.22304%2012.05H8.19492C8.1834%2012.0438%208.17051%2012.0406%208.15742%2012.0406H8.11679L8.08242%2012.0312C8.07304%2012.0344%208.05742%2012.0406%208.06367%2012.0531C8.06992%2012.0719%208.05742%2012.075%208.04804%2012.075L8.01992%2012.0688C8.00742%2012.0656%207.99179%2012.0687%207.99492%2012.0562C7.99492%2012.0437%208.00117%2012.0438%208.00742%2012.0344C8.01367%2012.025%208.01367%2012.0188%208.00742%2012.0188H7.98867C7.98242%2012.025%207.97304%2012.0344%207.96367%2012.0312C7.95742%2012.0281%207.95117%2012.0188%207.95117%2012C7.95117%2011.9812%207.92929%2011.9625%207.95117%2011.9656C7.96679%2011.9656%207.99179%2011.9781%207.99492%2011.9656C8.00117%2011.9562%207.99492%2011.9531%207.98867%2011.9437C7.98242%2011.9344%207.96367%2011.9313%207.97929%2011.9219L8.00117%2011.9062C8.00429%2011.9%208.01367%2011.8812%208.02304%2011.8875C8.04179%2011.8937%208.02304%2011.9094%208.04179%2011.9281C8.06054%2011.95%208.07304%2011.9594%208.10429%2011.9531C8.13554%2011.9531%208.14492%2011.9469%208.14492%2011.9375L8.14179%2011.9062V11.875C8.14179%2011.875%208.12929%2011.8844%208.12617%2011.8938L8.11367%2011.9187V11.8562C8.11202%2011.8478%208.10993%2011.8395%208.10742%2011.8313L8.09804%2011.8594L8.09492%2011.8906C8.09492%2011.8906%208.07304%2011.875%208.07929%2011.8438C8.08242%2011.8219%208.07617%2011.7938%208.08242%2011.7812C8.08867%2011.7719%208.10429%2011.7344%208.14492%2011.7312H8.22617L8.28867%2011.7219C8.28867%2011.7219%208.20117%2011.6781%208.17929%2011.6625C8.15546%2011.6449%208.13439%2011.6238%208.11679%2011.6L8.09804%2011.55C8.09804%2011.55%208.08242%2011.55%208.06679%2011.5594C8.05273%2011.5678%208.04008%2011.5783%208.02929%2011.5906L8.00742%2011.6219L8.01054%2011.5844V11.5594C8.01054%2011.5594%207.99804%2011.5969%207.97929%2011.6125L7.93554%2011.6438V11.6188L7.94179%2011.5875C7.94179%2011.5875%207.92929%2011.6125%207.90742%2011.6188C7.88554%2011.6188%207.85117%2011.6187%207.84804%2011.6312C7.84804%2011.6469%207.85429%2011.6625%207.84804%2011.675C7.84804%2011.6844%207.83554%2011.6906%207.83554%2011.6906L7.81054%2011.6781C7.79804%2011.6781%207.78867%2011.6844%207.78867%2011.6844C7.78867%2011.6844%207.77929%2011.6719%207.78242%2011.6625C7.78554%2011.6562%207.80429%2011.6437%207.79804%2011.6375L7.77304%2011.6438C7.76367%2011.6469%207.74804%2011.6531%207.74804%2011.6375C7.74804%2011.625%207.75429%2011.6156%207.74804%2011.6062C7.74804%2011.5969%207.74804%2011.5906%207.75429%2011.5875L7.79179%2011.5844C7.79179%2011.5781%207.78554%2011.5688%207.76679%2011.5656C7.74804%2011.5625%207.74179%2011.55%207.75117%2011.5406C7.76054%2011.5344%207.76054%2011.5312%207.76679%2011.5219C7.76992%2011.5156%207.77304%2011.5%207.78867%2011.5062C7.80429%2011.5156%207.80117%2011.5312%207.81992%2011.5375C7.84094%2011.5408%207.86246%2011.5386%207.88242%2011.5312L7.92929%2011.5L7.97617%2011.4688L7.94492%2011.4437C7.93554%2011.4344%207.92304%2011.4156%207.91367%2011.4125C7.8957%2011.4041%207.87682%2011.3978%207.85742%2011.3938C7.83924%2011.3903%207.82144%2011.3851%207.80429%2011.3781L7.82929%2011.3688C7.83554%2011.3625%207.84804%2011.35%207.85429%2011.35H7.86367H7.81992C7.81054%2011.3469%207.78867%2011.3313%207.77929%2011.3313L7.75429%2011.3344C7.75429%2011.3344%207.77929%2011.3219%207.79804%2011.3187L7.82929%2011.3156C7.82929%2011.3156%207.80117%2011.3063%207.79492%2011.2969L7.77617%2011.2656C7.76992%2011.2625%207.76679%2011.25%207.75742%2011.25L7.72617%2011.2594C7.71367%2011.2594%207.70742%2011.2531%207.70742%2011.2406L7.70429%2011.225C7.69804%2011.2156%207.68554%2011.2%207.69804%2011.1937H7.74179C7.74179%2011.1875%207.72617%2011.175%207.71679%2011.1687C7.70429%2011.1625%207.68554%2011.1531%207.69492%2011.1438L7.71992%2011.1281C7.72617%2011.1188%207.72929%2011.0969%207.74179%2011.1062C7.75429%2011.1125%207.76679%2011.1438%207.77617%2011.1406C7.78554%2011.1406%207.78554%2011.1156%207.78554%2011.1094C7.78554%2011.0969%207.78554%2011.0781%207.79179%2011.0813C7.80117%2011.0813%207.80742%2011.0938%207.82304%2011.0969C7.83554%2011.0969%207.85429%2011.0938%207.85429%2011.1031C7.85429%2011.1125%207.84492%2011.125%207.83554%2011.1344C7.82617%2011.1438%207.82304%2011.1656%207.82617%2011.1781C7.83242%2011.1937%207.84804%2011.2156%207.86367%2011.2219C7.87617%2011.2313%207.90117%2011.2375%207.91679%2011.25C7.93242%2011.2594%207.96992%2011.2875%207.98242%2011.2906L8.00742%2011.3031C8.00742%2011.3031%208.02304%2011.2969%208.04179%2011.2969C8.06367%2011.2969%208.10742%2011.2969%208.12304%2011.2906C8.14179%2011.2844%208.16367%2011.2719%208.15429%2011.2594C8.15117%2011.2406%208.11367%2011.2281%208.11679%2011.2156C8.11679%2011.2031%208.13242%2011.2031%208.15429%2011.2031C8.17929%2011.2031%208.21054%2011.2063%208.21679%2011.1719C8.22304%2011.1406%208.22304%2011.125%208.19179%2011.1156C8.16054%2011.1094%208.13554%2011.1094%208.12929%2011.0844C8.12304%2011.0625%208.11679%2011.0563%208.12304%2011.05C8.13242%2011.0438%208.14179%2011.0406%208.16679%2011.0375C8.19179%2011.0375%208.21679%2011.0375%208.22617%2011.0312C8.23242%2011.025%208.23554%2011.0094%208.24492%2011.0031C8.25429%2010.9969%208.28867%2010.9906%208.28867%2010.9906C8.28867%2010.9906%208.33242%2011.0125%208.37304%2011.0437C8.39812%2011.0632%208.42116%2011.0852%208.44179%2011.1094Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.12853%2011.0884L8.12207%2011.0691V11.0594C8.12207%2011.0594%208.1479%2011.0594%208.14467%2011.0691C8.14467%2011.0755%208.13821%2011.0755%208.13499%2011.0787L8.12853%2011.0884Z'%20fill='black'/%3e%3cpath%20d='M8.12853%2011.0884L8.12207%2011.0691V11.0594C8.12207%2011.0594%208.1479%2011.0594%208.14467%2011.0691C8.14467%2011.0755%208.13821%2011.0755%208.13499%2011.0787L8.12853%2011.0884Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.25098%2011.0437V11.0312C8.25098%2011.0312%208.27285%2011.0313%208.28223%2011.0406C8.29785%2011.0531%208.31035%2011.0719%208.31035%2011.0719L8.28535%2011.0594H8.26973L8.26035%2011.0563V11.0469H8.25098'%20fill='black'/%3e%3cpath%20d='M8.25098%2011.0437V11.0312C8.25098%2011.0312%208.27285%2011.0313%208.28223%2011.0406C8.29785%2011.0531%208.31035%2011.0719%208.31035%2011.0719L8.28535%2011.0594H8.26973L8.26035%2011.0563V11.0469H8.25098V11.0437Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.41543%2011.2281L8.40294%2011.2062C8.39969%2011.2022%208.39655%2011.198%208.39355%2011.1937'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.79395%2011.0813C7.79395%2011.0813%207.80956%2011.0938%207.81894%2011.0938H7.84395C7.84395%2011.0938%207.85019%2011.0781%207.84706%2011.0688C7.84081%2011.0313%207.80957%2011.025%207.80957%2011.025C7.80957%2011.025%207.81895%2011.0469%207.8127%2011.0563C7.80866%2011.066%207.80221%2011.0746%207.79395%2011.0813Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.79395%2011.0813C7.79395%2011.0813%207.80956%2011.0938%207.81894%2011.0938H7.84395C7.84395%2011.0938%207.85019%2011.0781%207.84706%2011.0688C7.84081%2011.0313%207.80957%2011.025%207.80957%2011.025C7.80957%2011.025%207.81895%2011.0469%207.8127%2011.0563C7.80866%2011.066%207.80221%2011.0746%207.79395%2011.0813Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.72597%2011.1125C7.72597%2011.1125%207.71347%2011.0906%207.68535%2011.0938C7.66035%2011.0938%207.6416%2011.1188%207.6416%2011.1188H7.6791C7.68847%2011.1281%207.6916%2011.15%207.6916%2011.15L7.71347%2011.1312C7.71795%2011.1252%207.72212%2011.119%207.72597%2011.1125Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.72597%2011.1125C7.72597%2011.1125%207.71347%2011.0906%207.68535%2011.0938C7.66035%2011.0938%207.6416%2011.1188%207.6416%2011.1188H7.6791C7.68847%2011.1281%207.6916%2011.15%207.6916%2011.15L7.71347%2011.1312C7.71795%2011.1252%207.72212%2011.119%207.72597%2011.1125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.69371%2011.2062C7.69371%2011.2062%207.66871%2011.2094%207.65621%2011.225C7.64371%2011.2406%207.64683%2011.2656%207.64683%2011.2656C7.64683%2011.2656%207.65933%2011.25%207.67496%2011.25L7.70621%2011.2562L7.70308%2011.2312L7.69371%2011.2062Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.69371%2011.2062C7.69371%2011.2062%207.66871%2011.2094%207.65621%2011.225C7.64371%2011.2406%207.64683%2011.2656%207.64683%2011.2656C7.64683%2011.2656%207.65933%2011.25%207.67496%2011.25L7.70621%2011.2562L7.70308%2011.2312L7.69371%2011.2062Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.13116%2011.2036L8.14084%2011.1875L8.15053%2011.2036H8.12793'%20fill='black'/%3e%3cpath%20d='M8.13116%2011.2036L8.14084%2011.1875L8.15053%2011.2036H8.12793'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.15753%2011.2036L8.16721%2011.1875L8.18013%2011.2036H8.1543'%20fill='black'/%3e%3cpath%20d='M8.15753%2011.2036L8.16721%2011.1875L8.18013%2011.2036H8.1543'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.14355%2011.1031L8.16939%2011.1128L8.14678%2011.1257L8.14355%2011.1064'%20fill='black'/%3e%3cpath%20d='M8.14355%2011.1031L8.16939%2011.1128L8.14678%2011.1257L8.14355%2011.1064'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.17188%2011.1125L8.19448%2011.119L8.17833%2011.1319L8.17188%2011.1125Z'%20fill='black'/%3e%3cpath%20d='M8.17188%2011.1125L8.19448%2011.119L8.17833%2011.1319L8.17188%2011.1125Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.10054%2011.5531L8.14117%2011.5281C8.15336%2011.5196%208.16394%2011.5091%208.17242%2011.4969M8.00679%2011.3031C8.00679%2011.3031%207.98492%2011.3094%207.97554%2011.3219C7.96304%2011.3375%207.96617%2011.3531%207.96617%2011.3531C7.96617%2011.3531%207.98492%2011.3375%208.01304%2011.3437L8.05054%2011.3531L8.09117%2011.3437C8.09117%2011.3437%208.06929%2011.3687%208.06929%2011.3844L8.07554%2011.4187C8.07554%2011.4406%208.05679%2011.4687%208.05679%2011.4687L8.08804%2011.4594C8.10728%2011.4548%208.12537%2011.4463%208.14117%2011.4344L8.16929%2011.4031C8.16929%2011.4031%208.16304%2011.4344%208.16929%2011.4469L8.17554%2011.4969L8.20054%2011.4781C8.20679%2011.475%208.22242%2011.4656%208.22867%2011.4562L8.23804%2011.425C8.23804%2011.425%208.23804%2011.45%208.25054%2011.4656L8.26929%2011.5156C8.26929%2011.5156%208.27867%2011.4906%208.28804%2011.4812C8.29742%2011.4687%208.30992%2011.4562%208.30992%2011.45C8.30987%2011.4405%208.30882%2011.4311%208.30679%2011.4219L8.31929%2011.4469L8.00679%2011.3031ZM7.97554%2011.4656C7.97554%2011.4656%207.99117%2011.4406%208.00679%2011.4344L8.04117%2011.4094L8.06929%2011.3969L7.97554%2011.4656Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.76816%2011.5125C7.76816%2011.5125%207.75566%2011.4969%207.73379%2011.5031C7.71191%2011.5031%207.69629%2011.5313%207.69629%2011.5313C7.69629%2011.5313%207.71504%2011.525%207.72754%2011.5281C7.74004%2011.5313%207.74629%2011.5406%207.74629%2011.5406L7.75879%2011.5281L7.76816%2011.5094'%20fill='%23DB4446'/%3e%3cpath%20d='M7.76816%2011.5125C7.76816%2011.5125%207.75566%2011.4969%207.73379%2011.5031C7.71191%2011.5031%207.69629%2011.5313%207.69629%2011.5313C7.69629%2011.5313%207.71504%2011.525%207.72754%2011.5281C7.74004%2011.5313%207.74629%2011.5406%207.74629%2011.5406L7.75879%2011.5281L7.76816%2011.5094V11.5125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.74434%2011.6C7.74434%2011.6%207.72559%2011.6%207.70996%2011.6094C7.69434%2011.6219%207.69434%2011.6469%207.69434%2011.6469C7.69434%2011.6469%207.70684%2011.6344%207.71934%2011.6375L7.74746%2011.6437V11.625C7.75371%2011.6125%207.74434%2011.6%207.74434%2011.6Z'%20fill='%23DB4446'/%3e%3cpath%20d='M7.74434%2011.6C7.74434%2011.6%207.72559%2011.6%207.70996%2011.6094C7.69434%2011.6219%207.69434%2011.6469%207.69434%2011.6469C7.69434%2011.6469%207.70684%2011.6344%207.71934%2011.6375L7.74746%2011.6437V11.625C7.75371%2011.6125%207.74434%2011.6%207.74434%2011.6Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.78809%2011.6813C7.78809%2011.6813%207.78809%2011.7063%207.79746%2011.7219C7.80996%2011.7375%207.83184%2011.7375%207.83184%2011.7375L7.82246%2011.7156C7.82246%2011.7031%207.83184%2011.6906%207.83184%2011.6906C7.83184%2011.6906%207.82246%2011.6813%207.80996%2011.6813H7.78809Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.28809%2011.7219C8.28809%2011.7219%208.35059%2011.7594%208.34746%2011.7906C8.34746%2011.8219%208.31621%2011.8625%208.31621%2011.8625M7.78809%2011.6813C7.78809%2011.6813%207.78809%2011.7063%207.79746%2011.7219C7.80996%2011.7375%207.83184%2011.7375%207.83184%2011.7375L7.82246%2011.7156C7.82246%2011.7031%207.83184%2011.6906%207.83184%2011.6906C7.83184%2011.6906%207.82246%2011.6813%207.80996%2011.6813H7.78809Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.00684%2011.8938C8.00684%2011.8938%207.99434%2011.875%207.97246%2011.875C7.95059%2011.875%207.92871%2011.8969%207.92871%2011.8969C7.92871%2011.8969%207.95371%2011.8938%207.95996%2011.9031L7.97559%2011.9219L7.99121%2011.9125L8.00684%2011.8938Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.00684%2011.8938C8.00684%2011.8938%207.99434%2011.875%207.97246%2011.875C7.95059%2011.875%207.92871%2011.8969%207.92871%2011.8969C7.92871%2011.8969%207.95371%2011.8938%207.95996%2011.9031L7.97559%2011.9219L7.99121%2011.9125L8.00684%2011.8938Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.94394%2011.9781C7.94394%2011.9781%207.9127%2011.975%207.9002%2011.9875C7.8877%2012.0031%207.8877%2012.0281%207.8877%2012.0281C7.8877%2012.0281%207.90645%2012.0094%207.91895%2012.0125C7.93457%2012.0125%207.9502%2012.0219%207.9502%2012.0219V12L7.94081%2011.9781'%20fill='%23DB4446'/%3e%3cpath%20d='M7.94394%2011.9781C7.94394%2011.9781%207.9127%2011.975%207.9002%2011.9875C7.8877%2012.0031%207.8877%2012.0281%207.8877%2012.0281C7.8877%2012.0281%207.90645%2012.0094%207.91895%2012.0125C7.93457%2012.0125%207.9502%2012.0219%207.9502%2012.0219V12L7.94081%2011.9781H7.94394Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.00026%2012.0656C8.00026%2012.0656%207.99089%2012.0875%208.00026%2012.1C8.00963%2012.1156%208.03151%2012.125%208.03151%2012.125C8.03151%2012.125%208.02213%2012.1125%208.02526%2012.1C8.02838%2012.0906%208.04713%2012.075%208.04713%2012.075L8.00339%2012.0687'%20fill='%23DB4446'/%3e%3cpath%20d='M8.00026%2012.0656C8.00026%2012.0656%207.99089%2012.0875%208.00026%2012.1C8.00963%2012.1156%208.03151%2012.125%208.03151%2012.125C8.03151%2012.125%208.02213%2012.1125%208.02526%2012.1C8.02838%2012.0906%208.04713%2012.075%208.04713%2012.075L8.00339%2012.0687L8.00026%2012.0656Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.37403%2012.1031C8.37403%2012.1031%208.34903%2012.0969%208.33652%2012.1031C8.3209%2012.1125%208.31152%2012.1469%208.31152%2012.1469C8.31152%2012.1469%208.3334%2012.1281%208.34903%2012.1312C8.36465%2012.1312%208.38028%2012.1406%208.38028%2012.1406V12.1156L8.37403%2012.1031Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.37403%2012.1031C8.37403%2012.1031%208.34903%2012.0969%208.33652%2012.1031C8.3209%2012.1125%208.31152%2012.1469%208.31152%2012.1469C8.31152%2012.1469%208.3334%2012.1281%208.34903%2012.1312C8.36465%2012.1312%208.38028%2012.1406%208.38028%2012.1406V12.1156L8.37403%2012.1031Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.3878%2012.1937C8.3878%2012.1937%208.36905%2012.2125%208.3753%2012.2281L8.39405%2012.2594C8.39405%2012.2594%208.39405%2012.2375%208.4003%2012.2281L8.43155%2012.2187L8.40967%2012.2031C8.40231%2012.2002%208.39501%2012.197%208.3878%2012.1937Z'%20fill='%23DB4446'/%3e%3cpath%20d='M8.3878%2012.1937C8.3878%2012.1937%208.36905%2012.2125%208.3753%2012.2281L8.39405%2012.2594C8.39405%2012.2594%208.39405%2012.2375%208.4003%2012.2281L8.43155%2012.2187L8.40967%2012.2031C8.40231%2012.2002%208.39501%2012.197%208.3878%2012.1937Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.48228%2012.2188C8.48228%2012.2188%208.47291%2012.2438%208.48853%2012.2594C8.50728%2012.275%208.51978%2012.275%208.51978%2012.275C8.51978%2012.275%208.51041%2012.2531%208.51353%2012.2406C8.51666%2012.225%208.52916%2012.2188%208.52916%2012.2188L8.50416%2012.2125L8.48228%2012.2219'%20fill='%23DB4446'/%3e%3cpath%20d='M8.48228%2012.2188C8.48228%2012.2188%208.47291%2012.2438%208.48853%2012.2594C8.50728%2012.275%208.51978%2012.275%208.51978%2012.275C8.51978%2012.275%208.51041%2012.2531%208.51353%2012.2406C8.51666%2012.225%208.52916%2012.2188%208.52916%2012.2188L8.50416%2012.2125L8.48228%2012.2219V12.2188Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.52598%2013.8875C7.58848%2013.9062%207.61973%2013.95%207.61973%2014.0062C7.61973%2014.0781%207.55098%2014.1312%207.46348%2014.1312C7.36973%2014.1312%207.29785%2014.0781%207.29785%2014.0062C7.29785%2013.9531%207.3291%2013.8937%207.3916%2013.8875L7.38535%2013.875L7.36348%2013.8531H7.40098L7.42598%2013.8687L7.4416%2013.8469C7.45098%2013.8344%207.46035%2013.8312%207.46035%2013.8312L7.4791%2013.85L7.48848%2013.8656L7.51035%2013.8531L7.53535%2013.8437C7.53535%2013.8437%207.53535%2013.8562%207.5291%2013.8656L7.52598%2013.8875Z'%20fill='%23FFD691'/%3e%3cpath%20d='M7.52598%2013.8875C7.58848%2013.9062%207.61973%2013.95%207.61973%2014.0062C7.61973%2014.0781%207.55098%2014.1312%207.46348%2014.1312C7.36973%2014.1312%207.29785%2014.0781%207.29785%2014.0062C7.29785%2013.9531%207.3291%2013.8937%207.3916%2013.8875L7.38535%2013.875L7.36348%2013.8531H7.40098L7.42598%2013.8687L7.4416%2013.8469C7.45098%2013.8344%207.46035%2013.8312%207.46035%2013.8312L7.4791%2013.85L7.48848%2013.8656L7.51035%2013.8531L7.53535%2013.8437C7.53535%2013.8437%207.53535%2013.8562%207.5291%2013.8656L7.52598%2013.8875Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.44727%2014.2094C7.44727%2014.2094%207.32851%2014.1281%207.27538%2014.1156C7.21288%2014.1031%207.13477%2014.1156%207.10352%2014.1156C7.10352%2014.1156%207.14102%2014.1406%207.15977%2014.1594C7.17539%2014.175%207.23164%2014.2063%207.26289%2014.2156C7.35664%2014.2406%207.45039%2014.2094%207.45039%2014.2094H7.44727ZM7.48164%2014.2156C7.48164%2014.2156%207.55664%2014.1375%207.63789%2014.125C7.73164%2014.1125%207.79414%2014.1344%207.83164%2014.1438L7.78477%2014.1688C7.76914%2014.1781%207.72227%2014.2156%207.65977%2014.2188C7.59727%2014.2188%207.52227%2014.2094%207.50977%2014.2125L7.48164%2014.2156Z'%20fill='%23058E6E'/%3e%3cpath%20d='M7.48164%2014.2156C7.48164%2014.2156%207.55664%2014.1375%207.63789%2014.125C7.73164%2014.1125%207.79414%2014.1344%207.83164%2014.1438L7.78477%2014.1688C7.76914%2014.1781%207.72227%2014.2156%207.65977%2014.2188C7.59727%2014.2188%207.52227%2014.2094%207.50977%2014.2125L7.48164%2014.2156ZM7.44727%2014.2094C7.44727%2014.2094%207.32851%2014.1281%207.27538%2014.1156C7.21288%2014.1031%207.13477%2014.1156%207.10352%2014.1156C7.10352%2014.1156%207.14102%2014.1406%207.15977%2014.1594C7.17539%2014.175%207.23164%2014.2063%207.26289%2014.2156C7.35664%2014.2406%207.45039%2014.2094%207.45039%2014.2094H7.44727Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.4592%2014.1187C7.44375%2014.1047%207.43141%2014.0876%207.42296%2014.0685C7.41452%2014.0494%207.41016%2014.0287%207.41016%2014.0078C7.41016%2013.9869%207.41452%2013.9663%207.42296%2013.9472C7.43141%2013.9281%207.44375%2013.9109%207.4592%2013.8969C7.47406%2013.9109%207.48588%2013.9279%207.49394%2013.9467C7.502%2013.9655%207.50613%2013.9858%207.50607%2014.0062C7.50637%2014.0272%207.50237%2014.048%207.49431%2014.0674C7.48625%2014.0867%207.47429%2014.1042%207.4592%2014.1187Z'%20fill='%23AD1519'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M7.42871%2014.2812C7.42871%2014.2812%207.44746%2014.2344%207.44746%2014.1969L7.44434%2014.1312H7.46934C7.46934%2014.1312%207.47871%2014.1656%207.47871%2014.1937L7.47559%2014.2687L7.45371%2014.2719L7.42871%2014.2812Z'%20fill='%23058E6E'/%3e%3cpath%20d='M7.42871%2014.2812C7.42871%2014.2812%207.44746%2014.2344%207.44746%2014.1969L7.44434%2014.1312H7.46934C7.46934%2014.1312%207.47871%2014.1656%207.47871%2014.1937L7.47559%2014.2687L7.45371%2014.2719L7.42871%2014.2812Z'%20stroke='black'%20stroke-width='0.125'/%3e%3cpath%20d='M8.93848%209.95935C8.93848%209.94373%208.9541%209.9281%208.96973%209.9281C8.98848%209.9281%209.0041%209.94373%209.0041%209.95935C9.0041%209.9781%208.98848%209.9906%208.97285%209.9906C8.96456%209.9906%208.95662%209.98731%208.95075%209.98145C8.94489%209.97559%208.9416%209.96764%208.9416%209.95935'%20fill='white'/%3e%3cpath%20d='M8.93848%209.95935C8.93848%209.94373%208.9541%209.9281%208.96973%209.9281C8.98848%209.9281%209.0041%209.94373%209.0041%209.95935C9.0041%209.9781%208.98848%209.9906%208.97285%209.9906C8.96456%209.9906%208.95662%209.98731%208.95075%209.98145C8.94489%209.97559%208.9416%209.96764%208.9416%209.95935H8.93848Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.98242%209.88123C8.98242%209.86248%208.99805%209.84998%209.0168%209.84998C9.0355%209.84998%209.048%209.86248%209.048%209.88123C9.048%209.89998%209.0355%209.91248%209.0168%209.91248C9.0085%209.91248%209.0006%209.90919%208.9947%209.90333C8.98884%209.89747%208.98555%209.88952%208.98555%209.88123'%20fill='white'/%3e%3cpath%20d='M8.98242%209.88123C8.98242%209.86248%208.99805%209.84998%209.0168%209.84998C9.0355%209.84998%209.048%209.86248%209.048%209.88123C9.048%209.89998%209.0355%209.91248%209.0168%209.91248C9.0085%209.91248%209.0006%209.90919%208.9947%209.90333C8.98884%209.89747%208.98555%209.88952%208.98555%209.88123H8.98242Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.0127%209.78748C9.0127%209.77185%209.02829%209.75623%209.04389%209.75623C9.06269%209.75623%209.0783%209.77185%209.0783%209.78748C9.0783%209.8031%209.0627%209.81873%209.0471%209.81873C9.0427%209.81917%209.03829%209.81868%209.03419%209.81731C9.02999%209.81594%209.02619%209.81369%209.02289%209.81075C9.01969%209.8078%209.0171%209.80421%209.0153%209.80019C9.0136%209.79618%209.0127%209.79186%209.0127%209.78748Z'%20fill='white'/%3e%3cpath%20d='M9.0127%209.78748C9.0127%209.77185%209.02829%209.75623%209.04389%209.75623C9.06269%209.75623%209.0783%209.77185%209.0783%209.78748C9.0783%209.8031%209.0627%209.81873%209.0471%209.81873C9.0427%209.81917%209.03829%209.81868%209.03419%209.81731C9.02999%209.81594%209.02619%209.81369%209.02289%209.81075C9.01969%209.8078%209.0171%209.80421%209.0153%209.80019C9.0136%209.79618%209.0127%209.79186%209.0127%209.78748Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M9.0146%209.6875C9.0146%209.67188%209.0303%209.65625%209.0459%209.65625C9.0646%209.65625%209.0803%209.67188%209.0803%209.6875C9.0803%209.70625%209.0646%209.71875%209.049%209.71875C9.0407%209.71875%209.0328%209.71546%209.0269%209.7096C9.0211%209.70374%209.0178%209.69579%209.0178%209.6875'%20fill='white'/%3e%3cpath%20d='M9.0146%209.6875C9.0146%209.67188%209.0303%209.65625%209.0459%209.65625C9.0646%209.65625%209.0803%209.67188%209.0803%209.6875C9.0803%209.70625%209.0646%209.71875%209.049%209.71875C9.0407%209.71875%209.0328%209.71546%209.0269%209.7096C9.0211%209.70374%209.0178%209.69579%209.0178%209.6875H9.0146Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.99121%209.59375C8.99121%209.575%209.0068%209.5625%209.0225%209.5625C9.0443%209.5625%209.06%209.575%209.06%209.59375C9.06%209.6125%209.0443%209.625%209.0256%209.625C9.0173%209.625%209.0093%209.62171%209.0035%209.61585C8.99763%209.60999%208.99434%209.60204%208.99434%209.59375'%20fill='white'/%3e%3cpath%20d='M8.99121%209.59375C8.99121%209.575%209.0068%209.5625%209.0225%209.5625C9.0443%209.5625%209.06%209.575%209.06%209.59375C9.06%209.6125%209.0443%209.625%209.0256%209.625C9.0173%209.625%209.0093%209.62171%209.0035%209.61585C8.99763%209.60999%208.99434%209.60204%208.99434%209.59375H8.99121Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.94043%209.50311C8.94043%209.48749%208.95605%209.47186%208.97168%209.47186C8.99355%209.47186%209.0061%209.48749%209.0061%209.50311C9.0061%209.51874%208.99355%209.53436%208.9748%209.53436C8.96652%209.53436%208.95857%209.53107%208.95271%209.52521C8.94685%209.51935%208.94355%209.5114%208.94355%209.50311'%20fill='white'/%3e%3cpath%20d='M8.94043%209.50311C8.94043%209.48749%208.95605%209.47186%208.97168%209.47186C8.99355%209.47186%209.0061%209.48749%209.0061%209.50311C9.0061%209.51874%208.99355%209.53436%208.9748%209.53436C8.96652%209.53436%208.95857%209.53107%208.95271%209.52521C8.94685%209.51935%208.94355%209.5114%208.94355%209.50311H8.94043Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.875%209.43127C8.875%209.41252%208.8875%209.40002%208.90625%209.40002C8.925%209.40002%208.9375%209.41252%208.9375%209.43127C8.9375%209.45002%208.925%209.46252%208.90625%209.46252C8.89796%209.46252%208.89001%209.45923%208.88415%209.45337C8.87829%209.44751%208.875%209.43956%208.875%209.43127Z'%20fill='white'/%3e%3cpath%20d='M8.875%209.43127C8.875%209.41252%208.8875%209.40002%208.90625%209.40002C8.925%209.40002%208.9375%209.41252%208.9375%209.43127C8.9375%209.45002%208.925%209.46252%208.90625%209.46252C8.89796%209.46252%208.89001%209.45923%208.88415%209.45337C8.87829%209.44751%208.875%209.43956%208.875%209.43127Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.79395%209.36877C8.79395%209.35315%208.80956%209.33752%208.82831%209.33752C8.8366%209.33752%208.84456%209.34081%208.85042%209.34667C8.85628%209.35253%208.85956%209.36048%208.85956%209.36877C8.85956%209.37706%208.85628%209.38501%208.85042%209.39087C8.84456%209.39673%208.8366%209.40002%208.82831%209.40002C8.80956%209.40002%208.79706%209.38752%208.79706%209.36877'%20fill='white'/%3e%3cpath%20d='M8.79395%209.36877C8.79395%209.35315%208.80956%209.33752%208.82831%209.33752C8.8366%209.33752%208.84456%209.34081%208.85042%209.34667C8.85628%209.35253%208.85956%209.36048%208.85956%209.36877C8.85956%209.37706%208.85628%209.38501%208.85042%209.39087C8.84456%209.39673%208.8366%209.40002%208.82831%209.40002C8.80956%209.40002%208.79706%209.38752%208.79706%209.36877H8.79395Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.7041%209.3219C8.7041%209.30315%208.7166%209.29065%208.73535%209.29065C8.7541%209.29065%208.7666%209.30315%208.7666%209.3219C8.7666%209.34065%208.7541%209.35315%208.73535%209.35315C8.72706%209.35315%208.71911%209.34985%208.71325%209.34399C8.70739%209.33813%208.7041%209.33018%208.7041%209.3219Z'%20fill='white'/%3e%3cpath%20d='M8.7041%209.3219C8.7041%209.30315%208.7166%209.29065%208.73535%209.29065C8.7541%209.29065%208.7666%209.30315%208.7666%209.3219C8.7666%209.34065%208.7541%209.35315%208.73535%209.35315C8.72706%209.35315%208.71911%209.34985%208.71325%209.34399C8.70739%209.33813%208.7041%209.33018%208.7041%209.3219Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.60352%209.28436C8.60352%209.26874%208.61914%209.25311%208.63789%209.25311C8.64618%209.25311%208.65413%209.25641%208.65999%209.26227C8.66585%209.26813%208.66914%209.27608%208.66914%209.28436C8.66914%209.29265%208.66585%209.3006%208.65999%209.30646C8.65413%209.31232%208.64618%209.31561%208.63789%209.31561C8.6296%209.31561%208.62165%209.31232%208.61579%209.30646C8.60993%209.3006%208.60664%209.29265%208.60664%209.28436'%20fill='white'/%3e%3cpath%20d='M8.60352%209.28436C8.60352%209.26874%208.61914%209.25311%208.63789%209.25311C8.64618%209.25311%208.65413%209.25641%208.65999%209.26227C8.66585%209.26813%208.66914%209.27608%208.66914%209.28436C8.66914%209.29265%208.66585%209.3006%208.65999%209.30646C8.65413%209.31232%208.64618%209.31561%208.63789%209.31561C8.6296%209.31561%208.62165%209.31232%208.61579%209.30646C8.60993%209.3006%208.60664%209.29265%208.60664%209.28436H8.60352Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.49707%209.26562C8.49707%209.25%208.50957%209.23438%208.52832%209.23438C8.54707%209.23438%208.55957%209.25%208.55957%209.26562C8.55957%209.28125%208.54707%209.29688%208.52832%209.29688C8.52003%209.29688%208.51208%209.29357%208.50622%209.28771C8.50036%209.28185%208.49707%209.27391%208.49707%209.26562Z'%20fill='white'/%3e%3cpath%20d='M8.49707%209.26562C8.49707%209.25%208.50957%209.23438%208.52832%209.23438C8.54707%209.23438%208.55957%209.25%208.55957%209.26562C8.55957%209.28125%208.54707%209.29688%208.52832%209.29688C8.52003%209.29688%208.51208%209.29357%208.50622%209.28771C8.50036%209.28185%208.49707%209.27391%208.49707%209.26562Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.39355%209.2594C8.39355%209.24377%208.40605%209.22815%208.4248%209.22815C8.44355%209.22815%208.45605%209.24377%208.45605%209.2594C8.45605%209.27502%208.44355%209.29065%208.4248%209.29065C8.41652%209.29065%208.40857%209.28735%208.40271%209.28149C8.39685%209.27563%208.39355%209.26768%208.39355%209.2594Z'%20fill='white'/%3e%3cpath%20d='M8.39355%209.2594C8.39355%209.24377%208.40605%209.22815%208.4248%209.22815C8.44355%209.22815%208.45605%209.24377%208.45605%209.2594C8.45605%209.27502%208.44355%209.29065%208.4248%209.29065C8.41652%209.29065%208.40857%209.28735%208.40271%209.28149C8.39685%209.27563%208.39355%209.26768%208.39355%209.2594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.29102%209.26562C8.29102%209.24687%208.30664%209.23438%208.32227%209.23438C8.34414%209.23438%208.35664%209.24687%208.35664%209.26562C8.35664%209.28438%208.34414%209.29688%208.32539%209.29688C8.3171%209.29688%208.30915%209.29357%208.30329%209.28771C8.29743%209.28185%208.29414%209.27391%208.29414%209.26562'%20fill='white'/%3e%3cpath%20d='M8.29102%209.26562C8.29102%209.24687%208.30664%209.23438%208.32227%209.23438C8.34414%209.23438%208.35664%209.24687%208.35664%209.26562C8.35664%209.28438%208.34414%209.29688%208.32539%209.29688C8.3171%209.29688%208.30915%209.29357%208.30329%209.28771C8.29743%209.28185%208.29414%209.27391%208.29414%209.26562H8.29102Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.19141%209.26562C8.19141%209.24687%208.20703%209.23438%208.22265%209.23438C8.2414%209.23438%208.25703%209.24687%208.25703%209.26562C8.25703%209.28438%208.2414%209.29688%208.22578%209.29688C8.22142%209.29732%208.21702%209.29682%208.21286%209.29545C8.2087%209.29408%208.20488%209.29185%208.20163%209.28891C8.19839%209.28596%208.19581%209.28236%208.19405%209.27835C8.19228%209.27434%208.19138%209.27%208.19141%209.26562Z'%20fill='white'/%3e%3cpath%20d='M8.19141%209.26562C8.19141%209.24687%208.20703%209.23438%208.22265%209.23438C8.2414%209.23438%208.25703%209.24687%208.25703%209.26562C8.25703%209.28438%208.2414%209.29688%208.22578%209.29688C8.22142%209.29732%208.21702%209.29682%208.21286%209.29545C8.2087%209.29408%208.20488%209.29185%208.20163%209.28891C8.19839%209.28596%208.19581%209.28236%208.19405%209.27835C8.19228%209.27434%208.19138%209.27%208.19141%209.26562Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.24023%209.34998C8.24023%209.33435%208.25586%209.31873%208.27148%209.31873C8.29336%209.31873%208.30586%209.33435%208.30586%209.34998C8.30586%209.3656%208.29336%209.38123%208.27461%209.38123C8.26632%209.38123%208.25837%209.37794%208.25251%209.37208C8.24665%209.36622%208.24336%209.35827%208.24336%209.34998H8.24023ZM8.26211%209.44685C8.26211%209.4281%208.27461%209.4156%208.29336%209.4156C8.31211%209.4156%208.32461%209.4281%208.32461%209.44685C8.32461%209.46248%208.31211%209.4781%208.29336%209.4781C8.28507%209.4781%208.27713%209.47481%208.27127%209.46895C8.26541%209.46309%208.26211%209.45514%208.26211%209.44685ZM8.26211%209.5406C8.26211%209.52498%208.28086%209.50935%208.29648%209.50935C8.30477%209.50935%208.31272%209.51265%208.31858%209.51851C8.32444%209.52437%208.32773%209.53232%208.32773%209.5406C8.32773%209.54889%208.32444%209.55684%208.31858%209.5627C8.31272%209.56856%208.30477%209.57185%208.29648%209.57185C8.2882%209.57185%208.28025%209.56856%208.27439%209.5627C8.26853%209.55684%208.26523%209.54889%208.26523%209.5406H8.26211ZM8.23398%209.6281C8.23398%209.61248%208.24961%209.59685%208.26523%209.59685C8.28711%209.59685%208.29961%209.61248%208.29961%209.6281C8.29961%209.64685%208.28711%209.65935%208.26836%209.65935C8.26007%209.65935%208.25212%209.65606%208.24626%209.6502C8.2404%209.64434%208.23711%209.63639%208.23711%209.6281H8.23398ZM8.17773%209.70934C8.17773%209.69372%208.19336%209.67809%208.20898%209.67809C8.23086%209.67809%208.24648%209.69372%208.24648%209.70934C8.24648%209.72497%208.23086%209.74059%208.21211%209.74059C8.19336%209.74059%208.18086%209.72809%208.18086%209.70934'%20fill='white'/%3e%3cpath%20d='M8.17773%209.70934C8.17773%209.69372%208.19336%209.67809%208.20898%209.67809C8.23086%209.67809%208.24648%209.69372%208.24648%209.70934C8.24648%209.72497%208.23086%209.74059%208.21211%209.74059C8.19336%209.74059%208.18086%209.72809%208.18086%209.70934M8.24023%209.34998C8.24023%209.33435%208.25586%209.31873%208.27148%209.31873C8.29336%209.31873%208.30586%209.33435%208.30586%209.34998C8.30586%209.3656%208.29336%209.38123%208.27461%209.38123C8.26632%209.38123%208.25837%209.37794%208.25251%209.37208C8.24665%209.36622%208.24336%209.35827%208.24336%209.34998H8.24023ZM8.26211%209.44685C8.26211%209.4281%208.27461%209.4156%208.29336%209.4156C8.31211%209.4156%208.32461%209.4281%208.32461%209.44685C8.32461%209.46248%208.31211%209.4781%208.29336%209.4781C8.28507%209.4781%208.27713%209.47481%208.27127%209.46895C8.26541%209.46309%208.26211%209.45514%208.26211%209.44685ZM8.26211%209.5406C8.26211%209.52498%208.28086%209.50935%208.29648%209.50935C8.30477%209.50935%208.31272%209.51265%208.31858%209.51851C8.32444%209.52437%208.32773%209.53232%208.32773%209.5406C8.32773%209.54889%208.32444%209.55684%208.31858%209.5627C8.31272%209.56856%208.30477%209.57185%208.29648%209.57185C8.2882%209.57185%208.28025%209.56856%208.27439%209.5627C8.26853%209.55684%208.26523%209.54889%208.26523%209.5406H8.26211ZM8.23398%209.6281C8.23398%209.61248%208.24961%209.59685%208.26523%209.59685C8.28711%209.59685%208.29961%209.61248%208.29961%209.6281C8.29961%209.64685%208.28711%209.65935%208.26836%209.65935C8.26007%209.65935%208.25212%209.65606%208.24626%209.6502C8.2404%209.64434%208.23711%209.63639%208.23711%209.6281H8.23398Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.11328%209.20312C8.11328%209.1875%208.12891%209.17188%208.14766%209.17188C8.15594%209.17188%208.16389%209.17517%208.16975%209.18103C8.17561%209.18689%208.17891%209.19484%208.17891%209.20312C8.17891%209.21141%208.17561%209.21935%208.16975%209.22521C8.16389%209.23107%208.15594%209.23438%208.14766%209.23438C8.13937%209.23438%208.13142%209.23107%208.12556%209.22521C8.1197%209.21935%208.11641%209.21141%208.11641%209.20312'%20fill='white'/%3e%3cpath%20d='M8.11328%209.20312C8.11328%209.1875%208.12891%209.17188%208.14766%209.17188C8.15594%209.17188%208.16389%209.17517%208.16975%209.18103C8.17561%209.18689%208.17891%209.19484%208.17891%209.20312C8.17891%209.21141%208.17561%209.21935%208.16975%209.22521C8.16389%209.23107%208.15594%209.23438%208.14766%209.23438C8.13937%209.23438%208.13142%209.23107%208.12556%209.22521C8.1197%209.21935%208.11641%209.21141%208.11641%209.20312H8.11328Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M8.02539%209.15625C8.02539%209.1375%208.03789%209.125%208.05664%209.125C8.07539%209.125%208.08789%209.1375%208.08789%209.15625C8.08789%209.175%208.07539%209.1875%208.05664%209.1875C8.04835%209.1875%208.0404%209.18421%208.03454%209.17835C8.02868%209.17249%208.02539%209.16454%208.02539%209.15625Z'%20fill='white'/%3e%3cpath%20d='M8.02539%209.15625C8.02539%209.1375%208.03789%209.125%208.05664%209.125C8.07539%209.125%208.08789%209.1375%208.08789%209.15625C8.08789%209.175%208.07539%209.1875%208.05664%209.1875C8.04835%209.1875%208.0404%209.18421%208.03454%209.17835C8.02868%209.17249%208.02539%209.16454%208.02539%209.15625Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.9248%209.125C7.9248%209.10625%207.94044%209.09375%207.95607%209.09375C7.97482%209.09375%207.99043%209.10625%207.99043%209.125C7.99043%209.14062%207.97481%209.15625%207.95918%209.15625C7.94043%209.15625%207.9248%209.14062%207.9248%209.125Z'%20fill='white'/%3e%3cpath%20d='M7.9248%209.125C7.9248%209.10625%207.94044%209.09375%207.95607%209.09375C7.97482%209.09375%207.99043%209.10625%207.99043%209.125C7.99043%209.14062%207.97481%209.15625%207.95918%209.15625C7.94043%209.15625%207.9248%209.14062%207.9248%209.125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.82227%209.10626C7.82227%209.09064%207.83789%209.07501%207.85352%209.07501C7.87227%209.07501%207.88789%209.09064%207.88789%209.10626C7.88789%209.12188%207.87227%209.13751%207.85664%209.13751C7.85228%209.13795%207.84788%209.13746%207.84372%209.13609C7.83956%209.13472%207.83574%209.13249%207.83249%209.12954C7.82925%209.12659%207.82667%209.123%207.82491%209.11899C7.82314%209.11498%207.82224%209.11064%207.82227%209.10626Z'%20fill='white'/%3e%3cpath%20d='M7.82227%209.10626C7.82227%209.09064%207.83789%209.07501%207.85352%209.07501C7.87227%209.07501%207.88789%209.09064%207.88789%209.10626C7.88789%209.12188%207.87227%209.13751%207.85664%209.13751C7.85228%209.13795%207.84788%209.13746%207.84372%209.13609C7.83956%209.13472%207.83574%209.13249%207.83249%209.12954C7.82925%209.12659%207.82667%209.123%207.82491%209.11899C7.82314%209.11498%207.82224%209.11064%207.82227%209.10626Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.71875%209.10938C7.71875%209.09062%207.73438%209.07812%207.75313%209.07812C7.77188%209.07812%207.78438%209.09062%207.78438%209.10938C7.78438%209.125%207.77188%209.14062%207.75313%209.14062C7.74484%209.14062%207.73689%209.13733%207.73103%209.13147C7.72517%209.12561%207.72188%209.11766%207.72188%209.10938'%20fill='white'/%3e%3cpath%20d='M7.71875%209.10938C7.71875%209.09062%207.73438%209.07812%207.75313%209.07812C7.77188%209.07812%207.78438%209.09062%207.78438%209.10938C7.78438%209.125%207.77188%209.14062%207.75313%209.14062C7.74484%209.14062%207.73689%209.13733%207.73103%209.13147C7.72517%209.12561%207.72188%209.11766%207.72188%209.10938H7.71875Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.61523%209.125C7.61523%209.10938%207.63086%209.09375%207.64648%209.09375C7.66836%209.09375%207.68086%209.10938%207.68086%209.125C7.68086%209.14062%207.66836%209.15625%207.64961%209.15625C7.64132%209.15625%207.63337%209.15296%207.62751%209.1471C7.62165%209.14124%207.61836%209.13329%207.61836%209.125'%20fill='white'/%3e%3cpath%20d='M7.61523%209.125C7.61523%209.10938%207.63086%209.09375%207.64648%209.09375C7.66836%209.09375%207.68086%209.10938%207.68086%209.125C7.68086%209.14062%207.66836%209.15625%207.64961%209.15625C7.64132%209.15625%207.63337%209.15296%207.62751%209.1471C7.62165%209.14124%207.61836%209.13329%207.61836%209.125H7.61523Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.51856%209.15936C7.51856%209.14373%207.53417%209.12811%207.54979%209.12811C7.56854%209.12811%207.58417%209.14373%207.58417%209.15936C7.58417%209.17498%207.56854%209.19061%207.55292%209.19061C7.54856%209.19105%207.54417%209.19057%207.54001%209.18919C7.53585%209.18782%207.53201%209.18559%207.52877%209.18264C7.52553%209.17969%207.52295%209.1761%207.52118%209.17209C7.51942%209.16808%207.51853%209.16374%207.51856%209.15936Z'%20fill='white'/%3e%3cpath%20d='M7.51856%209.15936C7.51856%209.14373%207.53417%209.12811%207.54979%209.12811C7.56854%209.12811%207.58417%209.14373%207.58417%209.15936C7.58417%209.17498%207.56854%209.19061%207.55292%209.19061C7.54856%209.19105%207.54417%209.19057%207.54001%209.18919C7.53585%209.18782%207.53201%209.18559%207.52877%209.18264C7.52553%209.17969%207.52295%209.1761%207.52118%209.17209C7.51942%209.16808%207.51853%209.16374%207.51856%209.15936Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.87598%209.95935C5.87598%209.94373%205.88848%209.9281%205.90723%209.9281C5.92598%209.9281%205.93848%209.94373%205.93848%209.95935C5.93848%209.9781%205.92598%209.9906%205.90723%209.9906C5.89894%209.9906%205.89099%209.98731%205.88513%209.98145C5.87927%209.97559%205.87598%209.96764%205.87598%209.95935Z'%20fill='white'/%3e%3cpath%20d='M5.87598%209.95935C5.87598%209.94373%205.88848%209.9281%205.90723%209.9281C5.92598%209.9281%205.93848%209.94373%205.93848%209.95935C5.93848%209.9781%205.92598%209.9906%205.90723%209.9906C5.89894%209.9906%205.89099%209.98731%205.88513%209.98145C5.87927%209.97559%205.87598%209.96764%205.87598%209.95935Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.82812%209.88123C5.82812%209.86248%205.84375%209.84998%205.85938%209.84998C5.87813%209.84998%205.89062%209.86248%205.89062%209.88123C5.89062%209.89998%205.87813%209.91248%205.85938%209.91248C5.85109%209.91248%205.84314%209.90919%205.83728%209.90333C5.83142%209.89747%205.82812%209.88952%205.82812%209.88123Z'%20fill='white'/%3e%3cpath%20d='M5.82812%209.88123C5.82812%209.86248%205.84375%209.84998%205.85938%209.84998C5.87813%209.84998%205.89062%209.86248%205.89062%209.88123C5.89062%209.89998%205.87813%209.91248%205.85938%209.91248C5.85109%209.91248%205.84314%209.90919%205.83728%209.90333C5.83142%209.89747%205.82812%209.88952%205.82812%209.88123Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.79785%209.78748C5.79785%209.77185%205.81348%209.75623%205.8291%209.75623C5.85098%209.75623%205.86348%209.77185%205.86348%209.78748C5.86348%209.8031%205.85098%209.81873%205.83223%209.81873C5.82394%209.81873%205.81599%209.81544%205.81013%209.80958C5.80427%209.80372%205.80098%209.79577%205.80098%209.78748'%20fill='white'/%3e%3cpath%20d='M5.79785%209.78748C5.79785%209.77185%205.81348%209.75623%205.8291%209.75623C5.85098%209.75623%205.86348%209.77185%205.86348%209.78748C5.86348%209.8031%205.85098%209.81873%205.83223%209.81873C5.82394%209.81873%205.81599%209.81544%205.81013%209.80958C5.80427%209.80372%205.80098%209.79577%205.80098%209.78748H5.79785Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.79492%209.6875C5.79492%209.67188%205.81055%209.65625%205.82617%209.65625C5.84492%209.65625%205.86055%209.67188%205.86055%209.6875C5.86055%209.70625%205.84492%209.71875%205.8293%209.71875C5.82101%209.71875%205.81306%209.71546%205.8072%209.7096C5.80134%209.70374%205.79805%209.69579%205.79805%209.6875'%20fill='white'/%3e%3cpath%20d='M5.79492%209.6875C5.79492%209.67188%205.81055%209.65625%205.82617%209.65625C5.84492%209.65625%205.86055%209.67188%205.86055%209.6875C5.86055%209.70625%205.84492%209.71875%205.8293%209.71875C5.82101%209.71875%205.81306%209.71546%205.8072%209.7096C5.80134%209.70374%205.79805%209.69579%205.79805%209.6875H5.79492Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.81934%209.59375C5.81934%209.575%205.83496%209.5625%205.85059%209.5625C5.86934%209.5625%205.88184%209.575%205.88184%209.59375C5.88184%209.6125%205.86934%209.625%205.85059%209.625C5.8423%209.625%205.83435%209.62171%205.82849%209.61585C5.82263%209.60999%205.81934%209.60204%205.81934%209.59375Z'%20fill='white'/%3e%3cpath%20d='M5.81934%209.59375C5.81934%209.575%205.83496%209.5625%205.85059%209.5625C5.86934%209.5625%205.88184%209.575%205.88184%209.59375C5.88184%209.6125%205.86934%209.625%205.85059%209.625C5.8423%209.625%205.83435%209.62171%205.82849%209.61585C5.82263%209.60999%205.81934%209.60204%205.81934%209.59375Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.86914%209.50311C5.86914%209.48749%205.88477%209.47186%205.90039%209.47186C5.91914%209.47186%205.93477%209.48749%205.93477%209.50311C5.93477%209.51874%205.91914%209.53436%205.90352%209.53436C5.89523%209.53436%205.88728%209.53107%205.88142%209.52521C5.87556%209.51935%205.87227%209.5114%205.87227%209.50311'%20fill='white'/%3e%3cpath%20d='M5.86914%209.50311C5.86914%209.48749%205.88477%209.47186%205.90039%209.47186C5.91914%209.47186%205.93477%209.48749%205.93477%209.50311C5.93477%209.51874%205.91914%209.53436%205.90352%209.53436C5.89523%209.53436%205.88728%209.53107%205.88142%209.52521C5.87556%209.51935%205.87227%209.5114%205.87227%209.50311H5.86914Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M5.9375%209.43127C5.9375%209.41252%205.95%209.40002%205.96875%209.40002C5.9875%209.40002%206%209.41252%206%209.43127C6%209.45002%205.9875%209.46252%205.96875%209.46252C5.96046%209.46252%205.95251%209.45923%205.94665%209.45337C5.94079%209.44751%205.9375%209.43956%205.9375%209.43127Z'%20fill='white'/%3e%3cpath%20d='M5.9375%209.43127C5.9375%209.41252%205.95%209.40002%205.96875%209.40002C5.9875%209.40002%206%209.41252%206%209.43127C6%209.45002%205.9875%209.46252%205.96875%209.46252C5.96046%209.46252%205.95251%209.45923%205.94665%209.45337C5.94079%209.44751%205.9375%209.43956%205.9375%209.43127Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.01562%209.36877C6.01562%209.35315%206.02812%209.33752%206.04688%209.33752C6.06563%209.33752%206.07812%209.35315%206.07812%209.36877C6.07812%209.3844%206.06563%209.40002%206.04688%209.40002C6.03859%209.40002%206.03064%209.39673%206.02478%209.39087C6.01892%209.38501%206.01562%209.37706%206.01562%209.36877Z'%20fill='white'/%3e%3cpath%20d='M6.01562%209.36877C6.01562%209.35315%206.02812%209.33752%206.04688%209.33752C6.06563%209.33752%206.07812%209.35315%206.07812%209.36877C6.07812%209.3844%206.06563%209.40002%206.04688%209.40002C6.03859%209.40002%206.03064%209.39673%206.02478%209.39087C6.01892%209.38501%206.01562%209.37706%206.01562%209.36877Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.11035%209.3219C6.11035%209.30315%206.12285%209.29065%206.1416%209.29065C6.16035%209.29065%206.17285%209.30315%206.17285%209.3219C6.17285%209.34065%206.16035%209.35315%206.1416%209.35315C6.13331%209.35315%206.12536%209.34985%206.1195%209.34399C6.11364%209.33813%206.11035%209.33018%206.11035%209.3219Z'%20fill='white'/%3e%3cpath%20d='M6.11035%209.3219C6.11035%209.30315%206.12285%209.29065%206.1416%209.29065C6.16035%209.29065%206.17285%209.30315%206.17285%209.3219C6.17285%209.34065%206.16035%209.35315%206.1416%209.35315C6.13331%209.35315%206.12536%209.34985%206.1195%209.34399C6.11364%209.33813%206.11035%209.33018%206.11035%209.3219Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.20605%209.28436C6.20605%209.26874%206.22168%209.25311%206.2373%209.25311C6.24559%209.25311%206.25354%209.25641%206.2594%209.26227C6.26526%209.26813%206.26855%209.27608%206.26855%209.28436C6.26855%209.29265%206.26526%209.3006%206.2594%209.30646C6.25354%209.31232%206.24559%209.31561%206.2373%209.31561C6.22902%209.31561%206.22107%209.31232%206.21521%209.30646C6.20935%209.3006%206.20605%209.29265%206.20605%209.28436Z'%20fill='white'/%3e%3cpath%20d='M6.20605%209.28436C6.20605%209.26874%206.22168%209.25311%206.2373%209.25311C6.24559%209.25311%206.25354%209.25641%206.2594%209.26227C6.26526%209.26813%206.26855%209.27608%206.26855%209.28436C6.26855%209.29265%206.26526%209.3006%206.2594%209.30646C6.25354%209.31232%206.24559%209.31561%206.2373%209.31561C6.22902%209.31561%206.22107%209.31232%206.21521%209.30646C6.20935%209.3006%206.20605%209.29265%206.20605%209.28436Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.3125%209.26562C6.3125%209.25%206.32813%209.23438%206.34688%209.23438C6.35516%209.23438%206.36311%209.23767%206.36897%209.24353C6.37483%209.24939%206.37813%209.25734%206.37813%209.26562C6.37813%209.27391%206.37483%209.28185%206.36897%209.28771C6.36311%209.29357%206.35516%209.29688%206.34688%209.29688C6.32813%209.29688%206.31563%209.28438%206.31563%209.26562'%20fill='white'/%3e%3cpath%20d='M6.3125%209.26562C6.3125%209.25%206.32813%209.23438%206.34688%209.23438C6.35516%209.23438%206.36311%209.23767%206.36897%209.24353C6.37483%209.24939%206.37813%209.25734%206.37813%209.26562C6.37813%209.27391%206.37483%209.28185%206.36897%209.28771C6.36311%209.29357%206.35516%209.29688%206.34688%209.29688C6.32813%209.29688%206.31563%209.28438%206.31563%209.26562H6.3125Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.41992%209.2594C6.41992%209.24377%206.43242%209.22815%206.45117%209.22815C6.46992%209.22815%206.48242%209.24377%206.48242%209.2594C6.48242%209.27502%206.46992%209.29065%206.45117%209.29065C6.44288%209.29065%206.43494%209.28735%206.42907%209.28149C6.42321%209.27563%206.41992%209.26768%206.41992%209.2594Z'%20fill='white'/%3e%3cpath%20d='M6.41992%209.2594C6.41992%209.24377%206.43242%209.22815%206.45117%209.22815C6.46992%209.22815%206.48242%209.24377%206.48242%209.2594C6.48242%209.27502%206.46992%209.29065%206.45117%209.29065C6.44288%209.29065%206.43494%209.28735%206.42907%209.28149C6.42321%209.27563%206.41992%209.26768%206.41992%209.2594Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.51856%209.26562C6.51856%209.24687%206.53418%209.23438%206.54981%209.23438C6.56856%209.23438%206.58419%209.24687%206.58419%209.26562C6.58419%209.28438%206.56856%209.29688%206.55293%209.29688C6.54857%209.29732%206.54417%209.29682%206.54001%209.29545C6.53585%209.29408%206.53203%209.29185%206.52878%209.28891C6.52554%209.28596%206.52296%209.28236%206.52119%209.27835C6.51943%209.27434%206.51853%209.27%206.51856%209.26562Z'%20fill='white'/%3e%3cpath%20d='M6.51856%209.26562C6.51856%209.24687%206.53418%209.23438%206.54981%209.23438C6.56856%209.23438%206.58419%209.24687%206.58419%209.26562C6.58419%209.28438%206.56856%209.29688%206.55293%209.29688C6.54857%209.29732%206.54417%209.29682%206.54001%209.29545C6.53585%209.29408%206.53203%209.29185%206.52878%209.28891C6.52554%209.28596%206.52296%209.28236%206.52119%209.27835C6.51943%209.27434%206.51853%209.27%206.51856%209.26562Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.61914%209.26562C6.61914%209.24687%206.63476%209.23438%206.65039%209.23438C6.67226%209.23438%206.68789%209.24687%206.68789%209.26562C6.68789%209.28438%206.67226%209.29688%206.65351%209.29688C6.64523%209.29688%206.63728%209.29357%206.63142%209.28771C6.62556%209.28185%206.62227%209.27391%206.62227%209.26562'%20fill='white'/%3e%3cpath%20d='M6.61914%209.26562C6.61914%209.24687%206.63476%209.23438%206.65039%209.23438C6.67226%209.23438%206.68789%209.24687%206.68789%209.26562C6.68789%209.28438%206.67226%209.29688%206.65351%209.29688C6.64523%209.29688%206.63728%209.29357%206.63142%209.28771C6.62556%209.28185%206.62227%209.27391%206.62227%209.26562H6.61914Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.56895%209.34998C6.56895%209.33435%206.58457%209.31873%206.6002%209.31873C6.62207%209.31873%206.63457%209.33435%206.63457%209.34998C6.63457%209.3656%206.62207%209.38123%206.60332%209.38123C6.59503%209.38123%206.58708%209.37794%206.58122%209.37208C6.57536%209.36622%206.57207%209.35827%206.57207%209.34998H6.56895ZM6.5502%209.44685C6.5502%209.4281%206.5627%209.4156%206.58145%209.4156C6.6002%209.4156%206.6127%209.4281%206.6127%209.44685C6.6127%209.46248%206.6002%209.4781%206.58145%209.4781C6.57316%209.4781%206.56521%209.47481%206.55935%209.46895C6.55349%209.46309%206.5502%209.45514%206.5502%209.44685ZM6.54395%209.5406C6.54395%209.52498%206.55957%209.50935%206.5752%209.50935C6.59707%209.50935%206.60957%209.52498%206.60957%209.5406C6.60957%209.55623%206.59707%209.57185%206.57832%209.57185C6.57003%209.57185%206.56208%209.56856%206.55622%209.5627C6.55036%209.55684%206.54707%209.54889%206.54707%209.5406H6.54395ZM6.5752%209.6281C6.5752%209.61248%206.59082%209.59685%206.60645%209.59685C6.6252%209.59685%206.64082%209.61248%206.64082%209.6281C6.64082%209.64685%206.6252%209.65935%206.60957%209.65935C6.60521%209.65979%206.60081%209.65931%206.59665%209.65794C6.59249%209.65656%206.58867%209.65432%206.58542%209.65137C6.58218%209.64843%206.5796%209.64484%206.57784%209.64083C6.57607%209.63682%206.57517%209.63248%206.5752%209.6281ZM6.63145%209.70934C6.63145%209.69372%206.64707%209.67809%206.6627%209.67809C6.67098%209.67809%206.67893%209.68139%206.68479%209.68725C6.69065%209.69311%206.69395%209.70106%206.69395%209.70934C6.69395%209.71763%206.69065%209.72559%206.68479%209.73145C6.67893%209.73731%206.67098%209.74059%206.6627%209.74059C6.65441%209.74059%206.64646%209.73731%206.6406%209.73145C6.63474%209.72559%206.63145%209.71763%206.63145%209.70934Z'%20fill='white'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.69824%209.20312C6.69824%209.1875%206.71387%209.17188%206.72949%209.17188C6.73778%209.17188%206.74573%209.17517%206.75159%209.18103C6.75745%209.18689%206.76074%209.19484%206.76074%209.20312C6.76074%209.21141%206.75745%209.21935%206.75159%209.22521C6.74573%209.23107%206.73778%209.23438%206.72949%209.23438C6.7212%209.23438%206.71325%209.23107%206.70739%209.22521C6.70153%209.21935%206.69824%209.21141%206.69824%209.20312Z'%20fill='white'/%3e%3cpath%20d='M6.69824%209.20312C6.69824%209.1875%206.71387%209.17188%206.72949%209.17188C6.73778%209.17188%206.74573%209.17517%206.75159%209.18103C6.75745%209.18689%206.76074%209.19484%206.76074%209.20312C6.76074%209.21141%206.75745%209.21935%206.75159%209.22521C6.74573%209.23107%206.73778%209.23438%206.72949%209.23438C6.7212%209.23438%206.71325%209.23107%206.70739%209.22521C6.70153%209.21935%206.69824%209.21141%206.69824%209.20312Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.78711%209.15625C6.78711%209.1375%206.79961%209.125%206.81836%209.125C6.83711%209.125%206.84961%209.1375%206.84961%209.15625C6.84961%209.175%206.83711%209.1875%206.81836%209.1875C6.81007%209.1875%206.80212%209.18421%206.79626%209.17835C6.7904%209.17249%206.78711%209.16454%206.78711%209.15625Z'%20fill='white'/%3e%3cpath%20d='M6.78711%209.15625C6.78711%209.1375%206.79961%209.125%206.81836%209.125C6.83711%209.125%206.84961%209.1375%206.84961%209.15625C6.84961%209.175%206.83711%209.1875%206.81836%209.1875C6.81007%209.1875%206.80212%209.18421%206.79626%209.17835C6.7904%209.17249%206.78711%209.16454%206.78711%209.15625Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.88477%209.125C6.88477%209.10625%206.90039%209.09375%206.91602%209.09375C6.93789%209.09375%206.95039%209.10625%206.95039%209.125C6.95039%209.14062%206.93789%209.15625%206.91914%209.15625C6.90039%209.15625%206.88789%209.14062%206.88789%209.125'%20fill='white'/%3e%3cpath%20d='M6.88477%209.125C6.88477%209.10625%206.90039%209.09375%206.91602%209.09375C6.93789%209.09375%206.95039%209.10625%206.95039%209.125C6.95039%209.14062%206.93789%209.15625%206.91914%209.15625C6.90039%209.15625%206.88789%209.14062%206.88789%209.125H6.88477Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.9873%209.10626C6.9873%209.09064%207.00294%209.07501%207.01857%209.07501C7.04044%209.07501%207.05293%209.09064%207.05293%209.10626C7.05293%209.12189%207.04043%209.13751%207.02168%209.13751C7.01339%209.13751%207.00544%209.13422%206.99958%209.12836C6.99372%209.1225%206.99043%209.11455%206.99043%209.10626'%20fill='white'/%3e%3cpath%20d='M6.9873%209.10626C6.9873%209.09064%207.00294%209.07501%207.01857%209.07501C7.04044%209.07501%207.05293%209.09064%207.05293%209.10626C7.05293%209.12189%207.04043%209.13751%207.02168%209.13751C7.01339%209.13751%207.00544%209.13422%206.99958%209.12836C6.99372%209.1225%206.99043%209.11455%206.99043%209.10626H6.9873Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.09082%209.10938C7.09082%209.09062%207.10332%209.07812%207.12207%209.07812C7.14082%209.07812%207.15332%209.09062%207.15332%209.10938C7.15332%209.125%207.14082%209.14062%207.12207%209.14062C7.11378%209.14062%207.10583%209.13733%207.09997%209.13147C7.09411%209.12561%207.09082%209.11766%207.09082%209.10938Z'%20fill='white'/%3e%3cpath%20d='M7.09082%209.10938C7.09082%209.09062%207.10332%209.07812%207.12207%209.07812C7.14082%209.07812%207.15332%209.09062%207.15332%209.10938C7.15332%209.125%207.14082%209.14062%207.12207%209.14062C7.11378%209.14062%207.10583%209.13733%207.09997%209.13147C7.09411%209.12561%207.09082%209.11766%207.09082%209.10938Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.19434%209.125C7.19434%209.10938%207.20996%209.09375%207.22559%209.09375C7.24746%209.09375%207.25996%209.10938%207.25996%209.125C7.25996%209.14062%207.24746%209.15625%207.22871%209.15625C7.22042%209.15625%207.21247%209.15296%207.20661%209.1471C7.20075%209.14124%207.19746%209.13329%207.19746%209.125'%20fill='white'/%3e%3cpath%20d='M7.19434%209.125C7.19434%209.10938%207.20996%209.09375%207.22559%209.09375C7.24746%209.09375%207.25996%209.10938%207.25996%209.125C7.25996%209.14062%207.24746%209.15625%207.22871%209.15625C7.22042%209.15625%207.21247%209.15296%207.20661%209.1471C7.20075%209.14124%207.19746%209.13329%207.19746%209.125H7.19434Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M7.29199%209.15936C7.29199%209.14373%207.30762%209.12811%207.32324%209.12811C7.34512%209.12811%207.35762%209.14373%207.35762%209.15936C7.35762%209.17498%207.34512%209.19061%207.32637%209.19061C7.31808%209.19061%207.31013%209.18732%207.30427%209.18146C7.29841%209.17559%207.29512%209.16765%207.29512%209.15936'%20fill='white'/%3e%3cpath%20d='M7.29199%209.15936C7.29199%209.14373%207.30762%209.12811%207.32324%209.12811C7.34512%209.12811%207.35762%209.14373%207.35762%209.15936C7.35762%209.17498%207.34512%209.19061%207.32637%209.19061C7.31808%209.19061%207.31013%209.18732%207.30427%209.18146C7.29841%209.17559%207.29512%209.16765%207.29512%209.15936H7.29199Z'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.45996%2011.1531H6.42871V11.1219H6.38184V11.2344H6.43184V11.3125H6.32559V11.5313H6.38184V11.9781H6.27246V12.2063H7.12246V11.9781H7.01308V11.5313H7.06933V11.3125H6.96308V11.2344H7.01308V11.125H6.96308V11.1531H6.93808V11.1219H6.88808V11.1531H6.85371V11.1219H6.80371V11.2344H6.85371V11.3125H6.75058V11.0688H6.80371V10.9594H6.75058V10.9875H6.71933V10.9563H6.67246V10.9875H6.64433V10.9563H6.59433V11.0688H6.64746V11.3125H6.54433V11.2344H6.59433V11.125H6.54433V11.1531H6.51621V11.1219H6.45996V11.1531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M6.85683%2011.2344H6.96621M6.43184%2011.3125V11.2344H6.38184V11.1219H6.42871V11.1531H6.45996V11.1219H6.51621V11.1531H6.54433V11.125H6.59433V11.2344H6.54433M6.43184%2011.3125H6.32559V11.5313H6.38184V11.9781H6.27246M6.43184%2011.3125H6.96308M6.27246%2011.9781V12.2063M6.27246%2011.9781H7.12558M6.27246%2012.2063H7.12246V11.9781H7.01308V11.5313H7.06933V11.3125H6.96308M6.27246%2012.2063H7.12558M6.96308%2011.3125V11.2344H7.01308V11.125H6.96308V11.1531H6.93808V11.1219H6.88808V11.1531H6.85371V11.1219H6.80371V11.2344H6.85371V11.3125H6.75058V11.0688H6.80371V10.9594H6.75058V10.9875H6.71933V10.9563H6.67246V10.9875H6.64433V10.9563H6.59433V11.0688H6.64746M6.64746%2011.0688V11.3125H6.54433V11.2344M6.64746%2011.0688H6.75371M6.54433%2011.2344H6.43496M6.27246%2012.15H7.12558M6.27246%2012.0938H7.12558M6.27246%2012.0406H7.12558M6.38184%2011.9281H7.01308M6.38184%2011.8719H7.01308M6.38184%2011.8094H7.01308M6.38184%2011.7563H7.01308M6.38184%2011.7H7.01308M6.38184%2011.6438H7.01308M6.38184%2011.5906H7.01308M6.32559%2011.5344H7.06933M6.32559%2011.4781H7.06933M6.32559%2011.4219H7.06933M6.32559%2011.3656H7.06933M6.64433%2011.2563H6.75058M6.64433%2011.2H6.75058M6.64433%2011.1438H6.75058M6.64433%2011.0906H6.75058M6.59121%2011.0219H6.80371M6.42871%2011.2563H6.54121M6.38496%2011.1875H6.59121M6.38184%2012.2063V12.15M6.38184%2012.0938V12.0406M6.32559%2012.0938V12.15M6.43184%2012.15V12.0938M6.48496%2012.2063V12.15M6.48496%2012.0938V12.0406M6.48496%2011.9781V11.9281M6.48496%2011.8719V11.8094M6.43184%2012.0406V11.9781M6.32559%2012.0406V11.9781M6.54433%2011.9781V12.0406M6.59121%2011.9781V11.9281M6.43184%2011.8719V11.9281M6.54121%2011.8719V11.9281M6.64433%2011.8719V11.9281M6.59433%2011.875V11.8125M6.64746%2011.7594V11.8125M6.64746%2011.6469V11.7031M6.59433%2011.5906V11.6469M6.64746%2011.5375V11.5906M6.54433%2011.5375V11.5906M6.43496%2011.5375V11.5906M6.38496%2011.4813V11.5375M6.48809%2011.4813V11.5375M6.59433%2011.4813V11.5375M6.64746%2011.425V11.4813M6.54433%2011.425V11.4813M6.43496%2011.425V11.4813M6.38496%2011.3688V11.425M6.59433%2011.3688V11.425M6.48809%2011.2594V11.3156M6.96621%2011.2594H6.85683M7.01308%2011.1906H6.80683M7.01621%2012.2094V12.1531M7.01621%2012.0969V12.0438M7.07246%2012.0969V12.1531M6.96621%2012.1531V12.0938M6.91308%2012.2063V12.15M6.91308%2012.0938V12.0406M6.91308%2011.9781V11.9281M6.91308%2011.8719V11.8094M6.96621%2012.0406V11.9781M7.07246%2012.0406V11.9781M6.85371%2011.9781V12.0406M6.80683%2011.9781V11.9281M6.96621%2011.8719V11.9281M6.85683%2011.8719V11.9281M6.75371%2011.8719V11.9281M6.80683%2011.8719V11.8094M6.75371%2011.7563V11.8094M6.75371%2011.6438V11.7M6.80683%2011.5875V11.6438M6.75371%2011.5344V11.5875M6.85683%2011.5344V11.5875M6.96621%2011.5344V11.5875M7.01621%2011.4781V11.5344M6.91308%2011.4781V11.5344M6.80683%2011.4781V11.5344M6.75371%2011.4219V11.4781M6.85683%2011.4219V11.4781M6.96621%2011.4219V11.4781M7.01621%2011.3656V11.4219M6.80683%2011.3656V11.4219M6.91308%2011.2563V11.3125M6.69433%2011.875V11.8125M6.69433%2011.6438V11.5875M6.69433%2011.7563V11.7M6.69433%2011.5344V11.4781M6.69433%2011.4219V11.3688M6.69433%2011.2563V11.2M6.69433%2011.1469V11.0906'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.83887%2012.2063V12.0594C6.83887%2012.0344%206.82637%2011.95%206.69512%2011.95C6.57012%2011.95%206.55762%2012.0344%206.55762%2012.0594V12.2063H6.83887Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.60351%2012.0688L6.53477%2012.0594C6.53477%2012.0312%206.54101%2011.9906%206.56289%2011.9781L6.62539%2012.025C6.61601%2012.0312%206.60351%2012.0563%206.60351%2012.0688ZM6.79101%2012.0688L6.85976%2012.0594C6.85976%2012.0312%206.85351%2011.9906%206.83164%2011.9781L6.76914%2012.025C6.77851%2012.0312%206.79101%2012.0563%206.79101%2012.0688ZM6.72226%2011.9969L6.75351%2011.9344C6.73369%2011.9262%206.71246%2011.922%206.69101%2011.9219L6.63789%2011.9344L6.67226%2011.9969H6.72226ZM6.59101%2011.825V11.6719C6.59101%2011.6312%206.55976%2011.5969%206.51289%2011.5969C6.46602%2011.5969%206.43789%2011.6281%206.43789%2011.6719V11.825H6.59101ZM6.80351%2011.825V11.6719C6.80351%2011.6312%206.83476%2011.5969%206.88164%2011.5969C6.92851%2011.5969%206.95664%2011.6281%206.95664%2011.6719V11.825H6.80351ZM6.75039%2011.45L6.76289%2011.3125H6.63164L6.63789%2011.45H6.75039ZM6.85351%2011.45L6.84101%2011.3125H6.97851L6.96289%2011.45H6.85351ZM6.54101%2011.45L6.54726%2011.3125H6.41602L6.43164%2011.45H6.54101Z'%20fill='%23C8B100'%20stroke='black'%20stroke-width='0.1'/%3e%3cpath%20d='M6.79082%2012.2063V12.0813C6.79082%2012.0594%206.77519%2011.9969%206.69394%2011.9969C6.61894%2011.9969%206.60332%2012.0594%206.60332%2012.0813V12.2063H6.79082ZM6.57519%2011.8094V11.6781C6.57519%2011.6469%206.55644%2011.6094%206.51269%2011.6094C6.46895%2011.6094%206.4502%2011.6437%206.4502%2011.6781V11.8125H6.57519V11.8094ZM6.81894%2011.8094V11.6781C6.81894%2011.6469%206.84082%2011.6094%206.88144%2011.6094C6.92207%2011.6094%206.94394%2011.6437%206.94394%2011.6781V11.8125H6.81894V11.8094Z'%20fill='%230039F0'/%3e%3cpath%20d='M6.96289%2012.4312C6.96289%2012.1281%207.18164%2011.8812%207.45039%2011.8812C7.71914%2011.8812%207.93789%2012.1281%207.93789%2012.4312C7.93789%2012.7344%207.71914%2012.9781%207.45039%2012.9781C7.18164%2012.9781%206.96289%2012.7344%206.96289%2012.4312Z'%20fill='%23AD1519'/%3e%3cpath%20d='M6.96289%2012.4312C6.96289%2012.1281%207.18164%2011.8812%207.45039%2011.8812C7.71914%2011.8812%207.93789%2012.1281%207.93789%2012.4312C7.93789%2012.7344%207.71914%2012.9781%207.45039%2012.9781C7.18164%2012.9781%206.96289%2012.7344%206.96289%2012.4312Z'%20stroke='black'%20stroke-width='0.15'/%3e%3cpath%20d='M7.10742%2012.4281C7.10742%2012.2094%207.26367%2012.0281%207.45117%2012.0281C7.63867%2012.0281%207.79492%2012.2063%207.79492%2012.4281C7.79492%2012.6531%207.63867%2012.8344%207.45117%2012.8344C7.26367%2012.8344%207.10742%2012.6531%207.10742%2012.4281Z'%20fill='%23005BBF'/%3e%3cpath%20d='M7.10742%2012.4281C7.10742%2012.2094%207.26367%2012.0281%207.45117%2012.0281C7.63867%2012.0281%207.79492%2012.2063%207.79492%2012.4281C7.79492%2012.6531%207.63867%2012.8344%207.45117%2012.8344C7.26367%2012.8344%207.10742%2012.6531%207.10742%2012.4281Z'%20stroke='black'%20stroke-width='0.15'/%3e%3cpath%20d='M7.28712%2012.1531C7.28712%2012.1531%207.24649%2012.1969%207.24649%2012.2375C7.24746%2012.2635%207.25384%2012.2891%207.26524%2012.3125C7.25899%2012.2969%207.24024%2012.2875%207.22149%2012.2875C7.19649%2012.2875%207.17773%2012.3063%207.17773%2012.3281L7.18398%2012.3531L7.19961%2012.3813C7.20274%2012.3719%207.21524%2012.3656%207.23086%2012.3656C7.24649%2012.3656%207.26211%2012.3781%207.26211%2012.3969C7.26234%2012.399%207.26234%2012.401%207.26211%2012.4031H7.22462V12.4344H7.25587L7.23086%2012.4813L7.26211%2012.4688L7.28712%2012.4969L7.31211%2012.4688L7.34336%2012.4813L7.3215%2012.4344H7.35275V12.4031H7.31837C7.31785%2012.4%207.31785%2012.3969%207.31837%2012.3938C7.31837%2012.3855%207.32167%2012.3775%207.32753%2012.3717C7.33339%2012.3658%207.34134%2012.3625%207.34962%2012.3625C7.36212%2012.3625%207.37149%2012.3719%207.38087%2012.3813L7.39337%2012.35L7.39962%2012.3281C7.39882%2012.3171%207.39387%2012.3067%207.38575%2012.2992C7.37763%2012.2917%207.36695%2012.2875%207.35586%2012.2875C7.33399%2012.2875%207.31836%2012.2969%207.31211%2012.3156C7.31211%2012.3156%207.33086%2012.2781%207.33086%2012.2375C7.33086%2012.1969%207.28712%2012.1531%207.28712%2012.1531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.28712%2012.1531C7.28712%2012.1531%207.24649%2012.1969%207.24649%2012.2375C7.24746%2012.2635%207.25384%2012.2891%207.26524%2012.3125C7.25899%2012.2969%207.24024%2012.2875%207.22149%2012.2875C7.19649%2012.2875%207.17773%2012.3063%207.17773%2012.3281L7.18398%2012.3531L7.19961%2012.3813C7.20274%2012.3719%207.21524%2012.3656%207.23086%2012.3656C7.24649%2012.3656%207.26211%2012.3781%207.26211%2012.3969C7.26234%2012.399%207.26234%2012.401%207.26211%2012.4031H7.22462V12.4344H7.25587L7.23086%2012.4813L7.26211%2012.4688L7.28712%2012.4969L7.31211%2012.4688L7.34336%2012.4813L7.3215%2012.4344H7.35275V12.4031H7.31837C7.31785%2012.4%207.31785%2012.3969%207.31837%2012.3938C7.31837%2012.3855%207.32167%2012.3775%207.32753%2012.3717C7.33339%2012.3658%207.34134%2012.3625%207.34962%2012.3625C7.36212%2012.3625%207.37149%2012.3719%207.38087%2012.3813L7.39337%2012.35L7.39962%2012.3281C7.39882%2012.3171%207.39387%2012.3067%207.38575%2012.2992C7.37763%2012.2917%207.36695%2012.2875%207.35586%2012.2875C7.33399%2012.2875%207.31836%2012.2969%207.31211%2012.3156C7.31211%2012.3156%207.33086%2012.2781%207.33086%2012.2375C7.33086%2012.1969%207.28712%2012.1531%207.28712%2012.1531Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.22559%2012.4344H7.35371V12.4031H7.22559V12.4344Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.22559%2012.4344H7.35371V12.4031H7.22559V12.4344Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.60742%2012.1531C7.60742%2012.1531%207.5668%2012.1969%207.5668%2012.2375C7.5668%2012.2781%207.58555%2012.3125%207.58555%2012.3125C7.5793%2012.2969%207.56367%2012.2875%207.5418%2012.2875C7.5168%2012.2875%207.49805%2012.3063%207.49805%2012.3281L7.5043%2012.3531L7.51992%2012.3813C7.52617%2012.3719%207.53555%2012.3656%207.55117%2012.3656C7.55946%2012.3656%207.56741%2012.3689%207.57327%2012.3748C7.57913%2012.3806%207.58242%2012.3886%207.58242%2012.3969C7.58265%2012.399%207.58265%2012.401%207.58242%2012.4031H7.54492V12.4344H7.57617L7.55117%2012.4813L7.58242%2012.4688L7.60742%2012.4969L7.63242%2012.4688L7.66367%2012.4813L7.6418%2012.4344H7.67305V12.4031H7.63867C7.63808%2012.4%207.63808%2012.3968%207.63867%2012.3938C7.63867%2012.3855%207.64196%2012.3775%207.64782%2012.3717C7.65369%2012.3658%207.66163%2012.3625%207.66992%2012.3625C7.68242%2012.3625%207.69492%2012.3719%207.70117%2012.3813L7.71367%2012.35L7.71992%2012.3281C7.71913%2012.3171%207.71417%2012.3067%207.70605%2012.2992C7.69793%2012.2917%207.68725%2012.2875%207.67617%2012.2875C7.65742%2012.2875%207.63867%2012.2969%207.63242%2012.3156C7.63242%2012.3156%207.65117%2012.2781%207.65117%2012.2375C7.65117%2012.1969%207.60742%2012.1531%207.60742%2012.1531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.60742%2012.1531C7.60742%2012.1531%207.5668%2012.1969%207.5668%2012.2375C7.5668%2012.2781%207.58555%2012.3125%207.58555%2012.3125C7.5793%2012.2969%207.56367%2012.2875%207.5418%2012.2875C7.5168%2012.2875%207.49805%2012.3063%207.49805%2012.3281L7.5043%2012.3531L7.51992%2012.3813C7.52617%2012.3719%207.53555%2012.3656%207.55117%2012.3656C7.55946%2012.3656%207.56741%2012.3689%207.57327%2012.3748C7.57913%2012.3806%207.58242%2012.3886%207.58242%2012.3969C7.58265%2012.399%207.58265%2012.401%207.58242%2012.4031H7.54492V12.4344H7.57617L7.55117%2012.4813L7.58242%2012.4688L7.60742%2012.4969L7.63242%2012.4688L7.66367%2012.4813L7.6418%2012.4344H7.67305V12.4031H7.63867C7.63808%2012.4%207.63808%2012.3968%207.63867%2012.3938C7.63867%2012.3855%207.64196%2012.3775%207.64782%2012.3717C7.65369%2012.3658%207.66163%2012.3625%207.66992%2012.3625C7.68242%2012.3625%207.69492%2012.3719%207.70117%2012.3813L7.71367%2012.35L7.71992%2012.3281C7.71913%2012.3171%207.71417%2012.3067%207.70605%2012.2992C7.69793%2012.2917%207.68725%2012.2875%207.67617%2012.2875C7.65742%2012.2875%207.63867%2012.2969%207.63242%2012.3156C7.63242%2012.3156%207.65117%2012.2781%207.65117%2012.2375C7.65117%2012.1969%207.60742%2012.1531%207.60742%2012.1531Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.54395%2012.4344H7.67206V12.4031H7.54395V12.4344Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.54395%2012.4344H7.67206V12.4031H7.54395V12.4344Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M7.44727%2012.425C7.44727%2012.425%207.40664%2012.4719%207.40664%2012.5125C7.40664%2012.5531%207.42539%2012.5875%207.42539%2012.5875C7.41914%2012.5719%207.40352%2012.5594%207.38164%2012.5594C7.35664%2012.5594%207.33789%2012.5781%207.33789%2012.6031L7.34414%2012.625L7.35977%2012.6562C7.36289%2012.6437%207.37539%2012.6375%207.39102%2012.6375C7.3993%2012.6375%207.40725%2012.6408%207.41311%2012.6467C7.41897%2012.6525%207.42227%2012.6605%207.42227%2012.6687C7.42279%2012.6719%207.42279%2012.675%207.42227%2012.6781H7.38477V12.7094H7.41602L7.39102%2012.7562L7.42227%2012.7437L7.44727%2012.7719L7.47227%2012.7406L7.50352%2012.7562L7.48164%2012.7094H7.51289V12.6781H7.47852C7.47799%2012.675%207.47799%2012.6719%207.47852%2012.6687C7.47852%2012.6605%207.48181%2012.6525%207.48767%2012.6467C7.49353%2012.6408%207.50148%2012.6375%207.50977%2012.6375C7.52227%2012.6375%207.53164%2012.6437%207.53789%2012.6562L7.55352%2012.625L7.55977%2012.6031C7.55977%2012.5915%207.55516%2012.5804%207.54695%2012.5722C7.53875%2012.564%207.52762%2012.5594%207.51602%2012.5594C7.49414%2012.5594%207.47852%2012.5719%207.47227%2012.5906C7.47227%2012.5906%207.49102%2012.5531%207.49102%2012.5125C7.49102%2012.4719%207.44727%2012.4281%207.44727%2012.4281'%20fill='%23C8B100'/%3e%3cpath%20d='M7.44727%2012.425C7.44727%2012.425%207.40664%2012.4719%207.40664%2012.5125C7.40664%2012.5531%207.42539%2012.5875%207.42539%2012.5875C7.41914%2012.5719%207.40352%2012.5594%207.38164%2012.5594C7.35664%2012.5594%207.33789%2012.5781%207.33789%2012.6031L7.34414%2012.625L7.35977%2012.6562C7.36289%2012.6437%207.37539%2012.6375%207.39102%2012.6375C7.3993%2012.6375%207.40725%2012.6408%207.41311%2012.6467C7.41897%2012.6525%207.42227%2012.6605%207.42227%2012.6687C7.42279%2012.6719%207.42279%2012.675%207.42227%2012.6781H7.38477V12.7094H7.41602L7.39102%2012.7562L7.42227%2012.7437L7.44727%2012.7719L7.47227%2012.7406L7.50352%2012.7562L7.48164%2012.7094H7.51289V12.6781H7.47852C7.47799%2012.675%207.47799%2012.6719%207.47852%2012.6687C7.47852%2012.6605%207.48181%2012.6525%207.48767%2012.6467C7.49353%2012.6408%207.50148%2012.6375%207.50977%2012.6375C7.52227%2012.6375%207.53164%2012.6437%207.53789%2012.6562L7.55352%2012.625L7.55977%2012.6031C7.55977%2012.5915%207.55516%2012.5804%207.54695%2012.5722C7.53875%2012.564%207.52762%2012.5594%207.51602%2012.5594C7.49414%2012.5594%207.47852%2012.5719%207.47227%2012.5906C7.47227%2012.5906%207.49102%2012.5531%207.49102%2012.5125C7.49102%2012.4719%207.44727%2012.4281%207.44727%2012.4281V12.425Z'%20stroke='black'%20stroke-width='0.075'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.38574%2012.7062H7.51387V12.675H7.38574V12.7062Z'%20fill='%23C8B100'/%3e%3cpath%20d='M7.38574%2012.7062H7.51387V12.675H7.38574V12.7062Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.425%2010.9812H8.41563C8.41322%2010.9859%208.41005%2010.9901%208.40625%2010.9937C8.4%2011%208.3875%2011%208.38125%2010.9937C8.37987%2010.992%208.37888%2010.99%208.37834%2010.9878C8.3778%2010.9857%208.37773%2010.9834%208.37813%2010.9812C8.37575%2010.9826%208.37306%2010.9833%208.37031%2010.9833C8.36757%2010.9833%208.36488%2010.9826%208.3625%2010.9812C8.35313%2010.9781%208.35312%2010.9656%208.35937%2010.9594V10.9437H8.35L8.34688%2010.95C8.34063%2010.9594%208.33125%2010.9594%208.325%2010.9562C8.32465%2010.9542%208.32465%2010.9521%208.325%2010.95H8.31563C8.3%2010.9562%208.29375%2010.9187%208.29375%2010.9125L8.2875%2010.9187C8.2875%2010.9187%208.29375%2010.9406%208.29063%2010.9562C8.29063%2010.975%208.28125%2010.9937%208.28125%2010.9937C8.31429%2011.0047%208.34502%2011.0216%208.37187%2011.0437C8.39888%2011.0634%208.42216%2011.0878%208.44063%2011.1156L8.47813%2011.1C8.49688%2011.0937%208.51875%2011.0937%208.51875%2011.0937L8.525%2011.0875C8.51563%2011.0875%208.47813%2011.0906%208.47813%2011.075V11.0687C8.47605%2011.069%208.47395%2011.069%208.47188%2011.0687C8.46563%2011.0625%208.46563%2011.0562%208.47188%2011.0469L8.47813%2011.0437V11.0344H8.46875L8.4625%2011.0375C8.45625%2011.0469%208.44375%2011.0469%208.4375%2011.0375C8.43589%2011.0359%208.43475%2011.0339%208.4342%2011.0317C8.43365%2011.0295%208.43371%2011.0272%208.43437%2011.025C8.43192%2011.0261%208.42926%2011.0267%208.42656%2011.0267C8.42387%2011.0267%208.4212%2011.0261%208.41875%2011.025C8.4125%2011.0187%208.40937%2011.0094%208.41875%2011L8.425%2010.9906V10.9812Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.425%2010.9812H8.41563C8.41322%2010.9859%208.41005%2010.9901%208.40625%2010.9937C8.4%2011%208.3875%2011%208.38125%2010.9937C8.37987%2010.992%208.37888%2010.99%208.37834%2010.9878C8.3778%2010.9857%208.37773%2010.9834%208.37813%2010.9812C8.37575%2010.9826%208.37306%2010.9833%208.37031%2010.9833C8.36757%2010.9833%208.36488%2010.9826%208.3625%2010.9812C8.35313%2010.9781%208.35312%2010.9656%208.35937%2010.9594V10.9437H8.35L8.34688%2010.95C8.34063%2010.9594%208.33125%2010.9594%208.325%2010.9562C8.32465%2010.9542%208.32465%2010.9521%208.325%2010.95H8.31563C8.3%2010.9562%208.29375%2010.9187%208.29375%2010.9125L8.2875%2010.9187C8.2875%2010.9187%208.29375%2010.9406%208.29063%2010.9562C8.29063%2010.975%208.28125%2010.9937%208.28125%2010.9937C8.31429%2011.0047%208.34502%2011.0216%208.37187%2011.0437C8.39888%2011.0634%208.42216%2011.0878%208.44063%2011.1156L8.47813%2011.1C8.49688%2011.0937%208.51875%2011.0937%208.51875%2011.0937L8.525%2011.0875C8.51563%2011.0875%208.47813%2011.0906%208.47813%2011.075V11.0687C8.47605%2011.069%208.47395%2011.069%208.47188%2011.0687C8.46563%2011.0625%208.46563%2011.0562%208.47188%2011.0469L8.47813%2011.0437V11.0344H8.46875L8.4625%2011.0375C8.45625%2011.0469%208.44375%2011.0469%208.4375%2011.0375C8.43589%2011.0359%208.43475%2011.0339%208.4342%2011.0317C8.43365%2011.0295%208.43371%2011.0272%208.43437%2011.025C8.43192%2011.0261%208.42926%2011.0267%208.42656%2011.0267C8.42387%2011.0267%208.4212%2011.0261%208.41875%2011.025C8.4125%2011.0187%208.40937%2011.0094%208.41875%2011L8.425%2010.9906V10.9812Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.35645%2011H8.36189V11.0082H8.35917C8.35645%2011.0082%208.35645%2011.0027%208.35917%2011.0027'%20fill='black'/%3e%3cpath%20d='M8.35645%2011H8.36189V11.0082H8.35917C8.35645%2011.0082%208.35645%2011.0027%208.35917%2011.0027L8.35645%2011Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.38566%2011.0254L8.37598%2011.019V11.0125H8.37921L8.39212%2011.0222L8.40181%2011.0286V11.0351H8.39535L8.38566%2011.0254Z'%20fill='black'/%3e%3cpath%20d='M8.38566%2011.0254L8.37598%2011.019V11.0125H8.37921L8.39212%2011.0222L8.40181%2011.0286V11.0351H8.39535L8.38566%2011.0254Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.33211%2010.9909L8.32565%2010.9845C8.32565%2010.9845%208.32242%2010.9845%208.32565%2010.9812L8.33534%2010.9845L8.34503%2010.9877V10.9942H8.3418L8.33211%2010.9909Z'%20fill='black'/%3e%3cpath%20d='M8.33211%2010.9909L8.32565%2010.9845C8.32565%2010.9845%208.32242%2010.9845%208.32565%2010.9812L8.33534%2010.9845L8.34503%2010.9877V10.9942H8.3418L8.33211%2010.9909Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.30288%2010.9688H8.30794V10.9738H8.30288C8.30288%2010.9738%208.30035%2010.9713%208.30288%2010.9688Z'%20fill='black'/%3e%3cpath%20d='M8.30288%2010.9688H8.30794V10.9738H8.30288C8.30288%2010.9738%208.30035%2010.9713%208.30288%2010.9688Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.41442%2011.0461V11.0406H8.40625L8.40897%2011.0461H8.41442Z'%20fill='black'/%3e%3cpath%20d='M8.41442%2011.0461V11.0406H8.40625L8.40897%2011.0461H8.41442Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.43399%2011.0688L8.44024%2011.075H8.44337C8.4465%2011.075%208.44337%2011.0719%208.44337%2011.0688L8.43711%2011.0625L8.43086%2011.0563H8.42773V11.0625L8.43399%2011.0688Z'%20fill='black'/%3e%3cpath%20d='M8.43399%2011.0688L8.44024%2011.075H8.44337C8.4465%2011.075%208.44337%2011.0719%208.44337%2011.0688L8.43711%2011.0625L8.43086%2011.0563H8.42773V11.0625L8.43399%2011.0688Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.46227%2011.0925V11.0844H8.4541V11.0898H8.46227'%20fill='black'/%3e%3cpath%20d='M8.46227%2011.0925V11.0844H8.4541V11.0898H8.46227V11.0925Z'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M8.38125%2010.9094H8.3625L8.35938%2010.9375V10.9406H8.36561L8.3875%2010.925L8.37813%2010.9094'%20fill='%23C8B100'/%3e%3cpath%20d='M8.38125%2010.9094H8.3625L8.35938%2010.9375V10.9406H8.36561L8.3875%2010.925L8.37813%2010.9094'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.33105%2010.925V10.9406L8.35919%2010.9438H8.3623V10.9375L8.34668%2010.9156L8.33105%2010.925Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.33105%2010.925V10.9406L8.35919%2010.9438H8.3623V10.9375L8.34668%2010.9156L8.33105%2010.925Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.3877%2010.9562L8.3752%2010.9656L8.35645%2010.9437V10.9406H8.39081V10.9562'%20fill='%23C8B100'/%3e%3cpath%20d='M8.3877%2010.9562L8.3752%2010.9656L8.35645%2010.9437V10.9406H8.39081V10.9562'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.35376%2010.9374C8.35542%2010.9359%208.35756%2010.9351%208.35979%2010.9351C8.36201%2010.9351%208.36416%2010.9359%208.36582%2010.9374L8.36703%2010.9419L8.36582%2010.9465L8.3613%2010.9477L8.35677%2010.9465L8.35398%2010.9424L8.35376%2010.9374Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.35376%2010.9374C8.35542%2010.9359%208.35756%2010.9351%208.35979%2010.9351C8.36201%2010.9351%208.36416%2010.9359%208.36582%2010.9374L8.36703%2010.9419L8.36582%2010.9465L8.3613%2010.9477L8.35677%2010.9465L8.35398%2010.9424L8.35376%2010.9374Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.28731%2010.9094L8.28106%2010.8875L8.26855%2010.875C8.26855%2010.875%208.28106%2010.8687%208.29356%2010.8781C8.30606%2010.8875%208.29356%2010.9063%208.29356%2010.9063L8.28731%2010.9094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.28731%2010.9094L8.28106%2010.8875L8.26855%2010.875C8.26855%2010.875%208.28106%2010.8687%208.29356%2010.8781C8.30606%2010.8875%208.29356%2010.9063%208.29356%2010.9063L8.28731%2010.9094Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.31934%2010.9187L8.30684%2010.9313L8.28809%2010.9125V10.9062H8.31934V10.9187Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.31934%2010.9187L8.30684%2010.9313L8.28809%2010.9125V10.9062H8.31934V10.9187Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.28516%2010.9063L8.29453%2010.9031V10.9125C8.29453%2010.9188%208.29141%2010.9188%208.28828%2010.9188L8.28516%2010.9094'%20fill='%23C8B100'/%3e%3cpath%20d='M8.28516%2010.9063L8.29453%2010.9031V10.9125C8.29453%2010.9188%208.29141%2010.9188%208.28828%2010.9188L8.28516%2010.9094V10.9063Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.44688%2010.9531H8.43124L8.42188%2010.975V10.9812H8.42811L8.45312%2010.9687L8.44688%2010.9531Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.44688%2010.9531H8.43124L8.42188%2010.975V10.9812H8.42811L8.45312%2010.9687L8.44688%2010.9531Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.39746%2010.9627V10.9789L8.42329%2010.9853H8.42652V10.9789L8.41361%2010.9563L8.39746%2010.9627Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.39746%2010.9627V10.9789L8.42329%2010.9853H8.42652V10.9789L8.41361%2010.9563L8.39746%2010.9627Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.45%2011L8.43437%2011.0063L8.42188%2010.9844V10.9781H8.425L8.45312%2010.9844L8.45%2011Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.45%2011L8.43437%2011.0063L8.42188%2010.9844V10.9781H8.425L8.45312%2010.9844L8.45%2011Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.41699%2010.975H8.42905C8.43053%2010.9767%208.43135%2010.9788%208.43135%2010.981C8.43135%2010.9833%208.43053%2010.9854%208.42905%2010.9871L8.42453%2010.9883L8.42001%2010.9871C8.41852%2010.9854%208.4177%2010.9833%208.4177%2010.981C8.4177%2010.9788%208.41852%2010.9767%208.42001%2010.975'%20fill='%23C8B100'/%3e%3cpath%20d='M8.41699%2010.975H8.42905C8.43053%2010.9767%208.43135%2010.9788%208.43135%2010.981C8.43135%2010.9833%208.43053%2010.9854%208.42905%2010.9871L8.42453%2010.9883L8.42001%2010.9871C8.41852%2010.9854%208.4177%2010.9833%208.4177%2010.981C8.4177%2010.9788%208.41852%2010.9767%208.42001%2010.975H8.41699Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.50762%2011.0094L8.51074%2011.025L8.48574%2011.0344H8.47949V11.0281L8.49199%2011.0031L8.50762%2011.0094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.50762%2011.0094L8.51074%2011.025L8.48574%2011.0344H8.47949V11.0281L8.49199%2011.0031L8.50762%2011.0094Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.50058%2011.0563L8.48496%2011.0594L8.47559%2011.0344V11.0312H8.48184L8.50683%2011.0406L8.50371%2011.0563'%20fill='%23C8B100'/%3e%3cpath%20d='M8.50058%2011.0563L8.48496%2011.0594L8.47559%2011.0344V11.0312H8.48184L8.50683%2011.0406L8.50371%2011.0563'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.45645%2011.0094L8.4502%2011.025L8.47832%2011.0344H8.48145V11.0312L8.47206%2011.0062L8.45645%2011.0094Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.45645%2011.0094L8.4502%2011.025L8.47832%2011.0344H8.48145V11.0312L8.47206%2011.0062L8.45645%2011.0094Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.48446%2011.0375L8.48571%2011.0328L8.48446%2011.0281C8.48274%2011.0266%208.48052%2011.0257%208.47821%2011.0257C8.4759%2011.0257%208.47368%2011.0266%208.47196%2011.0281L8.4707%2011.0328L8.47196%2011.0375C8.47368%2011.039%208.4759%2011.0399%208.47821%2011.0399C8.48052%2011.0399%208.48274%2011.039%208.48446%2011.0375Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.48446%2011.0375L8.48571%2011.0328L8.48446%2011.0281C8.48274%2011.0266%208.48052%2011.0257%208.47821%2011.0257C8.4759%2011.0257%208.47368%2011.0266%208.47196%2011.0281L8.4707%2011.0328L8.47196%2011.0375C8.47368%2011.039%208.4759%2011.0399%208.47821%2011.0399C8.48052%2011.0399%208.48274%2011.039%208.48446%2011.0375Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.52539%2011.0938H8.55039L8.56602%2011.1031C8.56602%2011.1031%208.56914%2011.0906%208.55664%2011.0813C8.54727%2011.0719%208.53164%2011.0875%208.53164%2011.0875L8.52539%2011.0938Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.52539%2011.0938H8.55039L8.56602%2011.1031C8.56602%2011.1031%208.56914%2011.0906%208.55664%2011.0813C8.54727%2011.0719%208.53164%2011.0875%208.53164%2011.0875L8.52539%2011.0938Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.50938%2011.0656L8.5%2011.0813L8.525%2011.0969V11.0938H8.53125L8.52812%2011.0625L8.50938%2011.0656Z'%20fill='%23C8B100'/%3e%3cpath%20d='M8.50938%2011.0656L8.5%2011.0813L8.525%2011.0969V11.0938H8.53125L8.52812%2011.0625L8.50938%2011.0656Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M8.53116%2011.0938C8.53116%2011.0938%208.53428%2011.0906%208.53116%2011.0875H8.52178C8.51553%2011.0875%208.51553%2011.0906%208.51865%2011.0938H8.52803'%20fill='%23C8B100'/%3e%3cpath%20d='M9.7187%2010.4094V10.4281H9.6437V10.4094H9.6749V10.3687H9.653V10.3531H9.6718V10.3344H9.6905V10.3531H9.7093V10.3719H9.6905V10.4094H9.7218M8.53115%2011.0937C8.53115%2011.0937%208.53428%2011.0906%208.53115%2011.0875H8.52178C8.51553%2011.0875%208.51553%2011.0906%208.51865%2011.0937H8.52803H8.53115Z'%20stroke='black'%20stroke-width='0.075'/%3e%3cpath%20d='M5.04395%2010.7687V10.7625M5.1627%2010.7844V10.7469M5.14707%2010.7812V10.75M5.15332%2010.7812V10.75M5.13145%2010.7812V10.75M5.1377%2010.7812V10.75M5.10957%2010.7812V10.75M5.11582%2010.7812V10.75M5.1252%2010.7812V10.75M5.10332%2010.7812V10.75M5.09395%2010.7781V10.7531M5.09082%2010.7781V10.7531M5.0752%2010.775V10.7562M5.08145%2010.775V10.7562M5.06895%2010.7719V10.7562M5.0627%2010.7719V10.7594M5.05332%2010.7687V10.7594'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M5.03711%2010.7683V10.7625'%20stroke='black'%20stroke-width='0.05'/%3e%3cpath%20d='M9.52541%2010.7688V10.7625M9.64411%2010.7844V10.75M9.62541%2010.7812V10.75M9.63481%2010.7812V10.75M9.60981%2010.7812V10.75M9.61911%2010.7812V10.75M9.59101%2010.7812V10.75M9.59731%2010.7812V10.75M9.60351%2010.7812V10.75M9.58481%2010.7812V10.75M9.57541%2010.7781V10.7531M9.56911%2010.7781V10.7531M9.55661%2010.775V10.7562M9.56291%2010.775V10.7562M9.54731%2010.775V10.7562M9.54101%2010.7719V10.7594M9.53161%2010.7719V10.7594'%20stroke='black'%20stroke-width='0.025'/%3e%3cpath%20d='M9.5195%2010.7683V10.7625'%20stroke='black'%20stroke-width='0.05'/%3e%3c/symbol%3e%3csymbol%20id='flag_pt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.79999%204H23V19H9.79999V4Z'%20fill='%23FF0000'/%3e%3cpath%20d='M1%204H9.8V19H1V4Z'%20fill='%23006600'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.6715%2013.4042C11.5611%2013.372%206.4839%2010.4034%206.44952%209.92691L6.72797%209.49225C7.23327%2010.178%2012.424%2013.0661%2012.9361%2012.9631L12.6715%2013.4042Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.66773%209.43108C6.56805%209.68222%207.9946%2010.5064%209.70648%2011.4852C11.4218%2012.4608%2012.8999%2013.0629%2013.0065%2012.9792L13.0581%2012.889C13.0374%2012.9212%2012.9893%2012.9309%2012.9102%2012.9083C12.4462%2012.7828%2011.2396%2012.2644%209.7443%2011.4144C8.24555%2010.5644%206.94617%209.78203%206.74336%209.4504C6.72755%209.41931%206.72045%209.38496%206.72274%209.35059H6.71586L6.67461%209.42142L6.66773%209.43108ZM12.6937%2013.417C12.6765%2013.4492%2012.6387%2013.4492%2012.5733%2013.4428C12.1608%2013.4009%2010.9027%2012.8278%209.4143%2011.9939C7.6818%2011.0216%206.2518%2010.1394%206.40992%209.9076L6.45117%209.83676L6.45805%209.83998C6.32055%2010.2328%209.28023%2011.8169%209.45555%2011.9199C11.1674%2012.9116%2012.6112%2013.4943%2012.7383%2013.343L12.6937%2013.417Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.80727%2010.2167C10.9142%2010.207%2012.2823%2010.075%2013.073%209.77882L12.901%209.52124C12.437%209.76272%2011.062%209.9237%209.79701%209.94624C8.30513%209.93336%207.24982%209.80135%206.72044%209.46973L6.56232%209.74662C7.53169%2010.133%208.52857%2010.2134%209.80727%2010.2167Z'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.80727%2010.2167C10.9142%2010.207%2012.2823%2010.075%2013.073%209.77882L12.901%209.52124C12.437%209.76272%2011.062%209.9237%209.79701%209.94624C8.30513%209.93336%207.24982%209.80135%206.72044%209.46973L6.56232%209.74662C7.53169%2010.133%208.52857%2010.2134%209.80727%2010.2167Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.1167%209.78524C13.0892%209.82709%2012.5736%209.99131%2011.8174%2010.1136C11.1507%2010.2083%2010.4773%2010.2545%209.80296%2010.2521C9.15699%2010.2544%208.51155%2010.2156%207.87112%2010.1362C7.07706%2010.0203%206.668%209.85929%206.51331%209.80134L6.55112%209.7305C6.98769%209.89149%207.40019%209.98809%207.88144%2010.0589C8.5172%2010.1393%209.15804%2010.1791%209.79956%2010.178C10.4703%2010.1787%2011.1402%2010.1324%2011.8036%2010.0396C12.5771%209.92047%2012.9999%209.76915%2013.0617%209.70153L13.1167%209.78847V9.78524ZM12.9655%209.52445C12.883%209.58885%2012.4636%209.72728%2011.728%209.83675C11.0927%209.92283%2010.4517%209.96588%209.80989%209.96555C9.05362%209.96555%208.43144%209.91403%207.9605%209.84964C7.21112%209.75949%206.81237%209.59206%206.668%209.54699L6.71269%209.47616C6.82612%209.53089%207.20769%209.67578%207.96737%209.77559C8.57807%209.85221%209.19374%209.88878%209.80989%209.88506C10.4471%209.88524%2011.0836%209.8422%2011.7142%209.75627C12.4533%209.65968%2012.8521%209.48581%2012.914%209.44073L12.9655%209.52445ZM6.16612%2011.4659C6.84675%2011.8104%208.36269%2011.9811%209.79612%2011.9939C11.1024%2011.9972%2012.8005%2011.8072%2013.4365%2011.4917L13.4192%2011.1472C13.2199%2011.4369%2011.398%2011.717%209.78237%2011.7074C8.16675%2011.6945%206.66456%2011.4627%206.16269%2011.16V11.4659'%20fill='%23FFFF00'/%3e%3cpath%20d='M6.16612%2011.4659C6.84675%2011.8104%208.36269%2011.9811%209.79612%2011.9939C11.1024%2011.9972%2012.8005%2011.8072%2013.4365%2011.4917L13.4192%2011.1472C13.2199%2011.4369%2011.398%2011.717%209.78237%2011.7074C8.16675%2011.6945%206.66456%2011.4627%206.16269%2011.16V11.4659M13.1167%209.78524C13.0892%209.82709%2012.5736%209.99131%2011.8174%2010.1136C11.1507%2010.2083%2010.4773%2010.2545%209.80296%2010.2521C9.15699%2010.2544%208.51155%2010.2156%207.87112%2010.1362C7.07706%2010.0203%206.668%209.85929%206.51331%209.80134L6.55112%209.7305C6.98769%209.89149%207.40019%209.98809%207.88144%2010.0589C8.51718%2010.1393%209.15804%2010.1791%209.79956%2010.178C10.4703%2010.1787%2011.1402%2010.1324%2011.8036%2010.0396C12.5771%209.92047%2012.9999%209.76915%2013.0617%209.70153L13.1167%209.78847V9.78524ZM12.9655%209.52445C12.883%209.58885%2012.4636%209.72728%2011.728%209.83675C11.0927%209.92283%2010.4517%209.96588%209.80989%209.96555C9.05362%209.96555%208.43144%209.91403%207.9605%209.84964C7.21112%209.75949%206.81237%209.59206%206.668%209.54699L6.71269%209.47616C6.82612%209.53089%207.20769%209.67578%207.96737%209.77559C8.57807%209.85221%209.19374%209.88878%209.80989%209.88506C10.4471%209.88524%2011.0836%209.8422%2011.7142%209.75627C12.4533%209.65968%2012.8521%209.48581%2012.914%209.44073L12.9655%209.52445Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.4713%2011.4176V11.4981C13.375%2011.6076%2012.7768%2011.7686%2012.0275%2011.8845C11.283%2011.9847%2010.5315%2012.0321%209.77939%2012.0261C9.06621%2012.0318%208.35364%2011.9855%207.64814%2011.8877C7.1217%2011.8307%206.6073%2011.7005%206.12189%2011.5013V11.408C6.45532%2011.614%207.35594%2011.7686%207.65844%2011.8136C8.20157%2011.8909%208.89939%2011.9489%209.77939%2011.9489C10.7041%2011.9489%2011.4431%2011.8877%2012.0138%2011.8072C12.5534%2011.7331%2013.32%2011.5432%2013.4713%2011.4176ZM13.4713%2011.1278V11.2083C13.375%2011.3146%2012.7768%2011.4756%2012.0275%2011.5915C11.2831%2011.6928%2010.5316%2011.7412%209.77939%2011.7364C9.06627%2011.7403%208.35384%2011.694%207.64814%2011.5979C7.1217%2011.5409%206.6073%2011.4107%206.12189%2011.2116V11.115C6.45532%2011.3242%207.35939%2011.4756%207.65844%2011.5206C8.36067%2011.617%209.06969%2011.6633%209.77939%2011.6591C10.7041%2011.6591%2011.4466%2011.5947%2012.0138%2011.5142C12.5534%2011.4434%2013.32%2011.2534%2013.4713%2011.1278ZM9.79314%2013.343C8.22564%2013.3366%206.88158%2012.9438%206.59626%2012.8794L6.80251%2013.182C7.7667%2013.5019%208.78414%2013.6578%209.80694%2013.6424C10.9997%2013.6102%2012.0413%2013.5233%2012.7734%2013.1885L12.9866%2012.8729C12.4882%2013.0951%2010.7866%2013.343%209.78969%2013.343'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.79314%2013.343C8.22564%2013.3366%206.88158%2012.9438%206.59626%2012.8794L6.80251%2013.182C7.7667%2013.5019%208.78414%2013.6578%209.80694%2013.6424C10.9997%2013.6102%2012.0413%2013.5233%2012.7734%2013.1885L12.9866%2012.8729C12.4882%2013.0951%2010.7866%2013.343%209.78969%2013.343M13.4713%2011.4176V11.4981C13.375%2011.6076%2012.7768%2011.7686%2012.0275%2011.8845C11.283%2011.9847%2010.5315%2012.0321%209.77939%2012.0261C9.06621%2012.0318%208.35364%2011.9855%207.64814%2011.8877C7.1217%2011.8307%206.6073%2011.7005%206.12189%2011.5013V11.408C6.45532%2011.614%207.35594%2011.7686%207.65844%2011.8136C8.20157%2011.8909%208.89939%2011.9489%209.77939%2011.9489C10.7041%2011.9489%2011.4431%2011.8877%2012.0138%2011.8072C12.5534%2011.7331%2013.32%2011.5432%2013.4713%2011.4176ZM13.4713%2011.1278V11.2083C13.375%2011.3146%2012.7768%2011.4756%2012.0275%2011.5915C11.2831%2011.6928%2010.5316%2011.7412%209.77939%2011.7364C9.06627%2011.7403%208.35384%2011.694%207.64814%2011.5979C7.1217%2011.5409%206.6073%2011.4107%206.12189%2011.2116V11.115C6.45532%2011.3242%207.35939%2011.4756%207.65844%2011.5206C8.36067%2011.617%209.06969%2011.6633%209.77939%2011.6591C10.7041%2011.6591%2011.4466%2011.5947%2012.0138%2011.5142C12.5534%2011.4434%2013.32%2011.2534%2013.4713%2011.1278Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.857%2013.1176C12.8257%2013.1611%2012.7937%2013.204%2012.7608%2013.2464C12.417%2013.3623%2011.867%2013.4847%2011.6402%2013.5169C11.0313%2013.6231%2010.4135%2013.677%209.79421%2013.6778C8.40546%2013.6585%207.26764%2013.4042%206.73484%2013.1852L6.69014%2013.1176L6.69702%2013.1047L6.76921%2013.1337C7.74753%2013.4369%208.77061%2013.5945%209.80111%2013.6006C10.4474%2013.6006%2011.0902%2013.533%2011.6092%2013.446C12.4067%2013.2947%2012.7299%2013.182%2012.8295%2013.1305L12.8536%2013.1176H12.857ZM13.0392%2012.8343C13.0166%2012.872%2012.9936%2012.9096%2012.9704%2012.947C12.7849%2013.0114%2012.2829%2013.1466%2011.5508%2013.2432C11.0695%2013.3044%2010.7704%2013.3655%209.81145%2013.3816C8.71505%2013.3713%207.62544%2013.2196%206.57327%2012.9309L6.53546%2012.8504C7.60446%2013.1271%208.70601%2013.2785%209.81486%2013.3011C10.6914%2013.285%2011.0661%2013.2239%2011.5439%2013.1627C12.3964%2013.0403%2012.8261%2012.9051%2012.9533%2012.8697C12.9534%2012.8675%2012.9534%2012.8654%2012.9533%2012.8633L13.0427%2012.8311L13.0392%2012.8343Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.0583%2011.1955C13.0617%2012.1614%2012.5324%2013.0307%2012.1096%2013.4106C11.4851%2013.9811%2010.6512%2014.306%209.77894%2014.3186C8.73739%2014.3347%207.75769%2013.7004%207.49301%2013.4203C6.90088%2012.8321%206.56387%2012.0585%206.5477%2011.2502C6.60957%2010.1941%207.05301%209.46002%207.69239%208.95453C8.31349%208.47562%209.09481%208.21686%209.89922%208.22366C10.3689%208.24498%2010.8285%208.35795%2011.2488%208.55534C11.6691%208.75272%2012.0407%209.03015%2012.3399%209.36987C12.7696%209.85926%2012.9586%2010.3905%2013.0583%2011.1955ZM9.78582%207.89203C10.7474%207.892%2011.6701%208.24803%2012.3527%208.88251C13.0352%209.51699%2013.4223%2010.3785%2013.4296%2011.2792C13.4296%2011.7261%2013.3356%2012.1686%2013.153%2012.5815C12.9704%2012.9944%2012.7028%2013.3696%2012.3654%2013.6856C12.0279%2014.0016%2011.6274%2014.2523%2011.1865%2014.4233C10.7458%2014.5944%2010.2733%2014.6824%209.79614%2014.6824C9.31899%2014.6824%208.84651%2014.5944%208.40568%2014.4233C7.96485%2014.2523%207.5643%2014.0016%207.22691%2013.6856C6.88951%2013.3696%206.62188%2012.9944%206.43928%2012.5815C6.25668%2012.1686%206.16269%2011.7261%206.16269%2011.2792C6.15926%209.41172%207.78864%207.89203%209.78582%207.89203Z'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.78582%207.89203C10.7474%207.892%2011.6701%208.24803%2012.3527%208.88251C13.0352%209.51699%2013.4223%2010.3785%2013.4296%2011.2792C13.4296%2011.7261%2013.3356%2012.1686%2013.153%2012.5815C12.9704%2012.9944%2012.7028%2013.3696%2012.3654%2013.6856C12.0279%2014.0016%2011.6274%2014.2523%2011.1865%2014.4233C10.7458%2014.5944%2010.2733%2014.6824%209.79614%2014.6824C9.31899%2014.6824%208.84651%2014.5944%208.40568%2014.4233C7.96485%2014.2523%207.5643%2014.0016%207.22691%2013.6856C6.88951%2013.3696%206.62188%2012.9944%206.43928%2012.5815C6.25668%2012.1686%206.16269%2011.7261%206.16269%2011.2792C6.15926%209.41172%207.78864%207.89203%209.78582%207.89203ZM13.0583%2011.1955C13.0617%2012.1614%2012.5324%2013.0307%2012.1096%2013.4106C11.4851%2013.9811%2010.6512%2014.306%209.77894%2014.3186C8.73739%2014.3347%207.75769%2013.7004%207.49301%2013.4203C6.90088%2012.8321%206.56387%2012.0585%206.5477%2011.2502C6.60957%2010.1941%207.05301%209.46002%207.69239%208.95453C8.31349%208.47562%209.09481%208.21686%209.89922%208.22366C10.3689%208.24498%2010.8285%208.35795%2011.2488%208.55534C11.6691%208.75272%2012.0407%209.03015%2012.3399%209.36987C12.7696%209.85926%2012.9586%2010.3905%2013.0583%2011.1955Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.79678%207.87598C11.7974%207.87598%2013.4268%209.40211%2013.4268%2011.2759C13.4268%2013.1498%2011.7974%2014.6759%209.80023%2014.6759C7.80303%2014.6759%206.17023%2013.1498%206.17023%2011.2759C6.17023%209.40211%207.7996%207.87598%209.80023%207.87598H9.79678ZM6.24585%2011.2727C6.24585%2013.1015%207.85116%2014.5987%209.79678%2014.5987C11.7424%2014.5987%2013.3477%2013.1015%2013.3477%2011.2727C13.3477%209.44397%2011.7424%207.94681%209.79678%207.94681C7.85116%207.94681%206.24585%209.44397%206.24585%2011.2727Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.80045%208.1593C10.6812%208.16185%2011.5251%208.49069%2012.1478%209.07402C12.7707%209.65736%2013.1218%2010.4478%2013.1245%2011.2727C13.1218%2012.098%2012.7708%2012.8888%2012.1481%2013.4726C11.5255%2014.0564%2010.6815%2014.386%209.80045%2014.3894C7.97856%2014.3894%206.47638%2012.9856%206.47638%2011.2727C6.48%2010.448%206.83137%209.65811%207.45397%209.07496C8.07657%208.4918%208.91995%208.16269%209.80045%208.1593ZM6.55544%2011.2727C6.55544%2012.947%208.01981%2014.3121%209.80045%2014.3121C11.581%2014.3121%2013.0454%2012.9438%2013.0454%2011.2727C13.0454%209.59851%2011.581%208.23336%209.80045%208.23336C8.94093%208.23675%208.11765%208.55805%207.50987%209.12732C6.9021%209.69658%206.55906%2010.4677%206.55544%2011.2727Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.94741%207.85986H9.63458V14.6953H9.944L9.94741%207.85986Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.91385%207.82123H9.99293V14.7339H9.91725V7.82123H9.91385ZM9.60449%207.82123H9.68699V14.7339H9.60792V7.82123H9.60449Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.4291%2011.408V11.1568L13.2091%2010.9636L11.9613%2010.6545L10.167%2010.4839L8.00132%2010.5869L6.46132%2010.9282L6.15195%2011.1439V11.3983L6.93914%2011.0667L8.80914%2010.793H10.607L11.927%2010.9282L12.8413%2011.1343L13.4291%2011.408Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.80001%2010.7511C10.6559%2010.7511%2011.4843%2010.8252%2012.1479%2010.9443C12.8284%2011.0731%2013.3063%2011.2341%2013.4713%2011.4112V11.5013C13.2718%2011.276%2012.6291%2011.115%2012.1306%2011.0184C11.4775%2010.9025%2010.6525%2010.8252%209.79657%2010.8252C8.89939%2010.8252%208.06064%2010.9089%207.41439%2011.0248C6.89876%2011.1214%206.20783%2011.3146%206.12189%2011.5013V11.408C6.16657%2011.2792%206.68221%2011.086%207.40408%2010.9475C8.05376%2010.8284%208.89251%2010.7511%209.79657%2010.7511H9.80001ZM9.80001%2010.4581C10.5872%2010.4567%2011.373%2010.5213%2012.1479%2010.6513C12.8284%2010.7801%2013.3063%2010.9411%2013.4713%2011.1214V11.2083C13.2718%2010.9862%2012.6291%2010.822%2012.1306%2010.7286C11.4775%2010.6095%2010.6525%2010.5354%209.79657%2010.5354C8.99878%2010.5331%208.20246%2010.5999%207.41782%2010.735C6.91939%2010.822%206.20094%2011.0216%206.12189%2011.2083V11.1182C6.17001%2010.9894%206.69251%2010.7866%207.40408%2010.6578C8.05721%2010.5386%208.89251%2010.4581%209.80001%2010.4581ZM9.77939%208.97062C11.1304%208.96418%2012.3094%209.1477%2012.8491%209.40528L13.045%209.72725C12.5775%209.48899%2011.3057%209.24429%209.78283%209.27649C8.54189%209.28615%207.21501%209.40528%206.55158%209.74012L6.78533%209.37308C7.33189%209.10584%208.61751%208.97062%209.77939%208.97062Z'%20fill='%23FFFF00'/%3e%3cpath%20d='M9.77939%208.97062C11.1304%208.96418%2012.3094%209.1477%2012.8491%209.40528L13.045%209.72725C12.5775%209.48899%2011.3056%209.24429%209.78283%209.27649C8.54189%209.28615%207.21501%209.40528%206.55158%209.74012L6.78533%209.37308C7.33189%209.10584%208.61751%208.97062%209.77939%208.97062ZM9.80001%2010.7511C10.6559%2010.7511%2011.4843%2010.8252%2012.1479%2010.9443C12.8284%2011.0731%2013.3063%2011.2341%2013.4713%2011.4112V11.5013C13.2718%2011.276%2012.6291%2011.115%2012.1306%2011.0184C11.4775%2010.9025%2010.6525%2010.8252%209.79657%2010.8252C8.89939%2010.8252%208.06064%2010.9089%207.41439%2011.0248C6.89876%2011.1214%206.20783%2011.3146%206.12189%2011.5013V11.408C6.16657%2011.2792%206.68221%2011.086%207.40408%2010.9475C8.05376%2010.8284%208.89251%2010.7511%209.79657%2010.7511H9.80001ZM9.80001%2010.4581C10.5872%2010.4567%2011.373%2010.5213%2012.1479%2010.6513C12.8284%2010.7801%2013.3063%2010.9411%2013.4713%2011.1214V11.2083C13.2718%2010.9862%2012.6291%2010.822%2012.1306%2010.7286C11.4775%2010.6095%2010.6525%2010.5354%209.79657%2010.5354C8.99878%2010.5331%208.20246%2010.5999%207.41782%2010.735C6.91939%2010.822%206.20094%2011.0216%206.12189%2011.2083V11.1182C6.17001%2010.9894%206.69251%2010.7866%207.40408%2010.6578C8.05721%2010.5386%208.89251%2010.4581%209.80001%2010.4581Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.79936%209.23465C10.5047%209.2235%2011.2098%209.26983%2011.9065%209.3731C12.4565%209.46969%2012.9825%209.61136%2013.0581%209.68863L13.1165%209.78522C12.9343%209.67575%2012.4772%209.55018%2011.8928%209.44715C11.3084%209.34412%2010.5625%209.3087%209.79592%209.31192C8.92623%209.3087%208.24905%209.35056%207.67155%209.44715C7.27345%209.49941%206.88694%209.61139%206.52686%209.77878L6.5853%209.67897C6.79155%209.58238%207.11123%209.46325%207.65436%209.36988C8.25592%209.26685%208.93998%209.23787%209.79936%209.23465ZM9.79936%208.94488C10.535%208.93844%2011.2638%208.97708%2011.8309%209.07367C12.1984%209.12477%2012.5541%209.23362%2012.8828%209.39564L12.9688%209.52442C12.8243%209.3731%2012.2813%209.22821%2011.7965%209.15094C11.2328%209.05757%2010.535%209.02215%209.79936%209.01571C9.11458%209.00999%208.43048%209.05738%207.75405%209.15738C7.40036%209.20354%207.05684%209.30246%206.73655%209.45037L6.81217%209.34412C7.01155%209.24753%207.33467%209.15738%207.7403%209.08333C8.42119%208.98201%209.10997%208.93462%209.79936%208.94166V8.94488ZM11.6006%2012.6894C11.0048%2012.5928%2010.4005%2012.5497%209.79592%2012.5606C7.54436%2012.5864%206.81905%2012.9953%206.72967%2013.1176L6.5578%2012.86C7.1353%2012.4737%208.35905%2012.2547%209.80968%2012.2741C10.5625%2012.2869%2011.2122%2012.3352%2011.7553%2012.435L11.6006%2012.6926'%20fill='%23FFFF00'/%3e%3cpath%20d='M11.6006%2012.6894C11.0048%2012.5928%2010.4005%2012.5497%209.79592%2012.5606C7.54436%2012.5864%206.81905%2012.9953%206.72967%2013.1176L6.5578%2012.86C7.1353%2012.4737%208.35905%2012.2547%209.80968%2012.2741C10.5625%2012.2869%2011.2122%2012.3352%2011.7553%2012.435L11.6006%2012.6926M9.79936%209.23465C10.5047%209.2235%2011.2098%209.26983%2011.9065%209.3731C12.4565%209.46969%2012.9825%209.61136%2013.0581%209.68863L13.1165%209.78522C12.9343%209.67575%2012.4772%209.55018%2011.8928%209.44715C11.3084%209.34412%2010.5625%209.3087%209.79592%209.31192C8.92623%209.3087%208.24905%209.35056%207.67155%209.44715C7.27345%209.49941%206.88694%209.61139%206.52686%209.77878L6.5853%209.67897C6.79155%209.58238%207.11123%209.46325%207.65436%209.36988C8.25592%209.26685%208.93998%209.23787%209.79936%209.23465ZM9.79936%208.94488C10.535%208.93844%2011.2638%208.97708%2011.8309%209.07367C12.1984%209.12477%2012.5541%209.23362%2012.8828%209.39564L12.9688%209.52442C12.8243%209.3731%2012.2813%209.22821%2011.7965%209.15094C11.2328%209.05757%2010.535%209.02215%209.79936%209.01571C9.11458%209.00999%208.43048%209.05738%207.75405%209.15738C7.40036%209.20354%207.05684%209.30246%206.73655%209.45037L6.81217%209.34412C7.01155%209.24753%207.33467%209.15738%207.7403%209.08333C8.42119%208.98201%209.10997%208.93462%209.79936%208.94166V8.94488Z'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.78541%2012.5252C10.4111%2012.5349%2011.0229%2012.5574%2011.6175%2012.6604L11.5763%2012.7313C11.0263%2012.6347%2010.435%2012.6025%209.78884%2012.6025C8.95353%2012.596%208.11478%2012.6701%207.38259%2012.8665C7.15228%2012.9277%206.77072%2013.0661%206.72947%2013.182L6.68822%2013.1176C6.70197%2013.0468%206.92884%2012.9051%207.36197%2012.7956C8.20072%2012.5703%208.98447%2012.5284%209.78541%2012.5252ZM9.81289%2012.229C10.4732%2012.2283%2011.1323%2012.2822%2011.7825%2012.39L11.7379%2012.464C11.103%2012.3549%2010.4585%2012.3021%209.81289%2012.3063C8.98103%2012.3063%208.09759%2012.3642%207.29322%2012.5831C7.03541%2012.654%206.58509%2012.8085%206.57134%2012.9277L6.53009%2012.8568C6.53697%2012.7474%206.92541%2012.6025%207.27603%2012.5091C8.08384%2012.2869%208.97072%2012.2322%209.81289%2012.229Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.01%2012.8987L12.7419%2013.2947L11.9615%2012.6475L9.9472%2011.3758L7.67156%2010.207L6.49249%209.83033L6.74344%209.39245L6.82937%209.35059L7.56156%209.52123L9.98152%2010.69L11.3772%2011.5142L12.5494%2012.303L13.0272%2012.8182L13.01%2012.8987Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.45124%209.83996C6.65749%209.71117%208.17686%2010.3422%209.77186%2011.2438C11.3565%2012.1453%2012.8759%2013.1627%2012.7384%2013.3527L12.6938%2013.4203L12.6731%2013.4364C12.6765%2013.4331%2012.7006%2013.4042%2012.6731%2013.3366C12.6044%2013.1273%2011.525%2012.3223%209.74093%2011.3114C7.99811%2010.3422%206.54749%209.75625%206.40656%209.92368L6.45124%209.83996ZM13.065%2012.8955C13.1956%2012.6508%2011.7863%2011.6559%2010.0365%2010.6867C8.24906%209.73693%206.95656%209.1767%206.71936%209.34412L6.67124%209.4375C6.67124%209.44072%206.67124%209.43106%206.68499%209.4214C6.72624%209.38921%206.79843%209.3892%206.82936%209.3892C7.23499%209.39563%208.39343%209.8947%2010.0194%2010.7672C10.7344%2011.1536%2013.0306%2012.5381%2013.0203%2012.9244C13.0203%2012.9566%2013.0238%2012.9631%2013.01%2012.9824L13.0684%2012.8987L13.065%2012.8955Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.136364'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.62256%2011.6516C7.6231%2011.9182%207.68009%2012.182%207.79023%2012.4279C7.90038%2012.6737%208.06148%2012.8966%208.26422%2013.0837C8.4645%2013.2742%208.70302%2013.4257%208.96608%2013.5294C9.22912%2013.6331%209.51148%2013.6871%209.7969%2013.6882C10.3745%2013.6881%2010.9285%2013.4732%2011.3369%2013.0906C11.5389%2012.9024%2011.6993%2012.6788%2011.8088%2012.4324C11.9183%2012.1861%2011.9747%2011.9219%2011.9749%2011.655V8.93503L7.62256%208.92816V11.6516Z'%20fill='white'%20stroke='black'%20stroke-width='0.169697'/%3e%3cpath%20d='M7.70099%2011.655C7.70176%2011.9108%207.75659%2012.1638%207.86231%2012.3996C7.96805%2012.6354%208.12258%2012.8492%208.31699%2013.0288C8.70737%2013.3963%209.23747%2013.6038%209.79099%2013.6057C10.3435%2013.606%2010.8736%2013.401%2011.265%2013.0356C11.4587%2012.8558%2011.6126%2012.6418%2011.7176%2012.4061C11.8228%2012.1703%2011.877%2011.9174%2011.8774%2011.6619V9.01746H7.70832V11.655H7.70099ZM11.045%209.8108V11.4902L11.0414%2011.6653C11.0426%2011.8188%2011.0108%2011.9708%2010.9477%2012.1125C10.8847%2012.2541%2010.7919%2012.3824%2010.6746%2012.4896C10.4415%2012.7087%2010.1249%2012.8323%209.79466%2012.833C9.44999%2012.833%209.14565%2012.6956%208.91833%2012.4827C8.68435%2012.2643%208.55247%2011.9679%208.55165%2011.6585V9.80393L11.045%209.8108Z'%20fill='%23FF0000'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M7.97382%209.70777C7.97749%209.51889%208.12049%209.47424%208.12049%209.47424C8.12415%209.47424%208.27815%209.52232%208.27815%209.71121H7.97382'%20fill='%23FFFF00'/%3e%3cpath%20d='M7.8488%209.47767L7.82313%209.69404H7.97713C7.97713%209.51545%208.1238%209.48798%208.1238%209.48798C8.12747%209.48798%208.27047%209.52576%208.27413%209.69404H8.42813L8.3988%209.47424H7.8488V9.47767ZM7.81213%209.69747H8.43547C8.44647%209.69747%208.45747%209.70778%208.45747%209.72151C8.45747%209.73869%208.44647%209.74899%208.43547%209.74899H7.81213C7.80113%209.74899%207.79013%209.73869%207.79013%209.72151C7.79013%209.70778%207.80113%209.69747%207.81579%209.69747H7.81213Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M8.04091%209.69402C8.04091%209.58068%208.12524%209.54978%208.12524%209.54978C8.12524%209.54978%208.20958%209.58412%208.20958%209.69402H8.04091ZM7.82824%209.38493H8.42591C8.43691%209.38493%208.44791%209.39866%208.44791%209.4124C8.44791%209.4227%208.43691%209.43301%208.42591%209.43301H7.82824C7.81724%209.43301%207.80624%209.4227%207.80624%209.40897C7.80624%209.39866%207.81724%209.38836%207.82824%209.38836V9.38493ZM7.84291%209.43644H8.40758C8.41858%209.43644%208.42958%209.44674%208.42958%209.46048C8.42958%209.47422%208.41858%209.48452%208.40758%209.48452H7.83924C7.82458%209.48452%207.81724%209.47422%207.81724%209.46048C7.81724%209.44674%207.82458%209.43644%207.83924%209.43644H7.84291ZM8.02624%209.0724H8.07024V9.09987H8.10324V9.0724H8.15091V9.10331H8.18391V9.06897H8.22791V9.13765C8.22791%209.15139%208.22058%209.15826%208.20958%209.15826H8.04824C8.03724%209.15826%208.02624%209.15139%208.02624%209.14109V9.0724ZM8.19491%209.16513L8.20591%209.38493H8.04824L8.05924%209.16169H8.19491'%20fill='%23FFFF00'/%3e%3cpath%20d='M8.19491%209.16513L8.20591%209.38493H8.04824L8.05924%209.16169H8.19491M8.04091%209.69402C8.04091%209.58068%208.12524%209.54978%208.12524%209.54978C8.12524%209.54978%208.20958%209.58412%208.20958%209.69402H8.04091ZM7.82824%209.38493H8.42591C8.43691%209.38493%208.44791%209.39866%208.44791%209.4124C8.44791%209.4227%208.43691%209.43301%208.42591%209.43301H7.82824C7.81724%209.43301%207.80624%209.4227%207.80624%209.40897C7.80624%209.39866%207.81724%209.38836%207.82824%209.38836V9.38493ZM7.84291%209.43644H8.40758C8.41858%209.43644%208.42958%209.44674%208.42958%209.46048C8.42958%209.47422%208.41858%209.48452%208.40758%209.48452H7.83924C7.82458%209.48452%207.81724%209.47422%207.81724%209.46048C7.81724%209.44674%207.82458%209.43644%207.83924%209.43644H7.84291ZM8.02624%209.0724H8.07024V9.09987H8.10324V9.0724H8.15091V9.10331H8.18391V9.06897H8.22791V9.13765C8.22791%209.15139%208.22058%209.15826%208.20958%209.15826H8.04824C8.03724%209.15826%208.02624%209.15139%208.02624%209.14109V9.0724Z'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M8.00341%209.26819V9.38495H7.85675V9.26819H8.00341Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M7.8299%209.17889H7.87391V9.21323H7.90691V9.17889H7.95091V9.21323H7.98391V9.17889H8.02791V9.24757C8.02791%209.26131%208.02057%209.26818%208.00957%209.26818H7.8519C7.84607%209.26818%207.84047%209.26601%207.83634%209.26215C7.83222%209.25828%207.8299%209.25304%207.8299%209.24757V9.17889Z'%20fill='%23FFFF00'%20stroke='black'%20stroke-width='0.121212'/%3e%3cpath%20d='M8.10809%209.23384C8.10809%209.21323%208.14109%209.21323%208.14109%209.23384V9.28879H8.10809V9.23384Z'%20fill='black'/%3e%3cpath%20d='M7.91473%209.30934C7.91473%209.28873%207.94407%209.28873%207.94407%209.30934V9.35055H7.91473V9.30934Z'%20fill='black'/%3e%3cpath%20d='M9.52824%2011.3562C9.52758%2011.4287%209.55642%2011.4987%209.6089%2011.552C9.63339%2011.5776%209.66333%2011.5982%209.69679%2011.6124C9.73025%2011.6266%209.76651%2011.6341%209.8032%2011.6344C9.8802%2011.6344%209.94994%2011.6001%209.99757%2011.552C10.05%2011.4987%2010.0789%2011.4287%2010.0782%2011.3562V10.9853H9.52824V11.3562Z'%20fill='%23003399'/%3e%3cpath%20d='M9.65626%2011.1777C9.68663%2011.1777%209.71126%2011.1546%209.71126%2011.1261C9.71126%2011.0977%209.68663%2011.0746%209.65626%2011.0746C9.62588%2011.0746%209.60126%2011.0977%209.60126%2011.1261C9.60126%2011.1546%209.62588%2011.1777%209.65626%2011.1777Z'%20fill='white'/%3e%3cpath%20d='M9.96027%2011.1777C9.99063%2011.1777%2010.0153%2011.1546%2010.0153%2011.1261C10.0153%2011.0977%209.99063%2011.0746%209.96027%2011.0746C9.92991%2011.0746%209.90527%2011.0977%209.90527%2011.1261C9.90527%2011.1546%209.92991%2011.1777%209.96027%2011.1777Z'%20fill='white'/%3e%3cpath%20d='M9.8056%2011.315C9.83596%2011.315%209.8606%2011.292%209.8606%2011.2635C9.8606%2011.2351%209.83596%2011.212%209.8056%2011.212C9.7752%2011.212%209.75058%2011.2351%209.75058%2011.2635C9.75058%2011.292%209.7752%2011.315%209.8056%2011.315Z'%20fill='white'/%3e%3cpath%20d='M9.65626%2011.4593C9.68663%2011.4593%209.71126%2011.4362%209.71126%2011.4078C9.71126%2011.3793%209.68663%2011.3562%209.65626%2011.3562C9.62588%2011.3562%209.60126%2011.3793%209.60126%2011.4078C9.60126%2011.4362%209.62588%2011.4593%209.65626%2011.4593Z'%20fill='white'/%3e%3cpath%20d='M9.96027%2011.4593C9.99063%2011.4593%2010.0153%2011.4362%2010.0153%2011.4078C10.0153%2011.3793%209.99063%2011.3562%209.96027%2011.3562C9.92991%2011.3562%209.90527%2011.3793%209.90527%2011.4078C9.90527%2011.4362%209.92991%2011.4593%209.96027%2011.4593Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='flag_ru'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0.5%204.5H23.5V19.5H0.5V4.5Z'%20fill='%23F5F5F5'%20stroke='%23C7CCD1'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%209.15625H23V18.5312H1V9.15625Z'%20fill='%230039A6'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2014H23V19H1V14Z'%20fill='%23D52B1E'/%3e%3c/symbol%3e%3csymbol%20id='flag_th'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M23%204H1V19H23V4Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V19H1V4Z'%20fill='%23F4F5F8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%209.07812H23V14.0781H1V9.07812Z'%20fill='%232D2A4A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V6.57812H1V4ZM1%2016.5H23V19H1V16.5Z'%20fill='%23A51931'/%3e%3c/symbol%3e%3csymbol%20id='flag_vi'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.25098%204H22.249V19H2.25098V4Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%204H23V19H1V4Z'%20fill='%23EC0015'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.9922%2015.1621L12.3672%2013.208L9.75977%2015.1797L10.7266%2011.9688L8.11914%209.98535L11.3447%209.95605L12.3467%206.75098L13.3633%209.94727L16.5889%209.9502L13.9961%2011.9541L14.9893%2015.165L14.9922%2015.1621Z'%20fill='%23FFFF00'/%3e%3c/symbol%3e%3csymbol%20id='fly_dollar'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M23.7305%2011.3262C22.0073%208.92112%2018.4447%2012.4607%2011.9428%2013.1801C9.53552%2013.4461%207.36646%2015.3723%204.57003%2015.1887C3.42343%2015.1133%201.82233%2011.9523%200.623675%2012.4562C0.00699442%2012.7158%20-0.275985%2013.5823%200.358049%2014.2333L7.39782%2022.282C7.39782%2022.282%207.75555%2022.6772%208.96088%2022.4035C9.25788%2022.4872%2013.7228%2020.7728%2016.3043%2017.3406C16.9223%2016.5189%2017.6592%2015.8346%2018.422%2015.2629C20.8987%2013.5082%2023.591%2012.8968%2023.591%2012.8968C23.9354%2012.6244%2024.0162%2012.3347%2023.9975%2012.0834C24.0202%2011.6639%2023.7305%2011.3262%2023.7305%2011.3262Z'%20fill='%23218321'/%3e%3cpath%20d='M7.53588%206.97545C4.94703%2010.3899%200.413302%2012.0074%200.413302%2012.0074C-0.432538%2012.6883%200.281909%2013.4909%200.281909%2013.4909L7.42502%2021.5288C7.42502%2021.5288%207.78224%2021.9301%208.9853%2021.6517C8.9853%2021.6517%2013.519%2020.0375%2016.1072%2016.623C18.7754%2013.1045%2023.587%2011.9937%2023.587%2011.9937C24.4322%2011.3128%2023.7184%2010.5089%2023.7184%2010.5089L16.5753%202.47229C16.5753%202.47229%2016.2181%202.07036%2015.015%202.34742C15.015%202.34742%2010.2041%203.45565%207.53588%206.97545Z'%20fill='%23A7D28B'/%3e%3cpath%20d='M14.625%2013.5C16.489%2013.5%2018%2011.8211%2018%209.75C18%207.67893%2016.489%206%2014.625%206C12.761%206%2011.25%207.67893%2011.25%209.75C11.25%2011.8211%2012.761%2013.5%2014.625%2013.5Z'%20fill='%23218321'/%3e%3cpath%20d='M8.71135%2021C8.13894%2021%207.92907%2020.7881%207.90048%2020.7558L1.78711%2013.659C1.77542%2013.6455%201.46549%2013.2927%201.50318%2012.8442C1.52592%2012.5722%201.66756%2012.3299%201.92356%2012.1238L1.96449%2012.0992C2.00412%2012.0837%205.96882%2010.4631%208.19092%207.53413L8.32086%207.63105L8.19092%207.53413C10.5417%204.43517%2014.5967%203.10538%2014.637%203.09246C15.7707%202.83012%2016.1417%203.20489%2016.1814%203.24882L22.2142%2010.385C22.2252%2010.3966%2022.5345%2010.7507%2022.4968%2011.1998C22.4741%2011.4711%2022.3324%2011.7135%2022.0764%2011.9196L22.0121%2011.9512C21.9725%2011.9609%2018.0299%2012.9353%2015.7461%2015.9451C13.4726%2018.9433%209.50403%2020.883%209.4644%2020.9018C9.16292%2020.9729%208.91472%2021%208.71135%2021ZM8.14543%2020.5432C8.14608%2020.5432%208.43911%2020.812%209.35719%2020.6C9.36239%2020.5929%2013.2615%2018.6861%2015.4881%2015.7513C17.7213%2012.808%2021.4819%2011.7568%2021.8991%2011.6475C22.066%2011.5047%2022.1583%2011.3464%2022.1732%2011.1765C22.2005%2010.8663%2021.9705%2010.5995%2021.9686%2010.5969L15.9358%203.46012C15.9345%203.46012%2015.6434%203.19196%2014.7247%203.4039C14.698%203.41295%2010.7385%204.71301%208.45081%207.72862C6.2638%2010.6111%202.44789%2012.2485%202.11068%2012.3893C1.93655%2012.5347%201.84169%2012.6969%201.82674%2012.8707C1.80075%2013.1783%202.02946%2013.4439%202.03141%2013.4464L8.14543%2020.5432Z'%20fill='%23218321'/%3e%3cpath%20d='M14.2537%2015.0185L14.25%2019.0951L14.5591%2019.5C15.1617%2018.8933%2015.7407%2018.2111%2016.2413%2017.4439C16.7606%2016.6492%2017.3638%2015.969%2018%2015.3946L17.6996%2015L14.2537%2015.0185Z'%20fill='%23FCB100'/%3e%3cpath%20d='M17.9881%2014.8637L9.68807%205.25C9.01377%205.79257%208.36602%206.42535%207.81517%207.17366C7.27692%207.90444%206.65041%208.54761%206%209.11484L6.9703%2010.2383L6.96964%2010.2389L14.3199%2018.75C14.9703%2018.1821%2015.5895%2017.5325%2016.1284%2016.801C16.6793%2016.0534%2017.3264%2015.4212%2018%2014.8787L17.9874%2014.8637H17.9881Z'%20fill='%23FCB100'/%3e%3cpath%20d='M9.35578%2015.2815C8.31886%2014.0527%206.12382%2016.0465%205.49781%2015.3048C5.19479%2014.9456%205.38992%2014.4798%205.78817%2014.144C6.45747%2013.5775%206.9403%2013.9074%207.24332%2013.6508C7.45843%2013.4696%207.44711%2013.2477%207.31924%2013.0951C7.02222%2012.7439%206.26301%2012.9272%205.67296%2013.2683L5.38593%2012.9285C5.20678%2012.7166%204.88978%2012.6893%204.678%2012.8685C4.46622%2013.0484%204.43958%2013.3643%204.61873%2013.5762L4.91575%2013.9287C4.46489%2014.5271%204.31171%2015.3215%204.84516%2015.9525C5.84145%2017.132%208.0638%2015.1715%208.76307%2016.0005C9.00548%2016.2884%208.93755%2016.8375%208.42742%2017.2679C7.66288%2017.915%206.97027%2017.6118%206.65926%2017.8744C6.50742%2018.0016%206.48012%2018.2442%206.64195%2018.4368C6.89968%2018.7413%207.72082%2018.676%208.51%2018.1842C8.51133%2018.1856%208.51133%2018.1869%208.51133%2018.1882L8.83566%2018.5721C9.0148%2018.784%209.33247%2018.8099%209.54425%2018.632C9.7567%2018.4521%209.78267%2018.1349%209.60352%2017.923L9.27919%2017.5392C9.27587%2017.5352%209.27054%2017.5325%209.26654%2017.5285C9.79865%2016.8768%209.97846%2016.0178%209.35578%2015.2815Z'%20fill='%23218321'/%3e%3cpath%20d='M21.7465%2021.9552C21.7527%2021.9497%2021.7596%2021.9456%2021.7659%2021.9407C21.8129%2021.8937%2021.8495%2021.8398%2021.891%2021.788C21.92%2021.7521%2021.9525%2021.7175%2021.9794%2021.6809C22.0036%2021.6463%2022.0237%2021.6111%2022.0458%2021.5758C23.0273%2020.0644%2022.3845%2017.5019%2020.4415%2015.5586C18.4977%2013.6152%2015.934%2012.9725%2014.423%2013.9545C14.387%2013.976%2014.3518%2013.996%2014.3172%2014.0209C14.2806%2014.0478%2014.2453%2014.0803%2014.2108%2014.1087C14.1596%2014.1508%2014.1057%2014.1868%2014.058%2014.2344C14.0518%2014.2407%2014.0476%2014.2476%2014.0428%2014.2538C14.0352%2014.2614%2014.0262%2014.2662%2014.0179%2014.2745L14.0221%2014.278C13.3308%2015.0119%2013.3225%2016.1474%2014.0179%2016.8433C14.7147%2017.5399%2015.8497%2017.5302%2016.5844%2016.8391L16.592%2016.8474C16.5775%2016.8613%2016.5616%2016.8702%2016.5478%2016.8841C15.8158%2017.6159%2015.7985%2018.7832%2016.507%2019.4929C17.2162%2020.2013%2018.3851%2020.184%2019.1164%2019.4521C19.1302%2019.4383%2019.1392%2019.4224%2019.153%2019.4079L19.1606%2019.4162C18.4694%2020.1501%2018.4604%2021.2856%2019.1572%2021.9822C19.8532%2022.6774%2020.9882%2022.6691%2021.7223%2021.978L21.7265%2021.9822C21.7334%2021.9725%2021.7389%2021.9635%2021.7465%2021.9552Z'%20fill='white'/%3e%3cpath%20d='M13.991%2017.2777C14.5882%2017.855%2015.5209%2017.9022%2016.2123%2017.4442C16.5017%2016.9658%2016.5848%2016.511%2016.5848%2016.3687C15.13%2017.4187%2013.8314%2016.3745%2013.5408%2015.75C13.4201%2016.2896%2013.5665%2016.8663%2013.991%2017.2777ZM18.8022%2019.7271C18.9986%2019.4599%2019.1509%2019.2015%2019.2221%2019.0268C18.296%2019.8483%2016.5255%2019.2468%2015.9889%2017.9437C15.7529%2018.5496%2015.8735%2019.2475%2016.3653%2019.7233C17.0258%2020.3625%2018.1015%2020.3574%2018.8022%2019.7271ZM21.3426%2022.0203L21.3618%2021.9973C21.3683%2021.9922%2021.3749%2021.9884%2021.3802%2021.9833C21.4257%2021.9399%2021.4606%2021.8902%2021.4995%2021.843C21.5279%2021.8092%2021.5582%2021.7779%2021.5839%2021.7435C21.6076%2021.7122%2021.6267%2021.679%2021.6478%2021.6465C21.6907%2021.5827%2021.7137%2021.5075%2021.75%2021.4398C20.0836%2022.1613%2018.8398%2020.9372%2018.4911%2020.3268C18.2966%2020.9117%2018.4232%2021.5668%2018.8925%2022.0216C19.5556%2022.6639%2020.638%2022.6563%2021.3387%2022.0178L21.3426%2022.0203Z'%20fill='%23C7CCD1'/%3e%3cpath%20d='M9.05953%208.50202L9.07727%208.48808C9.12098%208.445%209.15456%208.39558%209.19194%208.3487C9.21855%208.31576%209.24769%208.28471%209.2724%208.2505C9.29521%208.21882%209.31358%208.18651%209.33385%208.1542C10.2335%206.76862%209.64365%204.41878%207.86276%202.63787C6.08124%200.856327%203.73206%200.266492%202.3465%201.16613C2.31419%201.18641%202.28125%201.20478%202.24957%201.22759C2.21536%201.2523%202.18431%201.28144%202.15137%201.30805C2.10449%201.34606%202.05507%201.37901%202.01199%201.42272C2.00629%201.42842%202.00249%201.43539%201.99805%201.44046C1.99108%201.4468%201.98221%201.4525%201.97525%201.45947L1.97841%201.46264C1.34487%202.13547%201.33727%203.17639%201.97525%203.81438C2.61322%204.45236%203.65414%204.44476%204.32696%203.81121L4.33393%203.81818C4.32062%203.83022%204.30605%203.83909%204.29338%203.85176C3.62246%204.52269%203.60662%205.59275%204.25664%206.24341C4.90665%206.89407%205.97734%206.8776%206.64826%206.20667C6.66093%206.19399%206.66917%206.17942%206.68184%206.16612L6.68881%206.17309C6.05526%206.84592%206.04703%207.88684%206.68564%208.52483C7.32362%209.16281%208.3639%209.15521%209.03672%208.52103L9.03989%208.52483C9.04686%208.51786%209.05256%208.50962%209.05953%208.50202Z'%20fill='white'/%3e%3cpath%20d='M1.991%203.7787C2.58825%204.3565%203.52105%204.4037%204.21257%203.94451C4.50196%203.4662%204.58437%203.01212%204.58437%202.8699C3.13013%203.919%201.83081%202.87436%201.54075%202.25C1.42012%202.79018%201.56646%203.36735%201.991%203.7787ZM6.80395%206.2264C6.99974%205.95918%207.15202%205.70216%207.22256%205.52742C6.2957%206.34885%204.52504%205.74681%203.98909%204.44387C3.75309%205.04974%203.87373%205.74744%204.36485%206.22321C5.0267%206.86288%206.1032%206.85714%206.80395%206.2264ZM9.3426%208.5204C9.34985%208.51338%209.35579%208.50509%209.36238%208.49744L9.38084%208.48341C9.42632%208.44004%209.46126%208.3903%209.50016%208.3431C9.52784%208.30994%209.55817%208.27869%209.58388%208.24425C9.60761%208.21236%209.62673%208.17984%209.64782%208.14731C9.69067%208.08354%209.71374%208.00764%209.75%207.94004C8.0835%208.66134%206.83955%207.43813%206.49082%206.8278C6.29636%207.41262%206.42292%208.06759%206.89229%208.52167C7.55612%209.16389%208.63856%209.15624%209.33865%208.51785L9.3426%208.5204Z'%20fill='%23C7CCD1'/%3e%3c/symbol%3e%3csymbol%20id='fly_euro'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.25488%2012.001H12.7479'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.8906%2014.655C12.8296%2015.115%2011.5576%2014.926%2010.6906%2014.058C9.55364%2012.921%209.55364%2011.078%2010.6906%209.941C11.5586%209.073%2012.8306%208.884%2013.8906%209.344'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.804%2018.213V18.213C17.299%2017.712%2014.715%2017.774%2012.237%2018.393L12%2018.453C9.366%2019.111%206.619%2019.177%203.957%2018.644L3.804%2018.613C3.336%2018.52%203%2018.109%203%2017.633V6.79399C3%206.16299%203.577%205.68999%204.196%205.81299V5.81299C6.701%206.31399%209.285%206.25199%2011.763%205.63299L12.236%205.51499C14.714%204.89599%2017.299%204.83399%2019.803%205.33499L20.195%205.41299C20.664%205.50699%2021%205.91699%2021%206.39399V17.233C21%2017.864%2020.423%2018.337%2019.804%2018.213V18.213Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='freeze'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.9871%203.00008C11.5326%203.00912%2011.1684%203.3588%2011.1749%203.78383V5.0077L10.9331%204.78161C10.7784%204.63089%2010.5657%204.5495%2010.3401%204.54649C10.0048%204.5495%209.70509%204.73941%209.57616%205.0288C9.45046%205.3212%209.52459%205.65279%209.76633%205.87284L11.1749%207.19015V10.1624L8.41904%208.67928L7.90333%206.87966C7.81308%206.54205%207.49398%206.3039%207.12654%206.29486C6.86224%206.28883%206.61405%206.40037%206.45289%206.59329C6.29173%206.78923%206.24016%207.04244%206.31107%207.27757L6.40132%207.58504L5.26676%206.97612C5.1475%206.90679%205.01213%206.87062%204.87353%206.86459C4.84775%206.86459%204.81874%206.86459%204.79295%206.8676C4.42873%206.88871%204.11931%207.12986%204.03873%207.46446C3.95815%207.79907%204.12253%208.14271%204.44162%208.30851L5.57619%208.92044L5.2442%209.00484C4.95411%209.07116%204.72526%209.27915%204.64468%209.55045C4.56733%209.81874%204.64791%2010.1081%204.86064%2010.3041C5.07337%2010.5%205.38279%2010.5723%205.66966%2010.497L7.59712%2010.0147L10.3497%2011.5008L7.59712%2012.9869L5.66966%2012.5046C5.5923%2012.4835%205.51172%2012.4745%205.42792%2012.4775C5.01213%2012.4835%204.67047%2012.7759%204.62212%2013.1617C4.577%2013.5446%204.8413%2013.9033%205.2442%2013.9967L5.57619%2014.0812L4.44162%2014.6931C4.1741%2014.8227%204.00327%2015.0819%204.00005%2015.3653C3.99682%2015.6487%204.15798%2015.9109%204.42228%2016.0496C4.68659%2016.1852%205.01213%2016.1792%205.26676%2016.0255L6.40132%2015.4165L6.31107%2015.724C6.22727%2015.9923%206.30785%2016.2817%206.51736%2016.4806C6.72686%2016.6796%207.03307%2016.758%207.32315%2016.6826C7.61002%2016.6103%207.83242%2016.3962%207.90333%2016.1219L8.41904%2014.3223L11.1749%2012.8392V15.8114L9.76633%2017.1287C9.55038%2017.3217%209.46335%2017.6111%209.54071%2017.8793C9.61484%2018.1506%209.84046%2018.3617%2010.1306%2018.431C10.4174%2018.5033%2010.7268%2018.4219%2010.9331%2018.22L11.1749%2017.9939V19.2178C11.1716%2019.4951%2011.3264%2019.7543%2011.5842%2019.896C11.8421%2020.0347%2012.1579%2020.0347%2012.4158%2019.896C12.6736%2019.7543%2012.8284%2019.4951%2012.8251%2019.2178V17.9939L13.0669%2018.22C13.2732%2018.4219%2013.5826%2018.5033%2013.8694%2018.431C14.1595%2018.3617%2014.3852%2018.1506%2014.4593%2017.8793C14.5366%2017.6111%2014.4496%2017.3217%2014.2337%2017.1287L12.8251%2015.8114V12.8392L15.581%2014.3223L16.0967%2016.1219C16.1676%2016.3962%2016.39%2016.6103%2016.6768%2016.6826C16.9669%2016.758%2017.2731%2016.6796%2017.4826%2016.4806C17.6922%2016.2817%2017.7727%2015.9923%2017.6889%2015.724L17.5987%2015.4165L18.7332%2016.0255C18.9879%2016.1792%2019.3134%2016.1852%2019.5777%2016.0496C19.842%2015.9109%2020.0032%2015.6487%2020%2015.3653C19.9967%2015.0819%2019.8259%2014.8227%2019.5584%2014.6931L18.4238%2014.0812L18.7558%2013.9967C19.1619%2013.9033%2019.4294%2013.5386%2019.3747%2013.1497C19.3231%2012.7608%2018.9653%2012.4714%2018.5495%2012.4775C18.4722%2012.4775%2018.4013%2012.4865%2018.3303%2012.5046L16.4029%2012.9869L13.6503%2011.5008L16.4029%2010.0147L18.3303%2010.497C18.6172%2010.5723%2018.9266%2010.5%2019.1394%2010.3041C19.3521%2010.1081%2019.4327%209.81874%2019.3553%209.55045C19.2747%209.27915%2019.0459%209.07116%2018.7558%209.00484L18.4238%208.92044L19.5584%208.30851C19.8807%208.1397%2020.0419%207.79002%2019.9548%207.45542C19.8678%207.1178%2019.5519%206.87966%2019.1813%206.8676C19.0265%206.86158%2018.8686%206.89775%2018.7332%206.97612L17.5987%207.58504L17.6889%207.27757C17.7631%207.03641%2017.705%206.78019%2017.5407%206.58425C17.3731%206.39132%2017.1184%206.2828%2016.8509%206.29486C16.4899%206.31596%2016.1837%206.55109%2016.0967%206.87966L15.581%208.67928L12.8251%2010.1624V7.19015L14.2337%205.87284C14.4786%205.65279%2014.5528%205.31215%2014.4238%205.01975C14.2917%204.72735%2013.9823%204.53744%2013.6406%204.54347C13.4246%204.5495%2013.2184%204.63391%2013.0669%204.78161L12.8251%205.0077V3.78383C12.8284%203.57584%2012.7413%203.37387%2012.5834%203.22616C12.4255%203.07846%2012.2095%202.99707%2011.9871%203.00008Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='fullscreen'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M7%2014H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12%207h-3v2h5v-5h-2v3zM14%205v2h3v3h2V5h-5z'/%3e%3c/symbol%3e%3csymbol%20id='get_app'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%209h-4V3H9v6H5l7%207%207-7zM5%2018v2h14v-2H5z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='gift_solid'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='currentColor'/%3e%3cpath%20d='M13.5556%2011.2222H17.8333C18.1428%2011.2222%2018.4395%2011.0993%2018.6583%2010.8805C18.8771%2010.6617%2019%2010.3649%2019%2010.0555V9.27775C19%208.96833%2018.8771%208.67159%2018.6583%208.45279C18.4395%208.234%2018.1428%208.11108%2017.8333%208.11108H6.16667C5.85725%208.11108%205.5605%208.234%205.34171%208.45279C5.12292%208.67159%205%208.96833%205%209.27775V10.0555C5%2010.3649%205.12292%2010.6617%205.34171%2010.8805C5.5605%2011.0993%205.85725%2011.2222%206.16667%2011.2222H10.4444'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2218%2011.2222V17.4445C18.2218%2017.857%2018.0579%2018.2527%2017.7662%2018.5444C17.4745%2018.8361%2017.0788%2019%2016.6662%2019H7.3329C6.92034%2019%206.52468%2018.8361%206.23296%2018.5444C5.94123%2018.2527%205.77734%2017.857%205.77734%2017.4445V11.2222'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.4442%205C10.8568%205%2011.2524%205.16389%2011.5442%205.45561C11.8359%205.74733%2011.9998%206.143%2011.9998%206.55556V8.11111H10.4442C10.0317%208.11111%209.63601%207.94722%209.34428%207.6555C9.05256%207.36378%208.88867%206.96811%208.88867%206.55556C8.88867%206.143%209.05256%205.74733%209.34428%205.45561C9.63601%205.16389%2010.0317%205%2010.4442%205Z'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.5556%205C13.9681%205%2014.3638%205.16389%2014.6555%205.45561C14.9472%205.74733%2015.1111%206.143%2015.1111%206.55556C15.1111%206.96811%2014.9472%207.36378%2014.6555%207.6555C14.3638%207.94722%2013.9681%208.11111%2013.5556%208.11111H12V6.55556C12%206.143%2012.1639%205.74733%2012.4556%205.45561C12.7473%205.16389%2013.143%205%2013.5556%205Z'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.7786%208.11108H11.2231C10.7935%208.11108%2010.4453%208.45931%2010.4453%208.88886V18.2222C10.4453%2018.6518%2010.7935%2019%2011.2231%2019H12.7786C13.2082%2019%2013.5564%2018.6518%2013.5564%2018.2222V8.88886C13.5564%208.45931%2013.2082%208.11108%2012.7786%208.11108Z'%20stroke='white'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='glasses'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.903%204L19.574%205.142C20.056%205.471%2020.37%205.995%2020.434%206.576L21.464%2016M9.50001%2016.473C9.50001%2015.161%2010.619%2014.098%2012%2014.098C13.381%2014.098%2014.5%2015.161%2014.5%2016.473M6.09701%204L4.42601%205.142C3.94401%205.471%203.63001%205.995%203.56701%206.576L2.53601%2016M20.4749%2014.0251C21.8417%2015.3919%2021.8417%2017.608%2020.4749%2018.9748C19.1081%2020.3417%2016.892%2020.3417%2015.5252%2018.9748C14.1583%2017.608%2014.1583%2015.3919%2015.5252%2014.0251C16.892%2012.6583%2019.1081%2012.6583%2020.4749%2014.0251ZM8.47488%2014.0251C9.84172%2015.3919%209.84172%2017.608%208.47488%2018.9748C7.10804%2020.3417%204.89197%2020.3417%203.52513%2018.9748C2.15829%2017.608%202.15829%2015.3919%203.52513%2014.0251C4.89197%2012.6583%207.10804%2012.6583%208.47488%2014.0251Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='google_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M22.0026%2012.228C22.0035%2011.5466%2021.9447%2010.8663%2021.8269%2010.1947H12.2051V14.046H17.716C17.6033%2014.6611%2017.3646%2015.2474%2017.0144%2015.7697C16.6642%2016.292%2016.2097%2016.7393%2015.6783%2017.0848V19.5847H18.9673C20.8931%2017.8445%2022.0026%2015.271%2022.0026%2012.228Z'%20fill='%234285F4'/%3e%3cpath%20d='M12.1999%2021.9999C14.9533%2021.9999%2017.2716%2021.1139%2018.9622%2019.5861L15.6732%2017.0862C14.7577%2017.6945%2013.5787%2018.0418%2012.1999%2018.0418C9.5387%2018.0418%207.2799%2016.2835%206.47218%2013.9141H3.08398V16.4904C3.93318%2018.1466%205.23534%2019.5388%206.84507%2020.5117C8.4548%2021.4846%2010.3088%2021.9999%2012.1999%2021.9999Z'%20fill='%2334A853'/%3e%3cpath%20d='M6.47462%2013.9142C6.0476%2012.6726%206.0476%2011.3281%206.47462%2010.0865V7.51024H3.08642C2.37205%208.90346%202%2010.4411%202%2012.0004C2%2013.5596%202.37205%2015.0972%203.08642%2016.4905L6.47462%2013.9142Z'%20fill='%23FBBC04'/%3e%3cpath%20d='M12.1999%205.95885C13.655%205.93555%2015.0609%206.47435%2016.1139%207.45879L19.0259%204.60473C17.1794%202.9049%2014.7331%201.97166%2012.1999%202.00066C10.3087%202.00074%208.4548%202.51599%206.84507%203.48888C5.23534%204.46178%203.93318%205.85402%203.08398%207.51018L6.47218%2010.0865C7.2799%207.71711%209.5387%205.95885%2012.1999%205.95885Z'%20fill='%23EA4335'/%3e%3c/symbol%3e%3csymbol%20id='googleplus_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23EA4335'/%3e%3cpath%20d='M17.0945%209.858C17.5752%209.858%2018.0556%209.858%2018.5384%209.858C18.541%2010.3331%2018.5457%2010.8105%2018.5483%2011.2854C19.0311%2011.2901%2019.5166%2011.2925%2019.9996%2011.2949C19.9996%2011.7699%2019.9996%2012.2424%2019.9996%2012.7175C19.5168%2012.7198%2019.0313%2012.7222%2018.5483%2012.7246C18.5435%2013.202%2018.541%2013.6769%2018.5384%2014.1543C18.0556%2014.152%2017.5723%2014.1543%2017.0919%2014.1543C17.0873%2013.6769%2017.0873%2013.202%2017.0822%2012.727C16.5994%2012.722%2016.1139%2012.7198%2015.6309%2012.7173C15.6309%2012.2422%2015.6309%2011.7697%2015.6309%2011.2946C16.1139%2011.2923%2016.597%2011.2899%2017.0822%2011.2851C17.0846%2010.8105%2017.0895%2010.3331%2017.0945%209.858Z'%20fill='white'/%3e%3cpath%20d='M4.00312%2012.0064C3.90357%209.42853%206.1995%207.04628%208.82332%207.01538C10.1606%206.9032%2011.4616%207.41393%2012.4737%208.24692C12.0585%208.69583%2011.6361%209.13956%2011.185%209.55497C10.294%209.02263%209.22132%208.61694%208.18005%208.97724C6.50058%209.44755%205.48349%2011.3977%206.10499%2013.0136C6.61969%2014.7012%208.70684%2015.6273%2010.3426%2014.9184C11.1896%2014.6201%2011.748%2013.8515%2011.993%2013.0257C11.0223%2013.0067%2010.0514%2013.0185%209.08067%2012.9922C9.07825%2012.4242%209.07583%2011.8583%209.07825%2011.2903C10.6971%2011.2879%2012.3183%2011.2832%2013.9395%2011.2975C14.0391%2012.6892%2013.8303%2014.1785%2012.9104%2015.2955C11.6506%2016.89%209.32329%2017.3579%207.42998%2016.7324C5.42063%2016.0834%203.95939%2014.0925%204.00312%2012.0064Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='graph-no-data'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8.50116%2022H3.09591C2.48991%2022%202%2021.5334%202%2020.9587V17.0413C2%2016.4655%202.49107%2016%203.09591%2016H8.5M8.50116%2022H15.5M8.50116%2022V9.14533C8.50116%208.512%208.99223%208%209.59707%208H15.4988M15.5%2022V3.11059C15.5%202.49765%2015.9912%202%2016.5961%202H20.9039C21.5088%202%2022%202.49647%2022%203.11059V20.8894C22%2021.5024%2021.51%2022%2020.9039%2022H15.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='group'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2%2019C2%2016.8%203.8%2015%206%2015H10C12.2%2015%2014%2016.8%2014%2019M16%2014H19C20.7%2014%2022%2015.3%2022%2017M11.5%208.5C11.5%2010.433%209.933%2012%208%2012C6.067%2012%204.5%2010.433%204.5%208.5C4.5%206.567%206.067%205%208%205C9.933%205%2011.5%206.567%2011.5%208.5ZM20%208.5C20%209.88071%2018.8807%2011%2017.5%2011C16.1193%2011%2015%209.88071%2015%208.5C15%207.11929%2016.1193%206%2017.5%206C18.8807%206%2020%207.11929%2020%208.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='group_connection'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.6555%2013.6545C12.5697%2012.7403%2012.5697%2011.2581%2011.6555%2010.3439C10.7413%209.42965%209.25906%209.42965%208.34484%2010.3439C7.43063%2011.2581%207.43063%2012.7403%208.34484%2013.6545C9.25905%2014.5688%2010.7413%2014.5688%2011.6555%2013.6545Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.4484%2013.4895C20.2713%2012.6666%2020.2713%2011.3325%2019.4484%2010.5097C18.6256%209.68687%2017.2915%209.68687%2016.4687%2010.5097C15.6459%2011.3325%2015.6459%2012.6666%2016.4687%2013.4895C17.2915%2014.3123%2018.6256%2014.3123%2019.4484%2013.4895Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.51094%2020.382C8.33377%2019.5592%208.33377%2018.2251%207.51094%2017.4023C6.6881%2016.5794%205.35402%2016.5794%204.53119%2017.4023C3.70835%2018.2251%203.70835%2019.5592%204.53119%2020.382C5.35403%2021.2049%206.6881%2021.2049%207.51094%2020.382Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.51094%206.59688C8.33377%205.77404%208.33377%204.43996%207.51094%203.61713C6.6881%202.79429%205.35402%202.79429%204.53119%203.61713C3.70835%204.43997%203.70835%205.77404%204.53119%206.59688C5.35403%207.41971%206.6881%207.41971%207.51094%206.59688Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.07031%2017.0695L8.83031%2014.0195'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.07031%206.92969L8.83031%209.97969'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.8498%2012H12.3398'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='growth_arrow_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%209.5L12.6244%2013.8756L10.1244%2011.3756L7%2014.5M17%209.5H13.8756M17%209.5V12.6244M22%2012C22%2017.5228%2017.5228%2022%2012%2022C6.47715%2022%202%2017.5228%202%2012C2%206.47715%206.47715%202%2012%202C17.5228%202%2022%206.47715%2022%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='hand_money'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0_10494_49603)'%3e%3cpath%20d='M12.9813%2014H20.5C20.8978%2014%2021.2794%2013.842%2021.5607%2013.5607C21.842%2013.2794%2022%2012.8978%2022%2012.5V6.5C22%206.10218%2021.842%205.72064%2021.5607%205.43934C21.2794%205.15804%2020.8978%205%2020.5%205H10.5C10.1022%205%209.72064%205.15804%209.43934%205.43934C9.15804%205.72064%209%206.10218%209%206.5V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.4395%208.43949C14.7212%208.16041%2015.1019%208.00425%2015.4985%208.00518C15.895%208.00612%2016.2751%208.16406%2016.5555%208.44446C16.8359%208.72486%2016.9938%209.1049%2016.9948%209.50145C16.9957%209.898%2016.8395%2010.2788%2016.5605%2010.5605'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%208H6.70819C6.24246%207.99999%205.78313%208.10842%205.36658%208.31671L4.78137%208.60931C4.27108%208.86444%203.84413%209.25979%203.5506%209.749L2%2012.3333'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2021L8.76187%2018.918C9.56607%2018.6274%2010.256%2018.0867%2010.7304%2017.3753L13.7233%2012.8873C13.9344%2012.5708%2014.0293%2012.1908%2013.9918%2011.8122C13.9543%2011.4335%2013.7868%2011.0796%2013.5178%2010.8105C13.2092%2010.5019%2012.7907%2010.3285%2012.3542%2010.3285C11.9178%2010.3285%2011.4992%2010.5018%2011.1906%2010.8103L9%2013H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='help'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm1%2017h-2v-2h2v2zm2.07-7.75l-.9.92C13.45%2012.9%2013%2013.5%2013%2015h-2v-.5c0-1.1.45-2.1%201.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41%200-1.1-.9-2-2-2s-2%20.9-2%202H8c0-2.21%201.79-4%204-4s4%201.79%204%204c0%20.88-.36%201.68-.93%202.25z'/%3e%3c/symbol%3e%3csymbol%20id='help_invert'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M11%2018h2v-2h-2v2zm1-16C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.41%200-8-3.59-8-8s3.59-8%208-8%208%203.59%208%208-3.59%208-8%208zm0-14c-2.21%200-4%201.79-4%204h2c0-1.1.9-2%202-2s2%20.9%202%202c0%202-3%201.75-3%205h2c0-2.25%203-2.5%203-5%200-2.21-1.79-4-4-4z'/%3e%3c/symbol%3e%3csymbol%20id='help_solid'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='12'%20cy='12'%20r='10'%20fill='none'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2012C2%2017.5233%206.47667%2022%2012%2022C17.5233%2022%2022%2017.5233%2022%2012C22%206.47667%2017.5233%202%2012%202C6.47667%202%202%206.47667%202%2012ZM12%206.25C10.2164%206.25%208.75%207.65203%208.75%209.4805C8.75%209.89471%209.08579%2010.2305%209.5%2010.2305C9.91421%2010.2305%2010.25%209.89471%2010.25%209.4805C10.25%208.50408%2011.0211%207.75%2012%207.75C12.9789%207.75%2013.75%208.50408%2013.75%209.4805C13.75%2010.1068%2013.4076%2010.462%2012.8406%2010.8501C12.157%2011.3165%2011.25%2012.0745%2011.25%2013.5V14C11.25%2014.4142%2011.5858%2014.75%2012%2014.75C12.4142%2014.75%2012.75%2014.4142%2012.75%2014V13.5C12.75%2012.852%2013.1051%2012.4855%2013.6864%2012.0889L13.6874%2012.0882C14.3551%2011.6312%2015.25%2010.8847%2015.25%209.4805C15.25%207.65203%2013.7836%206.25%2012%206.25ZM12.75%2016.5C12.75%2016.0858%2012.4142%2015.75%2012%2015.75C11.5858%2015.75%2011.25%2016.0858%2011.25%2016.5V17C11.25%2017.4142%2011.5858%2017.75%2012%2017.75C12.4142%2017.75%2012.75%2017.4142%2012.75%2017V16.5Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='help_ukraine_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='url(%23help_ukraine_colored_paint0_linear_8335_38758)'/%3e%3ccircle%20cx='12'%20cy='12'%20r='11'%20fill='white'/%3e%3cpath%20d='M7.92557%2018.1585L7.02003%2015.8001C6.9754%2015.6839%207.00692%2015.5498%207.09887%2015.4692C9.32533%2013.5173%2010.808%2013.7375%2013.5414%2015.2856C13.5712%2015.3025%2013.6046%2015.3141%2013.6382%2015.3192C14.7269%2015.4851%2015.3922%2015.7471%2015.423%2016.1643C15.4245%2016.1845%2015.4267%2016.207%2015.4298%2016.227C15.5934%2017.334%2012.2035%2016.0842%2011.4599%2016.5728C11.296%2016.6806%2011.5066%2016.8328%2011.6971%2016.7956C12.7979%2016.5809%2014.67%2017.4547%2015.4241%2016.9309C15.9518%2016.4519%2015.9265%2016.1897%2015.7318%2015.8613C15.6471%2015.7183%2015.6794%2015.5308%2015.8143%2015.4387C17.0174%2014.6172%2018.0411%2013.7509%2018.4136%2014.0665C18.5216%2014.1579%2018.6362%2014.259%2018.7742%2014.2776C19.0062%2014.3088%2019.0384%2014.4731%2018.9649%2014.8319C18.9597%2014.8571%2018.951%2014.8817%2018.9393%2014.9044C17.5301%2017.6554%2014.4907%2019.0499%2013.3332%2018.9936C13.3134%2018.9926%2013.2955%2018.9934%2013.2758%2018.9955C12.3366%2019.0951%209.87766%2017.5028%208.40762%2018.3093C8.23372%2018.4048%207.99857%2018.3486%207.92557%2018.1585Z'%20fill='%23D7A37D'/%3e%3cpath%20d='M5.81639%2015.0146L5.1419%2015.3098C5.02874%2015.3593%204.97095%2015.5193%205.01457%2015.6623L5.97986%2018.8266C6.02754%2018.9829%206.17355%2019.0475%206.28571%2018.9619L6.89776%2018.4947C6.98564%2018.4277%207.02276%2018.2893%206.98576%2018.1666L6.0829%2015.1742C6.04183%2015.0381%205.92395%2014.9675%205.81639%2015.0146Z'%20fill='%23100F0D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.7%209H10.2998C11.3968%2011.2202%2014.1364%2012.8763%2014.3021%2012.9566C14.3607%2012.9851%2014.4261%2013%2014.4927%2013C14.5592%2013%2014.6247%2012.9851%2014.6833%2012.9566C14.849%2012.8763%2017.603%2011.2202%2018.7%209Z'%20fill='%23F9D548'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.7001%209H10.2999C10.143%208.63554%2010.0396%208.25593%2010.0106%207.86557C9.9177%206.61822%2010.4389%205.6191%2011.4053%205.1931C11.7192%205.07138%2012.0509%205.00643%2012.386%205.00109C12.7776%204.99465%2013.1664%205.06974%2013.5296%205.22194C13.8927%205.37414%2014.2227%205.60035%2014.5%205.88717C14.8973%205.47581%2015.4003%205.19164%2015.949%205.06857C16.4977%204.9455%2017.0689%204.98873%2017.5947%205.1931C18.5611%205.61906%2019.0823%206.61822%2018.9894%207.86557C18.9604%208.25593%2018.857%208.63554%2018.7001%209Z'%20fill='%23215CB5'/%3e%3c/symbol%3e%3csymbol%20id='home'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19.842%208.299L19.3815%208.891L19.3818%208.89123L19.842%208.299ZM13.842%203.632L13.3813%204.22384L13.3815%204.224L13.842%203.632ZM10.158%203.632L9.69758%203.03995L9.69752%203.04L10.158%203.632ZM4.158%208.299L4.61818%208.89123L4.61848%208.891L4.158%208.299ZM9%2016.25C8.58579%2016.25%208.25%2016.5858%208.25%2017C8.25%2017.4142%208.58579%2017.75%209%2017.75V16.25ZM15%2017.75C15.4142%2017.75%2015.75%2017.4142%2015.75%2017C15.75%2016.5858%2015.4142%2016.25%2015%2016.25V17.75ZM20.3025%207.707L14.3025%203.04L13.3815%204.224L19.3815%208.891L20.3025%207.707ZM14.3027%203.04016C12.9486%201.98618%2011.0523%201.98644%209.69758%203.03995L10.6184%204.22404C11.4317%203.59155%2012.5694%203.59182%2013.3813%204.22384L14.3027%203.04016ZM9.69752%203.04L3.69752%207.707L4.61848%208.891L10.6185%204.224L9.69752%203.04ZM3.69783%207.70677C2.78363%208.41711%202.25%209.50986%202.25%2010.667H3.75C3.75%209.97213%204.07037%209.31688%204.61817%208.89123L3.69783%207.70677ZM2.25%2010.667V18H3.75V10.667H2.25ZM2.25%2018C2.25%2020.0712%203.92879%2021.75%206%2021.75V20.25C4.75721%2020.25%203.75%2019.2428%203.75%2018H2.25ZM6%2021.75H18V20.25H6V21.75ZM18%2021.75C20.0712%2021.75%2021.75%2020.0712%2021.75%2018H20.25C20.25%2019.2428%2019.2428%2020.25%2018%2020.25V21.75ZM21.75%2018V10.667H20.25V18H21.75ZM21.75%2010.667C21.75%209.50986%2021.2164%208.41711%2020.3022%207.70677L19.3818%208.89123C19.9296%209.31688%2020.25%209.97213%2020.25%2010.667H21.75ZM9%2017.75H15V16.25H9V17.75Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='iban'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.64941%2011.3333L3.98275%2010L5.31608%2011.3333'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21.3151%2012.6667L19.9818%2014L18.6484%2012.6667'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.47363%207.36889C6.9243%205.33422%209.29319%204%2011.9821%204C16.3999%204%2019.9821%207.58223%2019.9821%2012C19.9821%2012.608%2019.9083%2013.1982%2019.7803%2013.7671'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.4905%207.36891C16.4443%208.05691%2014.2603%208.44447%2011.9821%208.44447C9.70386%208.44447%207.51986%208.05691%205.47363%207.36891'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.487%2016.6276C17.0372%2018.6622%2014.6683%2019.9964%2011.9785%2019.9964C7.56074%2019.9964%203.97852%2016.4142%203.97852%2011.9964C3.97852%2011.3884%204.05229%2010.7982%204.18029%2010.2293'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.47168%2016.6276C7.5179%2015.9396%209.70191%2015.552%2011.9801%2015.552C14.2584%2015.552%2016.4424%2015.9396%2018.4886%2016.6276'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.3388%2017.6569C15.6406%2014.5327%2015.6406%209.46735%2014.3388%206.34315C13.037%203.21895%2010.9265%203.21895%209.62475%206.34315C8.323%209.46733%208.323%2014.5327%209.62475%2017.6569C10.9265%2020.781%2013.037%2020.781%2014.3388%2017.6569Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='iban_blue'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%238756FF'/%3e%3cpath%20d='M4%2011.2857L5.14286%2010.1429L6.28571%2011.2857'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.9996%2012.4286L18.8567%2013.5714L17.7139%2012.4286'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.4209%207.88762C7.66433%206.14362%209.6948%205%2011.9996%205C15.7862%205%2018.8567%208.07048%2018.8567%2011.8571C18.8567%2012.3783%2018.7935%2012.8842%2018.6838%2013.3718'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5782%207.88763C15.8243%208.47735%2013.9523%208.80954%2011.9996%208.80954C10.0468%208.80954%208.1748%208.47735%206.4209%207.88763'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5755%2015.8236C16.3328%2017.5676%2014.3023%2018.7112%2011.9968%2018.7112C8.21012%2018.7112%205.13965%2015.6407%205.13965%2011.8541C5.13965%2011.3329%205.20289%2010.827%205.3126%2010.3394'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.41895%2015.8236C8.17285%2015.2339%2010.0448%2014.9017%2011.9976%2014.9017C13.9504%2014.9017%2015.8224%2015.2339%2017.5763%2015.8236'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.02%2016.7059C15.1358%2014.028%2015.1358%209.68629%2014.02%207.00841C12.9042%204.33053%2011.0952%204.33053%209.97942%207.00841C8.86363%209.68628%208.86363%2014.028%209.97942%2016.7059C11.0952%2019.3837%2012.9042%2019.3837%2014.02%2016.7059Z'%20stroke='white'%20fill='none'%20stroke-width='1'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='id_square'%20viewBox='0%200%2018%2018'%3e%3cpath%20d='M5.66667%2011.5V6.5M11.0854%2011.5H8.58333V6.5H11.0854C11.9715%206.5%2012.75%207.28059%2012.75%208.16667V9.83333C12.75%2010.7194%2011.9715%2011.5%2011.0854%2011.5ZM14.095%2016.5H3.90577C2.57698%2016.5%201.5%2015.4231%201.5%2014.0944V3.90564C1.5%202.57693%202.57698%201.5%203.90577%201.5H14.0942C15.423%201.5%2016.5%202.57693%2016.5%203.90564V14.0936C16.5008%2015.4231%2015.4238%2016.5%2014.095%2016.5Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='id_thin'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M10.6667%2020V12M19.3366%2020H15.3333V12H19.3366C20.7545%2012%2022%2013.2489%2022%2014.6667V17.3333C22%2018.7511%2020.7545%2020%2019.3366%2020ZM24.152%2028H7.84924C5.72318%2028%204%2026.2769%204%2024.151V7.84903C4%205.72308%205.72318%204%207.84924%204H24.1508C26.2768%204%2028%205.72308%2028%207.84903V24.1497C28.0013%2026.2769%2026.2781%2028%2024.152%2028Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='image'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M21%2019V5c0-1.1-.9-2-2-2H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2zM8.5%2013.5l2.5%203.01L14.5%2012l4.5%206H5l3.5-4.5z'/%3e%3c/symbol%3e%3csymbol%20id='infinity'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%209.05534C9.094%207.81734%207.652%206.99934%206%206.99934C3.239%206.99934%201%209.23834%201%2011.9993C1%2014.7603%203.239%2016.9993%206%2016.9993C7.861%2016.9993%209.586%2016.0223%2010.543%2014.4273L13.457%209.57134C14.414%207.97634%2016.139%206.99934%2018%206.99934C20.761%206.99934%2023%209.23834%2023%2011.9993C23%2014.7603%2020.761%2016.9993%2018%2016.9993C16.348%2016.9993%2014.906%2016.1813%2014%2014.9433M9.93%206.02734L10.451%208.98134L7.497%209.50234'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='info'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2017V11M12%207.5V7M19.0711%204.92894C22.9763%208.83419%2022.9763%2015.1658%2019.0711%2019.0711C15.1658%2022.9763%208.83416%2022.9763%204.92894%2019.0711C1.02369%2015.1658%201.02369%208.83416%204.92894%204.92894C8.83418%201.02369%2015.1658%201.02369%2019.0711%204.92894Z'%20stroke='currentColor'%20fill='none'%20stroke-miterlimit='10'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='info_rounded_square'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2021H8C5.239%2021%203%2018.761%203%2016V8C3%205.239%205.239%203%208%203H16C18.761%203%2021%205.239%2021%208V16C21%2018.761%2018.761%2021%2016%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.25%2016.184V11.434H11.25'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.9602%207.99H11.9502C11.8102%207.99%2011.7002%208.1%2011.7002%208.24C11.7002%208.37%2011.8102%208.49%2011.9502%208.48C12.0802%208.47%2012.2002%208.36%2012.1902%208.22C12.1902%208.08%2012.0702%207.97%2011.9402%207.97'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='info_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.0711%2019.0711C22.9763%2015.1658%2022.9763%208.83419%2019.0711%204.92894C15.1658%201.02369%208.83418%201.02369%204.92894%204.92894C1.02369%208.83416%201.02369%2015.1658%204.92894%2019.0711C8.83416%2022.9763%2015.1658%2022.9763%2019.0711%2019.0711ZM12.75%207C12.75%206.58579%2012.4142%206.25%2012%206.25C11.5858%206.25%2011.25%206.58579%2011.25%207V7.5C11.25%207.91421%2011.5858%208.25%2012%208.25C12.4142%208.25%2012.75%207.91421%2012.75%207.5V7ZM12.75%2011C12.75%2010.5858%2012.4142%2010.25%2012%2010.25C11.5858%2010.25%2011.25%2010.5858%2011.25%2011V17C11.25%2017.4142%2011.5858%2017.75%2012%2017.75C12.4142%2017.75%2012.75%2017.4142%2012.75%2017V11Z'/%3e%3c/symbol%3e%3csymbol%20id='instagram'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cg%3e%3cpath%20d='M15.8,2H8.2C4.8,2,2,4.8,2,8.2v7.5C2,19.2,4.8,22,8.2,22h7.5c3.5,0,6.3-2.8,6.3-6.3V8.2C22,4.8,19.2,2,15.8,2z%20M20.1,15.8c0,2.4-2,4.4-4.4,4.4H8.2c-2.4,0-4.4-2-4.4-4.4V8.2c0-2.4,2-4.4,4.4-4.4h7.5c2.4,0,4.4,2,4.4,4.4V15.8z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3cpath%20d='M12,7c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S14.8,7,12,7z%20M12,15.1c-1.7,0-3.1-1.4-3.1-3.1s1.4-3.1,3.1-3.1%20s3.1,1.4,3.1,3.1S13.7,15.1,12,15.1z'/%3e%3c/g%3e%3c/g%3e%3cg%3e%3cg%3e%3ccircle%20cx='17.4'%20cy='6.6'%20r='0.7'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='instagram_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='url(%23instagram_colored_paint0_radial)'/%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='url(%23instagram_colored_paint1_radial)'/%3e%3cpath%20d='M12.0007%205C10.0996%205%209.86097%205.00831%209.11429%205.04229C8.36908%205.07642%207.8604%205.1944%207.41532%205.3675C6.95492%205.54629%206.56437%205.78546%206.17528%206.17469C5.7859%206.56377%205.54673%206.95431%205.36736%207.41456C5.19381%207.85979%205.07569%208.3686%205.04215%209.11352C5.00875%209.86019%205%2010.0989%205%2012C5%2013.9011%205.00846%2014.1389%205.04229%2014.8856C5.07656%2015.6308%205.19454%2016.1395%205.3675%2016.5846C5.54644%2017.045%205.78561%2017.4355%206.17485%2017.8246C6.56379%2018.214%206.95433%2018.4537%207.41444%2018.6325C7.85982%2018.8056%208.36864%2018.9236%209.11371%2018.9577C9.86038%2018.9917%2010.0988%2019%2011.9998%2019C13.901%2019%2014.1389%2018.9917%2014.8856%2018.9577C15.6308%2018.9236%2016.14%2018.8056%2016.5854%2018.6325C17.0457%2018.4537%2017.4356%2018.214%2017.8246%2017.8246C18.214%2017.4355%2018.4531%2017.045%2018.6325%2016.5847C18.8046%2016.1395%2018.9227%2015.6307%2018.9577%2014.8857C18.9912%2014.1391%2019%2013.9011%2019%2012C19%2010.0989%2018.9912%209.86033%2018.9577%209.11367C18.9227%208.36846%2018.8046%207.85979%2018.6325%207.41471C18.4531%206.95431%2018.214%206.56377%2017.8246%206.17469C17.4352%205.78531%2017.0458%205.54615%2016.585%205.3675C16.1387%205.1944%2015.6298%205.07642%2014.8845%205.04229C14.1379%205.00831%2013.9002%205%2011.9985%205H12.0007ZM11.3727%206.26146C11.5591%206.26117%2011.767%206.26146%2012.0007%206.26146C13.8697%206.26146%2014.0912%206.26817%2014.8293%206.30171C15.5118%206.33292%2015.8822%206.44696%2016.1289%206.54277C16.4556%206.66965%2016.6885%206.82131%2016.9334%207.06631C17.1784%207.31131%2017.33%207.54465%2017.4572%207.87131C17.553%208.11777%2017.6672%208.48819%2017.6983%209.17069C17.7318%209.9086%2017.7391%2010.1303%2017.7391%2011.9984C17.7391%2013.8665%2017.7318%2014.0882%2017.6983%2014.8261C17.6671%2015.5086%2017.553%2015.879%2017.4572%2016.1255C17.3303%2016.4521%2017.1784%2016.6847%2016.9334%2016.9296C16.6884%2017.1746%2016.4558%2017.3263%2016.1289%2017.4531C15.8825%2017.5494%2015.5118%2017.6631%2014.8293%2017.6944C14.0913%2017.7279%2013.8697%2017.7352%2012.0007%2017.7352C10.1315%2017.7352%209.90997%2017.7279%209.17204%2017.6944C8.48954%2017.6629%208.11912%2017.5488%207.87222%2017.453C7.54555%2017.3261%207.31221%2017.1745%207.06721%2016.9295C6.82221%2016.6845%206.67054%2016.4517%206.54337%2016.1249C6.44756%2015.8784%206.33337%2015.508%206.30231%2014.8255C6.26876%2014.0876%206.26205%2013.8659%206.26205%2011.9966C6.26205%2010.1274%206.26876%209.90685%206.30231%209.16894C6.33351%208.48644%206.44756%208.11602%206.54337%207.86927C6.67025%207.5426%206.82221%207.30927%207.06721%207.06427C7.31221%206.81927%207.54555%206.6676%207.87222%206.54044C8.11897%206.44419%208.48954%206.33044%209.17204%206.29908C9.8178%206.26992%2010.0681%206.26117%2011.3727%206.25971V6.26146ZM15.7372%207.42375C15.2735%207.42375%2014.8972%207.79956%2014.8972%208.26346C14.8972%208.72721%2015.2735%209.10346%2015.7372%209.10346C16.201%209.10346%2016.5772%208.72721%2016.5772%208.26346C16.5772%207.79971%2016.201%207.42346%2015.7372%207.42346V7.42375ZM12.0007%208.40521C10.0154%208.40521%208.40583%2010.0148%208.40583%2012C8.40583%2013.9852%2010.0154%2015.5941%2012.0007%2015.5941C13.9859%2015.5941%2015.5949%2013.9852%2015.5949%2012C15.5949%2010.0148%2013.9858%208.40521%2012.0005%208.40521H12.0007ZM12.0007%209.66667C13.2893%209.66667%2014.334%2010.7113%2014.334%2012C14.334%2013.2886%2013.2893%2014.3333%2012.0007%2014.3333C10.7119%2014.3333%209.6673%2013.2886%209.6673%2012C9.6673%2010.7113%2010.7119%209.66667%2012.0007%209.66667Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='keyboard'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%205H4c-1.1%200-1.99.9-1.99%202L2%2017c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V7c0-1.1-.9-2-2-2zm-9%203h2v2h-2V8zm0%203h2v2h-2v-2zM8%208h2v2H8V8zm0%203h2v2H8v-2zm-1%202H5v-2h2v2zm0-3H5V8h2v2zm9%207H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3%203h-2v-2h2v2zm0-3h-2V8h2v2z'/%3e%3cpath%20d='M0%200h24v24H0zm0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='keyboard_arrow_left'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.41%2016.59L10.83%2012l4.58-4.59L14%206l-6%206%206%206%201.41-1.41z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3c/symbol%3e%3csymbol%20id='keyboard_arrow_right'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8.59%2016.59L13.17%2012%208.59%207.41%2010%206l6%206-6%206-1.41-1.41z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3c/symbol%3e%3csymbol%20id='keyboard_arrow_right_thin'%20viewBox='0%200%2040%2040'%3e%3cpath%20d='M16.6665%2026.6654L23.3332%2019.9987L16.6665%2013.332'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='kraken'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0_10709_44626)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%2024C18.6274%2024%2024%2018.6274%2024%2012C24%205.37258%2018.6274%200%2012%200C5.37258%200%200%205.37258%200%2012C0%2018.6274%205.37258%2024%2012%2024ZM15.5402%205.81061C14.2931%205.20277%2012.8822%204.92815%2011.4974%205.01603C9.87059%205.11123%208.28103%205.7154%207.01533%206.71869C6.17402%207.37779%205.47044%208.20165%204.96044%209.12805C4.33504%2010.2632%204.00372%2011.5484%204%2012.8373V16.2463C4%2016.5978%204.17496%2016.9383%204.46905%2017.136C4.87482%2017.4436%205.50022%2017.4253%205.88738%2017.0921C6.14424%2016.8834%206.29686%2016.5575%206.29314%2016.2316V12.8666C6.29314%2012.6725%206.34526%2012.4748%206.44577%2012.3027C6.67657%2011.8926%207.1903%2011.6619%207.65563%2011.7608C8.16563%2011.8523%208.57139%2012.321%208.57512%2012.8336C8.5776%2013.5245%208.57677%2014.2153%208.57594%2014.9061C8.57553%2015.2515%208.57512%2015.5969%208.57512%2015.9424C8.57512%2015.9767%208.57469%2016.0112%208.57426%2016.0457C8.57187%2016.2398%208.56945%2016.4364%208.64212%2016.6198C8.79475%2017.0592%209.25636%2017.3814%209.73286%2017.3557C10.1982%2017.3667%2010.6375%2017.0518%2010.7901%2016.6234C10.8666%2016.4352%2010.864%2016.2332%2010.8614%2016.032C10.8607%2015.9788%2010.86%2015.9256%2010.8608%2015.8728V12.8702C10.8608%2012.5663%2010.9911%2012.2661%2011.2145%2012.0574C11.4639%2011.8194%2011.825%2011.7058%2012.1675%2011.7571C12.6961%2011.823%2013.1316%2012.2954%2013.1428%2012.819C13.147%2013.407%2013.1464%2013.9961%2013.1458%2014.5852C13.1454%2015.0269%2013.1449%2015.4685%2013.1465%2015.9094C13.1464%2015.921%2013.1462%2015.9326%2013.1461%2015.9443C13.1422%2016.2345%2013.1381%2016.5422%2013.2991%2016.7992C13.5448%2017.2422%2014.1069%2017.4546%2014.5946%2017.3228C14.9669%2017.2239%2015.2759%2016.9273%2015.3838%2016.5612C15.4353%2016.3999%2015.4339%2016.2304%2015.4326%2016.0621C15.4324%2016.0356%2015.4322%2016.0091%2015.4322%2015.9826C15.4322%2015.6374%2015.4318%2015.2921%2015.4314%2014.9467C15.4306%2014.2554%2015.4297%2013.5636%2015.4322%2012.8702C15.4359%2012.4235%2015.7449%2011.9988%2016.173%2011.8486C16.6793%2011.6473%2017.3047%2011.8706%2017.5653%2012.343C17.7253%2012.5993%2017.7216%2012.9105%2017.7142%2013.1998C17.7142%2013.5418%2017.7138%2013.8834%2017.7134%2014.2248C17.7125%2014.9067%2017.7117%2015.5874%2017.7142%2016.2682C17.7179%2016.7772%2018.1162%2017.2496%2018.6262%2017.3411C18.8645%2017.3777%2019.1176%2017.3667%2019.3372%2017.2642C19.6537%2017.1251%2019.8956%2016.8321%2019.9701%2016.4989C20.0006%2016.3791%2020.0002%2016.2562%2019.9999%2016.1331C19.9999%2016.1208%2019.9999%2016.1085%2019.9999%2016.0961V12.8007C19.9999%2011.9146%2019.8361%2011.0284%2019.5308%2010.1936C18.8384%208.30052%2017.3754%206.69672%2015.5402%205.81061Z'%20fill='%235248D1'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='language'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%208C8.89843%209.33333%2015.1026%209.33333%2020%208M20%2016C15.1016%2014.6667%208.89743%2014.6667%204%2016M12%203C16.982%203%2021%207.018%2021%2012C21%2016.982%2016.982%2021%2012%2021C7.018%2021%203%2016.982%203%2012C3%207.018%207.018%203%2012%203ZM10.1685%204.05999C7.27848%208.88499%207.27848%2015.116%2010.1685%2019.941C11.0145%2021.354%2012.9875%2021.354%2013.8335%2019.941C16.7235%2015.116%2016.7235%208.88499%2013.8335%204.05999C12.9865%202.64699%2011.0145%202.64699%2010.1685%204.05999Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='layers'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.436%2014.484L21%2016.976L11.987%2021L3%2016.976L8.564%2014.491M15.436%209.509L21%2012L11.987%2016.024L3%2012L8.564%209.516M3%207.024L11.987%2011.049L21%207.024L12.013%203L3%207.024Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lightning'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.8478%2011.306C17.9432%2011.151%2017.9955%2010.9734%2017.9993%2010.7915C18.0031%2010.6096%2017.9583%2010.4299%2017.8696%2010.2711C17.7808%2010.1122%2017.6513%209.97989%2017.4944%209.88777C17.3375%209.79566%2017.1588%209.74706%2016.9768%209.747H13.4998V0.747002L6.15183%2012.689C6.05642%2012.8439%206.00408%2013.0215%206.00023%2013.2034C5.99638%2013.3853%206.04116%2013.5649%206.12994%2013.7237C6.21872%2013.8825%206.34828%2014.0147%206.50525%2014.1067C6.66222%2014.1987%206.8409%2014.2472%207.02283%2014.247H10.4998V23.247L17.8478%2011.306Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='lightning_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.6874%206.24141C11.7494%206.14178%2011.8356%206.0677%2011.9341%206.02934C12.0326%205.99097%2012.1385%205.99022%2012.2374%206.02718C12.3362%206.06413%2012.4231%206.13699%2012.4861%206.23572C12.5491%206.33445%2012.5851%206.4542%2012.5891%206.57852V10.4926H15.5066C15.5964%2010.4943%2015.6842%2010.5249%2015.7607%2010.5812C15.8373%2010.6376%2015.8999%2010.7177%2015.9419%2010.813C15.9838%2010.9084%2016.0037%2011.0156%2015.9994%2011.1234C15.9951%2011.2312%2015.9668%2011.3356%2015.9174%2011.4257L12.3106%2017.7586C12.2486%2017.8582%2012.1624%2017.9323%2012.0639%2017.9707C11.9654%2018.009%2011.8595%2018.0098%2011.7606%2017.9728C11.6618%2017.9359%2011.5749%2017.863%2011.5119%2017.7643C11.4489%2017.6656%2011.4129%2017.5458%2011.4089%2017.4215V13.5074H8.49339C8.4036%2013.5057%208.31583%2013.4751%208.23926%2013.4188C8.16269%2013.3624%208.10014%2013.2823%208.05815%2013.187C8.01616%2013.0916%207.99627%2012.9844%208.00058%2012.8766C8.00488%2012.7688%208.03321%2012.6644%208.08261%2012.5743L11.6874%206.24141Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lightning_circle_solid'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='currentColor'/%3e%3cpath%20d='M26.4981%2019.2821C26.6041%2019.1214%2026.6622%2018.9372%2026.6664%2018.7485C26.6706%2018.5599%2026.6209%2018.3736%2026.5223%2018.2088C26.4237%2018.0441%2026.2797%2017.9069%2026.1054%2017.8114C25.931%2017.7158%2025.7325%2017.6654%2025.5303%2017.6654H21.6668V8.33203L13.502%2020.7163C13.396%2020.877%2013.3378%2021.0611%2013.3336%2021.2498C13.3293%2021.4384%2013.379%2021.6247%2013.4777%2021.7894C13.5763%2021.954%2013.7203%2022.0912%2013.8947%2022.1866C14.0691%2022.282%2014.2677%2022.3322%2014.4698%2022.332H18.3333V31.6654L26.4981%2019.2821Z'%20fill='none'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lightning_outlined'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.8736%2011.9165C16.9531%2011.7856%2016.9966%2011.6356%2016.9998%2011.482C17.003%2011.3284%2016.9657%2011.1767%2016.8917%2011.0425C16.8178%2010.9084%2016.7098%2010.7967%2016.5791%2010.7189C16.4483%2010.6411%2016.2994%2010.6001%2016.1477%2010.6H13.2501V3L7.12653%2013.0844C7.04701%2013.2152%207.0034%2013.3651%207.00019%2013.5187C6.99698%2013.6723%207.0343%2013.824%207.10829%2013.9581C7.18227%2014.0922%207.29025%2014.2039%207.42106%2014.2816C7.55187%2014.3592%207.70078%2014.4001%207.8524%2014.4H10.75V22L16.8736%2011.9165Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='like'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2010.572L11.649%205.821C12.328%204.936%2013.654%204.914%2014.363%205.775C14.628%206.096%2014.772%206.5%2014.772%206.916V10.187H17.868C18.469%2010.187%2019.03%2010.487%2019.364%2010.986L19.693%2011.477C19.988%2011.918%2020.074%2012.467%2019.927%2012.976L18.568%2017.698C18.346%2018.469%2017.641%2019%2016.839%2019H10.55C10.05%2019%209.572%2018.792%209.232%2018.426L8%2017.1M6.944%2019H5.056C4.473%2019%204%2018.527%204%2017.944V10.556C4%209.973%204.473%209.5%205.056%209.5H6.944C7.527%209.5%208%209.973%208%2010.556V17.944C8%2018.527%207.527%2019%206.944%2019Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.0001%2013L10.9531%2013.953C11.3246%2014.3245%2011.7655%2014.6191%2012.2509%2014.8201C12.7362%2015.0212%2013.2563%2015.1246%2013.7816%2015.1246C14.3069%2015.1246%2014.8271%2015.0212%2015.3124%2014.8201C15.7977%2014.6191%2016.2387%2014.3245%2016.6101%2013.953L19.6411%2010.922C20.5114%2010.0517%2021.0003%208.87128%2021.0003%207.6405C21.0003%206.40972%2020.5114%205.22934%2019.6411%204.359C18.7708%203.48875%2017.5904%202.99986%2016.3596%202.99986C15.1289%202.99986%2013.9485%203.48875%2013.0781%204.359L12.1911%205.247M14.0001%2010L13.0471%209.047C12.6757%208.67554%2012.2347%208.38089%2011.7494%208.17985C11.2641%207.97882%2010.7439%207.87535%2010.2186%207.87535C9.69333%207.87535%209.17317%207.97882%208.68785%208.17985C8.20254%208.38089%207.76157%208.67554%207.39013%209.047L4.35914%2012.078C3.48889%2012.9483%203%2014.1287%203%2015.3595C3%2016.5903%203.48889%2017.7707%204.35914%2018.641C5.22948%2019.5112%206.40985%2020.0001%207.64064%2020.0001C8.87142%2020.0001%2010.0518%2019.5112%2010.9221%2018.641L11.8091%2017.753'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_broken'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.9198%2016.646L8.94875%2018.617C7.58775%2019.978%205.38175%2019.978%204.02075%2018.617C2.65975%2017.256%202.65975%2015.05%204.02075%2013.689L5.99175%2011.718'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.7275%208.762H17.5155C19.4395%208.762%2021.0005%2010.322%2021.0005%2012.247C21.0005%2014.171%2019.4405%2015.732%2017.5155%2015.732H14.7275'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.41016%204.36L8.91016%205.84'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4402%204.49L11.6602%206.07'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.38965%206.96L6.85965%207.69'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%238756FF'/%3e%3cpath%20d='M14.6294%2012L16.8168%2014.1876C17.0611%2014.4318%2017.0611%2014.8272%2016.8168%2015.0709L15.071%2016.8168C14.8267%2017.0611%2014.4314%2017.0611%2014.1878%2016.8168L12.0003%2014.6292L10.6911%2015.9385C10.3625%2016.2671%209.80346%2016.1347%209.65667%2015.6943L7.03322%207.82281C6.87019%207.33494%207.33492%206.87018%207.82338%207.03322L15.6944%209.65684C16.1347%209.80364%2016.2672%2010.3627%2015.9386%2010.6913L14.6294%2012'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_external'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2012L21%203M21%203V10M21%203H14M9%203H5C3.895%203%203%203.895%203%205V19C3%2020.105%203.895%2021%205%2021H19C20.105%2021%2021%2020.105%2021%2019V15'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='link_external_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%203H21M21%203V8M21%203L14%2010M19%2014V19C19%2020.105%2018.105%2021%2017%2021H5C3.895%2021%203%2020.105%203%2019V7C3%205.895%203.895%205%205%205H10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='linkedin'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M20.2,2H3.8C2.8,2,2,2.8,2,3.8v16.3c0,1,0.8,1.8,1.8,1.8h16.3c1,0,1.8-0.8,1.8-1.8V3.8C22,2.8,21.2,2,20.2,2z%20M8.2,19.2%20c0,0.3-0.2,0.5-0.5,0.5H5.4c-0.3,0-0.5-0.2-0.5-0.5V9.9c0-0.3,0.2-0.5,0.5-0.5h2.2c0.3,0,0.5,0.2,0.5,0.5C8.2,9.9,8.2,19.2,8.2,19.2%20z%20M6.6,8.5c-1.2,0-2.1-0.9-2.1-2.1s0.9-2.1,2.1-2.1s2.1,0.9,2.1,2.1S7.7,8.5,6.6,8.5z%20M19.9,19.3c0,0.3-0.2,0.5-0.5,0.5H17%20c-0.3,0-0.5-0.2-0.5-0.5v-4.4c0-0.7,0.2-2.9-1.7-2.9c-1.5,0-1.8,1.5-1.8,2.2v5.1c0,0.3-0.2,0.5-0.5,0.5h-2.3c-0.3,0-0.5-0.2-0.5-0.5%20V9.8c0-0.3,0.2-0.5,0.5-0.5h2.3c0.3,0,0.5,0.2,0.5,0.5v0.8c0.5-0.8,1.4-1.5,3.1-1.5c3.8,0,3.8,3.6,3.8,5.6L19.9,19.3L19.9,19.3z'/%3e%3c/symbol%3e%3csymbol%20id='linkedin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%230077B5'/%3e%3cpath%20d='M18.792%2017.4955C17.9978%2017.4765%2017.2225%2017.4765%2016.4283%2017.4955C16.2581%2017.4955%2016.2202%2017.4574%2016.2202%2017.2863C16.2202%2015.879%2016.2202%2014.4526%2016.2202%2013.0453C16.2202%2012.722%2016.2013%2012.3987%2016.1068%2012.0944C15.8231%2011.1055%2014.6885%2010.7441%2013.8754%2011.4098C13.4405%2011.7521%2013.2703%2012.2275%2013.2703%2012.7981C13.2703%2014.1293%2013.2703%2015.4606%2013.2703%2016.7918C13.2703%2016.963%2013.2514%2017.1341%2013.2703%2017.3243C13.2892%2017.4765%2013.2136%2017.5145%2013.0812%2017.4955C12.2681%2017.4955%2011.4739%2017.4955%2010.6607%2017.4955C10.5095%2017.4955%2010.4716%2017.4574%2010.4716%2017.3053C10.4905%2016.1072%2010.4906%2014.9091%2010.4906%2013.6919C10.4906%2012.2085%2010.4905%2010.7251%2010.4716%209.26075C10.4716%209.08959%2010.5095%209.05156%2010.6607%209.05156C11.4739%209.05156%2012.2681%209.05156%2013.0812%209.05156C13.2325%209.05156%2013.2703%209.08959%2013.2703%209.24174C13.2703%209.54602%2013.2703%209.85031%2013.2703%2010.2116C13.327%2010.1546%2013.3459%2010.1356%2013.3649%2010.1166C14.1023%209.03254%2015.1424%208.72825%2016.3715%208.91843C17.7898%209.14665%2018.6974%2010.1356%2018.9244%2011.657C18.9811%2012.0183%2019%2012.3797%2019%2012.741C19%2014.2624%2019%2015.7649%2019%2017.2863C19%2017.4384%2018.9622%2017.4955%2018.792%2017.4955Z'%20fill='white'/%3e%3cpath%20d='M8.95895%2013.2735C8.95895%2014.6048%208.95895%2015.936%208.95895%2017.2673C8.95895%2017.4384%208.92113%2017.4955%208.75094%2017.4955C7.95673%2017.4765%207.16251%2017.4955%206.3683%2017.4955C6.21702%2017.4955%206.1792%2017.4574%206.1792%2017.3053C6.1792%2014.6238%206.1792%2011.9233%206.1792%209.24173C6.1792%209.10861%206.21702%209.05156%206.3683%209.05156C7.18142%209.05156%207.99455%209.05156%208.80767%209.05156C8.97786%209.05156%208.99677%209.10861%208.99677%209.26075C8.95895%2010.592%208.95895%2011.9233%208.95895%2013.2735Z'%20fill='white'/%3e%3cpath%20d='M9.09135%206.84548C8.90225%207.6062%208.12694%208.04361%207.23818%207.89147C6.29268%207.73932%205.7632%206.80745%206.10358%205.89459C6.3305%205.32406%206.87889%204.98174%207.57855%205.00075C8.63751%204.98174%209.33717%205.83754%209.09135%206.84548Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='list'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2013h2v-2H3v2zm0%204h2v-2H3v2zm0-8h2V7H3v2zm4%204h14v-2H7v2zm0%204h14v-2H7v2zM7%207v2h14V7H7z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='litecoin_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%233D5E98'/%3e%3cpath%20d='M11.9226%2014.2308L12.5643%2012.0297L14.0837%2011.524L14.4616%2010.2304L14.4487%2010.1983L12.9531%2010.696L14.0307%207H10.9746L9.5654%2011.8234L8.38878%2012.2149L8%2013.5486L9.17571%2013.1574L8.34515%2016H16.4786L17%2014.2308H11.9226Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='live_help'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M19%202H5c-1.11%200-2%20.9-2%202v14c0%201.1.89%202%202%202h4l3%203%203-3h4c1.1%200%202-.9%202-2V4c0-1.1-.9-2-2-2zm-6%2016h-2v-2h2v2zm2.07-7.75l-.9.92C13.45%2011.9%2013%2012.5%2013%2014h-2v-.5c0-1.1.45-2.1%201.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41%200-1.1-.9-2-2-2s-2%20.9-2%202H8c0-2.21%201.79-4%204-4s4%201.79%204%204c0%20.88-.36%201.68-.93%202.25z'/%3e%3c/symbol%3e%3csymbol%20id='loader'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2012C3%2016.9705%207.0295%2021%2012%2021C16.9705%2021%2021%2016.9705%2021%2012C21%207.0295%2016.9705%203%2012%203C9.18725%203%206.676%204.29025%205.02575%206.31125'%20stroke='currentColor'%20fill='none'%20stroke-width='1'%20stroke-miterlimit='10'%20stroke-linecap='round'/%3e%3c/symbol%3e%3csymbol%20id='location_city'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2011V5l-3-3-3%203v2H3v14h18V11h-6zm-8%208H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6%208h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6%2012h-2v-2h2v2zm0-4h-2v-2h2v2z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='location_on'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5%2010C5%2015.25%2012%2021%2012%2021C12%2021%2019%2015.25%2019%2010C19%206.134%2015.866%203%2012%203C8.134%203%205%206.134%205%2010ZM9%2010C9%2011.657%2010.343%2013%2012%2013C13.657%2013%2015%2011.657%2015%2010C15%208.343%2013.657%207%2012%207C10.343%207%209%208.343%209%2010Z'/%3e%3c/symbol%3e%3csymbol%20id='lock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2010V7C8%204.791%209.791%203%2012%203C14.209%203%2016%204.791%2016%207V10M17%2021H7C5.895%2021%205%2020.105%205%2019V12C5%2010.895%205.895%2010%207%2010H17C18.105%2010%2019%2010.895%2019%2012V19C19%2020.105%2018.105%2021%2017%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='lock_old'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M18%208h-1V6c0-2.76-2.24-5-5-5S7%203.24%207%206v2H6c-1.1%200-2%20.9-2%202v10c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2V10c0-1.1-.9-2-2-2zm-6%209c-1.1%200-2-.9-2-2s.9-2%202-2%202%20.9%202%202-.9%202-2%202zm3.1-9H8.9V6c0-1.71%201.39-3.1%203.1-3.1%201.71%200%203.1%201.39%203.1%203.1v2z'/%3e%3c/symbol%3e%3csymbol%20id='logout'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2015V18C6%2018.7956%206.31607%2019.5587%206.87868%2020.1213C7.44129%2020.6839%208.20435%2021%209%2021H18C18.7956%2021%2019.5587%2020.6839%2020.1213%2020.1213C20.6839%2019.5587%2021%2018.7956%2021%2018V6C21%205.20435%2020.6839%204.44129%2020.1213%203.87868C19.5587%203.31607%2018.7956%203%2018%203H9C8.20435%203%207.44129%203.31607%206.87868%203.87868C6.31607%204.44129%206%205.20435%206%206V9M12%2015L15%2012M15%2012L12%209M15%2012H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='magic_blink'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%203C6%204.06087%205.57857%205.07828%204.82843%205.82843C4.07828%206.57857%203.06087%207%202%207C3.06087%207%204.07828%207.42143%204.82843%208.17157C5.57857%208.92172%206%209.93913%206%2011M6%203C6%204.06087%206.42143%205.07828%207.17157%205.82843C7.92172%206.57857%208.93913%207%2010%207C8.93913%207%207.92172%207.42143%207.17157%208.17157C6.42143%208.92172%206%209.93913%206%2011M6%203V2M6%2011V12M17%2015C17%2013.6739%2016.4732%2012.4021%2015.5355%2011.4645C14.5979%2010.5268%2013.3261%2010%2012%2010C13.3261%2010%2014.5979%209.47322%2015.5355%208.53553C16.4732%207.59785%2017%206.32608%2017%205M17%2015C17%2013.6739%2017.5268%2012.4021%2018.4645%2011.4645C19.4021%2010.5268%2020.6739%2010%2022%2010C20.6739%2010%2019.4021%209.47322%2018.4645%208.53553C17.5268%207.59785%2017%206.32608%2017%205M17%2015V16M17%205V4M10%2021V22M10%2014V13M10%2013.5C10%2014.5609%209.57857%2015.5783%208.82843%2016.3284C8.07828%2017.0786%207.06087%2017.5%206%2017.5C7.06087%2017.5%208.07828%2017.9214%208.82843%2018.6716C9.57857%2019.4217%2010%2020.4391%2010%2021.5C10%2020.4391%2010.4214%2019.4217%2011.1716%2018.6716C11.9217%2017.9214%2012.9391%2017.5%2014%2017.5C12.9391%2017.5%2011.9217%2017.0786%2011.1716%2016.3284C10.4214%2015.5783%2010%2014.5609%2010%2013.5Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='mail_outline'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%2014H4V8l8%205%208-5v10zm-8-7L4%206h16l-8%205z'/%3e%3c/symbol%3e%3csymbol%20id='mc_assist'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202ZM16.9%2013.7C16.9%2014.8%2016%2015.6%2015%2015.6H11.3L8.8%2018.1C8.7%2018.2%208.7%2018.2%208.6%2018.2C8.4%2018.2%208.3%2018.1%208.3%2017.9V15.6C7.3%2015.5%206.5%2014.7%206.5%2013.7V9.5C6.5%208.4%207.4%207.6%208.4%207.6H15.2C16.1%207.6%2016.9%208.4%2016.9%209.3V13.7Z'%20fill='%23703CEE'/%3e%3cpath%20d='M15.0004%208.5H8.40039C7.80039%208.5%207.40039%209%207.40039%209.5V13.6C7.40039%2014.2%207.90039%2014.6%208.40039%2014.6H9.10039V16V16.1C9.20039%2016.2%209.30039%2016.2%209.30039%2016.1L10.8004%2014.6H14.8004C15.4004%2014.6%2015.8004%2014.1%2015.8004%2013.6V9.5C16.0004%209%2015.5004%208.5%2015.0004%208.5ZM11.7004%2013.7C11.5004%2013.7%2011.3004%2013.5%2011.3004%2013.3C11.3004%2013.1%2011.5004%2012.9%2011.7004%2012.9C11.9004%2012.9%2012.1004%2013.1%2012.1004%2013.3C12.1004%2013.5%2011.9004%2013.7%2011.7004%2013.7ZM12.1004%2011.8C12.1004%2011.8%2012.1004%2011.9%2012.1004%2011.8V12.1V12.2C12.1004%2012.4%2011.9004%2012.6%2011.7004%2012.5C11.5004%2012.4%2011.3004%2012.3%2011.4004%2012.1V11.8C11.4004%2011.5%2011.6004%2011.2%2011.9004%2011C12.1004%2010.9%2012.3004%2010.7%2012.3004%2010.5C12.3004%2010.2%2012.1004%2010%2011.8004%2010C11.7004%2010%2011.5004%2010%2011.4004%2010.2C11.3004%2010.3%2011.2004%2010.4%2011.2004%2010.6V10.7C11.2004%2010.9%2011.0004%2011.1%2010.8004%2011C10.6004%2010.9%2010.4004%2010.8%2010.5004%2010.6C10.5004%209.9%2011.1004%209.3%2011.8004%209.4C12.3004%209.4%2012.8004%209.8%2012.9004%2010.3C13.1004%2010.9%2012.8004%2011.6%2012.1004%2011.8Z'%20fill='%23703CEE'/%3e%3c/symbol%3e%3csymbol%20id='mc_dashboard'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.5942%202H10.4058C5.76813%202%202%205.76813%202%2010.4058V20.7163C2%2021.4202%202.5797%2022%203.28363%2022H13.5942C18.2319%2022%2022%2018.2319%2022%2013.5942V10.4058C22%205.76813%2018.2733%202%2013.5942%202Z'%20fill='%23703CEE'/%3e%3cpath%20d='M12%207C12%206.44772%2012.4477%206%2013%206H15.5C16.0523%206%2016.5%206.44772%2016.5%207V17C16.5%2017.5523%2016.0523%2018%2015.5%2018H12V7Z'%20fill='white'/%3e%3cpath%20d='M6%2012C6%2011.4477%206.44772%2011%207%2011H10.5V18H7C6.44772%2018%206%2017.5523%206%2017V12Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_id'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202ZM9.2%206.3C9.8%205.7%2010.6%205.4%2011.5%205.4C12.4%205.4%2013.1%205.7%2013.8%206.3C14.4%206.9%2014.7%207.7%2014.7%208.6C14.7%209.5%2014.4%2010.2%2013.8%2010.9C13.2%2011.5%2012.4%2011.8%2011.5%2011.8C10.6%2011.8%209.9%2011.5%209.2%2010.9C8.6%2010.3%208.3%209.5%208.3%208.6C8.3%207.7%208.6%206.9%209.2%206.3ZM16.5%2018C16.1%2018.4%2015.5%2018.6%2014.8%2018.6H8.4C7.7%2018.6%207.1%2018.4%206.7%2018C6.3%2017.6%206%2017%206%2016.3C6%2016%206%2015.8%206%2015.5C6%2015.2%206.1%2015%206.1%2014.7C6.2%2014.4%206.2%2014.1%206.3%2013.9C6.4%2013.6%206.5%2013.4%206.6%2013.1C6.7%2012.8%206.9%2012.6%207.1%2012.4C7.3%2012.2%207.6%2012%207.9%2011.9C8.2%2011.8%208.5%2011.7%208.9%2011.7C9%2011.7%209.2%2011.8%209.4%2011.9C9.6%2012%209.7%2012.1%209.9%2012.3C10.1%2012.4%2010.3%2012.5%2010.6%2012.6C10.9%2012.7%2011.2%2012.7%2011.5%2012.7C11.8%2012.7%2012.1%2012.7%2012.4%2012.6C12.7%2012.5%2012.9%2012.4%2013.1%2012.3C13.3%2012.2%2013.5%2012.1%2013.6%2012C13.9%2011.8%2014%2011.8%2014.1%2011.8C14.4%2011.8%2014.8%2011.9%2015.1%2012C15.4%2012.1%2015.6%2012.3%2015.9%2012.5C16.1%2012.7%2016.3%2012.9%2016.4%2013.2C16.5%2013.5%2016.7%2013.7%2016.7%2014C16.8%2014.3%2016.9%2014.5%2016.9%2014.8C17%2015.1%2017%2015.4%2017%2015.6C17%2015.9%2017%2016.1%2017%2016.4C17.1%2017.1%2016.9%2017.6%2016.5%2018Z'%20fill='%23E30040'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay'%20viewBox='0%200%2052%2032'%3e%3cpath%20d='M23.7466%2020.2882C23.2862%2019.1645%2023.0528%2017.9607%2023.0598%2016.7462C23.0569%2015.5641%2023.2766%2014.3922%2023.7074%2013.2916C23.7074%2013.2735%2023.7074%2013.2584%2023.7285%2013.2403C23.7044%2013.1499%2023.6803%2013.0564%2023.6532%2012.969C23.4299%2012.2462%2023.062%2011.5765%2022.5718%2011.0006C22.0744%2010.4335%2021.457%209.98449%2020.7644%209.68624C19.9332%209.34756%2019.0407%209.18538%2018.1436%209.20995C17.7078%209.21061%2017.2741%209.27045%2016.8544%209.3878C16.4418%209.50709%2016.0453%209.67614%2015.6735%209.89122C15.3058%2010.1078%2014.9633%2010.3646%2014.6523%2010.6569C14.3474%2010.944%2014.0709%2011.26%2013.8269%2011.6004C13.6189%2011.2647%2013.3644%2010.9602%2013.0708%2010.6961C12.7539%2010.4143%2012.4051%2010.1705%2012.0316%209.9696C11.6271%209.75593%2011.1996%209.58905%2010.7574%209.47221C10.2826%209.34674%209.79344%209.28392%209.3024%209.28531C8.86329%209.28115%208.42593%209.34105%208.00408%209.46316C7.6329%209.57503%207.27681%209.73194%206.94374%209.93041C6.63813%2010.1222%206.35344%2010.3455%206.09425%2010.5966C5.85206%2010.8289%205.62183%2011.0734%205.40443%2011.3291C5.3743%2011.1603%205.33514%2010.9674%205.28393%2010.7443C5.24034%2010.5305%205.17576%2010.3214%205.09114%2010.1203C5.01894%209.94081%204.91712%209.77471%204.78991%209.62896C4.73779%209.56891%204.67348%209.52068%204.6013%209.4874C4.52911%209.45415%204.45067%209.43664%204.3712%209.43603H2.41317C2.20612%209.45605%202.01443%209.55411%201.87697%209.71035C1.79068%209.79422%201.72198%209.89445%201.67491%2010.0052C1.62784%2010.116%201.60334%2010.2351%201.60285%2010.3555V23.1972C1.59068%2023.4176%201.66529%2023.6341%201.8107%2023.8001C1.89451%2023.8818%201.99492%2023.9446%202.1051%2023.9842C2.21529%2024.0237%202.33268%2024.039%202.44932%2024.0292H4.98571C5.08795%2024.0355%205.19031%2024.0187%205.2852%2023.9801C5.38009%2023.9415%205.4651%2023.882%205.53396%2023.8061C5.60424%2023.7306%205.65879%2023.6419%205.69449%2023.5452C5.73015%2023.4484%205.74627%2023.3455%205.74181%2023.2424V15.7062C5.73898%2015.3544%205.81733%2015.0068%205.97075%2014.6903C6.27258%2014.0724%206.7902%2013.5866%207.42571%2013.3247C7.7389%2013.1944%208.07457%2013.1268%208.41376%2013.1258C8.74759%2013.1227%209.07922%2013.1799%209.39277%2013.2946C9.67855%2013.4028%209.93828%2013.5703%2010.1549%2013.7859C10.377%2014.0108%2010.5494%2014.2799%2010.661%2014.5757C10.7893%2014.9176%2010.8517%2015.2807%2010.8447%2015.6459V23.1821C10.8293%2023.4087%2010.8979%2023.6331%2011.0375%2023.8122C11.1189%2023.8913%2011.2167%2023.9518%2011.3238%2023.9893C11.431%2024.0268%2011.5451%2024.0404%2011.6581%2024.0292H14.1071C14.3377%2024.038%2014.563%2023.9582%2014.7367%2023.8061C14.8218%2023.724%2014.888%2023.6242%2014.9307%2023.5139C14.9733%2023.4035%2014.9914%2023.2851%2014.9837%2023.167V15.7393C14.9837%2015.3811%2015.065%2015.0275%2015.2217%2014.7054C15.5343%2014.0707%2016.0709%2013.5745%2016.7278%2013.3127C17.0499%2013.1799%2017.3947%2013.1112%2017.743%2013.1107C18.0593%2013.1036%2018.3731%2013.1695%2018.6599%2013.3034C18.9467%2013.4372%2019.1988%2013.6353%2019.3968%2013.8824C19.597%2014.1335%2019.7464%2014.4212%2019.8366%2014.7295C19.9365%2015.065%2019.9863%2015.4134%2019.9842%2015.7635V23.164C19.9842%2023.7308%2020.2854%2024.0111%2020.9331%2024.0111H23.1743C23.4108%2024.0222%2023.6423%2023.9399%2023.8189%2023.782C23.9082%2023.7011%2023.9782%2023.6011%2024.0236%2023.4894C24.0689%2023.3777%2024.0886%2023.2572%2024.081%2023.1369V20.9936C23.9575%2020.7645%2023.846%2020.5324%2023.7466%2020.2882Z'%20fill='%231D1E26'/%3e%3cpath%20d='M44.0948%203.6001H41.7723C40.152%203.6001%2038.5982%204.24358%2037.4514%205.38924C36.3049%206.53489%2035.6596%208.08907%2035.6572%209.71047V17.2105C35.6587%2017.46%2035.7587%2017.6988%2035.9353%2017.8749C36.1118%2018.051%2036.3507%2018.1503%2036.6001%2018.1511H44.0918C44.8946%2018.1522%2045.6895%2017.9951%2046.4318%2017.6886C47.1737%2017.3821%2047.8482%2016.9322%2048.4163%2016.3648C48.9845%2015.7973%2049.4354%2015.1233%2049.7433%2014.3813C50.0508%2013.6394%2050.2096%2012.844%2050.2099%2012.0407V9.71047C50.2075%208.08907%2049.5622%206.53489%2048.4157%205.38924C47.2692%204.24358%2045.7152%203.6001%2044.0948%203.6001Z'%20fill='%234B00FF'/%3e%3cpath%20d='M36.8204%2021.7289L35.6155%2019.872C35.4941%2019.6635%2035.3079%2019.5005%2035.0853%2019.4077C35.0356%2019.3929%2034.9838%2019.3858%2034.9317%2019.3866H34.8443C34.7904%2019.3879%2034.7371%2019.395%2034.6847%2019.4077C34.5672%2019.4542%2034.4561%2019.5149%2034.3533%2019.5886C33.6861%2020.101%2032.8658%2020.3729%2032.0248%2020.3603C31.5674%2020.3661%2031.1141%2020.2725%2030.6963%2020.086C30.3017%2019.9083%2029.9502%2019.6471%2029.6661%2019.3203C29.37%2018.9858%2029.14%2018.5981%2028.9883%2018.1778C28.672%2017.2722%2028.672%2016.286%2028.9883%2015.3804C29.1416%2014.9555%2029.368%2014.5607%2029.6571%2014.2138C29.9425%2013.8815%2030.2932%2013.6117%2030.6873%2013.421C31.1021%2013.2226%2031.556%2013.1196%2032.0158%2013.1195C32.4375%2013.116%2032.8565%2013.1864%2033.2538%2013.3275C33.3198%2013.3544%2033.3906%2013.368%2033.462%2013.3673C33.5331%2013.3667%2033.6036%2013.352%2033.6692%2013.3239C33.7346%2013.2959%2033.7939%2013.2552%2033.8436%2013.204C33.8933%2013.1529%2033.9325%2013.0924%2033.9587%2013.0261C33.9852%2012.9631%2033.9985%2012.8954%2033.9979%2012.8271V9.96333C33.9976%209.8388%2033.9542%209.71825%2033.875%209.62212C33.796%209.52596%2033.6861%209.46012%2033.5641%209.43579C33.0674%209.34225%2032.5634%209.29384%2032.0579%209.2911C31.0619%209.2864%2030.0751%209.48327%2029.157%209.86988C28.2762%2010.2436%2027.4739%2010.7806%2026.7923%2011.4525C25.9248%2012.3226%2025.2832%2013.3919%2024.9233%2014.5672C24.5634%2015.7424%2024.4962%2016.9878%2024.7276%2018.195C24.959%2019.4021%2025.4819%2020.5343%2026.2508%2021.4929C27.0197%2022.4514%2028.0113%2023.2072%2029.139%2023.6943C30.0536%2024.0948%2031.0415%2024.3001%2032.0399%2024.2972C32.8366%2024.3034%2033.6283%2024.1676%2034.3774%2023.8963C35.1064%2023.6341%2035.8014%2023.2849%2036.4469%2022.8563C36.5713%2022.7713%2036.684%2022.6699%2036.7813%2022.5549C36.8846%2022.4412%2036.9406%2022.2924%2036.9379%2022.1389C36.9445%2021.993%2036.9033%2021.8491%2036.8204%2021.7289Z'%20fill='%231D1E26'/%3e%3cpath%20d='M43.3631%209.08059V6.50622C43.3631%206.45038%2043.3451%206.39604%2043.3116%206.35129C43.2782%206.30653%2043.2315%206.27375%2043.1779%206.25783C43.1246%206.24191%2043.0673%206.2437%2043.0149%206.26292C42.9625%206.28215%2042.9176%206.31779%2042.8872%206.36454L39.3085%2011.9112C39.2841%2011.949%2039.2703%2011.9928%2039.2688%2012.0378C39.2669%2012.0828%2039.2775%2012.1274%2039.2992%2012.1669C39.3209%2012.2064%2039.3528%2012.2394%2039.3914%2012.2623C39.4302%2012.2852%2039.4745%2012.2972%2039.5194%2012.2971H42.2847C42.3157%2012.2967%2042.3468%2012.3025%2042.3757%2012.3141C42.4043%2012.3257%2042.4305%2012.343%2042.4528%2012.3649C42.4748%2012.3867%2042.4926%2012.4128%2042.5046%2012.4415C42.5164%2012.4702%2042.5227%2012.501%2042.5227%2012.5322V15.0463C42.5215%2015.0992%2042.5378%2015.1511%2042.5688%2015.1939C42.5998%2015.2367%2042.6441%2015.268%2042.695%2015.2832C42.7456%2015.2982%2042.7998%2015.2962%2042.8492%2015.2774C42.8989%2015.2585%2042.9408%2015.2239%2042.9685%2015.1789L46.514%209.71062C46.5397%209.67152%2046.5541%209.62625%2046.5559%209.57958C46.5577%209.53292%2046.5472%209.48658%2046.5249%209.44553C46.5026%209.40447%2046.4698%209.37016%2046.4297%209.34626C46.3896%209.32232%2046.3438%209.30972%2046.2972%209.30969H43.586C43.527%209.30668%2043.471%209.28139%2043.4297%209.23891C43.3884%209.19641%2043.3646%209.13989%2043.3631%209.08059Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_app'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%200H5C2.23858%200%200%202.23858%200%205V19C0%2021.7614%202.23858%2024%205%2024H19C21.7614%2024%2024%2021.7614%2024%2019V5C24%202.23858%2021.7614%200%2019%200Z'%20fill='%23703CEE'/%3e%3cpath%20d='M9.52804%2013.9614C9.3822%2013.6299%209.3085%2013.2746%209.31124%2012.9162C9.30985%2012.5674%209.37922%2012.2214%209.51568%2011.8968C9.51568%2011.8915%209.51568%2011.887%209.52233%2011.8817C9.51473%2011.855%209.50807%2011.8274%209.49856%2011.8016C9.42862%2011.5873%209.31244%2011.3887%209.15721%2011.2181C9.00017%2011.0508%208.80528%2010.9183%208.5867%2010.8303C8.3272%2010.7306%208.04848%2010.6821%207.76802%2010.688C7.63011%2010.6878%207.49283%2010.7054%207.36011%2010.7405C7.22992%2010.7749%207.10498%2010.8249%206.98833%2010.889C6.87186%2010.9527%206.76341%2011.0285%206.66504%2011.1149C6.56668%2011.1997%206.47809%2011.294%206.4007%2011.396C6.33513%2011.2969%206.25476%2011.207%206.16204%2011.1292C6.06245%2011.0455%205.95228%2010.9735%205.834%2010.9148C5.70628%2010.8531%205.57129%2010.8057%205.43179%2010.7734C5.28193%2010.7363%205.12753%2010.7178%204.97253%2010.7182C4.83393%2010.717%204.69587%2010.7347%204.56272%2010.7707C4.44536%2010.8032%204.33289%2010.8495%204.22802%2010.9086C4.13009%2010.9627%204.03889%2011.0269%203.95608%2011.0998C3.8793%2011.1681%203.8066%2011.2402%203.73833%2011.316C3.72882%2011.267%203.71646%2011.2092%203.70125%2011.1434C3.68625%2011.0806%203.6659%2011.019%203.64039%2010.9593C3.61712%2010.9065%203.58502%2010.8576%203.54531%2010.8143C3.5287%2010.7957%203.50789%2010.7808%203.48438%2010.7706C3.46086%2010.7605%203.43523%2010.7553%203.40934%2010.7556H2.79129C2.72587%2010.7596%202.6646%2010.787%202.62014%2010.8321C2.5919%2010.857%202.56961%2010.8873%202.5547%2010.9209C2.53979%2010.9544%202.5326%2010.9905%202.53361%2011.0269V14.8162C2.52977%2014.8812%202.55332%2014.9451%202.59922%2014.9941C2.62571%2015.0182%202.65741%2015.0366%202.69218%2015.0483C2.72695%2015.06%202.76399%2015.0645%202.8008%2015.0617H3.60426C3.63648%2015.0631%203.66865%2015.0579%203.69853%2015.0466C3.72841%2015.0352%203.7553%2015.0179%203.77732%2014.9959C3.8221%2014.9508%203.84603%2014.891%203.84388%2014.8295V12.6057C3.84274%2012.5019%203.86748%2012.3993%203.91614%2012.306C3.96357%2012.2156%204.02799%2012.134%204.10631%2012.0649C4.18463%2011.996%204.27585%2011.9411%204.3754%2011.903C4.47394%2011.8632%204.57994%2011.842%204.68728%2011.8408C4.79265%2011.8398%204.89734%2011.8567%204.9963%2011.8906C5.08662%2011.9223%205.16864%2011.9718%205.23687%2012.0356C5.30701%2012.1022%205.36143%2012.1819%205.39661%2012.2695C5.43672%2012.3705%205.45639%2012.4776%205.45461%2012.5853V14.8091C5.44918%2014.876%205.47091%2014.9424%205.51546%2014.995C5.54138%2015.0183%205.5724%2015.0361%205.60637%2015.0472C5.64035%2015.0582%205.67648%2015.0623%205.71229%2015.059H6.48438C6.55717%2015.0616%206.62828%2015.0381%206.6831%2014.9932C6.71003%2014.969%206.73096%2014.9396%206.74443%2014.907C6.7579%2014.8744%206.76358%2014.8395%206.76107%2014.8046V12.6182C6.76073%2012.5125%206.78644%2012.4081%206.83619%2012.3131C6.88533%2012.2202%206.95201%2012.1365%207.03302%2012.0658C7.11447%2011.9959%207.20888%2011.9404%207.31161%2011.9021C7.41308%2011.8622%207.52196%2011.8413%207.63205%2011.8408C7.73595%2011.839%207.83886%2011.86%207.93252%2011.9021C8.01845%2011.9422%208.0943%2011.9989%208.15501%2012.0685C8.21781%2012.1427%208.26463%2012.2276%208.29289%2012.3184C8.32451%2012.418%208.34021%2012.5214%208.33948%2012.6253V14.8091C8.33948%2014.9754%208.43456%2015.0581%208.63995%2015.0581H9.34643C9.42131%2015.0609%209.49447%2015.0367%209.55086%2014.9905C9.57856%2014.9663%209.60025%2014.9367%209.61438%2014.9038C9.62851%2014.871%209.63474%2014.8356%209.63263%2014.8002V14.1677C9.5946%2014.1001%209.55942%2014.0325%209.52804%2013.9614Z'%20fill='white'/%3e%3cpath%20d='M13.6188%2014.3175L13.2499%2013.7757C13.2127%2013.7152%2013.1561%2013.6677%2013.0884%2013.6402C13.073%2013.6355%2013.0567%2013.6335%2013.0405%2013.6341H13.0137C12.9974%2013.6337%2012.9812%2013.6361%2012.9658%2013.6411C12.9289%2013.6534%2012.8944%2013.6712%2012.8634%2013.6939C12.6585%2013.8424%2012.4076%2013.9216%2012.1503%2013.919C12.0102%2013.9206%2011.8714%2013.8929%2011.7435%2013.8381C11.6229%2013.7864%2011.5153%2013.7105%2011.4281%2013.6156C11.3388%2013.5172%2011.2694%2013.4039%2011.2233%2013.2814C11.1274%2013.017%2011.1274%2012.7295%2011.2233%2012.4651C11.2697%2012.3409%2011.339%2012.2256%2011.4281%2012.1248C11.5144%2012.0266%2011.6212%2011.9466%2011.7417%2011.8899C11.8685%2011.8314%2012.0076%2011.8013%2012.1485%2011.802C12.2776%2011.8008%2012.406%2011.8213%2012.5276%2011.8627C12.5527%2011.8723%2012.5799%2011.8759%2012.6068%2011.8732C12.6338%2011.8705%2012.6596%2011.8615%2012.682%2011.8471C12.7045%2011.8327%2012.7229%2011.8133%2012.7357%2011.7906C12.7485%2011.7678%2012.7553%2011.7425%2012.7555%2011.7167V10.8846C12.7551%2010.8476%2012.7413%2010.8119%2012.7164%2010.7835C12.6915%2010.7551%2012.6571%2010.7358%2012.6189%2010.7289C12.4669%2010.7013%2012.3125%2010.6874%2012.1577%2010.6876C11.8527%2010.685%2011.5503%2010.7422%2011.2694%2010.8556C10.8544%2011.024%2010.5004%2011.305%2010.2516%2011.6638C10.0028%2012.0225%209.87012%2012.4432%209.87012%2012.8733C9.87012%2013.3034%2010.0028%2013.724%2010.2516%2014.0827C10.5004%2014.4415%2010.8544%2014.7226%2011.2694%2014.8909C11.5496%2015.0059%2011.8518%2015.0643%2012.1568%2015.0625C12.4007%2015.0634%2012.6429%2015.0238%2012.8726%2014.9455C13.0957%2014.8686%2013.3084%2014.7667%2013.5063%2014.642C13.5446%2014.6174%2013.5791%2014.5878%2013.6087%2014.5541C13.6403%2014.5209%2013.6575%2014.4775%2013.6567%2014.4327C13.6567%2014.3915%2013.6435%2014.3513%2013.6188%2014.3175Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.6434%2013.3125H19.4548C20.5658%2013.3125%2021.4664%2012.4751%2021.4664%2011.4422V11.0266C21.4664%209.99362%2020.5658%209.15625%2019.4548%209.15625H15.4315C14.3206%209.15625%2013.4199%209.99362%2013.4199%2011.0266V13.1047C13.4199%2013.2195%2013.52%2013.3125%2013.6434%2013.3125ZM15.1443%2012.0033C15.0561%2012.0033%2014.9845%2011.9368%2014.9845%2011.8547V10.6109C14.9845%2010.4962%2015.0846%2010.4031%2015.208%2010.4031H15.6926C15.845%2010.4031%2015.9753%2010.426%2016.0835%2010.4717C16.1933%2010.5174%2016.2778%2010.583%2016.3368%2010.6683C16.3958%2010.7536%2016.4253%2010.855%2016.4253%2010.9723C16.4253%2011.0897%2016.3958%2011.191%2016.3368%2011.2764C16.2778%2011.3617%2016.1933%2011.4272%2016.0835%2011.4729C15.9753%2011.5187%2015.845%2011.5415%2015.6926%2011.5415H15.3041V11.8547C15.3041%2011.9368%2015.2326%2012.0033%2015.1443%2012.0033ZM15.6779%2011.2901H15.3041V10.6546H15.6779C15.8188%2010.6546%2015.9245%2010.682%2015.995%2010.7369C16.0671%2010.7917%2016.1032%2010.8702%2016.1032%2010.9723C16.1032%2011.0729%2016.0671%2011.1514%2015.995%2011.2078C15.9245%2011.2626%2015.8188%2011.2901%2015.6779%2011.2901ZM16.6456%2012.0033C16.5372%2012.0033%2016.4649%2011.8994%2016.5094%2011.8075L17.1298%2010.5257C17.1659%2010.4511%2017.2457%2010.4031%2017.3336%2010.4031H17.3595C17.4473%2010.4031%2017.527%2010.451%2017.5632%2010.5254L18.1842%2011.8045C18.2295%2011.8977%2018.1561%2012.0033%2018.0462%2012.0033C17.9856%2012.0033%2017.9309%2011.9698%2017.907%2011.918L17.7664%2011.6136C17.7467%2011.6257%2017.723%2011.633%2017.697%2011.633H16.9467C16.9361%2011.633%2016.9258%2011.6318%2016.9161%2011.6295L16.7828%2011.9191C16.7593%2011.9702%2016.7053%2012.0033%2016.6456%2012.0033ZM17.3441%2010.6995L17.6676%2011.3998H17.0218L17.3441%2010.6995ZM18.8192%2011.9087C18.8192%2011.9609%2018.8648%2012.0033%2018.921%2012.0033H19.0343C19.0921%2012.0033%2019.1389%2011.9598%2019.1389%2011.9061V11.4395L19.7071%2010.5654C19.7534%2010.4941%2019.6982%2010.4031%2019.6086%2010.4031H19.5736C19.5266%2010.4031%2019.4829%2010.426%2019.4585%2010.4634L18.9893%2011.1816L18.5275%2010.4689C18.501%2010.4281%2018.4535%2010.4031%2018.4023%2010.4031H18.3575C18.2633%2010.4031%2018.2053%2010.4988%2018.254%2010.5737L18.8192%2011.4433V11.9087Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_compact'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.5959%202H10.4041C8.17719%202%206.04181%202.88445%204.46574%204.45913C2.89009%206.03382%202.00331%208.17%202%2010.3986V20.7073C2.00207%2021.0502%202.13952%2021.3783%202.38212%2021.6204C2.62472%2021.8625%202.95301%2021.9989%203.2958%2022H13.5918C14.6951%2022.0016%2015.7876%2021.7856%2016.8077%2021.3644C17.8274%2020.9431%2018.7543%2020.3247%2019.5351%2019.5448C20.3159%2018.7648%2020.9356%2017.8384%2021.3587%2016.8186C21.7814%2015.7988%2021.9996%2014.7056%2022%2013.6014V10.3986C21.9967%208.17%2021.1099%206.03382%2019.5343%204.45913C17.9586%202.88445%2015.8228%202%2013.5959%202Z'%20fill='%234B00FF'/%3e%3cpath%20d='M12.6186%209.07202V5.37242C12.6186%205.29218%2012.5938%205.21408%2012.5479%205.14977C12.502%205.08545%2012.4379%205.03835%2012.3644%205.01546C12.2912%204.99259%2012.2127%204.99515%2012.1407%205.02278C12.0688%205.05041%2012.0072%205.10163%2011.9655%205.16881L7.05484%2013.1399C7.02136%2013.1942%207.00234%2013.2571%207.00027%2013.3218C6.99779%2013.3864%207.01226%2013.4505%207.04202%2013.5073C7.07179%2013.5641%207.1156%2013.6114%207.16851%2013.6444C7.22183%2013.6773%207.28259%2013.6946%207.34418%2013.6944H11.1388C11.1814%2013.6938%2011.2239%2013.7021%2011.2636%2013.7188C11.3029%2013.7356%2011.3388%2013.7603%2011.3694%2013.7918C11.3996%2013.8232%2011.424%2013.8607%2011.4405%2013.902C11.4566%2013.9432%2011.4653%2013.9875%2011.4653%2014.0323V17.6452C11.4637%2017.7213%2011.486%2017.7959%2011.5286%2017.8574C11.5711%2017.9189%2011.6319%2017.9639%2011.7018%2017.9856C11.7712%2018.0073%2011.8456%2018.0044%2011.9134%2017.9773C11.9816%2017.9502%2012.0391%2017.9005%2012.0771%2017.8358L16.9423%209.97743C16.9774%209.92124%2016.9972%209.85617%2016.9997%209.78911C17.0022%209.72205%2016.9877%209.65546%2016.9572%209.59646C16.9266%209.53746%2016.8815%209.48816%2016.8265%209.45381C16.7716%209.41941%2016.7087%209.4013%2016.6447%209.40126H12.9245C12.8435%209.39693%2012.7666%209.36058%2012.7099%209.29954C12.6533%209.23846%2012.6207%209.15723%2012.6186%209.07202Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_menu'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.5942%202H10.4058C5.76813%202%202%205.76813%202%2010.4058V20.7163C2%2021.4202%202.5797%2022%203.28363%2022H13.5942C18.2319%2022%2022%2018.2319%2022%2013.5942V10.4058C22%205.76813%2018.2733%202%2013.5942%202Z'%20fill='%23703CEE'/%3e%3cpath%20d='M12.9304%206L7%2014.1H10.9536L10.925%2019L17%2010.85L12.9304%2010.9V6Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_menu_circle_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='%23703CEE'/%3e%3cpath%20d='M12.9304%205L7%2013.723H10.9536L10.925%2019L17%2010.2231L12.9304%2010.2769V5Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mc_pay_mobile_app'%20viewBox='0%200%2024%2024'%3e%3cg%20id='surface1'%3e%3cpath%20style='%20stroke:none;fill-rule:nonzero;fill:url(%23linear0);'%20d='M%206%200%20L%2018%200%20C%2021.3125%200%2024%202.6875%2024%206%20L%2024%2018%20C%2024%2021.3125%2021.3125%2024%2018%2024%20L%206%2024%20C%202.6875%2024%200%2021.3125%200%2018%20L%200%206%20C%200%202.6875%202.6875%200%206%200%20Z%20M%206%200%20'/%3e%3cpath%20style='%20stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;'%20d='M%2013.105469%202.929688%20L%205.976562%2014.269531%20L%2010.734375%2014.269531%20L%2010.683594%2021.078125%20L%2018.011719%209.71875%20L%2013.105469%209.769531%20Z%20M%2013.105469%202.929688%20'/%3e%3cpath%20style='%20stroke:none;fill-rule:nonzero;fill:url(%23linear1);'%20d='M%2010.464844%2021.820312%20L%2010.519531%2014.484375%20L%205.585938%2014.484375%20L%2013.320312%202.183594%20L%2013.320312%209.550781%20L%2018.410156%209.5%20Z%20M%206.367188%2014.054688%20L%2010.953125%2014.054688%20L%2010.90625%2020.339844%20L%2017.613281%209.9375%20L%2012.890625%209.988281%20L%2012.890625%203.675781%20Z%20M%206.367188%2014.054688%20'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='mc_studio'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202ZM14.6%2014.9C14.6%2015.3%2014.3%2015.7%2013.8%2015.7H7.5C7.1%2015.7%206.7%2015.4%206.7%2014.9V9.9C6.7%209.5%207%209.1%207.5%209.1H13.8C14.2%209.1%2014.6%209.4%2014.6%209.9V14.9ZM17.7%2014.5V14.6C17.6%2014.7%2017.5%2014.7%2017.4%2014.7L15.2%2013.5C15.1%2013.5%2015.1%2013.4%2015.1%2013.3V11.5C15.1%2011.4%2015.1%2011.3%2015.2%2011.3L17.4%2010.1H17.5C17.6%2010.1%2017.7%2010.2%2017.7%2010.3V14.5Z'%20fill='%23E30040'/%3e%3c/symbol%3e%3csymbol%20id='mc_vidwide'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6%202H10.4C5.8%202%202%205.8%202%2010.4V20.7C2%2021.4%202.6%2022%203.3%2022H13.6C18.2%2022%2022%2018.2%2022%2013.6V10.4C22%205.8%2018.2%202%2013.6%202Z'%20fill='url(%23mc_vidwide_paint0_linear)'/%3e%3cpath%20d='M9.16652%2010.0775C8.6872%209.14931%209.29987%208%2010.274%208H17.726C18.7001%208%2019.3128%209.14931%2018.8335%2010.0775L15.1075%2017.2928C14.6205%2018.2357%2013.3795%2018.2357%2012.8925%2017.2928L9.16652%2010.0775Z'%20fill='white'%20fill-opacity='0.7'/%3e%3cpath%20d='M5.16652%2010.0775C4.6872%209.14931%205.29987%208%206.27399%208H13.726C14.7001%208%2015.3128%209.14931%2014.8335%2010.0775L11.1075%2017.2928C10.6205%2018.2357%209.3795%2018.2357%208.89253%2017.2928L5.16652%2010.0775Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='mcadslogo'%20viewBox='0%200%20230%20230'%3e%3cstyle%20type='text/css'%3e%20.mcads0{fill:%23111111;}%20.mcads1{fill:%23E20E41;}%20.mcads2{fill:%23F2F3F9;}%3c/style%3e%3cpath%20class='mcads0'%20d='M81.4,142.1c-1.6-4-2.5-8.2-2.5-12.6c0-4.2,0.7-8.3,2.4-12.3c0-0.1,0-0.1,0.1-0.2c-0.1-0.3-0.2-0.6-0.3-1%20c-0.7-2.6-2.1-4.9-3.8-6.9c-1.7-2-4-3.6-6.4-4.7c-2.9-1.2-6.1-1.8-9.3-1.7c-1.5,0-3.1,0.2-4.6,0.6c-1.5,0.4-2.9,1-4.2,1.8%20c-1.3,0.7-2.6,1.7-3.6,2.7c-1.1,1-2,2.1-2.9,3.3c-0.7-1.2-1.6-2.2-2.7-3.2c-1.1-1-2.4-1.9-3.7-2.6c-1.4-0.7-3-1.4-4.5-1.8%20c-1.7-0.4-3.4-0.6-5.1-0.6c-1.6,0-3.1,0.2-4.6,0.6c-1.3,0.4-2.6,1-3.7,1.6c-1.1,0.6-2.1,1.4-3,2.4c-0.9,0.9-1.7,1.7-2.5,2.6%20c-0.1-0.6-0.2-1.3-0.4-2c-0.2-0.7-0.4-1.5-0.6-2.1s-0.6-1.2-1.1-1.7c-0.4-0.4-1-0.6-1.5-0.6H5.8c-0.7,0-1.4,0.3-1.9,1%20c-0.6,0.6-1,1.5-1,2.4v45.5c0,0.7,0.2,1.5,0.7,2c0.6,0.6,1.4,0.9,2.2,0.9h9c0.7,0,1.4-0.2,1.9-0.7c0.5-0.5,0.7-1.3,0.7-2v-26.7%20c0-1.3,0.3-2.5,0.9-3.6c1.1-2.2,2.9-4,5.1-4.8c1.1-0.4,2.2-0.7,3.5-0.7c1.2,0,2.4,0.2,3.5,0.6c1.1,0.4,1.9,1,2.7,1.7%20c0.7,0.9,1.4,1.7,1.8,2.8c0.4,1.2,0.6,2.5,0.6,3.7v26.7c-0.1,0.9,0.2,1.6,0.6,2.2c0.6,0.5,1.4,0.9,2.2,0.7h8.4%20c0.9,0,1.6-0.2,2.2-0.7c0.6-0.6,1-1.4,0.9-2.2v-26.3c0-1.3,0.3-2.6,0.9-3.6s1.3-2.1,2.2-3c1-0.9,2-1.5,3.1-2%20c1.2-0.4,2.4-0.6,3.6-0.6c2.2,0,4.5,1,5.9,2.8c0.7,0.9,1.3,1.9,1.5,3c0.3,1.2,0.5,2.5,0.5,3.7v26.2c0,2,1.1,3,3.4,3h7.9%20c0.9,0,1.6-0.2,2.2-0.9c0.6-0.6,1-1.4,1-2.2v-7.6C82,143.7,81.7,143,81.4,142.1z'/%3e%3cpath%20class='mcads0'%20d='M127.7,147.1l-4.3-6.6c-0.4-0.7-1.1-1.3-1.9-1.7c-0.2,0-0.3-0.1-0.5-0.1h-0.3c-0.2,0-0.4,0-0.5,0.1%20c-0.4,0.1-0.9,0.3-1.2,0.6c-2.4,1.8-5.2,2.8-8.2,2.8c-1.6,0-3.2-0.3-4.7-1c-1.4-0.6-2.7-1.6-3.6-2.7c-1.1-1.2-1.8-2.6-2.4-4.1%20c-1.2-3.2-1.2-6.7,0-9.9c0.5-1.5,1.4-2.9,2.5-4.2c1-1.2,2.2-2.1,3.6-2.8c1.5-0.7,3.1-1.1,4.7-1.1c1.5,0,3,0.2,4.4,0.7l0,0%20c1,0.4,2.1-0.1,2.5-1.1c0.1-0.2,0.1-0.4,0.1-0.6v-10.2c0-1-0.6-1.7-1.6-1.9c-1.7-0.3-3.5-0.5-5.3-0.5c-3.5,0-7.1,0.6-10.3,2%20c-3.1,1.3-6,3.2-8.4,5.6c-10.4,10.5-10.4,27.4,0,37.7c2.5,2.4,5.2,4.3,8.3,5.7c3.2,1.4,6.7,2.1,10.3,2c2.8,0,5.7-0.4,8.3-1.4%20c2.6-1,5-2.1,7.4-3.6c0.4-0.3,0.9-0.6,1.2-1.1s0.5-1,0.5-1.5C128.2,148.1,128,147.6,127.7,147.1z'/%3e%3cpath%20class='mcads1'%20d='M205.7,82.4h-60.2c-12,0-21.7,9.7-21.7,21.7l0,0v26.8c0,1.8,1.5,3.3,3.3,3.4h78.5c12,0,21.7-9.7,21.7-21.7l0,0%20v-8.6C227.3,92.1,217.7,82.4,205.7,82.4z'/%3e%3cpath%20class='mcads2'%20d='M148.3,117.6c-1-0.5-1.4-1.7-0.9-2.7l7.6-15.1c0.5-1,1.7-1.4,2.7-1c0.4,0.2,0.7,0.5,1,1l7.5,15.1%20c0.2,0.4,0.3,1.1,0.1,1.5c-0.2,0.5-0.5,1-1,1.2c-0.3,0.1-0.5,0.2-0.9,0.2c-0.7,0-1.5-0.4-1.8-1.1l-1.3-2.7h-8.8l-1.4,2.6%20c-0.2,0.5-0.6,0.9-1.2,1C149.4,117.9,148.8,117.9,148.3,117.6z%20M154.4,110h4.8l-2.4-4.8L154.4,110z'/%3e%3cpath%20class='mcads2'%20d='M170.7,117.9c-1.1,0-2-0.9-2-2l0,0v-15.1c0-1.1,0.9-2,2-2h5c5.2,0,9.5,4.3,9.5,9.5c0,5.2-4.3,9.5-9.5,9.5%20L170.7,117.9z%20M172.8,113.8h3c3,0,5.6-2.5,5.6-5.5c0-1.5-0.5-2.9-1.6-4s-2.5-1.6-3.8-1.6h-3L172.8,113.8z'/%3e%3cpath%20class='mcads2'%20d='M198.2,113.8c0.4,0,1-0.2,1.3-0.5c0.3-0.3,0.5-0.7,0.5-1.3c0-0.4-0.2-1-0.5-1.3c-0.3-0.3-0.7-0.5-1.2-0.5h-5%20c-3.2,0-5.8-2.6-5.8-5.8c0-1.5,0.6-3,1.7-4.1c1.1-1.1,2.6-1.7,4.1-1.7h8.8c1.1,0,2,0.9,2,2c0,0.5-0.2,1.1-0.6,1.4%20c-0.4,0.4-0.9,0.5-1.4,0.5h-8.8c-1,0-1.7,0.7-1.7,1.7c0,0.4,0.2,1,0.5,1.3c0.3,0.3,0.7,0.5,1.3,0.5h5c3.2,0,5.8,2.6,5.8,5.8%20c0,1.5-0.6,3-1.7,4.1c-1.1,1.1-2.6,1.7-4.1,1.7h-8.8c-0.5,0-1.1-0.2-1.4-0.5c-0.7-0.7-0.7-2,0-2.9c0.4-0.4,0.9-0.6,1.4-0.6%20L198.2,113.8z'/%3e%3c/symbol%3e%3csymbol%20id='mediacube'%20viewBox='0%200%20676%20781'%3e%3cg%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23ed1d2b'%20xlink:href='%23mediacube_kndia'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23ed1d2b'%20xlink:href='%23mediacube_kndib'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23ed1d2b'%20xlink:href='%23mediacube_kndic'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23c62127'%20xlink:href='%23mediacube_kndid'/%3e%3c/g%3e%3cg%20transform='translate(-863%20-150)'%3e%3cuse%20fill='%23c62127'%20xlink:href='%23mediacube_kndie'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='menu'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%206H20M20%2012H4M4%2018H20'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='menu_new'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%206H21M17%2012H3M3%2018H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='message'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9%2010H15M9%2013H12M12%204C7.03%204%203%207.35868%203%2011.4971C3.03694%2012.7249%203.39056%2013.9223%204.02657%2014.9731C4.66258%2016.024%205.55939%2016.8926%206.63%2017.4948C6.41369%2018.0826%206.11292%2018.6358%205.73714%2019.1369C5.63591%2019.2847%205.58282%2019.4601%205.58511%2019.6392C5.58741%2019.8184%205.64498%2019.9924%205.74996%2020.1376C5.85494%2020.2827%206.00219%2020.3919%206.17159%2020.4501C6.34098%2020.5084%206.52424%2020.5129%206.6963%2020.4631C7.89863%2020.113%209.03031%2019.555%2010.04%2018.8143C10.6863%2018.9354%2011.3425%2018.9956%2012%2018.9942C16.97%2018.9942%2021%2015.6355%2021%2011.4971C21%207.35869%2016.97%204%2012%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='messenger'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M12,1.9c-5.6,0-10.1,4.2-10.1,9.4c0,3,1.5,5.6,3.8,7.3v3.6l3.5-1.9c0.9,0.3,1.9,0.4,2.9,0.4c5.6,0,10.1-4.2,10.1-9.4%20C22.1,6.1,17.6,1.9,12,1.9z%20M13,14.5l-2.6-2.8l-5,2.8l5.5-5.9l2.6,2.8l5-2.8L13,14.5z'/%3e%3c/symbol%3e%3csymbol%20id='messenger_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2300C6FF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.94679%2020V17.1505C5.14843%2015.7923%204%2013.7239%204%2011.4074C4%207.31639%207.58171%204%2012%204C16.4186%204%2020%207.31639%2020%2011.4074C20%2015.4981%2016.4186%2018.8148%2012%2018.8148C11.1757%2018.8148%2010.3801%2018.6993%209.63171%2018.4852L6.94679%2020ZM6.83105%2013.9118L11.1454%209.37856L13.2161%2011.479L17.099%209.37856L12.809%2013.9118L10.7575%2011.7739L6.83105%2013.9118Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='minus'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M6,11h12v2H6V11z'/%3e%3c/symbol%3e%3csymbol%20id='mobile_device'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M14.6667%207.5C14.1144%207.5%2013.6667%207.94772%2013.6667%208.5C13.6667%209.05228%2014.1144%209.5%2014.6667%209.5V7.5ZM17.3333%209.5C17.8856%209.5%2018.3333%209.05228%2018.3333%208.5C18.3333%207.94772%2017.8856%207.5%2017.3333%207.5V9.5ZM17%2024.3646C17%2023.8123%2016.5523%2023.3646%2016%2023.3646C15.4477%2023.3646%2015%2023.8123%2015%2024.3646H17ZM15%2024.5C15%2025.0523%2015.4477%2025.5%2016%2025.5C16.5523%2025.5%2017%2025.0523%2017%2024.5H15ZM21.3333%2027.5H10.6667V29.5H21.3333V27.5ZM10.6667%2027.5C9.74562%2027.5%209%2026.7544%209%2025.8333H7C7%2027.859%208.64105%2029.5%2010.6667%2029.5V27.5ZM9%2025.8333V7.16667H7V25.8333H9ZM9%207.16667C9%206.24562%209.74562%205.5%2010.6667%205.5V3.5C8.64105%203.5%207%205.14105%207%207.16667H9ZM10.6667%205.5H21.3333V3.5H10.6667V5.5ZM21.3333%205.5C22.2544%205.5%2023%206.24562%2023%207.16667H25C25%205.14105%2023.359%203.5%2021.3333%203.5V5.5ZM23%207.16667V25.8333H25V7.16667H23ZM23%2025.8333C23%2026.7544%2022.2544%2027.5%2021.3333%2027.5V29.5C23.359%2029.5%2025%2027.859%2025%2025.8333H23ZM14.6667%209.5H17.3333V7.5H14.6667V9.5ZM15%2024.3646V24.5H17V24.3646H15Z'/%3e%3c/symbol%3e%3csymbol%20id='money_clock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%207H16'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2014H7'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2017H5.5C4.83696%2017%204.20107%2016.7366%203.73223%2016.2678C3.26339%2015.7989%203%2015.163%203%2014.5V6.5C3%205.83696%203.26339%205.20107%203.73223%204.73223C4.20107%204.26339%204.83696%204%205.5%204H17.5C18.163%204%2018.7989%204.26339%2019.2678%204.73223C19.7366%205.20107%2020%205.83696%2020%206.5V10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.73223%2012.2678C9.26339%2011.7989%209%2011.163%209%2010.5C9%209.83695%209.26339%209.20107%209.73223%208.73223C10.2011%208.26339%2010.837%207.99999%2011.5%207.99999C12.163%207.99999%2012.7989%208.26339%2013.2678%208.73223'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5%2021C16.61%2021%2015.74%2020.7361%2014.9999%2020.2416C14.2599%2019.7471%2013.6831%2019.0443%2013.3425%2018.2221C13.0019%2017.3998%2012.9128%2016.495%2013.0865%2015.6221C13.2601%2014.7492%2013.6887%2013.9474%2014.318%2013.318C14.9474%2012.6887%2015.7492%2012.2601%2016.6221%2012.0865C17.495%2011.9128%2018.3998%2012.0019%2019.2221%2012.3425C20.0443%2012.6831%2020.7471%2013.2599%2021.2416%2013.9999C21.7361%2014.74%2022%2015.61%2022%2016.5C22%2017.6935%2021.5259%2018.8381%2020.682%2019.682C19.8381%2020.5259%2018.6935%2021%2017.5%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.3926%2014.9833V16.7368L18.7748%2017.58'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='money_input'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.5858%2016.4142C10.3061%2016.1345%2010.1156%2015.7781%2010.0384%2015.3901C9.96126%2015.0022%2010.0009%2014.6%2010.1522%2014.2346C10.3036%2013.8691%2010.56%2013.5568%2010.8889%2013.337C11.2178%2013.1172%2011.6044%2012.9999%2012%2012.9999C12.3956%2012.9999%2012.7823%2013.1172%2013.1112%2013.337C13.4401%2013.5568%2013.6964%2013.8691%2013.8478%2014.2346C13.9991%2014.6%2014.0387%2015.0022%2013.9616%2015.3901C13.8844%2015.7781%2013.6939%2016.1345%2013.4142%2016.4142C13.2285%2016.5999%2013.008%2016.7472%2012.7654%2016.8477C12.5227%2016.9483%2012.2626%2017%2012%2017C11.7374%2017%2011.4773%2016.9483%2011.2346%2016.8477C10.992%2016.7472%2010.7715%2016.5999%2010.5858%2016.4142Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.5%2017V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.5%2017V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%203V8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%206L12%208L14%206'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%209H19C19.2627%208.99993%2019.5228%209.05161%2019.7655%209.15209C20.0081%209.25258%2020.2286%209.39989%2020.4144%209.58563C20.6001%209.77136%2020.7474%209.99186%2020.8479%2010.2345C20.9484%2010.4772%2021.0001%2010.7373%2021%2011V19C21.0001%2019.2627%2020.9484%2019.5228%2020.8479%2019.7655C20.7474%2020.0081%2020.6001%2020.2286%2020.4144%2020.4144C20.2286%2020.6001%2020.0081%2020.7474%2019.7655%2020.8479C19.5228%2020.9484%2019.2627%2021.0001%2019%2021H5C4.73734%2021.0001%204.47723%2020.9484%204.23455%2020.8479C3.99186%2020.7474%203.77136%2020.6001%203.58563%2020.4144C3.39989%2020.2286%203.25258%2020.0081%203.15209%2019.7655C3.05161%2019.5228%202.99993%2019.2627%203%2019V11C2.99993%2010.7373%203.05161%2010.4772%203.15209%2010.2345C3.25258%209.99186%203.39989%209.77136%203.58563%209.58563C3.77136%209.39989%203.99186%209.25258%204.23455%209.15209C4.47723%209.05161%204.73734%208.99993%205%209H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='more_horiz'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M6%2010c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm12%200c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2zm-6%200c-1.1%200-2%20.9-2%202s.9%202%202%202%202-.9%202-2-.9-2-2-2z'/%3e%3c/symbol%3e%3csymbol%20id='music'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M20%202H8c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2V4c0-1.1-.9-2-2-2zm-2%205h-3v5.5c0%201.38-1.12%202.5-2.5%202.5S10%2013.88%2010%2012.5s1.12-2.5%202.5-2.5c.57%200%201.08.19%201.5.51V5h4v2zM4%206H2v14c0%201.1.9%202%202%202h14v-2H4V6z'/%3e%3c/symbol%3e%3csymbol%20id='music_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.7,8.4-8.4v-3.2C22,5.8,18.2,2,13.6,2z%20M14.6,17c-0.3,0.2-0.7,0.2-1.1,0.2c-0.1,0-0.2,0-0.3,0c-0.4,0-0.8-0.3-1-0.7c-0.2-0.4-0.1-0.9,0.2-1.2c0.3-0.4,0.7-0.7,1.1-0.9%20c0.5-0.3,1.1-0.3,1.7-0.2v-3.8h-5V15c0.1,0.4,0,0.8-0.2,1.1c-0.3,0.4-0.6,0.7-1.1,0.9c-0.3,0.2-0.7,0.2-1.1,0.2c-0.1,0-0.2,0-0.3,0%20c-0.2,0-0.5-0.1-0.7-0.3c-0.5-0.4-0.6-1.2-0.2-1.7c0.6-0.8,1.5-1.2,2.5-1.1c0.1,0,0.2,0,0.3,0.1V8c0-0.2,0.2-0.4,0.4-0.4h5.8%20c0.2,0,0.4,0.2,0.4,0.4v7C16.1,15.7,15.6,16.6,14.6,17z'/%3e%3c/symbol%3e%3csymbol%20id='new'%20viewBox='0%200%2024%2024'%3e%3cclipPath%20id='b'%3e%3cuse%20xlink:href='%23new_a'%20overflow='visible'/%3e%3c/clipPath%3e%3cpath%20d='M20%204H4c-1.11%200-1.99.89-1.99%202L2%2018c0%201.11.89%202%202%202h16c1.11%200%202-.89%202-2V6c0-1.11-.89-2-2-2zM8.5%2015H7.3l-2.55-3.5V15H3.5V9h1.25l2.5%203.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7%203.74c0%20.55-.45%201-1%201h-4c-.55%200-1-.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v5z'/%3e%3c/symbol%3e%3csymbol%20id='notes'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2018V14.5C18%2013.672%2018.672%2013%2019.5%2013C20.328%2013%2021%2013.672%2021%2014.5V19C21%2020.657%2019.657%2022%2018%2022C16.343%2022%2015%2020.657%2015%2019V16M11%2016H7M14%2012H7M14%208H7M18%209V5C18%203.895%2017.105%203%2016%203H5C3.895%203%203%203.895%203%205V19C3%2020.105%203.895%2021%205%2021H11'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='objects'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.0001%2020C12.9921%2018.896%2013.888%2018%2014.992%2018C16.104%2018%2017%2018.896%2017%2020M13.0001%2020C13.0001%2021.104%2013.896%2022%2015%2022C16.104%2022%2017%2021.104%2017%2020M13.0001%2020H3M17%2020H21M19%2015H5C3.895%2015%203%2014.105%203%2013V5C3%203.895%203.895%203%205%203H19C20.105%203%2021%203.895%2021%205V13C21%2014.105%2020.105%2015%2019%2015Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='obs'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%200.959961C5.90842%200.959961%200.959961%205.90842%200.959961%2012C0.959961%2013.9668%201.47849%2015.8127%202.38215%2017.4131L2.37184%2017.4187C2.41348%2017.4925%202.46182%2017.56%202.50684%2017.6306C2.50883%2017.6339%202.51046%2017.6375%202.51246%2017.6409L2.50402%2017.6456C2.55213%2017.7263%202.60771%2017.7993%202.65871%2017.8771C4.61482%2020.977%208.0682%2023.04%2012%2023.04C15.9101%2023.04%2019.3467%2020.9992%2021.3084%2017.9278L21.3215%2017.9362C21.3617%2017.8734%2021.3943%2017.808%2021.4312%2017.744L21.4387%2017.7487C21.5305%2017.5987%2021.6095%2017.4445%2021.6881%2017.2903C21.6992%2017.27%2021.7099%2017.2496%2021.7209%2017.2293C21.7393%2017.1922%2021.7604%2017.1561%2021.7781%2017.1187C22.5821%2015.5878%2023.04%2013.8473%2023.04%2012C23.04%205.90842%2018.0915%200.959961%2012%200.959961ZM12%201.91996C17.5727%201.91996%2022.08%206.42725%2022.08%2012C22.08%2012.0462%2022.0768%2012.0917%2022.0762%2012.1378C21.5926%2010.6502%2020.6059%209.31912%2019.1821%208.44777C18.1015%207.78623%2016.9038%207.47395%2015.7246%207.46621L15.449%207.46434L15.3084%207.70246C14.6402%208.83696%2013.4142%209.59996%2012%209.59996C9.87324%209.59996%208.15996%207.88668%208.15996%205.75996C8.15996%203.63324%209.87324%201.91996%2012%201.91996ZM6.91496%203.30371C5.89938%204.4797%205.27996%206.00655%205.27996%207.67996C5.27996%208.85892%205.58727%209.96872%206.1209%2010.9321L6.26059%2011.1853L6.54934%2011.1796C7.91426%2011.1541%209.24887%2011.8562%209.96934%2013.1325C11.0145%2014.9845%2010.3645%2017.3185%208.51246%2018.3637C6.77985%2019.3415%204.55727%2018.8611%203.42652%2017.2865C2.47711%2015.7488%201.91996%2013.9423%201.91996%2012C1.91996%208.28507%203.92863%205.05208%206.91496%203.30371ZM7.51121%204.07621C7.31336%204.60122%207.19996%205.16685%207.19996%205.75996C7.19996%208.4054%209.35452%2010.56%2012%2010.56C13.6394%2010.56%2015.0639%209.71283%2015.929%208.45527C16.8735%208.49521%2017.8182%208.73831%2018.6806%209.26621C19.9484%2010.0422%2020.8111%2011.2437%2021.2081%2012.5784C20.8521%2012.0587%2020.3907%2011.6014%2019.8328%2011.2443C19.2758%2010.8879%2018.6717%2010.6616%2018.0571%2010.5571C16.2134%2010.2439%2014.2715%2011.0285%2013.2018%2012.6993V12.7003L12.7293%2013.4381H12.8681C12.3062%2014.7727%2012.3791%2016.2414%2013.0228%2017.4834C12.5727%2018.1201%2012.0091%2018.6867%2011.2978%2019.1109C9.98155%2019.8958%208.46611%2020.0992%207.06496%2019.8009C7.7239%2019.7354%208.37817%2019.5409%208.98402%2019.199C11.0601%2018.0274%2011.8379%2015.5448%2011.0381%2013.3762H11.2096L10.8056%2012.66C9.97066%2011.181%208.45905%2010.345%206.87652%2010.259C6.4832%209.47991%206.23996%208.61309%206.23996%207.67996C6.23996%206.31229%206.7176%205.06128%207.51121%204.07621ZM17.1525%2011.445C17.8913%2011.427%2018.6438%2011.6227%2019.3153%2012.0525C20.9808%2013.1184%2021.5716%2015.308%2020.7196%2017.0456C18.9768%2020.0538%2015.7313%2022.08%2012%2022.08C10.1937%2022.08%208.50297%2021.6011%207.03777%2020.7712C8.62085%2021.0664%2010.3141%2020.816%2011.79%2019.9359C12.7046%2019.3904%2013.4374%2018.6569%2013.979%2017.8218L14.144%2017.5668L13.9846%2017.3081C13.2328%2016.0919%2013.1864%2014.5077%2014.009%2013.2196C14.0095%2013.2189%2014.0104%2013.2185%2014.0109%2013.2178V13.2168C14.7276%2012.0979%2015.921%2011.4749%2017.1525%2011.445Z'/%3e%3c/symbol%3e%3csymbol%20id='okru'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M12,12.9c3.1,0,5.7-2.5,5.7-5.7S15.1,1.5,12,1.5S6.3,4.1,6.3,7.2C6.3,10.3,8.9,12.9,12,12.9z%20M12,4.7%20c1.4,0,2.5,1.1,2.5,2.5S13.4,9.7,12,9.7S9.5,8.6,9.5,7.2S10.6,4.7,12,4.7z'/%3e%3cpath%20d='M17.6,15.5c0.6-0.4,1-1.1,1-1.8c0-0.6-0.3-1.2-0.9-1.4c-0.6-0.3-1.2-0.2-1.7,0.2c-2.3,1.7-5.5,1.7-7.8,0%20c-0.5-0.4-1.2-0.4-1.7-0.2c-0.5,0.3-0.9,0.8-0.9,1.4c0,0.7,0.4,1.4,1,1.8c0.8,0.5,1.7,0.9,2.6,1.2c0.2,0,0.3,0.1,0.5,0.1l-2.6,2.6%20c-0.7,0.7-0.7,1.8,0,2.5c0.7,0.7,1.8,0.7,2.5,0c0,0,0,0,0,0l2.7-2.8l2.7,2.8c0.7,0.7,1.8,0.7,2.5,0c0.7-0.7,0.7-1.8,0-2.5%20c0,0,0,0,0,0l-2.6-2.6c0.2,0,0.3-0.1,0.5-0.1C15.9,16.5,16.8,16.1,17.6,15.5z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='okru_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23EE8208'/%3e%3cpath%20d='M11.9999%206.42008C13.0172%206.42008%2013.8448%207.18698%2013.8448%208.12979C13.8448%209.07182%2013.017%209.83871%2011.9999%209.83871C10.9832%209.83871%2010.1554%209.07182%2010.1554%208.12979C10.1552%207.18678%2010.9834%206.42008%2011.9999%206.42008ZM11.9999%2012.2576C14.4573%2012.2576%2016.4557%2010.4062%2016.4557%208.12979C16.4557%205.85222%2014.4575%204%2011.9999%204C9.54268%204%207.54403%205.85242%207.54403%208.12979C7.54403%2010.4062%209.54268%2012.2576%2011.9999%2012.2576ZM13.8025%2015.6258C14.7192%2015.4324%2015.5939%2015.0967%2016.3898%2014.633C16.6828%2014.4622%2016.8906%2014.1905%2016.9674%2013.8777C17.0443%2013.5648%2016.9839%2013.2366%2016.7995%2012.965C16.7084%2012.8304%2016.5895%2012.7138%2016.4496%2012.6219C16.3098%2012.5299%2016.1517%2012.4644%2015.9846%2012.429C15.8174%2012.3937%2015.6443%2012.3893%2015.4753%2012.416C15.3062%2012.4427%2015.1446%2012.5001%2014.9995%2012.5847C13.174%2013.6483%2010.8245%2013.6475%209.00052%2012.5847C8.85544%2012.5%208.69376%2012.4427%208.52474%2012.416C8.35571%2012.3892%208.18267%2012.3937%208.01549%2012.429C7.84832%2012.4643%207.6903%2012.5298%207.55048%2012.6218C7.41066%2012.7138%207.29178%2012.8304%207.20065%2012.965C7.01625%2013.2365%206.95575%2013.5647%207.03246%2013.8775C7.10918%2014.1903%207.31682%2014.4621%207.60972%2014.633C8.40556%2015.0965%209.28015%2015.4322%2010.1966%2015.6258L7.70569%2017.9346C7.46091%2018.1616%207.32342%2018.4693%207.32348%2018.7902C7.32354%2019.1111%207.46114%2019.4188%207.70601%2019.6456C7.95089%2019.8725%208.28297%2019.9999%208.62921%2019.9999C8.97545%2019.9998%209.30749%2019.8723%209.55227%2019.6453L11.9995%2017.3771L14.4481%2019.6455C14.5692%2019.7579%2014.713%2019.8471%2014.8713%2019.9079C15.0295%2019.9687%2015.1992%2020%2015.3706%2020C15.5419%2020%2015.7116%2019.9687%2015.8699%2019.9079C16.0281%2019.8471%2016.1719%2019.7579%2016.293%2019.6455C16.4144%2019.5334%2016.5108%2019.4001%2016.5765%2019.2533C16.6422%2019.1065%2016.6761%2018.9492%2016.6761%2018.7903C16.6761%2018.6314%2016.6422%2018.474%2016.5765%2018.3273C16.5108%2018.1805%2016.4144%2018.0472%2016.293%2017.935L13.8025%2015.6258Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='ondemand_video'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M21%203H3c-1.11%200-2%20.89-2%202v12c0%201.1.89%202%202%202h5v2h8v-2h5c1.1%200%201.99-.9%201.99-2L23%205c0-1.11-.9-2-2-2zm0%2014H3V5h18v12zm-5-6l-7%204V7z'/%3e%3c/symbol%3e%3csymbol%20id='partners'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2014.5973L15.7062%2015.4141M20%2014.5973C20.0117%2014.8473%2020.1234%2015.0826%2020.3108%2015.2518C20.4982%2015.4209%2020.746%2015.5102%2021%2015.5H22M20%2014.5973V8.4017C20.0117%208.15178%2020.1235%207.91659%2020.3109%207.7476C20.4983%207.57861%2020.7461%207.48958%2021%207.5H22M15.7062%2015.4141C15.4745%2015.5552%2015.2074%2015.63%2014.935%2015.6302H14.446M15.7062%2015.4141C15.9379%2015.2731%2016.1252%2015.0713%2016.247%2014.8314C16.3689%2014.5915%2016.4205%2014.323%2016.3961%2014.0559C16.3717%2013.7887%2016.2723%2013.5336%2016.109%2013.3189L12.97%209.35969M14.416%208.88915L10.948%2010.0173C10.6796%2010.1042%2010.3882%2010.091%2010.1291%209.98008C9.86997%209.86916%209.66138%209.66832%209.543%209.4158C9.4154%209.14625%209.39925%208.83844%209.49797%208.55739C9.59668%208.27635%209.80252%208.04408%2010.072%207.90969L13.431%206.24706C13.7173%206.10493%2014.0302%206.02216%2014.3503%206.00387C14.6704%205.98559%2014.9909%206.03217%2015.292%206.14075L20.015%208.17744M4%2014.3249H6L9.642%2018.542C9.82085%2018.746%2010.0588%2018.8913%2010.3239%2018.9584C10.5891%2019.0255%2010.8687%2019.0112%2011.1253%2018.9173C11.382%2018.8235%2011.6033%2018.6546%2011.7596%2018.4334C11.916%2018.2122%2011.9998%2017.9492%2012%2017.6797V17.0743M12%2017.0743L12.175%2017.1432C12.4262%2017.2421%2012.6982%2017.2789%2012.9672%2017.2504C13.2363%2017.2219%2013.4941%2017.129%2013.7182%2016.9797C13.9422%2016.8304%2014.1258%2016.6293%2014.2526%2016.3941C14.3795%2016.1588%2014.4459%2015.8966%2014.446%2015.6302M12%2017.0743L11%2016M14.446%2015.6302L13%2014M10.583%207.65572L10.225%207.36532C9.86424%207.10383%209.428%206.96275%208.98%206.96271C8.71305%206.96262%208.44858%207.01308%208.201%207.11135L3.99994%209.04075M2.00006%207.5H3C3.25393%207.48958%203.50172%207.57861%203.68913%207.7476C3.87654%207.91659%203.98832%208.05989%204%208.30981L3.99994%2014.5973C3.98825%2014.8473%203.87651%2015.0826%203.68913%2015.2518C3.50175%2015.4209%203.25397%2015.5102%202.99994%2015.5H2'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='pause'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2019h4V5H6v14zm8-14v14h4V5h-4z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='payment'%20viewBox='0%200%2024%2024'%3e%3cg%20transform='translate(-8%20-8)'%3e%3cg%20transform='translate(8%208)'%3e%3cpath%20class='c'%20d='M0,0H24V24H0Z'/%3e%3cpath%20class='a'%20d='M21,18v1a2.006,2.006,0,0,1-2,2H5a2,2,0,0,1-2-2V5A2,2,0,0,1,5,3H19a2.006,2.006,0,0,1,2,2V6H12a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2Zm-9-2H22V8H12Zm4-2.5A1.5,1.5,0,1,1,17.5,12,1.5,1.5,0,0,1,16,13.5Z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='payoneer'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%20id='layer1'%20transform='translate(-53.895874,-165.87389)'%3e%3cg%20id='g3187'%20transform='translate(0.13229185,-0.13228321)'%3e%3cg%20id='g2666'%20transform='matrix(0.35277777,0,0,-0.35277777,67.246115,167.62408)'%3e%3cpath%20id='path2668'%20d='M-27-10.1c0.2-3.9,3.5-19,3.5-19c1.3-3.1,2.3,0,2.3,0c4.1,12.4-4.3,19.5-4.3,19.5%20C-27.5-8.3-27-10.1-27-10.1%20M21.9-7.9c0,0,4.1-2.9,0-3.4c0,0-15.4-1.8-26.8-12.5c0,0-17.2-15-23.6-31.5c0,0-2.1,0-1.4,3.3%20c0.7,3.3,5,17.4,24.2,34.7C-5.8-17.4,12.6-0.6,21.9-7.9'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='payoneer_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%23EEF5FF'/%3e%3cpath%20d='M21%2012C21%209.61306%2020.0518%207.32386%2018.364%205.63604C16.6761%203.94821%2014.3869%203%2012%203C9.61306%203%207.32386%203.94821%205.63604%205.63604C3.94821%207.32386%203%209.61306%203%2012H5.2785C5.2785%2010.2173%205.98665%208.50771%207.24719%207.24719C8.50771%205.98665%2010.2173%205.2785%2012%205.2785C13.7827%205.2785%2015.4923%205.98665%2016.7528%207.24719C18.0133%208.50771%2018.7215%2010.2173%2018.7215%2012H21Z'%20fill='url(%23payoneer_colored_paint0_linear_9155_43603)'/%3e%3cpath%20d='M21%2012C21%2014.3869%2020.0518%2016.6761%2018.364%2018.364C16.6761%2020.0518%2014.3869%2021%2012%2021C9.61306%2021%207.32386%2020.0518%205.63604%2018.364C3.94821%2016.6761%203%2014.3869%203%2012H5.2785C5.2785%2013.7827%205.98665%2015.4923%207.24719%2016.7528C8.50771%2018.0133%2010.2173%2018.7215%2012%2018.7215C13.7827%2018.7215%2015.4923%2018.0133%2016.7528%2016.7528C18.0133%2015.4923%2018.7215%2013.7827%2018.7215%2012H21Z'%20fill='url(%23payoneer_colored_paint1_linear_9155_43603)'/%3e%3c/symbol%3e%3csymbol%20id='payoneer_cy'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%20id='layer1'%20transform='translate(-53.895874,-165.87389)'%3e%3cg%20id='g3187'%20transform='translate(0.13229185,-0.13228321)'%3e%3cg%20id='g2666'%20transform='matrix(0.35277777,0,0,-0.35277777,67.246115,167.62408)'%3e%3cpath%20id='path2668'%20d='M-27-10.1c0.2-3.9,3.5-19,3.5-19c1.3-3.1,2.3,0,2.3,0c4.1,12.4-4.3,19.5-4.3,19.5%20C-27.5-8.3-27-10.1-27-10.1%20M21.9-7.9c0,0,4.1-2.9,0-3.4c0,0-15.4-1.8-26.8-12.5c0,0-17.2-15-23.6-31.5c0,0-2.1,0-1.4,3.3%20c0.7,3.3,5,17.4,24.2,34.7C-5.8-17.4,12.6-0.6,21.9-7.9'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='paypal'%20viewBox='0%200%20512.00017%20512'%3e%3cpath%20d='m487.160156%20115.148438c-1.921875-2.285157-3.972656-4.492188-6.128906-6.636719%201.910156%2016.890625%201.324219%2035.394531-1.773438%2055.441406-5.882812%2038.089844-17.339843%2071.640625-34.042968%2099.722656-13.707032%2023.039063-32.953125%2042.453125-53.253906%2057.703125-.890626.667969-1.777344%201.324219-2.660157%201.96875-30.296875%2022.164063-66.910156%2034.019532-104.441406%2034.488282l-61.753906.769531-17.960938%2086.773437c-3.761719%2020.902344-20.441406%2036.074219-39.65625%2036.074219h-101.386719c-.703124%200-1.402343-.027344-2.097656-.066406%201.394532%205.316406%203.890625%2010.355469%207.4375%2014.789062%207.597656%209.484375%2018.921875%2014.925781%2031.074219%2014.925781h99.800781c18.914063%200%2035.332032-13.464843%2039.035156-32.011718l17.683594-88.546875%2093.421875-1.074219.769531-.085938c6.203126-.714843%2038.9375-5.480468%2073.988282-29.210937%2019.984375-13.53125%2036.960937-30.757813%2050.449218-51.203125%2016.445313-24.917969%2027.71875-54.695312%2033.511719-88.496094%207.484375-43.671875.078125-79.109375-22.015625-105.324218zm0%200'/%3e%3cpath%20d='m178.652344%20418.488281%2017.683594-88.550781%2093.421874-1.070312.769532-.089844c6.207031-.710938%2038.941406-5.476563%2073.988281-29.207032%2019.984375-13.535156%2036.960937-30.761718%2050.449219-51.203124%2016.445312-24.921876%2027.71875-54.695313%2033.511718-88.5%207.484376-43.667969.078126-79.105469-22.011718-105.320313-28.609375-33.949219-82.910156-52.644531-152.910156-52.644531-20.957032%200-103.8125-.875-150.429688-1.8945315-18.910156-.3984375-35.574219%2012.6679685-39.703125%2031.0937495l-82.445313%20370.882813c-2.660156%2011.859375.171876%2024.101563%207.769532%2033.589844%207.59375%209.484375%2018.921875%2014.925781%2031.070312%2014.925781h99.800782c18.917968%200%2035.332031-13.464844%2039.035156-32.011719zm0%200'/%3e%3c/symbol%3e%3csymbol%20id='paypal_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23E1EDFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.3998%208.83984H14.8447C16.6943%208.83984%2017.3906%209.76479%2017.283%2011.1237C17.1051%2013.3671%2015.7321%2014.6082%2013.911%2014.6082H12.9915C12.7417%2014.6082%2012.5736%2014.7716%2012.506%2015.2143L12.1156%2017.788C12.0898%2017.9549%2012.0009%2018.0515%2011.8675%2018.0647H9.70314C9.49951%2018.0647%209.42748%2017.911%209.48084%2017.5781L10.8005%209.32735C10.852%208.99708%2011.0352%208.83984%2011.3998%208.83984Z'%20fill='%23009EE3'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.24427%206H12.6927C13.6638%206%2014.8162%206.03074%2015.5863%206.70271C16.1011%207.15157%2016.3715%207.8657%2016.3092%208.63517C16.0976%2011.2361%2014.5228%2012.6933%2012.4099%2012.6933H10.7097C10.4198%2012.6933%2010.2287%2012.8831%2010.1468%2013.3961L9.67199%2016.3826C9.64087%2016.5758%209.55639%2016.69%209.40522%2016.7041H7.27729C7.04164%2016.7041%206.95806%2016.5284%207.01941%2016.1402L8.54889%206.56744C8.61025%206.1827%208.82456%206%209.24427%206Z'%20fill='%23113984'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.1963%2013.093L10.7983%209.32735C10.8508%208.99707%2011.0339%208.83896%2011.3985%208.83896H14.8434C15.4134%208.83896%2015.8749%208.9268%2016.236%209.0893C15.89%2011.4047%2014.3739%2012.6907%2012.3891%2012.6907H10.6916C10.4639%2012.6916%2010.2968%2012.804%2010.1963%2013.093Z'%20fill='%23172C70'/%3e%3c/symbol%3e%3csymbol%20id='percent'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M4.16669%2016.6673L16.6667%203.33398M8.33335%205.41732C8.33335%206.56791%207.40061%207.50065%206.25002%207.50065C5.09943%207.50065%204.16669%206.56791%204.16669%205.41732C4.16669%204.26672%205.09943%203.33398%206.25002%203.33398C7.40061%203.33398%208.33335%204.26672%208.33335%205.41732ZM16.6667%2014.584C16.6667%2015.7346%2015.7339%2016.6673%2014.5834%2016.6673C13.4328%2016.6673%2012.5%2015.7346%2012.5%2014.584C12.5%2013.4334%2013.4328%2012.5007%2014.5834%2012.5007C15.7339%2012.5007%2016.6667%2013.4334%2016.6667%2014.584Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='personal_email_colored'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M0%2016C0%207.16344%207.16344%200%2016%200C24.8366%200%2032%207.16344%2032%2016C32%2024.8366%2024.8366%2032%2016%2032C7.16344%2032%200%2024.8366%200%2016Z'%20fill='url(%23personal_email_colored_paint0_linear_17277_40980)'/%3e%3cpath%20d='M6.67073%2011.8402C6.6676%2011.8932%206.66602%2011.9465%206.66602%2012.0002V20.0002C6.66602%2021.4729%207.85992%2022.6668%209.33268%2022.6668H22.666C24.1388%2022.6668%2025.3327%2021.4729%2025.3327%2020.0002V12.0002C25.3327%2011.9459%2025.3311%2011.8921%2025.3279%2011.8386L17.7334%2016.4339C16.6756%2017.1903%2015.2693%2017.1886%2014.2132%2016.4306L6.67073%2011.8402Z'%20fill='white'/%3e%3cpath%20d='M7.53865%2010.0272L15.2886%2014.7437C15.3148%2014.7597%2015.3403%2014.7769%2015.365%2014.7952C15.7323%2015.0681%2016.2172%2015.0685%2016.5848%2014.7964C16.6098%2014.7779%2016.6356%2014.7606%2016.6621%2014.7446L24.4594%2010.0265C23.9857%209.59595%2023.3565%209.3335%2022.666%209.3335H9.33268C8.64183%209.3335%208.01233%209.59621%207.53865%2010.0272Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='phone_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%234DCB4D'/%3e%3cpath%20d='M9.18173%2014.8144C11.8015%2017.4352%2015.1209%2019.1056%2017.0951%2017.14L17.5739%2016.6612C18.2111%2016.024%2018.1223%2014.9692%2017.3831%2014.4544C16.9163%2014.1292%2016.4146%2013.78%2015.8602%2013.39C15.2865%2012.9868%2014.4993%2013.048%2014.0013%2013.5424L13.46%2014.08C12.7892%2013.6552%2012.1255%2013.1092%2011.5087%2012.4936L11.5063%2012.4912C10.8906%2011.8756%2010.3446%2011.2108%209.91978%2010.54L10.4574%209.99876C10.9519%209.50075%2011.0143%208.71235%2010.6086%208.13875C10.2186%207.58555%209.86938%207.08514%209.54655%206.61954C9.03292%205.87794%207.97685%205.78794%207.3384%206.42634L6.85957%206.90514C4.89503%208.87915%206.56435%2012.196%209.18413%2014.818'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='photo_add'%20viewBox='0%200%2040%2040'%3e%3cpath%20d='M34.4211%2019.2105C34.4211%2018.6582%2033.9733%2018.2105%2033.4211%2018.2105C32.8688%2018.2105%2032.4211%2018.6582%2032.4211%2019.2105H34.4211ZM20.7895%207.57895C21.3418%207.57895%2021.7895%207.13123%2021.7895%206.57895C21.7895%206.02666%2021.3418%205.57895%2020.7895%205.57895V7.57895ZM23.2305%2016.7695L22.5233%2017.4765L23.2305%2016.7695ZM15.1905%2016.7695L15.8977%2017.4765L15.1905%2016.7695ZM19.2105%2015.104V14.104V15.104ZM27.1053%207.94737C26.553%207.94737%2026.1053%208.39508%2026.1053%208.94737C26.1053%209.49965%2026.553%209.94737%2027.1053%209.94737V7.94737ZM35%209.94737C35.5523%209.94737%2036%209.49965%2036%208.94737C36%208.39508%2035.5523%207.94737%2035%207.94737V9.94737ZM30.0526%2012.8947C30.0526%2013.447%2030.5003%2013.8947%2031.0526%2013.8947C31.6049%2013.8947%2032.0526%2013.447%2032.0526%2012.8947H30.0526ZM32.0526%205C32.0526%204.44772%2031.6049%204%2031.0526%204C30.5003%204%2030.0526%204.44772%2030.0526%205H32.0526ZM32.4211%2019.2105V27.1053H34.4211V19.2105H32.4211ZM32.4211%2027.1053C32.4211%2028.9339%2031.6946%2030.6876%2030.4016%2031.9806L31.8158%2033.3948C33.4839%2031.7267%2034.4211%2029.4643%2034.4211%2027.1053H32.4211ZM30.4016%2031.9806C29.1086%2033.2736%2027.3549%2034%2025.5263%2034V36C27.8853%2036%2030.1478%2035.0629%2031.8158%2033.3948L30.4016%2031.9806ZM25.5263%2034H12.8947V36H25.5263V34ZM12.8947%2034C11.0661%2034%209.31244%2033.2736%208.01942%2031.9806L6.60521%2033.3948C8.27329%2035.0629%2010.5357%2036%2012.8947%2036V34ZM8.01942%2031.9806C6.72641%2030.6876%206%2028.9339%206%2027.1053H4C4%2029.4643%204.93712%2031.7267%206.60521%2033.3948L8.01942%2031.9806ZM6%2027.1053V14.4737H4V27.1053H6ZM6%2014.4737C6%2012.6451%206.72641%2010.8914%208.01942%209.59837L6.60521%208.18416C4.93712%209.85224%204%2012.1147%204%2014.4737H6ZM8.01942%209.59837C9.31244%208.30536%2011.0661%207.57895%2012.8947%207.57895V5.57895C10.5357%205.57895%208.27329%206.51607%206.60521%208.18416L8.01942%209.59837ZM12.8947%207.57895H20.7895V5.57895H12.8947V7.57895ZM22.5233%2017.4765C23.1782%2018.1316%2023.6242%2018.9663%2023.8048%2019.8749L25.7665%2019.4849C25.5087%2018.1884%2024.8723%2016.9974%2023.9377%2016.0625L22.5233%2017.4765ZM23.8048%2019.8749C23.9855%2020.7835%2023.8926%2021.7252%2023.538%2022.5811L25.3857%2023.3466C25.8917%2022.1254%2026.0242%2020.7815%2025.7665%2019.4849L23.8048%2019.8749ZM23.538%2022.5811C23.1834%2023.4369%2022.5831%2024.1684%2021.8128%2024.683L22.9238%2026.346C24.023%2025.6117%2024.8797%2024.5679%2025.3857%2023.3466L23.538%2022.5811ZM21.8128%2024.683C21.0425%2025.1977%2020.1369%2025.4724%2019.2105%2025.4724V27.4724C20.5324%2027.4724%2021.8247%2027.0804%2022.9238%2026.346L21.8128%2024.683ZM19.2105%2025.4724C18.2841%2025.4724%2017.3786%2025.1977%2016.6083%2024.683L15.4972%2026.346C16.5964%2027.0804%2017.8886%2027.4724%2019.2105%2027.4724V25.4724ZM16.6083%2024.683C15.838%2024.1684%2015.2376%2023.4369%2014.883%2022.5811L13.0353%2023.3466C13.5413%2024.5679%2014.398%2025.6117%2015.4972%2026.346L16.6083%2024.683ZM14.883%2022.5811C14.5284%2021.7252%2014.4356%2020.7835%2014.6162%2019.8749L12.6546%2019.4849C12.3969%2020.7815%2012.5294%2022.1254%2013.0353%2023.3466L14.883%2022.5811ZM14.6162%2019.8749C14.7968%2018.9663%2015.2428%2018.1316%2015.8977%2017.4765L14.4833%2016.0625C13.5487%2016.9974%2012.9123%2018.1884%2012.6546%2019.4849L14.6162%2019.8749ZM15.8977%2017.4765C16.3327%2017.0413%2016.8492%2016.6962%2017.4176%2016.4607L16.6521%2014.613C15.841%2014.949%2015.104%2015.4416%2014.4833%2016.0625L15.8977%2017.4765ZM17.4176%2016.4607C17.986%2016.2252%2018.5953%2016.104%2019.2105%2016.104V14.104C18.3326%2014.104%2017.4632%2014.2769%2016.6521%2014.613L17.4176%2016.4607ZM19.2105%2016.104C19.8258%2016.104%2020.435%2016.2252%2021.0035%2016.4607L21.769%2014.613C20.9579%2014.2769%2020.0885%2014.104%2019.2105%2014.104V16.104ZM21.0035%2016.4607C21.5719%2016.6962%2022.0883%2017.0413%2022.5233%2017.4765L23.9377%2016.0625C23.317%2015.4416%2022.5801%2014.949%2021.769%2014.613L21.0035%2016.4607ZM27.1053%209.94737H35V7.94737H27.1053V9.94737ZM32.0526%2012.8947V5H30.0526V12.8947H32.0526Z'/%3e%3c/symbol%3e%3csymbol%20id='picture'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2016L7.58579%2011.4142C7.96086%2011.0391%208.46957%2010.8284%209%2010.8284C9.53043%2010.8284%2010.0391%2011.0391%2010.4142%2011.4142L12.5858%2013.5858C12.9609%2013.9609%2013.4696%2014.1716%2014%2014.1716C14.5304%2014.1716%2015.0391%2013.9609%2015.4142%2013.5858L21%208M3%2016C3%2018.7614%205.23858%2021%208%2021H16C18.7614%2021%2021%2018.7614%2021%2016V8M3%2016V8C3%205.23858%205.23858%203%208%203H16C18.7614%203%2021%205.23858%2021%208M14%208V8.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='picture_thin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%2016L7.58579%2011.4142C7.96086%2011.0391%208.46957%2010.8284%209%2010.8284C9.53043%2010.8284%2010.0391%2011.0391%2010.4142%2011.4142L12.5858%2013.5858C12.9609%2013.9609%2013.4696%2014.1716%2014%2014.1716C14.5304%2014.1716%2015.0391%2013.9609%2015.4142%2013.5858L21%208M3%2016C3%2018.7614%205.23858%2021%208%2021H16C18.7614%2021%2021%2018.7614%2021%2016V8M3%2016V8C3%205.23858%205.23858%203%208%203H16C18.7614%203%2021%205.23858%2021%208M14%208V8.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='plane'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.5139%2012.3805L1.68555%2015.2088M12.0562%2019.9227L9.22782%2022.7511M8.28533%2016.1513L3.57142%2020.8652M21.17%203.26664L14.8848%209.55186M9.80728%208.0471L13.7701%209.71287C14.1985%209.89292%2014.5392%2010.2336%2014.7193%2010.662L16.3883%2014.6309C16.5305%2014.9691%2016.7739%2015.2551%2017.0851%2015.4495C17.3963%2015.6439%2017.76%2015.7373%2018.1264%2015.7168C18.4928%2015.6963%2018.8438%2015.5629%2019.1313%2015.335C19.4189%2015.1071%2019.6289%2014.7957%2019.7325%2014.4437L22.8753%203.768C22.9655%203.46156%2022.9715%203.13648%2022.8926%202.82694C22.8137%202.5174%2022.6529%202.23484%2022.427%202.00897C22.2011%201.78309%2021.9186%201.62225%2021.609%201.54336C21.2995%201.46446%2020.9744%201.47043%2020.668%201.56063L9.9942%204.70286C9.64218%204.80647%209.33085%205.01646%209.10293%205.30404C8.875%205.59161%208.74165%205.94268%208.72117%206.30905C8.70069%206.67543%208.79409%207.03916%208.98855%207.35034C9.18301%207.66153%209.469%207.90491%209.80728%208.0471Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='play-videos'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.9406%209.05799L14.8226%2011.354C15.3136%2011.644%2015.3136%2012.355%2014.8226%2012.645L10.9406%2014.941C10.4406%2015.237%209.80859%2014.876%209.80859%2014.295V9.70399C9.80859%209.12299%2010.4406%208.76199%2010.9406%209.05799Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18%2021H6C4.343%2021%203%2019.657%203%2018V6C3%204.343%204.343%203%206%203H18C19.657%203%2021%204.343%2021%206V18C21%2019.657%2019.657%2021%2018%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='play'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%205v14l11-7z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='print'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%208H5c-1.66%200-3%201.34-3%203v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3%2011H8v-5h8v5zm3-7c-.55%200-1-.45-1-1s.45-1%201-1%201%20.45%201%201-.45%201-1%201zm-1-9H6v4h12V3z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='prototype'%20viewBox='0%200%20448%20512'%3e%3cpath%20d='M400%20480H48c-26.5%200-48-21.5-48-48V80c0-26.5%2021.5-48%2048-48h352c26.5%200%2048%2021.5%2048%2048v352c0%2026.5-21.5%2048-48%2048zM238.1%20177.9L102.4%20313.6l-6.3%2057.1c-.8%207.6%205.6%2014.1%2013.3%2013.3l57.1-6.3L302.2%20242c2.3-2.3%202.3-6.1%200-8.5L246.7%20178c-2.5-2.4-6.3-2.4-8.6-.1zM345%20165.1L314.9%20135c-9.4-9.4-24.6-9.4-33.9%200l-23.1%2023.1c-2.3%202.3-2.3%206.1%200%208.5l55.5%2055.5c2.3%202.3%206.1%202.3%208.5%200L345%20199c9.3-9.3%209.3-24.5%200-33.9z'/%3e%3c/symbol%3e%3csymbol%20id='public'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm-1%2017.93c-3.95-.49-7-3.85-7-7.93%200-.62.08-1.21.21-1.79L9%2015v1c0%201.1.9%202%202%202v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55%200%201-.45%201-1V7h2c1.1%200%202-.9%202-2v-.41c2.93%201.19%205%204.06%205%207.41%200%202.08-.8%203.97-2.1%205.39z'/%3e%3c/symbol%3e%3csymbol%20id='qiwi'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20d='M18.9,16.1c0.1,0.4-0.1,0.6-0.2,0.6c-0.1,0-0.3-0.2-0.5-0.5c-0.2-0.3-0.3-0.7-0.2-0.9c0.1-0.1,0.2-0.2,0.4-0.1%20C18.7,15.3,18.8,15.8,18.9,16.1z%20M16.9,16.9c0.4,0.4,0.5,0.8,0.3,1.1c-0.1,0.2-0.3,0.2-0.6,0.2s-0.5-0.1-0.6-0.2%20c-0.4-0.3-0.5-0.9-0.2-1.2c0.1-0.1,0.3-0.2,0.4-0.2C16.5,16.7,16.7,16.8,16.9,16.9z%20M16.2,20.3c1.8,0,3.7,0.6,5.9,2.5%20c0.2,0.2,0.5,0,0.3-0.3c-2.1-2.7-4.1-3.2-6-3.6c-2.4-0.5-3.6-1.9-4.4-3.3c-0.2-0.3-0.2-0.2-0.3,0.1c0,0.5,0,1.1,0.1,1.7l0,0%20c-0.1,0-0.2,0-0.3,0c-3.4,0-6.1-2.8-6.1-6.1s2.8-6.1,6.1-6.1s6.1,2.8,6.1,6.1c0,0.2,0,0.5,0,0.7c-0.4-0.1-1.3-0.1-2,0%20c-0.2,0-0.2,0.1,0,0.2c2,0.4,3.4,1.6,3.7,3.9c0,0.1,0.1,0.1,0.1,0c0.8-1.4,1.3-3,1.3-4.8c0-5.1-4.2-9.3-9.3-9.3s-9.3,4.2-9.3,9.3%20s4.2,9.3,9.3,9.3C12.9,20.6,14.3,20.3,16.2,20.3z'/%3e%3c/symbol%3e%3csymbol%20id='qiwi_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23FF8C00'/%3e%3cpath%20d='M16.1318%2013.8144C16.3752%2013.9049%2016.4688%2014.2576%2016.4874%2014.4115C16.5249%2014.6922%2016.4409%2014.8008%2016.3473%2014.8008C16.2536%2014.8008%2016.1225%2014.6922%2015.9824%2014.4751C15.8419%2014.2576%2015.7858%2014.0135%2015.8608%2013.8866C15.9074%2013.8051%2016.01%2013.7691%2016.1318%2013.8144ZM14.71%2014.8371C14.8598%2014.8371%2015.0281%2014.9004%2015.1779%2015.0269C15.4677%2015.2624%2015.5521%2015.5338%2015.4023%2015.7329C15.318%2015.8325%2015.1779%2015.8958%2015.0188%2015.8958C14.8598%2015.8958%2014.6914%2015.8415%2014.5792%2015.7419C14.3172%2015.5248%2014.2425%2015.1625%2014.4106%2014.9636C14.4763%2014.8821%2014.5792%2014.8371%2014.71%2014.8371ZM11.4361%2017.4524C7.88109%2017.4524%205%2014.6649%205%2011.226C5%207.78717%207.88138%205%2011.4358%205C14.9906%205%2017.872%207.78745%2017.872%2011.226C17.872%2012.3933%2017.5353%2013.4886%2016.9648%2014.4208C16.9459%2014.4478%2016.8991%2014.4388%2016.8898%2014.4025C16.6654%2012.8732%2015.7018%2012.0313%2014.2986%2011.7782C14.1768%2011.7599%2014.1582%2011.6876%2014.3172%2011.6696C14.7475%2011.6333%2015.3555%2011.6423%2015.6736%2011.6966C15.6922%2011.5428%2015.7018%2011.3799%2015.7018%2011.217C15.7018%208.94546%2013.7933%207.09916%2011.4452%207.09916C9.09731%207.09916%207.1888%208.94546%207.1888%2011.217C7.1888%2013.4886%209.09731%2015.3349%2011.4454%2015.3349H11.6417C11.575%2014.9675%2011.5468%2014.5945%2011.5574%2014.2216C11.567%2013.9682%2011.6231%2013.9319%2011.7353%2014.1311C12.3247%2015.1175%2013.1667%2016.0044%2014.813%2016.3574C16.16%2016.6471%2017.5071%2016.9818%2018.9571%2018.7645C19.0879%2018.9184%2018.8917%2019.0812%2018.7419%2018.9547C17.264%2017.6875%2015.917%2017.2712%2014.6914%2017.2712C13.3162%2017.2805%2012.3811%2017.4524%2011.4361%2017.4524Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='radio--checked'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2012C7%209.23858%209.23858%207%2012%207C14.7614%207%2017%209.23858%2017%2012C17%2014.7614%2014.7614%2017%2012%2017C9.23858%2017%207%2014.7614%207%2012Z'%20fill='currentColor'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12%203.11111C7.0908%203.11111%203.11111%207.0908%203.11111%2012C3.11111%2016.9092%207.0908%2020.8889%2012%2020.8889C16.9092%2020.8889%2020.8889%2016.9092%2020.8889%2012C20.8889%207.0908%2016.9092%203.11111%2012%203.11111ZM12%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022C17.5228%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5228%202%2012%202Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='ready'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm-2%2015l-5-5%201.41-1.41L10%2014.17l7.59-7.59L19%208l-9%209z'/%3e%3c/symbol%3e%3csymbol%20id='receipt'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2017H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3%2022l1.5-1.5L6%2022l1.5-1.5L9%2022l1.5-1.5L12%2022l1.5-1.5L15%2022l1.5-1.5L18%2022l1.5-1.5L21%2022V2l-1.5%201.5L18%202l-1.5%201.5L15%202l-1.5%201.5L12%202l-1.5%201.5L9%202%207.5%203.5%206%202%204.5%203.5%203%202v20z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='receipt_thin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%207H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.13%2011H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4%204V19.191C4%2019.563%204.391%2019.804%204.724%2019.639L6.667%2018.667L9.11%2019.889C9.251%2019.959%209.416%2019.959%209.557%2019.889L12%2018.667L14.443%2019.888C14.584%2019.958%2014.749%2019.958%2014.89%2019.888L17.333%2018.666L19.276%2019.638C19.609%2019.804%2020%2019.563%2020%2019.191V4C20%203.448%2019.552%203%2019%203H5C4.448%203%204%203.448%204%204Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13%2015H8'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='recording_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2011.556V12.444M8.4%209.778V14.222M10.8%208V16M15.6%208.889V15.111M18%2011.111V12.889M13.2%2010.222V13.778M12%203.023C16.971%203.023%2021%207.052%2021%2012.023C21%2016.994%2016.971%2021.023%2012%2021.023C7.029%2021.023%203%2016.994%203%2012.023C3%207.053%207.029%203.023%2012%203.023Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='recruiters'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%206H20M18%208V4M15%2018C14.8695%2017.5604%2014.6659%2017.1673%2014.406%2016.8462C13.9661%2016.3031%2013.3924%2016%2012.7928%2016H8.20838C7.60875%2016%207.03387%2016.3031%206.594%2016.8462C6.33412%2017.1673%206.13162%2017.5619%206%2018M14.006%205.765C12.936%205.279%2011.752%205%2010.5%205C5.806%205%202%208.806%202%2013.5C2%2018.194%205.806%2022%2010.5%2022C15.194%2022%2019%2018.194%2019%2013.5C19%2012.248%2018.721%2011.064%2018.235%209.994M18%2010C15.791%2010%2014%208.209%2014%206C14%203.791%2015.791%202%2018%202C20.209%202%2022%203.791%2022%206C22%208.209%2020.209%2010%2018%2010ZM10.5%209C11.8805%209%2013%2010.1195%2013%2011.5C13%2012.8805%2011.8805%2014%2010.5%2014C9.11949%2014%208%2012.8805%208%2011.5C8%2010.1195%209.11949%209%2010.5%209Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='redo'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2014.076V14C6%2010.686%208.686%208%2012%208H18M18%208L15%2011M18%208L15%205M6%2014.08V19'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='referral'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='7.5'%20cy='12'%20r='3'%20fill='none'/%3e%3ccircle%20cx='16.4004'%20cy='4.6'%20r='3'%20fill='none'/%3e%3ccircle%20cx='16.4004'%20cy='19.5'%20r='3'%20fill='none'/%3e%3cpath%20d='M14.5833%206.36688L9.41602%2010.1893'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%202.74834C19.252%203.74613%2019.252%205.36388%2018.2421%206.36166C17.2321%207.35946%2015.5946%207.35946%2014.5846%206.36166C13.5747%205.36387%2013.5747%203.74613%2014.5846%202.74834C15.5946%201.75055%2017.2321%201.75055%2018.2421%202.74834'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.5833%2017.6331L9.41602%2013.8106'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%2017.6383C19.252%2018.6361%2019.252%2020.2539%2018.2421%2021.2517C17.2321%2022.2494%2015.5946%2022.2494%2014.5846%2021.2517C13.5747%2020.2539%2013.5747%2018.6361%2014.5846%2017.6383C15.5946%2016.6405%2017.2321%2016.6405%2018.2421%2017.6383'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.41056%2010.1951C10.4195%2011.1919%2010.4195%2012.8081%209.41056%2013.8049C8.40158%2014.8017%206.7657%2014.8017%205.75673%2013.8049C4.74776%2012.8081%204.74776%2011.1919%205.75673%2010.1951C6.76571%209.19832%208.40158%209.19832%209.41056%2010.1951'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='referral_solid'%20viewBox='0%200%2024%2024'%3e%3ccircle%20cx='7.5'%20cy='12'%20r='3'%20fill='currentColor'/%3e%3ccircle%20cx='16.4004'%20cy='4.6'%20r='3'%20fill='currentColor'/%3e%3ccircle%20cx='16.4004'%20cy='19.5'%20r='3'%20fill='currentColor'/%3e%3cpath%20d='M14.5833%206.36688L9.41602%2010.1893'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%202.74834C19.252%203.74613%2019.252%205.36388%2018.2421%206.36166C17.2321%207.35946%2015.5946%207.35946%2014.5846%206.36166C13.5747%205.36387%2013.5747%203.74613%2014.5846%202.74834C15.5946%201.75055%2017.2321%201.75055%2018.2421%202.74834'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.5833%2017.6331L9.41602%2013.8106'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.2421%2017.6383C19.252%2018.6361%2019.252%2020.2539%2018.2421%2021.2517C17.2321%2022.2494%2015.5946%2022.2494%2014.5846%2021.2517C13.5747%2020.2539%2013.5747%2018.6361%2014.5846%2017.6383C15.5946%2016.6405%2017.2321%2016.6405%2018.2421%2017.6383'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.41056%2010.1951C10.4195%2011.1919%2010.4195%2012.8081%209.41056%2013.8049C8.40158%2014.8017%206.7657%2014.8017%205.75673%2013.8049C4.74776%2012.8081%204.74776%2011.1919%205.75673%2010.1951C6.76571%209.19832%208.40158%209.19832%209.41056%2010.1951'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reload'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%204C7.58172%204%204%207.58172%204%2012C4%2016.4183%207.58172%2020%2012%2020C16.4183%2020%2020%2016.4183%2020%2012C20%209.03887%2018.3912%206.38324%2016%205M16%205V9M16%205H20'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reload_right'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%2012C20%2016.4183%2016.4183%2020%2012%2020C7.58172%2020%204%2016.4183%204%2012C4%207.58172%207.58172%204%2012%204C14.9611%204%2017.6168%205.60879%2019%208M19%208H15M19%208V4'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='remove_red_eye'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%204.5C7%204.5%202.73%207.61%201%2012c1.73%204.39%206%207.5%2011%207.5s9.27-3.11%2011-7.5c-1.73-4.39-6-7.5-11-7.5zM12%2017c-2.76%200-5-2.24-5-5s2.24-5%205-5%205%202.24%205%205-2.24%205-5%205zm0-8c-1.66%200-3%201.34-3%203s1.34%203%203%203%203-1.34%203-3-1.34-3-3-3z'/%3e%3c/symbol%3e%3csymbol%20id='repair'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.5%2011.6C7.52647%2012.7759%208.0122%2013.8948%208.85323%2014.7171C9.69426%2015.5394%2010.8238%2015.9998%2012%2015.9998C13.1762%2015.9998%2014.3057%2015.5394%2015.1468%2014.7171C15.9878%2013.8948%2016.4735%2012.7759%2016.5%2011.6V11.5625C16.5006%2010.9297%2016.3664%2010.3041%2016.1061%209.72731C15.8459%209.15054%2015.4657%208.63587%2014.9909%208.21763C14.8593%208.10713%2014.6989%208.03658%2014.5286%208.01431C14.3583%207.99204%2014.1851%208.01898%2014.0296%208.09194C13.8741%208.1649%2013.7427%208.28085%2013.651%208.42608C13.5592%208.57131%2013.511%208.73976%2013.5119%208.91154L13.5123%2011.375C13.5123%2011.4346%2013.4885%2011.4919%2013.4464%2011.5341C13.4042%2011.5763%2013.3469%2011.6%2013.2873%2011.6H10.7127C10.6531%2011.6%2010.5958%2011.5763%2010.5536%2011.5341C10.5114%2011.4919%2010.4877%2011.4346%2010.4877%2011.375L10.4881%208.91154C10.489%208.73976%2010.4408%208.57131%2010.349%208.42608C10.2573%208.28085%2010.1259%208.1649%209.97037%208.09194C9.81485%208.01898%209.6417%207.99204%209.47137%208.01431C9.30104%208.03658%209.14064%208.10713%209.00911%208.21763C8.53429%208.63587%208.15408%209.15054%207.89386%209.72732C7.63363%2010.3041%207.49936%2010.9297%207.5%2011.5625'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%2021C16.9706%2021%2021%2016.9706%2021%2012C21%207.02944%2016.9706%203%2012%203C7.02944%203%203%207.02944%203%2012C3%2016.9706%207.02944%2021%2012%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2020.7769V15.5424'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14%2020.7769V15.5424'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reply_arrow'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M9.16667%2011.9408C12.995%2011.9408%2016.2492%2013.91%2017.5%2016.6667V15.8275C17.5%2010.8142%2013.8158%206.725%209.16667%206.41833V2.5L2.5%209.16667L9.16667%2015.8333V11.9442'%20stroke='currentColor'%20stroke-linecap='round'%20fill='none'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='requisites'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13%2019H6C5.20435%2019%204.44129%2018.6839%203.87868%2018.1213C3.31607%2017.5587%203%2016.7956%203%2016V8C3%207.20435%203.31607%206.44129%203.87868%205.87868C4.44129%205.31607%205.20435%205%206%205H13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2019H18C18.7956%2019%2019.5587%2018.6839%2020.1213%2018.1213C20.6839%2017.5587%2021%2016.7956%2021%2016V8C21%207.20435%2020.6839%206.44129%2020.1213%205.87868C19.5587%205.31607%2018.7956%205%2018%205H16'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%202.00001V22'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7%2011V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2011V13'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='reset'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.4238%204.80273V7.69573H17.5308H20.4238'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2020.477C5.507%2019.24%203%2015.917%203%2012C3%207.03%207.029%203%2012%203C15.412%203%2018.379%204.899%2019.905%207.696'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.5%2021C18.9853%2021%2021%2018.9853%2021%2016.5C21%2014.0147%2018.9853%2012%2016.5%2012C14.0147%2012%2012%2014.0147%2012%2016.5C12%2018.9853%2014.0147%2021%2016.5%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.75%2015.25L15.25%2017.75'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.75%2017.75L15.25%2015.25'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='resize_video'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.25%2013C21.6297%2013%2021.9435%2013.2822%2021.9932%2013.6482L22%2013.75V18.75C22%2020.483%2020.6436%2021.8992%2018.9345%2021.9949L18.75%2022L14.0822%2022.0002C14.6185%2021.6147%2015.0555%2021.0997%2015.3474%2020.5011L18.75%2020.5C19.6682%2020.5%2020.4212%2019.7929%2020.4942%2018.8935L20.5%2018.75V13.75C20.5%2013.3358%2020.8358%2013%2021.25%2013ZM11.75%209C13.545%209%2015%2010.4551%2015%2012.25V18.75C15%2020.5449%2013.545%2022%2011.75%2022H5.25003C3.4551%2022%202.00003%2020.5449%202.00003%2018.75V12.25C2.00003%2010.4551%203.4551%209%205.25003%209H11.75ZM11.75%2010.5H5.25003C4.28353%2010.5%203.50003%2011.2835%203.50003%2012.25V18.75C3.50003%2019.7165%204.28353%2020.5%205.25003%2020.5H11.75C12.7165%2020.5%2013.5%2019.7165%2013.5%2018.75V12.25C13.5%2011.2835%2012.7165%2010.5%2011.75%2010.5ZM6.06108%2013.1028C6.17862%2012.8874%206.43165%2012.7928%206.6567%2012.8674L6.73945%2012.9033L10.6953%2015.0611C10.7796%2015.107%2010.8488%2015.1763%2010.8948%2015.2606C11.0124%2015.4761%2010.9548%2015.74%2010.7703%2015.8888L10.6953%2015.9389L6.73945%2018.0967C6.66601%2018.1367%206.58369%2018.1577%206.50003%2018.1577C6.25457%2018.1577%206.05042%2017.9809%206.00808%2017.7476L6.00003%2017.6577V13.3423C6.00003%2013.2586%206.02102%2013.1763%206.06108%2013.1028ZM18.75%202C20.4831%202%2021.8993%203.35645%2021.9949%205.06558L22%205.25V10.25C22%2010.6642%2021.6642%2011%2021.25%2011C20.8703%2011%2020.5565%2010.7178%2020.5069%2010.3518L20.5%2010.25V5.25C20.5%204.33183%2019.7929%203.57881%2018.8936%203.5058L18.75%203.5H13.75C13.3358%203.5%2013%203.16421%2013%202.75C13%202.3703%2013.2822%202.05651%2013.6483%202.00685L13.75%202H18.75ZM10.25%202C10.6642%202%2011%202.33579%2011%202.75C11%203.1297%2010.7179%203.44349%2010.3518%203.49315L10.25%203.5H5.25003C4.33186%203.5%203.57884%204.20711%203.50583%205.10647L3.50003%205.25L3.49999%208.65214C2.9009%208.94409%202.38559%209.38126%201.99988%209.91785L2.00003%205.25C2.00003%203.51697%203.35648%202.10075%205.0656%202.00514L5.25003%202H10.25Z'/%3e%3c/symbol%3e%3csymbol%20id='revenue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%2015V17M12%2011V17M16%207V17M5%203H19C20.105%203%2021%203.895%2021%205V19C21%2020.105%2020.105%2021%2019%2021H5C3.895%2021%203%2020.105%203%2019V5C3%203.895%203.895%203%205%203Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='review'%20viewBox='0%200%20576%20512'%3e%3cpath%20d='M569.517%20440.013C587.975%20472.007%20564.806%20512%20527.94%20512H48.054c-36.937%200-59.999-40.055-41.577-71.987L246.423%2023.985c18.467-32.009%2064.72-31.951%2083.154%200l239.94%20416.028zM288%20354c-25.405%200-46%2020.595-46%2046s20.595%2046%2046%2046%2046-20.595%2046-46-20.595-46-46-46zm-43.673-165.346l7.418%20136c.347%206.364%205.609%2011.346%2011.982%2011.346h48.546c6.373%200%2011.635-4.982%2011.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884%200-12.356%205.78-11.981%2012.654z'/%3e%3c/symbol%3e%3csymbol%20id='ripple_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2367A9E2'/%3e%3cpath%20d='M7.99361%209.07386C8.8332%209.08261%209.62766%209.42834%2010.2145%2010.1767C10.3499%2010.3474%2010.4672%2010.5312%2010.5936%2010.7062C10.8193%2011.0213%2011.1263%2011.2139%2011.5235%2011.2314C12.336%2011.2664%2012.9048%2010.5574%2012.6836%209.78282C12.643%209.6384%2012.5708%209.49836%2012.503%209.36269C12.2638%208.87255%2012.0968%208.36928%2012.1103%207.81787C12.1464%206.42184%2013.2478%205.21399%2014.6652%205.02581C16.0239%204.84638%2017.3239%205.61661%2017.8114%206.89448C18.3441%208.29051%2017.7076%209.90098%2016.3625%2010.5399C15.9201%2010.75%2015.4507%2010.82%2014.9631%2010.8375C14.5253%2010.855%2014.1687%2011.0213%2013.9294%2011.3845C13.4194%2012.1723%2013.9565%2013.1175%2014.9315%2013.1569C15.3829%2013.1744%2015.8343%2013.2226%2016.2496%2013.4107C17.184%2013.8352%2017.7392%2014.5573%2017.9423%2015.5289C18.1996%2016.7542%2017.5767%2018.0452%2016.4527%2018.6491C14.7645%2019.5506%2012.661%2018.636%2012.1961%2016.8067C12.002%2016.0365%2012.1419%2015.3188%2012.5076%2014.6273C12.6385%2014.3779%2012.7333%2014.1197%2012.7197%2013.8352C12.6926%2013.2313%2012.1374%2012.7193%2011.519%2012.7499C11.0992%2012.7674%2010.8058%2013.0037%2010.5711%2013.3276C10.3815%2013.5902%2010.2009%2013.8659%209.97523%2014.0934C8.88737%2015.2006%207.05922%2015.205%205.91268%2014.1241C4.45919%2012.7456%204.7887%2010.3649%206.5672%209.41959C6.97345%209.20077%207.41131%209.09137%207.99361%209.07386Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='rocket'%20viewBox='0%200%2087%2084'%3e%3cpath%20d='M61.9719%2040.9476L42.4087%2056.5982C40.9663%2057.752%2038.887%2057.6369%2037.5809%2056.3308L27.6694%2046.4192C26.3633%2045.1131%2026.2481%2043.0338%2027.402%2041.5914L43.0526%2022.0282C50.2091%2013.0825%2061.0441%207.875%2072.5001%207.875C74.5022%207.875%2076.1251%209.49797%2076.1251%2011.5C76.1251%2022.9561%2070.9176%2033.791%2061.9719%2040.9476Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M58%2044.125V60.0097C58%2061.3828%2057.2243%2062.638%2055.9962%2063.252L47.2384%2067.631C45.4477%2068.5263%2043.2703%2067.8005%2042.375%2066.0098C42.2983%2065.8564%2042.2326%2065.6977%2042.1783%2065.535L39.875%2058.625'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M25.375%2044.125L18.4652%2041.8217C16.5659%2041.1886%2015.5394%2039.1357%2016.1725%2037.2364C16.2268%2037.0737%2016.2925%2036.915%2016.3692%2036.7616L20.7482%2028.0039C21.3622%2026.7758%2022.6173%2026.0001%2023.9903%2026H39.875'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M20.8441%2071.6276L10.875%2073.1253L12.3727%2063.1562C12.8585%2059.9222%2015.3972%2057.3835%2018.6312%2056.8977C22.6987%2056.2865%2026.4916%2059.0884%2027.1028%2063.1559C27.2131%2063.8896%2027.2131%2064.6356%2027.1028%2065.3693C26.6169%2068.6032%2024.0781%2071.1419%2020.8441%2071.6276Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M36%2047L49%2034.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'/%3e%3c/symbol%3e%3csymbol%20id='rocket_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16%2013V17.6545C16%2018.0568%2015.786%2018.4246%2015.4472%2018.6045L13.0313%2019.8876C12.5373%2020.15%2011.9366%2019.9373%2011.6896%2019.4126C11.6685%2019.3676%2011.6504%2019.3212%2011.6354%2019.2735L11%2017'%20fill='%23FF1FDB'/%3e%3cpath%20d='M7%2013L4.72658%2012.3646C4.17005%2012.19%203.86929%2011.6236%204.0548%2011.0997C4.07069%2011.0548%204.08995%2011.011%204.11242%2010.9687L5.39554%208.55279C5.57545%208.21403%205.94321%208.00003%206.34551%208H11'%20fill='%23FF1FDB'/%3e%3cpath%20d='M16.9985%2012.3505L11.4674%2016.7754C11.0596%2017.1016%2010.4717%2017.0691%2010.1025%2016.6998L7.30019%2013.8975C6.93092%2013.5283%206.89836%2012.9404%207.22459%2012.5326L11.6495%207.00152C13.6728%204.47231%2016.7362%203%2019.9751%203C20.5411%203%2021%203.45886%2021%204.02489C21%207.26385%2019.5277%2010.3272%2016.9985%2012.3505Z'%20fill='%2380A3FF'/%3e%3cpath%20d='M5.7501%2020.5869L3%2021L3.41315%2018.2499C3.54717%2017.3578%204.2475%2016.6575%205.13964%2016.5235C6.26172%2016.3548%207.30803%2017.1278%207.47664%2018.2499C7.50705%2018.4523%207.50705%2018.6581%207.47664%2018.8605C7.34259%2019.7526%206.64224%2020.4529%205.7501%2020.5869Z'%20fill='%23FF8A00'/%3e%3c/symbol%3e%3csymbol%20id='rocket_small'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.0955%2012.1235L11.6988%2016.4409C11.3009%2016.7592%2010.7273%2016.7274%2010.367%2016.3671L7.63274%2013.6329C7.27244%2013.2726%207.24067%2012.699%207.55898%2012.3011L11.8764%206.90437C13.8506%204.43659%2016.8396%203.00003%2019.9999%203.00003C20.5521%203.00003%2020.9999%203.44775%2020.9999%204.00003C20.9999%207.16033%2019.5633%2010.1493%2017.0955%2012.1235Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2013V17.382C16%2017.7608%2015.786%2018.107%2015.4472%2018.2764L13.0313%2019.4844C12.5373%2019.7314%2011.9366%2019.5312%2011.6896%2019.0372C11.6685%2018.9949%2011.6504%2018.9511%2011.6354%2018.9062L11%2017'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.00036%2013L5.0942%2012.3646C4.57025%2012.19%204.2871%2011.6236%204.46175%2011.0997C4.47671%2011.0548%204.49484%2011.011%204.516%2010.9687L5.724%208.55279C5.89338%208.21403%206.23961%208.00003%206.61836%208H11.0004'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.7501%2020.5869L3%2021.0001L3.41315%2018.25C3.54717%2017.3578%204.2475%2016.6575%205.13964%2016.5235C6.26172%2016.3549%207.30803%2017.1278%207.47664%2018.2499C7.50705%2018.4523%207.50705%2018.6581%207.47664%2018.8605C7.34259%2019.7526%206.64224%2020.4529%205.7501%2020.5869Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='role'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18%2015.434C17.869%2015.105%2017.666%2014.809%2017.406%2014.568C16.967%2014.16%2016.392%2013.934%2015.792%2013.934C14.792%2013.934%2012.208%2013.934%2011.208%2013.934C10.608%2013.934%2010.034%2014.161%209.594%2014.568C9.334%2014.809%209.131%2015.105%209%2015.434M18%2018V19.333C18%2020.254%2017.254%2021%2016.333%2021H4.667C3.746%2021%203%2020.254%203%2019.333V7.667C3%206.746%203.746%206%204.667%206H6M19.333%2018H7.667C6.746%2018%206%2017.254%206%2016.333V4.667C6%203.746%206.746%203%207.667%203H19.334C20.254%203%2021%203.746%2021%204.667V16.334C21%2017.254%2020.254%2018%2019.333%2018ZM15.2684%207.166C16.2444%208.142%2016.2444%209.725%2015.2684%2010.702C14.2924%2011.678%2012.7094%2011.678%2011.7324%2010.702C10.7554%209.726%2010.7564%208.143%2011.7324%207.166C12.7084%206.189%2014.2914%206.19%2015.2684%207.166Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='safety'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M18.6666%2014.666V12.7905C18.6666%2011.6177%2017.4721%2010.666%2015.9999%2010.666C14.5278%2010.666%2013.3333%2011.6177%2013.3333%2012.7905V14.666'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.4545%2014.666H18.5455C19.3484%2014.666%2020%2015.3902%2020%2016.2826V19.7161C20%2020.6085%2019.3484%2021.3327%2018.5455%2021.3327H13.4545C12.6516%2021.3327%2012%2020.6085%2012%2019.7161V16.2826C12%2015.3902%2012.6516%2014.666%2013.4545%2014.666Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.78%2029.226C23.2645%2027.4127%2028%2021.3474%2028%2014.8762V8.9087C28%207.70572%2027.2635%206.62126%2026.137%206.16644L18.841%203.21825C17.0215%202.48194%2014.9815%202.48194%2013.1605%203.21825L5.8645%206.16644C4.7365%206.62126%204%207.70572%204%208.9087V14.8762C4%2021.3474%208.7355%2027.4141%2015.22%2029.226C15.727%2029.3682%2016.273%2029.3682%2016.78%2029.226Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sand_clock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17%204.5C15.5%203.5%2013.7%203%2012%203C7%203%203%207%203%2012M7%2019.5C8.5%2020.5%2010.3%2021%2012%2021C17%2021%2021%2017%2021%2012M20.3%207.7C20.4%207.8%2020.4%208.1%2020.3%208.2C20.2%208.3%2019.9%208.3%2019.8%208.2C19.7%208.1%2019.7%207.8%2019.8%207.7C19.9%207.6%2020.1%207.6%2020.3%207.7ZM4.3%2015.7C4.4%2015.8%204.4%2016.1%204.3%2016.2C4.2%2016.3%203.9%2016.3%203.8%2016.2C3.7%2016.1%203.7%2015.8%203.8%2015.7C3.9%2015.6%204.1%2015.6%204.3%2015.7Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.2%2013.7L10.4%2012L9.2%2010.3C9.1%2010.1%209%209.9%209%209.7V8.5C9%208.2%209.2%208%209.5%208H14.5C14.8%208%2015%208.2%2015%208.5V9.7C15%209.9%2015%2010.1%2014.8%2010.3L13.5%2012L14.9%2013.7C15%2013.9%2015.1%2014.1%2015.1%2014.3V15.5C15.1%2015.8%2014.9%2016%2014.6%2016H9.5C9.2%2016%209%2015.8%209%2015.5V14.3C9%2014.1%209%2013.9%209.2%2013.7Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='save'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M17%203H5c-1.11%200-2%20.9-2%202v14c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V7l-4-4zm-5%2016c-1.66%200-3-1.34-3-3s1.34-3%203-3%203%201.34%203%203-1.34%203-3%203zm3-10H5V5h10v4z'/%3e%3c/symbol%3e%3csymbol%20id='search'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2019L15.71%2015.71M15.7138%206.8382C18.1647%209.28913%2018.1647%2013.2629%2015.7138%2015.7138C13.2629%2018.1647%209.28913%2018.1647%206.8382%2015.7138C4.38727%2013.2629%204.38727%209.28913%206.8382%206.8382C9.28913%204.38727%2013.2629%204.38727%2015.7138%206.8382Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='send'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.01%2021L23%2012%202.01%203%202%2010l15%202-15%202z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='send_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2012C2%2017.5233%206.47667%2022%2012%2022C17.5233%2022%2022%2017.5233%2022%2012C22%206.47667%2017.5233%202%2012%202C6.47667%202%202%206.47667%202%2012ZM12.5303%206.46967C12.3897%206.32902%2012.1989%206.25%2012%206.25C11.8011%206.25%2011.6103%206.32902%2011.4697%206.46967L7.46967%2010.4697C7.17678%2010.7626%207.17678%2011.2374%207.46967%2011.5303C7.76256%2011.8232%208.23744%2011.8232%208.53033%2011.5303L11.2555%208.80517L11.25%2016.9995C11.2497%2017.4137%2011.5853%2017.7497%2011.9995%2017.75C12.4137%2017.7503%2012.7497%2017.4147%2012.75%2017.0005L12.7555%208.81614L15.4697%2011.5303C15.7626%2011.8232%2016.2374%2011.8232%2016.5303%2011.5303C16.8232%2011.2374%2016.8232%2010.7626%2016.5303%2010.4697L12.5303%206.46967Z'/%3e%3c/symbol%3e%3csymbol%20id='settings'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.9096%2010.0908C14.964%2011.1452%2014.964%2012.8548%2013.9096%2013.9092C12.8551%2014.9636%2011.1456%2014.9636%2010.0912%2013.9092C9.03676%2012.8548%209.03676%2011.1452%2010.0912%2010.0908C11.1456%209.03638%2012.8551%209.03638%2013.9096%2010.0908Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.25036%2012C5.25036%2012.297%205.27736%2012.594%205.31336%2012.882L3.72536%2014.124C3.37336%2014.4%203.27736%2014.893%203.50136%2015.28L4.91336%2017.723C5.13636%2018.11%205.61036%2018.273%206.02536%2018.107L7.44736%2017.536C7.72836%2017.423%208.04136%2017.468%208.29336%2017.635C8.51336%2017.781%208.74136%2017.915%208.97736%2018.035C9.24736%2018.172%209.44336%2018.417%209.48636%2018.717L9.70336%2020.23C9.76636%2020.672%2010.1454%2021%2010.5914%2021H13.4084C13.8544%2021%2014.2334%2020.672%2014.2964%2020.23L14.5134%2018.718C14.5564%2018.418%2014.7544%2018.171%2015.0254%2018.035C15.2604%2017.917%2015.4874%2017.784%2015.7064%2017.639C15.9604%2017.471%2016.2744%2017.423%2016.5564%2017.537L17.9754%2018.107C18.3894%2018.273%2018.8634%2018.11%2019.0874%2017.723L20.4994%2015.28C20.7234%2014.893%2020.6274%2014.399%2020.2754%2014.124L18.6874%2012.882C18.7234%2012.594%2018.7504%2012.297%2018.7504%2012C18.7504%2011.703%2018.7234%2011.406%2018.6874%2011.118L20.2754%209.876C20.6274%209.6%2020.7234%209.107%2020.4994%208.72L19.0874%206.277C18.8644%205.89%2018.3904%205.727%2017.9754%205.893L16.5564%206.463C16.2744%206.576%2015.9604%206.529%2015.7064%206.361C15.4874%206.216%2015.2604%206.083%2015.0254%205.965C14.7544%205.829%2014.5564%205.582%2014.5134%205.282L14.2974%203.77C14.2344%203.328%2013.8554%203%2013.4094%203H10.5924C10.1464%203%209.76736%203.328%209.70436%203.77L9.48636%205.284C9.44336%205.583%209.24636%205.829%208.97736%205.966C8.74136%206.086%208.51336%206.221%208.29336%206.366C8.04036%206.532%207.72736%206.577%207.44636%206.464L6.02536%205.893C5.61036%205.727%205.13636%205.89%204.91336%206.277L3.50136%208.72C3.27736%209.107%203.37336%209.601%203.72536%209.876L5.31336%2011.118C5.27736%2011.406%205.25036%2011.703%205.25036%2012Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='settings_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.31336%2012.882C5.27736%2012.594%205.25036%2012.297%205.25036%2012C5.25036%2011.703%205.27736%2011.406%205.31336%2011.118L3.72536%209.876C3.37336%209.601%203.27736%209.107%203.50136%208.72L4.91336%206.277C5.13636%205.89%205.61036%205.727%206.02536%205.893L7.44636%206.464C7.72736%206.577%208.04036%206.532%208.29336%206.366C8.51336%206.221%208.74136%206.086%208.97736%205.966C9.24636%205.829%209.44336%205.583%209.48636%205.284L9.70436%203.77C9.76736%203.328%2010.1464%203%2010.5924%203H13.4094C13.8554%203%2014.2344%203.328%2014.2974%203.77L14.5134%205.282C14.5564%205.582%2014.7544%205.829%2015.0254%205.965C15.2604%206.083%2015.4874%206.216%2015.7064%206.361C15.9604%206.529%2016.2744%206.576%2016.5564%206.463L17.9754%205.893C18.3904%205.727%2018.8644%205.89%2019.0874%206.277L20.4994%208.72C20.7234%209.107%2020.6274%209.6%2020.2754%209.876L18.6874%2011.118C18.7234%2011.406%2018.7504%2011.703%2018.7504%2012C18.7504%2012.297%2018.7234%2012.594%2018.6874%2012.882L20.2754%2014.124C20.6274%2014.399%2020.7234%2014.893%2020.4994%2015.28L19.0874%2017.723C18.8634%2018.11%2018.3894%2018.273%2017.9754%2018.107L16.5564%2017.537C16.2744%2017.423%2015.9604%2017.471%2015.7064%2017.639C15.4874%2017.784%2015.2604%2017.917%2015.0254%2018.035C14.7544%2018.171%2014.5564%2018.418%2014.5134%2018.718L14.2964%2020.23C14.2334%2020.672%2013.8544%2021%2013.4084%2021H10.5914C10.1454%2021%209.76636%2020.672%209.70336%2020.23L9.48636%2018.717C9.44336%2018.417%209.24736%2018.172%208.97736%2018.035C8.74136%2017.915%208.51336%2017.781%208.29336%2017.635C8.04136%2017.468%207.72836%2017.423%207.44736%2017.536L6.02536%2018.107C5.61036%2018.273%205.13636%2018.11%204.91336%2017.723L3.50136%2015.28C3.27736%2014.893%203.37336%2014.4%203.72536%2014.124L5.31336%2012.882ZM13.909%2013.9092C14.9634%2012.8548%2014.9634%2011.1452%2013.909%2010.0908C12.8546%209.03638%2011.145%209.03638%2010.0906%2010.0908C9.0362%2011.1452%209.0362%2012.8548%2010.0906%2013.9092C11.145%2014.9636%2012.8546%2014.9636%2013.909%2013.9092Z'/%3e%3c/symbol%3e%3csymbol%20id='settings_tools'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21%2017H17M13%2017H3M3%207H7M11%207H21M14%2014H16C16.552%2014%2017%2014.448%2017%2015V19C17%2019.552%2016.552%2020%2016%2020H14C13.448%2020%2013%2019.552%2013%2019V15C13%2014.448%2013.448%2014%2014%2014ZM10%2010H8C7.448%2010%207%209.552%207%209V5C7%204.448%207.448%204%208%204H10C10.552%204%2011%204.448%2011%205V9C11%209.552%2010.552%2010%2010%2010Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shield'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.3186%2010.342L11.1706%2014.49L8.68164%2012.001'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.1%205.921C16.641%205.727%2014.403%204.748%2012.637%203.233C12.275%202.923%2011.724%202.923%2011.363%203.233C9.597%204.747%207.359%205.727%204.9%205.921C4.388%205.961%204%206.399%204%206.912V11.242C4%2015.609%207.156%2019.704%2011.478%2020.927C11.817%2021.023%2012.184%2021.023%2012.523%2020.927C16.844%2019.703%2020%2015.61%2020%2011.243V6.913C20%206.399%2019.612%205.961%2019.1%205.921Z'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shield_blue'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2022C17.5229%2022%2022%2017.5228%2022%2012C22%206.47715%2017.5229%202%2012%202C6.47715%202%202%206.47715%202%2012C2%2017.5228%206.47715%2022%2012%2022Z'%20fill='currentColor'/%3e%3cpath%20d='M7%2012.5032V9.38217C7.00195%209.20092%207.0687%209.02635%207.18818%208.89004C7.30765%208.75373%207.47197%208.66468%207.6514%208.63899C8.97837%208.52184%2010.2458%208.03462%2011.3096%207.23273C11.5081%207.08173%2011.7506%206.99997%2012%206.99997C12.2494%206.99997%2012.4919%207.08173%2012.6904%207.23273C13.7542%208.03462%2015.0216%208.52184%2016.3486%208.63899C16.528%208.66468%2016.6923%208.75372%2016.8118%208.89002C16.9313%209.02632%2016.998%209.20088%2017%209.38212V12.5031C17%2014.8847%2014.0417%2016.648%2012.6737%2017.3383C12.4655%2017.4444%2012.2351%2017.4998%2012.0014%2017.5001C11.7677%2017.5003%2011.5373%2017.4453%2011.3289%2017.3396C9.962%2016.6502%207%2014.8824%207%2012.5032Z'%20fill='white'/%3e%3cpath%20d='M13.25%2011.5L11.6883%2013L10.75%2012.1'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shield_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.6969%202C17.0303%200%2011.6969%200%2011.6969%200C11.6969%200%206.3636%200%201.69694%202C-0.303061%2012%201.69694%2020.6667%2011.6969%2024C21.6969%2020.6667%2023.6969%2012%2021.6969%202Z'%20fill='%23C7CCD1'/%3e%3cpath%20d='M11.6966%2022.5893C3.97128%2019.8193%201.00395%2013.2207%202.86995%202.96268C7.07195%201.35268%2011.6486%201.33334%2011.6966%201.33334C11.7439%201.33334%2016.3353%201.36001%2020.5233%202.96268C22.3893%2013.2207%2019.4219%2019.8193%2011.6966%2022.5893Z'%20fill='%2392BBFA'/%3e%3cpath%20d='M20.5239%202.96268C16.3359%201.36001%2011.7446%201.33334%2011.6973%201.33334V22.5893C19.4226%2019.8193%2022.3899%2013.2207%2020.5239%202.96268Z'%20fill='%230B84DA'/%3e%3c/symbol%3e%3csymbol%20id='shield_usd'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M15.9997%2011.3332V9.9998M15.9997%2011.3332L15.205%2011.3319C14.1717%2011.3319%2013.333%2012.1692%2013.333%2013.2039C13.333%2014.0626%2013.9183%2014.8106%2014.749%2015.0186L17.249%2015.6466C18.081%2015.8572%2018.6663%2016.6053%2018.6663%2017.4639C18.6663%2018.4973%2017.829%2019.336%2016.7943%2019.336H15.333C14.6197%2019.336%2014.0303%2018.9453%2013.685%2018.3799M15.9997%2011.3332L16.6663%2011.3319C17.377%2011.3319%2017.9663%2011.7212%2018.3103%2012.2852M15.9997%2019.3331V20.6665M26.6663%2014.9092C26.6663%2020.9639%2022.1157%2026.6253%2015.9997%2028C9.88367%2026.6253%205.33301%2020.9639%205.33301%2014.9092V9.65708C5.33301%208.5744%205.98767%207.59838%206.99034%207.18904L13.657%204.46101C15.1583%203.84633%2016.841%203.84633%2018.3423%204.46101L25.009%207.18904C26.0117%207.59972%2026.6663%208.5744%2026.6663%209.65708V14.9092Z'%20fill='none'%20stroke='currentColor'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='shop'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M16%206V4c0-1.11-.89-2-2-2h-4c-1.11%200-2%20.89-2%202v2H2v13c0%201.11.89%202%202%202h16c1.11%200%202-.89%202-2V6h-6zm-6-2h4v2h-4V4zM9%2018V9l7.5%204L9%2018z'/%3e%3c/symbol%3e%3csymbol%20id='shopping_cart'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7%2018c-1.1%200-1.99.9-1.99%202S5.9%2022%207%2022s2-.9%202-2-.9-2-2-2zM1%202v2h2l3.6%207.59-1.35%202.45c-.16.28-.25.61-.25.96%200%201.1.9%202%202%202h12v-2H7.42c-.14%200-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75%200%201.41-.41%201.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48%200-.55-.45-1-1-1H5.21l-.94-2H1zm16%2016c-1.1%200-1.99.9-1.99%202s.89%202%201.99%202%202-.9%202-2-.9-2-2-2z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='shuffle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2018.979L21%2016.979L19%2014.979'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.182%209L8.602%206.828C8.224%206.308%207.619%206.002%206.976%206.004L3%206.021'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19%208L21%206L19%204'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.8184%2014L15.3984%2016.172C15.7764%2016.692%2016.3814%2016.998%2017.0244%2016.996L21.0004%2016.979'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%206.021L17.024%206.004C16.381%206.001%2015.776%206.308%2015.398%206.828L8.602%2016.172C8.224%2016.692%207.619%2016.998%206.976%2016.996L3%2016.979'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sign_out'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M8.5,11.5c0.6,0,1,0.4,1,1c0,0.6-0.4,1-1,1c-0.6,0-1-0.4-1-1C7.5,11.9,7.9,11.5,8.5,11.5z%20M12,4.4v6.1l0,0.5l7.4,0l-1.7-1.7%20c-0.3-0.3-0.3-0.7-0.1-1l0.1-0.1c0.3-0.3,0.7-0.3,1-0.1l0.1,0.1l3,3c0.3,0.3,0.3,0.7,0.1,1l-0.1,0.1l-3,3c-0.3,0.3-0.8,0.3-1.1,0%20c-0.3-0.3-0.3-0.7-0.1-1l0.1-0.1l1.7-1.7l-7.4,0l0,6.7c0,0.5-0.4,0.8-0.9,0.7l-8.5-1.5C2.3,18.4,2,18.1,2,17.7v-12%20C2,5.4,2.3,5.1,2.6,5l8.5-1.4C11.6,3.5,12,3.9,12,4.4z%20M10.5,5.2l-7,1.1v10.7l7,1.2V5.2z%20M13,18.5l0.8,0l0.1,0%20c0.4,0,0.6-0.4,0.6-0.7l0-4.3H13V18.5z%20M13,10l0-1.3V5l0.7,0c0.4,0,0.7,0.3,0.7,0.6l0,0.1l0,4.3H13z'/%3e%3c/symbol%3e%3csymbol%20id='skype'%20viewBox='0%200%20430.123%20430.123'%3e%3cg%3e%3cpath%20id='Skype'%20d='M412.164,246.198c1.605-10.155,2.45-20.544,2.45-31.148c0-110.215-89.342-199.555-199.56-199.555%20c-10.576,0-20.995,0.871-31.141,2.458C165.534,6.581,143.842,0,120.595,0C53.996,0,0.005,53.984,0.005,120.59%20c0,23.242,6.585,44.916,17.952,63.332c-1.573,10.172-2.439,20.528-2.439,31.132c0,110.223,89.34,199.536,199.532,199.536%20c10.585,0,21.007-0.816,31.152-2.417c18.398,11.35,40.072,17.949,63.314,17.949c66.617,0,120.602-53.998,120.602-120.602%20C430.123,286.269,423.542,264.6,412.164,246.198z%20M309.801,305.81c-8.442,12.153-20.843,21.65-37.047,28.479%20c-16.237,6.847-35.428,10.254-57.59,10.254c-26.562,0-48.554-4.648-65.913-14.034c-12.305-6.721-22.313-15.737-30.007-26.98%20c-7.71-11.252-11.619-22.271-11.619-33.015c0-6.338,2.417-11.85,7.122-16.344c4.754-4.527,10.877-6.796,18.104-6.796%20c5.92,0,11.005,1.783,15.145,5.316c4.109,3.532,7.556,8.667,10.375,15.443c3.379,7.85,7.049,14.412,10.954,19.648%20c3.881,5.171,9.343,9.488,16.417,12.867c6.996,3.388,16.307,5.082,27.958,5.082c15.945,0,28.831-3.449,38.693-10.253%20c9.912-6.866,14.673-15.22,14.673-25.314c0-8.051-2.567-14.445-7.831-19.43c-5.312-5.05-12.172-8.896-20.685-11.579%20c-8.546-2.711-20.02-5.586-34.399-8.615c-19.308-4.214-35.456-9.119-48.533-14.752c-13.094-5.654-23.522-13.383-31.251-23.146%20c-7.745-9.859-11.607-22.113-11.607-36.627c0-13.84,4.077-26.217,12.239-36.989c8.158-10.802,19.961-19.07,35.351-24.829%20c15.336-5.757,33.391-8.637,54.075-8.637c16.541,0,30.849,1.914,42.96,5.722c12.078,3.836,22.146,8.898,30.196,15.25%20c7.999,6.338,13.885,13.023,17.613,20.038c3.725,7.036,5.601,13.908,5.601,20.614c0,6.235-2.417,11.89-7.127,16.846%20c-4.709,4.963-10.733,7.493-17.768,7.47c-6.342,0-11.317-1.463-14.767-4.56c-3.36-2.996-6.889-7.766-10.706-14.414%20c-4.825-9.276-10.604-16.503-17.324-21.672c-6.543-5.073-17.338-7.714-32.359-7.682c-13.898,0-25.018,2.84-33.411,8.394%20c-8.445,5.643-12.482,12.19-12.501,19.861c0.014,4.807,1.396,8.86,4.177,12.326c2.824,3.498,6.753,6.529,11.803,9.084%20c5.052,2.595,10.191,4.602,15.355,6.046c5.225,1.481,13.894,3.622,25.944,6.457c15.112,3.257,28.819,6.896,41.136,10.862%20c12.293,3.986,22.784,8.793,31.451,14.52c8.736,5.71,15.564,12.99,20.438,21.783c4.909,8.807,7.354,19.564,7.354,32.222%20C322.509,279.968,318.263,293.676,309.801,305.81z'/%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='skype_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2300AFF0'/%3e%3cpath%20d='M18.9691%2013.2492C18.9643%2013.2755%2018.961%2013.3021%2018.956%2013.3285L18.9304%2013.1774C18.9444%2013.2009%2018.956%2013.2254%2018.9691%2013.2492C19.0465%2012.8278%2019.0871%2012.3964%2019.0871%2011.9652C19.0871%2011.0091%2018.9%2010.0815%2018.5301%209.20822C18.1733%208.36469%2017.6628%207.60715%2017.0119%206.95674C16.362%206.30633%2015.604%205.79584%2014.7609%205.43904C13.8879%205.06965%2012.9603%204.88247%2012.0042%204.88247C11.5535%204.88247%2011.1022%204.92475%2010.663%205.00908C10.662%205.00932%2010.6608%205.00932%2010.6596%205.00955C10.6843%205.02262%2010.7093%205.03426%2010.7335%205.0478L10.5846%205.02452C10.6095%205.01977%2010.6347%205.01454%2010.6596%205.00955C10.057%204.6891%209.37925%204.51807%208.69321%204.51807C7.57316%204.51807%206.52011%204.95421%205.72813%205.74643C4.93638%206.53842%204.5%207.59147%204.5%208.71151C4.5%209.42439%204.68339%2010.1252%205.0276%2010.7445C5.03211%2010.7188%205.0352%2010.6929%205.04019%2010.6672L5.06584%2010.8157C5.05254%2010.7924%205.0409%2010.7682%205.0276%2010.7445C4.95776%2011.1457%204.92094%2011.5557%204.92094%2011.9652C4.92094%2012.9216%205.10812%2013.849%205.47799%2014.7224C5.83431%2015.5662%206.34504%2016.3233%206.99521%2016.9737C7.64609%2017.6241%208.40316%2018.1353%209.24717%2018.4911C10.1202%2018.8612%2011.048%2019.0487%2012.0042%2019.0487C12.4203%2019.0487%2012.8375%2019.0107%2013.2446%2018.9384C13.2209%2018.9251%2013.1967%2018.913%2013.1724%2018.899L13.3237%2018.9256C13.2976%2018.9306%2013.2712%2018.9337%2013.2446%2018.9384C13.872%2019.2933%2014.5823%2019.482%2015.3075%2019.482C16.4273%2019.482%2017.4799%2019.0465%2018.2719%2018.2541C19.0641%2017.4626%2019.5%2016.4093%2019.5%2015.2892C19.5%2014.574%2019.3157%2013.8708%2018.9691%2013.2492ZM12.0324%2016.3031C9.51607%2016.3031%208.39033%2015.0659%208.39033%2014.1388C8.39033%2013.6632%208.74143%2013.3299%209.22531%2013.3299C10.3021%2013.3299%2010.0232%2014.8761%2012.0324%2014.8761C13.061%2014.8761%2013.629%2014.3177%2013.629%2013.7461C13.629%2013.4024%2013.4594%2013.0214%2012.7821%2012.8544L10.5439%2012.2956C8.74143%2011.8436%208.41432%2010.8692%208.41432%209.95318C8.41432%208.05136%2010.205%207.33729%2011.8866%207.33729C13.4356%207.33729%2015.2617%208.19342%2015.2617%209.33436C15.2617%209.82324%2014.8383%2010.1076%2014.3547%2010.1076C13.4356%2010.1076%2013.6048%208.83551%2011.7535%208.83551C10.8349%208.83551%2010.3261%209.25146%2010.3261%209.84675C10.3261%2010.4409%2011.0516%2010.6307%2011.6816%2010.7741L13.3382%2011.1419C15.1529%2011.5462%2015.613%2012.6056%2015.613%2013.6036C15.613%2015.1491%2014.4267%2016.3031%2012.0324%2016.3031ZM13.1724%2018.899C13.1967%2018.913%2013.2209%2018.9251%2013.2446%2018.9384C13.2712%2018.9337%2013.2976%2018.9306%2013.3237%2018.9256L13.1724%2018.899ZM18.956%2013.3285C18.961%2013.3021%2018.9643%2013.2755%2018.9691%2013.2492C18.956%2013.2254%2018.9444%2013.2009%2018.9304%2013.1774L18.956%2013.3285ZM5.04019%2010.6672C5.0352%2010.6929%205.03211%2010.7188%205.0276%2010.7445C5.0409%2010.7682%205.05254%2010.7924%205.06584%2010.8157L5.04019%2010.6672ZM10.7335%205.0478C10.7093%205.03426%2010.6843%205.02262%2010.6596%205.00955C10.6347%205.01454%2010.6095%205.01977%2010.5846%205.02452L10.7335%205.0478Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='slack'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.33289%202C8.22732%202.00082%207.33257%202.89623%207.33339%203.99959C7.33257%205.10296%208.22814%205.99837%209.33371%205.99918H11.334V4.00041C11.3349%202.89704%2010.4393%202.00163%209.33289%202C9.33371%202%209.33371%202%209.33289%202V2ZM9.33289%207.33333H4.00033C2.89476%207.33415%201.99919%208.22956%202%209.33293C1.99837%2010.4363%202.89394%2011.3317%203.99951%2011.3333H9.33289C10.4385%2011.3325%2011.334%2010.4371%2011.3332%209.33374C11.334%208.22956%2010.4385%207.33415%209.33289%207.33333Z'%20fill='%2336C5F0'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M22.0002%209.33293C22.0011%208.22956%2021.1055%207.33415%2019.9999%207.33333C18.8943%207.33415%2017.9988%208.22956%2017.9996%209.33293V11.3333H19.9999C21.1055%2011.3325%2022.0011%2010.4371%2022.0002%209.33293ZM16.6668%209.33293V3.99959C16.6677%202.89704%2015.7729%202.00163%2014.6673%202C13.5618%202.00082%2012.6662%202.89623%2012.667%203.99959V9.33293C12.6654%2010.4363%2013.5609%2011.3317%2014.6665%2011.3333C15.7721%2011.3325%2016.6677%2010.4371%2016.6668%209.33293Z'%20fill='%232EB67D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.6663%2022C15.7719%2021.9992%2016.6675%2021.1038%2016.6667%2020.0005C16.6675%2018.8971%2015.7719%2018.0017%2014.6663%2018.0009H12.666V20.0005C12.6652%2021.103%2013.5608%2021.9984%2014.6663%2022ZM14.6663%2016.6659H19.9997C21.1053%2016.6651%2022.0009%2015.7697%2022.0001%2014.6663C22.0017%2013.5629%2021.1061%2012.6675%2020.0006%2012.6659H14.6672C13.5616%2012.6667%2012.666%2013.5621%2012.6668%2014.6655C12.666%2015.7697%2013.5608%2016.6651%2014.6663%2016.6659Z'%20fill='%23ECB22E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2%2014.6662C1.99918%2015.7696%202.89476%2016.665%204.00033%2016.6658C5.1059%2016.665%206.00148%2015.7696%206.00066%2014.6662V12.6666H4.00033C2.89476%2012.6674%201.99918%2013.5629%202%2014.6662ZM7.3334%2014.6662V19.9996C7.33176%2021.1029%208.22733%2021.9984%209.33291%2022C10.4385%2021.9992%2011.3341%2021.1038%2011.3332%2020.0004V14.6679C11.3349%2013.5645%2010.4393%2012.6691%209.33372%2012.6674C8.22733%2012.6674%207.33258%2013.5629%207.3334%2014.6662C7.3334%2014.6662%207.3334%2014.667%207.3334%2014.6662Z'%20fill='%23E01E5A'/%3e%3c/symbol%3e%3csymbol%20id='smile_star_eye'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M24%2012C24%2018.6273%2018.6273%2024%2012%2024C5.37267%2024%200%2018.6273%200%2012C0%205.37267%205.37267%200%2012%200C18.6273%200%2024%205.37267%2024%2012Z'%20fill='%23FFCC4D'/%3e%3cpath%20d='M12.0003%2014C9.58499%2014%207.98233%2013.7187%206.00033%2013.3333C5.54766%2013.246%204.66699%2013.3333%204.66699%2014.6667C4.66699%2017.3333%207.73033%2020.6667%2012.0003%2020.6667C16.2697%2020.6667%2019.3337%2017.3333%2019.3337%2014.6667C19.3337%2013.3333%2018.453%2013.2453%2018.0003%2013.3333C16.0183%2013.7187%2014.4157%2014%2012.0003%2014Z'%20fill='%239C5E00'/%3e%3cpath%20d='M6%2014.6667C6%2014.6667%208%2015.3333%2012%2015.3333C16%2015.3333%2018%2014.6667%2018%2014.6667C18%2014.6667%2016.6667%2017.3333%2012%2017.3333C7.33333%2017.3333%206%2014.6667%206%2014.6667Z'%20fill='white'/%3e%3cpath%20d='M10.4545%202.942L7.42652%203.476L5.86652%200.640667C5.69452%200.328001%205.34118%200.160667%204.99185%200.222001C4.64052%200.284001%204.36718%200.562667%204.31252%200.914667L3.81585%204.11267L0.787849%204.64667C0.431183%204.70933%200.155849%204.99667%200.107183%205.356C0.058516%205.71533%200.247849%206.06467%200.575849%206.22067L3.28918%207.50867L2.79052%2010.7167C2.73518%2011.074%202.91652%2011.426%203.23918%2011.5893C3.35852%2011.6493%203.48652%2011.678%203.61385%2011.678C3.83185%2011.678%204.04718%2011.5927%204.20785%2011.43L6.54918%209.056L9.56118%2010.486C9.88785%2010.6407%2010.2772%2010.568%2010.5252%2010.3047C10.7732%2010.0413%2010.8225%209.64867%2010.6485%209.332L9.08318%206.48667L11.1932%204.348C11.4478%204.09%2011.5058%203.69667%2011.3378%203.37533C11.1685%203.054%2010.8092%202.88%2010.4545%202.942ZM13.5452%202.942L16.5732%203.476L18.1332%200.640667C18.3052%200.328001%2018.6585%200.160667%2019.0078%200.222001C19.3585%200.284001%2019.6318%200.562667%2019.6865%200.914667L20.1832%204.11267L23.2112%204.64667C23.5685%204.70933%2023.8438%204.996%2023.8918%205.35533C23.9398%205.71467%2023.7512%206.064%2023.4232%206.22L20.7098%207.508L21.2085%2010.716C21.2638%2011.0733%2021.0825%2011.4253%2020.7598%2011.5887C20.6405%2011.6487%2020.5125%2011.6773%2020.3852%2011.6773C20.1672%2011.6773%2019.9518%2011.592%2019.7912%2011.4293L17.4498%209.05533L14.4378%2010.4853C14.1112%2010.64%2013.7218%2010.5673%2013.4738%2010.304C13.2258%2010.0407%2013.1765%209.648%2013.3505%209.33133L14.9158%206.48667L12.8058%204.348C12.5512%204.09%2012.4932%203.69667%2012.6612%203.37533C12.8312%203.054%2013.1905%202.88%2013.5452%202.942Z'%20fill='%23E95F28'/%3e%3c/symbol%3e%3csymbol%20id='sort_asc'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2017L18%2020M18%2020L21%2017M18%2020V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2019.5H3M11%2014.5H5M11%209.5H7M11%204.5H9'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_az'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.395%2014.5H19.606L17.5005%2017L15.395%2019.5H19.606M20%209.5L17.5%204.5L15%209.5M15.419%208.662H19.581'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4%2016.5L7%2019.5M7%2019.5L10%2016.5M7%2019.5V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_desc'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15%2016.5L18%2019.5M18%2019.5L21%2016.5M18%2019.5V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2019.5H9M11%2014.5H7M11%209.5H5M11%204.5H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_directions'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%208L7%205M7%205L4%208M7%205V19M14%2016L17%2019M17%2019L20%2016M17%2019V5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='sort_list'%20viewBox='0%200%2018%2018'%3e%3cg%20class='b'%3e%3cpath%20class='a'%20d='M8.78,11.415V9.659H15.8v1.756H8.78m0,5.268V14.927h3.512v1.756H8.78m0-10.537V4.39H19.317V6.146H8.78m-3.512,8.78h2.2L4.39,18,1.317,14.927h2.2V3.512H5.268Z'%20transform='translate(-1.317%20-1.756)'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='sort_za'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2016.5L7%2019.5M7%2019.5L10%2016.5M7%2019.5V4.5'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.395%204.5H19.606L15.395%209.5H19.606M20%2019.5L17.5%2014.5L15%2019.5M15.419%2018.662H19.581'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='spy_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M22.0002%2024V23.3333C22.0002%2021.1246%2020.2088%2019.3333%2018.0001%2019.3333H6.00004C3.79135%2019.3333%202%2021.1246%202%2023.3333V24H22.0002ZM17.8335%2013.6232C18.6255%2013.7619%2019.5795%2013.7092%2019.4442%2014.2346C19.1248%2015.4706%2017.7081%2015.0126%2017.4581%2015.0266C17.2081%2015.0399%2017.8335%2013.6232%2017.8335%2013.6232Z'%20fill='%238F99A3'/%3e%3cpath%20d='M18.0427%2013.7633C19.2928%2013.9299%2019.7368%2014.0406%2018.8201%2014.4019C18.3054%2014.6053%2017.3247%2017.604%2016.5994%2017.1473C15.8747%2016.6906%2018.0427%2013.7633%2018.0427%2013.7633Z'%20fill='%23202427'/%3e%3cpath%20d='M6.17146%2013.6232C5.37945%2013.7619%204.42544%2013.7092%204.56078%2014.2346C4.88012%2015.4706%206.29679%2015.0126%206.5468%2015.0266C6.7968%2015.0399%206.17146%2013.6232%206.17146%2013.6232Z'%20fill='%238F99A3'/%3e%3cpath%20d='M5.96249%2013.7633C4.71248%2013.9299%204.26847%2014.0406%205.18515%2014.4019C5.69982%2014.6053%206.6805%2017.604%207.40584%2017.1473C8.13118%2016.6906%205.96249%2013.7633%205.96249%2013.7633Z'%20fill='%23202427'/%3e%3cpath%20d='M14.514%202.6778C13.2086%202.25513%2010.1366%202.37046%209.3686%203.36914C7.37192%203.40781%205.0299%205.21182%204.72256%207.59251C4.41856%209.94853%205.0959%2011.0425%205.33723%2012.8146C5.6099%2014.8219%206.73858%2015.4639%207.64125%2015.7326C8.93927%2017.4473%2010.3193%2017.3739%2012.636%2017.3739C17.1607%2017.3739%2019.3154%2014.3466%2019.506%209.20519C19.6207%206.09517%2017.796%203.73981%2014.514%202.6778Z'%20fill='%23202427'/%3e%3cpath%20d='M17.1021%209.42452C16.6641%208.81851%2016.1041%208.33051%2014.8754%208.15717C15.3361%208.36851%2015.7775%209.09785%2015.8355%209.50119C15.8928%209.90452%2015.9508%2010.2305%2015.5861%209.82786C14.1248%208.21251%2012.5334%208.84851%2010.9567%207.86184C9.8554%207.1725%209.52006%206.41049%209.52006%206.41049C9.52006%206.41049%209.3854%207.42783%207.71538%208.46451C7.23137%208.76518%206.65337%209.43452%206.33337%2010.4225C6.1027%2011.1332%206.1747%2011.7665%206.1747%2012.8492C6.1747%2016.0092%208.77872%2018.6666%2011.9921%2018.6666C15.2055%2018.6666%2017.8095%2015.9866%2017.8095%2012.8492C17.8068%2010.8839%2017.6015%2010.1159%2017.1021%209.42452Z'%20fill='%23FFCC4D'/%3e%3cpath%20d='M12.6235%2014.3766H11.3422C11.1655%2014.3766%2011.0215%2014.2333%2011.0215%2014.0559V13.9399C11.0215%2013.7633%2011.1648%2013.6186%2011.3422%2013.6186H12.6235C12.8002%2013.6186%2012.9448%2013.7626%2012.9448%2013.9399V14.0559C12.9448%2014.2333%2012.8008%2014.3766%2012.6235%2014.3766Z'%20fill='%235C6670'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.10614%209.85853C5.20481%209.95654%205.69815%2010.2525%205.79682%2010.5479C5.89548%2010.8432%206.09349%2012.5172%206.68549%2013.0099C7.29616%2013.5179%209.59885%2013.3286%2010.0402%2013.1092C11.0269%2012.6172%2011.1482%2011.2439%2011.3229%2010.5479C11.4215%2010.1539%2012.0135%2010.1539%2012.0135%2010.1539C12.0135%2010.1539%2012.6055%2010.1539%2012.7042%2010.5479C12.8789%2011.2439%2013.0002%2012.6172%2013.9869%2013.1086C14.4282%2013.3286%2016.7309%2013.5179%2017.3429%2013.0106C17.9343%2012.5179%2018.1316%2010.8439%2018.2303%2010.5479C18.3276%2010.2525%2018.8223%209.9572%2018.9203%209.85853C19.0189%209.75987%2019.0189%209.36586%2018.9203%209.2672C18.7229%209.07053%2016.3949%208.89453%2013.8882%209.16853C13.3882%209.2232%2013.1982%209.3652%2012.0135%209.3652C10.8295%209.3652%2010.6389%209.22253%2010.1389%209.16853C7.63283%208.89453%205.30415%209.06986%205.10681%209.2672C5.00748%209.36586%205.00748%209.76053%205.10614%209.85853Z'%20fill='%23202427'/%3e%3cpath%20d='M5.23938%205.59651C5.23938%205.59651%206.14539%20-0.337551%209.19408%200.0151193C11.5354%200.285789%2012.4541%200.565124%2014.4161%200.0797866C15.7141%20-0.24155%2017.1262%200.837127%2017.9775%202.99915C18.5215%204.37783%2018.7935%205.69317%2018.7935%205.69317C18.7935%205.69317%2021.4189%205.4365%2021.5702%206.84785C21.7222%208.2592%2018.6675%209.99188%2010.9774%209.99188C6.66739%209.99121%202.22069%208.41986%202.00935%207.10452C1.79801%205.78917%205.23938%205.59651%205.23938%205.59651Z'%20fill='%238F99A3'/%3e%3cpath%20d='M5.418%204.76648C5.418%204.76648%205.23799%205.50249%205.14733%206.01382C5.05666%206.52583%205.29799%206.87783%206.95068%207.22984C9.14203%207.69651%2014.0701%207.69117%2016.9894%206.9745C18.1621%206.6865%2018.9135%206.4945%2018.8235%205.91916C18.7121%205.20715%2018.6928%205.20848%2018.4628%204.44714C18.4628%204.44714%2017.4781%204.78181%2016.1781%205.08715C14.4047%205.50315%209.53537%205.69449%207.19068%205.18315C5.94133%204.90981%205.418%204.76648%205.418%204.76648ZM5.32733%2014.0686C5.09133%2014.1652%207.27468%2014.9872%2010.314%2015.0406C13.4947%2015.0966%2014.4701%2015.3006%2013.7447%2016.0133C12.9807%2016.7633%2013.1767%2017.9426%2013.2307%2018.2919C13.2847%2018.6413%2014.5954%2019.5693%2014.7027%2019.9986C14.8101%2020.4286%2013.8834%2023.9727%2013.8834%2023.9727L8.06402%2023.8047C6.354%2017.9086%206.142%2018.1373%205.32733%2014.7352C5.16666%2014.0632%205.32733%2014.0686%205.32733%2014.0686Z'%20fill='%23202427'/%3e%3cpath%20d='M4.66047%2014.0959C4.42447%2014.1932%206.60782%2015.0146%209.64719%2015.0679C12.8279%2015.1239%2013.8032%2015.3279%2013.0779%2016.0406C12.3139%2016.7906%2012.6352%2017.9699%2012.6892%2018.3193C12.7432%2018.6686%2013.9286%2019.5966%2014.0366%2020.0266C14.1432%2020.4559%2013.2159%2024%2013.2159%2024L7.3965%2023.832C5.68648%2017.9359%205.47448%2018.1646%204.65981%2014.7626C4.49981%2014.0906%204.66047%2014.0959%204.66047%2014.0959Z'%20fill='%238F99A3'/%3e%3cpath%20d='M18.7027%2014.0686C18.9387%2014.1652%2016.7554%2014.9872%2013.7167%2015.0406C10.536%2015.0966%209.56066%2015.3006%2010.286%2016.0132C11.05%2016.7633%2012.27%2017.9413%2012.2167%2018.2906C12.1627%2018.6399%209.43532%2019.5693%209.32799%2019.9986C9.22065%2020.4286%2010.1473%2023.9727%2010.1473%2023.9727L15.9667%2023.8047C17.6767%2017.9086%2017.8887%2018.1373%2018.7027%2014.7352C18.8634%2014.0632%2018.7027%2014.0686%2018.7027%2014.0686Z'%20fill='%23202427'/%3e%3cpath%20d='M19.3063%2014.0686C19.5423%2014.1652%2017.3589%2014.9872%2014.3202%2015.0406C11.1395%2015.0966%2010.1642%2015.3006%2010.8895%2016.0132C11.6535%2016.7633%2012.8742%2017.9413%2012.8202%2018.2906C12.7662%2018.6399%2010.0388%2019.5693%209.9315%2019.9986C9.82417%2020.4286%2010.7508%2023.9727%2010.7508%2023.9727L16.5222%2023.9793C18.2322%2018.0833%2018.4923%2018.1373%2019.3069%2014.7352C19.4669%2014.0632%2019.3063%2014.0686%2019.3063%2014.0686Z'%20fill='%238F99A3'/%3e%3c/symbol%3e%3csymbol%20id='staff'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M4,14h9c1.1,0,1.9,0.8,2,1.9V16v1.5C15,21,11.3,22,8.5,22c-2.7,0-6.3-1-6.5-4.3v-0.2V16C2,14.9,2.8,14.1,4,14L4,14z%20M15.2,14H20c1.1,0,1.9,0.8,2,1.9V16v1c0,3.1-2.9,4-5,4c-0.7,0-1.4-0.1-2.1-0.3c0.3-0.4,0.6-0.8,0.8-1.3c0.5,0.1,1.1,0.1,1.3,0.1%20h0.3c1,0,3.1-0.4,3.2-2.3V17v-1c0-0.2-0.2-0.4-0.4-0.5H20h-4.1c-0.1-0.5-0.3-1-0.6-1.3L15.2,14H20H15.2z%20M4,15.5L4,15.5%20c-0.2,0-0.3,0.1-0.4,0.1c0,0-0.1,0.1-0.1,0.3V16v1.5c0,1,0.5,1.7,1.4,2.2c0.8,0.4,2,0.7,3.3,0.8h0.3h0.3c1.3,0,2.4-0.3,3.3-0.8%20s1.4-1.1,1.4-2.1v-0.2V16c0-0.2-0.2-0.4-0.4-0.5H13H4z%20M8.5,3C11,3,13,5,13,7.5S11,12,8.5,12S4,10,4,7.5S6,3,8.5,3z%20M17.5,5%20C19.4,5,21,6.6,21,8.5S19.4,12,17.5,12S14,10.4,14,8.5S15.6,5,17.5,5z%20M8.5,4.5c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3%20S10.2,4.5,8.5,4.5z%20M17.5,6.5c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S18.6,6.5,17.5,6.5z'/%3e%3c/symbol%3e%3csymbol%20id='star'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%2017.27L18.18%2021l-1.64-7.03L22%209.24l-7.19-.61L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='star_round'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.7328%2020.829C7.48434%2020.9587%207.20452%2021.0162%206.92506%2020.9949C6.6456%2020.9737%206.37768%2020.8746%206.15167%2020.7089C5.92566%2020.5431%205.7506%2020.3174%205.64634%2020.0573C5.54208%2019.7971%205.5128%2019.5129%205.5618%2019.237L6.3708%2014.6L2.9648%2011.336C2.76077%2011.1414%202.61571%2010.8933%202.54624%2010.6201C2.47678%2010.3468%202.48573%2010.0595%202.57206%209.79116C2.65839%209.52277%202.8186%209.28415%203.03434%209.10265C3.25008%208.92115%203.5126%208.80413%203.7918%208.765L8.5208%208.089L10.6558%203.83C10.7799%203.57959%2010.9715%203.36884%2011.2089%203.2215C11.4464%203.07415%2011.7203%202.99608%2011.9998%202.99608C12.2793%202.99608%2012.5532%203.07415%2012.7906%203.2215C13.0281%203.36884%2013.2197%203.57959%2013.3438%203.83L15.4788%208.089L20.2078%208.765C20.487%208.80413%2020.7495%208.92115%2020.9653%209.10265C21.181%209.28415%2021.3412%209.52277%2021.4275%209.79116C21.5139%2010.0595%2021.5228%2010.3468%2021.4533%2010.6201C21.3839%2010.8933%2021.2388%2011.1414%2021.0348%2011.336L17.6288%2014.6L18.4378%2019.238C18.4868%2019.5139%2018.4575%2019.7981%2018.3532%2020.0583C18.249%2020.3184%2018.0739%2020.5441%2017.8479%2020.7099C17.6219%2020.8756%2017.354%2020.9747%2017.0745%2020.9959C16.7951%2021.0172%2016.5153%2020.9597%2016.2668%2020.83L11.9998%2018.625L7.7328%2020.829Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='star_round_solid'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.50832%2021.3193C7.24679%2021.4561%206.95224%2021.5168%206.65806%2021.4944C6.36389%2021.472%206.08186%2021.3674%205.84395%2021.1925C5.60604%2021.0176%205.42176%2020.7794%205.31201%2020.5048C5.20226%2020.2303%205.17143%2019.9304%205.22301%2019.6392L6.07461%2014.7457L2.48927%2011.3012C2.2745%2011.0959%202.1218%2010.834%202.04868%2010.5457C1.97556%2010.2573%201.98497%209.95415%202.07585%209.67092C2.16673%209.38769%202.33538%209.13587%202.56248%208.94433C2.78957%208.7528%203.06591%208.6293%203.35981%208.588L8.33782%207.87461L10.5852%203.38004C10.7159%203.11579%2010.9175%202.89338%2011.1675%202.73789C11.4175%202.58239%2011.7058%202.5%2012%202.5C12.2942%202.5%2012.5825%202.58239%2012.8325%202.73789C13.0825%202.89338%2013.2841%203.11579%2013.4148%203.38004L15.6622%207.87461L20.6402%208.588C20.9341%208.6293%2021.2104%208.7528%2021.4375%208.94433C21.6646%209.13587%2021.8333%209.38769%2021.9241%209.67092C22.015%209.95415%2022.0244%2010.2573%2021.9513%2010.5457C21.8782%2010.834%2021.7255%2011.0959%2021.5107%2011.3012L17.9254%2014.7457L18.777%2019.6403C18.8286%2019.9315%2018.7977%2020.2314%2018.688%2020.5059C18.5782%2020.7804%2018.394%2021.0187%2018.1561%2021.1936C17.9181%2021.3685%2017.6361%2021.473%2017.3419%2021.4955C17.0478%2021.5179%2016.7532%2021.4572%2016.4917%2021.3203L12%2018.9934L7.50832%2021.3193Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='stars'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4.69%2015.0288L3.495%2013.4648C2.835%2012.5998%202.835%2011.3998%203.495%2010.5358L4.69%208.97275L4.951%207.02075C5.095%205.94075%205.945%205.09175%207.025%204.94875L8.973%204.68975H8.971L10.535%203.49575C11.4%202.83475%2012.599%202.83475%2013.464%203.49575L15.027%204.68975L16.98%204.94975C18.06%205.09375%2018.909%205.94375%2019.052%207.02375L19.31%208.97075L20.503%2010.5358C21.163%2011.4008%2021.164%2012.5998%2020.503%2013.4648L19.308%2015.0278L19.048%2016.9797C18.904%2018.0597%2018.054%2018.9088%2016.974%2019.0518L15.026%2019.3097H15.028L13.464%2020.5047C12.599%2021.1657%2011.4%2021.1657%2010.535%2020.5047L8.972%2019.3108L7.02%2019.0497C5.94%2018.9057%205.091%2018.0557%204.948%2016.9757L4.69%2015.0288Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11.6311%2014.975L10.8011%2015.411C10.5341%2015.551%2010.2101%2015.527%209.96615%2015.351L9.65615%2015.126C9.41215%2014.949%209.28915%2014.649%209.34015%2014.351L9.49915%2013.427C9.54315%2013.17%209.45815%2012.907%209.27115%2012.725L8.60015%2012.071C8.38315%2011.86%208.30615%2011.545%208.39915%2011.258L8.51715%2010.894C8.61015%2010.607%208.85815%2010.398%209.15715%2010.354L10.0851%2010.219C10.3431%2010.182%2010.5661%2010.019%2010.6821%209.78495L11.0971%208.94395C11.2301%208.67295%2011.5061%208.50195%2011.8081%208.50195H12.1911C12.4931%208.50195%2012.7691%208.67295%2012.9031%208.94295L13.3181%209.78395C13.4341%2010.018%2013.6571%2010.181%2013.9151%2010.218L14.8431%2010.353C15.1421%2010.397%2015.3901%2010.606%2015.4831%2010.893L15.6011%2011.257C15.6941%2011.544%2015.6161%2011.859%2015.4001%2012.07L14.7291%2012.724C14.5421%2012.906%2014.4571%2013.169%2014.5011%2013.426L14.6601%2014.35C14.7101%2014.647%2014.5881%2014.948%2014.3441%2015.125L14.0341%2015.35C13.7901%2015.528%2013.4671%2015.552%2013.1991%2015.411L12.3691%2014.975C12.1381%2014.854%2011.8621%2014.854%2011.6311%2014.975Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='stars_fill'%20viewBox='0%200%2032%2032'%3e%3cpath%20d='M6.25333%2020.0383L4.66%2017.953C3.78%2016.7997%203.78%2015.1997%204.66%2014.0477L6.25333%2011.9637L6.60133%209.361C6.79333%207.921%207.92667%206.789%209.36667%206.59833L11.964%206.253H11.9613L14.0467%204.661C15.2%203.77967%2016.7987%203.77967%2017.952%204.661L20.036%206.253L22.64%206.59967C24.08%206.79167%2025.212%207.925%2025.4027%209.365L25.7467%2011.961L27.3373%2014.0477C28.2173%2015.201%2028.2187%2016.7997%2027.3373%2017.953L25.744%2020.037L25.3973%2022.6397C25.2053%2024.0797%2024.072%2025.2117%2022.632%2025.4023L20.0347%2025.7463H20.0373L17.952%2027.3397C16.7987%2028.221%2015.2%2028.221%2014.0467%2027.3397L11.9627%2025.7477L9.36%2025.3997C7.92%2025.2077%206.788%2024.0743%206.59733%2022.6343L6.25333%2020.0383Z'%20fill='currentColor'/%3e%3cpath%20d='M15.5082%2019.9666L14.4015%2020.5479C14.0455%2020.7346%2013.6135%2020.7026%2013.2882%2020.4679L12.8749%2020.1679C12.5495%2019.9319%2012.3855%2019.5319%2012.4535%2019.1346L12.6655%2017.9026C12.7242%2017.5599%2012.6109%2017.2093%2012.3615%2016.9666L11.4669%2016.0946C11.1775%2015.8133%2011.0749%2015.3933%2011.1989%2015.0106L11.3562%2014.5253C11.4802%2014.1426%2011.8109%2013.8639%2012.2095%2013.8053L13.4469%2013.6253C13.7909%2013.5759%2014.0882%2013.3586%2014.2429%2013.0466L14.7962%2011.9253C14.9735%2011.5639%2015.3415%2011.3359%2015.7442%2011.3359H16.2549C16.6575%2011.3359%2017.0255%2011.5639%2017.2042%2011.9239L17.7575%2013.0453C17.9122%2013.3573%2018.2095%2013.5746%2018.5535%2013.6239L19.7909%2013.8039C20.1895%2013.8626%2020.5202%2014.1413%2020.6442%2014.5239L20.8015%2015.0093C20.9255%2015.3919%2020.8215%2015.8119%2020.5335%2016.0933L19.6389%2016.9653C19.3895%2017.2079%2019.2762%2017.5586%2019.3349%2017.9013L19.5469%2019.1333C19.6135%2019.5293%2019.4509%2019.9306%2019.1255%2020.1666L18.7122%2020.4666C18.3869%2020.7039%2017.9562%2020.7359%2017.5989%2020.5479L16.4922%2019.9666C16.1842%2019.8053%2015.8162%2019.8053%2015.5082%2019.9666Z'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='stats_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.7,2,10.4c0,0,0,0,0,0v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.8,8.4-8.4v-3.2%20C22,5.8,18.2,2,13.6,2z%20M17.3,12.2C17.3,12.3,17.3,12.3,17.3,12.2c-0.1,0.1-0.1,0.1-0.2,0l-1.2-1.2l-3.6,3.5c0,0,0,0,0,0%20c-0.1,0.1-0.3,0.1-0.4,0l-2-2c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.3,0l-3.3,3.3c-0.1,0.1-0.2,0.1-0.2,0l-0.6-0.6c0,0,0,0,0,0%20c-0.1-0.1-0.1-0.2,0-0.3l4-4c0,0,0,0,0,0c0.1-0.1,0.3-0.1,0.4,0l2.1,2.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0l2.8-2.8l-1.3-1.3c0,0,0,0,0,0%20c0,0,0-0.1,0-0.1L18,8.1c0,0,0,0,0,0c0.1,0,0.1,0.1,0.1,0.2L17.3,12.2z'/%3e%3c/symbol%3e%3csymbol%20id='steam'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cpath%20d='M15.8,7.5c0,1,0.8,1.9,1.9,1.9s1.9-0.8,1.9-1.9s-0.8-1.9-1.9-1.9S15.8,6.5,15.8,7.5z%20M20.8,4.4c-1.7-1.7-4.5-1.7-6.2,0%20c-0.7,0.7-1.1,1.6-1.2,2.5l0,0l-4,6.1c-0.5,0-1.1,0.2-1.6,0.4L4.6,11c-0.7-0.6-1.8-0.4-2.3,0.3S1.9,13,2.6,13.6l3.1,2.4%20c-0.3,1.3,0,2.8,1,3.8c1.6,1.6,4.1,1.6,5.6,0c1-1,1.3-2.3,1.1-3.5l4.9-4.4l0,0c0.9-0.1,1.8-0.5,2.5-1.2C22.5,8.9,22.5,6.1,20.8,4.4%20z%20M9.5,19.6c-1.5,0-2.6-1.2-2.6-2.6c0,0,0,0,0,0l1.3,1c0.3,0.2,0.7,0.3,1,0.3c0.5,0,1-0.2,1.3-0.6c0.6-0.7,0.4-1.8-0.3-2.3l-1.2-1%20c0.2,0,0.4-0.1,0.5-0.1c1.5,0,2.6,1.2,2.6,2.6C12.1,18.4,10.9,19.6,9.5,19.6z%20M17.7,10.6c-1.7,0-3.1-1.4-3.1-3.1s1.4-3.1,3.1-3.1%20s3.1,1.4,3.1,3.1S19.4,10.6,17.7,10.6z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='steam_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23132E62'/%3e%3cpath%20d='M11.9026%208.69631C11.9026%208.71708%2011.9026%208.73785%2011.9036%208.75735L8.97306%2013.1453C8.49834%2013.1231%208.02197%2013.2089%207.57027%2013.4007C7.37115%2013.4844%207.18457%2013.5872%207.00951%2013.7058L0%2011C0%2011%200.000560999%2013%200.00059548%2015L5.59531%2017.3169C5.82372%2018.3691%206.52399%2019.292%207.55711%2019.736C9.24743%2020.4639%2011.1964%2019.6343%2011.8995%2017.8912C12.0825%2017.4356%2012.1678%2016.9577%2012.1555%2016.4809L16.3487%2013.3922C16.3826%2013.3933%2016.4175%2013.3943%2016.4515%2013.3943C18.9608%2013.3943%2021.0003%2011.2857%2021.0003%208.69631C21.0003%206.10668%2018.9608%204%2016.4515%204C13.9432%204%2011.9026%206.10668%2011.9026%208.69631ZM11.1995%2017.5882C10.6553%2018.9349%209.15378%2019.5739%207.84865%2019.0133C7.24656%2018.7548%206.79198%2018.2812%206.52975%2017.7164L8.01056%2018.349C8.97306%2018.7622%2010.0773%2018.2917%2010.4774%2017.3C10.8787%2016.3071%2010.4234%2015.167%209.46146%2014.7538L7.93068%2014.1C8.52136%2013.869%209.19285%2013.8605%209.82023%2014.1297C10.4527%2014.4009%2010.9435%2014.9117%2011.2036%2015.5644C11.4637%2016.2171%2011.4626%2016.9376%2011.1995%2017.5882ZM16.4515%2011.8261C14.781%2011.8261%2013.421%2010.4222%2013.421%208.69631C13.421%206.97183%2014.781%205.56745%2016.4515%205.56745C18.123%205.56745%2019.483%206.97183%2019.483%208.69631C19.483%2010.4222%2018.123%2011.8261%2016.4515%2011.8261ZM14.1806%208.69155C14.1806%207.39323%2015.2004%206.34021%2016.4566%206.34021C17.7138%206.34021%2018.7336%207.39323%2018.7336%208.69155C18.7336%209.98997%2017.7138%2011.042%2016.4566%2011.042C15.2004%2011.042%2014.1806%209.98997%2014.1806%208.69155Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='studio_icon'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.6,2h-3.2C5.8,2,2,5.8,2,10.4v10.3C2,21.4,2.6,22,3.3,22h10.3c4.6,0,8.4-3.8,8.4-8.4v-3.2C22,5.8,18.2,2,13.6,2z%20M14.6,14.9c0,0.4-0.3,0.8-0.8,0.8H7.5c-0.4,0-0.8-0.3-0.8-0.8v-5c0-0.4,0.3-0.8,0.8-0.8h6.3c0.4,0,0.8,0.3,0.8,0.8V14.9z%20M17.7,14.5c0,0,0,0.1,0,0.1c-0.1,0.1-0.2,0.1-0.3,0.1l-2.2-1.2c-0.1,0-0.1-0.1-0.1-0.2v-1.8c0-0.1,0-0.2,0.1-0.2l2.2-1.2%20c0,0,0.1,0,0.1,0c0.1,0,0.2,0.1,0.2,0.2V14.5z'/%3e%3c/symbol%3e%3csymbol%20id='subscriptions'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%208H4V6h16v2zm-2-6H6v2h12V2zm4%2010v8c0%201.1-.9%202-2%202H4c-1.1%200-2-.9-2-2v-8c0-1.1.9-2%202-2h16c1.1%200%202%20.9%202%202zm-6%204l-6-3.27v6.53L16%2016z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='suitcase'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2021H19C20.1046%2021%2021%2020.1046%2021%2019V10C21%208.89543%2020.1046%208%2019%208H5C3.89543%208%203%208.89543%203%2010V19C3%2020.1046%203.89543%2021%205%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16%2021V6C16%204.89543%2015.1046%204%2014%204H10C8.89543%204%208%204.89543%208%206V21'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='supervised_user_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.99%202c-5.52%200-10%204.48-10%2010s4.48%2010%2010%2010%2010-4.48%2010-10-4.48-10-10-10zm3.61%206.34c1.07%200%201.93.86%201.93%201.93%200%201.07-.86%201.93-1.93%201.93-1.07%200-1.93-.86-1.93-1.93-.01-1.07.86-1.93%201.93-1.93zm-6-1.58c1.3%200%202.36%201.06%202.36%202.36%200%201.3-1.06%202.36-2.36%202.36s-2.36-1.06-2.36-2.36c0-1.31%201.05-2.36%202.36-2.36zm0%209.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96%201.05-1.12%203.67-1.69%205.14-1.69.53%200%201.2.08%201.9.22-1.64.87-1.9%202.02-1.9%202.68zM11.99%2020c-.27%200-.53-.01-.79-.04v-4.07c0-1.42%202.94-2.13%204.4-2.13%201.07%200%202.92.39%203.84%201.15-1.17%202.97-4.06%205.09-7.45%205.09z'/%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3c/symbol%3e%3csymbol%20id='support'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2017H18C17.448%2017%2017%2016.552%2017%2016V11C17%2010.448%2017.448%2010%2018%2010H19C20.105%2010%2021%2010.895%2021%2012V15C21%2016.105%2020.105%2017%2019%2017Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6%2017H5C3.895%2017%203%2016.105%203%2015V12C3%2010.895%203.895%2010%205%2010H6C6.552%2010%207%2010.448%207%2011V16C7%2016.552%206.552%2017%206%2017Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.5%2010V9.5C18.5%205.91%2015.59%203%2012%203C8.41%203%205.5%205.91%205.5%209.5V10'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.625%2021.25H11.375C10.685%2021.25%2010.125%2020.69%2010.125%2020C10.125%2019.31%2010.685%2018.75%2011.375%2018.75H12.625C13.315%2018.75%2013.875%2019.31%2013.875%2020C13.875%2020.69%2013.315%2021.25%2012.625%2021.25Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.875%2020H16C17.105%2020%2018%2019.105%2018%2018V17'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='swap_cubes'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.33325%2015.5556L11.111%2017.3333L9.33325%2019.1111'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4.88892%2012.8889V15.5556C4.88892%2016.5378%205.68447%2017.3333%206.66669%2017.3333H11.1111M14.6667%208.44444L12.8889%206.66667L14.6667%204.88889'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.1111%2011.1111V8.44444C19.1111%207.46222%2018.3156%206.66667%2017.3333%206.66667H12.8889M8.44444%2010.2222H5.77778C4.79556%2010.2222%204%209.42667%204%208.44444V5.77778C4%204.79556%204.79556%204%205.77778%204H8.44444C9.42667%204%2010.2222%204.79556%2010.2222%205.77778V8.44444C10.2222%209.42667%209.42667%2010.2222%208.44444%2010.2222ZM18.2222%2020H15.5556C14.5733%2020%2013.7778%2019.2044%2013.7778%2018.2222V15.5556C13.7778%2014.5733%2014.5733%2013.7778%2015.5556%2013.7778H18.2222C19.2044%2013.7778%2020%2014.5733%2020%2015.5556V18.2222C20%2019.2044%2019.2044%2020%2018.2222%2020Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='swap_cubes_colored'%20viewBox='0%200%2040%2040'%3e%3crect%20width='40'%20height='40'%20rx='20'%20fill='%23E986FF'/%3e%3cpath%20d='M17.5%2025.8335L19.1667%2028.3335L17.5%2030.8335'%20stroke='white'%20stroke-width='1.5'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10%2021.7857V25.7143C10%2027.1613%2011.0848%2028.3333%2012.4242%2028.3333H18.4848M23.3333%2015.2381L20.9091%2012.619L23.3333%2010'%20stroke='white'%20stroke-width='1.5'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M30.37%2018.7039V14.815C30.37%2013.3826%2029.2099%2012.2224%2027.7775%2012.2224H21.296M14.8145%2017.4076H10.9256C9.49319%2017.4076%208.33301%2016.2474%208.33301%2014.815V10.9261C8.33301%209.49368%209.49319%208.3335%2010.9256%208.3335H14.8145C16.2469%208.3335%2017.4071%209.49368%2017.4071%2010.9261V14.815C17.4071%2016.2474%2016.2469%2017.4076%2014.8145%2017.4076ZM29.0737%2031.6668H25.1849C23.7525%2031.6668%2022.5923%2030.5066%2022.5923%2029.0742V25.1853C22.5923%2023.7529%2023.7525%2022.5928%2025.1849%2022.5928H29.0737C30.5062%2022.5928%2031.6663%2023.7529%2031.6663%2025.1853V29.0742C31.6663%2030.5066%2030.5062%2031.6668%2029.0737%2031.6668Z'%20fill='none'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='swap_horizontal_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M8%209H16M16%209L14%207M16%209L14%2011M10%2013L8%2015M8%2015L10%2017M8%2015H16M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='switches'%20viewBox='0%200%2020%2020'%3e%3cpath%20d='M11.6668%2014.5833H12.2668L12.2668%2014.579L11.6668%2014.5833ZM5.41674%203.1H14.5834V1.9H5.41674V3.1ZM14.5834%207.73333H5.41674V8.93333H14.5834V7.73333ZM5.41674%207.73333C4.13728%207.73333%203.10008%206.69613%203.10008%205.41667H1.90008C1.90008%207.35887%203.47454%208.93333%205.41674%208.93333V7.73333ZM16.9001%205.41667C16.9001%206.69613%2015.8629%207.73333%2014.5834%207.73333V8.93333C16.5256%208.93333%2018.1001%207.35887%2018.1001%205.41667H16.9001ZM14.5834%203.1C15.8629%203.1%2016.9001%204.13721%2016.9001%205.41667H18.1001C18.1001%203.47447%2016.5256%201.9%2014.5834%201.9V3.1ZM5.41674%201.9C3.47454%201.9%201.90008%203.47447%201.90008%205.41667H3.10008C3.10008%204.13721%204.13728%203.1%205.41674%203.1V1.9ZM5.41674%2012.2667H14.5834V11.0667H5.41674V12.2667ZM14.5834%2016.9H5.41674V18.1H14.5834V16.9ZM5.41674%2016.9C4.13728%2016.9%203.10008%2015.8628%203.10008%2014.5833H1.90008C1.90008%2016.5255%203.47454%2018.1%205.41674%2018.1V16.9ZM16.9001%2014.5833C16.9001%2015.8628%2015.8629%2016.9%2014.5834%2016.9V18.1C16.5256%2018.1%2018.1001%2016.5255%2018.1001%2014.5833H16.9001ZM14.5834%2012.2667C15.8629%2012.2667%2016.9001%2013.3039%2016.9001%2014.5833H18.1001C18.1001%2012.6411%2016.5256%2011.0667%2014.5834%2011.0667V12.2667ZM5.41674%2011.0667C3.47454%2011.0667%201.90008%2012.6411%201.90008%2014.5833H3.10008C3.10008%2013.3039%204.13728%2012.2667%205.41674%2012.2667V11.0667ZM14.5834%2011.0667C12.646%2011.0667%2011.0527%2012.639%2011.0668%2014.5877L12.2668%2014.579C12.2576%2013.3077%2013.3008%2012.2667%2014.5834%2012.2667V11.0667ZM11.0668%2014.5833C11.0668%2016.5247%2012.642%2018.1%2014.5834%2018.1V16.9C13.3048%2016.9%2012.2668%2015.862%2012.2668%2014.5833H11.0668ZM14.5834%2018.1C16.5248%2018.1%2018.1001%2016.5247%2018.1001%2014.5833H16.9001C16.9001%2015.862%2015.862%2016.9%2014.5834%2016.9V18.1ZM18.1001%2014.5833C18.1001%2012.6435%2016.538%2011.0667%2014.5834%2011.0667V12.2667C15.8721%2012.2667%2016.9001%2013.3031%2016.9001%2014.5833H18.1001ZM5.41674%201.9C3.47939%201.9%201.88597%203.47228%201.90009%205.42101L3.10006%205.41232C3.09085%204.14105%204.13414%203.1%205.41674%203.1V1.9ZM1.90008%205.41667C1.90008%207.35804%203.4754%208.93333%205.41674%208.93333V7.73333C4.13813%207.73333%203.10008%206.69529%203.10008%205.41667H1.90008ZM5.41674%208.93333C7.35809%208.93333%208.93341%207.35804%208.93341%205.41667H7.73341C7.73341%206.69529%206.69535%207.73333%205.41674%207.73333V8.93333ZM8.93341%205.41667C8.93341%203.47686%207.37132%201.9%205.41674%201.9V3.1C6.70546%203.1%207.73341%204.13647%207.73341%205.41667H8.93341Z'/%3e%3c/symbol%3e%3csymbol%20id='table'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm-5%2014H4v-4h11v4zm0-5H4V9h11v4zm5%205h-4V9h4v9z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='telegram'%20viewBox='0%200%20300%20300'%3e%3cg%20id='XMLID_496_'%3e%3cpath%20id='XMLID_497_'%20d='M5.299,144.645l69.126,25.8l26.756,86.047c1.712,5.511,8.451,7.548,12.924,3.891l38.532-31.412%20c4.039-3.291,9.792-3.455,14.013-0.391l69.498,50.457c4.785,3.478,11.564,0.856,12.764-4.926L299.823,29.22%20c1.31-6.316-4.896-11.585-10.91-9.259L5.218,129.402C-1.783,132.102-1.722,142.014,5.299,144.645z%20M96.869,156.711l135.098-83.207%20c2.428-1.491,4.926,1.792,2.841,3.726L123.313,180.87c-3.919,3.648-6.447,8.53-7.163,13.829l-3.798,28.146%20c-0.503,3.758-5.782,4.131-6.819,0.494l-14.607-51.325C89.253,166.16,91.691,159.907,96.869,156.711z'/%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3cg%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='telegram_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23229ED9'/%3e%3cpath%20d='M7.41211%2012.2672L8.94935%2016.3196C8.94935%2016.3196%209.1415%2016.6981%209.34683%2016.6981C9.55217%2016.6981%2012.6135%2013.6654%2012.6135%2013.6654L16.0174%207.40333L7.46591%2011.2204L7.41211%2012.2672Z'%20fill='%23C8DAEA'/%3e%3cpath%20d='M9.45186%2013.3057L9.15649%2016.2924C9.15649%2016.2924%209.03351%2017.2074%209.99318%2016.2924C10.9529%2015.3773%2011.873%2014.6714%2011.873%2014.6714'%20fill='%23A9C6D8'/%3e%3cpath%20d='M7.44128%2012.4115L4.28006%2011.4306C4.28006%2011.4306%203.90234%2011.2842%204.02422%2010.9537C4.04948%2010.8857%204.09999%2010.8272%204.25042%2010.7268C4.95096%2010.2614%2017.2181%206.06265%2017.2181%206.06265C17.2181%206.06265%2017.5651%205.9518%2017.7693%206.025C17.8627%206.05847%2017.9231%206.09716%2017.9725%206.23625C17.9911%206.28644%2018.001%206.3952%2017.9999%206.50187C17.9988%206.57926%2017.9889%206.65037%2017.9813%206.76331C17.9066%207.91157%2015.671%2016.4806%2015.671%2016.4806C15.671%2016.4806%2015.537%2016.9815%2015.0583%2016.9993C14.8837%2017.0056%2014.6718%2016.9721%2014.4182%2016.764C13.4771%2015.9933%2010.227%2013.9122%209.50887%2013.4552C9.46824%2013.4291%209.45726%2013.3956%209.44958%2013.3632C9.43969%2013.3151%209.4946%2013.2555%209.4946%2013.2555C9.4946%2013.2555%2015.1549%208.46374%2015.3054%207.96072C15.3174%207.92203%2015.2735%207.90216%2015.2142%207.91889C14.8387%208.05066%208.3208%2011.9702%207.6016%2012.4032C7.55877%2012.4272%207.44128%2012.4115%207.44128%2012.4115Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='tether'%20viewBox='0%200%2024%2024'%3e%3cg%3e%3cpath%20d='M13.8,9L13.8,9l0-2.4h5.6V2.9H4.1v3.7h5.6V9c-4.5,0.2-8,1.1-8,2.2s3.4,2,8,2.2v7.8h4v-7.8c4.5-0.2,7.9-1.1,7.9-2.2%20S18.3,9.3,13.8,9z%20M13.8,12.7c-0.1,0-0.7,0-2,0c-1,0-1.8,0-2,0v0c-4-0.2-7-0.9-7-1.7c0-0.8,3-1.5,7-1.7v2.7c0.3,0,1,0.1,2.1,0.1%20c1.2,0,1.9-0.1,2-0.1V9.3c4,0.2,7,0.9,7,1.7C20.8,11.9,17.8,12.6,13.8,12.7z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='tether_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2350AF95'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.012%2012.8656C12.9554%2012.8698%2012.6631%2012.8874%2012.0112%2012.8874C11.4927%2012.8874%2011.1245%2012.8717%2010.9953%2012.8656C8.99144%2012.7769%207.49571%2012.426%207.49571%2012.006C7.49571%2011.5859%208.99144%2011.2355%2010.9953%2011.1454V12.5161C11.1264%2012.5256%2011.5016%2012.5479%2012.0201%2012.5479C12.6424%2012.5479%2012.954%2012.5218%2013.0101%2012.5166V11.1463C15.0097%2011.2359%2016.5021%2011.5868%2016.5021%2012.006C16.5021%2012.4251%2015.0102%2012.776%2013.0101%2012.8651L13.012%2012.8656ZM13.012%2011.0046V9.77796H15.8026V7.90747H8.20468V9.77796H10.9949V11.0041C8.72698%2011.1089%207.02148%2011.5607%207.02148%2012.1022C7.02148%2012.6437%208.72698%2013.0951%2010.9949%2013.2003V17.131H13.0115V13.1989C15.2742%2013.0941%2016.9768%2012.6427%2016.9768%2012.1017C16.9768%2011.5607%2015.2756%2011.1094%2013.0115%2011.0041L13.012%2011.0046Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='three_dots'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M4%2012C4%2013.1046%204.89543%2014%206%2014C7.10457%2014%208%2013.1046%208%2012C8%2010.8954%207.10457%2010%206%2010C4.89543%2010%204%2010.8954%204%2012ZM10%2012C10%2013.1046%2010.8954%2014%2012%2014C13.1046%2014%2014%2013.1046%2014%2012C14%2010.8954%2013.1046%2010%2012%2010C10.8954%2010%2010%2010.8954%2010%2012ZM16%2012C16%2013.1046%2016.8954%2014%2018%2014C19.1046%2014%2020%2013.1046%2020%2012C20%2010.8954%2019.1046%2010%2018%2010C16.8954%2010%2016%2010.8954%2016%2012Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='thumb_down'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0z'/%3e%3cpath%20d='M15%203H6c-.83%200-1.54.5-1.84%201.22l-3.02%207.05c-.09.23-.14.47-.14.73v2c0%201.1.9%202%202%202h6.31l-.95%204.57-.03.32c0%20.41.17.79.44%201.06L9.83%2023l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4%200v12h4V3h-4z'/%3e%3c/symbol%3e%3csymbol%20id='thumb_up'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0%200h24v24H0V0z'/%3e%3cpath%20d='M1%2021h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17%201%207.59%207.59C7.22%207.95%207%208.45%207%209v10c0%201.1.9%202%202%202h9c.83%200%201.54-.5%201.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z'/%3e%3c/symbol%3e%3csymbol%20id='tiktok'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='black'/%3e%3cpath%20d='M10.6785%2010.0457V9.43879C10.4599%209.409%2010.2397%209.39359%2010.0192%209.39264C7.32239%209.39264%205.12793%2011.5081%205.12793%2014.1083C5.12793%2015.7031%205.95496%2017.1153%207.21613%2017.9689C6.37165%2017.0982%205.90184%2015.9506%205.90263%2014.7585C5.90263%2012.1954%208.03445%2010.1053%2010.6785%2010.0457Z'%20fill='%2300F2EA'/%3e%3cpath%20d='M10.8087%2016.7437C11.9489%2016.7437%2012.8787%2015.8154%2012.9211%2014.658L12.925%204.32898H14.7686C14.7292%204.1134%2014.7091%203.89452%2014.7088%203.67514L12.1912%203.67514L12.1868%2014.0046C12.1448%2015.1612%2011.2143%2016.0894%2010.0744%2016.0894C9.73246%2016.0895%209.3956%2016.004%209.09277%2015.8403C9.28901%2016.12%209.54687%2016.3477%209.84517%2016.5048C10.1435%2016.6618%2010.4737%2016.7437%2010.8087%2016.7437ZM18.2116%207.83502V7.26082C17.5348%207.2616%2016.8723%207.06%2016.3045%206.6805C16.8029%207.26714%2017.4715%207.67212%2018.2116%207.83502Z'%20fill='%2300F2EA'/%3e%3cpath%20d='M16.2292%206.82713C15.6756%206.1829%2015.3698%205.35232%2015.3696%204.49194H14.6968C14.7849%204.96798%2014.9661%205.42055%2015.2296%205.82204C15.4931%206.22353%2015.8332%206.56551%2016.2292%206.82713ZM10.0145%2011.8695C8.8489%2011.8712%207.90451%2012.8338%207.90332%2014.0218C7.90454%2014.4156%208.0107%2014.8015%208.21023%2015.1375C8.40975%2015.4734%208.69499%2015.7465%209.03484%2015.9269C8.77552%2015.563%208.63553%2015.1234%208.6352%2014.6719C8.63639%2013.4835%209.58078%2012.5205%2010.7464%2012.5193C10.9645%2012.5193%2011.1726%2012.5561%2011.3697%2012.6189V10.0052C11.1632%209.97533%2010.9549%209.95978%2010.7464%209.95868C10.7099%209.95868%2010.6738%209.96113%2010.6378%209.96154V11.9692C10.4361%2011.9038%2010.226%2011.8702%2010.0145%2011.8695Z'%20fill='%23FF004F'/%3e%3cpath%20d='M17.8757%208.16748V10.1621C16.6233%2010.164%2015.4016%209.76261%2014.3816%209.01408V14.228C14.3816%2016.8323%2012.3081%2018.9511%209.75956%2018.9511C8.77433%2018.9511%207.86087%2018.6333%207.11035%2018.0947C7.54362%2018.5711%208.0673%2018.9508%208.64891%2019.2102C9.23052%2019.4696%209.85766%2019.6031%2010.4914%2019.6025C13.0403%2019.6025%2015.1139%2017.4837%2015.1139%2014.8798V9.66546C16.1339%2010.4138%2017.3556%2010.8151%2018.608%2010.813V8.24712C18.3618%208.24704%2018.1164%208.22035%2017.8757%208.16748Z'%20fill='%23FF004F'/%3e%3cpath%20d='M14.6349%2014.0565V8.83397C15.6846%209.5856%2016.933%209.98704%2018.2114%209.984V7.98696C17.4597%207.8267%2016.7774%207.42319%2016.264%206.8353C15.4425%206.30153%2014.8756%205.45493%2014.6956%204.49194H12.8135L12.8095%2014.7895C12.7659%2015.9428%2011.8164%2016.8683%2010.6528%2016.8683C9.95735%2016.8674%209.30556%2016.5326%208.90036%2015.9682C8.1891%2015.5953%207.74307%2014.859%207.74267%2014.0561C7.74386%2012.8636%208.71006%2011.8977%209.90343%2011.8961C10.1255%2011.8961%2010.3388%2011.9328%2010.541%2011.9961V9.98155C7.98333%2010.0416%205.9209%2012.1379%205.9209%2014.7083C5.9209%2015.9518%206.40419%2017.0835%207.19158%2017.9285C7.99114%2018.4889%208.93632%2018.7877%209.90343%2018.7857C12.5122%2018.7857%2014.6349%2016.6641%2014.6349%2014.0565Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='time'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.6409%2016L11.7189%2013.064V6.736M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='time_thin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.6409%2016L11.7189%2013.064V6.736M18.3639%205.63604C21.8787%209.15076%2021.8787%2014.8492%2018.3639%2018.3639C14.8492%2021.8787%209.15074%2021.8787%205.63604%2018.3639C2.12132%2014.8492%202.12132%209.15074%205.63604%205.63604C9.15076%202.12132%2014.8492%202.12132%2018.3639%205.63604Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='timelapse'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M16.24%207.76C15.07%206.59%2013.54%206%2012%206v6l-4.24%204.24c2.34%202.34%206.14%202.34%208.49%200%202.34-2.34%202.34-6.14-.01-8.48zM12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208z'/%3e%3c/symbol%3e%3csymbol%20id='timeline'%20viewBox='0%200%2024%2024'%3e%3cclipPath%20id='b'%3e%3cuse%20xlink:href='%23timeline_a'%20overflow='visible'/%3e%3c/clipPath%3e%3cpath%20d='M23%208c0%201.1-.9%202-2%202-.18%200-.35-.02-.51-.07l-3.56%203.55c.05.16.07.34.07.52%200%201.1-.9%202-2%202s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55%204.56c.05.16.07.33.07.51%200%201.1-.9%202-2%202s-2-.9-2-2%20.9-2%202-2c.18%200%20.35.02.51.07l4.56-4.55C8.02%209.36%208%209.18%208%209c0-1.1.9-2%202-2s2%20.9%202%202c0%20.18-.02.36-.07.52l2.55%202.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02%208.35%2019%208.18%2019%208c0-1.1.9-2%202-2s2%20.9%202%202z'/%3e%3c/symbol%3e%3csymbol%20id='tipalti'%20viewBox='0%200%20652%20652'%3e%3cg%3e%3cg%3e%3cpath%20d='M273.6,344.7c-0.1-1.7,0-3.4-0.3-5.1c-1.6-12.1-8.8-19.7-19.8-20.9c-7.1-0.8-13.9,0.4-20.3,3.5%20c-21.4,10.5-25.2,39.1-17.1,55.8c3.1,6.5,18.6,14.9,34.2,8.8C268.6,379.8,273.6,363.3,273.6,344.7%20M205.1,393.7%20c-4,24.6-7.8,48.4-11.7,72.3h-23.2c1.8-11.2,3.5-22,5.3-32.9c5.7-35.6,11.5-71.2,17.2-106.8c0-0.2,0.1-0.3,0.1-0.5%20c1-8.7-0.7-10.9-9.6-12.3c0.8-5,1.5-10,2.5-14.9c0.1-0.7,1.4-1.6,2.3-1.6c4.6-0.4,9.3-1.1,13.9-0.6c9.9,1.2,14.6,7.4,13.8,17.4%20c-0.1,0.9-0.1,1.7-0.3,3.8c7.1-11,16.4-17,27.9-20.1c17.9-4.9,36.2,0.2,46.4,12.9c5.8,7.2,8.7,15.6,9.5,24.4%20c2.2,24.6-3.9,46.2-22.1,62.7c-14.2,12.9-31.5,16.6-50.9,11.7C217.4,407.1,210.9,401.6,205.1,393.7'/%3e%3cpath%20d='M402.7,320.9c-3.7-1.3-6.3-2.3-9-3c-20.6-5.2-39.6,0.8-49.2,16c-6.9,10.8-9.3,22.9-7.6,35.8%20c1.7,12.7,9.6,19.5,22.2,19c17.2-0.7,28.8-10.2,34.1-25.5C397.8,349.8,399.6,335.3,402.7,320.9%20M426.4,392.7%20c-0.7,4.7-1.3,9.3-2.3,13.8c-0.3,1.3-1.8,3.1-3,3.2c-4.8,0.4-9.7,0.7-14.4,0c-7-1.1-11-5.8-11.9-12.9c-0.4-2.6-0.3-5.3-0.4-7%20c-5.2,4.5-10.4,10.1-16.6,14.2c-10.9,7.1-23.4,8.9-36.5,5.9c-15.6-3.5-26.5-15.7-29.4-33.6c-4.7-29.1,8.2-62.5,39.1-74.6%20c24.7-9.7,49.6-7.1,74.6,3.1c3,1.2,2.6,3.2,2.2,5.3c-3.6,22-7.3,44.1-10.9,66.1c-0.4,2.4-0.8,4.9-0.9,7.3%20c-0.5,6.4,1.5,8.5,7.9,8.9C424.8,392.5,425.5,392.6,426.4,392.7'/%3e%3cpath%20d='M62.2,271.4H15.3c1.3-8.1,2.5-15.7,3.8-23.5h120.1c-1.1,6.6-2.4,13.1-3.1,19.6c-0.4,3.1-1.6,4-4.7,4%20c-12.6-0.2-25.2-0.1-37.9-0.1h-5c-7.5,46-15,91.7-22.5,137.6H39.7C47.2,363.3,54.6,317.7,62.2,271.4'/%3e%3cpath%20d='M527,316c-7.4-0.6-14.4-1.1-22.2-1.7c0.9-5.5,1.7-10.7,2.6-16.3h22.6c2.3-9.9,4-14.7,6-24.3%20c0.8-3.9,2.2-5.7,6.6-5.4c5.4,0.4,10.9,0.1,16.9,0.1c-1.8,11.6-2.9,17.9-4.8,29.4h38.4c-0.8,5.6-1.4,10.8-2.5,15.8%20c-0.2,1-2.6,2.1-4.1,2.1c-10.3,0.2-20.6,0.2-30.9,0c-3,0-4.3,0.7-4.7,3.9c-2.5,17.1-5.7,34-7.8,51.2c-1.7,13.9,5.5,20.8,19.4,19.8%20c6-0.4,11.8-2,18.1-3.1c-0.1,5.4-0.1,11-0.3,16.5c0,0.8-1,1.9-1.8,2.1c-11.8,3.2-23.7,5.7-36.2,3.3c-16.4-3.1-25.8-14.9-24.1-32.1%20c1.7-17.5,4.9-34.8,7.5-52.2C526.1,322.3,526.6,319.3,527,316'/%3e%3cpath%20d='M494,388.5c-0.8,6.3-1.4,12-2.3,17.6c-0.2,1-1.6,2.3-2.5,2.3c-8,0.3-16.2,1.3-24.1,0.2%20c-10.8-1.4-16.8-8.5-17.7-19.8c-0.5-6.9-0.2-14,0.9-20.8c6.7-42.3,12.4-75.7,19.4-117.9c0-0.3,0.3-0.5,0.5-1h24.6%20c-1.6,9.7-3.1,19.2-4.7,28.7c-5.5,33.4-9.6,58-15.1,91.5c-0.3,2-0.4,4-0.4,6c0.2,11.2,5.1,15.4,16.1,13.9%20C490.1,389,491.7,388.8,494,388.5'/%3e%3cpath%20d='M124,409.2c1.6-9.8,3.1-19,4.6-28.3c4.3-26.4,8.6-52.8,12.8-79.3c0.5-2.8,1.4-3.9,4.3-3.8%20c7,0.2,13.9,0.1,21.5,0.1c-1.9,11.5-3.6,22.4-5.4,33.3c-4,24.8-8.1,49.5-12,74.3c-0.5,2.9-1.4,3.9-4.3,3.8%20C138.4,409.1,131.5,409.2,124,409.2'/%3e%3c/g%3e%3cg%3e%3cpath%20d='M637.6,297.9c-2.4,14.6-4.6,28.4-6.8,42.2c-3.5,21.9-7.2,43.7-10.6,65.6c-0.4,2.7-1.4,3.6-4.1,3.5%20c-7-0.2-14-0.1-21.6-0.1c1.3-8.5,2.6-16.5,3.9-24.5c4.5-27.6,9.1-55.3,13.4-82.9c0.5-3.1,1.6-4.1,4.7-4%20C623.3,298.1,630.1,297.9,637.6,297.9'/%3e%3cpath%20fill='%23F04E37'%20d='M632,234.1c-0.1-0.1-1.4-1.4-4.2-3.5c-1.5-1.2-3-2.3-5.5-3.9c-1.9-1.2-4.2-2.5-6.6-3.8l-2.5-1.4%20c-2.3-1.2-4.6-2.3-7.1-3.5c-1.2-0.6-2.5-1.2-3.8-1.8c-2.7-1.2-5.5-2.3-8.5-3.5c-1.5-0.6-2.9-1.2-4.5-1.8%20c-10.6-3.8-21.1-7.1-31.3-9.6c-23-6.1-50.2-10.2-78.8-11.9c-10.4-0.5-20.7-0.8-30.4-0.8c-4.6,0-9.3,0.1-14,0.2l-11.3,0.5%20l-16.3,1.2c-5.7,0.5-11.5,1-17.5,1.7c-7.6,0.8-15.1,1.7-22.5,2.9c-6.7,0.9-13.8,2.1-22.2,3.7c-13.8,2.4-27,5.5-42.6,9.4%20c-11.1,3-25.5,7.1-38.9,11.8c-11.3,3.9-22.8,8.2-34,12.8c-21.2,8.8-38,17.4-49,23c-4.7,2.4-8.6,4.5-11.5,6l-6.6,3.5%20c-2,1.1-2.8,3.5-1.8,5.6c1,2,3.5,3,5.7,1.9l6.6-3.2c3-1.4,6.9-3.4,11.7-5.6c5.9-2.8,13.4-6,21.2-9.3c10-4.1,19.2-7.6,28.1-10.7%20c10.1-3.5,21.6-7.4,33.9-10.4c13.3-3.6,27.6-6.5,38.5-8.6c15.5-2.7,29.2-4.6,41.8-5.8c8.2-0.9,15.1-1.4,21.6-1.8%20c7.6-0.6,15.2-0.9,21.7-1.1c5.6-0.3,11.5-0.3,17.2-0.4L419,216l15.9,0.2c14.5,0.5,28.4,1.6,41.3,3.4c10.8,1.7,24.9,4,37.7,7.4%20c10.3,2.8,22.2,6.2,32.3,10.4c9.9,3.8,18.3,8.2,25.2,11.9c7.8,4.5,13.9,8.5,17.5,11.1l10.5,7.8c2.9,2.1,4.6,3,4.7,3.1%20c3.4,1.9,7.3,2.8,11.3,2.8c6.3,0,12.3-2.5,16.7-6.9c4.4-4.4,6.9-10.3,6.9-16.6C638.9,244.4,636.5,238.5,632,234.1'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='transaction'%20viewBox='0%200%2024%2024'%3e%3cg%20class='b'%20transform='translate(-708%20-1508)'%3e%3cg%20transform='translate(708%201508)'%3e%3cpath%20class='c'%20d='M0,0H24V24H0Z'/%3e%3cpath%20class='d'%20d='M12,2.02A9.98,9.98,0,1,0,21.98,12,9.982,9.982,0,0,0,12,2.02ZM11.48,20V13.74H8L13,4v6.26h3.35Z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='twitter_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%231DA1F2'/%3e%3cpath%20d='M9.52601%2018C15.5636%2018%2018.8673%2013.3819%2018.8673%209.38386C18.8673%209.25394%2018.8673%209.12402%2018.8609%208.99409C19.5012%208.5689%2020.0582%208.0315%2020.5%207.42323C19.911%207.66535%2019.2771%207.8248%2018.6112%207.90157C19.2899%207.52953%2019.8085%206.93307%2020.0582%206.22441C19.4244%206.57283%2018.7201%206.82087%2017.971%206.95669C17.3691%206.36614%2016.5176%206%2015.5764%206C13.7645%206%2012.2919%207.35827%2012.2919%209.02953C12.2919%209.26575%2012.3239%209.49606%2012.3752%209.72047C9.64766%209.59646%207.22749%208.38583%205.60764%206.55512C5.32593%207.00394%205.16587%207.52362%205.16587%208.07874C5.16587%209.12992%205.7485%2010.0571%206.62565%2010.6004C6.08784%2010.5827%205.58203%2010.4468%205.14026%2010.2224C5.14026%2010.2343%205.14026%2010.2461%205.14026%2010.2638C5.14026%2011.7283%206.27351%2012.9567%207.77171%2013.2343C7.4964%2013.3051%207.20828%2013.3406%206.90736%2013.3406C6.69608%2013.3406%206.4912%2013.3228%206.29272%2013.2874C6.70888%2014.4921%207.92537%2015.3661%209.35954%2015.3898C8.23269%2016.2047%206.81773%2016.689%205.28111%2016.689C5.01861%2016.689%204.7561%2016.6772%204.5%2016.6476C5.94698%2017.498%207.67567%2018%209.52601%2018Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='unarchive'%20viewBox='0%200%2024%2024'%3e%3cclipPath%20id='b'%3e%3cuse%20xlink:href='%23unarchive_a'%20overflow='visible'/%3e%3c/clipPath%3e%3cpath%20d='M20.55%205.22l-1.39-1.68C18.88%203.21%2018.47%203%2018%203H6c-.47%200-.88.21-1.15.55L3.46%205.22C3.17%205.57%203%206.01%203%206.5V19c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2V6.5c0-.49-.17-.93-.45-1.28zM12%209.5l5.5%205.5H14v2h-4v-2H6.5L12%209.5zM5.12%205l.82-1h12l.93%201H5.12z'/%3e%3c/symbol%3e%3csymbol%20id='unfold_more'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3cpath%20d='M12%205.83L15.17%209l1.41-1.41L12%203%207.41%207.59%208.83%209%2012%205.83zm0%2012.34L8.83%2015l-1.41%201.41L12%2021l4.59-4.59L15.17%2015%2012%2018.17z'/%3e%3c/symbol%3e%3csymbol%20id='unlock'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M13.083%2010V7.50001C13.083%205.10701%2015.023%203.16701%2017.416%203.16701C19.809%203.16701%2021.749%205.10701%2021.749%207.50001V9.66701M9.29199%2014V17M14.292%2021H4.29199C3.18699%2021%202.29199%2020.105%202.29199%2019V12C2.29199%2010.895%203.18699%2010%204.29199%2010H14.292C15.397%2010%2016.292%2010.895%2016.292%2012V19C16.292%2020.105%2015.397%2021%2014.292%2021Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='upload_img'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%207v2.99s-1.99.01-2%200V7h-3s.01-1.99%200-2h3V2h2v3h3v2h-3zm-3%204V8h-3V5H5c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h12c1.1%200%202-.9%202-2v-8h-3zM5%2019l3-4%202%203%203-4%204%205H5z'/%3e%3cpath%20d='M0%200h24v24H0z'%20fill='none'/%3e%3c/symbol%3e%3csymbol%20id='usd_coin_colored'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='%232775CA'/%3e%3cpath%20d='M15.2996%2013.8999C15.2996%2012.15%2014.2496%2011.55%2012.1496%2011.3C10.6496%2011.1%2010.3496%2010.7%2010.3496%209.99995C10.3496%209.29987%2010.8496%208.84999%2011.8496%208.84999C12.7496%208.84999%2013.2496%209.14999%2013.4996%209.89999C13.5496%2010.05%2013.6996%2010.1499%2013.8496%2010.1499H14.6495C14.8496%2010.1499%2014.9996%209.99995%2014.9996%209.80002V9.74999C14.7995%208.64995%2013.8995%207.79999%2012.7496%207.70003V6.50003C12.7496%206.29999%2012.5996%206.14999%2012.3496%206.09995H11.5996C11.3996%206.09995%2011.2496%206.24995%2011.1995%206.50003V7.64999C9.69953%207.85003%208.74961%208.84999%208.74961%2010.1C8.74961%2011.75%209.74957%2012.3999%2011.8496%2012.65C13.2496%2012.9%2013.6996%2013.2%2013.6996%2014C13.6996%2014.8001%2012.9995%2015.35%2012.0496%2015.35C10.7495%2015.35%2010.2995%2014.7999%2010.1495%2014.0499C10.0996%2013.85%209.94961%2013.7499%209.79961%2013.7499H8.94953C8.74961%2013.7499%208.59961%2013.8999%208.59961%2014.1V14.15C8.79953%2015.3999%209.59957%2016.2999%2011.2496%2016.55V17.75C11.2496%2017.9499%2011.3996%2018.0999%2011.6495%2018.15H12.3995C12.5996%2018.15%2012.7496%2018%2012.7996%2017.75V16.55C14.2996%2016.2999%2015.2996%2015.2499%2015.2996%2013.8999Z'%20fill='white'/%3e%3cpath%20d='M9.45%2019.15C5.55%2017.75%203.54996%2013.4%205.00004%209.54995C5.75004%207.44995%207.40004%205.84999%209.45%205.09999C9.65004%205.00003%209.75%204.85003%209.75%204.59995V3.89999C9.75%203.69995%209.65004%203.54995%209.45%203.50003C9.39996%203.50003%209.3%203.50003%209.24996%203.54995C4.5%205.04995%201.89996%2010.1%203.39996%2014.85C4.29996%2017.65%206.45%2019.8%209.24996%2020.7C9.45%2020.7999%209.65004%2020.7%209.69996%2020.5C9.75%2020.45%209.75%2020.4%209.75%2020.3V19.5999C9.75%2019.4499%209.6%2019.25%209.45%2019.15ZM14.75%203.54995C14.55%203.44999%2014.35%203.54995%2014.3%203.74999C14.25%203.80003%2014.25%203.84995%2014.25%203.95003V4.64999C14.25%204.85003%2014.4%205.04995%2014.55%205.15003C18.45%206.54995%2020.45%2010.9%2019%2014.75C18.25%2016.85%2016.6%2018.45%2014.55%2019.2C14.35%2019.3%2014.25%2019.45%2014.25%2019.7V20.4C14.25%2020.6%2014.35%2020.75%2014.55%2020.7999C14.6%2020.7999%2014.7%2020.8%2014.75%2020.75C19.5%2019.25%2022.1%2014.2%2020.6%209.44999C19.7%206.59999%2017.5%204.44995%2014.75%203.54995Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='user'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19.245%2019.804C18.8609%2018.8384%2017.8867%2017.4783%2017.0266%2016.895C16.1666%2016.3116%2015.1512%2015.9999%2014.112%2016H9.888C8.56875%2015.9998%207.29898%2016.5022%206.337%2017.405C5.6023%2018.0941%205.19719%2018.9492%204.82356%2019.8616M12%206.75C13.6569%206.75%2015%208.09315%2015%209.75V10.25C15%2011.9069%2013.6569%2013.25%2012%2013.25C10.3431%2013.25%209%2011.9069%209%2010.25V9.75C9%208.09315%2010.3431%206.75%2012%206.75ZM8%203H16C18.7614%203%2021%205.23858%2021%208V16C21%2018.7614%2018.7614%2021%2016%2021H8C5.23858%2021%203%2018.7614%203%2016V8C3%205.23858%205.23858%203%208%203Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='user_edit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10%2015H7C5.93913%2015%204.92172%2015.4214%204.17157%2016.1716C3.42143%2016.9217%203%2017.9391%203%2019V20M20%2021H14M14.2929%2015.3344L17.3344%2012.2929C17.4273%2012.2%2017.5375%2012.1264%2017.6588%2012.0761C17.7802%2012.0259%2017.9102%2012%2018.0415%2012C18.1728%2012%2018.3029%2012.0259%2018.4242%2012.0761C18.5455%2012.1264%2018.6558%2012.2%2018.7486%2012.2929L19.7071%2013.2514C19.8947%2013.4389%2020%2013.6933%2020%2013.9585C20%2014.2237%2019.8947%2014.4781%2019.7071%2014.6656L16.6656%2017.7071C16.5727%2017.8%2016.4625%2017.8736%2016.3412%2017.9239C16.2198%2017.9741%2016.0898%2018%2015.9585%2018H14.5C14.3674%2018%2014.2402%2017.9473%2014.1464%2017.8536C14.0527%2017.7598%2014%2017.6326%2014%2017.5V16.0415C14%2015.7763%2014.1054%2015.5219%2014.2929%2015.3344ZM15%207C15%209.20914%2013.2091%2011%2011%2011C8.79086%2011%207%209.20914%207%207C7%204.79086%208.79086%203%2011%203C13.2091%203%2015%204.79086%2015%207Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='user_kyc'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.674%2016.9996L16.39%2016.2866C16.246%2015.9256%2016.023%2015.6006%2015.738%2015.3366C15.255%2014.8886%2014.62%2014.6406%2013.962%2014.6406H10.038C9.37905%2014.6406%208.74505%2014.8896%208.26205%2015.3366C7.97705%2015.6006%207.75405%2015.9256%207.61005%2016.2866L7.32605%2016.9996'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.9445%2011.6945C15.0185%2010.6206%2015.0185%208.8794%2013.9445%207.80546C12.8706%206.73151%2011.1294%206.73151%2010.0555%207.80546C8.98151%208.8794%208.98151%2010.6206%2010.0555%2011.6945C11.1294%2012.7685%2012.8706%2012.7685%2013.9445%2011.6945Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M7.588%203H5C3.895%203%203%203.895%203%205V7.588'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M16.412%2021.0001H19C20.105%2021.0001%2021%2020.1051%2021%2019.0001V16.4121'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2016.4121V19.0001C3%2020.1051%203.895%2021.0001%205%2021.0001H7.588'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%207.588V5C21%203.895%2020.105%203%2019%203H16.412'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='viber'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cpath%20d='M17.2,1.6H6.8c-2.9,0-5.2,2.3-5.2,5.2v10.4c0,2.9,2.3,5.2,5.2,5.2h10.4c2.9,0,5.2-2.3,5.2-5.2V6.8%20C22.4,3.9,20.1,1.6,17.2,1.6z%20M11.4,5.9c0-0.5,0.5-0.3,0.8-0.4c3.1,0.1,5.8,2.9,5.7,5.9c0,0.3,0.1,0.7-0.3,0.7%20c-0.4,0-0.3-0.4-0.4-0.7c-0.4-3.2-1.9-4.7-5.1-5.2C11.8,6.2,11.4,6.2,11.4,5.9z%20M16.1,11.5c-0.5,0.1-0.4-0.4-0.4-0.6%20c-0.3-1.9-1-2.7-3-3.1c-0.3-0.1-0.8,0-0.7-0.5c0.1-0.4,0.5-0.3,0.8-0.2c2,0.2,3.6,1.9,3.6,3.8C16.3,11.1,16.4,11.5,16.1,11.5z%20M14.8,10.5c0,0.3,0,0.5-0.3,0.5c-0.2,0-0.3-0.1-0.4-0.4c-0.1-0.8-0.5-1.3-1.3-1.4c-0.2,0-0.5-0.1-0.4-0.4%20c0.1-0.2,0.3-0.2,0.5-0.2C13.8,8.6,14.8,9.6,14.8,10.5z%20M18,16.6c-0.3,0.9-1.5,1.9-2.5,1.9c-0.1,0-0.4-0.1-0.7-0.2%20c-4.4-1.9-7.6-4.9-9.5-9.3c-0.6-1.5,0-2.7,1.6-3.2c0.3-0.1,0.5-0.1,0.8,0C8.4,6,10,8.3,10.1,8.9c0,0.5-0.3,0.8-0.7,1%20c-0.7,0.4-0.7,1-0.4,1.7c0.6,1.4,1.7,2.4,3.2,3c0.5,0.2,1,0.2,1.4-0.3c0.6-0.9,1.4-0.9,2.2-0.3c0.4,0.3,0.9,0.6,1.3,0.9%20C17.6,15.3,18.3,15.7,18,16.6z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='viber_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%237360F2'/%3e%3cpath%20d='M17.4191%206.46346C17.053%206.12133%2015.5711%205.02593%2012.2677%205.01093C12.2677%205.01093%208.37382%204.77084%206.47561%206.54149C5.41875%207.61588%205.04678%209.18545%205.00841%2011.1362C4.97003%2013.0839%204.91984%2016.7362%208.38268%2017.7266H8.38563L8.38268%2019.2361C8.38268%2019.2361%208.36201%2019.8484%208.75759%2019.9714C9.23584%2020.1215%209.51924%2019.6563%209.97682%2019.1551C10.2277%2018.879%2010.5731%2018.4769%2010.8359%2018.1677C13.2035%2018.3688%2015.0249%2017.9066%2015.2316%2017.8376C15.7098%2017.6786%2018.4169%2017.3274%2018.8568%2013.6751C19.3114%209.91772%2018.6354%207.53785%2017.4191%206.46346ZM17.8206%2013.411C17.4486%2016.4601%2015.2552%2016.6522%2014.8508%2016.7842C14.6795%2016.8413%2013.0795%2017.2464%2011.0661%2017.1114C11.0661%2017.1114%209.56647%2018.951%209.10004%2019.4282C9.02624%2019.5032%208.94062%2019.5332%208.88453%2019.5182C8.80483%2019.4972%208.78121%2019.4012%208.78416%2019.2601C8.78416%2019.0561%208.79597%2016.7482%208.79597%2016.7482C8.79302%2016.7482%208.79302%2016.7482%208.79597%2016.7482C5.86452%2015.9229%206.03574%2012.8138%206.06822%2011.1872C6.10069%209.56059%206.40181%208.2251%207.2963%207.32777C8.8993%205.85123%2012.2086%206.07031%2012.2086%206.07031C15.0013%206.08232%2016.3386%206.93763%2016.6486%207.22274C17.6789%208.12306%2018.2044%2010.2688%2017.8206%2013.411Z'%20fill='white'/%3e%3cpath%20d='M13.6284%2011.2442C13.5309%2011.2442%2013.4483%2011.1662%2013.4424%2011.0641C13.4099%2010.4189%2013.1117%2010.1038%2012.5036%2010.0708C12.4003%2010.0648%2012.3206%209.97475%2012.3265%209.86971C12.3324%209.76467%2012.4209%209.68364%2012.5243%209.68964C13.3272%209.73466%2013.776%2010.2028%2013.8173%2011.0431C13.8232%2011.1482%2013.7435%2011.2382%2013.6402%2011.2412C13.6343%2011.2442%2013.6313%2011.2442%2013.6284%2011.2442Z'%20fill='white'/%3e%3cpath%20d='M14.5854%2011.5684H14.5825C14.4792%2011.5654%2014.3965%2011.4784%2014.3995%2011.3733C14.4142%2010.7251%2014.2312%2010.1999%2013.8415%209.76774C13.4548%209.33558%2012.9204%209.1015%2012.2149%209.05048C12.1116%209.04148%2012.0348%208.95144%2012.0437%208.8464C12.0525%208.74137%2012.1411%208.66334%2012.2444%208.67234C13.0415%208.73236%2013.6703%209.01446%2014.119%209.51265C14.5707%2010.0138%2014.7891%2010.6411%2014.7744%2011.3823C14.7714%2011.4874%2014.6858%2011.5684%2014.5854%2011.5684Z'%20fill='white'/%3e%3cpath%20d='M15.5654%2011.9584C15.4621%2011.9584%2015.3794%2011.8744%2015.3794%2011.7694C15.3706%2010.608%2015.0429%209.72263%2014.3757%209.05939C13.7174%208.40515%2012.8819%208.07203%2011.8989%208.06302C11.7955%208.06302%2011.7129%207.97599%2011.7129%207.87095C11.7129%207.76592%2011.7985%207.68188%2011.8989%207.68188C12.9823%207.69089%2013.9034%208.06002%2014.6325%208.78629C15.3647%209.51255%2015.7396%2010.5149%2015.7514%2011.7634C15.7543%2011.8714%2015.6717%2011.9584%2015.5654%2011.9584C15.5684%2011.9584%2015.5684%2011.9584%2015.5654%2011.9584Z'%20fill='white'/%3e%3cpath%20d='M12.5476%2013.594C12.5476%2013.594%2012.8103%2013.618%2012.952%2013.441L13.2266%2013.0898C13.3594%2012.9158%2013.6812%2012.8047%2013.9941%2012.9818C14.1683%2013.0808%2014.4842%2013.2789%2014.679%2013.426C14.8886%2013.582%2015.3137%2013.9422%2015.3167%2013.9452C15.5204%2014.1192%2015.5676%2014.3743%2015.4289%2014.6474C15.4289%2014.6474%2015.4289%2014.6504%2015.4289%2014.6534C15.2872%2014.9085%2015.0953%2015.1486%2014.8562%2015.3707C14.8532%2015.3707%2014.8532%2015.3737%2014.8503%2015.3737C14.6525%2015.5417%2014.4576%2015.6378%2014.2687%2015.6588C14.2451%2015.6648%2014.2185%2015.6648%2014.1831%2015.6648C14.1004%2015.6648%2014.0178%2015.6528%2013.9351%2015.6258L13.9292%2015.6168C13.634%2015.5327%2013.1439%2015.3227%2012.3291%2014.8635C11.7978%2014.5664%2011.3579%2014.2633%2010.983%2013.9602C10.7852%2013.8011%2010.5844%2013.624%2010.3778%2013.414C10.3719%2013.408%2010.363%2013.399%2010.3571%2013.393C10.3512%2013.387%2010.3424%2013.3779%2010.3365%2013.3719C10.3306%2013.3659%2010.3217%2013.3569%2010.3158%2013.3509C10.3099%2013.3449%2010.301%2013.3359%2010.2951%2013.3299C10.0914%2013.1199%209.91432%2012.9158%209.75786%2012.7147C9.45969%2012.3366%209.16153%2011.8864%208.86927%2011.3462C8.4176%2010.5149%208.21095%2010.0167%208.12829%209.71961L8.11943%209.71361C8.09286%209.62958%208.08105%209.54555%208.08105%209.46152C8.08105%209.4255%208.08105%209.3985%208.08696%209.37449C8.11058%209.17941%208.20504%208.98434%208.36741%208.78327C8.36741%208.78027%208.37036%208.78027%208.37036%208.77727C8.58882%208.53118%208.82499%208.33911%209.07592%208.19505C9.07592%208.19505%209.07887%208.19505%209.08182%208.19505C9.34751%208.054%209.59844%208.10202%209.77262%208.3091C9.77262%208.3091%2010.1298%208.74426%2010.2833%208.95733C10.428%209.15841%2010.6228%209.47652%2010.7202%209.65359C10.8944%209.9717%2010.7852%2010.2988%2010.614%2010.4339L10.2686%2010.713C10.0944%2010.857%2010.118%2011.1241%2010.118%2011.1241C10.118%2011.1241%2010.6287%2013.0988%2012.5476%2013.594Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='videoblocks'%20viewBox='0%200%20108%20108'%3e%3ccircle%20fill='%23FFE121'%20cx='54'%20cy='54'%20r='54'/%3e%3cpath%20d='M51.6,25.7v36.4c-10-0.2-18-8.6-17.8-18.6C34,33.7,41.9,25.9,51.6,25.7z'/%3e%3cpath%20d='M56.4,82.3V45.9c10,0.2,18,8.6,17.8,18.6C74,74.3,66.1,82.1,56.4,82.3z'/%3e%3ccircle%20cx='65'%20cy='34.3'%20r='8.6'/%3e%3ccircle%20cx='43'%20cy='73.7'%20r='8.6'/%3e%3c/symbol%3e%3csymbol%20id='vidiq-logo-mono'%20viewBox='0%200%20612%20234.396'%3e%3cg%3e%3cpath%20d='M1.859,75.268c-2.016-3.736,0.574-7.767,4.892-7.767h32.212c2.016,0,4.313,1.443,5.178,3.172l16.97,39.108%20c0.287,0,0.574,0,0.864,0l18.118-39.108c1.729-3.458,3.739-3.172,7.766-3.172h29.051c4.318,0,6.907,4.032,4.89,7.767L67.154,182.559%20c-0.865,1.433-3.167,2.873-4.892,2.873h-1.437c-1.729,0-4.026-1.44-4.892-2.873L1.859,75.268z'/%3e%3cpath%20d='M138.769,72.964c0-3.161,2.589-5.463,5.463-5.463h31.64c2.875,0,5.463,2.304,5.463,5.463v104.129%20c0,2.872-2.589,5.463-5.463,5.463h-31.64c-2.876,0-5.463-2.589-5.463-5.463V72.964z'/%3e%3cpath%20d='M180.617,21.25L140.073,2.324c-0.784-0.353-1.566,0.123-1.566,1.032v38.318c0,0.896,0.784,1.383,1.566,1.02%20l40.544-18.793c0.356-0.188,0.66-0.552,0.66-1.031V22.27C181.276,21.782,180.973,21.429,180.617,21.25z'/%3e%3cpath%20d='M261.296,64.624c9.778,0,20.424,3.451,23.873,5.463V7.67c0-2.885,2.589-5.463,5.464-5.463h31.93%20c2.876,0,5.463,2.58,5.463,5.463v169.423c0,2.872-2.589,5.463-5.463,5.463h-13.521c-2.874,0-4.887-2.591-6.037-5.752l-3.454-9.496%20c0,0-13.232,18.121-38.541,18.121c-32.503,0-56.956-27.33-56.956-60.407C204.054,84.468,230.52,64.624,261.296,64.624z%20M266.76,148.328c13.23,0,23.012-10.356,23.012-23.586c0-12.942-9.781-23.005-23.012-23.005c-13.231,0-23.299,10.062-23.299,23.005%20C243.461,137.973,253.529,148.328,266.76,148.328z'/%3e%3cpath%20d='M357.647,7.67c0-2.885,2.589-5.463,5.463-5.463h34.518c2.876,0,5.464,2.58,5.464,5.463v169.423%20c0,2.872-2.589,5.463-5.464,5.463H363.11c-2.872,0-5.463-2.591-5.463-5.463V7.67z'/%3e%3cpath%20d='M563.075,174.506c28.403-17.294,47.762-47.759,47.762-81.314C610.837,41.563,569.531,0,517.902,0%20s-92.668,41.563-92.668,93.191c0,51.629,41.039,92.671,92.668,92.671c1.348,0,3.406,0,5.647-0.104l27.417,46.047%20c0.781,1.301,2.072,2.591,4.134,2.591h37.148c4.134,0,6.191-4.13,4.134-7.747L563.075,174.506z%20M469.193,93.181%20c0-26.928,22.031-49.208,48.718-49.208c26.93,0,48.964,22.279,48.964,49.208c0,26.683-22.034,48.722-48.964,48.722%20C491.225,141.899,469.193,119.863,469.193,93.181z'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='vidiq_circle'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23549DD2'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1.52398%2010.7116C1.45447%2010.5777%201.54377%2010.4332%201.69268%2010.4332H2.8036C2.87316%2010.4332%202.95241%2010.4849%202.98219%2010.5469L3.56751%2011.9485H3.59729L4.22213%2010.5469C4.28175%2010.423%204.3511%2010.4332%204.48996%2010.4332H5.49191C5.64082%2010.4332%205.73012%2010.5777%205.66055%2010.7116L3.77588%2014.5565C3.74604%2014.6079%203.66664%2014.6595%203.60719%2014.6595H3.55762C3.49795%2014.6595%203.41871%2014.6079%203.38893%2014.5565L1.52398%2010.7116ZM6.24571%2010.629C6.24571%2010.5157%206.33495%2010.4332%206.43419%2010.4332H7.52533C7.62446%2010.4332%207.71381%2010.5157%207.71381%2010.629V14.3608C7.71381%2014.4637%207.62446%2014.5565%207.52533%2014.5565H6.43419C6.33495%2014.5565%206.24571%2014.4637%206.24571%2014.3608V10.629ZM10.6599%2013.3299C10.2036%2013.3299%209.85632%2012.9587%209.85632%2012.4846C9.85632%2012.0207%2010.2036%2011.6602%2010.6599%2011.6602C11.1162%2011.6602%2011.4535%2012.0207%2011.4535%2012.4846C11.4535%2012.9587%2011.1162%2013.3299%2010.6599%2013.3299ZM10.4714%2010.3301C10.8087%2010.3301%2011.1758%2010.4538%2011.2947%2010.5259V8.28911C11.2947%208.18572%2011.384%208.09326%2011.4832%208.09326H12.5844C12.6835%208.09326%2012.7729%208.18572%2012.7729%208.28911V14.3607C12.7729%2014.4637%2012.6835%2014.5565%2012.5844%2014.5565H12.1181C12.0189%2014.5565%2011.9496%2014.4637%2011.9099%2014.3504L11.7908%2014.0101C11.7908%2014.0101%2011.3344%2014.6595%2010.4615%2014.6595C9.34056%2014.6595%208.49725%2013.6801%208.49725%2012.4948C8.49725%2011.0413%209.41002%2010.3301%2010.4714%2010.3301Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.66327%208.76145C7.67554%208.76788%207.68602%208.78052%207.68602%208.79806V8.8196C7.68602%208.8367%207.67554%208.84973%207.66327%208.85649L6.265%209.52996C6.23797%209.54304%206.21094%209.52551%206.21094%209.49341V8.12019C6.21094%208.08759%206.23797%208.07055%206.265%208.08319L7.66327%208.76145ZM17.6156%2011.3392C17.6156%2010.3742%2018.3754%209.57577%2019.2958%209.57577C20.2245%209.57577%2020.9844%2010.3742%2020.9844%2011.3392C20.9844%2012.2955%2020.2245%2013.0852%2019.2958%2013.0852C18.3754%2013.0852%2017.6156%2012.2955%2017.6156%2011.3392ZM20.8535%2014.2537L22.0021%2016.1224C22.0731%2016.2519%2022.0021%2016.4%2021.8595%2016.4H20.5784C20.5072%2016.4%2020.4626%2016.3537%2020.4358%2016.3073L19.4903%2014.6569C19.413%2014.6607%2019.342%2014.6607%2019.2955%2014.6607C17.515%2014.6607%2016.0996%2013.1899%2016.0996%2011.3397C16.0996%209.48953%2017.515%208%2019.2955%208C21.0761%208%2022.5006%209.48953%2022.5006%2011.3397C22.5006%2012.5423%2021.833%2013.6339%2020.8535%2014.2537ZM13.7687%208.27484C13.7687%208.17145%2013.8579%208.07899%2013.9571%208.07899H15.1475C15.2466%208.07899%2015.3359%208.17145%2015.3359%208.27484V14.3465C15.3359%2014.4494%2015.2466%2014.5424%2015.1475%2014.5424H13.9571C13.8579%2014.5424%2013.7687%2014.4494%2013.7687%2014.3465V8.27484Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='visibility'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.9987%206.00107C8.41551%205.94063%204.70969%208.44466%202.37988%2011.0091C2.13533%2011.2806%202%2011.6331%202%2011.9985C2%2012.3639%202.13533%2012.7163%202.37988%2012.9878C4.65902%2015.4981%208.35418%2018.0599%2011.9987%2017.9986C15.6432%2018.0599%2019.3392%2015.4981%2021.6201%2012.9878C21.8647%2012.7163%2022%2012.3639%2022%2011.9985C22%2011.6331%2021.8647%2011.2806%2021.6201%2011.0091C19.2876%208.44466%2015.5818%205.94063%2011.9987%206.00107Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.33335'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012.0008C14.9998%2012.5941%2014.8238%2013.174%2014.494%2013.6673C14.1643%2014.1605%2013.6957%2014.5449%2013.1475%2014.7719C12.5993%2014.9988%2011.9961%2015.0581%2011.4142%2014.9423C10.8323%2014.8264%2010.2979%2014.5406%209.8784%2014.121C9.45892%2013.7014%209.17328%2013.1669%209.05759%2012.585C8.9419%2012.0031%209.00135%2011.3999%209.22844%2010.8518C9.45553%2010.3036%209.84004%209.83514%2010.3334%209.50554C10.8267%209.17593%2011.4067%209%2012%209C12.3941%208.99989%2012.7843%209.07745%2013.1484%209.22822C13.5124%209.379%2013.8432%209.60005%2014.1218%209.87873C14.4004%2010.1574%2014.6214%2010.4883%2014.7721%2010.8524C14.9228%2011.2165%2015.0002%2011.6067%2015%2012.0008Z'%20stroke='currentColor'%20fill='none'%20stroke-width='1.4'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='visibility_off'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2019L19%205'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.2998%2017.6019C10.1734%2017.8732%2011.0837%2018.0079%2011.9985%2018.001C15.6429%2018.0624%2019.3389%2015.5006%2021.6198%2012.9904C21.8644%2012.7189%2021.9997%2012.3664%2021.9997%2012.001C21.9997%2011.6356%2021.8644%2011.2832%2021.6198%2011.0117C20.7935%2010.1052%2019.8781%209.2842%2018.8874%208.56104'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M14.1434%206.25171C13.4421%206.07717%2012.7213%205.99294%2011.9985%206.00104C8.41543%205.94149%204.70966%208.44726%202.37988%2011.0099C2.13533%2011.2814%202%2011.6339%202%2011.9993C2%2012.3647%202.13533%2012.7171%202.37988%2012.9886C3.08826%2013.7641%203.86142%2014.4778%204.69099%2015.1219'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9%2012C8.99989%2011.606%209.07742%2011.2158%209.22815%2010.8518C9.37887%2010.4878%209.59985%2010.157%209.87845%209.87845C10.157%209.59985%2010.4878%209.37887%2010.8518%209.22815C11.2158%209.07742%2011.606%208.99989%2012%209'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%2012C15.0001%2012.3939%2014.9226%2012.784%2014.7719%2013.148C14.6212%2013.512%2014.4002%2013.8427%2014.1216%2014.1213C13.843%2014.3999%2013.5123%2014.6208%2013.1482%2014.7716C12.7842%2014.9224%2012.394%2015%2012%2015'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='vkontakte'%20viewBox='0%200%2028%2028'%3e%3cg%20transform='translate(-4.116%20-4.116)'%3e%3cg%20transform='translate(4%2010.06)'%3e%3cpath%20d='M26.1,20.392c-.033-.067-.062-.124-.091-.172A13.612,13.612,0,0,0,23.4,17.2l-.029-.029-.014-.014-.014-.014h-.014a15.033,15.033,0,0,1-1.105-1.12,1.053,1.053,0,0,1-.191-1.105,10.428,10.428,0,0,1,1.23-1.789q.56-.725.89-1.163Q26.516,8.822,26.2,7.952l-.081-.134a.787.787,0,0,0-.421-.225,2.142,2.142,0,0,0-.876-.033l-3.933.029a.525.525,0,0,0-.273,0l-.177.043-.067.033-.053.043a.585.585,0,0,0-.148.144.887.887,0,0,0-.134.239,22.225,22.225,0,0,1-1.464,3.072c-.335.565-.646,1.053-.928,1.469a6.933,6.933,0,0,1-.708.914,4.28,4.28,0,0,1-.522.469c-.153.12-.273.167-.354.148s-.158-.038-.234-.053a.864.864,0,0,1-.306-.335,1.58,1.58,0,0,1-.158-.531,5.441,5.441,0,0,1-.048-.555c0-.153,0-.373,0-.656s.014-.474.014-.574c0-.344,0-.722.019-1.129s.024-.727.033-.962.014-.488.014-.751A3.058,3.058,0,0,0,15.356,8a2.321,2.321,0,0,0-.144-.435.759.759,0,0,0-.282-.33,1.7,1.7,0,0,0-.459-.187,9.047,9.047,0,0,0-1.842-.177,8.858,8.858,0,0,0-3.263.33,1.752,1.752,0,0,0-.517.411c-.163.2-.187.311-.067.33a1.678,1.678,0,0,1,1.163.589l.081.163a2.676,2.676,0,0,1,.191.627,6.645,6.645,0,0,1,.124,1,11.23,11.23,0,0,1,0,1.708q-.072.711-.129,1.105a2.135,2.135,0,0,1-.187.641c-.081.163-.139.263-.163.3a.214.214,0,0,1-.067.067,1.069,1.069,0,0,1-.368.067.847.847,0,0,1-.464-.191,3.125,3.125,0,0,1-.565-.526,7.323,7.323,0,0,1-.665-.938c-.244-.4-.5-.876-.766-1.421l-.22-.4c-.139-.254-.325-.627-.56-1.115S5.744,8.66,5.562,8.2a.879.879,0,0,0-.33-.435l-.067-.043a.76.76,0,0,0-.22-.115,1.409,1.409,0,0,0-.316-.091L.887,7.545a.959.959,0,0,0-.78.258l-.053.081a.435.435,0,0,0-.043.22,1.122,1.122,0,0,0,.081.368Q.911,10.4,1.878,12.191c.646,1.2,1.2,2.153,1.675,2.88S4.509,16.488,5,17.133s.818,1.062.976,1.244.287.321.378.411l.34.33a8.389,8.389,0,0,0,.962.785q.639.459,1.407.9a7.675,7.675,0,0,0,1.794.722,6.169,6.169,0,0,0,2,.225h1.569a1.086,1.086,0,0,0,.722-.3l.053-.067a.769.769,0,0,0,.1-.254,1.34,1.34,0,0,0,.048-.378,4.271,4.271,0,0,1,.091-1.057,2.526,2.526,0,0,1,.234-.708,1.891,1.891,0,0,1,.292-.4.981.981,0,0,1,.234-.2.638.638,0,0,1,.11-.048.876.876,0,0,1,.77.211,4.468,4.468,0,0,1,.833.794c.258.316.569.665.938,1.057a6.382,6.382,0,0,0,.957.876l.273.163a3.286,3.286,0,0,0,.713.3,1.507,1.507,0,0,0,.766.067l3.5-.053a1.556,1.556,0,0,0,.8-.172.66.66,0,0,0,.34-.378,1.007,1.007,0,0,0,0-.464A2.38,2.38,0,0,0,26.1,20.392Z'%20transform='translate(0.99%20-6.296)'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='vkontakte_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%235181B8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.6329%208.2673C19.7442%207.89647%2019.6329%207.6239%2019.1035%207.6239H17.3531C16.908%207.6239%2016.703%207.85933%2016.5917%208.11902C16.5917%208.11902%2015.7015%2010.2886%2014.4404%2011.698C14.0325%2012.1059%2013.847%2012.2356%2013.6245%2012.2356C13.5132%2012.2356%2013.3522%2012.1059%2013.3522%2011.7351V8.2673C13.3522%207.8222%2013.223%207.6239%2012.8521%207.6239H10.1014C9.82336%207.6239%209.65607%207.83045%209.65607%208.02625C9.65607%208.44822%2010.2865%208.54549%2010.3515%209.73227V12.31C10.3515%2012.8751%2010.2495%2012.9777%2010.0269%2012.9777C9.43352%2012.9777%207.99018%2010.7981%207.13398%208.30444C6.96619%207.8197%206.7979%207.6239%206.35055%207.6239H4.60014C4.10002%207.6239%204%207.85933%204%208.11902C4%208.58263%204.59351%2010.8822%206.76314%2013.9234C8.20973%2016.0001%2010.2475%2017.1261%2012.1019%2017.1261C13.2147%2017.1261%2013.3522%2016.8761%2013.3522%2016.4453V14.8756C13.3522%2014.3755%2013.4576%2014.2757%2013.8098%2014.2757C14.0696%2014.2757%2014.5146%2014.4055%2015.5532%2015.4068C16.74%2016.5935%2016.9355%2017.1261%2017.6032%2017.1261H19.3536C19.8537%2017.1261%2020.1038%2016.8761%2019.9595%2016.3826C19.8017%2015.8907%2019.2351%2015.1773%2018.4831%2014.3313C18.0752%2013.8491%2017.4631%2013.3299%2017.2779%2013.0703C17.0182%2012.7365%2017.0923%2012.5882%2017.2779%2012.2916C17.2779%2012.2916%2019.4103%209.28742%2019.6329%208.26743V8.2673Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='wallet'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6%2020H18C19.657%2020%2021%2018.657%2021%2017V6C21%204.895%2020.105%204%2019%204H5C3.895%204%203%204.895%203%206V17C3%2018.657%204.343%2020%206%2020Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%2011.5H17.5C16.97%2011.5%2016.461%2011.711%2016.086%2012.086L15.258%2012.914C14.883%2013.289%2014.374%2013.5%2013.844%2013.5H10.743C10.213%2013.5%209.704%2013.289%209.329%2012.914L8.5%2012.086C8.125%2011.711%207.616%2011.5%207.086%2011.5H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M21%208H3'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='warning'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2015V8M12%2018.5V18M13.4409%202.89758C13.3086%202.62825%2013.1035%202.4014%2012.8488%202.24275C12.5941%202.0841%2012.3001%202%2012%202C11.6999%202%2011.4059%202.0841%2011.1512%202.24275C10.8965%202.4014%2010.6914%202.62825%2010.5591%202.89758L2.13868%2020.0515C2.03732%2020.2577%201.99017%2020.4864%202.0017%2020.7158C2.01323%2020.9453%202.08305%2021.168%202.20457%2021.363C2.32608%2021.558%202.49529%2021.7189%202.69621%2021.8303C2.89713%2021.9417%203.12314%2022.0002%203.3529%2022H20.6471C20.8769%2022.0002%2021.1029%2021.9417%2021.3038%2021.8303C21.5047%2021.7189%2021.6739%2021.558%2021.7954%2021.363C21.9169%2021.168%2021.9868%2020.9453%2021.9983%2020.7158C22.0098%2020.4864%2021.9627%2020.2577%2021.8613%2020.0515L13.4409%202.89758Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='webmoney'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cpath%20id='Combined-Shape'%20d='M12,1.7c1.6,0,3.2,0.4,4.6,1C16.7,2.9,17,3,17.2,3.1l-1,0.8l-1.4-1.5l-2.5,2.2l-1.5-1.6l-4.5,4l2.9,3.2%20l-1.1,1l2.9,3.2l-1.1,1l4.1,4.5l2.4-2.2l2.1,2.4c-0.4,0.3-0.9,0.6-1.4,0.9c-1.5,0.8-3.3,1.3-5.1,1.3C6.2,22.3,1.6,17.7,1.6,12%20C1.5,6.4,6.2,1.7,12,1.7z%20M10,11.4l2.5-2.2l2.2,2.5l-2.5,2.2L10,11.4z%20M11.8,15.6l2.5-2.2l2.2,2.5L14,18L11.8,15.6z%20M8.3,7.2L10.8,5%20L13,7.4l-2.5,2.2L8.3,7.2z%20M12.8,6l1.8-1.6l1.7,1.8l-1.8,1.7L12.8,6z%20M16.1,13.6l1.8-1.6l1.7,1.8l-1.8,1.7L16.1,13.6z%20M17.8,17.3%20l1.8-1.6l1.7,1.8l-1.8,1.7L17.8,17.3z%20M18.5,8.8l1.2-1.1l1.1,1.2L19.6,10L18.5,8.8z%20M16.9,5.2L18.1,4l1.1,1.2L18,6.4L16.9,5.2z%20M20.1,12.4l1.2-1.1l1.1,1.2l-1.3,1.1L20.1,12.4z%20M14.5,9.7L16.4,8L18,9.9l-1.8,1.6L14.5,9.7z'/%3e%3c/symbol%3e%3csymbol%20id='webmoney_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23006CB4'/%3e%3cpath%20d='M11.9665%205.00086C13.059%205.00086%2014.0983%205.25481%2015.0307%205.70909C15.1769%205.77584%2015.324%205.85621%2015.4698%205.93666L14.8308%206.51217L13.872%205.50877L12.2205%206.97964L11.2478%205.92349L8.21047%208.66497L10.1553%2010.8177L9.39599%2011.4855L11.3145%2013.6383L10.5551%2014.3069L13.3%2017.3691L14.9242%2015.871L16.3369%2017.4764C16.057%2017.6903%2015.7506%2017.9047%2015.4179%2018.0914C14.4055%2018.667%2013.2329%2019%2011.9803%2019C8.13043%2019%205.00004%2015.8587%205.00004%2011.9943C4.98696%208.15663%208.11744%205%2011.9669%205L11.9665%205.00086ZM10.6875%2011.5659L12.3533%2010.0678L13.8452%2011.7399L12.1794%2013.2372L10.6875%2011.5655V11.5659ZM11.873%2014.4546L13.5259%2012.9433L15.0307%2014.6149L13.3649%2016.1131L11.873%2014.4546ZM9.50287%208.71767L11.1673%207.2204L12.6601%208.89164L10.9943%2010.3898L9.50287%208.71767ZM12.5532%207.9159L13.7915%206.7925L14.9108%208.03585L13.6712%209.17242L12.5523%207.9159H12.5532ZM14.7641%2013.0636L16.0025%2011.9407L17.1218%2013.1972L15.8826%2014.321L14.7641%2013.0636ZM15.8562%2015.5911L17.0954%2014.4677L18.2139%2015.7111L16.9751%2016.8477L15.8562%2015.5911ZM16.3624%209.81386L17.1889%209.06565L17.9344%209.89468L17.1088%2010.6433L16.3624%209.81386ZM15.2968%207.34034L16.1232%206.57856L16.8695%207.42117L16.0431%208.17024L15.2972%207.3408L15.2968%207.34034ZM17.4156%2012.2886L18.2411%2011.5396L19%2012.3686L18.1606%2013.1172L17.4156%2012.2886ZM13.6989%2010.4293L14.9377%209.30641L16.0565%2010.5498L14.8182%2011.6732L13.6989%2010.4293Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='website_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23485A6C'/%3e%3cpath%20d='M14.6294%2012L16.8168%2014.1876C17.0611%2014.4318%2017.0611%2014.8272%2016.8168%2015.0709L15.071%2016.8168C14.8267%2017.0611%2014.4314%2017.0611%2014.1878%2016.8168L12.0003%2014.6292L10.6911%2015.9385C10.3625%2016.2671%209.80346%2016.1347%209.65667%2015.6943L7.03322%207.82281C6.87019%207.33494%207.33492%206.87018%207.82338%207.03322L15.6944%209.65684C16.1347%209.80364%2016.2672%2010.3627%2015.9386%2010.6913L14.6294%2012'%20stroke='white'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='whatsapp'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='none'%20d='M0,0h24v24H0V0z'/%3e%3cg%3e%3cg%3e%3cpath%20d='M19,5c-1.8-1.8-4.1-2.7-6.6-2.7S7.6,3.2,5.8,5s-2.7,4.1-2.7,6.6c0,1.6,0.4,3.1,1.2,4.5l-2,5.6l5.6-2%20c1.4,0.8,2.9,1.2,4.5,1.2c2.5,0,4.8-1,6.6-2.7s2.7-4.1,2.7-6.6S20.8,6.8,19,5z%20M17,15.1L16,16.1c-0.9,0.9-3.4-0.2-5.7-2.4%20C8.1,11.5,7,8.9,7.9,8.1L8.9,7c0.2-0.2,0.6-0.2,0.8,0l1.3,1.3c0.2,0.2,0.2,0.6,0,0.8l-0.8,0.8c0.8,1.7,2.1,3,3.8,3.8l0.8-0.8%20c0.2-0.2,0.6-0.2,0.8,0l1.3,1.3C17.3,14.5,17.3,14.8,17,15.1z'/%3e%3c/g%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='whatsapp_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%230DC143'/%3e%3cpath%20d='M17.3752%206.60574C16.0887%205.28142%2014.3104%204.5625%2012.4941%204.5625C8.63468%204.5625%205.53198%207.70304%205.56982%2011.5247C5.56982%2012.7355%205.91036%2013.9084%206.47792%2014.9679L5.49414%2018.5625L9.16441%2017.6166C10.186%2018.1841%2011.3212%2018.449%2012.4563%2018.449C16.2779%2018.449%2019.3806%2015.3084%2019.3806%2011.4868C19.3806%209.63277%2018.6617%207.89223%2017.3752%206.60574ZM12.4941%2017.276C11.4725%2017.276%2010.4509%2017.0111%209.58063%2016.4814L9.3536%2016.3679L7.15901%2016.9355L7.72657%2014.7787L7.57522%2014.5517C5.91036%2011.8652%206.70495%208.30845%209.42928%206.64358C12.1536%204.97872%2015.6725%205.77331%2017.3374%208.49764C19.0022%2011.222%2018.2077%2014.7409%2015.4833%2016.4057C14.6131%2016.9733%2013.5536%2017.276%2012.4941%2017.276ZM15.8239%2013.076L15.4077%2012.8868C15.4077%2012.8868%2014.8022%2012.622%2014.4239%2012.4328C14.386%2012.4328%2014.3482%2012.3949%2014.3104%2012.3949C14.1968%2012.3949%2014.1212%2012.4328%2014.0455%2012.4706C14.0455%2012.4706%2014.0077%2012.5084%2013.4779%2013.1139C13.4401%2013.1895%2013.3644%2013.2274%2013.2887%2013.2274H13.2509C13.2131%2013.2274%2013.1374%2013.1895%2013.0995%2013.1517L12.9104%2013.076C12.4941%2012.8868%2012.1158%2012.6598%2011.8131%2012.3571C11.7374%2012.2814%2011.6239%2012.2057%2011.5482%2012.1301C11.2833%2011.8652%2011.0185%2011.5625%2010.8293%2011.222L10.7914%2011.1463C10.7536%2011.1084%2010.7536%2011.0706%2010.7158%2010.9949C10.7158%2010.9193%2010.7158%2010.8436%2010.7536%2010.8057C10.7536%2010.8057%2010.905%2010.6166%2011.0185%2010.503C11.0941%2010.4274%2011.132%2010.3139%2011.2077%2010.2382C11.2833%2010.1247%2011.3212%209.97331%2011.2833%209.8598C11.2455%209.67061%2010.7914%208.64899%2010.6779%208.42196C10.6022%208.30845%2010.5266%208.27061%2010.4131%208.23277H10.2995C10.2239%208.23277%2010.1104%208.23277%209.99684%208.23277C9.92117%208.23277%209.84549%208.27061%209.76982%208.27061L9.73198%208.30845C9.6563%208.34628%209.58063%208.42196%209.50495%208.4598C9.42928%208.53547%209.39144%208.61115%209.31576%208.68682C9.0509%209.02736%208.89955%209.44358%208.89955%209.8598C8.89955%2010.1625%208.97522%2010.4652%209.08874%2010.7301L9.12657%2010.8436C9.46711%2011.5625%209.92117%2012.2057%2010.5266%2012.7733L10.6779%2012.9247C10.7914%2013.0382%2010.905%2013.1139%2010.9806%2013.2274C11.7752%2013.9084%2012.6833%2014.4003%2013.705%2014.6652C13.8185%2014.703%2013.9698%2014.703%2014.0833%2014.7409C14.1968%2014.7409%2014.3482%2014.7409%2014.4617%2014.7409C14.6509%2014.7409%2014.8779%2014.6652%2015.0293%2014.5895C15.1428%2014.5139%2015.2185%2014.5139%2015.2941%2014.4382L15.3698%2014.3625C15.4455%2014.2868%2015.5212%2014.249%2015.5968%2014.1733C15.6725%2014.0976%2015.7482%2014.022%2015.786%2013.9463C15.8617%2013.7949%2015.8995%2013.6057%2015.9374%2013.4166C15.9374%2013.3409%2015.9374%2013.2274%2015.9374%2013.1517C15.9374%2013.1517%2015.8995%2013.1139%2015.8239%2013.076Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='wise_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%2300B9FF'/%3e%3cpath%20d='M9.95238%209.91756L7%2012.8351H12.019L12.5429%2011.5636H10L11.5905%209.91756L10.6667%208.27151H14.981L11%2018H12.4952L17%207H8.29524L9.95238%209.91756Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='worldfirst'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0_10709_44614)'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3cpath%20d='M24%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012ZM1.152%2012C1.152%2017.9912%206.00882%2022.848%2012%2022.848C17.9912%2022.848%2022.848%2017.9912%2022.848%2012C22.848%206.00882%2017.9912%201.152%2012%201.152C6.00882%201.152%201.152%206.00882%201.152%2012Z'%20fill='%23EDF0F3'/%3e%3cpath%20d='M8.01724%2016.4135L10.9768%208H12.2923L12.5928%209.4011L9.47896%2018H8.06597L8.01724%2016.4135ZM7.41183%208L8.75622%2016.4135L8.59381%2018H7.0184L5%208H7.41183ZM15.2438%2016.3448L16.5882%208H19L16.9654%2017.9657H15.39L15.2438%2016.3448ZM13.0313%208L15.9828%2016.4135L15.9178%2017.9657H14.5048L11.3991%209.39423L11.7239%208H13.0313Z'%20fill='%23FA1D44'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='x_network'%20viewBox='0%200%2024%2024'%3e%3crect%20width='24'%20height='24'%20rx='12'%20fill='black'/%3e%3cpath%20d='M13.3333%2010.9287L18.5459%205H17.3111L12.7831%2010.1468L9.1692%205H5L10.4661%2012.7836L5%2019H6.2348L11.0135%2013.5636L14.8308%2019H19M6.68047%205.9111H8.57747L17.3102%2018.1336H15.4127'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='yandexmoney'%20viewBox='0%200%2028%2028'%3e%3cg%20transform='translate(-166%20-310)'%3e%3cpath%20d='M49.647,27.436v9.857L34.383,42.327,46.455,34V27.265h.01V15.958s-8.639,6.877-11.337,8.89c-3.262,2.437-3.393,3.433-3.393,5V41.9a2.063,2.063,0,0,0,2.054,2.054H53.04V27.436Zm-8.709-.524c.7-.856,1.742-1.148,2.306-.675s.453,1.561-.252,2.416-1.742,1.148-2.306.675C40.122,28.836,40.233,27.758,40.938,26.913Z'%20transform='translate(137.612%20294.042)'/%3e%3c/g%3e%3c/symbol%3e%3csymbol%20id='yoomoney_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%238B3FFD'/%3e%3cpath%20d='M14.309%206C11.1341%206%208.61892%208.47093%208.61892%2011.5C8.61892%2014.5291%2011.1756%2017%2014.309%2017C17.4428%2017%2019.9995%2014.5291%2019.9995%2011.5C20.0414%208.47093%2017.4432%206%2014.3094%206H14.309ZM14.309%2013.533C13.1548%2013.533%2012.165%2012.6163%2012.165%2011.5C12.165%2010.3837%2013.1137%209.46704%2014.3094%209.46704C15.5051%209.46704%2016.4538%2010.3837%2016.4538%2011.5C16.4123%2012.6163%2015.5051%2013.533%2014.3094%2013.533H14.309ZM8.6185%207.6337V15.6446H6.5978L4%207.6337H8.6185Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube'%20viewBox='0%200%2032%2033'%3e%3cpath%20d='M28.4643%2010.3485C28.1647%209.23467%2027.2864%208.35662%2026.1728%208.05669C24.1382%207.5%2015.9997%207.5%2015.9997%207.5C15.9997%207.5%207.86152%207.5%205.82693%208.03559C4.73466%208.3352%203.83503%209.23482%203.53543%2010.3485C3%2012.383%203%2016.602%203%2016.602C3%2016.602%203%2020.8425%203.53543%2022.8556C3.83535%2023.9693%204.71324%2024.8473%205.82709%2025.1473C7.88294%2025.7041%2016%2025.7041%2016%2025.7041C16%2025.7041%2024.1382%2025.7041%2026.1728%2025.1686C27.2866%2024.8688%2028.1647%2023.9908%2028.4646%2022.8771C28.9999%2020.8425%2028.9999%2016.6235%2028.9999%2016.6235C28.9999%2016.6235%2029.0213%2012.383%2028.4643%2010.3485ZM13.4086%2020.4999V12.7043L20.1762%2016.602L13.4086%2020.4999Z'%20fill='currentColor'/%3e%3c/symbol%3e%3csymbol%20id='youtube_circled'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='currentColor'/%3e%3cpath%20d='M12.3546%2017.9846L9.07201%2017.9195C8.00914%2017.8969%206.94366%2017.9422%205.90168%2017.7072C4.31652%2017.3561%204.20422%2015.6346%204.08671%2014.1906C3.9248%2012.1605%203.98747%2010.0936%204.29301%208.08047C4.46537%206.95075%205.14435%206.27689%206.19417%206.20327C9.73794%205.93712%2013.3052%205.96827%2016.8412%206.09285C17.2146%206.10417%2017.5906%206.16646%2017.9589%206.23725C19.7765%206.58268%2019.8208%208.53349%2019.9384%2010.1757C20.0559%2011.8349%2020.0063%2013.5026%2019.7817%2015.1504C19.6015%2016.5151%2019.2568%2017.659%2017.8022%2017.7694C15.9794%2017.9138%2014.1983%2018.0299%2012.3703%2017.9931C12.3703%2017.9846%2012.3599%2017.9846%2012.3546%2017.9846ZM10.4248%2014.5303C11.7984%2013.6753%2013.1459%2012.8344%2014.5117%2011.9849C13.1355%2011.1299%2011.7906%2010.2889%2010.4248%209.43953V14.5303Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube_circled_second'%20viewBox='0%200%2056%2056'%3e%3crect%20width='56'%20height='56'%20rx='28'%20fill='currentColor'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M38.4187%2017.7402C39.568%2018.1028%2040.472%2019.1588%2040.7773%2020.4975C41.3333%2022.9268%2041.3333%2028.0002%2041.3333%2028.0002C41.3333%2028.0002%2041.3333%2033.0735%2040.7773%2035.5028C40.468%2036.8468%2039.564%2037.9028%2038.4187%2038.2602C36.34%2038.9095%2028%2038.9095%2028%2038.9095C28%2038.9095%2019.664%2038.9095%2017.5813%2038.2602C16.432%2037.8975%2015.528%2036.8415%2015.2227%2035.5028C14.6667%2033.0735%2014.6667%2028.0002%2014.6667%2028.0002C14.6667%2028.0002%2014.6667%2022.9268%2015.2227%2020.4975C15.532%2019.1535%2016.436%2018.0975%2017.5813%2017.7402C19.664%2017.0908%2028%2017.0908%2028%2017.0908C28%2017.0908%2036.34%2017.0908%2038.4187%2017.7402ZM32.2639%2028.0002L25.3359%2032.0002V24.0002L32.2639%2028.0002Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200V0C18.6274%200%2024%205.37258%2024%2012V12C24%2018.6274%2018.6274%2024%2012%2024V24C5.37258%2024%200%2018.6274%200%2012V12Z'%20fill='%23FF0000'/%3e%3cpath%20d='M12.3546%2017.9846L9.07201%2017.9195C8.00914%2017.8969%206.94366%2017.9422%205.90168%2017.7072C4.31652%2017.3561%204.20422%2015.6346%204.08671%2014.1906C3.9248%2012.1605%203.98747%2010.0936%204.29301%208.08047C4.46537%206.95075%205.14435%206.27689%206.19417%206.20327C9.73794%205.93712%2013.3052%205.96827%2016.8412%206.09285C17.2146%206.10417%2017.5906%206.16646%2017.9589%206.23725C19.7765%206.58268%2019.8208%208.53349%2019.9384%2010.1757C20.0559%2011.8349%2020.0063%2013.5026%2019.7817%2015.1504C19.6015%2016.5151%2019.2568%2017.659%2017.8022%2017.7694C15.9794%2017.9138%2014.1983%2018.0299%2012.3703%2017.9931C12.3703%2017.9846%2012.3599%2017.9846%2012.3546%2017.9846ZM10.4248%2014.5303C11.7984%2013.6753%2013.1459%2012.8344%2014.5117%2011.9849C13.1355%2011.1299%2011.7906%2010.2889%2010.4248%209.43953V14.5303Z'%20fill='white'/%3e%3c/symbol%3e%3csymbol%20id='youtube_outlined'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M20.8394%207.34203C20.6294%206.42172%2020.008%205.69573%2019.2178%205.44641C17.7888%205%2012.0551%205%2012.0551%205C12.0551%205%206.32426%205%204.89246%205.44641C4.10506%205.69207%203.48358%206.41805%203.27091%207.34203C2.88867%209.01216%202.88867%2012.5%202.88867%2012.5C2.88867%2012.5%202.88867%2015.9878%203.27091%2017.658C3.48083%2018.5783%204.10231%2019.3043%204.89246%2019.5536C6.32426%2020%2012.0551%2020%2012.0551%2020C12.0551%2020%2017.7888%2020%2019.2178%2019.5536C20.0052%2019.3079%2020.6267%2018.582%2020.8394%2017.658C21.2216%2015.9878%2021.2216%2012.5%2021.2216%2012.5C21.2216%2012.5%2021.2216%209.01216%2020.8394%207.34203Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M10.2227%2015.2499L14.9856%2012.5L10.2227%209.75006V15.2499Z'%20stroke='currentColor'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/symbol%3e%3csymbol%20id='zcash_colored'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2012C0%205.37258%205.37258%200%2012%200C18.6274%200%2024%205.37258%2024%2012C24%2018.6274%2018.6274%2024%2012%2024C5.37258%2024%200%2018.6274%200%2012Z'%20fill='%23FFC634'/%3e%3cpath%20d='M12.6357%209.30904C11.158%209.30904%209.71207%209.30904%208.2571%209.30904C8.2571%208.52518%208.2571%207.75008%208.2571%206.96184C8.30711%206.96184%208.34803%206.96184%208.3935%206.96184C9.15736%206.96184%209.92577%206.96184%2010.6896%206.96184C10.8533%206.96184%2010.8533%206.96184%2010.8533%206.79981C10.8533%206.24367%2010.8533%205.6919%2010.8533%205.13575C10.8533%205.09196%2010.8533%205.04817%2010.8533%205C11.6172%205%2012.3719%205%2013.1358%205C13.1358%205.04817%2013.1358%205.09196%2013.1358%205.13575C13.1358%205.68314%2013.1404%206.23053%2013.1313%206.77792C13.1313%206.88302%2013.1585%206.91367%2013.2677%206.91367C14.1179%206.90929%2014.9636%206.91367%2015.8139%206.91367C15.8593%206.91367%2015.9048%206.91367%2015.9457%206.91367C15.9594%207.06256%2015.973%207.19393%2015.9776%207.32531C15.9867%207.64498%2016.0094%207.96465%2015.9957%208.28433C15.9821%208.604%2015.9548%208.92806%2015.9003%209.24335C15.873%209.38348%2015.7775%209.52799%2015.6775%209.64185C15.1591%2010.2593%2014.6363%2010.8636%2014.1134%2011.4767C13.2631%2012.4708%2012.4129%2013.4648%2011.5626%2014.4589C11.499%2014.5333%2011.4353%2014.599%2011.3535%2014.691C12.8903%2014.691%2014.3998%2014.691%2015.9185%2014.691C15.9185%2015.4792%2015.9185%2016.2543%2015.9185%2017.0425C14.9818%2017.0425%2014.0543%2017.0425%2013.1085%2017.0425C13.1449%2017.6994%2013.1813%2018.3475%2013.2131%2019C12.422%2019%2011.6445%2019%2010.8488%2019C10.8488%2018.3607%2010.8488%2017.7169%2010.8488%2017.0688C9.90304%2017.0688%208.97095%2017.0688%208.03885%2017.0688C8.02976%2017.0469%208.02067%2017.0338%208.02067%2017.0206C8.01157%2016.4689%207.99338%2015.9127%208.00248%2015.361C8.01157%2014.9274%208.13888%2014.5421%208.44352%2014.1917C9.2483%2013.2721%2010.0213%2012.3262%2010.8169%2011.3935C11.3807%2010.7322%2011.9582%2010.0798%2012.5311%209.4229C12.5629%209.39662%2012.5902%209.36597%2012.6357%209.30904Z'%20fill='white'/%3e%3c/symbol%3e%3c/svg%3e",Aa=["xlink:href"],V2=e.defineComponent({__name:"McSvgIcon",props:{spritePath:{type:String,default:Ta,validator(o){return!!o}},name:{type:String,required:!0},color:{type:String,default:""},size:{type:String,default:"250"},weight:{type:Number,default:1.5},defaultName:{type:String,default:""},dir:{type:String,default:g0.Ltr}},setup(o){const t=o,r=e.computed(()=>({"mc-svg-icon":!0,[`mc-svg-icon--dir-${t.dir}`]:!!t.dir})),l=e.computed(()=>{var n,a,i;return{"--mc-svg-icon-size":z0[t.size],"--mc-svg-icon-weight":(i=(a=(n=String(t.weight))==null?void 0:n.replace(".",""))==null?void 0:a.split(""))==null?void 0:i.join("."),"--mc-svg-icon-color":t.color&&v2[t.color]}});return(n,a)=>(e.openBlock(),e.createElementBlock("svg",{class:e.normalizeClass(r.value),style:e.normalizeStyle(l.value)},[e.createElementVNode("use",{"xlink:href":`${t.spritePath}#${t.name}`},null,8,Aa)],6))}}),r4=["variation","weight"],l4=Object.values(k3),n4={};r4.forEach(o=>{l4.forEach(t=>{n4[`${o}-${t}`]={type:String}})});const $a=n4,Fa=["id"],za=["innerHTML"],g2=e.defineComponent({__name:"McTitle",props:{...$a,variation:{type:String,default:"body"},ellipsis:{type:Boolean,default:!1},tagName:{type:String,default:"div"},uppercase:{type:Boolean,default:!1},color:{type:String,default:"black"},textAlign:{type:String,default:"left"},lineHeight:{type:String,default:""},weight:{type:String,default:""},maxWidth:{type:String,default:"100%"},preLine:{type:Boolean,default:!1},nowrap:{type:Boolean,default:!1},plainText:{type:Boolean,default:!1},htmlData:{type:String,default:""}},setup(o){const t=D0(),r=e.useAttrs(),l=o,n=e.computed(()=>r.id),a=e.computed(()=>{const u={};return u[`mc-title--variation-${l.variation}`]=!!l.variation,r4.forEach(d=>{l4.forEach(C=>{const p=l[`${d}${t.upperFirst(C)}`];u[`mc-title--${d}-${C}-${p}`]=!!p})}),u}),i=e.computed(()=>({"mc-title":!0,"mc-title--ellipsis":l.ellipsis,[`mc-title--text-align-${l.textAlign}`]:!!l.textAlign,"mc-title--pre-line":l.preLine,"mc-title--nowrap":l.nowrap,"mc-title--uppercase":l.uppercase,"mc-title--line-height":!!l.lineHeight,"mc-title--weight":!!l.weight,"mc-title--plain-text":l.plainText,...a.value})),c=e.computed(()=>{let u={};return l.color&&(u["--mc-title-color"]=v2[l.color]),l.weight&&(u["--mc-title-weight"]=i3[l.weight]),l.lineHeight&&(u["--mc-title-line-height"]=be[l.lineHeight]),u}),s=e.computed(()=>({"max-width":l.maxWidth}));return(u,d)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(i.value),style:e.normalizeStyle(c.value),id:n.value},[e.renderSlot(u.$slots,"icon-prepend"),l.htmlData?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-title__text",style:e.normalizeStyle(s.value),innerHTML:l.htmlData},null,12,za)):(e.openBlock(),e.createElementBlock("div",{key:1,class:"mc-title__text",style:e.normalizeStyle(s.value)},[e.renderSlot(u.$slots,"default")],4)),e.renderSlot(u.$slots,"icon-append")],14,Fa))}}),Na={class:"mc-tooltip-target"},V1=e.defineComponent({__name:"McTooltip",props:{content:{type:String,required:!0},placement:{type:String,default:s0.Top},color:{type:String,default:v2.black},textColor:{type:String,default:v2.white},size:{type:String,default:N0.S},arrowVisible:{type:Boolean,default:!0}},setup(o){const t=D3(),r=o,l=e.computed(()=>({content:r.content,size:r.size,placement:r.placement,arrow:r.arrowVisible,color:r.color,textColor:r.textColor}));return(n,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("div",Na,[e.renderSlot(n.$slots,"default")])),[[e.unref(t),l.value]])}}),Oa={class:"mc-accordion"},Pa=e.defineComponent({__name:"McAccordion",props:{isSingleOpen:{type:Boolean,default:!0},defaultOpenIndex:{type:Number}},setup(o){const t=_e(c=>{c()},50),r=o,l=e.ref([]),n=({value:c,component:s})=>{c&&l.value.forEach(u=>{u.id!==s.id&&u.close()})},a=(c,{value:s,component:u})=>{r.isSingleOpen&&n({value:s,component:u})},i=c=>{l.value.push(c);const s=r.defaultOpenIndex;t(()=>{(s||s===0)&&l.value[s]&&l.value[s].open()})};return e.provide("selfRegisterCollapseMethod",i),e.provide("accordionTriggerMethod",a),(c,s)=>(e.openBlock(),e.createElementBlock("div",Oa,[e.renderSlot(c.$slots,"default")]))}}),ja={class:"mc-cell__title"},Ra={class:"mc-cell__content"},Ia=e.defineComponent({__name:"McCell",props:{title:{type:String,default:""},size:{type:String,default:C3.M},uppercase:{type:Boolean,default:!0},ellipsis:{type:Boolean,default:!0}},setup(o){const t=o,r=e.computed(()=>({[`mc-cell--size-${t.size}`]:!!t.size}));return(l,n)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(["mc-cell",r.value])},[e.createElementVNode("div",ja,[e.renderSlot(l.$slots,"title",{},()=>[e.createVNode(e.unref(g2),{variation:e.unref(F2).Overline,uppercase:t.uppercase,ellipsis:t.ellipsis},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.title),1)]),_:1},8,["variation","uppercase","ellipsis"])])]),e.createElementVNode("div",Ra,[e.renderSlot(l.$slots,"default")])],2))}}),Ya={class:"mc-collapse__body-inner"},Ua={key:0,class:"mc-collapse__bottom"},qa=e.defineComponent({__name:"McCollapse",props:{isDisabled:{type:Boolean,default:!1},border:{type:Boolean,default:!1},icon:{type:Boolean,default:!1}},emits:["toggle","open","close","collapse-open-start","collapse-open-end","collapse-close-start","collapse-close-end"],setup(o,{emit:t}){const r=G1(),l=e.inject("selfRegisterCollapseMethod",()=>{}),n=e.inject("accordionTriggerMethod",()=>{}),a=e.useSlots(),i=t,c=o,s=e.ref(r.timestamp(5)),u=e.ref(!1),d=e.ref(!1),C=e.computed(()=>({"mc-collapse--is-open":u.value,"mc-collapse--is-disabled":c.isDisabled,"mc-collapse--is-empty":p.value,"mc-collapse--has-icon":c.icon,"mc-collapse--border":c.border})),p=e.computed(()=>!a.body),h=e.computed(()=>({isDisabled:c.isDisabled,border:c.border,icon:c.icon,id:s.value,isCollapsed:u.value,open:f,close:m,toggle:k}));e.onMounted(()=>{if(l){const T=h.value;l(T)}}),e.watch(()=>u.value,T=>{const g={value:T,component:h.value};i("toggle",g),i(T?"open":"close",g),n&&n(T?"open":"close",g)});const f=()=>{c.isDisabled||d.value||(u.value=!0)},m=()=>{c.isDisabled||d.value||(u.value=!1)},k=()=>{c.isDisabled||d.value||(u.value=!u.value)},M=T=>{d.value=!0;const g={value:T,component:h.value};i("collapse-open-start",g)},v=T=>{d.value=!1;const g={value:T,component:h.value};i("collapse-open-end",g)},b=T=>{d.value=!0;const g={value:T,component:h.value};i("collapse-close-start",g)},L=T=>{d.value=!1;const g={value:T,component:h.value};i("collapse-close-end",g)};return(T,g)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(["mc-collapse",C.value])},[e.createElementVNode("div",{class:"mc-collapse__header",tabindex:"0",onKeyup:e.withKeys(m,["esc"])},[o.icon&&!p.value?(e.openBlock(),e.createBlock(e.unref(V2),{key:0,class:"mc-collapse__icon",name:"arrow_drop_down",color:o.isDisabled?"outline-gray":"black"},null,8,["color"])):e.createCommentVNode("",!0),e.unref(a).activator?(e.openBlock(),e.createElementBlock("div",{key:1,onClick:k},[e.renderSlot(T.$slots,"activator")])):e.createCommentVNode("",!0),e.unref(a).body?(e.openBlock(),e.createElementBlock("a",{key:2,class:"mc-collapse__link",href:"#",onClick:e.withModifiers(k,["prevent"])})):e.createCommentVNode("",!0)],32),e.createVNode(e.unref(Z9),{class:"mc-collapse__body",active:u.value,duration:300,onSlideOpenStart:M,onSlideOpenEnd:v,onSlideCloseStart:b,onSlideCloseEnd:L},{default:e.withCtx(()=>[e.createElementVNode("div",Ya,[e.renderSlot(T.$slots,"body")])]),_:3},8,["active"]),e.unref(a).bottom?(e.openBlock(),e.createElementBlock("div",Ua,[e.renderSlot(T.$slots,"bottom")])):e.createCommentVNode("",!0)],2))}});/*!
4
+ * vue-router v4.4.5
5
+ * (c) 2024 Eduardo San Martin Morote
6
+ * @license MIT
7
+ */var a4;(function(o){o.pop="pop",o.push="push"})(a4||(a4={}));var i4;(function(o){o.back="back",o.forward="forward",o.unknown=""})(i4||(i4={})),Symbol(process.env.NODE_ENV!=="production"?"navigation failure":"");var s4;(function(o){o[o.aborted=4]="aborted",o[o.cancelled=8]="cancelled",o[o.duplicated=16]="duplicated"})(s4||(s4={})),Symbol(process.env.NODE_ENV!=="production"?"router view location matched":""),Symbol(process.env.NODE_ENV!=="production"?"router view depth":"");const Wa=Symbol(process.env.NODE_ENV!=="production"?"router":""),Ga=Symbol(process.env.NODE_ENV!=="production"?"route location":"");Symbol(process.env.NODE_ENV!=="production"?"router view location":"");function Ka(){return e.inject(Wa)}function c4(o){return e.inject(Ga)}const Qa=["onClick"],d4="dropdown-element-id",Xe=e.defineComponent({__name:"McDropdown",props:{modelValue:{type:Boolean,default:!1},items:{type:Array,default:()=>[]},position:{type:String,default:Q0.Left},listPosition:{type:String,default:x1.Bottom},listMinWidth:{type:String,default:"inherit"},listMaxHeight:{type:Number,default:300},hideOnSelect:{type:Boolean,default:!0}},emits:["update:modelValue","select"],setup(o,{emit:t}){const r=o5(L=>{L()},200),l=e.ref(null),n=e.ref(null),a=e.ref(null),i=e.ref(null),c=e.ref(!1),s=c4(),u=t,d=o,C=e.computed(()=>({[`mc-dropdown--position-${n.value}`]:!!n.value,[`mc-dropdown--list-position-${l.value}`]:!!l.value,"mc-dropdown--is-open":c.value})),p=e.computed(()=>({"--dropdown-body-min-width":d.listMinWidth}));e.onMounted(()=>{window.addEventListener("resize",b),window.addEventListener("transitionrun",b)}),e.onBeforeUnmount(()=>{window.removeEventListener("resize",b),window.removeEventListener("transitionrun",b)});const h=()=>{k(!c.value)},f=L=>{const T=L.target;c.value&&!T.closest(`#${d4}`)&&m()},m=()=>{k(!1)},k=L=>{c.value=L,u("update:modelValue",L),c.value?document.addEventListener("click",f):document.removeEventListener("click",f)},M=L=>{u("select",L),d.hideOnSelect&&m()},v=()=>{var I;if(!a.value)return;const L=(I=i.value)==null?void 0:I.getBoundingClientRect();if(!L)return;const T=window.innerHeight-L.bottom,g=window.innerWidth-L.left,{offsetHeight:H,offsetWidth:S}=a.value,Z=T<H?x1.Top:x1.Bottom,_=g>S?Q0.Left:Q0.Right;l.value=d.listPosition===x1.Auto?Z:d.listPosition,n.value=d.position===Q0.Auto?_:d.position},b=()=>r(()=>v());return e.watch(()=>s,m),e.watch(()=>d.modelValue,L=>{c.value!==L&&k(L),e.nextTick(()=>{v()})},{immediate:!0}),(L,T)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-dropdown",C.value]),id:d4,style:e.normalizeStyle(p.value)},[e.createElementVNode("div",{class:"mc-dropdown__toggle",ref_key:"activator",ref:i,tabindex:"0",onKeyup:e.withKeys(m,["esc"]),onClick:e.withModifiers(h,["prevent","stop"])},[e.renderSlot(L.$slots,"activator")],544),e.createElementVNode("div",{ref_key:"dropdown_body",ref:a,class:"mc-dropdown__body"},[e.createVNode(e.unref(u4),{"max-height":o.listMaxHeight},{default:e.withCtx(()=>[e.renderSlot(L.$slots,"default",{},()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(g,H)=>(e.openBlock(),e.createElementBlock("div",{key:`dropdown-list-item-${g.id||g.key||H}`,class:"mc-dropdown-panel__item",onClick:S=>M(g)},[e.renderSlot(L.$slots,"item",{item:g})],8,Qa))),128))])]),_:3},8,["max-height"])],512)],6))}}),u4=e.defineComponent({__name:"McDropdownPanel",props:{maxHeight:{type:Number,default:300}},setup(o){const t=o,r=e.computed(()=>({"--panel-max-height":`${t.maxHeight}px`}));return(l,n)=>(e.openBlock(),e.createElementBlock("section",{class:"mc-dropdown-panel",style:e.normalizeStyle(r.value)},[e.renderSlot(l.$slots,"default")],4))}});H2.Text,H2.Relation,H2.Relation,H2.Range,H2.Date,H2.Relation,H2.Fast,_2.Exists;const Xa={main_tooltip:"Click to open/close",value:"Value",condition:"Condition",create_preset:"Create new preset",fast_filters:"Fast filters",added_filters:"Added filters",enter_preset_name:"Enter preset name",enter_preset_tooltip:"Сохранение выбранных параметров фильтра в пользовательский пресет",from:"From",to:"To",enter:"Enter",choose:"Choose",actions:{add:"Add",save:"Save",clear:"Clear",create:"Create",delete_preset:"Delete preset",is:"This",is_not:"Is not",empty:"Empty",confirm:"Confirm"},calendar:{week:"Week",month:"Month",quarter:"Quarter",year:"Year",confirm:"Confirm"},messages:{same_filter:"Уже есть фильтр с таким параметром",same_preset_name:"Уже есть фильтр с таким именем",accidentally_cleared:"Случайно очистили?",accidentally_deleted:"Случайно удалили?",more_than:'Значение "от" не может быть больше значения "до"'}},Ja={class:"mc-filter"},ei={class:"mc-filter__header"},ti={key:0,class:"mc-filter__presets"},oi={class:"mc-filter__presets-inner"},ri={class:"mc-filter__body"},li={class:"mc-filter__body-top"},ni={class:"mc-filter__body-top-left"},ai={class:"mc-filter__body-fast-tags-wrapper"},ii={class:"mc-filter__body-bottom"},si={class:"mc-filter__body-bottom-left"},ci={class:"mc-filter__body-bottom-right"},di=e.defineComponent({__name:"McFilter",props:{name:{type:String,required:!0},modelValue:{type:Object,required:!0,default:()=>({filter:null,filter_name:null})},filters:{type:Array,required:!0,default:()=>[]},buttonConfirmIsLoading:{type:Boolean,default:!1},useTeleport:{type:Boolean,default:!1},disabledOpen:{type:Boolean,default:!1},useTimezone:{type:Boolean,default:!1},placeholders:{type:Object,default:()=>({})}},emits:["error","clear","delete-preset","update:modelValue","confirm"],setup(o,{emit:t}){const r=D0(),l=t,n=o,a=e.ref(!1),i=e.ref({}),c=e.ref({}),s=e.ref({}),u=e.ref({}),d=e.ref({}),C=e.ref({}),p=e.ref(null),h=e.ref(null),f=e.reactive(r.deepMerge(Xa,n.placeholders)),m=e.computed(()=>r.isEqual(T.value.filter,i.value)),k=e.ref(""),M=e.ref(null),v=e.ref(null),b=n5("mcFilterPresets",{}),L=e.ref([]),T=e.computed({get(){const{filter:V=null,filter_name:z=null}=n.modelValue||{};return{filter:V,filter_name:W1.decode(z)}},set(V){const{filter:z=null,filter_name:J={}}=V||{},C2={filter:z,filter_name:W1.encode(J)};l("update:modelValue",C2)}}),g=e.computed(()=>n.filters.find(V=>String(V.value)===String(p.value))||{}),H=e.computed(()=>{var V;return((V=g.value)==null?void 0:V.type)===H2.Relation}),S=e.computed(()=>{var V;return((V=g.value)==null?void 0:V.type)===H2.Date}),Z=e.computed(()=>{var V;return((V=g.value)==null?void 0:V.type)===H2.Text}),_=e.computed(()=>{var V;return((V=g.value)==null?void 0:V.type)===H2.Range}),I=e.computed(()=>{const V=i.value&&Object.keys(i.value)||[];return n.filters.filter(z=>z.type===H2.Fast&&!V.includes(z.value))}),A=e.computed(()=>n.filters.filter(V=>V.type!==H2.Fast)),Q=e.computed(()=>a.value||!m.value?"purple-invert":"black-flat"),x=e.computed(()=>!r.isEmpty(d.value)&&!!g.value&&g.value.type!==H2.Fast),F=e.computed(()=>!k.value.trim());e.onMounted(()=>{Y(),window.addEventListener("storage",Y),D()}),e.onBeforeUnmount(()=>{window.removeEventListener("storage",Y)});const D=()=>{s.value=T.value.filter,u.value=T.value.filter_name,i.value=T.value.filter,c.value=T.value.filter_name},Y=()=>{L.value=b.value[n.name]||[]},n2=V=>{const{relation:z,value:J}=V,C2=z?{[z]:V.default}:V.default;p.value=J,$({value:C2,valueName:V.name}),E()},$=({value:V,valueName:z})=>{d.value=V,C.value=z||""},E=()=>{h.value?X():K()},X=()=>{var V;switch((V=g.value)==null?void 0:V.type){case H2.Relation:{N();break}default:{U();break}}h.value=null},K=()=>{var V;switch((V=g.value)==null?void 0:V.type){case H2.Relation:{y();break}default:{U();break}}h.value=null},N=()=>{var J,C2;if(h.value){const S2=h.value.relationKey===_2.Exists?[0]:[h.value.value],d2={[h.value.category]:{[h.value.relationKey]:S2}},X2={[p.value]:r.cloneDeep(d.value)};if(r.isEqual(X2,d2)){l("error",f.messages.same_filter);return}}const{category:V,categoryName:z}=O();if(h.value)if(h.value.relationKey===_2.Exists)delete V[h.value.relationKey],delete z[h.value.relationKey];else{const S2=V[h.value.relationKey],d2=(S2==null?void 0:S2.indexOf(String(h.value.value)))??-1;d2!==-1&&((J=V==null?void 0:V[h.value.relationKey])==null||J.splice(d2,1),r.isEmpty(V[h.value.relationKey])&&delete V[h.value.relationKey],(C2=z==null?void 0:z[h.value.relationKey])==null||delete C2[h.value.value],r.isEmpty(z[h.value.relationKey])&&delete z[h.value.relationKey])}t2(V,z)},y=()=>{const{category:V,categoryName:z}=O();t2(V,z)},O=()=>{const V=Object.keys(d.value),z=r.cloneDeep(i.value),J=r.cloneDeep(c.value),C2=z[p.value],S2=J[p.value];return C2&&V.forEach(d2=>{if(d2===_2.Exists)C2[_2.Exists]=0,S2[_2.Exists]=null;else{const X2=d.value[d2],f0=C.value[d2];d2 in C2?(C2[d2]=r.uniqWith([...C2[d2],...X2],r.isEqual),S2[d2]={...S2[d2],...f0}):(C2[d2]=X2,S2[d2]=f0)}}),{category:C2,categoryName:S2}},t2=(V,z)=>{const J={...i.value,[p.value]:V||d.value};if(r.isEqual(i.value,J)){l("error",f.messages.same_filter);return}i.value=J,c.value={...c.value,[p.value]:z||C.value},B()},B=()=>{var V;switch((V=g.value)==null?void 0:V.type){case H2.Text:case H2.Relation:$({value:""});break;case H2.Range:case H2.Date:$({value:{}});break}},U=()=>{var V;if(((V=g.value)==null?void 0:V.type)===H2.Range&&Object.keys(d.value||{}).length===2){const z=d.value;if(z.more&&z.less&&z.more>z.less){l("error",f.messages.more_than);return}}t2(d.value,d.value)},l2=V=>{if(h.value=null,r.isEmpty(V)){i.value={},c.value={};return}c.value=r.cloneDeep(V),P(V)},c2=()=>{s.value={},u.value={},i.value={},c.value={},l("clear",f.messages.accidentally_cleared)},P=V=>{const z=r.cloneDeep(V),J=[_2.Is,_2.IsNot];for(let[C2,S2]of Object.entries(V))if(S2.constructor===Object)for(let[d2,X2]of Object.entries(S2))J.includes(d2)&&(X2==null?void 0:X2.constructor)===Object&&(z[C2][d2]=[...Object.keys(X2)]);i.value=z},e2=V=>{var C2;if(h.value=r.isEqual(h.value,V)?null:V,!h.value){B();return}let z=null,J=null;V.relationKey?(z={[V.relationKey]:V.relationKey===_2.Exists?[0]:[String(V.value)]},J={[V.relationKey]:V.relationKey===_2.Exists?[0]:{[V.value]:V.title}}):(z=((C2=V.value)==null?void 0:C2.constructor)===Object?V.value:String(V.value),J=V.value),p.value=V.category,e.nextTick(()=>{d.value=z,C.value=J})},w=()=>{T.value={filter:i.value,filter_name:c.value};const V={filter:i.value,filter_name:W1.encode(c.value)};l("confirm",V)},G=V=>{M.value&&M.value.name===V.name?(M.value=null,i.value={},c.value={}):(M.value=V,i.value=r.cloneDeep(V.filter),c.value=r.cloneDeep(V.filter_name)),a.value||w()},r2=V=>{var J;const z=(J=b.value[n.name])==null?void 0:J.filter(C2=>V&&C2.name!==V.name);b.value[n.name]=[...z],v.value=r.cloneDeep(M.value),M.value=null,i.value={},c.value={},l("delete-preset",f.messages.accidentally_deleted)},q=()=>{var J;if(b.value[n.name]&&b.value[n.name].find(C2=>{var S2,d2;return((S2=C2.name)==null?void 0:S2.trim())===((d2=k.value)==null?void 0:d2.trim())})){l("error",f.messages.same_preset_name);return}const V={name:(J=k.value)==null?void 0:J.trim(),filter:r.cloneDeep(i.value),filter_name:r.cloneDeep(c.value)},z=b.value[n.name];z?b.value[n.name]=[V,...z]:b.value[n.name]=[V],k.value="",M.value={...V}},p2=V=>M.value&&M.value.name===V.name?"purple-invert":"gray-outline";return e.watch(()=>n.modelValue,V=>{const z=V||{filter:null,filter_name:null};if(i.value={...z.filter},z.filter_name)try{c.value=W1.decode(z.filter_name)}catch{console.error("Can't parse filters")}},{deep:!0}),e.watch(()=>g.value,()=>{$({value:""})},{deep:!0}),e.watch(()=>i.value,()=>{if(M.value){const V=b.value[n.name].map(z=>M.value&&z.name===M.value.name?{name:z.name,filter:r.cloneDeep(i.value),filter_name:r.cloneDeep(c.value)}:z);b.value[n.name]=[...V]}}),(V,z)=>(e.openBlock(),e.createElementBlock("div",Ja,[e.createElementVNode("div",ei,[e.createVNode(e.unref(V1),{content:f.main_tooltip,placement:e.unref(s0).Top,size:e.unref(N0).S},{default:e.withCtx(()=>[e.createVNode(e.unref(E2),{variation:Q.value,disabled:o.disabledOpen,"bg-flat":a.value,size:e.unref(t0).MCompact,onClick:z[0]||(z[0]=J=>a.value=!a.value)},{"icon-prepend":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:"filter_list"})]),_:1},8,["variation","disabled","bg-flat","size"])]),_:1},8,["content","placement","size"]),L.value?(e.openBlock(),e.createElementBlock("div",ti,[e.createElementVNode("div",oi,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(L.value,J=>(e.openBlock(),e.createBlock(e.unref(E2),{key:J.name,variation:p2(J),"secondary-color":"purple",onMouseup:()=>G(J)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(J.name),1)]),_:2},1032,["variation","onMouseup"]))),128))])])):e.createCommentVNode("",!0)]),a.value?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(o.useTeleport?e.Teleport:"div"),{key:0,to:"#filterTeleportTarget"},{default:e.withCtx(()=>[e.createElementVNode("div",ri,[e.createElementVNode("div",li,[e.createElementVNode("div",ni,[e.createVNode(e.unref(v9),{modelValue:p.value,"onUpdate:modelValue":z[1]||(z[1]=J=>p.value=J),title:f.value,options:A.value,placeholder:f.choose,"hide-selected":!1,class:"mc-filter__main-select",name:"filter_value_name"},null,8,["modelValue","title","options","placeholder"]),g.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[H.value?(e.openBlock(),e.createBlock(e.unref(m4),{key:0,"model-value":d.value,filter:g.value,placeholders:f,"current-values":h.value?{}:i.value,"use-timezone":n.useTimezone,"onUpdate:modelValue":$},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):S.value?(e.openBlock(),e.createBlock(e.unref(p4),{key:1,"model-value":d.value,filter:g.value,placeholders:f,"current-values":h.value?{}:i.value,"use-timezone":n.useTimezone,"onUpdate:modelValue":$},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):Z.value?(e.openBlock(),e.createBlock(e.unref(f4),{key:2,"model-value":d.value,filter:g.value,placeholders:f,"current-values":h.value?{}:i.value,"use-timezone":n.useTimezone,"onUpdate:modelValue":$},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):_.value?(e.openBlock(),e.createBlock(e.unref(h4),{key:3,"model-value":d.value,filter:g.value,placeholders:f,"current-values":h.value?{}:i.value,"use-timezone":n.useTimezone,"onUpdate:modelValue":$},null,8,["model-value","filter","placeholders","current-values","use-timezone"])):e.createCommentVNode("",!0),x.value?(e.openBlock(),e.createBlock(e.unref(E2),{key:4,variation:"purple-outline",onClick:E},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.actions[h.value?"save":"add"]),1)]),_:1})):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)])]),e.createVNode(e.unref(C4),{"model-value":c.value,filters:o.filters,placeholders:f,"active-tag":h.value,"use-timezone":n.useTimezone,onTagChange:z[2]||(z[2]=J=>l2(J)),onTagClick:z[3]||(z[3]=J=>e2(J)),onClear:c2},null,8,["model-value","filters","placeholders","active-tag","use-timezone"]),e.createElementVNode("section",ai,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I.value,(J,C2)=>(e.openBlock(),e.createBlock(e.unref(V1),{key:C2,content:J.description||"",placement:e.unref(s0).Top,size:e.unref(N0).S},{default:e.withCtx(()=>[e.createVNode(e.unref(X1),{variation:"gray-outline","text-color":"black",size:e.unref(q1).S,onClick:S2=>n2(J)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(J.name),1)]),_:2},1032,["size","onClick"])]),_:2},1032,["content","placement","size"]))),128))]),e.createElementVNode("div",ii,[e.createElementVNode("div",si,[e.createVNode(e.unref(E2),{disabled:m.value,loading:o.buttonConfirmIsLoading,size:e.unref(t0).S,onClick:w},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.actions.confirm),1)]),_:1},8,["disabled","loading","size"]),M.value?(e.openBlock(),e.createBlock(e.unref(E2),{key:0,variation:"red-outline",size:e.unref(t0).S,onClick:z[4]||(z[4]=()=>r2(M.value))},{"icon-append":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:"delete",size:"250",color:"red"})]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.actions.delete_preset)+" ",1)]),_:1},8,["size"])):e.createCommentVNode("",!0)]),e.createElementVNode("div",ci,[e.createVNode(e.unref(g2),{class:"mc-filter__preset-input-title"},{"icon-append":e.withCtx(()=>[e.createVNode(e.unref(V1),{content:f.enter_preset_tooltip,placement:e.unref(s0).Top,size:e.unref(N0).S},{default:e.withCtx(()=>[e.createVNode(e.unref(V2),{name:"help_solid",size:"250",color:"outline-gray"})]),_:1},8,["content","placement","size"])]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.create_preset)+" ",1)]),_:1}),e.createVNode(e.unref(Y1),{modelValue:k.value,"onUpdate:modelValue":z[5]||(z[5]=J=>k.value=J),placeholder:f.enter_preset_name,"max-length":20,class:"mc-filter__preset-input",name:"preset_name"},null,8,["modelValue","placeholder"]),e.createVNode(e.unref(E2),{disabled:F.value,variation:"purple-outline",size:e.unref(t0).S,onClick:q},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.actions.create),1)]),_:1},8,["disabled","size"])])])])]),_:1})):e.createCommentVNode("",!0)]))}}),Je=e.defineComponent({__name:"McFilterChip",props:{tag:{type:Object,required:!0},closable:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1}},emits:["close"],setup(o,{emit:t}){const r=t,l=o,n=e.computed(()=>{const s=l.tag.title?":":"";return`${l.tag.categoryName}${s}`}),a=e.computed(()=>l.closable?"purple-invert":"hover-gray"),i=e.computed(()=>({"mc-filter-chip":!0,"mc-filter-chip--closable":l.closable,"mc-filter-chip--is-active":l.isActive})),c=s=>{s.stopPropagation(),r("close")};return(s,u)=>(e.openBlock(),e.createBlock(e.unref(X1),{closable:o.closable,variation:a.value,class:e.normalizeClass(i.value),size:e.unref(q1).S,onClose:c},{default:e.withCtx(()=>[o.tag.categoryName?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,weight:e.unref(J2).SemiBold},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.value),1)]),_:1},8,["weight"])):e.createCommentVNode("",!0),u[0]||(u[0]=e.createTextVNode("  ")),o.tag.title?(e.openBlock(),e.createBlock(e.unref(g2),{key:1},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.tag.title),1)]),_:1})):e.createCommentVNode("",!0)]),_:1},8,["closable","variation","class","size"]))}}),ui={class:"mc-filter-tags"},Ci={class:"mc-filter-tags__body"},pi={class:"mc-filter-tags__body-left"},hi={class:"mc-filter-tags__body-right"},C4=e.defineComponent({__name:"McFilterTags",props:{modelValue:{type:Object,default:()=>({})},filters:{type:Array,required:!0,default:()=>[]},placeholders:{type:Object,required:!0},activeTag:{type:Object,default:()=>({})},useTimezone:{type:Boolean,default:!0}},emits:["tag-click","tag-change","clear"],setup(o,{emit:t}){const r=D0(),l=G1(),n=t,a=o,i=e.ref({}),c=e.ref({}),s=e.ref(null),u=e.computed(()=>C.value.filter(g=>g&&g.type===H2.Fast)),d=e.computed(()=>C.value.filter(g=>g&&g.type!==H2.Fast)),C=e.computed(()=>{const g=[];return!r.isEmpty(i.value)&&Object.entries(i.value).forEach(([H,S])=>{const Z=H;let _=S;const I=a.filters.find(A=>A.value===Z)||{};if(I&&I.type===H2.Fast)g.push({id:l.timestamp(5),categoryName:I==null?void 0:I.name,category:Z,type:H2.Fast});else if(I){_=S;const A=_.more?`${a.placeholders.from} ${b(_.more,I)}`:"",Q=_.less?`${a.placeholders.to} ${b(I.type===H2.Date?a.useTimezone?f2(_.less).subtract(1,"days").format():f2(_.less).format():_.less,I)}`:"",F=typeof S=="object"?`${A}${A&&Q?" ":""}${Q}`.toLowerCase():S;g.push({id:l.timestamp(5),categoryName:I==null?void 0:I.name,title:F,value:S,category:Z})}}),g}),p=e.computed(()=>{let g=[];return r.isEmpty(c.value)||(g=Object.entries(c.value).map(([H,S])=>{var Q;const Z=H,_=S;if(H===_2.Exists){const x=Object.keys(_).map(D=>{const Y=a.filters.find(n2=>n2.value===D);return{id:l.timestamp(5),categoryName:Y==null?void 0:Y.name,value:D,category:D,relationKey:H,closable:!0}});return[{id:l.timestamp(5),categoryName:a.placeholders.actions.empty,relationKey:_2.Exists},...x]}const I=[];return Object.entries(_).forEach(([x,F])=>{const D=x,Y=F,n2=a.filters.find($=>$.value===D)||{};Object.entries(Y).forEach(([$,E])=>{I.push({id:l.timestamp(5),categoryName:n2==null?void 0:n2.name,title:E,value:$,category:D,relationKey:H,closable:!0})})}),[{id:l.timestamp(5),categoryName:(Q=a.placeholders.actions)==null?void 0:Q[Z],relationKey:H},...I]})),g.filter(H=>H.length>1)}),h=e.computed(()=>p.value.length||C.value.length),f=g=>{i.value={},c.value={},!r.isEmpty(g)&&m(g)},m=(g,H)=>{const S=[_2.Is,_2.IsNot,_2.Exists];for(let[Z,_]of Object.entries(g)){if(S.includes(Z)){c.value[Z]={...c.value[Z]||{},...H?{[H]:_}:{}};continue}if(_.constructor!==Object&&H){i.value[H]=g;continue}const I=a.filters.find(A=>A.value===Z);if(I&&I.type===H2.Fast){i.value[Z]={value:Z};continue}_&&m(_,Z)}},k=g=>{s.value=r.isEqual(s.value,g)?null:g,n("tag-click",g)},M=(g,H)=>{const S=r.cloneDeep(a.modelValue);switch(H){case _2.Exists:delete S[g.category][H];break;case _2.Is:case _2.IsNot:delete S[g.category][H][g.value],r.isEmpty(S[g.category][H])&&delete S[g.category][H];break;default:delete S[g.category];break}r.isEmpty(S[g.category])&&delete S[g.category],n("tag-change",S)},v=()=>{n("clear")},b=(g,H)=>{switch(H.type){case H2.Date:return f2(g).format("DD.MM.YYYY");case H2.Range:return L(g);default:return g}},L=g=>g,T=g=>r.isEqual(s.value,g);return e.watch(()=>a.modelValue,g=>{f(g)},{deep:!0,immediate:!0}),e.watch(()=>a.activeTag,g=>{s.value=g},{immediate:!0}),(g,H)=>(e.openBlock(),e.createElementBlock("div",ui,[e.createVNode(e.unref(g2),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.placeholders.added_filters),1)]),_:1}),e.createElementVNode("div",Ci,[e.createElementVNode("div",pi,[d.value.length?(e.openBlock(),e.createBlock(e.unref(me),{key:0,"gutter-x":4,"gutter-y":8},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,S=>(e.openBlock(),e.createBlock(e.unref(e3),{key:S.id},{default:e.withCtx(()=>[e.createVNode(e.unref(Je),{tag:S,"is-active":T(S),closable:"",onClick:()=>k(S),onClose:()=>M(S)},null,8,["tag","is-active","onClick","onClose"])]),_:2},1024))),128))]),_:1})):e.createCommentVNode("",!0),p.value.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(p.value,(S,Z)=>(e.openBlock(),e.createBlock(e.unref(me),{key:Z,"gutter-x":4,"gutter-y":8},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S,_=>(e.openBlock(),e.createBlock(e.unref(e3),{key:_.id},{default:e.withCtx(()=>[e.createVNode(e.unref(Je),{tag:_,"is-active":T(_),closable:_.closable,onClick:()=>k(_),onClose:()=>M(_,S[0].relationKey)},null,8,["tag","is-active","closable","onClick","onClose"])]),_:2},1024))),128))]),_:2},1024))),128)):e.createCommentVNode("",!0),u.value.length?(e.openBlock(),e.createBlock(e.unref(me),{key:2,"gutter-x":4,"gutter-y":8},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,S=>(e.openBlock(),e.createBlock(e.unref(e3),{key:S.id},{default:e.withCtx(()=>[e.createVNode(e.unref(V1),{content:S.description||"",placement:e.unref(s0).Top,size:e.unref(N0).S},{default:e.withCtx(()=>[e.createVNode(e.unref(Je),{tag:S,closable:"",onClose:()=>M(S)},null,8,["tag","onClose"])]),_:2},1032,["content","placement","size"])]),_:2},1024))),128))]),_:1})):e.createCommentVNode("",!0)]),e.createElementVNode("div",hi,[h.value?(e.openBlock(),e.createBlock(e.unref(E2),{key:0,variation:"dark-gray-outline",onClick:v},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.actions.clear),1)]),_:1})):e.createCommentVNode("",!0)])])]))}}),p4=e.defineComponent({__name:"McFilterTypeDate",props:{modelValue:{type:Object,default:()=>({})},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0},useTimezone:{type:Boolean,default:!0}},emits:["update:modelValue"],setup(o,{emit:t}){const r=t,l=o,n=e.computed({get(){return l.modelValue?[l.modelValue.more,l.modelValue.less]:[]},set(a){const i={more:a==null?void 0:a[0],less:a==null?void 0:a[1]};r("update:modelValue",{value:i})}});return(a,i)=>(e.openBlock(),e.createBlock(N6,{modelValue:n.value,"onUpdate:modelValue":i[0]||(i[0]=c=>n.value=c),placeholders:o.placeholders.calendar,placeholder:o.filter.placeholder||o.placeholders.choose,"use-timezone":l.useTimezone,name:"condition_dates",class:"mc-filter-type-date",range:""},null,8,["modelValue","placeholders","placeholder","use-timezone"]))}}),mi={class:"mc-filter-type-range"},h4=e.defineComponent({__name:"McFilterTypeRange",props:{modelValue:{type:Object,default:()=>({more:null,less:null})},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0}},emits:["update:modelValue"],setup(o,{emit:t}){const r=t,l=o,n=e.ref(null),a=e.ref(null),i=e.computed({get(){var d;return(d=l.modelValue)==null?void 0:d.more},set(d){n.value=d||null,u()}}),c=e.computed({get(){var d;return(d=l.modelValue)==null?void 0:d.less},set(d){a.value=d||null,u()}});e.watch(()=>l.modelValue,d=>{d&&(n.value=l.modelValue.more||null,a.value=l.modelValue.less||null)},{deep:!0});const s=d=>d||Number.isInteger(d),u=()=>{const d=s(n.value),C=s(a.value),p=l.filter.min&&s(l.filter.min),h=l.filter.max&&s(l.filter.max);let f=d?Number(n.value):null,m=C?Number(a.value):null;l.filter.min&&f&&f<l.filter.min&&p&&(f=l.filter.min),l.filter.max&&m&&m>l.filter.max&&h&&(m=l.filter.max),l.filter.max&&f&&f>l.filter.max&&h&&(f=l.filter.max),l.filter.min&&m&&m<l.filter.min&&p&&(m=l.filter.min);const k={more:f||null,less:m||null};a.value=m,n.value=f,r("update:modelValue",{value:k})};return(d,C)=>(e.openBlock(),e.createElementBlock("div",mi,[e.createVNode(e.unref(Y1),{modelValue:i.value,"onUpdate:modelValue":C[0]||(C[0]=p=>i.value=p),placeholder:o.placeholders.from.toLowerCase(),type:e.unref(P2).AmountFormat,name:"range_more"},null,8,["modelValue","placeholder","type"]),e.createVNode(e.unref(Y1),{modelValue:c.value,"onUpdate:modelValue":C[1]||(C[1]=p=>c.value=p),placeholder:o.placeholders.to.toLowerCase(),type:e.unref(P2).AmountFormat,name:"range_less"},null,8,["modelValue","placeholder","type"])]))}}),fi={class:"mc-filter-type-relation__header"},ki={class:"mc-filter-type-relation__buttons"},m4=e.defineComponent({__name:"McFilterTypeRelation",props:{modelValue:{type:Object,default:()=>({})},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0},currentValues:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(o,{emit:t}){const r=D0(),l=t,n=o,a=_e(L=>{L()},100),i=e.ref(Object.values(_2)),c=e.ref(_2.Is),s=e.ref([]),u=e.ref(!1),d=e.computed(()=>n.filter.is_text?Y1:v9),C=e.computed(()=>n.filter.placeholder||n.filter.is_text?n.placeholders.enter:n.placeholders.choose),p=e.computed(()=>{var L;return((L=n.filter.getAjaxOptions)==null?void 0:L.constructor)===Function}),h=e.computed(()=>{let L=p.value?s.value:n.filter.options||[];if(n.currentValues[n.filter.value]){const T=n.currentValues[n.filter.value]||{};let g=[];for(let[H,S]of Object.entries(T)){if(H===_2.Exists)return[];g=[...g,...Array.isArray(S)?S:[[S]]]}L=L.filter(H=>!g.includes(String(H.value)))}return L}),f=e.computed({get(){let L=n.modelValue;if(L){for(let[T,g]of Object.entries(n.modelValue)){let H=T,S=g;H===_2.Exists?L="":L=(S==null?void 0:S[0])||""}p.value&&L&&M(L)}return L},set(L){c.value!==_2.Exists&&b(L)}}),m=L=>{c.value!==L&&(c.value=L,b(f.value))},k=async L=>{u.value=!0,s.value=n.filter.getAjaxOptions&&await n.filter.getAjaxOptions(L),u.value=!1},M=async L=>{const T=n.filter.getAjaxOne&&await n.filter.getAjaxOne(L);s.value=r.uniqWith([...s.value,T],r.isEqual)},v=L=>{!p.value||!L||a(()=>k(L))},b=L=>{var Z;let T=null,g=null;const H=L||Number.isInteger(L);if(c.value!==_2.Exists&&H){const _=n.filter.is_text?L:(Z=h.value.find(I=>String(I.value)===String(L)))==null?void 0:Z.name;T={[c.value]:[String(L)]},g={[c.value]:{[String(L)]:_}}}c.value===_2.Exists&&!n.currentValues[n.filter.value]&&(T={[_2.Exists]:0},g={[_2.Exists]:null}),l("update:modelValue",{value:T,valueName:g})};return e.watch(()=>n.modelValue,L=>{if(L)for(let T of Object.keys(L))c.value=T},{immediate:!0}),e.watch(()=>n.filter,()=>{c.value=_2.Is,e.nextTick(()=>s.value=[])}),(L,T)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(d.value),{modelValue:f.value,"onUpdate:modelValue":T[0]||(T[0]=g=>f.value=g),options:h.value,"internal-search":!p.value,placeholder:C.value,loading:u.value,disabled:c.value===e.unref(_2).Exists,"hide-selected":"",class:"mc-filter-type-relation",name:`relation_${n.filter.type}`,onSearchChange:v},{header:e.withCtx(()=>[e.createElementVNode("div",fi,[e.createVNode(e.unref(g2),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.condition),1)]),_:1}),e.createElementVNode("div",ki,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,g=>(e.openBlock(),e.createBlock(e.unref(E2),{key:g,variation:c.value===g?"purple":"dark-gray-outline",onClick:()=>m(g)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.placeholders.actions[`${g===e.unref(_2).Exists?"empty":g}`]),1)]),_:2},1032,["variation","onClick"]))),128))])])]),_:1},40,["modelValue","options","internal-search","placeholder","loading","disabled","name"]))}}),f4=e.defineComponent({__name:"McFilterTypeText",props:{modelValue:{type:[String,Number],default:null},filter:{type:Object,default:()=>({})},placeholders:{type:Object,required:!0}},emits:["update:modelValue"],setup(o,{emit:t}){const r=t,l=o,n=e.computed({get(){return l.modelValue},set(a){r("update:modelValue",{value:a})}});return(a,i)=>(e.openBlock(),e.createBlock(e.unref(Y1),{modelValue:n.value,"onUpdate:modelValue":i[0]||(i[0]=c=>n.value=c),placeholder:o.filter.placeholder||o.placeholders.enter,class:"mc-filter-type-text",name:"mc_filter_type_text"},null,8,["modelValue","placeholder"]))}}),D9=["span","order","offset","push","pull"],E9=Object.values(p3),k4={};D9.forEach(o=>{E9.forEach(t=>{k4[`${o}-${t}`]={type:String}})});const y4=k4,e3=e.defineComponent({__name:"McGridCol",props:{...y4,span:{type:[String]},order:{type:Number},offset:{type:Number},push:{type:Number},pull:{type:Number},stretchSelf:{type:Boolean,default:!1},basis:{type:String,default:"auto"}},setup(o){const t=D0(),r=e.inject("provideData",{gutterX:0,gutterY:0}),l=o,n=e.computed(()=>{const i={};return D9.forEach(c=>{i[`mc-grid-col--${c}-${l[c]}`]=!!l[c],E9.forEach(s=>{const u=l[`${c}${t.upperFirst(s)}`];i[`mc-grid-col--${c}-${s}-${u}`]=!!u})}),i}),a=e.computed(()=>{let i={};return r.gutterX!==0&&(i["padding-left"]=`${r.gutterX/2}px`,i["padding-right"]=`${r.gutterX/2}px`),r.gutterY!==0&&(i["padding-top"]=`${r.gutterY/2}px`,i["padding-bottom"]=`${r.gutterY/2}px`),l.stretchSelf?i.flex=`1 0 ${l.basis}`:l.basis!=="auto"&&(i.flex=`0 0 ${l.basis}`),l.order?{...i,order:l.order}:i});return(i,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([n.value,"mc-grid-col"]),style:e.normalizeStyle(a.value)},[e.renderSlot(i.$slots,"default")],6))}}),me=e.defineComponent({__name:"McGridRow",props:{gutterX:{type:Number,default:0},gutterY:{type:Number,default:0},justify:{type:String,default:Me.Left},align:{type:String,default:we.Top},stretch:{type:Boolean,default:!1},wrap:{type:Boolean,default:!0}},setup(o){const t=o;e.provide("provideData",{gutterX:t.gutterX,gutterY:t.gutterY});const r=e.computed(()=>({[`mc-grid-row--justify-${t.justify}`]:!!t.justify,[`mc-grid-row--align-${t.align}`]:!!t.align,"mc-grid-row--stretch":!!t.stretch})),l=e.computed(()=>{let n={};t.gutterX!==0&&(n["margin-left"]=`${-t.gutterX/2}px`,n["margin-right"]=`${-t.gutterX/2}px`),t.gutterY!==0&&(n["margin-top"]=`${-t.gutterY/2}px`,n["margin-bottom"]=`${-t.gutterY/2}px`),t.wrap&&(n["flex-wrap"]="wrap");let a;switch(t.justify){case"left":a="flex-start";break;case"right":a="flex-end";break;case"center":a="center";break;case"around":a="space-around";break;case"between":a="space-between";break}let i;switch(t.align){case"top":i="flex-start";break;case"middle":i="center";break;case"bottom":i="flex-end";break;case"stretch":i="stretch";break}return i&&(n["--mc-grid-row-align"]=i),a&&(n["--mc-grid-row-justify"]=a),n});return(n,a)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-grid-row",r.value]),style:e.normalizeStyle(l.value)},[e.renderSlot(n.$slots,"default")],6))}}),g4=e.defineComponent({__name:"McOverlay",props:{size:{type:String,default:"500"},backgroundColor:{type:String,default:"white"}},setup(o){const t=o,r=e.computed(()=>({"--mc-overlay-color":t.backgroundColor&&v2[t.backgroundColor],"--mc-overlay-spinner-size":t.size&&z0[t.size]}));return(l,n)=>(e.openBlock(),e.createElementBlock("section",{ref:"overlay",class:"mc-overlay",style:e.normalizeStyle(r.value)},n[0]||(n[0]=[e.createElementVNode("div",{class:"mc-overlay__background"},null,-1),e.createElementVNode("section",{class:"mc-overlay__spinner"},null,-1)]),4))}}),yi={key:0,class:"mc-preview__left"},gi={class:"mc-preview__center"},bi={class:"mc-preview__top"},Li={key:0,class:"mc-preview__bottom"},Mi={key:1,class:"mc-preview__right"},_1=e.defineComponent({__name:"McPreview",props:{size:{type:String,default:"m"}},setup(o){const t=o,r=e.computed(()=>({"mc-preview":!0,[`mc-preview--size-${t.size}`]:!!t.size}));return(l,n)=>(e.openBlock(),e.createElementBlock("section",{class:e.normalizeClass(r.value)},[l.$slots.left?(e.openBlock(),e.createElementBlock("div",yi,[e.renderSlot(l.$slots,"left")])):e.createCommentVNode("",!0),e.createElementVNode("div",gi,[e.createElementVNode("div",bi,[e.renderSlot(l.$slots,"top")]),l.$slots.bottom?(e.openBlock(),e.createElementBlock("div",Li,[e.renderSlot(l.$slots,"bottom")])):e.createCommentVNode("",!0)]),l.$slots.right?(e.openBlock(),e.createElementBlock("div",Mi,[e.renderSlot(l.$slots,"right")])):e.createCommentVNode("",!0)],2))}}),U1={[y0.Black]:{mode:y0.Black,className:"mc-side-bar--color-theme-black",dropdownActivator:"white",mainMenuLinks:{variable:"gray-flat",secondaryColor:"white"},closeButton:{variable:"gray-link",secondaryColor:"white"}},[y0.White]:{mode:y0.White,className:"mc-side-bar--color-theme-white",dropdownActivator:"black",mainMenuLinks:{variable:"black-flat",secondaryColor:"purple"},closeButton:{variable:"black-link",secondaryColor:"purple"}}},wi={class:"mc-side-bar__scrollable-container"},Vi=e.defineComponent({__name:"McSideBar",props:{logoTitle:{type:String,default:"Dashboard"},logoTitleVariation:{type:String,default:F2.Subtitle},logoSrc:{type:String,default:""},logoIcon:{type:String,default:""},menuMainTitle:{type:String,default:""},menuMain:{type:Array,default:()=>[]},counts:{type:Object,default:()=>({})},menuApps:{type:Array,default:()=>[]},chatraConfig:{type:Object,default:()=>({})},hideText:{type:String,default:""},compact:{type:Boolean,default:!1},variable:{type:String,default:y0.Black},width:{type:String,default:"216px"},compactWidth:{type:String,default:"56px"},absoluteBreakpoint:{type:Number,default:null},hiddenBreakpoint:{type:Number,default:null}},emits:["absolute-mode","hidden-mode","compact","chatraClick"],setup(o,{emit:t}){const r=t,l=o,n=e.ref(!1),a=e.ref(l.compact),i=e.ref(l.compact),c=e.ref(0),s=e.computed(()=>({"mc-side-bar--compact":i.value,[f.value.className]:!0})),u=e.computed(()=>({overflow:`${n.value?"hidden":"visible"}`,width:i.value?l.compactWidth:l.width})),d=e.computed(()=>{const b=h.value&&i.value?{position:"absolute",left:`-${l.compactWidth}`}:{};let L={width:i.value?l.compactWidth:l.width};return p.value&&(L.width=l.compactWidth),h.value&&(L.width="0px"),{...L,...b}}),C=e.computed(()=>({"mc-side-bar-wrapper__backdrop--full-width":!i.value&&c.value<l.absoluteBreakpoint})),p=e.computed(()=>!!l.absoluteBreakpoint&&c.value<l.absoluteBreakpoint),h=e.computed(()=>!!l.hiddenBreakpoint&&c.value<l.hiddenBreakpoint),f=e.computed(()=>m.value[l.variable]||m.value[y0.Black]),m=e.computed(()=>({black:U1.black,white:U1.white}));e.onMounted(()=>{(l.absoluteBreakpoint||l.hiddenBreakpoint&&window)&&(v(),window.addEventListener("resize",v))}),e.onBeforeUnmount(()=>{window.removeEventListener("resize",v)});const k=()=>{i.value=!i.value,r("compact",i.value)},M=()=>{i.value=!1,r("compact",i.value)},v=()=>{c.value=window.innerWidth};return e.watch(()=>i.value,b=>{b?setTimeout(()=>{a.value=b},280):a.value=b,n.value=!0,setTimeout(()=>{n.value=!1},280)}),e.watch(()=>l.compact,b=>{i.value=b}),e.watch(()=>p.value,b=>{r("absolute-mode",b)},{immediate:!0}),e.watch(()=>h.value,b=>{r("hidden-mode",b)},{immediate:!0}),e.provide("provideData",e.reactive({currentThemeConfig:f.value})),(b,L)=>(e.openBlock(),e.createElementBlock("article",{ref:"sidebar-wrapper",class:"mc-side-bar-wrapper",style:e.normalizeStyle(d.value)},[e.createElementVNode("section",{class:e.normalizeClass(["mc-side-bar-wrapper__backdrop",C.value]),onClick:e.withModifiers(k,["stop","prevent"])},[e.createElementVNode("div",{ref:"sidebar",class:e.normalizeClass(["mc-side-bar",s.value]),style:e.normalizeStyle(u.value),onClick:L[1]||(L[1]=e.withModifiers(()=>{},["stop"]))},[e.createVNode(e.unref(M4),{"logo-title":o.logoTitle,"logo-title-variation":o.logoTitleVariation,"logo-src":o.logoSrc,"logo-icon":o.logoIcon,compact:a.value,"menu-apps":o.menuApps},{"title-append":e.withCtx(()=>[e.renderSlot(b.$slots,"title-append")]),_:3},8,["logo-title","logo-title-variation","logo-src","logo-icon","compact","menu-apps"]),e.createElementVNode("section",wi,[e.createVNode(e.unref(L4),{title:o.menuMainTitle,"menu-main":o.menuMain,counts:o.counts,"chatra-config":o.chatraConfig,compact:a.value,onHandlerChatraClick:L[0]||(L[0]=T=>r("chatraClick")),onOpenSideBar:M},null,8,["title","menu-main","counts","chatra-config","compact"]),e.createVNode(e.unref(b4),{"hide-text":o.hideText,compact:a.value,"hidden-mode":h.value,"sidebar-width":o.width,onToggleSize:k},{"bottom-message":e.withCtx(()=>[e.renderSlot(b.$slots,"bottom-message")]),_:3},8,["hide-text","compact","hidden-mode","sidebar-width"])])],6)],2)],4))}}),b4=e.defineComponent({__name:"McSideBarBottom",props:{hideText:{type:String,default:""},compact:{type:Boolean,default:!1},hiddenMode:{type:Boolean,default:!1},sidebarWidth:{type:String,default:null}},emits:["toggle-size"],setup(o,{emit:t}){const r=e.inject("provideData",{}),l=t,n=o,a=e.computed(()=>r.currentThemeConfig||U1[y0.Black]),i=e.computed(()=>{var d;return(d=a.value)==null?void 0:d.closeButton}),c=e.computed(()=>({"mc-side-bar-bottom--compact":n.compact})),s=e.computed(()=>({minWidth:n.sidebarWidth})),u=()=>{l("toggle-size",!n.compact)};return(d,C)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-side-bar-bottom",c.value])},[!o.compact&&d.$slots["bottom-message"]?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-side-bar-bottom__slot-message",style:e.normalizeStyle(s.value)},[e.renderSlot(d.$slots,"bottom-message")],4)):e.createCommentVNode("",!0),o.hiddenMode?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(fe),{key:1,class:"mc-side-bar-bottom__hide-button",icon:"arrow_backward",title:o.hideText,compact:o.compact,variation:i.value.variable,"secondary-color":i.value.secondaryColor,onClick:e.withModifiers(u,["stop","prevent"])},null,8,["title","compact","variation","secondary-color"]))],2))}}),_i={key:1,class:"mc-side-bar-button__dot"},fe=e.defineComponent({__name:"McSideBarButton",props:{to:{type:Object,default:null},href:{type:String,default:null},icon:{type:String,default:""},iconColor:{type:String,default:"currentColor"},title:{type:String,default:""},compact:{type:Boolean,default:!1},variation:{type:String},secondaryColor:{type:String},withTooltip:{type:Boolean,default:!1},withIndicator:{type:Boolean,default:!1},isActive:{type:Boolean,default:!1},info:{type:[String,Number],default:""},exact:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},setup(o){const t=e.useAttrs(),r=e.inject("provideData",{}),l=o,n=e.computed(()=>r.currentThemeConfig||U1[y0.Black]),a=e.computed(()=>({"mc-side-bar-button":!0,[`mc-side-bar--${n.value.mode||"black"}__button`]:!0,"purple-hover":!l.secondaryColor&&n.value.mainMenuLinks.variable==="black-flat",[t.class]:!!t.class})),i=e.computed(()=>({...t,variation:l.variation||n.value.mainMenuLinks.variable,secondaryColor:l.secondaryColor||n.value.mainMenuLinks.secondaryColor,textAlign:J0.Left,fullWidth:!0,size:l.compact?t0.SCompact:t0.S,href:l.href,to:l.to,exact:l.exact,disabled:l.disabled,isActive:l.isActive,tooltip:l.compact&&l.withTooltip?l.title:"",tooltipPlacement:s0.Right}));return(c,s)=>(e.openBlock(),e.createBlock(e.unref(E2),e.mergeProps(i.value,{class:a.value}),e.createSlots({"icon-prepend":e.withCtx(()=>[o.icon?(e.openBlock(),e.createBlock(e.unref(V2),{key:0,fill:o.iconColor,class:"mc-side-bar-button__icon",name:o.icon},null,8,["fill","name"])):e.createCommentVNode("",!0),o.icon&&o.compact&&(o.info||o.withIndicator)?(e.openBlock(),e.createElementBlock("span",_i)):e.createCommentVNode("",!0)]),default:e.withCtx(()=>[o.compact?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(o.title),1)],64))]),_:2},[o.compact?void 0:{name:"icon-append",fn:e.withCtx(()=>[o.info||o.withIndicator?(e.openBlock(),e.createBlock(e.unref(X1),{key:0,variation:"purple",class:e.normalizeClass(["mc-side-bar-button__chip",{indicator:o.withIndicator}])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.withIndicator?"":o.info),1)]),_:1},8,["class"])):e.createCommentVNode("",!0)]),key:"0"}]),1040,["class"]))}}),vi={class:"mc-side-bar-center"},Hi={key:1,class:"mc-side-bar-center__content"},L4=e.defineComponent({__name:"McSideBarCenter",props:{title:{type:String,default:""},menuMain:{type:Array,default:()=>[]},counts:{type:Object,default:()=>({})},chatraConfig:{type:Object,default:()=>({})},compact:{type:Boolean,default:!1}},emits:["open-side-bar","handlerChatraClick"],setup(o,{emit:t}){const r=c4(),l=G1(),n=e.inject("provideData",{}),a=t,i=o,c=e.ref(!0),s=e.ref([]),u=e.computed(()=>n.currentThemeConfig||U1[y0.Black]);e.onBeforeMount(()=>{p()}),e.watch(()=>i.menuMain,()=>{p()},{deep:!0}),e.watch(()=>i.compact,()=>{p()}),e.watch(()=>r,(h,f)=>{if(c.value=!0,f.path!==h.path){const m=s.value.find(k=>{var M;return k.to===h.path||((M=k.menu)==null?void 0:M.find(v=>v.to===h.path))});m!=null&&m.menu&&!i.compact&&(m.open=!0)}e.nextTick(()=>{s.value.forEach(m=>{const k=m.to===h.path,M=m.menu&&m.menu.some(v=>{var b,L;return((b=v.to)==null?void 0:b.match(h==null?void 0:h.path))||((L=h.path)==null?void 0:L.match(v.to))});k||M||(m.open=!1)}),c.value=!1})});const d=h=>({open:h.open,active:h.active(),"with-submenu":h.menu&&h.menu.length,[`mc-side-bar--${u.value.mode||"black"}__button`]:!0,"purple-hover":u.value.mainMenuLinks.variable==="black-flat",[`mc-button--variation-${u.value.mainMenuLinks.variable}`]:!!u.value.mainMenuLinks.variable,"mc-side-bar--black__button mc-button nuxt-link-active":h.menu&&h.menu.length&&!h.open&&h.active()}),C=()=>{i.compact&&a("open-side-bar")},p=()=>{c.value=!0,s.value=i.menuMain.map(h=>{const f=()=>{var m;return h.menu&&h.menu.some(k=>{var M;return(M=r==null?void 0:r.path)==null?void 0:M.match(k.to)})||!!((m=r==null?void 0:r.path)!=null&&m.match(h.to))};return{id:l.timestamp(5),...h,active:f,indicator:()=>h.menu&&h.menu.some(m=>{var k;return!!((k=i.counts)!=null&&k[m.count_key])}),open:!i.compact&&f()}}),c.value=!1};return(h,f)=>(e.openBlock(),e.createElementBlock("div",vi,[o.title?(e.openBlock(),e.createBlock(e.unref(g2),{key:0,class:"mc-side-bar-center__title",color:o.compact?"transparent":"dark-gray"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.title),1)]),_:1},8,["color"])):e.createCommentVNode("",!0),s.value&&s.value.length?e.withDirectives((e.openBlock(),e.createElementBlock("div",Hi,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,m=>(e.openBlock(),e.createElementBlock("div",{key:m.id,class:e.normalizeClass([{"item-active":m.active()},"mc-side-bar-center__content-item item"])},[e.createElementVNode("div",{class:e.normalizeClass(["item__head",d(m)]),onClick:C},[e.createVNode(e.unref(fe),{info:m.menu&&m.menu.length?null:m.info||i.counts[m.count_key]||null,href:m.href,to:m.to,icon:m.icon,"icon-color":m.iconColor,title:m.name,compact:o.compact,"is-active":m.active(),"with-submenu":m.menu&&!!m.menu.length,"with-indicator":m.indicator()&&!m.open,"with-tooltip":"",class:"item__head-button--no-hover"},null,8,["info","href","to","icon","icon-color","title","compact","is-active","with-submenu","with-indicator"]),m.menu&&m.menu.length&&!o.compact?(e.openBlock(),e.createBlock(e.unref(E2),{key:0,variation:m.active()?"white-link":"gray-link",size:e.unref(t0).MCompact,class:e.normalizeClass(["item__head-arrow",{rotate:m.active()?m.active()&&m.open:m.open}]),onClick:k=>m.open=!m.open},{"icon-prepend":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:"arrow_forward"})]),_:2},1032,["variation","size","class","onClick"])):e.createCommentVNode("",!0)],2),m.menu&&m.menu.length?(e.openBlock(),e.createBlock(Z9,{key:0,class:"item__submenu",active:m.active()?m.active()&&m.open:m.open},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.menu,(k,M)=>(e.openBlock(),e.createBlock(e.unref(fe),{key:M,info:o.counts[k.count_key],href:k.href,to:k.to,icon:k.icon,"icon-color":k.iconColor,title:k.name,compact:o.compact,"with-tooltip":""},null,8,["info","href","to","icon","icon-color","title","compact"]))),128))]),_:2},1032,["active"])):e.createCommentVNode("",!0)],2))),128))],512)),[[e.vShow,!c.value]]):e.createCommentVNode("",!0),o.chatraConfig.title?(e.openBlock(),e.createBlock(e.unref(S9),{key:2,color:"dark-gray","indent-top":"150","indent-bottom":"150","indent-left":o.compact?"50":"100","indent-right":o.compact?"50":"100"},null,8,["indent-left","indent-right"])):e.createCommentVNode("",!0),o.chatraConfig.title?(e.openBlock(),e.createBlock(e.unref(fe),{key:3,icon:"chat_messages",title:o.chatraConfig.title,compact:o.compact,"with-tooltip":"",onClick:f[0]||(f[0]=m=>a("handlerChatraClick"))},null,8,["title","compact"])):e.createCommentVNode("",!0)]))}}),xi=["src","alt"],Bi=["src","alt"],Si=["src"],M4=e.defineComponent({__name:"McSideBarTop",props:{menuApps:{type:Array,default:()=>[]},logoTitle:{type:String,default:"Dashboard"},logoTitleVariation:{type:String,default:F2.Subtitle},logoSrc:{type:String,default:""},logoIcon:{type:String,default:""},dropdownPosition:{type:String,default:Q0.Left},compact:{type:Boolean,default:!1}},setup(o){const t=D0(),r=e.inject("provideData",{}),l=o,n=e.ref(!1),a=e.computed(()=>r.currentThemeConfig||U1[y0.Black]),i=e.computed(()=>t.isEmpty(l.menuApps)?null:l.menuApps.filter(c=>!Object.prototype.hasOwnProperty.call(c,"isVisible")||c.isVisible));return(c,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["mc-side-bar-top",`mc-side-bar-top--theme-${a.value.dropdownActivator}`])},[i.value?(e.openBlock(),e.createBlock(e.unref(Xe),{key:1,modelValue:n.value,"onUpdate:modelValue":s[0]||(s[0]=u=>n.value=u),position:o.dropdownPosition,items:i.value},{activator:e.withCtx(()=>[e.createVNode(e.unref(_1),null,{left:e.withCtx(()=>[o.logoSrc?(e.openBlock(),e.createElementBlock("img",{key:0,class:"mc-side-bar-top__img",src:o.logoSrc,width:"24",height:"24",alt:o.logoTitle},null,8,Bi)):o.logoIcon?(e.openBlock(),e.createBlock(e.unref(V2),{key:1,class:"rotate",name:o.logoIcon},null,8,["name"])):e.createCommentVNode("",!0)]),top:e.withCtx(()=>[e.createVNode(e.unref(E2),{variation:`${a.value.dropdownActivator}-link`,size:o.compact?e.unref(t0).LCompact:e.unref(t0).L,class:"mc-side-bar-top__activator-btn"},{"icon-append":e.withCtx(()=>[e.createVNode(e.unref(V2),{class:"rotate",name:"arrow_drop_down",color:"gray"})]),default:e.withCtx(()=>[o.compact?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(g2),{key:0,weight:e.unref(J2).SemiBold,variation:o.logoTitleVariation},{"icon-append":e.withCtx(()=>[e.renderSlot(c.$slots,"title-append")]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.logoTitle)+" ",1)]),_:3},8,["weight","variation"]))]),_:3},8,["variation","size"])]),_:3})]),item:e.withCtx(({item:u})=>[e.createVNode(e.unref(E2),{"full-width":"","text-align":e.unref(J0).Left,variation:"black-flat",href:u.href,to:u.to,target:u.target,"is-active":u.isActive,exact:u.exact},{"icon-prepend":e.withCtx(()=>[u.icon?(e.openBlock(),e.createBlock(e.unref(V2),{key:0,name:u.icon},null,8,["name"])):u.image?(e.openBlock(),e.createElementBlock("img",{key:1,src:u.image,width:"24",height:"24",alt:"service image"},null,8,Si)):e.createCommentVNode("",!0)]),default:e.withCtx(()=>[e.createTextVNode(" "+e.toDisplayString(u.name),1)]),_:2},1032,["text-align","href","to","target","is-active","exact"])]),_:3},8,["modelValue","position","items"])):(e.openBlock(),e.createBlock(e.unref(_1),{key:0},e.createSlots({top:e.withCtx(()=>[o.compact?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(g2),{key:0,weight:e.unref(J2).SemiBold,variation:o.logoTitleVariation},{"icon-append":e.withCtx(()=>[e.renderSlot(c.$slots,"title-append")]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.logoTitle)+" ",1)]),_:3},8,["weight","variation"]))]),_:2},[o.logoSrc?{name:"left",fn:e.withCtx(()=>[e.createElementVNode("img",{class:"mc-side-bar-top__img",src:o.logoSrc,width:"24",height:"24",alt:o.logoTitle},null,8,xi)]),key:"0"}:void 0]),1024))],2))}}),Zi=["id","aria-hidden","href","to"],Di=e.defineComponent({__name:"McTab",props:{id:{type:String,default:""},name:{type:String,required:!0,default:""},prefix:{type:String,default:""},suffix:{type:String,default:""},appendCount:{type:Number,default:null},appendCountColor:{type:String,default:"black"},isDisabled:{type:Boolean,default:!1},visible:{type:Boolean,default:!0},iconPrepend:{type:String,default:""},iconAppend:{type:String,default:""},iconPrependColor:{type:String,default:""},iconAppendColor:{type:String,default:""},to:{type:Object,default:null},href:{type:String,default:""}},setup(o){const t=e.inject("selfRegisterTabMethod",()=>{}),r=e.useAttrs(),l=o,n=e.ref(!1),a=e.ref(!0),i=e.computed(()=>l.id?l.id:l.name.toLowerCase().replace(/ /g,"-")),c=e.computed(()=>l.isDisabled?"#":`#${i.value}`),s=e.computed(()=>!!l.appendCount||l.appendCount===0),u=e.computed(()=>`--mc-tab-append-count-color: ${v2[l.appendCountColor]}`),d=e.computed(()=>[l.prefix,l.name,l.suffix].filter(Boolean).join("")),C=e.computed(()=>l.visible?d.value:"");e.onMounted(()=>{if(t){const f={isActive:n.value,isVisible:a.value,computedId:i.value,hash:c.value,hasAppendCount:s.value,appendCountStyles:u.value,header:C.value,id:l.id,name:l.name,to:l.to,href:l.href,iconAppendColor:l.iconAppendColor,iconPrependColor:l.iconPrependColor,iconAppend:l.iconAppend,iconPrepend:l.iconPrepend,visible:l.visible,isDisabled:l.isDisabled,appendCountColor:l.appendCountColor,appendCount:l.appendCount,suffix:l.suffix,prefix:l.prefix,showTab:p,hideTab:h,onClick:r.onClick,...r};t(f)}});const p=()=>{n.value=!0},h=()=>{n.value=!1};return(f,m)=>e.withDirectives((e.openBlock(),e.createElementBlock("section",{id:o.id,"aria-hidden":!n.value,class:"tabs-component-panel",role:"tabpanel",href:o.href,to:o.to},[o.visible?e.renderSlot(f.$slots,"default",{key:0}):e.createCommentVNode("",!0)],8,Zi)),[[e.vShow,n.value]])}}),w4=e.defineComponent({__name:"McWrapScroll",props:{wrap:{type:Boolean,default:!1},gutterY:{type:Number,default:0},gutterX:{type:Number,default:0},justify:{type:String,default:Me.Left},scrollable:{type:Boolean,default:!0},gutterBottom:{type:String,default:null},hasScroll:{type:Boolean,default:!1},withBlur:{type:Boolean,default:!1},moreSpace:{type:Boolean,default:!1},rtl:{type:Boolean,default:!1},scrollSpeed:{type:Number,default:1},tagName:{type:String,default:"div"}},emits:["content-scrolled"],setup(o,{emit:t}){const r=t,l=o,n=e.reactive({scroll_pos:0,start_client_pos:0,distance:0,is_drag:!1,mouse_is_down:!1}),a=e.ref(!1),i=e.ref(!1),c=e.ref(null),s=e.ref(null),u=e.computed(()=>({wrap:l.wrap,align:we.Top,gutterY:l.gutterY,gutterX:l.gutterX,justify:l.justify})),d=e.computed(()=>({"mc-wrap-scroll":!0,"mc-wrap-scroll--scrollable":l.scrollable,"mc-wrap-scroll--no-scrollbar":!l.hasScroll,"mc-wrap-scroll--more-space":l.moreSpace})),C=e.computed(()=>({"--mc-wrap-scroll-bottom":i0[l.gutterBottom]})),p=e.computed(()=>({"mc-wrap-scroll__wrapper--left-blur":l.withBlur&&a.value,"mc-wrap-scroll__wrapper--right-blur":l.withBlur&&i.value,"mc-wrap-scroll__wrapper--more-space":l.moreSpace}));e.onMounted(()=>{window.addEventListener("mousemove",M),window.addEventListener("mouseup",v),h(),setTimeout(()=>f(),10)}),e.onBeforeUnmount(()=>{window.removeEventListener("mousemove",M),window.removeEventListener("mouseup",v),s.value&&s.value.removeEventListener("scroll",f),c.value&&c.value.disconnect()});const h=()=>{s.value&&(s.value.addEventListener("scroll",f),l.withBlur&&m())},f=()=>{var b;if(r("content-scrolled"),!!l.withBlur&&s.value)try{const L=Math.ceil((b=s.value.getBoundingClientRect())==null?void 0:b.width),T=Math.ceil(s.value.scrollWidth),g=Math.ceil(s.value.scrollLeft);a.value=l.rtl?T>L&&T-10>Math.abs(g)+L:!!g,i.value=l.rtl?Math.abs(g)>1:T>L&&T>Math.abs(g)+L}catch{a.value=!1,i.value=!1}},m=()=>{if(s.value)try{c.value=new MutationObserver(f);const b={attributes:!0,childList:!0,subtree:!0};c.value.observe(s.value,b)}catch{console.error("Error when try to create observer in McWrapScroll")}else console.error("Error when try to create observer in McWrapScroll")},k=b=>{if(s.value){const L=n;if(L.start_client_pos=b.clientX,L.mouse_is_down=!0,L.scroll_pos=s.value.scrollLeft,window.getSelection){let T=window.getSelection();T==null||T.removeAllRanges()}}},M=b=>{if(s.value){const L=n;if(!L.mouse_is_down)return;L.distance=b.clientX-L.start_client_pos,Math.abs(L.distance)>2&&!L.is_drag&&(L.is_drag=!0),L.is_drag&&s.value.scrollTo({left:L.scroll_pos-L.distance*l.scrollSpeed})}},v=()=>{n.is_drag&&(n.is_drag=!1),n.mouse_is_down=!1};return(b,L)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(l.tagName),{class:e.normalizeClass([p.value,"mc-wrap-scroll__wrapper"])},{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"scrollContainer",ref:s,class:e.normalizeClass(d.value),style:e.normalizeStyle(C.value),onMousedown:k},[e.createVNode(e.unref(me),e.mergeProps(u.value,{style:{"pointer-events":n.is_drag?"none":"auto"},class:"mc-wrap-scroll__row"}),{default:e.withCtx(()=>[e.renderSlot(b.$slots,"default")]),_:3},16,["style"])],38)]),_:3},8,["class"]))}}),Ei={class:"tabs-component"},Ti=["aria-controls","aria-selected","href","onClick"],Ai={class:"tabs-component-tab__tab-name"},$i={class:"tabs-component-panels"},Fi=e.defineComponent({__name:"McTabs",props:{modelValue:{type:String,default:null},tabVariation:{type:String,default:f3.Captions},color:{type:String,default:"black"},accentColor:{type:String,default:"purple"},uppercase:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},sticky:{type:Boolean,default:!1}},emits:["update:modelValue","tab-changed","clicked"],setup(o,{emit:t}){const r=t,l=Ka(),n=o,a=e.ref([]),i=e.computed(()=>({"mc-tabs":!0,[`mc-tabs--tab-variation-${n.tabVariation}`]:!!n.tabVariation,"mc-tabs--uppercase":!!n.uppercase,"mc-tabs--sticky":!!n.sticky})),c=e.computed(()=>({"--mc-tabs-color":v2[n.color],"--mc-tabs-accent-color":v2[n.accentColor]})),s=e.computed({get(){return n.modelValue},set(k){r("update:modelValue",k)}}),u=e.computed(()=>a.value.filter(k=>k.visible&&!k.isDisabled));e.onMounted(()=>{p()}),e.onUpdated(()=>{setTimeout(()=>{f()},10)});const d=k=>{a.value.forEach(M=>{M.isActive=M.computedId===k,M.isActive?M.showTab():M.hideTab()})},C=k=>{a.value.push(k)},p=()=>{let[k]=u.value;const M=a.value.find(v=>v.computedId===n.modelValue);M&&!M.isDisabled&&(k=M),k&&m(k)},h=k=>{r("tab-changed",{tab:k})},f=()=>{var v;if(n.loading)return;const k=(v=a.value)==null?void 0:v.find(b=>b.isActive);if(!(k!=null&&k.isDisabled))return;const[M]=u.value;m(M)},m=(k,M)=>{if(M==null||M.preventDefault(),!k.isDisabled){if(k.onClick&&typeof k.onClick=="function")return k.onClick(k);if(k.href){window.open(k.href,"_blank");return}if(k.to&&l){l.push(k.to);return}h(k),d(k.computedId),s.value=k.computedId}};return e.watch(()=>n.loading,(k,M)=>{!k&&M&&e.nextTick(()=>{p()})}),e.provide("selfRegisterTabMethod",C),(k,M)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(i.value),style:e.normalizeStyle(c.value)},[e.createElementVNode("div",Ei,[e.createVNode(w4,{"tag-name":"ul",role:"tablist",scrollable:"",class:"tabs-component-tabs"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,(v,b)=>e.withDirectives((e.openBlock(),e.createElementBlock("li",{key:b,class:e.normalizeClass([{"is-active":v.isActive,"is-disabled":v.isDisabled},"tabs-component-tab"]),role:"presentation"},[e.createElementVNode("a",{"aria-controls":v.hash,"aria-selected":v.isActive,href:v.href||v.hash||"javascript:void(0)",class:"tabs-component-tab-a",role:"tab",onClick:L=>m(v,L)},[e.createElementVNode("span",Ai,[v.iconPrepend?(e.openBlock(),e.createBlock(e.unref(V2),{key:0,name:v.iconPrepend,color:v.iconPrependColor},null,8,["name","color"])):e.createCommentVNode("",!0),e.createElementVNode("span",null,e.toDisplayString(v.header),1),v.iconAppend?(e.openBlock(),e.createBlock(e.unref(V2),{key:1,name:v.iconAppend,color:v.iconAppendColor},null,8,["name","color"])):e.createCommentVNode("",!0)])],8,Ti)],2)),[[e.vShow,v.isVisible]])),128))]),_:1}),e.createElementVNode("div",$i,[e.renderSlot(k.$slots,"default")])])],6))}}),V4=e.defineComponent({__name:"McDrawer",props:{modelValue:{type:Boolean,default:!1},duration:{type:Number,default:300},position:{type:String,default:H1.Right},closeVisible:{type:Boolean,default:!0},showOverlay:{type:Boolean,default:!0},iconClose:{type:String,default:"close"},width:{type:Number,default:300}},emits:["toggle","open","close","update:modelValue"],setup(o,{emit:t}){const r=t,l=o,n=e.ref(0),a=e.ref(100),i=e.computed(()=>l.position===H1.Right),c=e.computed(()=>i.value?100:-100),s=e.computed(()=>({[i.value?H1.Right:H1.Left]:0})),u=e.ref(n.value),d=e.ref(c.value),C=Z3(d,{duration:l.duration,transition:B3.easeOutQuart}),p=Z3(u,{duration:l.duration,transition:B3.easeOutQuart}),h=e.computed(()=>({visibility:p.value?"visible":"hidden",zIndex:p.value?1:-1})),f=e.computed(()=>({transform:`translateX(${C.value}%)`,width:`${l.width}px`,[l.position]:0,...s.value})),m=e.computed(()=>({"mc-drawer__overlay":!0,"mc-drawer__overlay--hidden":!l.showOverlay})),k=()=>{u.value=a.value,d.value=u.value===0?100:0,l.modelValue||(r("update:modelValue",!0),r("open"))},M=()=>{u.value=n.value,d.value=u.value===0?i.value?100:-100:0,l.modelValue&&(r("update:modelValue",!1),r("close"))},v=()=>{l.showOverlay&&M()};return e.watch(()=>l.modelValue,b=>{b?k():M()},{immediate:!0}),(b,L)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-drawer__wrapper",style:e.normalizeStyle(h.value)},[e.createElementVNode("div",{class:e.normalizeClass(m.value),style:e.normalizeStyle(h.value),onClick:e.withModifiers(v,["stop"])},null,6),e.createElementVNode("div",{class:"mc-drawer",style:e.normalizeStyle(f.value),onClick:L[0]||(L[0]=e.withModifiers(()=>{},["stop"]))},[e.renderSlot(b.$slots,"default"),o.closeVisible?(e.openBlock(),e.createElementBlock("button",{key:0,type:"button",class:"mc-drawer__btn-close",onClick:e.withModifiers(M,["prevent"])},[e.createVNode(e.unref(V2),{class:"mc-drawer__icon-close",name:o.iconClose},null,8,["name"]),e.createVNode(e.unref(V2),{class:"mc-drawer__icon-close--small",name:o.iconClose,size:"200"},null,8,["name"])])):e.createCommentVNode("",!0)],4)],4))}}),zi={class:"mc-drawer-content-template"},Ni={key:0,class:"mc-drawer-content-template__header"},Oi={class:"mc-drawer-content-template__body"},Pi={class:"mc-drawer-content-template__body-inner"},ji={key:1,class:"mc-drawer-content-template__footer"},Ri=e.defineComponent({__name:"McDrawerContentTemplate",props:{title:{type:String,default:""},titleEllipsis:{type:Boolean,default:!1}},setup(o){const t=o;return(r,l)=>(e.openBlock(),e.createElementBlock("div",zi,[r.$slots.title||t.title?(e.openBlock(),e.createElementBlock("div",Ni,[e.renderSlot(r.$slots,"title",{},()=>[e.createVNode(e.unref(g2),{variation:e.unref(F2).Subtitle,ellipsis:t.titleEllipsis,weight:e.unref(J2).SemiBold},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.title),1)]),_:1},8,["variation","ellipsis","weight"])])])):e.createCommentVNode("",!0),e.createElementVNode("div",Oi,[l[0]||(l[0]=e.createElementVNode("div",{class:"mc-drawer-content-template__tint"},null,-1)),e.createElementVNode("div",Pi,[e.renderSlot(r.$slots,"default")])]),r.$slots.footer?(e.openBlock(),e.createElementBlock("div",ji,[e.renderSlot(r.$slots,"footer")])):e.createCommentVNode("",!0)]))}}),Ii={key:0,class:"mc-modal__wrapper"},Yi={key:0,class:"mc-modal__header"},Ui={class:"mc-modal__title"},qi={class:"mc-modal__control"},Wi=e.defineComponent({__name:"McModal",props:{modelValue:{type:Boolean,default:!1},name:{type:String},maxWidth:{type:Number,default:510},duration:{type:Number,default:200},closeVisible:{type:Boolean,default:!0},showOverlay:{type:Boolean,default:!0},clickBackdropToClose:{type:Boolean,default:!0},arrowVisible:{type:Boolean,default:!1},secondaryModal:{type:Boolean,default:!1},scrollableContent:{type:Boolean,default:!0},separators:{type:Boolean,default:!0},headerAlign:{type:String,default:"center"},topPadding:{type:Boolean,default:!1},variation:{type:String,default:"default"}},emits:["before-open","before-close","opened","closed","back","update:modelValue"],setup(o,{emit:t}){const r=t,l=o,n=e.ref(0),a=Z3(n,{duration:l.duration||300,transition:B3.easeOutQuart}),i=e.ref(null),c=e.ref(null),s=e.reactive({scrolled_top:!1,scrolled_bottom:!1,resize_observer:{},small_indents:!1,can_shorten_modal:!1,modal_params:{},indent:{regular:"400",small:"150"},footer:{button:{regular:"600",small:"500"}},header:{title:{line_height:{regular:"300",small:"250"}}}}),u=e.computed(()=>({"mc-modal--arrow-visible":l.arrowVisible,"mc-modal--scrolled-top":s.scrolled_top,"mc-modal--scrolled-bottom":s.scrolled_bottom,"mc-modal--scrollable":l.scrollableContent,"mc-modal--top-padding":l.topPadding,"mc-modal--small-indents":s.small_indents,[`mc-modal--variation-${l.variation}`]:!!l.variation,[`mc-modal--header-align-${l.headerAlign}`]:(l.closeVisible||l.arrowVisible)&&!!l.headerAlign})),d=e.computed(()=>({"--mc-modal-padding":i0[s.indent.regular],"--mc-modal-padding-small":i0[s.indent.small],"--mc-modal-header-line-height":be[s.header.title.line_height.regular],"--mc-modal-header-line-height-small":be[s.header.title.line_height.small],"--mc-modal-button-height":z0[s.footer.button.regular],"--mc-modal-button-height-small":z0[s.footer.button.small],"--mc-modal-max-width":`${l.maxWidth+24}px`,"--mc-modal-state-number":a.value})),C=(T=!0)=>{T||(s.scrolled_top=!1,s.scrolled_bottom=!1,s.small_indents=!1),setTimeout(()=>{if(i.value){const{scrollTop:g,scrollHeight:H,clientHeight:S}=i.value,Z=2;s.scrolled_top=g>Z,s.small_indents=s.scrolled_top&&s.can_shorten_modal,s.scrolled_bottom=g+S<H-Z}},T?0:300)},p=()=>{r("before-close"),i.value&&(s.resize_observer&&s.resize_observer.unobserve(i.value),i.value.removeEventListener("scroll",()=>C()))},h=()=>{l.separators&&(m(),i.value&&(i.value.addEventListener("scroll",()=>C(),{passive:!0}),s.resize_observer=new ResizeObserver(()=>M()),s.resize_observer.observe(i.value)),C()),r("opened")},f=T=>{r("back",T)},m=()=>{try{c.value&&Object.keys(d.value).forEach(T=>{var H;const g=parseInt((H=getComputedStyle(c.value))==null?void 0:H.getPropertyValue(T));g&&(s.modal_params[T]=g)})}catch(T){console.error(T)}},k=()=>{var Z,_,I,A,Q,x,F,D,Y;const T=(+((Z=s.modal_params)==null?void 0:Z["--mc-modal-padding"])-+((_=s.modal_params)==null?void 0:_["--mc-modal-padding-small"]))*3+ +((I=s.modal_params)==null?void 0:I["--mc-modal-padding-small"]),g=+((A=s.modal_params)==null?void 0:A["--mc-modal-header-line-height"])-+((Q=s.modal_params)==null?void 0:Q["--mc-modal-header-line-height-small"]),H=+((x=s.modal_params)==null?void 0:x["--mc-modal-button-height"])-+((F=s.modal_params)==null?void 0:F["--mc-modal-button-height-small"]),S=T+g+H;!s.small_indents&&i.value&&(s.can_shorten_modal=((D=i.value)==null?void 0:D.scrollHeight)-((Y=i.value)==null?void 0:Y.clientHeight)>S)},M=()=>{k(),C()},v=()=>{n.value=1,r("before-open"),r("update:modelValue",!0),e.nextTick(()=>h())},b=()=>{n.value=0,setTimeout(()=>{p(),r("update:modelValue",!1),r("closed")},l.duration||300)},L=()=>{l.clickBackdropToClose&&b()};return e.watch(()=>l.modelValue,T=>{T?v():b()},{immediate:!0}),(T,g)=>l.modelValue?(e.openBlock(),e.createElementBlock("div",Ii,[l.showOverlay?(e.openBlock(),e.createElementBlock("div",{key:0,class:"mc-modal__overlay",onClick:e.withModifiers(L,["stop"])})):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["mc-modal",u.value]),style:e.normalizeStyle(d.value)},[e.createElementVNode("div",{ref_key:"modalInner",ref:c,class:"mc-modal__inner"},[T.$slots.title?(e.openBlock(),e.createElementBlock("div",Yi,[e.createElementVNode("div",Ui,[e.renderSlot(T.$slots,"title")])])):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"mcModalBody",ref:i,class:"mc-modal__body"},[e.renderSlot(T.$slots,"default")],512),e.createElementVNode("div",qi,[e.renderSlot(T.$slots,"footer"),g[0]||(g[0]=e.createElementVNode("div",{id:"mcModalFooter"},null,-1))])],512),o.arrowVisible?(e.openBlock(),e.createElementBlock("button",{key:0,type:"button",class:"mc-modal__btn-back",onClick:e.withModifiers(f,["prevent"])},[e.createVNode(e.unref(V2),{name:"arrow_leftward",class:"mc-modal__icon-back"})])):e.createCommentVNode("",!0),o.closeVisible?(e.openBlock(),e.createElementBlock("button",{key:1,type:"button",class:"mc-modal__btn-close",onClick:e.withModifiers(b,["prevent"])},[e.createVNode(e.unref(V2),{class:"mc-modal__icon-close",width:"24",height:"24",name:"close"})])):e.createCommentVNode("",!0)],6)])):e.createCommentVNode("",!0)}}),q0={defaultHeaderHeight:40,defaultRowHeight:40,defaultFooterRowHeight:40,defaultTableFirstColWidth:251},Gi={class:"mc-table__table"},Ki={class:"mc-table__table_header"},Qi={class:"mc-table__table_header-row"},Xi={class:"mc-table__table_header-cell_content"},Ji={class:"mc-table__table_header-cell_content-left"},es={class:"mc-table__table_header-cell_content-right"},ts={class:"mc-table__table_body"},os=["onClick"],rs={class:"mc-table__table_body-cell_content"},ls={class:"mc-table__table_body-cell_content-left"},ns={key:0,class:"mc-table__table_body-cell_content-right"},as={key:0,class:"mc-table__table_footer"},is={class:"mc-table__table_footer-row"},ss=e.defineComponent({__name:"McTable",props:{columns:{type:Array,required:!0,default:()=>[]},data:{type:Array,required:!0,default:()=>[]},totals:{type:Object,default:()=>({})},sort:{type:Object,default:()=>({})},fixedFirstColumn:{type:Boolean,default:!0},fixedLastColumn:{type:Boolean,default:!1},hasLoadMore:{type:Boolean,default:!0},height:{type:[Number,String],default:"auto"},headerRowHeight:{type:Number,default:q0.defaultHeaderHeight},rowHeight:{type:Number,default:q0.defaultRowHeight},footerRowHeight:{type:Number,default:q0.defaultFooterRowHeight},skeletonLoading:{type:Boolean,default:!1},bottomLoading:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},placeholders:{type:Object,default:()=>({})},noDataIcon:{type:String,default:null},noDataImg:{type:String,default:t4},toTableCardProps:{type:Object,default:()=>({})}},emits:["loading","row-click","sort","table-card-opened"],setup(o,{emit:t}){const r={no_data:"No data",loading:"Loading...",all_loaded:"All loaded",total:"Total"},l=t,n=D0(),a=e.useSlots(),i=o,c=e.ref({state:!1}),s=e.ref(null),u=e.computed(()=>!n.isEmpty(i.data)),d=e.computed(()=>!n.isEmpty(i.totals)),C=e.computed(()=>i.fixedFirstColumn||i.fixedLastColumn),p=e.reactive(n.deepMerge(r,i.placeholders)),h=e.reactive({firstColHasShadow:!1,lastColHasShadow:!1}),f=e.computed(()=>{const[Z]=i.columns;return(c.value.state?[Z]:i.columns).map((_,I)=>{const A=i.fixedFirstColumn&&I===0,Q=i.fixedLastColumn&&I===i.columns.length-1;return{..._,fixedFirst:A,fixedLast:Q,style:{..._.width?{"--mc-table-cell-width":`${_.width}px`,"--mc-table-cell-max-width":`${_.width}px`,"--mc-table-cell-min-width":`${_.width}px`}:{"--mc-table-cell-min-width":_.minWidth&&`${_.minWidth}px`,"--mc-table-cell-width":"100%"}}}})}),m=e.computed(()=>f.value.map(Z=>({...Z,class:{"mc-table__table_header-cell":!0,"mc-table__table_header-cell--fixed-first":Z.fixedFirst,"mc-table__table_header-cell--fixed-last":Z.fixedLast,"mc-table__table_header-cell--shadow-first":Z.fixedFirst&&h.firstColHasShadow,"mc-table__table_header-cell--shadow-last":Z.fixedLast&&h.lastColHasShadow}}))),k=e.computed(()=>f.value.map(Z=>({...Z,class:{"mc-table__table_body-cell":!0,"mc-table__table_body-cell--fixed-first":Z.fixedFirst,"mc-table__table_body-cell--fixed-last":Z.fixedLast,"mc-table__table_body-cell--shadow-first":Z.fixedFirst&&h.firstColHasShadow,"mc-table__table_body-cell--shadow-last":Z.fixedLast&&h.lastColHasShadow}}))),M=e.computed(()=>f.value.map(Z=>({...Z,class:{"mc-table__table_footer-cell":!0,"mc-table__table_footer-cell--fixed-first":Z.fixedFirst,"mc-table__table_footer-cell--fixed-last":Z.fixedLast,"mc-table__table_footer-cell--shadow-first":Z.fixedFirst&&h.firstColHasShadow,"mc-table__table_footer-cell--shadow-last":Z.fixedLast&&h.lastColHasShadow}}))),v=e.computed(()=>({"--mc-table-height":typeof i.height=="number"?`${i.height}px`:i.height,"--mc-table-header-row-height":n.isNumber(i.headerRowHeight)?`${i.headerRowHeight}px`:"40px","--mc-table-row-height":n.isNumber(i.rowHeight)?`${i.rowHeight}px`:"40px","--mc-table-footer-row-height":n.isNumber(i.footerRowHeight)?`${i.footerRowHeight}px`:"40px"})),b=e.computed(()=>({tableColumns:i.columns,tableData:i.data,tableTotals:i.totals,tableSort:i.sort,tableHeaderRowHeight:i.headerRowHeight,tableFooterRowHeight:i.footerRowHeight,tableFixedFirstColumn:i.fixedFirstColumn,tableCardProps:i.toTableCardProps}));e.onMounted(()=>{T()}),e.onBeforeUnmount(()=>{g()});const L=o5(()=>{if(s.value){const{scrollLeft:Z,scrollWidth:_,clientWidth:I}=s.value,A=i.fixedFirstColumn&&Z>0,Q=i.fixedLastColumn&&Z+I<_;h.firstColHasShadow!==A&&(h.firstColHasShadow=A),h.lastColHasShadow!==Q&&(h.lastColHasShadow=Q)}},10),T=()=>{C.value&&s.value&&(L(),s.value.addEventListener("scroll",L))},g=()=>{C.value&&s.value&&s.value.removeEventListener("scroll",L)},H=Z=>{l("row-click",Z)},S=Z=>{c.value=Z,l("table-card-opened",Z)};return(Z,_)=>{const I=e.resolveComponent("router-view");return e.openBlock(),e.createElementBlock("div",{class:"mc-table__container",style:e.normalizeStyle(v.value)},[e.createElementVNode("div",{ref_key:"mcTable",ref:s,class:"mc-table"},[e.createElementVNode("div",Gi,[e.createElementVNode("div",Ki,[e.createElementVNode("div",Qi,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,(A,Q)=>(e.openBlock(),e.createElementBlock("div",{key:Q,class:e.normalizeClass(A.class),style:e.normalizeStyle(A.style)},[e.createElementVNode("div",Xi,[e.createElementVNode("div",Ji,[A.sortable?(e.openBlock(),e.createBlock(e.unref(v4),{key:0,column:A.field,sort:o.sort,onChange:_[0]||(_[0]=x=>l("sort",x))},null,8,["column","sort"])):e.createCommentVNode("",!0),e.renderSlot(Z.$slots,"header-cell",{column:A,cellIndex:Q},()=>[e.createVNode(e.unref(g2),{"text-align":A.align,weight:e.unref(J2).SemiBold,"pre-line":""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(A.header),1)]),_:2},1032,["text-align","weight"])])]),e.createElementVNode("div",es,[e.renderSlot(Z.$slots,`${A.field}-header-right`,{column:A,cellIndex:Q}),e.renderSlot(Z.$slots,`${A.field}-total`,{column:A,cellIndex:Q},()=>[A.total?(e.openBlock(),e.createBlock(e.unref(X1),{key:0,title:A.total,variation:"hover-gray","text-color":"gray",size:e.unref(q1).S},null,8,["title","size"])):e.createCommentVNode("",!0)])])])],6))),128))])]),e.createElementVNode("div",ts,[i.skeletonLoading?(e.openBlock(),e.createBlock(e.unref(_4),{key:0,columns:k.value},null,8,["columns"])):e.createCommentVNode("",!0),u.value?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(o.data,(A,Q)=>(e.openBlock(),e.createElementBlock("div",{key:Q,class:e.normalizeClass(["mc-table__table_body-row",{"mc-table__table_body-row--active":String(c.value.id)===String(A.id)}]),onClick:()=>H(A)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(k.value,(x,F)=>(e.openBlock(),e.createElementBlock("div",{key:F,class:e.normalizeClass(x.class),style:e.normalizeStyle(x.style)},[e.createElementVNode("div",rs,[e.createElementVNode("div",ls,[e.renderSlot(Z.$slots,x.field,{row:A,rowIndex:Q,column:x,cellIndex:F,cellValue:A[x.field]},()=>[e.createVNode(e.unref(g2),{"text-align":x.align,ellipsis:""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(A[x.field]),1)]),_:2},1032,["text-align"])])]),e.unref(a)[`${x.field}-right`]?(e.openBlock(),e.createElementBlock("div",ns,[e.renderSlot(Z.$slots,`${x.field}-right`)])):e.createCommentVNode("",!0)])],6))),128))],10,os))),128)):e.createCommentVNode("",!0),e.createVNode(e.unref(e4),{active:i.hasLoadMore,onLoading:_[1]||(_[1]=A=>l("loading"))},null,8,["active"])]),d.value?(e.openBlock(),e.createElementBlock("div",as,[e.createElementVNode("div",is,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M.value,(A,Q)=>(e.openBlock(),e.createElementBlock("div",{key:Q,class:e.normalizeClass(A.class),style:e.normalizeStyle(A.style)},[e.renderSlot(Z.$slots,"footer-cell",{column:A,cellIndex:Q,cellValue:o.totals[A.field]},()=>[e.createVNode(e.unref(g2),{"text-align":A.align,weight:e.unref(J2).SemiBold},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.totals[A.field]),1)]),_:2},1032,["text-align","weight"])])],6))),128))])])):e.createCommentVNode("",!0)])],512),e.renderSlot(Z.$slots,"default",e.mergeProps(b.value,{onSetTableCardState:S}),()=>[e.createVNode(I,e.mergeProps(b.value,{onSetTableCardState:S}),null,16)]),o.bottomLoading?(e.openBlock(),e.createBlock(e.unref(q9),{key:0})):e.createCommentVNode("",!0),o.loading?(e.openBlock(),e.createBlock(e.unref(g4),{key:1})):e.createCommentVNode("",!0),u.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(o4),{key:2,variation:"small",title:p.no_data,img:i.noDataImg,icon:i.noDataIcon},null,8,["title","img","icon"]))],4)}}}),cs={class:"mc-table-card-header"},ds={class:"mc-table-card-header__left"},us={class:"mc-table-card-header__right"},Cs=e.defineComponent({__name:"McTableCardHeader",props:{buttonBackText:{type:String,default:"Back"},backTo:{type:String,default:null}},setup(o){const t=o;return(r,l)=>(e.openBlock(),e.createElementBlock("section",cs,[e.createElementVNode("div",ds,[e.renderSlot(r.$slots,"default",{},()=>[e.createVNode(e.unref(E2),{to:t.backTo,exact:"",variation:"purple-link",size:e.unref(t0).Xs},{"icon-prepend":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:"arrow_backward"})]),default:e.withCtx(()=>[e.createTextVNode(" "+e.toDisplayString(t.buttonBackText),1)]),_:1},8,["to","size"])])]),e.createElementVNode("div",us,[e.renderSlot(r.$slots,"right")])]))}}),ps={key:0,class:"mc-table-card__header"},hs=e.defineComponent({__name:"McTableCard",props:{id:{type:[String,Number]},tableColumns:{type:Array,default:()=>[]},tableData:{type:Array,default:()=>[]},tableTotals:{type:Object,default:()=>({})},tableSort:{type:Object,default:()=>({})},tableFixedFirstColumn:{type:Boolean,default:!0},tableHeaderRowHeight:{type:Number,default:q0.defaultHeaderHeight},tableFooterRowHeight:{type:Number,default:q0.defaultFooterRowHeight},tableCardProps:{type:Object,default:()=>({})},footerBlur:{type:Boolean,default:!1}},emits:["set-table-card-state","card-id-updated"],setup(o,{emit:t}){const r=e.useSlots(),l=t,n=o,a=D0(),i=e.computed(()=>{const[f]=n.tableColumns;return f!=null&&f.width?f.width:q0.defaultTableFirstColWidth}),c=e.ref(null),s=e.ref(!0),u=e.computed(()=>({"mc-table-card__footer":!!r.footer,"mc-table-card__footer--with-blur":n.footerBlur&&!s.value})),d=e.computed(()=>({"--table-card-header-height":a.isNumber(n.tableHeaderRowHeight)?`${n.tableHeaderRowHeight+-1}px`:`${q0.defaultHeaderHeight}px`,"--table-card-footer-height":a.isNumber(n.tableFooterRowHeight)?`${n.tableFooterRowHeight+-1}px`:`${q0.defaultFooterRowHeight}px`,marginLeft:`${i.value}px`}));e.onMounted(()=>{n.footerBlur&&C(),h({state:!0,id:n.id})}),e.onBeforeUnmount(()=>{c.value&&c.value.removeEventListener("scroll",p),h({state:!1})});const C=()=>{try{s.value=!1,c.value&&c.value.addEventListener("scroll",p)}catch(f){console.error(f)}},p=()=>{try{if(c.value){const{offsetHeight:f,scrollTop:m,scrollHeight:k}=c.value;s.value=f+m===k}}catch(f){s.value=!0,console.error(f)}},h=f=>{l("set-table-card-state",f)};return e.watch(()=>n.footerBlur,f=>{f?C():c.value&&c.value.removeEventListener("scroll",p)}),e.watch(()=>n.id,f=>{const m={state:!0,id:f};h(m),l("card-id-updated",m)}),(f,m)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-table-card",style:e.normalizeStyle(d.value)},[f.$slots.header?(e.openBlock(),e.createElementBlock("div",ps,[e.renderSlot(f.$slots,"header")])):e.createCommentVNode("",!0),e.createElementVNode("div",{ref_key:"bodyEl",ref:c,class:"mc-table-card__body"},[e.renderSlot(f.$slots,"default",e.normalizeProps(e.guardReactiveProps(n)))],512),f.$slots.footer||o.footerBlur?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(u.value)},[e.renderSlot(f.$slots,"footer")],2)):e.createCommentVNode("",!0)],4))}}),ms={class:"mc-table-skeleton-loading skeleton-load-wrapper"},fs={key:0,class:"mc-table-skeleton-loading__loader mc-table-skeleton-loading__loader--more-height"},ks={key:2,class:"mc-table-skeleton-loading__loader"},_4=e.defineComponent({__name:"McTableSkeletonLoading",props:{columns:{type:Array,required:!0,default:()=>[]}},setup(o){const t=o,r=e.computed(()=>{const[l]=t.columns;return l.width});return(l,n)=>(e.openBlock(),e.createElementBlock("section",ms,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.columns,(a,i)=>(e.openBlock(),e.createElementBlock("div",{style:e.normalizeStyle(a.style),class:"mc-table-skeleton-loading__col",key:`skeleton-col__${i}`},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(36,(c,s)=>e.createElementVNode("div",{key:`skeleton-cell-${s}`,class:"mc-table-skeleton-loading__cell"},[s?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",fs,n[0]||(n[0]=[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"},null,-1)]))),i?(e.openBlock(),e.createElementBlock("div",ks,n[2]||(n[2]=[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"},null,-1)]))):(e.openBlock(),e.createElementBlock("div",{key:1,class:"mc-table-skeleton-loading__loader",style:e.normalizeStyle({minWidth:`${r.value}px`})},n[1]||(n[1]=[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_avatar"},null,-1),e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_preview-content"},[e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"}),e.createElementVNode("div",{class:"mc-table-skeleton-loading__loader_line"})],-1)]),4))])),64))],4))),128))]))}}),v4=e.defineComponent({__name:"McTableSort",props:{sort:{type:Object,default:()=>({})},column:{type:String,default:null}},emits:["change"],setup(o,{emit:t}){const r=t,l=o,n=e.computed(()=>l.column===l.sort.sort_column),a=e.computed(()=>{switch(!0){case(l.sort.sort_direction==="asc"&&n.value):return{direction:"asc",next_direction:"desc",icon:"arrow_downward"};case(l.sort.sort_direction==="desc"&&n.value):return{direction:"desc",next_direction:"asc",icon:"arrow_upward"};default:return{direction:null,next_direction:"asc",icon:"arrow_up_down"}}}),i=()=>{r("change",{sort_column:l.column,sort_direction:a.value.next_direction})};return(c,s)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-table-sort",onClick:i},[e.createVNode(e.unref(V2),{size:"200",name:a.value.icon,color:n.value?"black":"gray"},null,8,["name","color"])]))}}),ys={class:"mc-top-bar"},gs={class:"mc-top-bar__inner"},bs={key:0,class:"mc-top-bar__left"},Ls={class:"mc-top-bar__right"},Ms=e.defineComponent({__name:"McTopBar",props:{user:{type:Object,default:()=>({})},menuLangs:{type:Array,default:()=>[]},defaultLang:{type:String,default:"Выберите язык"},currentLang:{type:String,default:null}},setup(o){const t=o,r=e.ref(null),l=e.ref(!1),n=e.ref(!1);return(a,i)=>(e.openBlock(),e.createElementBlock("div",ys,[e.createElementVNode("div",gs,[a.$slots.left?(e.openBlock(),e.createElementBlock("div",bs,[e.renderSlot(a.$slots,"left")])):e.createCommentVNode("",!0),e.createElementVNode("div",Ls,[e.renderSlot(a.$slots,"right"),o.menuLangs&&o.menuLangs.length?(e.openBlock(),e.createBlock(e.unref(Xe),{key:0,ref_key:"menuLangsDD",ref:r,items:o.menuLangs,modelValue:l.value,"onUpdate:modelValue":i[0]||(i[0]=c=>l.value=c),"list-min-width":"auto",class:"mc-top-bar__menu-langs"},{activator:e.withCtx(()=>[e.createVNode(e.unref(E2),{variation:"black-link",uppercase:""},{"icon-append":e.withCtx(()=>[e.createVNode(e.unref(V2),{class:"rotate",name:"arrow_drop_down"})]),default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.currentLang||o.defaultLang)+" ",1)]),_:1})]),item:e.withCtx(({item:c})=>[e.createVNode(e.unref(E2),{to:c.to||c.href,exact:c.exact,variation:"black-flat","text-align":e.unref(J0).Left,"full-width":""},{"icon-prepend":e.withCtx(()=>[e.createVNode(e.unref(V2),{name:`flag_${c.name.toLowerCase()}`},null,8,["name"])]),default:e.withCtx(()=>[e.createTextVNode(" "+e.toDisplayString(c.name),1)]),_:2},1032,["to","exact","text-align"])]),_:1},8,["items","modelValue"])):e.createCommentVNode("",!0),e.renderSlot(a.$slots,"user",{},()=>[t.user?(e.openBlock(),e.createBlock(e.unref(Xe),{key:0,modelValue:n.value,"onUpdate:modelValue":i[1]||(i[1]=c=>n.value=c),position:e.unref(Q0).Right},{activator:e.withCtx(()=>[e.createVNode(e.unref(E2),{variation:"white-flat",size:e.unref(t0).MCompact},{"icon-prepend":e.withCtx(()=>[e.createVNode(e.unref(b3),{src:t.user.avatar,rounded:"",size:"400"},null,8,["src"])]),_:1},8,["size"])]),default:e.withCtx(()=>[e.renderSlot(a.$slots,"user-dropdown-panel")]),_:3},8,["modelValue","position"])):e.createCommentVNode("",!0)])])]),e.createVNode(e.unref(S9),{color:"hover-gray","indent-top":"100"}),e.renderSlot(a.$slots,"bottom")]))}}),ws=e.defineComponent({__name:"McVirtualScroll",props:{items:{type:Array,default:()=>[],required:!0},containerHeight:{type:Number,required:!0},itemHeight:{type:Number,default:20,required:!0},buffer:{type:Number,default:1}},setup(o){const t=o,r=e.ref(null),l=e.ref(0),n=e.ref([]),a=e.ref(0),i=e.computed(()=>({height:`${t.containerHeight}px`,overflowY:"auto",position:"relative"}));e.onMounted(()=>{c(),e.nextTick(s)});const c=()=>{a.value=t.items.length*t.itemHeight},s=()=>{var m;const d=((m=r.value)==null?void 0:m.clientHeight)||0,C=Math.floor(l.value/t.itemHeight),p=Math.min(t.items.length-1,Math.floor((l.value+d)/t.itemHeight)),h=t.buffer||5,f=[];for(let k=Math.max(0,C-h);k<=Math.min(p+h,t.items.length-1);k++)f.push({key:k,data:t.items[k],index:k,top:k*t.itemHeight});n.value=f},u=()=>{var d;l.value=((d=r.value)==null?void 0:d.scrollTop)||0,requestAnimationFrame(s)};return e.watch(()=>t.items,()=>{c(),e.nextTick(s)}),(d,C)=>(e.openBlock(),e.createElementBlock("div",{class:"mc-virtual-scroll",ref_key:"containerRef",ref:r,onScroll:u,style:e.normalizeStyle(i.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,p=>(e.openBlock(),e.createElementBlock("div",{key:`mc-virtual-scroll__item-${p.key}`,class:"mc-virtual-scroll__item",style:e.normalizeStyle({top:`${p.top}px`})},[e.renderSlot(d.$slots,"item",{item:p.data,index:p.index})],4))),128)),e.createElementVNode("div",{style:e.normalizeStyle({height:`${a.value}px`})},null,4)],36))}}),Vs={"$animation-slide-up":"slide-up 0.3s","$animation-slide-up-with-margin":"slide-up-with-margin 0.3s","$animation-spinner":"rotate 1.2s infinite cubic-bezier(0.55, 0, 0.1, 1)","$animation-glow":"glow 1.5s ease-in-out infinite"},_s={"$shadow-xs":"0 2px 8px rgba(0, 0, 0, 0.16)","$shadow-s":"0 4px 12px rgba(0, 0, 0, 0.16)","$shadow-m":"0 12px 32px rgba(0, 0, 0, 0.24)","$shadow-l":"0 24px 40px rgba(0, 0, 0, 0.16)","$shadow-xs-blue":"0px 2px 8px rgba(51, 68, 153, 0.1)","$shadow-s-blue":"0 4px 12px rgba(51, 68, 153, 0.1)","$shadow-m-blue":"0 12px 32px rgba(51, 68, 153, 0.2)","$shadow-xs-purple":"0px 2px 8px rgba(91, 44, 205, 0.1)","$shadow-s-purple":"0 4px 12px rgba(91, 44, 205, 0.1)","$shadow-m-purple":"0 12px 32px rgba(91, 44, 205, 0.2)","$token-shadows":{xs:"0 2px 8px rgba(0, 0, 0, 0.16)",s:"0 4px 12px rgba(0, 0, 0, 0.16)",m:"0 12px 32px rgba(0, 0, 0, 0.24)",l:"0 24px 40px rgba(0, 0, 0, 0.16)","xs-blue":"0px 2px 8px rgba(51, 68, 153, 0.1)","s-blue":"0 4px 12px rgba(51, 68, 153, 0.1)","m-blue":"0 12px 32px rgba(51, 68, 153, 0.2)","xs-purple":"0px 2px 8px rgba(91, 44, 205, 0.1)","s-purple":"0 4px 12px rgba(91, 44, 205, 0.1)","m-purple":"0 12px 32px rgba(91, 44, 205, 0.2)"}},vs={"$easing-swift":"cubic-bezier(0.55, 0, 0.1, 1)"},Hs={"$font-family-main":"'Inter', sans-serif","$font-family-additional":"'Source Serif Pro', serif"},xs={"$gradient-pink":"linear-gradient(180deg, #F5576C 0%, #F093FB 100%)","$gradient-violet":"linear-gradient(180deg, #E41AFE 0%, #8035F8 100%)","$gradient-blue":"linear-gradient(180deg, #1ADBFE 0%, #3580F8 100%)","$gradient-yellow":"linear-gradient(180deg, #FEE41A 0%, #F89B35 100%)","$gradient-green":"linear-gradient(180deg, #C9DD4C 0%, #63BE7E 100%)","$gradient-red":"linear-gradient(180deg, #F26567 0%, #F79440 100%)","$gradient-purple":"linear-gradient(270deg, #9a47ed 0%, #8446ff 100%)","$gradient-purple-pink":"linear-gradient(90deg, #722eff 2%, #fe6ffc 100%)","$gradient-blue-purple":"linear-gradient(90deg, #18bfe3 20%, #8756ff 70%)","$gradient-dark-blue":"linear-gradient(90deg, #5550EF 0%, #7F4EFF 100%)","$gradient-primary-radial":"radial-gradient(rgb(179, 211, 255), rgb(62, 132, 244))"},Bs={"$letter-spacing-m":"0.4px","$letter-spacing-l":"1px"},Ss={"$opacity-disabled":"0.6","$opacity-active":"0.7","$opacity-hover":"0.8"},Zs={"$z-index-sticky-tabs":"49","$z-index-dropdown":"100","$z-index-sticky":"100","$z-index-overlay-page":"7000","$z-index-modal":"8000","$z-index-top-line":"8000","$z-index-header":"10000","$z-index-notification":"10001","$z-index-overlay":"10002","$z-index-toasted":"10003"},Ds={install(o,t={}){const r={drawerComponents:{},modalComponents:{}};o.config.globalProperties.$dsOptions={...r,...t}}};R.Autocomplete=h3,R.AvatarSizes=j9,R.ButtonModifiers=L0,R.ButtonSize=t0,R.ButtonType=y3,R.CellSizes=C3,R.ChipModifiers=Le,R.ChipSize=q1,R.Colors=v2,R.ColumnAlignment=we,R.ColumnJustifyAlignment=Me,R.ColumnSizes=p3,R.DatepickerFormat=W0,R.DatepickerFormatsVariations=I2,R.DatepickerOutputFormat=K0,R.DatepickerTypes=N2,R.DayjsFormat=G0,R.Directions=g0,R.DrawerPositions=H1,R.DropdownListPositions=x1,R.DropdownPositions=Q0,R.Durations=H4,R.FilterRelations=_2,R.FilterTypes=H2,R.FontSizes=x4,R.FontWeights=i3,R.HorizontalAlignment=J0,R.InputTypes=P2,R.LineHeights=be,R.McAccordion=Pa,R.McAvatar=b3,R.McBadge=D4,R.McBottomLoader=q9,R.McButton=E2,R.McCell=Ia,R.McChip=X1,R.McCollapse=qa,R.McDatepicker=N6,R.McDraggable=Bl,R.McDrawer=V4,R.McDrawerContainer=W9,R.McDrawerContentTemplate=Ri,R.McDropdown=Xe,R.McDropdownPanel=u4,R.McFieldCheckbox=Fl,R.McFieldRadio=O6,R.McFieldRadioGroup=ql,R.McFieldRange=mn,R.McFieldSelect=v9,R.McFieldText=Y1,R.McFieldToggle=ka,R.McFilter=di,R.McFilterChip=Je,R.McFilterTags=C4,R.McFilterTypeDate=p4,R.McFilterTypeRange=h4,R.McFilterTypeRelation=m4,R.McFilterTypeText=f4,R.McGridCol=e3,R.McGridRow=me,R.McInfinityLoadingTrigger=e4,R.McModal=Wi,R.McModalContainer=X9,R.McNoData=o4,R.McNotification=va,R.McOverlay=g4,R.McPreview=_1,R.McProgress=Ba,R.McSeparator=S9,R.McSideBar=Vi,R.McSideBarBottom=b4,R.McSideBarButton=fe,R.McSideBarCenter=L4,R.McSideBarTop=M4,R.McSlideUpDown=Z9,R.McStack=Ea,R.McSvgIcon=V2,R.McTab=Di,R.McTable=ss,R.McTableCard=hs,R.McTableCardHeader=Cs,R.McTableSkeletonLoading=_4,R.McTableSort=v4,R.McTabs=Fi,R.McTitle=g2,R.McTooltip=V1,R.McTopBar=Ms,R.McVirtualScroll=ws,R.McWrapScroll=w4,R.MediaQueries=B4,R.ModalVariation=I9,R.PreviewSizes=Ve,R.RadioGroupDirection=m3,R.RadioVariation=Y9,R.Radiuses=R9,R.SelectGroupKeys=X0,R.SelectListDirections=U9,R.SidebarTheme=y0,R.Sizes=z0,R.Spaces=i0,R.TABLE=q0,R.TabVariations=f3,R.TitleSizes=k3,R.TitleVariations=F2,R.TooltipPositions=s0,R.TooltipSizes=N0,R.UseEncodeDecode=W1,R.Weights=J2,R.adaptiveAdditionalProps=y4,R.adaptivePropsParams=D9,R.adaptivePropsSizes=E9,R.animations=Vs,R.borderRadius=d3,R.boxShadows=_s,R.colors=r3,R.dayjs=f2,R.dayjsLocales=D5,R.default=Ds,R.durations=l3,R.easings=vs,R.fontFamilies=Hs,R.fontSizes=n3,R.fontWeights=a3,R.gradients=xs,R.letterSpacings=Bs,R.lineHeights=s3,R.mediaQueries=c3,R.opacities=Ss,R.sizes=S0,R.spacings=u3,R.useDrawer=N4,R.useFieldErrors=Z0,R.useHelper=D0,R.useModal=Q4,R.useRandomNumber=G1,R.useTooltip=D3,R.zIndexes=Zs,Object.defineProperties(R,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});