@seveelly/baseui 16.1.1

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 (2793) hide show
  1. package/.github/CODEOWNERS +4 -0
  2. package/.github/ISSUE_TEMPLATE/1.bug.md +31 -0
  3. package/.github/ISSUE_TEMPLATE/2.feature.md +8 -0
  4. package/.github/ISSUE_TEMPLATE/3.uber.employee.md +6 -0
  5. package/.github/PULL_REQUEST_TEMPLATE.md +12 -0
  6. package/.github/workflows/pr-check.yml +33 -0
  7. package/.github/workflows/release.yml +57 -0
  8. package/.husky/pre-commit +5 -0
  9. package/.ladle/components.tsx +31 -0
  10. package/.lintstagedrc +6 -0
  11. package/CODE_OF_CONDUCT.md +46 -0
  12. package/LICENSE +21 -0
  13. package/PUBLISHING.md +15 -0
  14. package/README.md +63 -0
  15. package/documentation-site/@types/just-clone.d.ts +11 -0
  16. package/documentation-site/@types/just-omit.d.ts +16 -0
  17. package/documentation-site/cheat-sheet.jsx +5626 -0
  18. package/documentation-site/components/align-left-icon.jsx +23 -0
  19. package/documentation-site/components/align-right-icon.jsx +23 -0
  20. package/documentation-site/components/anchor.jsx +54 -0
  21. package/documentation-site/components/blog.jsx +149 -0
  22. package/documentation-site/components/bulb.jsx +36 -0
  23. package/documentation-site/components/cheat-sheet.jsx +121 -0
  24. package/documentation-site/components/code-box.tsx +34 -0
  25. package/documentation-site/components/code-icon.jsx +28 -0
  26. package/documentation-site/components/code.jsx +42 -0
  27. package/documentation-site/components/direction-context.jsx +12 -0
  28. package/documentation-site/components/example.jsx +234 -0
  29. package/documentation-site/components/exports.jsx +52 -0
  30. package/documentation-site/components/floating-marker-container.jsx +27 -0
  31. package/documentation-site/components/footer.jsx +86 -0
  32. package/documentation-site/components/gallery.jsx +405 -0
  33. package/documentation-site/components/github-logo.jsx +27 -0
  34. package/documentation-site/components/header-navigation.jsx +262 -0
  35. package/documentation-site/components/hooks.jsx +32 -0
  36. package/documentation-site/components/json.jsx +15 -0
  37. package/documentation-site/components/layout.jsx +189 -0
  38. package/documentation-site/components/map-marker-sizing-table.jsx +41 -0
  39. package/documentation-site/components/markdown-elements.jsx +187 -0
  40. package/documentation-site/components/meta-favicons.jsx +38 -0
  41. package/documentation-site/components/meta-seo.jsx +30 -0
  42. package/documentation-site/components/overrides.jsx +106 -0
  43. package/documentation-site/components/pencil-icon.jsx +26 -0
  44. package/documentation-site/components/posts.jsx +100 -0
  45. package/documentation-site/components/search.jsx +118 -0
  46. package/documentation-site/components/sidebar.jsx +78 -0
  47. package/documentation-site/components/skip-to-content.jsx +39 -0
  48. package/documentation-site/components/slack-logo.jsx +40 -0
  49. package/documentation-site/components/table-guide-notification.jsx +29 -0
  50. package/documentation-site/components/table-of-contents.jsx +100 -0
  51. package/documentation-site/components/theming/animations.jsx +141 -0
  52. package/documentation-site/components/theming/borders.jsx +65 -0
  53. package/documentation-site/components/theming/breakpoints.jsx +25 -0
  54. package/documentation-site/components/theming/colors.jsx +45 -0
  55. package/documentation-site/components/theming/common.jsx +133 -0
  56. package/documentation-site/components/theming/grid.jsx +34 -0
  57. package/documentation-site/components/theming/lighting.jsx +30 -0
  58. package/documentation-site/components/theming/sizing.jsx +31 -0
  59. package/documentation-site/components/theming/typography.jsx +39 -0
  60. package/documentation-site/components/thumbs/components/Accordion.jsx +25 -0
  61. package/documentation-site/components/thumbs/components/AspectRatioBox.jsx +19 -0
  62. package/documentation-site/components/thumbs/components/Avatar.jsx +28 -0
  63. package/documentation-site/components/thumbs/components/BaseProvider.jsx +22 -0
  64. package/documentation-site/components/thumbs/components/Block.jsx +29 -0
  65. package/documentation-site/components/thumbs/components/Breadcrumbs.jsx +25 -0
  66. package/documentation-site/components/thumbs/components/Button.jsx +17 -0
  67. package/documentation-site/components/thumbs/components/ButtonGroup.jsx +18 -0
  68. package/documentation-site/components/thumbs/components/Card.jsx +18 -0
  69. package/documentation-site/components/thumbs/components/Checkbox.jsx +28 -0
  70. package/documentation-site/components/thumbs/components/DataTable.jsx +24 -0
  71. package/documentation-site/components/thumbs/components/Datepicker.jsx +28 -0
  72. package/documentation-site/components/thumbs/components/DndList.jsx +22 -0
  73. package/documentation-site/components/thumbs/components/Drawer.jsx +22 -0
  74. package/documentation-site/components/thumbs/components/FileUploader.jsx +21 -0
  75. package/documentation-site/components/thumbs/components/FileUploaderBasic.jsx +21 -0
  76. package/documentation-site/components/thumbs/components/FixedMarker.jsx +46 -0
  77. package/documentation-site/components/thumbs/components/FlexGrid.jsx +20 -0
  78. package/documentation-site/components/thumbs/components/FloatingMarker.jsx +39 -0
  79. package/documentation-site/components/thumbs/components/FloatingRouteMarker.jsx +32 -0
  80. package/documentation-site/components/thumbs/components/FormControl.jsx +19 -0
  81. package/documentation-site/components/thumbs/components/HeaderNavigation.jsx +19 -0
  82. package/documentation-site/components/thumbs/components/Heading.jsx +21 -0
  83. package/documentation-site/components/thumbs/components/Icon.jsx +20 -0
  84. package/documentation-site/components/thumbs/components/Input.jsx +17 -0
  85. package/documentation-site/components/thumbs/components/Layer.jsx +19 -0
  86. package/documentation-site/components/thumbs/components/LayoutGrid.jsx +20 -0
  87. package/documentation-site/components/thumbs/components/Link.jsx +17 -0
  88. package/documentation-site/components/thumbs/components/List.jsx +30 -0
  89. package/documentation-site/components/thumbs/components/LocationPuck.jsx +29 -0
  90. package/documentation-site/components/thumbs/components/Menu.jsx +23 -0
  91. package/documentation-site/components/thumbs/components/Modal.jsx +23 -0
  92. package/documentation-site/components/thumbs/components/Notification.jsx +21 -0
  93. package/documentation-site/components/thumbs/components/Pagination.jsx +24 -0
  94. package/documentation-site/components/thumbs/components/PaymentCard.jsx +18 -0
  95. package/documentation-site/components/thumbs/components/PhoneInput.jsx +21 -0
  96. package/documentation-site/components/thumbs/components/PinCode.jsx +20 -0
  97. package/documentation-site/components/thumbs/components/Popover.jsx +19 -0
  98. package/documentation-site/components/thumbs/components/ProgressBar.jsx +18 -0
  99. package/documentation-site/components/thumbs/components/ProgressSteps.jsx +21 -0
  100. package/documentation-site/components/thumbs/components/Radio.jsx +30 -0
  101. package/documentation-site/components/thumbs/components/Rating.jsx +24 -0
  102. package/documentation-site/components/thumbs/components/Select.jsx +21 -0
  103. package/documentation-site/components/thumbs/components/SideNavigation.jsx +23 -0
  104. package/documentation-site/components/thumbs/components/Slider.jsx +19 -0
  105. package/documentation-site/components/thumbs/components/Spinner.jsx +32 -0
  106. package/documentation-site/components/thumbs/components/Styled.jsx +21 -0
  107. package/documentation-site/components/thumbs/components/Table.jsx +24 -0
  108. package/documentation-site/components/thumbs/components/TableGrid.jsx +24 -0
  109. package/documentation-site/components/thumbs/components/TableSemantic.jsx +24 -0
  110. package/documentation-site/components/thumbs/components/Tabs.jsx +20 -0
  111. package/documentation-site/components/thumbs/components/Tag.jsx +40 -0
  112. package/documentation-site/components/thumbs/components/Textarea.jsx +21 -0
  113. package/documentation-site/components/thumbs/components/Toast.jsx +22 -0
  114. package/documentation-site/components/thumbs/components/Tokens.jsx +23 -0
  115. package/documentation-site/components/thumbs/components/Tooltip.jsx +19 -0
  116. package/documentation-site/components/thumbs/components/TreeView.jsx +21 -0
  117. package/documentation-site/components/thumbs/components/Typography.jsx +20 -0
  118. package/documentation-site/components/thumbs/components/UnstableA11Y.jsx +30 -0
  119. package/documentation-site/components/thumbs/components/UseStyletron.jsx +37 -0
  120. package/documentation-site/components/thumbs/index.jsx +87 -0
  121. package/documentation-site/components/thumbs/svg/accordion.svg +9 -0
  122. package/documentation-site/components/thumbs/svg/aspect-ratio-box.svg +5 -0
  123. package/documentation-site/components/thumbs/svg/avatar.svg +6 -0
  124. package/documentation-site/components/thumbs/svg/base-provider.svg +8 -0
  125. package/documentation-site/components/thumbs/svg/block.svg +12 -0
  126. package/documentation-site/components/thumbs/svg/breadcrumbs.svg +7 -0
  127. package/documentation-site/components/thumbs/svg/button-group.svg +5 -0
  128. package/documentation-site/components/thumbs/svg/button.svg +3 -0
  129. package/documentation-site/components/thumbs/svg/card.svg +4 -0
  130. package/documentation-site/components/thumbs/svg/checkbox.svg +9 -0
  131. package/documentation-site/components/thumbs/svg/data-table.svg +32 -0
  132. package/documentation-site/components/thumbs/svg/datepicker.svg +24 -0
  133. package/documentation-site/components/thumbs/svg/dnd-list.svg +7 -0
  134. package/documentation-site/components/thumbs/svg/drawer.svg +5 -0
  135. package/documentation-site/components/thumbs/svg/file-uploader.svg +7 -0
  136. package/documentation-site/components/thumbs/svg/fixed-marker.svg +13 -0
  137. package/documentation-site/components/thumbs/svg/flex-grid.svg +12 -0
  138. package/documentation-site/components/thumbs/svg/floating-marker.svg +13 -0
  139. package/documentation-site/components/thumbs/svg/floating-route-marker.svg +6 -0
  140. package/documentation-site/components/thumbs/svg/form-control.svg +5 -0
  141. package/documentation-site/components/thumbs/svg/header-navigation.svg +6 -0
  142. package/documentation-site/components/thumbs/svg/heading.svg +6 -0
  143. package/documentation-site/components/thumbs/svg/icon.svg +6 -0
  144. package/documentation-site/components/thumbs/svg/input.svg +3 -0
  145. package/documentation-site/components/thumbs/svg/layer.svg +5 -0
  146. package/documentation-site/components/thumbs/svg/layout-grid.svg +17 -0
  147. package/documentation-site/components/thumbs/svg/link.svg +4 -0
  148. package/documentation-site/components/thumbs/svg/list.svg +9 -0
  149. package/documentation-site/components/thumbs/svg/location-puck.svg +5 -0
  150. package/documentation-site/components/thumbs/svg/menu.svg +8 -0
  151. package/documentation-site/components/thumbs/svg/modal.svg +6 -0
  152. package/documentation-site/components/thumbs/svg/notification.svg +4 -0
  153. package/documentation-site/components/thumbs/svg/pagination.svg +7 -0
  154. package/documentation-site/components/thumbs/svg/payment-card.svg +4 -0
  155. package/documentation-site/components/thumbs/svg/phone-input.svg +5 -0
  156. package/documentation-site/components/thumbs/svg/pin-code.svg +6 -0
  157. package/documentation-site/components/thumbs/svg/popover.svg +5 -0
  158. package/documentation-site/components/thumbs/svg/progress-bar.svg +4 -0
  159. package/documentation-site/components/thumbs/svg/progress-steps.svg +8 -0
  160. package/documentation-site/components/thumbs/svg/radio.svg +8 -0
  161. package/documentation-site/components/thumbs/svg/rating.svg +7 -0
  162. package/documentation-site/components/thumbs/svg/select.svg +4 -0
  163. package/documentation-site/components/thumbs/svg/side-navigation.svg +9 -0
  164. package/documentation-site/components/thumbs/svg/slider.svg +5 -0
  165. package/documentation-site/components/thumbs/svg/spinner.svg +7 -0
  166. package/documentation-site/components/thumbs/svg/styled.svg +7 -0
  167. package/documentation-site/components/thumbs/svg/table-grid.svg +18 -0
  168. package/documentation-site/components/thumbs/svg/table-semantic.svg +12 -0
  169. package/documentation-site/components/thumbs/svg/table.svg +11 -0
  170. package/documentation-site/components/thumbs/svg/tabs.svg +7 -0
  171. package/documentation-site/components/thumbs/svg/tag.svg +6 -0
  172. package/documentation-site/components/thumbs/svg/textarea.svg +4 -0
  173. package/documentation-site/components/thumbs/svg/toast.svg +5 -0
  174. package/documentation-site/components/thumbs/svg/tokens.svg +8 -0
  175. package/documentation-site/components/thumbs/svg/tooltip.svg +5 -0
  176. package/documentation-site/components/thumbs/svg/tree-view.svg +8 -0
  177. package/documentation-site/components/thumbs/svg/typography.svg +6 -0
  178. package/documentation-site/components/thumbs/svg/unstable-a11y.svg +13 -0
  179. package/documentation-site/components/thumbs/svg/use-styletron.svg +11 -0
  180. package/documentation-site/components/thumbs/template.jsx +34 -0
  181. package/documentation-site/components/unstable-warning.jsx +36 -0
  182. package/documentation-site/components/version-selector.jsx +92 -0
  183. package/documentation-site/components/yard/__tests__/ast.test.ts +101 -0
  184. package/documentation-site/components/yard/__tests__/code-generator.test.ts +197 -0
  185. package/documentation-site/components/yard/action-buttons.tsx +83 -0
  186. package/documentation-site/components/yard/ast.ts +75 -0
  187. package/documentation-site/components/yard/config/accordion.ts +75 -0
  188. package/documentation-site/components/yard/config/app-nav-bar.ts +131 -0
  189. package/documentation-site/components/yard/config/avatar.ts +57 -0
  190. package/documentation-site/components/yard/config/badge.ts +121 -0
  191. package/documentation-site/components/yard/config/banner.ts +116 -0
  192. package/documentation-site/components/yard/config/bottom-navigation.ts +83 -0
  193. package/documentation-site/components/yard/config/breadcrumbs.ts +68 -0
  194. package/documentation-site/components/yard/config/button-dock.ts +83 -0
  195. package/documentation-site/components/yard/config/button-group.ts +156 -0
  196. package/documentation-site/components/yard/config/button-timed.ts +116 -0
  197. package/documentation-site/components/yard/config/button.ts +170 -0
  198. package/documentation-site/components/yard/config/card.ts +79 -0
  199. package/documentation-site/components/yard/config/checkbox-v2.ts +167 -0
  200. package/documentation-site/components/yard/config/checkbox.ts +197 -0
  201. package/documentation-site/components/yard/config/combobox.ts +148 -0
  202. package/documentation-site/components/yard/config/common/common.ts +76 -0
  203. package/documentation-site/components/yard/config/datepicker.ts +434 -0
  204. package/documentation-site/components/yard/config/dialog.ts +141 -0
  205. package/documentation-site/components/yard/config/divider.ts +37 -0
  206. package/documentation-site/components/yard/config/dnd-list.ts +91 -0
  207. package/documentation-site/components/yard/config/drawer.ts +144 -0
  208. package/documentation-site/components/yard/config/file-uploader-basic.ts +123 -0
  209. package/documentation-site/components/yard/config/file-uploader.ts +176 -0
  210. package/documentation-site/components/yard/config/fixed-marker.ts +192 -0
  211. package/documentation-site/components/yard/config/floating-marker.ts +124 -0
  212. package/documentation-site/components/yard/config/floating-route-marker.ts +98 -0
  213. package/documentation-site/components/yard/config/form-control.ts +84 -0
  214. package/documentation-site/components/yard/config/header-navigation.ts +81 -0
  215. package/documentation-site/components/yard/config/hint-dot.ts +76 -0
  216. package/documentation-site/components/yard/config/icon.ts +54 -0
  217. package/documentation-site/components/yard/config/input.ts +290 -0
  218. package/documentation-site/components/yard/config/link.ts +40 -0
  219. package/documentation-site/components/yard/config/list-heading.ts +88 -0
  220. package/documentation-site/components/yard/config/list-item-label.ts +55 -0
  221. package/documentation-site/components/yard/config/list-item.ts +108 -0
  222. package/documentation-site/components/yard/config/location-puck.ts +101 -0
  223. package/documentation-site/components/yard/config/menu.ts +99 -0
  224. package/documentation-site/components/yard/config/message-card.ts +115 -0
  225. package/documentation-site/components/yard/config/mobile-header.ts +90 -0
  226. package/documentation-site/components/yard/config/modal.ts +160 -0
  227. package/documentation-site/components/yard/config/nav-item.ts +49 -0
  228. package/documentation-site/components/yard/config/notification-circle.ts +102 -0
  229. package/documentation-site/components/yard/config/notification.ts +94 -0
  230. package/documentation-site/components/yard/config/page-control.ts +76 -0
  231. package/documentation-site/components/yard/config/pagination.ts +81 -0
  232. package/documentation-site/components/yard/config/payment-card.ts +65 -0
  233. package/documentation-site/components/yard/config/phone-input.ts +155 -0
  234. package/documentation-site/components/yard/config/pin-code.ts +76 -0
  235. package/documentation-site/components/yard/config/popover.ts +223 -0
  236. package/documentation-site/components/yard/config/progress-bar.ts +111 -0
  237. package/documentation-site/components/yard/config/progress-steps-numbered.ts +45 -0
  238. package/documentation-site/components/yard/config/progress-steps.ts +111 -0
  239. package/documentation-site/components/yard/config/radio.ts +176 -0
  240. package/documentation-site/components/yard/config/rating.ts +77 -0
  241. package/documentation-site/components/yard/config/segmented-control.ts +82 -0
  242. package/documentation-site/components/yard/config/select.ts +435 -0
  243. package/documentation-site/components/yard/config/side-nav.ts +112 -0
  244. package/documentation-site/components/yard/config/skeleton.ts +62 -0
  245. package/documentation-site/components/yard/config/slider.ts +124 -0
  246. package/documentation-site/components/yard/config/spinner.ts +43 -0
  247. package/documentation-site/components/yard/config/stepper.ts +69 -0
  248. package/documentation-site/components/yard/config/switch.ts +174 -0
  249. package/documentation-site/components/yard/config/system-banner.ts +122 -0
  250. package/documentation-site/components/yard/config/tab-motion.ts +67 -0
  251. package/documentation-site/components/yard/config/table-semantic.ts +114 -0
  252. package/documentation-site/components/yard/config/table.ts +71 -0
  253. package/documentation-site/components/yard/config/tabs-motion.ts +133 -0
  254. package/documentation-site/components/yard/config/tabs.ts +95 -0
  255. package/documentation-site/components/yard/config/tag.ts +207 -0
  256. package/documentation-site/components/yard/config/textarea.ts +59 -0
  257. package/documentation-site/components/yard/config/tile.ts +127 -0
  258. package/documentation-site/components/yard/config/timepicker.ts +107 -0
  259. package/documentation-site/components/yard/config/timezonepicker.ts +70 -0
  260. package/documentation-site/components/yard/config/toast.ts +125 -0
  261. package/documentation-site/components/yard/config/tooltip.ts +74 -0
  262. package/documentation-site/components/yard/config/tree-view.ts +149 -0
  263. package/documentation-site/components/yard/custom-props.ts +125 -0
  264. package/documentation-site/components/yard/dark-theme.ts +80 -0
  265. package/documentation-site/components/yard/editor.tsx +126 -0
  266. package/documentation-site/components/yard/index.tsx +169 -0
  267. package/documentation-site/components/yard/knob.tsx +254 -0
  268. package/documentation-site/components/yard/knobs.tsx +96 -0
  269. package/documentation-site/components/yard/nested-tooltip.tsx +64 -0
  270. package/documentation-site/components/yard/override.tsx +210 -0
  271. package/documentation-site/components/yard/overrides-description.tsx +29 -0
  272. package/documentation-site/components/yard/overrides.tsx +212 -0
  273. package/documentation-site/components/yard/provider.ts +142 -0
  274. package/documentation-site/components/yard/styled-components.tsx +45 -0
  275. package/documentation-site/components/yard/theme-editor.tsx +178 -0
  276. package/documentation-site/components/yard/types.ts +26 -0
  277. package/documentation-site/components/yard/utils.ts +49 -0
  278. package/documentation-site/examples/accordion/basic.tsx +15 -0
  279. package/documentation-site/examples/accordion/custom.tsx +17 -0
  280. package/documentation-site/examples/accordion/renderpanelcontent.tsx +15 -0
  281. package/documentation-site/examples/accordion/stateful-panel.tsx +13 -0
  282. package/documentation-site/examples/accordion/stateless.tsx +25 -0
  283. package/documentation-site/examples/accordion/title.tsx +47 -0
  284. package/documentation-site/examples/app-nav-bar/basic.tsx +86 -0
  285. package/documentation-site/examples/app-nav-bar/map-item-to-node.tsx +43 -0
  286. package/documentation-site/examples/app-nav-bar/unique-identifier.tsx +31 -0
  287. package/documentation-site/examples/aspect-ratio-box/basic.tsx +63 -0
  288. package/documentation-site/examples/aspect-ratio-box/calendar.tsx +63 -0
  289. package/documentation-site/examples/aspect-ratio-box/image.tsx +14 -0
  290. package/documentation-site/examples/avatar/error.tsx +19 -0
  291. package/documentation-site/examples/avatar/initials.tsx +12 -0
  292. package/documentation-site/examples/avatar/override.tsx +88 -0
  293. package/documentation-site/examples/avatar/sizes.tsx +19 -0
  294. package/documentation-site/examples/badge/offset.tsx +34 -0
  295. package/documentation-site/examples/badge/primary-inline.tsx +10 -0
  296. package/documentation-site/examples/badge/secondary-inline.tsx +19 -0
  297. package/documentation-site/examples/banner/action.tsx +48 -0
  298. package/documentation-site/examples/banner/artwork.tsx +34 -0
  299. package/documentation-site/examples/banner/variants.tsx +36 -0
  300. package/documentation-site/examples/block/basic.tsx +11 -0
  301. package/documentation-site/examples/block/override.tsx +17 -0
  302. package/documentation-site/examples/block/responsive.tsx +11 -0
  303. package/documentation-site/examples/bottom-navigation/images/deliveryHeroItalian.svg +836 -0
  304. package/documentation-site/examples/bottom-navigation/images/deliveryLargeStrawberries.svg +72 -0
  305. package/documentation-site/examples/bottom-navigation/images/earnerLargeRiderDriver.svg +104 -0
  306. package/documentation-site/examples/bottom-navigation/images/index.d.ts +4 -0
  307. package/documentation-site/examples/bottom-navigation/overflow.tsx +135 -0
  308. package/documentation-site/examples/breadcrumbs/basic.tsx +13 -0
  309. package/documentation-site/examples/breadcrumbs/pseudo.tsx +33 -0
  310. package/documentation-site/examples/button/as-an-anchor.tsx +14 -0
  311. package/documentation-site/examples/button/backgroundSafe.tsx +29 -0
  312. package/documentation-site/examples/button/basic.tsx +12 -0
  313. package/documentation-site/examples/button/dropdown.tsx +42 -0
  314. package/documentation-site/examples/button/kinds.tsx +14 -0
  315. package/documentation-site/examples/button/shapes.tsx +26 -0
  316. package/documentation-site/examples/button/sizes.tsx +24 -0
  317. package/documentation-site/examples/button/states.tsx +19 -0
  318. package/documentation-site/examples/button/widthTypes.tsx +27 -0
  319. package/documentation-site/examples/button/with-enhancers.tsx +20 -0
  320. package/documentation-site/examples/button-dock/basic.tsx +66 -0
  321. package/documentation-site/examples/button-group/basic.tsx +13 -0
  322. package/documentation-site/examples/button-group/checkbox-mode.tsx +24 -0
  323. package/documentation-site/examples/button-group/controlled.tsx +56 -0
  324. package/documentation-site/examples/button-group/disabled-button.tsx +13 -0
  325. package/documentation-site/examples/button-group/disabled.tsx +13 -0
  326. package/documentation-site/examples/button-group/dropdown.tsx +48 -0
  327. package/documentation-site/examples/button-group/enhancer.tsx +14 -0
  328. package/documentation-site/examples/button-group/icon.tsx +20 -0
  329. package/documentation-site/examples/button-group/padding.tsx +46 -0
  330. package/documentation-site/examples/button-group/radio-mode.tsx +20 -0
  331. package/documentation-site/examples/button-group/scrollable.tsx +17 -0
  332. package/documentation-site/examples/button-group/stateful-checkbox.tsx +16 -0
  333. package/documentation-site/examples/button-group/stateful-radio.tsx +13 -0
  334. package/documentation-site/examples/button-group/wrappable.tsx +17 -0
  335. package/documentation-site/examples/button-timed/paused.tsx +79 -0
  336. package/documentation-site/examples/card/basic.tsx +13 -0
  337. package/documentation-site/examples/card/image-cta.tsx +23 -0
  338. package/documentation-site/examples/card/thumbnail-cta.tsx +25 -0
  339. package/documentation-site/examples/checkbox/alignment.tsx +67 -0
  340. package/documentation-site/examples/checkbox/basic-controlled.tsx +11 -0
  341. package/documentation-site/examples/checkbox/basic-uncontrolled.tsx +6 -0
  342. package/documentation-site/examples/checkbox/component-overrides.tsx +30 -0
  343. package/documentation-site/examples/checkbox/disabled.tsx +13 -0
  344. package/documentation-site/examples/checkbox/error.tsx +11 -0
  345. package/documentation-site/examples/checkbox/focus.tsx +35 -0
  346. package/documentation-site/examples/checkbox/indeterminate.tsx +48 -0
  347. package/documentation-site/examples/checkbox/multiline.tsx +16 -0
  348. package/documentation-site/examples/checkbox/overrides.tsx +36 -0
  349. package/documentation-site/examples/checkbox/toggle.tsx +34 -0
  350. package/documentation-site/examples/checkbox-v2/alignment.tsx +38 -0
  351. package/documentation-site/examples/checkbox-v2/basic-controlled.tsx +11 -0
  352. package/documentation-site/examples/checkbox-v2/basic-uncontrolled.tsx +6 -0
  353. package/documentation-site/examples/checkbox-v2/component-overrides.tsx +30 -0
  354. package/documentation-site/examples/checkbox-v2/disabled.tsx +18 -0
  355. package/documentation-site/examples/checkbox-v2/error.tsx +11 -0
  356. package/documentation-site/examples/checkbox-v2/indeterminate.tsx +55 -0
  357. package/documentation-site/examples/checkbox-v2/multiline.tsx +16 -0
  358. package/documentation-site/examples/checkbox-v2/overrides.tsx +36 -0
  359. package/documentation-site/examples/combobox/async-options.tsx +108 -0
  360. package/documentation-site/examples/combobox/filtered-options.tsx +99 -0
  361. package/documentation-site/examples/combobox/focus.tsx +54 -0
  362. package/documentation-site/examples/combobox/input-overrides.tsx +42 -0
  363. package/documentation-site/examples/combobox/replacement-node.tsx +59 -0
  364. package/documentation-site/examples/data-table/access-table-data.tsx +79 -0
  365. package/documentation-site/examples/data-table/basic.tsx +151 -0
  366. package/documentation-site/examples/data-table/batch-action.tsx +169 -0
  367. package/documentation-site/examples/data-table/customized-column-sort.tsx +197 -0
  368. package/documentation-site/examples/data-table/customized-empty-state.tsx +103 -0
  369. package/documentation-site/examples/data-table/row-height-line-clamp.tsx +295 -0
  370. package/documentation-site/examples/datepicker/basic.tsx +11 -0
  371. package/documentation-site/examples/datepicker/calendar-multiple-months-with-label.tsx +15 -0
  372. package/documentation-site/examples/datepicker/calendar-multiple-months.tsx +14 -0
  373. package/documentation-site/examples/datepicker/calendar-time-select.tsx +11 -0
  374. package/documentation-site/examples/datepicker/composed-range-pickers.tsx +124 -0
  375. package/documentation-site/examples/datepicker/composed-single-pickers.tsx +59 -0
  376. package/documentation-site/examples/datepicker/datepicker-with-timezone.tsx +29 -0
  377. package/documentation-site/examples/datepicker/datepickers-color-states.tsx +111 -0
  378. package/documentation-site/examples/datepicker/i18n.tsx +13 -0
  379. package/documentation-site/examples/datepicker/in-popover.tsx +27 -0
  380. package/documentation-site/examples/datepicker/nested-override.tsx +51 -0
  381. package/documentation-site/examples/datepicker/null-mask.tsx +16 -0
  382. package/documentation-site/examples/datepicker/quick-select.tsx +10 -0
  383. package/documentation-site/examples/datepicker/range-picker-with-separate-inputs.tsx +15 -0
  384. package/documentation-site/examples/datepicker/with-callback-overrides.tsx +50 -0
  385. package/documentation-site/examples/datepicker/with-mask.tsx +16 -0
  386. package/documentation-site/examples/datepicker/with-overrides.tsx +60 -0
  387. package/documentation-site/examples/dialog/images/index.d.ts +10 -0
  388. package/documentation-site/examples/dialog/images/venice.jpg +0 -0
  389. package/documentation-site/examples/dialog/with-background-image.tsx +65 -0
  390. package/documentation-site/examples/dialog/without-overlay.tsx +45 -0
  391. package/documentation-site/examples/divider/basic.tsx +55 -0
  392. package/documentation-site/examples/dnd-list/basic.tsx +13 -0
  393. package/documentation-site/examples/dnd-list/customDragHandle.tsx +34 -0
  394. package/documentation-site/examples/dnd-list/overrideLabel.tsx +21 -0
  395. package/documentation-site/examples/dnd-list/overrides_short.tsx +13 -0
  396. package/documentation-site/examples/dnd-list/overrides_state_props.tsx +19 -0
  397. package/documentation-site/examples/dnd-list/overrides_style.tsx +23 -0
  398. package/documentation-site/examples/dnd-list/overrides_whole_subcomponent.tsx +45 -0
  399. package/documentation-site/examples/dnd-list/removable.tsx +22 -0
  400. package/documentation-site/examples/dnd-list/stateless.tsx +30 -0
  401. package/documentation-site/examples/dnd-list/varyingHeights.tsx +19 -0
  402. package/documentation-site/examples/drawer/anchors.tsx +47 -0
  403. package/documentation-site/examples/drawer/sizes.tsx +47 -0
  404. package/documentation-site/examples/drawer/ssr-render-all.tsx +19 -0
  405. package/documentation-site/examples/empty-state/empty-state.tsx +45 -0
  406. package/documentation-site/examples/empty-state/loading.tsx +30 -0
  407. package/documentation-site/examples/file-uploader/basic.tsx +40 -0
  408. package/documentation-site/examples/file-uploader/dynamic-loading.tsx +67 -0
  409. package/documentation-site/examples/file-uploader/item-preview.tsx +24 -0
  410. package/documentation-site/examples/file-uploader/label-hint.tsx +14 -0
  411. package/documentation-site/examples/file-uploader/overrides.tsx +61 -0
  412. package/documentation-site/examples/file-uploader/upload-restrictions.tsx +70 -0
  413. package/documentation-site/examples/file-uploader-basic/_overrides_component.tsx +69 -0
  414. package/documentation-site/examples/file-uploader-basic/basic.tsx +74 -0
  415. package/documentation-site/examples/file-uploader-basic/disabled.tsx +6 -0
  416. package/documentation-site/examples/file-uploader-basic/error.tsx +79 -0
  417. package/documentation-site/examples/file-uploader-basic/indeterminate-progress.tsx +32 -0
  418. package/documentation-site/examples/file-uploader-basic/overrides.tsx +102 -0
  419. package/documentation-site/examples/fixed-marker/badge-and-label-enhancers.tsx +25 -0
  420. package/documentation-site/examples/fixed-marker/badge-enhancer-text.tsx +22 -0
  421. package/documentation-site/examples/fixed-marker/basic.tsx +6 -0
  422. package/documentation-site/examples/fixed-marker/dragging.tsx +27 -0
  423. package/documentation-site/examples/fixed-marker/end-enhancer-color.tsx +15 -0
  424. package/documentation-site/examples/fixed-marker/react-map-gl-dragging.tsx +61 -0
  425. package/documentation-site/examples/fixed-marker/react-map-gl.tsx +41 -0
  426. package/documentation-site/examples/fixed-marker/start-enhancer-large.tsx +17 -0
  427. package/documentation-site/examples/fixed-marker/start-enhancer.tsx +14 -0
  428. package/documentation-site/examples/fixed-marker/x-small.tsx +15 -0
  429. package/documentation-site/examples/flex-grid/basic.tsx +28 -0
  430. package/documentation-site/examples/flex-grid/missing.tsx +33 -0
  431. package/documentation-site/examples/flex-grid/responsive.tsx +38 -0
  432. package/documentation-site/examples/flex-grid/unequal-narrow.tsx +42 -0
  433. package/documentation-site/examples/flex-grid/unequal-wide.tsx +42 -0
  434. package/documentation-site/examples/floating-marker/basic.tsx +6 -0
  435. package/documentation-site/examples/floating-marker/large-square-anchor-start-enhancer.tsx +19 -0
  436. package/documentation-site/examples/floating-marker/large-top-right.tsx +16 -0
  437. package/documentation-site/examples/floating-marker/react-map-gl.tsx +42 -0
  438. package/documentation-site/examples/floating-marker/secondary-label-color.tsx +19 -0
  439. package/documentation-site/examples/floating-marker/secondary-label.tsx +12 -0
  440. package/documentation-site/examples/floating-marker/small-no-anchor.tsx +16 -0
  441. package/documentation-site/examples/floating-marker/start-enhancer.tsx +18 -0
  442. package/documentation-site/examples/floating-route-marker/basic.tsx +6 -0
  443. package/documentation-site/examples/floating-route-marker/changing-pointer-positions.tsx +63 -0
  444. package/documentation-site/examples/floating-route-marker/custom-color-overrides.tsx +70 -0
  445. package/documentation-site/examples/floating-route-marker/react-map-gl.tsx +80 -0
  446. package/documentation-site/examples/floating-route-marker/secondary-label.tsx +6 -0
  447. package/documentation-site/examples/floating-route-marker/start-end-enhancer.tsx +14 -0
  448. package/documentation-site/examples/form-control/checkbox.tsx +14 -0
  449. package/documentation-site/examples/form-control/input.tsx +16 -0
  450. package/documentation-site/examples/form-control/kinds.tsx +27 -0
  451. package/documentation-site/examples/form-control/radio-group.tsx +19 -0
  452. package/documentation-site/examples/form-control/select.tsx +26 -0
  453. package/documentation-site/examples/form-control/textarea.tsx +16 -0
  454. package/documentation-site/examples/form-control/validation.tsx +50 -0
  455. package/documentation-site/examples/getting-started/usage.tsx +20 -0
  456. package/documentation-site/examples/header-navigation/basic.tsx +33 -0
  457. package/documentation-site/examples/header-navigation/with-search.tsx +54 -0
  458. package/documentation-site/examples/heading/basic.tsx +93 -0
  459. package/documentation-site/examples/heading/decouple-styles.tsx +56 -0
  460. package/documentation-site/examples/hint-dot/offset.tsx +19 -0
  461. package/documentation-site/examples/icon/basic.tsx +19 -0
  462. package/documentation-site/examples/icon/button.tsx +30 -0
  463. package/documentation-site/examples/icon/list.tsx +55 -0
  464. package/documentation-site/examples/input/available-states.tsx +20 -0
  465. package/documentation-site/examples/input/basic-controlled.tsx +13 -0
  466. package/documentation-site/examples/input/basic-uncontrolled.tsx +11 -0
  467. package/documentation-site/examples/input/clearable.tsx +13 -0
  468. package/documentation-site/examples/input/enhancers.tsx +24 -0
  469. package/documentation-site/examples/input/focus.tsx +28 -0
  470. package/documentation-site/examples/input/mask.tsx +6 -0
  471. package/documentation-site/examples/input/overrides.tsx +44 -0
  472. package/documentation-site/examples/input/password.tsx +13 -0
  473. package/documentation-site/examples/input/sizes.tsx +14 -0
  474. package/documentation-site/examples/input/with-select.tsx +91 -0
  475. package/documentation-site/examples/input/with-tags.tsx +77 -0
  476. package/documentation-site/examples/internationalization/example.tsx +19 -0
  477. package/documentation-site/examples/layer/basic-tether.tsx +140 -0
  478. package/documentation-site/examples/layer/basic.tsx +55 -0
  479. package/documentation-site/examples/layer/layer-z-index.tsx +185 -0
  480. package/documentation-site/examples/layout-grid/align.tsx +56 -0
  481. package/documentation-site/examples/layout-grid/basic.tsx +79 -0
  482. package/documentation-site/examples/layout-grid/behavior.tsx +46 -0
  483. package/documentation-site/examples/layout-grid/compact.tsx +79 -0
  484. package/documentation-site/examples/layout-grid/custom.tsx +85 -0
  485. package/documentation-site/examples/layout-grid/hide.tsx +55 -0
  486. package/documentation-site/examples/layout-grid/order.tsx +52 -0
  487. package/documentation-site/examples/layout-grid/overrides.tsx +83 -0
  488. package/documentation-site/examples/layout-grid/responsive.tsx +55 -0
  489. package/documentation-site/examples/layout-grid/skip-shrink.tsx +46 -0
  490. package/documentation-site/examples/layout-grid/skip.tsx +49 -0
  491. package/documentation-site/examples/layout-grid/span.tsx +55 -0
  492. package/documentation-site/examples/layout-grid/unit.tsx +79 -0
  493. package/documentation-site/examples/list/artwork-sizes.tsx +45 -0
  494. package/documentation-site/examples/list/basic.tsx +29 -0
  495. package/documentation-site/examples/list/enhancers.tsx +52 -0
  496. package/documentation-site/examples/list/menu-adapter.tsx +49 -0
  497. package/documentation-site/examples/list/sublist.tsx +74 -0
  498. package/documentation-site/examples/list/tap-target.tsx +26 -0
  499. package/documentation-site/examples/location-puck/consumer-confidence.tsx +8 -0
  500. package/documentation-site/examples/location-puck/consumer-no-heading.tsx +8 -0
  501. package/documentation-site/examples/location-puck/consumer.tsx +6 -0
  502. package/documentation-site/examples/location-puck/earner.tsx +6 -0
  503. package/documentation-site/examples/location-puck/react-map-gl.tsx +41 -0
  504. package/documentation-site/examples/menu/basic.tsx +39 -0
  505. package/documentation-site/examples/menu/child-render-all.tsx +78 -0
  506. package/documentation-site/examples/menu/child.tsx +80 -0
  507. package/documentation-site/examples/menu/compact.tsx +38 -0
  508. package/documentation-site/examples/menu/dividers.tsx +37 -0
  509. package/documentation-site/examples/menu/grouped.tsx +38 -0
  510. package/documentation-site/examples/menu/href.tsx +14 -0
  511. package/documentation-site/examples/menu/profile.tsx +43 -0
  512. package/documentation-site/examples/menu/stateless.tsx +38 -0
  513. package/documentation-site/examples/menu/virtual-list.tsx +55 -0
  514. package/documentation-site/examples/message-card/color.tsx +65 -0
  515. package/documentation-site/examples/message-card/custom-color.tsx +25 -0
  516. package/documentation-site/examples/message-card/images/dinner.jpg +0 -0
  517. package/documentation-site/examples/message-card/images/hamburger.jpg +0 -0
  518. package/documentation-site/examples/message-card/images/index.d.ts +4 -0
  519. package/documentation-site/examples/message-card/images/moto.jpg +0 -0
  520. package/documentation-site/examples/message-card/images/planet.jpg +0 -0
  521. package/documentation-site/examples/message-card/images/train.jpg +0 -0
  522. package/documentation-site/examples/message-card/images/valley.jpg +0 -0
  523. package/documentation-site/examples/message-card/images/venice.jpg +0 -0
  524. package/documentation-site/examples/message-card/layout.tsx +36 -0
  525. package/documentation-site/examples/message-card/positioning.tsx +61 -0
  526. package/documentation-site/examples/mobile-header/floating.tsx +66 -0
  527. package/documentation-site/examples/mobile-header/images/map-san-francisco.jpg +0 -0
  528. package/documentation-site/examples/mobile-header/text-content.tsx +92 -0
  529. package/documentation-site/examples/modal/autofocus.tsx +39 -0
  530. package/documentation-site/examples/modal/basic.tsx +36 -0
  531. package/documentation-site/examples/modal/buried-interactive-element.tsx +91 -0
  532. package/documentation-site/examples/modal/nested.tsx +86 -0
  533. package/documentation-site/examples/modal/sized.tsx +49 -0
  534. package/documentation-site/examples/notification/basic.tsx +6 -0
  535. package/documentation-site/examples/notification/closeable.tsx +6 -0
  536. package/documentation-site/examples/notification/custom-dismiss.tsx +15 -0
  537. package/documentation-site/examples/notification/full-width.tsx +14 -0
  538. package/documentation-site/examples/notification/kinds.tsx +12 -0
  539. package/documentation-site/examples/notification/overrides.tsx +25 -0
  540. package/documentation-site/examples/notification-circle/inline.tsx +10 -0
  541. package/documentation-site/examples/notification-circle/offset.tsx +21 -0
  542. package/documentation-site/examples/overrides/component.tsx +14 -0
  543. package/documentation-site/examples/overrides/props.tsx +18 -0
  544. package/documentation-site/examples/overrides/style-with-theme.tsx +18 -0
  545. package/documentation-site/examples/overrides/style.tsx +18 -0
  546. package/documentation-site/examples/page-control/overflow.tsx +52 -0
  547. package/documentation-site/examples/pagination/controlled.tsx +15 -0
  548. package/documentation-site/examples/pagination/labels.tsx +15 -0
  549. package/documentation-site/examples/pagination/overrides.tsx +91 -0
  550. package/documentation-site/examples/pagination/uncontrolled.tsx +6 -0
  551. package/documentation-site/examples/payment-card/controlled.tsx +13 -0
  552. package/documentation-site/examples/payment-card/defaultvalue.tsx +13 -0
  553. package/documentation-site/examples/payment-card/form.tsx +61 -0
  554. package/documentation-site/examples/payment-card/uncontrolled.tsx +13 -0
  555. package/documentation-site/examples/phone-input/basic.tsx +19 -0
  556. package/documentation-site/examples/phone-input/flag-overrides.tsx +29 -0
  557. package/documentation-site/examples/phone-input/localized.tsx +27 -0
  558. package/documentation-site/examples/phone-input/nested-overrides.tsx +32 -0
  559. package/documentation-site/examples/phone-input/uncontrolled.tsx +6 -0
  560. package/documentation-site/examples/pin-code/autofocus.tsx +25 -0
  561. package/documentation-site/examples/pin-code/basic.tsx +14 -0
  562. package/documentation-site/examples/pin-code/completion.tsx +26 -0
  563. package/documentation-site/examples/pin-code/event.tsx +16 -0
  564. package/documentation-site/examples/pin-code/id-and-name.tsx +16 -0
  565. package/documentation-site/examples/pin-code/length.tsx +14 -0
  566. package/documentation-site/examples/pin-code/mask.tsx +27 -0
  567. package/documentation-site/examples/pin-code/no-tab.tsx +17 -0
  568. package/documentation-site/examples/pin-code/override.tsx +34 -0
  569. package/documentation-site/examples/pin-code/placeholder.tsx +15 -0
  570. package/documentation-site/examples/pin-code/size.tsx +35 -0
  571. package/documentation-site/examples/pin-code/stateful.tsx +11 -0
  572. package/documentation-site/examples/pin-code/states.tsx +35 -0
  573. package/documentation-site/examples/popover/clipping.tsx +38 -0
  574. package/documentation-site/examples/popover/dismiss.tsx +31 -0
  575. package/documentation-site/examples/popover/link.tsx +17 -0
  576. package/documentation-site/examples/popover/overrides.tsx +42 -0
  577. package/documentation-site/examples/popover/placements.tsx +35 -0
  578. package/documentation-site/examples/popover/ref-handling.tsx +61 -0
  579. package/documentation-site/examples/popover/ssr-render-all.tsx +20 -0
  580. package/documentation-site/examples/popover/stateful-click.tsx +15 -0
  581. package/documentation-site/examples/popover/stateful-hover.tsx +17 -0
  582. package/documentation-site/examples/popover/stateless.tsx +16 -0
  583. package/documentation-site/examples/popover/with-arrow.tsx +16 -0
  584. package/documentation-site/examples/progress-bar/basic.tsx +36 -0
  585. package/documentation-site/examples/progress-bar/custom-label.tsx +46 -0
  586. package/documentation-site/examples/progress-bar/negative.tsx +47 -0
  587. package/documentation-site/examples/progress-bar/overrides.tsx +62 -0
  588. package/documentation-site/examples/progress-bar/rounded.tsx +39 -0
  589. package/documentation-site/examples/progress-bar/steps.tsx +36 -0
  590. package/documentation-site/examples/progress-bar/with-label.tsx +36 -0
  591. package/documentation-site/examples/progress-steps/dotted.tsx +93 -0
  592. package/documentation-site/examples/progress-steps/horizontal.tsx +66 -0
  593. package/documentation-site/examples/progress-steps/numbered.tsx +70 -0
  594. package/documentation-site/examples/radio/basic.tsx +22 -0
  595. package/documentation-site/examples/radio/disabled.tsx +11 -0
  596. package/documentation-site/examples/radio/error.tsx +18 -0
  597. package/documentation-site/examples/radio/horizontal-align.tsx +18 -0
  598. package/documentation-site/examples/radio/overrides.tsx +35 -0
  599. package/documentation-site/examples/radio/stateful.tsx +12 -0
  600. package/documentation-site/examples/rating/emoticon.tsx +9 -0
  601. package/documentation-site/examples/rating/star.tsx +7 -0
  602. package/documentation-site/examples/rating/starReadOnly.tsx +13 -0
  603. package/documentation-site/examples/segmented-control/badge-hint.tsx +17 -0
  604. package/documentation-site/examples/segmented-control/badge.tsx +17 -0
  605. package/documentation-site/examples/segmented-control/basic.tsx +18 -0
  606. package/documentation-site/examples/segmented-control/disabled.tsx +18 -0
  607. package/documentation-site/examples/select/async-options.tsx +106 -0
  608. package/documentation-site/examples/select/control-ref-dropdown.tsx +50 -0
  609. package/documentation-site/examples/select/control-ref-input-value.tsx +41 -0
  610. package/documentation-site/examples/select/controlled.tsx +22 -0
  611. package/documentation-site/examples/select/creatable-multi.tsx +24 -0
  612. package/documentation-site/examples/select/creatable.tsx +23 -0
  613. package/documentation-site/examples/select/focus.tsx +42 -0
  614. package/documentation-site/examples/select/grouped.tsx +29 -0
  615. package/documentation-site/examples/select/in-modal.tsx +64 -0
  616. package/documentation-site/examples/select/label.tsx +52 -0
  617. package/documentation-site/examples/select/native.tsx +28 -0
  618. package/documentation-site/examples/select/overridden-dropdown.tsx +31 -0
  619. package/documentation-site/examples/select/overridden-tag.tsx +58 -0
  620. package/documentation-site/examples/select/overridden.tsx +33 -0
  621. package/documentation-site/examples/select/search-multi-pick.tsx +26 -0
  622. package/documentation-site/examples/select/search-single-pick.tsx +25 -0
  623. package/documentation-site/examples/select/sizes.tsx +53 -0
  624. package/documentation-site/examples/select/uncontrolled.tsx +20 -0
  625. package/documentation-site/examples/select/with-many-options.tsx +101 -0
  626. package/documentation-site/examples/side-navigation/basic.tsx +48 -0
  627. package/documentation-site/examples/side-navigation/nav-overrides.tsx +68 -0
  628. package/documentation-site/examples/skeleton/animation.tsx +6 -0
  629. package/documentation-site/examples/skeleton/auto-size-rows.tsx +6 -0
  630. package/documentation-site/examples/skeleton/basic.tsx +6 -0
  631. package/documentation-site/examples/skeleton/circle.tsx +18 -0
  632. package/documentation-site/examples/skeleton/subElements.tsx +19 -0
  633. package/documentation-site/examples/slider/basic.tsx +7 -0
  634. package/documentation-site/examples/slider/custom-ticks.tsx +60 -0
  635. package/documentation-site/examples/slider/disabled.tsx +9 -0
  636. package/documentation-site/examples/slider/marks.tsx +14 -0
  637. package/documentation-site/examples/slider/overrides.tsx +44 -0
  638. package/documentation-site/examples/slider/range.tsx +7 -0
  639. package/documentation-site/examples/slider/stateful.tsx +6 -0
  640. package/documentation-site/examples/slider/step-min-max.tsx +15 -0
  641. package/documentation-site/examples/snackbar/action-button-usage.tsx +61 -0
  642. package/documentation-site/examples/snackbar/infinite-duration.tsx +68 -0
  643. package/documentation-site/examples/snackbar/line-lengths.tsx +72 -0
  644. package/documentation-site/examples/snackbar/placement.tsx +55 -0
  645. package/documentation-site/examples/spinner/basic.tsx +6 -0
  646. package/documentation-site/examples/spinner/custom.tsx +14 -0
  647. package/documentation-site/examples/spinner/size.tsx +12 -0
  648. package/documentation-site/examples/spinner/span.tsx +10 -0
  649. package/documentation-site/examples/styled/basic.tsx +16 -0
  650. package/documentation-site/examples/switch/alignment.tsx +39 -0
  651. package/documentation-site/examples/switch/basic-controlled.tsx +11 -0
  652. package/documentation-site/examples/switch/basic-uncontrolled.tsx +6 -0
  653. package/documentation-site/examples/switch/disabled.tsx +19 -0
  654. package/documentation-site/examples/switch/multiline.tsx +16 -0
  655. package/documentation-site/examples/switch/overrides.tsx +38 -0
  656. package/documentation-site/examples/switch/showIcon.tsx +39 -0
  657. package/documentation-site/examples/switch/size.tsx +39 -0
  658. package/documentation-site/examples/system-banner/basic.tsx +27 -0
  659. package/documentation-site/examples/system-banner/clickable-banner.tsx +58 -0
  660. package/documentation-site/examples/system-banner/multiple-actions.tsx +93 -0
  661. package/documentation-site/examples/system-banner/with-actions.tsx +49 -0
  662. package/documentation-site/examples/system-banner/with-artwork.tsx +40 -0
  663. package/documentation-site/examples/system-banner/with-icons.tsx +52 -0
  664. package/documentation-site/examples/system-banner/with-style-overrides.tsx +167 -0
  665. package/documentation-site/examples/table/basic.tsx +14 -0
  666. package/documentation-site/examples/table/cells.tsx +333 -0
  667. package/documentation-site/examples/table/filter.tsx +108 -0
  668. package/documentation-site/examples/table/fixed-width-column.tsx +62 -0
  669. package/documentation-site/examples/table/graph.tsx +134 -0
  670. package/documentation-site/examples/table/horizontal-scroll.tsx +29 -0
  671. package/documentation-site/examples/table/pagination.tsx +129 -0
  672. package/documentation-site/examples/table/sortable.tsx +142 -0
  673. package/documentation-site/examples/table/vertical-scroll.tsx +29 -0
  674. package/documentation-site/examples/table/virtual-horizontal-scroll.tsx +94 -0
  675. package/documentation-site/examples/table/virtual.tsx +92 -0
  676. package/documentation-site/examples/table-grid/basic.tsx +39 -0
  677. package/documentation-site/examples/table-grid/cell-navigation.tsx +205 -0
  678. package/documentation-site/examples/table-grid/cell-span.tsx +58 -0
  679. package/documentation-site/examples/table-grid/nested.tsx +259 -0
  680. package/documentation-site/examples/table-grid/sortable.tsx +133 -0
  681. package/documentation-site/examples/table-semantic/alternating.tsx +48 -0
  682. package/documentation-site/examples/table-semantic/basic.tsx +14 -0
  683. package/documentation-site/examples/table-semantic/builder.tsx +35 -0
  684. package/documentation-site/examples/table-semantic/cells.tsx +175 -0
  685. package/documentation-site/examples/table-semantic/empty-message.tsx +8 -0
  686. package/documentation-site/examples/table-semantic/scroll.tsx +26 -0
  687. package/documentation-site/examples/table-semantic/sortable.tsx +69 -0
  688. package/documentation-site/examples/table-semantic/span.tsx +46 -0
  689. package/documentation-site/examples/table-semantic/toggleable.tsx +89 -0
  690. package/documentation-site/examples/tabs/controlled.tsx +28 -0
  691. package/documentation-site/examples/tabs/custom-keys.tsx +28 -0
  692. package/documentation-site/examples/tabs/overrides.tsx +87 -0
  693. package/documentation-site/examples/tabs/renderall.tsx +12 -0
  694. package/documentation-site/examples/tabs/uncontrolled.tsx +12 -0
  695. package/documentation-site/examples/tabs/vertical.tsx +15 -0
  696. package/documentation-site/examples/tabs-motion/alignment.tsx +52 -0
  697. package/documentation-site/examples/tabs-motion/artwork.tsx +23 -0
  698. package/documentation-site/examples/tabs-motion/basic.tsx +18 -0
  699. package/documentation-site/examples/tabs-motion/disabled.tsx +19 -0
  700. package/documentation-site/examples/tabs-motion/enhancer.tsx +24 -0
  701. package/documentation-site/examples/tabs-motion/fixed.tsx +19 -0
  702. package/documentation-site/examples/tabs-motion/keyboard-activation.tsx +19 -0
  703. package/documentation-site/examples/tabs-motion/keys.tsx +22 -0
  704. package/documentation-site/examples/tabs-motion/refs.tsx +32 -0
  705. package/documentation-site/examples/tabs-motion/renderAll.tsx +19 -0
  706. package/documentation-site/examples/tabs-motion/stateful.tsx +14 -0
  707. package/documentation-site/examples/tabs-motion/tab-override.tsx +28 -0
  708. package/documentation-site/examples/tabs-motion/vertical-orientation.tsx +19 -0
  709. package/documentation-site/examples/tag/basic.tsx +11 -0
  710. package/documentation-site/examples/tag/clickable-non-closeable.tsx +77 -0
  711. package/documentation-site/examples/tag/clickable.tsx +71 -0
  712. package/documentation-site/examples/tag/custom-color.tsx +30 -0
  713. package/documentation-site/examples/tag/disabled.tsx +77 -0
  714. package/documentation-site/examples/tag/kinds.tsx +39 -0
  715. package/documentation-site/examples/tag/non-clickable.tsx +39 -0
  716. package/documentation-site/examples/tag/non-closeable.tsx +39 -0
  717. package/documentation-site/examples/tag/size.tsx +12 -0
  718. package/documentation-site/examples/tag/variants.tsx +16 -0
  719. package/documentation-site/examples/tag-group/hierachy.tsx +28 -0
  720. package/documentation-site/examples/tag-group/size.tsx +33 -0
  721. package/documentation-site/examples/tag-group/wrap.tsx +115 -0
  722. package/documentation-site/examples/textarea/basic.tsx +9 -0
  723. package/documentation-site/examples/textarea/ref.tsx +26 -0
  724. package/documentation-site/examples/textarea/resizable.tsx +14 -0
  725. package/documentation-site/examples/textarea/sizes.tsx +32 -0
  726. package/documentation-site/examples/textarea/stateful.tsx +12 -0
  727. package/documentation-site/examples/textarea/states.tsx +28 -0
  728. package/documentation-site/examples/theme/icon-overrides.tsx +25 -0
  729. package/documentation-site/examples/tile/action.tsx +17 -0
  730. package/documentation-site/examples/tile/alignment.tsx +15 -0
  731. package/documentation-site/examples/tile/multi-select-batch.tsx +24 -0
  732. package/documentation-site/examples/tile/multi-select-live.tsx +24 -0
  733. package/documentation-site/examples/tile/selection-no-trailing-content.tsx +18 -0
  734. package/documentation-site/examples/tile/single-select.tsx +18 -0
  735. package/documentation-site/examples/timepicker/timepicker-minmax.tsx +49 -0
  736. package/documentation-site/examples/timepicker/timepicker.tsx +37 -0
  737. package/documentation-site/examples/timezonepicker/timezone-picker.tsx +18 -0
  738. package/documentation-site/examples/toast/toast-close-from-outside.tsx +29 -0
  739. package/documentation-site/examples/toast/toast-notification.tsx +14 -0
  740. package/documentation-site/examples/toast/toast-same-key-notification.tsx +73 -0
  741. package/documentation-site/examples/tokens/basic.tsx +12 -0
  742. package/documentation-site/examples/tooltip/stateful-complex-content.tsx +44 -0
  743. package/documentation-site/examples/tooltip/stateful.tsx +30 -0
  744. package/documentation-site/examples/tree-view/basic.tsx +127 -0
  745. package/documentation-site/examples/tree-view/custom-label.tsx +70 -0
  746. package/documentation-site/examples/tree-view/interactable.tsx +70 -0
  747. package/documentation-site/examples/tree-view/label-overrides.tsx +135 -0
  748. package/documentation-site/examples/tree-view/overrides.tsx +109 -0
  749. package/documentation-site/examples/tree-view/single-expanded.tsx +263 -0
  750. package/documentation-site/examples/tree-view/uncontrolled.tsx +45 -0
  751. package/documentation-site/examples/typography/display.tsx +20 -0
  752. package/documentation-site/examples/typography/heading.tsx +24 -0
  753. package/documentation-site/examples/typography/text.tsx +30 -0
  754. package/documentation-site/examples/unstable-a11y/wrapper.tsx +41 -0
  755. package/documentation-site/examples/use-styletron/basic.tsx +13 -0
  756. package/documentation-site/examples/use-styletron/overrides.tsx +31 -0
  757. package/documentation-site/examples/use-styletron/reuse-css-definitions.tsx +25 -0
  758. package/documentation-site/helpers/ga.ts +36 -0
  759. package/documentation-site/helpers/polyfills.js +21 -0
  760. package/documentation-site/helpers/slugify.jsx +22 -0
  761. package/documentation-site/helpers/styletron.jsx +18 -0
  762. package/documentation-site/images/base-web-white.svg +9 -0
  763. package/documentation-site/images/base-web.svg +9 -0
  764. package/documentation-site/mdx-components.tsx +8 -0
  765. package/documentation-site/next.config.js +43 -0
  766. package/documentation-site/pages/_app.jsx +258 -0
  767. package/documentation-site/pages/_document.jsx +118 -0
  768. package/documentation-site/pages/blog/base-figma-community/index.mdx +31 -0
  769. package/documentation-site/pages/blog/base-figma-community/metadata.json +11 -0
  770. package/documentation-site/pages/blog/base-web-v11/index.mdx +98 -0
  771. package/documentation-site/pages/blog/base-web-v11/metadata.json +11 -0
  772. package/documentation-site/pages/blog/base-web-v12/index.mdx +27 -0
  773. package/documentation-site/pages/blog/base-web-v12/metadata.json +11 -0
  774. package/documentation-site/pages/blog/base-web-v16/index.mdx +38 -0
  775. package/documentation-site/pages/blog/base-web-v16/metadata.json +19 -0
  776. package/documentation-site/pages/blog/base-web-v7/index.mdx +479 -0
  777. package/documentation-site/pages/blog/base-web-v7/metadata.json +11 -0
  778. package/documentation-site/pages/blog/base-web-v8/index.mdx +227 -0
  779. package/documentation-site/pages/blog/base-web-v8/metadata.json +11 -0
  780. package/documentation-site/pages/blog/base-web-v9/index.mdx +785 -0
  781. package/documentation-site/pages/blog/base-web-v9/metadata.json +17 -0
  782. package/documentation-site/pages/blog/drag-and-drop-list/index.mdx +301 -0
  783. package/documentation-site/pages/blog/drag-and-drop-list/metadata.json +11 -0
  784. package/documentation-site/pages/blog/file-uploader/index.mdx +202 -0
  785. package/documentation-site/pages/blog/file-uploader/metadata.json +11 -0
  786. package/documentation-site/pages/blog/getting-started-with-base-web/index.mdx +243 -0
  787. package/documentation-site/pages/blog/getting-started-with-base-web/metadata.json +11 -0
  788. package/documentation-site/pages/blog/getting-started-with-styletron/index.mdx +340 -0
  789. package/documentation-site/pages/blog/getting-started-with-styletron/metadata.json +11 -0
  790. package/documentation-site/pages/blog/index.mdx +8 -0
  791. package/documentation-site/pages/blog/introducing-base-map-markers/anchor-position-example.jsx +63 -0
  792. package/documentation-site/pages/blog/introducing-base-map-markers/cover.png +0 -0
  793. package/documentation-site/pages/blog/introducing-base-map-markers/index.mdx +90 -0
  794. package/documentation-site/pages/blog/introducing-base-map-markers/metadata.json +11 -0
  795. package/documentation-site/pages/blog/introducing-base-map-markers/rendezvous.png +0 -0
  796. package/documentation-site/pages/blog/introducing-react-view/index.mdx +278 -0
  797. package/documentation-site/pages/blog/introducing-react-view/live-editor.jsx +41 -0
  798. package/documentation-site/pages/blog/introducing-react-view/metadata.json +11 -0
  799. package/documentation-site/pages/blog/nested-overrides-playground/index.mdx +96 -0
  800. package/documentation-site/pages/blog/nested-overrides-playground/live-editor-tag.jsx +206 -0
  801. package/documentation-site/pages/blog/nested-overrides-playground/live-editor.jsx +111 -0
  802. package/documentation-site/pages/blog/nested-overrides-playground/metadata.json +17 -0
  803. package/documentation-site/pages/blog/open-source-engagement/index.mdx +25 -0
  804. package/documentation-site/pages/blog/open-source-engagement/metadata.json +11 -0
  805. package/documentation-site/pages/blog/phone-input/ideal.png +0 -0
  806. package/documentation-site/pages/blog/phone-input/index.mdx +265 -0
  807. package/documentation-site/pages/blog/phone-input/keyboard.png +0 -0
  808. package/documentation-site/pages/blog/phone-input/mapping.png +0 -0
  809. package/documentation-site/pages/blog/phone-input/metadata.json +11 -0
  810. package/documentation-site/pages/blog/phone-input/patterns.png +0 -0
  811. package/documentation-site/pages/blog/responsive-web/aspect-ratio-box.gif +0 -0
  812. package/documentation-site/pages/blog/responsive-web/index.mdx +248 -0
  813. package/documentation-site/pages/blog/responsive-web/metadata.json +18 -0
  814. package/documentation-site/pages/blog/responsive-web/responsive-flex-grid.gif +0 -0
  815. package/documentation-site/pages/blog/responsive-web/responsive-hide.gif +0 -0
  816. package/documentation-site/pages/blog/responsive-web/responsive-load-status.gif +0 -0
  817. package/documentation-site/pages/blog/responsive-web/responsive-nav-bar.gif +0 -0
  818. package/documentation-site/pages/blog/responsive-web/viewport-meta-tag.gif +0 -0
  819. package/documentation-site/pages/blog/screen-reader-improvements/index.mdx +77 -0
  820. package/documentation-site/pages/blog/screen-reader-improvements/metadata.json +17 -0
  821. package/documentation-site/pages/blog/visual-regression-testing/changelog.png +0 -0
  822. package/documentation-site/pages/blog/visual-regression-testing/comparison.png +0 -0
  823. package/documentation-site/pages/blog/visual-regression-testing/examplesnapshot.png +0 -0
  824. package/documentation-site/pages/blog/visual-regression-testing/index.mdx +393 -0
  825. package/documentation-site/pages/blog/visual-regression-testing/left.png +0 -0
  826. package/documentation-site/pages/blog/visual-regression-testing/metadata.json +20 -0
  827. package/documentation-site/pages/blog/visual-regression-testing/mobilemodal.png +0 -0
  828. package/documentation-site/pages/blog/visual-regression-testing/right.png +0 -0
  829. package/documentation-site/pages/blog/visual-regression-testing/swipe.gif +0 -0
  830. package/documentation-site/pages/blog/vs-code-extension/cheat-sheet.png +0 -0
  831. package/documentation-site/pages/blog/vs-code-extension/code-snippets.gif +0 -0
  832. package/documentation-site/pages/blog/vs-code-extension/coloring.png +0 -0
  833. package/documentation-site/pages/blog/vs-code-extension/commands.png +0 -0
  834. package/documentation-site/pages/blog/vs-code-extension/index.mdx +115 -0
  835. package/documentation-site/pages/blog/vs-code-extension/metadata.json +11 -0
  836. package/documentation-site/pages/cheat-sheet.mdx +10 -0
  837. package/documentation-site/pages/components/accordion.mdx +81 -0
  838. package/documentation-site/pages/components/app-nav-bar.mdx +52 -0
  839. package/documentation-site/pages/components/aspect-ratio-box.mdx +41 -0
  840. package/documentation-site/pages/components/avatar.mdx +63 -0
  841. package/documentation-site/pages/components/badge.mdx +56 -0
  842. package/documentation-site/pages/components/banner.mdx +45 -0
  843. package/documentation-site/pages/components/base-provider.mdx +39 -0
  844. package/documentation-site/pages/components/block.mdx +81 -0
  845. package/documentation-site/pages/components/bottom-navigation.mdx +40 -0
  846. package/documentation-site/pages/components/breadcrumbs.mdx +49 -0
  847. package/documentation-site/pages/components/button-dock.mdx +42 -0
  848. package/documentation-site/pages/components/button-group.mdx +117 -0
  849. package/documentation-site/pages/components/button-timed.mdx +44 -0
  850. package/documentation-site/pages/components/button.mdx +115 -0
  851. package/documentation-site/pages/components/card.mdx +44 -0
  852. package/documentation-site/pages/components/checkbox-v2.mdx +84 -0
  853. package/documentation-site/pages/components/checkbox.mdx +114 -0
  854. package/documentation-site/pages/components/combobox.mdx +64 -0
  855. package/documentation-site/pages/components/data-table.mdx +77 -0
  856. package/documentation-site/pages/components/datepicker.mdx +167 -0
  857. package/documentation-site/pages/components/dialog.mdx +44 -0
  858. package/documentation-site/pages/components/divider.mdx +32 -0
  859. package/documentation-site/pages/components/dnd-list.mdx +81 -0
  860. package/documentation-site/pages/components/drawer.mdx +49 -0
  861. package/documentation-site/pages/components/empty-state.mdx +25 -0
  862. package/documentation-site/pages/components/file-uploader-basic.mdx +77 -0
  863. package/documentation-site/pages/components/file-uploader.mdx +80 -0
  864. package/documentation-site/pages/components/fixed-marker.mdx +144 -0
  865. package/documentation-site/pages/components/flex-grid.mdx +65 -0
  866. package/documentation-site/pages/components/floating-marker.mdx +149 -0
  867. package/documentation-site/pages/components/floating-route-marker.mdx +135 -0
  868. package/documentation-site/pages/components/form-control.mdx +80 -0
  869. package/documentation-site/pages/components/header-navigation.mdx +45 -0
  870. package/documentation-site/pages/components/heading.mdx +43 -0
  871. package/documentation-site/pages/components/hint-dot.mdx +33 -0
  872. package/documentation-site/pages/components/icon.mdx +44 -0
  873. package/documentation-site/pages/components/index.mdx +10 -0
  874. package/documentation-site/pages/components/input.mdx +131 -0
  875. package/documentation-site/pages/components/layer.mdx +101 -0
  876. package/documentation-site/pages/components/layout-grid.mdx +213 -0
  877. package/documentation-site/pages/components/link.mdx +22 -0
  878. package/documentation-site/pages/components/list.mdx +68 -0
  879. package/documentation-site/pages/components/location-puck.mdx +97 -0
  880. package/documentation-site/pages/components/menu.mdx +203 -0
  881. package/documentation-site/pages/components/message-card.mdx +80 -0
  882. package/documentation-site/pages/components/mobile-header.mdx +54 -0
  883. package/documentation-site/pages/components/modal.mdx +95 -0
  884. package/documentation-site/pages/components/notification-circle.mdx +47 -0
  885. package/documentation-site/pages/components/notification.mdx +74 -0
  886. package/documentation-site/pages/components/page-control.mdx +33 -0
  887. package/documentation-site/pages/components/pagination.mdx +60 -0
  888. package/documentation-site/pages/components/payment-card.mdx +81 -0
  889. package/documentation-site/pages/components/phone-input.mdx +86 -0
  890. package/documentation-site/pages/components/pin-code.mdx +156 -0
  891. package/documentation-site/pages/components/popover.mdx +107 -0
  892. package/documentation-site/pages/components/progress-bar.mdx +86 -0
  893. package/documentation-site/pages/components/progress-steps.mdx +58 -0
  894. package/documentation-site/pages/components/radio.mdx +58 -0
  895. package/documentation-site/pages/components/rating.mdx +56 -0
  896. package/documentation-site/pages/components/segmented-control.mdx +52 -0
  897. package/documentation-site/pages/components/select.mdx +158 -0
  898. package/documentation-site/pages/components/side-nav.mdx +79 -0
  899. package/documentation-site/pages/components/skeleton.mdx +61 -0
  900. package/documentation-site/pages/components/slider.mdx +94 -0
  901. package/documentation-site/pages/components/snackbar.mdx +66 -0
  902. package/documentation-site/pages/components/spinner.mdx +55 -0
  903. package/documentation-site/pages/components/stepper.mdx +25 -0
  904. package/documentation-site/pages/components/styled.mdx +29 -0
  905. package/documentation-site/pages/components/switch.mdx +75 -0
  906. package/documentation-site/pages/components/system-banner.mdx +223 -0
  907. package/documentation-site/pages/components/table-grid.mdx +55 -0
  908. package/documentation-site/pages/components/table-semantic.mdx +106 -0
  909. package/documentation-site/pages/components/table.mdx +107 -0
  910. package/documentation-site/pages/components/tabs-motion.mdx +158 -0
  911. package/documentation-site/pages/components/tabs.mdx +73 -0
  912. package/documentation-site/pages/components/tag-group.mdx +36 -0
  913. package/documentation-site/pages/components/tag.mdx +106 -0
  914. package/documentation-site/pages/components/textarea.mdx +58 -0
  915. package/documentation-site/pages/components/tile.mdx +73 -0
  916. package/documentation-site/pages/components/time-picker.mdx +35 -0
  917. package/documentation-site/pages/components/timezone-picker.mdx +28 -0
  918. package/documentation-site/pages/components/toast.mdx +65 -0
  919. package/documentation-site/pages/components/tokens.mdx +138 -0
  920. package/documentation-site/pages/components/tooltip.mdx +46 -0
  921. package/documentation-site/pages/components/tree-view.mdx +89 -0
  922. package/documentation-site/pages/components/typography.mdx +54 -0
  923. package/documentation-site/pages/components/unstable-a11y.mdx +31 -0
  924. package/documentation-site/pages/components/use-styletron.mdx +108 -0
  925. package/documentation-site/pages/discover-more/comparison.mdx +47 -0
  926. package/documentation-site/pages/discover-more/supported-platforms.mdx +22 -0
  927. package/documentation-site/pages/discover-more/versioning-policy.mdx +53 -0
  928. package/documentation-site/pages/getting-started/learn.mdx +94 -0
  929. package/documentation-site/pages/getting-started/setup.mdx +151 -0
  930. package/documentation-site/pages/guides/bidirectionality.mdx +51 -0
  931. package/documentation-site/pages/guides/colors.mdx +41 -0
  932. package/documentation-site/pages/guides/internationalization.mdx +44 -0
  933. package/documentation-site/pages/guides/seo.mdx +143 -0
  934. package/documentation-site/pages/guides/styling.mdx +616 -0
  935. package/documentation-site/pages/guides/tables.mdx +54 -0
  936. package/documentation-site/pages/guides/theming.mdx +601 -0
  937. package/documentation-site/pages/guides/understanding-overrides.mdx +328 -0
  938. package/documentation-site/pages/index.jsx +215 -0
  939. package/documentation-site/posts.jsx +293 -0
  940. package/documentation-site/public/android-chrome-192x192.png +0 -0
  941. package/documentation-site/public/apple-touch-icon.png +0 -0
  942. package/documentation-site/public/browserconfig.xml +9 -0
  943. package/documentation-site/public/favicon-16x16.png +0 -0
  944. package/documentation-site/public/favicon-32x32.png +0 -0
  945. package/documentation-site/public/favicon.ico +0 -0
  946. package/documentation-site/public/fonts.css +97 -0
  947. package/documentation-site/public/images/banzaicloud-logo.png +0 -0
  948. package/documentation-site/public/images/blog/file-uploader/carousel-view.png +0 -0
  949. package/documentation-site/public/images/blog/file-uploader/file-uploader-architecture-diagram.png +0 -0
  950. package/documentation-site/public/images/blog/file-uploader/file-uploader.gif +0 -0
  951. package/documentation-site/public/images/blog/file-uploader/grid-view.png +0 -0
  952. package/documentation-site/public/images/blog/file-uploader/list-view.png +0 -0
  953. package/documentation-site/public/images/blog/getting-started-with-base-web/base-web.svg +9 -0
  954. package/documentation-site/public/images/blog/getting-started-with-base-web/foundation.png +0 -0
  955. package/documentation-site/public/images/blog/getting-started-with-base-web/input-with-cta.png +0 -0
  956. package/documentation-site/public/images/blog/getting-started-with-base-web/mockup.png +0 -0
  957. package/documentation-site/public/images/blog/getting-started-with-base-web/result.png +0 -0
  958. package/documentation-site/public/images/blog/getting-started-with-base-web/strength-meter.gif +0 -0
  959. package/documentation-site/public/images/blog/getting-started-with-base-web/styled.png +0 -0
  960. package/documentation-site/public/images/blog/getting-started-with-styletron/fancy-button.gif +0 -0
  961. package/documentation-site/public/images/blog/getting-started-with-styletron/themed-buttons.gif +0 -0
  962. package/documentation-site/public/images/blog/responsive-web/responsive-shipper-tools.svg +1 -0
  963. package/documentation-site/public/images/blog/vs-code-extension/vscodelogo.png +0 -0
  964. package/documentation-site/public/images/broadcom-logo.png +0 -0
  965. package/documentation-site/public/images/cadre-logo.png +0 -0
  966. package/documentation-site/public/images/everbase-logo.png +0 -0
  967. package/documentation-site/public/images/extensis-logo.png +0 -0
  968. package/documentation-site/public/images/gcf-logo.png +0 -0
  969. package/documentation-site/public/images/metromile-logo.png +0 -0
  970. package/documentation-site/public/images/overrides1.png +0 -0
  971. package/documentation-site/public/images/overrides2.png +0 -0
  972. package/documentation-site/public/images/radity-logo.png +0 -0
  973. package/documentation-site/public/images/react-view-overrides.png +0 -0
  974. package/documentation-site/public/images/sprinklr-logo.png +0 -0
  975. package/documentation-site/public/images/streamlit-logo.png +0 -0
  976. package/documentation-site/public/images/uber-logo.png +0 -0
  977. package/documentation-site/public/images/uptime-logo.png +0 -0
  978. package/documentation-site/public/mstile-150x150.png +0 -0
  979. package/documentation-site/public/safari-pinned-tab.svg +35 -0
  980. package/documentation-site/public/site.webmanifest +14 -0
  981. package/documentation-site/routes.jsx +495 -0
  982. package/documentation-site/tsconfig.json +24 -0
  983. package/package.json +124 -0
  984. package/packages/baseui-codemods/.eslintrc.js +14 -0
  985. package/packages/baseui-codemods/README.md +145 -0
  986. package/packages/baseui-codemods/package.json +30 -0
  987. package/packages/baseui-codemods/yarn.lock +5452 -0
  988. package/packages/baseweb-vscode-extension/.env +2 -0
  989. package/packages/baseweb-vscode-extension/.eslintignore +1 -0
  990. package/packages/baseweb-vscode-extension/.vscode/launch.json +30 -0
  991. package/packages/baseweb-vscode-extension/.vscode/tasks.json +20 -0
  992. package/packages/baseweb-vscode-extension/.vscodeignore +11 -0
  993. package/packages/baseweb-vscode-extension/README.md +33 -0
  994. package/packages/baseweb-vscode-extension/ext-src/coloring.ts +231 -0
  995. package/packages/baseweb-vscode-extension/ext-src/components.json +51 -0
  996. package/packages/baseweb-vscode-extension/ext-src/extension.ts +164 -0
  997. package/packages/baseweb-vscode-extension/ext-src/react-app-env.d.ts +1 -0
  998. package/packages/baseweb-vscode-extension/ext-src/test/runTest.ts +23 -0
  999. package/packages/baseweb-vscode-extension/ext-src/test/suite/extension.test.ts +15 -0
  1000. package/packages/baseweb-vscode-extension/ext-src/test/suite/index.ts +37 -0
  1001. package/packages/baseweb-vscode-extension/images/icon.png +0 -0
  1002. package/packages/baseweb-vscode-extension/package.json +392 -0
  1003. package/packages/baseweb-vscode-extension/public/index.html +40 -0
  1004. package/packages/baseweb-vscode-extension/scripts/build-non-split.js +23 -0
  1005. package/packages/baseweb-vscode-extension/scripts/update-package.js +37 -0
  1006. package/packages/baseweb-vscode-extension/snippets/build.ts +68 -0
  1007. package/packages/baseweb-vscode-extension/snippets/mock.ts +1 -0
  1008. package/packages/baseweb-vscode-extension/snippets/tsconfig.json +20 -0
  1009. package/packages/baseweb-vscode-extension/src/App.tsx +419 -0
  1010. package/packages/baseweb-vscode-extension/src/index.css +6 -0
  1011. package/packages/baseweb-vscode-extension/src/index.tsx +8 -0
  1012. package/packages/baseweb-vscode-extension/src/react-app-env.d.ts +1 -0
  1013. package/packages/baseweb-vscode-extension/tsconfig.extension.json +28 -0
  1014. package/packages/baseweb-vscode-extension/tsconfig.json +20 -0
  1015. package/packages/baseweb-vscode-extension/tslint.json +12 -0
  1016. package/packages/baseweb-vscode-extension/vsc-extension-quickstart.md +41 -0
  1017. package/packages/baseweb-vscode-extension/yarn.lock +11222 -0
  1018. package/packages/eslint-plugin-baseui/.eslintrc.js +14 -0
  1019. package/packages/eslint-plugin-baseui/README.md +88 -0
  1020. package/packages/eslint-plugin-baseui/__tests__/config.test.js +21 -0
  1021. package/packages/eslint-plugin-baseui/__tests__/deprecated-component-api.test.js +757 -0
  1022. package/packages/eslint-plugin-baseui/__tests__/deprecated-theme-api-test.js +862 -0
  1023. package/packages/eslint-plugin-baseui/__tests__/example-config/.eslintrc.js +4 -0
  1024. package/packages/eslint-plugin-baseui/__tests__/example-config/fixture.js +7 -0
  1025. package/packages/eslint-plugin-baseui/__tests__/no-block-style.test.js +105 -0
  1026. package/packages/eslint-plugin-baseui/__tests__/no-component-classname.test.js +122 -0
  1027. package/packages/eslint-plugin-baseui/__tests__/no-deep-imports.test.js +73 -0
  1028. package/packages/eslint-plugin-baseui/__tests__/no-shorthand-properties.test.js +142 -0
  1029. package/packages/eslint-plugin-baseui/index.js +10 -0
  1030. package/packages/eslint-plugin-baseui/jest.config.js +14 -0
  1031. package/packages/eslint-plugin-baseui/package.json +37 -0
  1032. package/packages/eslint-plugin-baseui/src/deprecated-component-api.js +474 -0
  1033. package/packages/eslint-plugin-baseui/src/deprecated-theme-api.js +610 -0
  1034. package/packages/eslint-plugin-baseui/src/index.js +39 -0
  1035. package/packages/eslint-plugin-baseui/src/messages.js +59 -0
  1036. package/packages/eslint-plugin-baseui/src/no-block-style.js +68 -0
  1037. package/packages/eslint-plugin-baseui/src/no-component-classname.js +58 -0
  1038. package/packages/eslint-plugin-baseui/src/no-deep-imports.js +26 -0
  1039. package/packages/eslint-plugin-baseui/src/no-shorthand-properties.js +104 -0
  1040. package/packages/eslint-plugin-baseui/yarn.lock +3924 -0
  1041. package/publish/.babelrc.js +26 -0
  1042. package/publish/publish-next.js +47 -0
  1043. package/publish/transform-cup-globals.js +55 -0
  1044. package/src/a11y/a11y.tsx +151 -0
  1045. package/src/a11y/index.ts +7 -0
  1046. package/src/a11y/types.ts +12 -0
  1047. package/src/accordion/__tests__/accordion-controlled.scenario.tsx +32 -0
  1048. package/src/accordion/__tests__/accordion-disabled.scenario.tsx +18 -0
  1049. package/src/accordion/__tests__/accordion-expanded.scenario.tsx +23 -0
  1050. package/src/accordion/__tests__/accordion-panel-override.scenario.tsx +49 -0
  1051. package/src/accordion/__tests__/accordion-stateless.scenario.tsx +34 -0
  1052. package/src/accordion/__tests__/accordion.e2e.ts +94 -0
  1053. package/src/accordion/__tests__/accordion.scenario.tsx +19 -0
  1054. package/src/accordion/__tests__/accordion.stories.tsx +20 -0
  1055. package/src/accordion/__tests__/accordion.test.tsx +55 -0
  1056. package/src/accordion/__tests__/panel.test.tsx +85 -0
  1057. package/src/accordion/__tests__/stateful-panel-container.test.tsx +23 -0
  1058. package/src/accordion/accordion.tsx +155 -0
  1059. package/src/accordion/constants.ts +9 -0
  1060. package/src/accordion/index.ts +30 -0
  1061. package/src/accordion/locale.ts +17 -0
  1062. package/src/accordion/panel.tsx +232 -0
  1063. package/src/accordion/stateful-panel-container.ts +57 -0
  1064. package/src/accordion/stateful-panel.tsx +19 -0
  1065. package/src/accordion/stateless-accordion.tsx +67 -0
  1066. package/src/accordion/styled-components.ts +140 -0
  1067. package/src/accordion/types.ts +173 -0
  1068. package/src/app-nav-bar/__tests__/app-nav-bar-get-unique-identifier.scenario.tsx +37 -0
  1069. package/src/app-nav-bar/__tests__/app-nav-bar-icon-overrides.scenario.tsx +86 -0
  1070. package/src/app-nav-bar/__tests__/app-nav-bar-is-main-item-active.scenario.tsx +52 -0
  1071. package/src/app-nav-bar/__tests__/app-nav-bar-map-item-to-node.scenario.tsx +52 -0
  1072. package/src/app-nav-bar/__tests__/app-nav-bar-overrides.scenario.tsx +137 -0
  1073. package/src/app-nav-bar/__tests__/app-nav-bar-title-node.scenario.tsx +29 -0
  1074. package/src/app-nav-bar/__tests__/app-nav-bar.scenario.tsx +75 -0
  1075. package/src/app-nav-bar/__tests__/app-nav-bar.stories.tsx +22 -0
  1076. package/src/app-nav-bar/__tests__/utils.test.ts +89 -0
  1077. package/src/app-nav-bar/app-nav-bar.tsx +249 -0
  1078. package/src/app-nav-bar/constants.ts +15 -0
  1079. package/src/app-nav-bar/index.ts +22 -0
  1080. package/src/app-nav-bar/mobile-menu.tsx +210 -0
  1081. package/src/app-nav-bar/styled-components.ts +240 -0
  1082. package/src/app-nav-bar/types.ts +66 -0
  1083. package/src/app-nav-bar/user-menu.tsx +124 -0
  1084. package/src/app-nav-bar/user-profile-tile.tsx +57 -0
  1085. package/src/app-nav-bar/utils.ts +62 -0
  1086. package/src/aspect-ratio-box/__tests__/aspect-ratio-box.scenario.tsx +46 -0
  1087. package/src/aspect-ratio-box/__tests__/aspect-ratio-box.stories.tsx +10 -0
  1088. package/src/aspect-ratio-box/aspect-ratio-box-body.tsx +31 -0
  1089. package/src/aspect-ratio-box/aspect-ratio-box.tsx +72 -0
  1090. package/src/aspect-ratio-box/index.ts +9 -0
  1091. package/src/aspect-ratio-box/types.ts +13 -0
  1092. package/src/avatar/__tests__/adorable.png +0 -0
  1093. package/src/avatar/__tests__/avatar-custom-initials.scenario.tsx +13 -0
  1094. package/src/avatar/__tests__/avatar-error.scenario.tsx +19 -0
  1095. package/src/avatar/__tests__/avatar-no-src.scenario.tsx +19 -0
  1096. package/src/avatar/__tests__/avatar-update-image.scenario.tsx +23 -0
  1097. package/src/avatar/__tests__/avatar.scenario.tsx +20 -0
  1098. package/src/avatar/__tests__/avatar.stories.tsx +18 -0
  1099. package/src/avatar/__tests__/avatar.test.tsx +120 -0
  1100. package/src/avatar/__tests__/styled-component.test.tsx +44 -0
  1101. package/src/avatar/avatar.tsx +81 -0
  1102. package/src/avatar/index.ts +17 -0
  1103. package/src/avatar/styled-components.ts +68 -0
  1104. package/src/avatar/types.ts +37 -0
  1105. package/src/badge/__tests__/badge.scenario.tsx +142 -0
  1106. package/src/badge/__tests__/badge.stories.tsx +16 -0
  1107. package/src/badge/__tests__/hint-dot.scenario.tsx +162 -0
  1108. package/src/badge/__tests__/inline-badge.scenario.tsx +63 -0
  1109. package/src/badge/__tests__/notification-circle.scenario.tsx +70 -0
  1110. package/src/badge/badge.tsx +86 -0
  1111. package/src/badge/constants.ts +46 -0
  1112. package/src/badge/hint-dot.tsx +63 -0
  1113. package/src/badge/index.ts +42 -0
  1114. package/src/badge/notification-circle.tsx +76 -0
  1115. package/src/badge/styled-components.ts +345 -0
  1116. package/src/badge/types.ts +54 -0
  1117. package/src/badge/utils.ts +18 -0
  1118. package/src/banner/__tests__/banner-action-below.scenario.tsx +47 -0
  1119. package/src/banner/__tests__/banner-artwork.scenario.tsx +82 -0
  1120. package/src/banner/__tests__/banner-nested.scenario.tsx +55 -0
  1121. package/src/banner/__tests__/banner-overrides.scenario.tsx +75 -0
  1122. package/src/banner/__tests__/banner.scenario.tsx +75 -0
  1123. package/src/banner/__tests__/banner.stories.tsx +19 -0
  1124. package/src/banner/__tests__/banner.test.tsx +45 -0
  1125. package/src/banner/banner.tsx +264 -0
  1126. package/src/banner/constants.ts +27 -0
  1127. package/src/banner/index.ts +19 -0
  1128. package/src/banner/styled-components.ts +149 -0
  1129. package/src/banner/types.ts +65 -0
  1130. package/src/block/__tests__/block.scenario.tsx +18 -0
  1131. package/src/block/__tests__/block.stories.tsx +11 -0
  1132. package/src/block/__tests__/block.test.tsx +139 -0
  1133. package/src/block/block.tsx +181 -0
  1134. package/src/block/index.ts +9 -0
  1135. package/src/block/styled-components.ts +378 -0
  1136. package/src/block/types.ts +424 -0
  1137. package/src/bottom-navigation/bottom-navigation.tsx +147 -0
  1138. package/src/bottom-navigation/index.ts +10 -0
  1139. package/src/bottom-navigation/nav-item.tsx +14 -0
  1140. package/src/bottom-navigation/panel.tsx +27 -0
  1141. package/src/bottom-navigation/selector.tsx +33 -0
  1142. package/src/bottom-navigation/styled-components.ts +89 -0
  1143. package/src/bottom-navigation/types.ts +59 -0
  1144. package/src/breadcrumbs/__tests__/breadcrumbs-icon-overrides.scenario.tsx +45 -0
  1145. package/src/breadcrumbs/__tests__/breadcrumbs-pseudo.scenario.tsx +41 -0
  1146. package/src/breadcrumbs/__tests__/breadcrumbs-rtl.scenario.tsx +19 -0
  1147. package/src/breadcrumbs/__tests__/breadcrumbs-trailing.scenario.tsx +21 -0
  1148. package/src/breadcrumbs/__tests__/breadcrumbs.e2e.ts +19 -0
  1149. package/src/breadcrumbs/__tests__/breadcrumbs.scenario.tsx +20 -0
  1150. package/src/breadcrumbs/__tests__/breadcrumbs.stories.tsx +16 -0
  1151. package/src/breadcrumbs/__tests__/breadcrumbs.test.tsx +42 -0
  1152. package/src/breadcrumbs/breadcrumbs.tsx +79 -0
  1153. package/src/breadcrumbs/index.ts +11 -0
  1154. package/src/breadcrumbs/locale.ts +15 -0
  1155. package/src/breadcrumbs/styled-components.ts +49 -0
  1156. package/src/breadcrumbs/types.ts +27 -0
  1157. package/src/button/__tests__/button-a11y.scenario.tsx +74 -0
  1158. package/src/button/__tests__/button-backgroundsafe.scenario.tsx +90 -0
  1159. package/src/button/__tests__/button-circle.scenario.tsx +55 -0
  1160. package/src/button/__tests__/button-colors.scenario.tsx +69 -0
  1161. package/src/button/__tests__/button-enhancers-compact.scenario.tsx +29 -0
  1162. package/src/button/__tests__/button-enhancers-loading.scenario.tsx +29 -0
  1163. package/src/button/__tests__/button-enhancers.scenario.tsx +199 -0
  1164. package/src/button/__tests__/button-functional-children.scenario.tsx +85 -0
  1165. package/src/button/__tests__/button-in-form.test.tsx +50 -0
  1166. package/src/button/__tests__/button-min-hit-area.scenario.tsx +100 -0
  1167. package/src/button/__tests__/button-rtl.scenario.tsx +20 -0
  1168. package/src/button/__tests__/button-shapes.scenario.tsx +122 -0
  1169. package/src/button/__tests__/button-sizes-loading.scenario.tsx +40 -0
  1170. package/src/button/__tests__/button-sizes.scenario.tsx +27 -0
  1171. package/src/button/__tests__/button-width-type.scenario.tsx +163 -0
  1172. package/src/button/__tests__/button.e2e.ts +18 -0
  1173. package/src/button/__tests__/button.scenario.tsx +96 -0
  1174. package/src/button/__tests__/button.stories.tsx +43 -0
  1175. package/src/button/__tests__/button.test.tsx +277 -0
  1176. package/src/button/__tests__/link-buttons.scenario.tsx +89 -0
  1177. package/src/button/button-internals.tsx +134 -0
  1178. package/src/button/button.tsx +240 -0
  1179. package/src/button/constants.ts +51 -0
  1180. package/src/button/default-props.ts +19 -0
  1181. package/src/button/index.ts +31 -0
  1182. package/src/button/styled-components.ts +915 -0
  1183. package/src/button/types.ts +114 -0
  1184. package/src/button/utils.ts +33 -0
  1185. package/src/button-dock/button-dock.tsx +39 -0
  1186. package/src/button-dock/index.ts +9 -0
  1187. package/src/button-dock/styled-components.ts +46 -0
  1188. package/src/button-dock/types.ts +21 -0
  1189. package/src/button-group/__tests__/button-group-a11y.scenario.tsx +66 -0
  1190. package/src/button-group/__tests__/button-group-checkbox.scenario.tsx +20 -0
  1191. package/src/button-group/__tests__/button-group-disabled.scenario.tsx +32 -0
  1192. package/src/button-group/__tests__/button-group-kinds.scenario.tsx +37 -0
  1193. package/src/button-group/__tests__/button-group-overrides.scenario.tsx +31 -0
  1194. package/src/button-group/__tests__/button-group-padding-scenario.tsx +73 -0
  1195. package/src/button-group/__tests__/button-group-pill.scenario.tsx +20 -0
  1196. package/src/button-group/__tests__/button-group-radio.scenario.tsx +20 -0
  1197. package/src/button-group/__tests__/button-group-selected-disabled.scenario.tsx +47 -0
  1198. package/src/button-group/__tests__/button-group-selected.scenario.tsx +32 -0
  1199. package/src/button-group/__tests__/button-group-sizes.scenario.tsx +32 -0
  1200. package/src/button-group/__tests__/button-group-wrap.scenario.tsx +69 -0
  1201. package/src/button-group/__tests__/button-group.e2e.ts +31 -0
  1202. package/src/button-group/__tests__/button-group.stories.tsx +38 -0
  1203. package/src/button-group/__tests__/button-group.test.tsx +140 -0
  1204. package/src/button-group/__tests__/stateful-button-group.test.tsx +160 -0
  1205. package/src/button-group/__tests__/stateful-container.test.tsx +75 -0
  1206. package/src/button-group/button-group.tsx +168 -0
  1207. package/src/button-group/constants.ts +20 -0
  1208. package/src/button-group/index.ts +31 -0
  1209. package/src/button-group/locale.ts +15 -0
  1210. package/src/button-group/stateful-button-group.tsx +21 -0
  1211. package/src/button-group/stateful-container.ts +90 -0
  1212. package/src/button-group/styled-components.ts +69 -0
  1213. package/src/button-group/types.ts +91 -0
  1214. package/src/button-timed/__tests__/button-timed.e2e.ts +40 -0
  1215. package/src/button-timed/__tests__/button-timed.scenario.tsx +62 -0
  1216. package/src/button-timed/__tests__/button-timed.stories.tsx +10 -0
  1217. package/src/button-timed/__tests__/button-timed.test.tsx +57 -0
  1218. package/src/button-timed/button-timed.tsx +103 -0
  1219. package/src/button-timed/index.ts +24 -0
  1220. package/src/button-timed/styled-components.ts +53 -0
  1221. package/src/button-timed/types.ts +19 -0
  1222. package/src/button-timed/utils.ts +22 -0
  1223. package/src/card/__tests__/card-header-level.scenario.tsx +39 -0
  1224. package/src/card/__tests__/card-heading-level.e2e.ts +22 -0
  1225. package/src/card/__tests__/card-image-link.scenario.tsx +32 -0
  1226. package/src/card/__tests__/card-image-object.scenario.tsx +33 -0
  1227. package/src/card/__tests__/card-text-only.scenario.tsx +26 -0
  1228. package/src/card/__tests__/card.e2e.ts +18 -0
  1229. package/src/card/__tests__/card.scenario.tsx +30 -0
  1230. package/src/card/__tests__/card.stories.tsx +18 -0
  1231. package/src/card/__tests__/card.test.tsx +51 -0
  1232. package/src/card/__tests__/images.ts +12 -0
  1233. package/src/card/card.tsx +103 -0
  1234. package/src/card/index.ts +24 -0
  1235. package/src/card/styled-components.ts +96 -0
  1236. package/src/card/types.ts +51 -0
  1237. package/src/checkbox/__tests__/checkbox-indeterminate.scenario.tsx +68 -0
  1238. package/src/checkbox/__tests__/checkbox-placement.scenario.tsx +70 -0
  1239. package/src/checkbox/__tests__/checkbox-react-hook-form.scenario.tsx +109 -0
  1240. package/src/checkbox/__tests__/checkbox-rtl.scenario.tsx +20 -0
  1241. package/src/checkbox/__tests__/checkbox-select.scenario.tsx +22 -0
  1242. package/src/checkbox/__tests__/checkbox-states.scenario.tsx +32 -0
  1243. package/src/checkbox/__tests__/checkbox-toggle.scenario.tsx +42 -0
  1244. package/src/checkbox/__tests__/checkbox-unlabeled.scenario.tsx +13 -0
  1245. package/src/checkbox/__tests__/checkbox.e2e.ts +37 -0
  1246. package/src/checkbox/__tests__/checkbox.scenario.tsx +13 -0
  1247. package/src/checkbox/__tests__/checkbox.stories.tsx +24 -0
  1248. package/src/checkbox/__tests__/checkbox.test.tsx +73 -0
  1249. package/src/checkbox/__tests__/stateful-checkbox-container.test.tsx +89 -0
  1250. package/src/checkbox/checkbox.tsx +229 -0
  1251. package/src/checkbox/constants.ts +27 -0
  1252. package/src/checkbox/index.ts +26 -0
  1253. package/src/checkbox/stateful-checkbox-container.ts +107 -0
  1254. package/src/checkbox/stateful-checkbox.tsx +25 -0
  1255. package/src/checkbox/styled-components.ts +284 -0
  1256. package/src/checkbox/types.ts +185 -0
  1257. package/src/checkbox-v2/__tests__/checkbox-v2-auto-focus.scenario.tsx +13 -0
  1258. package/src/checkbox-v2/__tests__/checkbox-v2-indeterminate.scenario.tsx +73 -0
  1259. package/src/checkbox-v2/__tests__/checkbox-v2-placement.scenario.tsx +44 -0
  1260. package/src/checkbox-v2/__tests__/checkbox-v2-react-hook-form.scenario.tsx +109 -0
  1261. package/src/checkbox-v2/__tests__/checkbox-v2-states.scenario.tsx +39 -0
  1262. package/src/checkbox-v2/__tests__/checkbox-v2-unlabeled.scenario.tsx +14 -0
  1263. package/src/checkbox-v2/__tests__/checkbox-v2.scenario.tsx +45 -0
  1264. package/src/checkbox-v2/__tests__/checkbox-v2.stories.tsx +28 -0
  1265. package/src/checkbox-v2/__tests__/checkbox-v2.test.tsx +138 -0
  1266. package/src/checkbox-v2/__tests__/stateful-checkbox-v2-container.test.tsx +99 -0
  1267. package/src/checkbox-v2/checkbox.tsx +262 -0
  1268. package/src/checkbox-v2/constants.ts +17 -0
  1269. package/src/checkbox-v2/index.ts +23 -0
  1270. package/src/checkbox-v2/stateful-checkbox-container.ts +133 -0
  1271. package/src/checkbox-v2/stateful-checkbox.tsx +23 -0
  1272. package/src/checkbox-v2/styled-components.ts +223 -0
  1273. package/src/checkbox-v2/types.ts +187 -0
  1274. package/src/combobox/__tests__/combobox-async.scenario.tsx +110 -0
  1275. package/src/combobox/__tests__/combobox-autocomplete-false.scenario.tsx +44 -0
  1276. package/src/combobox/__tests__/combobox-disabled.scenario.tsx +40 -0
  1277. package/src/combobox/__tests__/combobox-form-control.scenario.tsx +61 -0
  1278. package/src/combobox/__tests__/combobox-form.scenario.tsx +56 -0
  1279. package/src/combobox/__tests__/combobox-inline-text-search.scenario.tsx +91 -0
  1280. package/src/combobox/__tests__/combobox-overrides.scenario.tsx +73 -0
  1281. package/src/combobox/__tests__/combobox-replacement-node.scenario.tsx +65 -0
  1282. package/src/combobox/__tests__/combobox-search.scenario.tsx +102 -0
  1283. package/src/combobox/__tests__/combobox-sizes.scenario.tsx +59 -0
  1284. package/src/combobox/__tests__/combobox.e2e.ts +47 -0
  1285. package/src/combobox/__tests__/combobox.scenario.tsx +44 -0
  1286. package/src/combobox/__tests__/combobox.stories.tsx +30 -0
  1287. package/src/combobox/__tests__/combobox.test.tsx +406 -0
  1288. package/src/combobox/combobox.tsx +335 -0
  1289. package/src/combobox/index.ts +21 -0
  1290. package/src/combobox/styled-components.ts +103 -0
  1291. package/src/combobox/types.ts +66 -0
  1292. package/src/data-table/__tests__/animal-data.ts +528 -0
  1293. package/src/data-table/__tests__/column-anchor.test.tsx +107 -0
  1294. package/src/data-table/__tests__/column-boolean.test.tsx +134 -0
  1295. package/src/data-table/__tests__/column-categorical.test.tsx +252 -0
  1296. package/src/data-table/__tests__/column-custom.test.tsx +98 -0
  1297. package/src/data-table/__tests__/column-datetime.test.tsx +332 -0
  1298. package/src/data-table/__tests__/column-numerical.test.tsx +273 -0
  1299. package/src/data-table/__tests__/column-string.test.tsx +51 -0
  1300. package/src/data-table/__tests__/data-table-add-remove-columns.scenario.tsx +40 -0
  1301. package/src/data-table/__tests__/data-table-batch-action.e2e.ts +177 -0
  1302. package/src/data-table/__tests__/data-table-batch-action.scenario.tsx +99 -0
  1303. package/src/data-table/__tests__/data-table-categorical-column.scenario.tsx +50 -0
  1304. package/src/data-table/__tests__/data-table-cell-indices.scenario.tsx +31 -0
  1305. package/src/data-table/__tests__/data-table-collection-of-objects.scenario.tsx +81 -0
  1306. package/src/data-table/__tests__/data-table-column-width-resize.scenario.tsx +38 -0
  1307. package/src/data-table/__tests__/data-table-columns-not-sortable.e2e.ts +31 -0
  1308. package/src/data-table/__tests__/data-table-columns-not-sortable.scenario.tsx +67 -0
  1309. package/src/data-table/__tests__/data-table-columns.e2e.ts +608 -0
  1310. package/src/data-table/__tests__/data-table-columns.scenario.tsx +62 -0
  1311. package/src/data-table/__tests__/data-table-datetime-column.scenario.tsx +31 -0
  1312. package/src/data-table/__tests__/data-table-empty.scenario.tsx +43 -0
  1313. package/src/data-table/__tests__/data-table-extracted-filters.e2e.ts +45 -0
  1314. package/src/data-table/__tests__/data-table-extracted-filters.scenario.tsx +138 -0
  1315. package/src/data-table/__tests__/data-table-extracted-highlight.scenario.tsx +124 -0
  1316. package/src/data-table/__tests__/data-table-full-window.scenario.tsx +54 -0
  1317. package/src/data-table/__tests__/data-table-get-rows.scenario.tsx +80 -0
  1318. package/src/data-table/__tests__/data-table-imperative-clear-selection.e2e.ts +39 -0
  1319. package/src/data-table/__tests__/data-table-imperative-clear-selection.scenario.tsx +82 -0
  1320. package/src/data-table/__tests__/data-table-included-rows-change.e2e.ts +29 -0
  1321. package/src/data-table/__tests__/data-table-included-rows-change.scenario.tsx +52 -0
  1322. package/src/data-table/__tests__/data-table-initial-filters.e2e.ts +63 -0
  1323. package/src/data-table/__tests__/data-table-initial-filters.scenario.tsx +78 -0
  1324. package/src/data-table/__tests__/data-table-initial-selected-rows.e2e.ts +21 -0
  1325. package/src/data-table/__tests__/data-table-initial-selected-rows.scenario.tsx +62 -0
  1326. package/src/data-table/__tests__/data-table-initial-sort.e2e.ts +21 -0
  1327. package/src/data-table/__tests__/data-table-initial-sort.scenario.tsx +38 -0
  1328. package/src/data-table/__tests__/data-table-large-column-data.scenario.tsx +140 -0
  1329. package/src/data-table/__tests__/data-table-loading.scenario.tsx +49 -0
  1330. package/src/data-table/__tests__/data-table-not-filterable.scenario.tsx +45 -0
  1331. package/src/data-table/__tests__/data-table-not-searchable.scenario.tsx +45 -0
  1332. package/src/data-table/__tests__/data-table-numerical-column.scenario.tsx +78 -0
  1333. package/src/data-table/__tests__/data-table-resizable-column-widths.scenario.tsx +98 -0
  1334. package/src/data-table/__tests__/data-table-row-actions-button.e2e.ts +33 -0
  1335. package/src/data-table/__tests__/data-table-row-actions-button.scenario.tsx +66 -0
  1336. package/src/data-table/__tests__/data-table-row-actions-dynamic.e2e.ts +29 -0
  1337. package/src/data-table/__tests__/data-table-row-actions-dynamic.scenario.tsx +70 -0
  1338. package/src/data-table/__tests__/data-table-row-actions.e2e.ts +54 -0
  1339. package/src/data-table/__tests__/data-table-row-actions.scenario.tsx +117 -0
  1340. package/src/data-table/__tests__/data-table-row-height.scenario.tsx +64 -0
  1341. package/src/data-table/__tests__/data-table-rtl.e2e.ts +26 -0
  1342. package/src/data-table/__tests__/data-table-rtl.scenario.tsx +39 -0
  1343. package/src/data-table/__tests__/data-table-stateful-callback.e2e.ts +51 -0
  1344. package/src/data-table/__tests__/data-table-stateful-callback.scenario.tsx +120 -0
  1345. package/src/data-table/__tests__/data-table-text-search.e2e.ts +36 -0
  1346. package/src/data-table/__tests__/data-table-text-search.scenario.tsx +98 -0
  1347. package/src/data-table/__tests__/data-table-unreliable.e2e.ts +56 -0
  1348. package/src/data-table/__tests__/data-table.scenario.tsx +271 -0
  1349. package/src/data-table/__tests__/data-table.stories.tsx +74 -0
  1350. package/src/data-table/__tests__/data-table.test.tsx +166 -0
  1351. package/src/data-table/__tests__/graphql-array-data.ts +206 -0
  1352. package/src/data-table/__tests__/precision-data.ts +187 -0
  1353. package/src/data-table/__tests__/text-search.test.ts +49 -0
  1354. package/src/data-table/__tests__/utilities.ts +63 -0
  1355. package/src/data-table/column-anchor.tsx +86 -0
  1356. package/src/data-table/column-boolean.tsx +116 -0
  1357. package/src/data-table/column-categorical.tsx +264 -0
  1358. package/src/data-table/column-custom.ts +28 -0
  1359. package/src/data-table/column-datetime.tsx +660 -0
  1360. package/src/data-table/column-numerical.tsx +546 -0
  1361. package/src/data-table/column-row-index.tsx +55 -0
  1362. package/src/data-table/column-string.tsx +85 -0
  1363. package/src/data-table/column.tsx +92 -0
  1364. package/src/data-table/constants.ts +49 -0
  1365. package/src/data-table/data-table.tsx +1074 -0
  1366. package/src/data-table/filter-menu.tsx +342 -0
  1367. package/src/data-table/filter-shell.tsx +88 -0
  1368. package/src/data-table/header-cell.tsx +178 -0
  1369. package/src/data-table/index.ts +37 -0
  1370. package/src/data-table/locale.ts +90 -0
  1371. package/src/data-table/measure-column-widths.tsx +190 -0
  1372. package/src/data-table/stateful-container.ts +156 -0
  1373. package/src/data-table/stateful-data-table.tsx +331 -0
  1374. package/src/data-table/text-search.tsx +69 -0
  1375. package/src/data-table/types.ts +193 -0
  1376. package/src/datepicker/__tests__/calendar-icon-overrides.scenario.tsx +40 -0
  1377. package/src/datepicker/__tests__/calendar-multi-month.scenario.tsx +48 -0
  1378. package/src/datepicker/__tests__/calendar-time-select.scenario.tsx +39 -0
  1379. package/src/datepicker/__tests__/calendar.e2e.ts +120 -0
  1380. package/src/datepicker/__tests__/calendar.scenario.tsx +21 -0
  1381. package/src/datepicker/__tests__/calendar.test.tsx +66 -0
  1382. package/src/datepicker/__tests__/datepicker-i18n-chinese.scenario.tsx +14 -0
  1383. package/src/datepicker/__tests__/datepicker-int-range.e2e.ts +30 -0
  1384. package/src/datepicker/__tests__/datepicker-int-range.scenario.tsx +32 -0
  1385. package/src/datepicker/__tests__/datepicker-int.e2e.ts +28 -0
  1386. package/src/datepicker/__tests__/datepicker-int.scenario.tsx +30 -0
  1387. package/src/datepicker/__tests__/datepicker-keyboard-nav.e2e.ts +277 -0
  1388. package/src/datepicker/__tests__/datepicker-mask.scenario.tsx +82 -0
  1389. package/src/datepicker/__tests__/datepicker-onchange-flow.scenario.tsx +49 -0
  1390. package/src/datepicker/__tests__/datepicker-range-exclude-dates.e2e.ts +53 -0
  1391. package/src/datepicker/__tests__/datepicker-range-exclude-dates.scenario.tsx +68 -0
  1392. package/src/datepicker/__tests__/datepicker-range-highlight.scenario.tsx +19 -0
  1393. package/src/datepicker/__tests__/datepicker-range-locked-behavior.e2e.ts +132 -0
  1394. package/src/datepicker/__tests__/datepicker-range-locked-behavior.scenario.tsx +77 -0
  1395. package/src/datepicker/__tests__/datepicker-range-multi-month.scenario.tsx +35 -0
  1396. package/src/datepicker/__tests__/datepicker-range-null-start-date.scenario.tsx +24 -0
  1397. package/src/datepicker/__tests__/datepicker-range-separate-inputs.e2e.ts +114 -0
  1398. package/src/datepicker/__tests__/datepicker-range-separate-inputs.scenario.tsx +72 -0
  1399. package/src/datepicker/__tests__/datepicker-range.e2e.ts +134 -0
  1400. package/src/datepicker/__tests__/datepicker-range.scenario.tsx +53 -0
  1401. package/src/datepicker/__tests__/datepicker-rtl.scenario.tsx +19 -0
  1402. package/src/datepicker/__tests__/datepicker-time.scenario.tsx +26 -0
  1403. package/src/datepicker/__tests__/datepicker-unreliable.e2e.ts +174 -0
  1404. package/src/datepicker/__tests__/datepicker.e2e.ts +147 -0
  1405. package/src/datepicker/__tests__/datepicker.scenario.tsx +97 -0
  1406. package/src/datepicker/__tests__/datepicker.stories.tsx +64 -0
  1407. package/src/datepicker/__tests__/datepicker.test.tsx +319 -0
  1408. package/src/datepicker/__tests__/datepickers-color-states.scenario.tsx +58 -0
  1409. package/src/datepicker/__tests__/datepickers-composed-range.e2e.ts +160 -0
  1410. package/src/datepicker/__tests__/datepickers-composed-range.scenario.tsx +144 -0
  1411. package/src/datepicker/__tests__/datepickers-composed-single.scenario.tsx +53 -0
  1412. package/src/datepicker/__tests__/stateful-calendar-overrides.scenario.tsx +69 -0
  1413. package/src/datepicker/__tests__/stateful-calendar.scenario.tsx +25 -0
  1414. package/src/datepicker/__tests__/stateful-calendar.test.tsx +24 -0
  1415. package/src/datepicker/__tests__/stateful-container.test.tsx +36 -0
  1416. package/src/datepicker/__tests__/stateful-datepicker-min-max-date.scenario.tsx +26 -0
  1417. package/src/datepicker/__tests__/stateful-datepicker-quick-select.e2e.ts +49 -0
  1418. package/src/datepicker/__tests__/stateful-datepicker-quick-select.scenario.tsx +24 -0
  1419. package/src/datepicker/__tests__/stateful-datepicker.e2e.ts +98 -0
  1420. package/src/datepicker/__tests__/stateful-datepicker.scenario.tsx +12 -0
  1421. package/src/datepicker/__tests__/stateful-datepicker.test.tsx +23 -0
  1422. package/src/datepicker/__tests__/stateful-range-datepicker.scenario.tsx +13 -0
  1423. package/src/datepicker/__tests__/stateful-range-quick-select.scenario.tsx +13 -0
  1424. package/src/datepicker/__tests__/utils.test.ts +1013 -0
  1425. package/src/datepicker/calendar-header.tsx +648 -0
  1426. package/src/datepicker/calendar.tsx +749 -0
  1427. package/src/datepicker/constants.ts +43 -0
  1428. package/src/datepicker/datepicker.tsx +650 -0
  1429. package/src/datepicker/datepicker_DO_NOT_USE.tsx +670 -0
  1430. package/src/datepicker/day.tsx +462 -0
  1431. package/src/datepicker/index.ts +37 -0
  1432. package/src/datepicker/locale.ts +74 -0
  1433. package/src/datepicker/month.tsx +131 -0
  1434. package/src/datepicker/stateful-calendar.tsx +35 -0
  1435. package/src/datepicker/stateful-container.ts +77 -0
  1436. package/src/datepicker/stateful-datepicker.tsx +34 -0
  1437. package/src/datepicker/styled-components.ts +696 -0
  1438. package/src/datepicker/types.ts +365 -0
  1439. package/src/datepicker/utils/__tests__/date-helpers.node.ts +46 -0
  1440. package/src/datepicker/utils/calendar-header-helpers.ts +48 -0
  1441. package/src/datepicker/utils/date-fns-adapter.ts +13 -0
  1442. package/src/datepicker/utils/date-helpers.ts +448 -0
  1443. package/src/datepicker/utils/day-state.ts +60 -0
  1444. package/src/datepicker/utils/index.ts +91 -0
  1445. package/src/datepicker/utils/types.ts +78 -0
  1446. package/src/datepicker/week.tsx +98 -0
  1447. package/src/dialog/constants.ts +22 -0
  1448. package/src/dialog/dialog.tsx +165 -0
  1449. package/src/dialog/index.ts +10 -0
  1450. package/src/dialog/styled-components.ts +188 -0
  1451. package/src/dialog/types.ts +49 -0
  1452. package/src/divider/__tests__/divider.scenario.tsx +62 -0
  1453. package/src/divider/__tests__/divider.stories.tsx +10 -0
  1454. package/src/divider/constants.ts +11 -0
  1455. package/src/divider/index.tsx +20 -0
  1456. package/src/divider/styled-components.ts +40 -0
  1457. package/src/divider/types.ts +11 -0
  1458. package/src/dnd-list/__tests__/dnd-list-rtl.scenario.tsx +19 -0
  1459. package/src/dnd-list/__tests__/dnd-list.scenario.tsx +26 -0
  1460. package/src/dnd-list/__tests__/dnd-list.stories.tsx +10 -0
  1461. package/src/dnd-list/__tests__/list.test.tsx +36 -0
  1462. package/src/dnd-list/__tests__/stateful-list-container.test.tsx +91 -0
  1463. package/src/dnd-list/__tests__/stateful-list.test.tsx +29 -0
  1464. package/src/dnd-list/constants.ts +9 -0
  1465. package/src/dnd-list/index.ts +29 -0
  1466. package/src/dnd-list/list.tsx +156 -0
  1467. package/src/dnd-list/stateful-list-container.ts +74 -0
  1468. package/src/dnd-list/stateful-list.tsx +27 -0
  1469. package/src/dnd-list/styled-components.ts +139 -0
  1470. package/src/dnd-list/types.ts +83 -0
  1471. package/src/drawer/__tests__/drawer-hide-backdrop.scenario.tsx +46 -0
  1472. package/src/drawer/__tests__/drawer-render-all.scenario.tsx +45 -0
  1473. package/src/drawer/__tests__/drawer-rtl.scenario.tsx +19 -0
  1474. package/src/drawer/__tests__/drawer-select.scenario.tsx +44 -0
  1475. package/src/drawer/__tests__/drawer.e2e.ts +118 -0
  1476. package/src/drawer/__tests__/drawer.scenario.tsx +42 -0
  1477. package/src/drawer/__tests__/drawer.stories.tsx +16 -0
  1478. package/src/drawer/__tests__/drawer.test.tsx +132 -0
  1479. package/src/drawer/close-icon.tsx +12 -0
  1480. package/src/drawer/constants.ts +33 -0
  1481. package/src/drawer/drawer.tsx +307 -0
  1482. package/src/drawer/index.ts +11 -0
  1483. package/src/drawer/locale.ts +15 -0
  1484. package/src/drawer/styled-components.ts +219 -0
  1485. package/src/drawer/types.ts +84 -0
  1486. package/src/file-uploader/__tests__/file-uploader-item-preview.scenario.tsx +20 -0
  1487. package/src/file-uploader/__tests__/file-uploader-label-hint.scenario.tsx +20 -0
  1488. package/src/file-uploader/__tests__/file-uploader-long-loading-multiple-files.scenario.tsx +56 -0
  1489. package/src/file-uploader/__tests__/file-uploader-long-loading.scenario.tsx +26 -0
  1490. package/src/file-uploader/__tests__/file-uploader-overrides.scenario.tsx +67 -0
  1491. package/src/file-uploader/__tests__/file-uploader-upload-restrictions.scenario.tsx +25 -0
  1492. package/src/file-uploader/__tests__/file-uploader.e2e.ts +300 -0
  1493. package/src/file-uploader/__tests__/file-uploader.scenario.tsx +13 -0
  1494. package/src/file-uploader/__tests__/file-uploader.stories.tsx +22 -0
  1495. package/src/file-uploader/__tests__/file-uploader.test.tsx +746 -0
  1496. package/src/file-uploader/constants.ts +30 -0
  1497. package/src/file-uploader/file-uploader.tsx +637 -0
  1498. package/src/file-uploader/index.ts +28 -0
  1499. package/src/file-uploader/locale.ts +23 -0
  1500. package/src/file-uploader/styled-components.ts +245 -0
  1501. package/src/file-uploader/types.ts +74 -0
  1502. package/src/file-uploader/utils.ts +40 -0
  1503. package/src/file-uploader-basic/__tests__/file-uploader-basic-disabled.scenario.tsx +13 -0
  1504. package/src/file-uploader-basic/__tests__/file-uploader-basic-error.scenario.tsx +19 -0
  1505. package/src/file-uploader-basic/__tests__/file-uploader-basic-post-drop.scenario.tsx +17 -0
  1506. package/src/file-uploader-basic/__tests__/file-uploader-basic-pre-drop.scenario.tsx +17 -0
  1507. package/src/file-uploader-basic/__tests__/file-uploader-basic-progress-bar.scenario.tsx +13 -0
  1508. package/src/file-uploader-basic/__tests__/file-uploader-basic-spinner.scenario.tsx +13 -0
  1509. package/src/file-uploader-basic/__tests__/file-uploader-basic.e2e.ts +25 -0
  1510. package/src/file-uploader-basic/__tests__/file-uploader-basic.scenario.tsx +12 -0
  1511. package/src/file-uploader-basic/__tests__/file-uploader-basic.stories.tsx +22 -0
  1512. package/src/file-uploader-basic/__tests__/file-uploader-basic.test.tsx +180 -0
  1513. package/src/file-uploader-basic/file-uploader-basic.tsx +297 -0
  1514. package/src/file-uploader-basic/index.ts +21 -0
  1515. package/src/file-uploader-basic/locale.ts +23 -0
  1516. package/src/file-uploader-basic/styled-components.ts +89 -0
  1517. package/src/file-uploader-basic/types.ts +56 -0
  1518. package/src/flex-grid/__tests__/__snapshots__/flex-grid-item.test.tsx.snap +99 -0
  1519. package/src/flex-grid/__tests__/__snapshots__/flex-grid.test.tsx.snap +31 -0
  1520. package/src/flex-grid/__tests__/flex-grid-fractional-pixel.scenario.tsx +35 -0
  1521. package/src/flex-grid/__tests__/flex-grid-item.test.tsx +209 -0
  1522. package/src/flex-grid/__tests__/flex-grid-missing.scenario.tsx +39 -0
  1523. package/src/flex-grid/__tests__/flex-grid-responsive.scenario.tsx +35 -0
  1524. package/src/flex-grid/__tests__/flex-grid-unequal-narrow.scenario.tsx +42 -0
  1525. package/src/flex-grid/__tests__/flex-grid-unequal-wide.scenario.tsx +43 -0
  1526. package/src/flex-grid/__tests__/flex-grid.scenario.tsx +30 -0
  1527. package/src/flex-grid/__tests__/flex-grid.stories.tsx +20 -0
  1528. package/src/flex-grid/__tests__/flex-grid.test.tsx +35 -0
  1529. package/src/flex-grid/flex-grid-item.tsx +196 -0
  1530. package/src/flex-grid/flex-grid.tsx +86 -0
  1531. package/src/flex-grid/index.ts +9 -0
  1532. package/src/flex-grid/types.ts +24 -0
  1533. package/src/form-control/__tests__/form-control-id.scenario.tsx +29 -0
  1534. package/src/form-control/__tests__/form-control-with-counter.scenario.tsx +59 -0
  1535. package/src/form-control/__tests__/form-control.scenario.tsx +63 -0
  1536. package/src/form-control/__tests__/form-control.stories.tsx +14 -0
  1537. package/src/form-control/__tests__/form-control.test.tsx +223 -0
  1538. package/src/form-control/form-control.tsx +243 -0
  1539. package/src/form-control/index.ts +14 -0
  1540. package/src/form-control/styled-components.ts +116 -0
  1541. package/src/form-control/types.ts +65 -0
  1542. package/src/header-navigation/__tests__/header-navigation.e2e.ts +18 -0
  1543. package/src/header-navigation/__tests__/header-navigation.scenario.tsx +47 -0
  1544. package/src/header-navigation/__tests__/header-navigation.stories.tsx +10 -0
  1545. package/src/header-navigation/__tests__/header-navigation.test.tsx +26 -0
  1546. package/src/header-navigation/constants.ts +11 -0
  1547. package/src/header-navigation/examples-icons.ts +9 -0
  1548. package/src/header-navigation/header-navigation.tsx +26 -0
  1549. package/src/header-navigation/index.ts +15 -0
  1550. package/src/header-navigation/styled-components.ts +77 -0
  1551. package/src/header-navigation/types.ts +16 -0
  1552. package/src/heading/__tests__/heading.scenario.tsx +81 -0
  1553. package/src/heading/__tests__/heading.stories.tsx +10 -0
  1554. package/src/heading/__tests__/heading.test.ts +59 -0
  1555. package/src/heading/heading-level.tsx +18 -0
  1556. package/src/heading/heading.tsx +42 -0
  1557. package/src/heading/index.ts +9 -0
  1558. package/src/heading/types.ts +18 -0
  1559. package/src/helper/__tests__/helper-position.scenario.tsx +76 -0
  1560. package/src/helper/__tests__/helper-steps.scenario.tsx +48 -0
  1561. package/src/helper/__tests__/helper-with-steps.scenario.tsx +75 -0
  1562. package/src/helper/__tests__/helper.stories.tsx +14 -0
  1563. package/src/helper/constants.ts +8 -0
  1564. package/src/helper/helper-steps.tsx +65 -0
  1565. package/src/helper/helper.tsx +47 -0
  1566. package/src/helper/index.ts +23 -0
  1567. package/src/helper/stateful-helper.tsx +39 -0
  1568. package/src/helper/styled-components.ts +183 -0
  1569. package/src/helper/types.ts +16 -0
  1570. package/src/helpers/__tests__/__snapshots__/overrides.test.tsx.snap +20 -0
  1571. package/src/helpers/__tests__/__snapshots__/react-helpers.test.tsx.snap +27 -0
  1572. package/src/helpers/__tests__/helpers.stories.tsx +10 -0
  1573. package/src/helpers/__tests__/i18n-interpolation.test.ts +17 -0
  1574. package/src/helpers/__tests__/override-avoid-remount.scenario.tsx +49 -0
  1575. package/src/helpers/__tests__/overrides.test.tsx +310 -0
  1576. package/src/helpers/__tests__/react-helpers.test.tsx +29 -0
  1577. package/src/helpers/__tests__/responsive-helpers.test.ts +141 -0
  1578. package/src/helpers/__tests__/strings.test.ts +13 -0
  1579. package/src/helpers/base-provider.tsx +24 -0
  1580. package/src/helpers/i18n-interpolation.ts +18 -0
  1581. package/src/helpers/overrides.tsx +222 -0
  1582. package/src/helpers/react-helpers.tsx +30 -0
  1583. package/src/helpers/responsive-helpers.ts +46 -0
  1584. package/src/helpers/strings.ts +7 -0
  1585. package/src/helpers/types.ts +34 -0
  1586. package/src/icon/README.md +5 -0
  1587. package/src/icon/__tests__/icon-attributes.scenario.tsx +71 -0
  1588. package/src/icon/__tests__/icon-buttons.scenario.tsx +41 -0
  1589. package/src/icon/__tests__/icon-overrides.scenario.tsx +53 -0
  1590. package/src/icon/__tests__/icon.stories.tsx +14 -0
  1591. package/src/icon/__tests__/icon.test.tsx +63 -0
  1592. package/src/icon/alert.tsx +46 -0
  1593. package/src/icon/arrow-down.tsx +46 -0
  1594. package/src/icon/arrow-left.tsx +46 -0
  1595. package/src/icon/arrow-right.tsx +46 -0
  1596. package/src/icon/arrow-up.tsx +46 -0
  1597. package/src/icon/blank.tsx +40 -0
  1598. package/src/icon/build-icons.js +110 -0
  1599. package/src/icon/calendar.tsx +42 -0
  1600. package/src/icon/check-indeterminate.tsx +47 -0
  1601. package/src/icon/check.tsx +46 -0
  1602. package/src/icon/chevron-down-small.tsx +45 -0
  1603. package/src/icon/chevron-down.tsx +47 -0
  1604. package/src/icon/chevron-left-small.tsx +45 -0
  1605. package/src/icon/chevron-left.tsx +46 -0
  1606. package/src/icon/chevron-right-small.tsx +46 -0
  1607. package/src/icon/chevron-right.tsx +46 -0
  1608. package/src/icon/chevron-up-small.tsx +45 -0
  1609. package/src/icon/chevron-up.tsx +47 -0
  1610. package/src/icon/circle-check-filled.tsx +46 -0
  1611. package/src/icon/circle-exclamation-point-filled.tsx +54 -0
  1612. package/src/icon/delete-alt.tsx +46 -0
  1613. package/src/icon/delete.tsx +46 -0
  1614. package/src/icon/filter.tsx +44 -0
  1615. package/src/icon/grab.tsx +46 -0
  1616. package/src/icon/hide.tsx +42 -0
  1617. package/src/icon/icon-exports.ts +39 -0
  1618. package/src/icon/icon-template.txt +42 -0
  1619. package/src/icon/icon.tsx +42 -0
  1620. package/src/icon/index.ts +14 -0
  1621. package/src/icon/menu.tsx +44 -0
  1622. package/src/icon/omit-dollar-prefixed-keys.ts +20 -0
  1623. package/src/icon/overflow.tsx +44 -0
  1624. package/src/icon/paperclip-filled.tsx +45 -0
  1625. package/src/icon/plus.tsx +46 -0
  1626. package/src/icon/search.tsx +46 -0
  1627. package/src/icon/show.tsx +42 -0
  1628. package/src/icon/spinner.tsx +52 -0
  1629. package/src/icon/styled-components.ts +57 -0
  1630. package/src/icon/svg/alert.svg +3 -0
  1631. package/src/icon/svg/arrow-down.svg +3 -0
  1632. package/src/icon/svg/arrow-left.svg +3 -0
  1633. package/src/icon/svg/arrow-right.svg +3 -0
  1634. package/src/icon/svg/arrow-up.svg +3 -0
  1635. package/src/icon/svg/blank.svg +1 -0
  1636. package/src/icon/svg/calendar.svg +3 -0
  1637. package/src/icon/svg/check-indeterminate.svg +3 -0
  1638. package/src/icon/svg/check.svg +3 -0
  1639. package/src/icon/svg/chevron-down-small.svg +4 -0
  1640. package/src/icon/svg/chevron-down.svg +3 -0
  1641. package/src/icon/svg/chevron-left-small.svg +4 -0
  1642. package/src/icon/svg/chevron-left.svg +3 -0
  1643. package/src/icon/svg/chevron-right-small.svg +4 -0
  1644. package/src/icon/svg/chevron-right.svg +3 -0
  1645. package/src/icon/svg/chevron-up-small.svg +4 -0
  1646. package/src/icon/svg/chevron-up.svg +3 -0
  1647. package/src/icon/svg/delete-alt.svg +3 -0
  1648. package/src/icon/svg/delete.svg +3 -0
  1649. package/src/icon/svg/filter.svg +5 -0
  1650. package/src/icon/svg/grab.svg +3 -0
  1651. package/src/icon/svg/hide.svg +4 -0
  1652. package/src/icon/svg/menu.svg +5 -0
  1653. package/src/icon/svg/overflow.svg +5 -0
  1654. package/src/icon/svg/plus.svg +3 -0
  1655. package/src/icon/svg/search.svg +3 -0
  1656. package/src/icon/svg/show.svg +4 -0
  1657. package/src/icon/svg/spinner.svg +4 -0
  1658. package/src/icon/svg/triangle-down.svg +3 -0
  1659. package/src/icon/svg/triangle-left.svg +3 -0
  1660. package/src/icon/svg/triangle-right.svg +3 -0
  1661. package/src/icon/svg/triangle-up.svg +3 -0
  1662. package/src/icon/svg/upload.svg +3 -0
  1663. package/src/icon/trash-can-filled.tsx +47 -0
  1664. package/src/icon/triangle-down.tsx +42 -0
  1665. package/src/icon/triangle-left.tsx +42 -0
  1666. package/src/icon/triangle-right.tsx +42 -0
  1667. package/src/icon/triangle-up.tsx +42 -0
  1668. package/src/icon/types.ts +31 -0
  1669. package/src/icon/upload.tsx +46 -0
  1670. package/src/index.ts +38 -0
  1671. package/src/input/__tests__/__snapshots__/utils.test.ts.snap +15 -0
  1672. package/src/input/__tests__/base-input.test.tsx +94 -0
  1673. package/src/input/__tests__/input-before-after.scenario.tsx +42 -0
  1674. package/src/input/__tests__/input-clearable-icon-overrides.scenario.tsx +38 -0
  1675. package/src/input/__tests__/input-clearable-noescape.scenario.tsx +28 -0
  1676. package/src/input/__tests__/input-clearable.scenario.tsx +47 -0
  1677. package/src/input/__tests__/input-disabled-matches-select.scenario.tsx +34 -0
  1678. package/src/input/__tests__/input-form-control-states.scenario.tsx +50 -0
  1679. package/src/input/__tests__/input-mask.scenario.tsx +21 -0
  1680. package/src/input/__tests__/input-number.scenario.tsx +12 -0
  1681. package/src/input/__tests__/input-password-icon-overrides.scenario.tsx +39 -0
  1682. package/src/input/__tests__/input-password.scenario.tsx +51 -0
  1683. package/src/input/__tests__/input-rtl.scenario.tsx +31 -0
  1684. package/src/input/__tests__/input-selector.scenario.tsx +97 -0
  1685. package/src/input/__tests__/input-sizes.scenario.tsx +25 -0
  1686. package/src/input/__tests__/input-states.scenario.tsx +105 -0
  1687. package/src/input/__tests__/input-with-button.scenario.tsx +45 -0
  1688. package/src/input/__tests__/input.e2e.ts +153 -0
  1689. package/src/input/__tests__/input.scenario.tsx +23 -0
  1690. package/src/input/__tests__/input.stories.tsx +38 -0
  1691. package/src/input/__tests__/input.test.tsx +77 -0
  1692. package/src/input/__tests__/masked-input.test.tsx +53 -0
  1693. package/src/input/__tests__/stateful-container.test.tsx +27 -0
  1694. package/src/input/__tests__/stateful-input.test.tsx +26 -0
  1695. package/src/input/__tests__/utils.test.ts +32 -0
  1696. package/src/input/base-input.tsx +392 -0
  1697. package/src/input/constants.ts +32 -0
  1698. package/src/input/index.ts +23 -0
  1699. package/src/input/input.tsx +144 -0
  1700. package/src/input/masked-input.tsx +113 -0
  1701. package/src/input/stateful-container.ts +57 -0
  1702. package/src/input/stateful-input.tsx +18 -0
  1703. package/src/input/styled-components.ts +535 -0
  1704. package/src/input/types.ts +202 -0
  1705. package/src/input/utils.ts +28 -0
  1706. package/src/layer/__mocks__/popper.js.ts +35 -0
  1707. package/src/layer/__tests__/key-handlers.scenario.tsx +149 -0
  1708. package/src/layer/__tests__/layer-z-index.scenario.tsx +180 -0
  1709. package/src/layer/__tests__/layer.stories.tsx +12 -0
  1710. package/src/layer/__tests__/layer.test.tsx +128 -0
  1711. package/src/layer/__tests__/tether.test.tsx +37 -0
  1712. package/src/layer/__tests__/utils.test.ts +45 -0
  1713. package/src/layer/constants.ts +21 -0
  1714. package/src/layer/index.ts +11 -0
  1715. package/src/layer/layer.tsx +179 -0
  1716. package/src/layer/layers-manager.tsx +235 -0
  1717. package/src/layer/tether.ts +142 -0
  1718. package/src/layer/types.ts +168 -0
  1719. package/src/layer/utils.ts +21 -0
  1720. package/src/layout/README.md +72 -0
  1721. package/src/layout/layout_1.png +0 -0
  1722. package/src/layout/layout_2.png +0 -0
  1723. package/src/layout/layout_3.png +0 -0
  1724. package/src/layout-grid/__tests__/inner.tsx +40 -0
  1725. package/src/layout-grid/__tests__/layout-grid-align.scenario.tsx +148 -0
  1726. package/src/layout-grid/__tests__/layout-grid-compact.scenario.tsx +120 -0
  1727. package/src/layout-grid/__tests__/layout-grid-custom.scenario.tsx +61 -0
  1728. package/src/layout-grid/__tests__/layout-grid-hide.scenario.tsx +24 -0
  1729. package/src/layout-grid/__tests__/layout-grid-order.scenario.tsx +36 -0
  1730. package/src/layout-grid/__tests__/layout-grid-overrides.scenario.tsx +44 -0
  1731. package/src/layout-grid/__tests__/layout-grid-sizing.scenario.tsx +27 -0
  1732. package/src/layout-grid/__tests__/layout-grid-skip.scenario.tsx +66 -0
  1733. package/src/layout-grid/__tests__/layout-grid-unit.scenario.tsx +28 -0
  1734. package/src/layout-grid/__tests__/layout-grid-wrap.scenario.tsx +48 -0
  1735. package/src/layout-grid/__tests__/layout-grid.scenario.tsx +120 -0
  1736. package/src/layout-grid/__tests__/layout-grid.stories.tsx +30 -0
  1737. package/src/layout-grid/cell.tsx +43 -0
  1738. package/src/layout-grid/constants.ts +33 -0
  1739. package/src/layout-grid/grid.tsx +85 -0
  1740. package/src/layout-grid/index.ts +26 -0
  1741. package/src/layout-grid/styled-components.ts +164 -0
  1742. package/src/layout-grid/types.ts +134 -0
  1743. package/src/link/__tests__/link.scenario.tsx +23 -0
  1744. package/src/link/__tests__/link.stories.tsx +10 -0
  1745. package/src/link/index.tsx +55 -0
  1746. package/src/link/styled-components.ts +59 -0
  1747. package/src/list/__tests__/list-heading.scenario.tsx +155 -0
  1748. package/src/list/__tests__/list-item-artwork-min-width.scenario.tsx +62 -0
  1749. package/src/list/__tests__/list-item-artwork-sizes.scenario.tsx +62 -0
  1750. package/src/list/__tests__/list-item-menu-adapter.scenario.tsx +58 -0
  1751. package/src/list/__tests__/list-item-overrides.scenario.tsx +34 -0
  1752. package/src/list/__tests__/list-item-rtl.scenario.tsx +444 -0
  1753. package/src/list/__tests__/list-item.scenario.tsx +473 -0
  1754. package/src/list/__tests__/list-item.test.tsx +73 -0
  1755. package/src/list/__tests__/list.stories.tsx +22 -0
  1756. package/src/list/constants.ts +16 -0
  1757. package/src/list/index.ts +51 -0
  1758. package/src/list/list-heading.tsx +126 -0
  1759. package/src/list/list-item-label.tsx +52 -0
  1760. package/src/list/list-item.tsx +120 -0
  1761. package/src/list/menu-adapter.tsx +47 -0
  1762. package/src/list/styled-components.ts +271 -0
  1763. package/src/list/types.ts +103 -0
  1764. package/src/list/utils.ts +30 -0
  1765. package/src/locale/__tests__/locale-provider.test.tsx +57 -0
  1766. package/src/locale/en_US.ts +38 -0
  1767. package/src/locale/es_AR.ts +145 -0
  1768. package/src/locale/index.tsx +78 -0
  1769. package/src/locale/tr_TR.ts +145 -0
  1770. package/src/locale/types.ts +35 -0
  1771. package/src/map-marker/__tests__/eats-pickup-marker.scenario.tsx +196 -0
  1772. package/src/map-marker/__tests__/fixed-marker-map.scenario.tsx +243 -0
  1773. package/src/map-marker/__tests__/fixed-marker.scenario.tsx +166 -0
  1774. package/src/map-marker/__tests__/floating-marker-map.scenario.tsx +182 -0
  1775. package/src/map-marker/__tests__/floating-marker.scenario.tsx +124 -0
  1776. package/src/map-marker/__tests__/floating-route-marker-map.scenario.tsx +177 -0
  1777. package/src/map-marker/__tests__/floating-route-marker.scenario.tsx +105 -0
  1778. package/src/map-marker/__tests__/location-puck-map.scenario.tsx +150 -0
  1779. package/src/map-marker/__tests__/location-puck.scenario.tsx +76 -0
  1780. package/src/map-marker/__tests__/map-marker.stories.tsx +26 -0
  1781. package/src/map-marker/__tests__/map-style.ts +49 -0
  1782. package/src/map-marker/__tests__/tile-grid.tsx +56 -0
  1783. package/src/map-marker/badge-enhancer.tsx +66 -0
  1784. package/src/map-marker/calculate-offsets.ts +42 -0
  1785. package/src/map-marker/constants.ts +358 -0
  1786. package/src/map-marker/drag-shadow.tsx +32 -0
  1787. package/src/map-marker/fixed-marker.tsx +143 -0
  1788. package/src/map-marker/floating-marker.tsx +104 -0
  1789. package/src/map-marker/floating-route-marker.tsx +115 -0
  1790. package/src/map-marker/index.ts +104 -0
  1791. package/src/map-marker/label-enhancer.tsx +55 -0
  1792. package/src/map-marker/location-puck.tsx +189 -0
  1793. package/src/map-marker/needle.tsx +19 -0
  1794. package/src/map-marker/pin-head.tsx +196 -0
  1795. package/src/map-marker/styled-components.ts +558 -0
  1796. package/src/map-marker/types.ts +238 -0
  1797. package/src/menu/__tests__/maybe-child-menu.test.tsx +54 -0
  1798. package/src/menu/__tests__/menu-child-in-popover.scenario.tsx +124 -0
  1799. package/src/menu/__tests__/menu-child-render-all.scenario.tsx +68 -0
  1800. package/src/menu/__tests__/menu-child.scenario.tsx +120 -0
  1801. package/src/menu/__tests__/menu-dividers.scenario.tsx +43 -0
  1802. package/src/menu/__tests__/menu-empty.scenario.tsx +23 -0
  1803. package/src/menu/__tests__/menu-grouped-items.e2e.ts +58 -0
  1804. package/src/menu/__tests__/menu-grouped-items.scenario.tsx +46 -0
  1805. package/src/menu/__tests__/menu-profile-menu.scenario.tsx +43 -0
  1806. package/src/menu/__tests__/menu-propagation.scenario.tsx +27 -0
  1807. package/src/menu/__tests__/menu-rtl.scenario.tsx +22 -0
  1808. package/src/menu/__tests__/menu-stateful.scenario.tsx +49 -0
  1809. package/src/menu/__tests__/menu-virtualized.scenario.tsx +57 -0
  1810. package/src/menu/__tests__/menu.e2e.ts +199 -0
  1811. package/src/menu/__tests__/menu.scenario.tsx +46 -0
  1812. package/src/menu/__tests__/menu.stories.tsx +30 -0
  1813. package/src/menu/__tests__/menu.test.tsx +65 -0
  1814. package/src/menu/__tests__/option-list.test.tsx +47 -0
  1815. package/src/menu/__tests__/option-profile.test.tsx +77 -0
  1816. package/src/menu/__tests__/stateful-container.test.tsx +249 -0
  1817. package/src/menu/__tests__/stateful-menu.test.tsx +27 -0
  1818. package/src/menu/__tests__/utils.test.ts +259 -0
  1819. package/src/menu/constants.ts +35 -0
  1820. package/src/menu/index.ts +63 -0
  1821. package/src/menu/locale.ts +17 -0
  1822. package/src/menu/maybe-child-menu.tsx +86 -0
  1823. package/src/menu/menu.tsx +154 -0
  1824. package/src/menu/nested-menus.tsx +151 -0
  1825. package/src/menu/option-list.tsx +122 -0
  1826. package/src/menu/option-profile.tsx +105 -0
  1827. package/src/menu/stateful-container.tsx +472 -0
  1828. package/src/menu/stateful-menu.tsx +30 -0
  1829. package/src/menu/styled-components.tsx +251 -0
  1830. package/src/menu/types.ts +324 -0
  1831. package/src/menu/utils.ts +56 -0
  1832. package/src/message-card/__tests__/deliveryHeroItalian.svg +836 -0
  1833. package/src/message-card/__tests__/deliveryHeroItalian@3x.png +0 -0
  1834. package/src/message-card/__tests__/deliveryLargeStrawberries.svg +72 -0
  1835. package/src/message-card/__tests__/deliveryLargeStrawberries@3x.png +0 -0
  1836. package/src/message-card/__tests__/earnerLargeRiderDriver.svg +104 -0
  1837. package/src/message-card/__tests__/earnerLargeRiderDriver@3x.png +0 -0
  1838. package/src/message-card/__tests__/index.d.ts +23 -0
  1839. package/src/message-card/__tests__/message-card-image-positions.scenario.tsx +331 -0
  1840. package/src/message-card/__tests__/message-card-sizes.scenario.tsx +267 -0
  1841. package/src/message-card/__tests__/message-card-trailing-image.scenario.tsx +221 -0
  1842. package/src/message-card/__tests__/message-card.e2e.ts +25 -0
  1843. package/src/message-card/__tests__/message-card.scenario.tsx +181 -0
  1844. package/src/message-card/__tests__/message-card.stories.tsx +16 -0
  1845. package/src/message-card/__tests__/venice.jpg +0 -0
  1846. package/src/message-card/constants.ts +22 -0
  1847. package/src/message-card/index.ts +10 -0
  1848. package/src/message-card/message-card.tsx +186 -0
  1849. package/src/message-card/styled-components.ts +131 -0
  1850. package/src/message-card/types.ts +37 -0
  1851. package/src/message-card/utils.ts +173 -0
  1852. package/src/mobile-header/__tests__/map-san-francisco.png +0 -0
  1853. package/src/mobile-header/__tests__/mobile-header-fixed.scenario.tsx +239 -0
  1854. package/src/mobile-header/__tests__/mobile-header-floating.scenario.tsx +152 -0
  1855. package/src/mobile-header/__tests__/mobile-header.e2e.ts +24 -0
  1856. package/src/mobile-header/__tests__/mobile-header.stories.tsx +12 -0
  1857. package/src/mobile-header/constants.ts +9 -0
  1858. package/src/mobile-header/index.ts +9 -0
  1859. package/src/mobile-header/mobile-header.tsx +141 -0
  1860. package/src/mobile-header/styled-components.ts +66 -0
  1861. package/src/mobile-header/types.ts +38 -0
  1862. package/src/modal/__tests__/modal-rtl.scenario.tsx +19 -0
  1863. package/src/modal/__tests__/modal-select.scenario.tsx +41 -0
  1864. package/src/modal/__tests__/modal-uncloseable.scenario.tsx +13 -0
  1865. package/src/modal/__tests__/modal.e2e.ts +131 -0
  1866. package/src/modal/__tests__/modal.scenario.tsx +51 -0
  1867. package/src/modal/__tests__/modal.stories.tsx +14 -0
  1868. package/src/modal/__tests__/modal.test.tsx +133 -0
  1869. package/src/modal/close-icon.tsx +22 -0
  1870. package/src/modal/constants.ts +28 -0
  1871. package/src/modal/focus-once.ts +22 -0
  1872. package/src/modal/index.ts +21 -0
  1873. package/src/modal/locale.ts +15 -0
  1874. package/src/modal/modal-button.tsx +35 -0
  1875. package/src/modal/modal.tsx +327 -0
  1876. package/src/modal/styled-components.ts +208 -0
  1877. package/src/modal/types.ts +87 -0
  1878. package/src/notification/__tests__/notification.scenario.tsx +31 -0
  1879. package/src/notification/__tests__/notification.stories.tsx +10 -0
  1880. package/src/notification/__tests__/notification.test.tsx +18 -0
  1881. package/src/notification/index.ts +8 -0
  1882. package/src/notification/notification.tsx +35 -0
  1883. package/src/overrides.ts +10 -0
  1884. package/src/page-control/constants.ts +18 -0
  1885. package/src/page-control/index.ts +9 -0
  1886. package/src/page-control/page-control.tsx +106 -0
  1887. package/src/page-control/styled-components.ts +102 -0
  1888. package/src/page-control/types.ts +26 -0
  1889. package/src/pagination/__tests__/pagination-rtl.scenario.tsx +19 -0
  1890. package/src/pagination/__tests__/pagination.e2e.ts +44 -0
  1891. package/src/pagination/__tests__/pagination.scenario.tsx +50 -0
  1892. package/src/pagination/__tests__/pagination.stories.tsx +10 -0
  1893. package/src/pagination/__tests__/pagination.test.tsx +72 -0
  1894. package/src/pagination/__tests__/stateful-container.test.tsx +78 -0
  1895. package/src/pagination/__tests__/utils.test.ts +16 -0
  1896. package/src/pagination/constants.ts +10 -0
  1897. package/src/pagination/index.ts +23 -0
  1898. package/src/pagination/locale.ts +19 -0
  1899. package/src/pagination/pagination.tsx +256 -0
  1900. package/src/pagination/stateful-container.ts +60 -0
  1901. package/src/pagination/stateful-pagination.tsx +40 -0
  1902. package/src/pagination/styled-components.ts +45 -0
  1903. package/src/pagination/types.ts +84 -0
  1904. package/src/pagination/utils.ts +10 -0
  1905. package/src/payment-card/__tests__/payment-card-rtl.scenario.tsx +19 -0
  1906. package/src/payment-card/__tests__/payment-card.e2e.ts +64 -0
  1907. package/src/payment-card/__tests__/payment-card.scenario.tsx +35 -0
  1908. package/src/payment-card/__tests__/payment-card.stories.tsx +12 -0
  1909. package/src/payment-card/__tests__/payment-card.test.ts +35 -0
  1910. package/src/payment-card/__tests__/stateful-payment-card.scenario.tsx +12 -0
  1911. package/src/payment-card/custom-cards.config.ts +24 -0
  1912. package/src/payment-card/icons/amex.tsx +45 -0
  1913. package/src/payment-card/icons/dinersclub.tsx +29 -0
  1914. package/src/payment-card/icons/discover.tsx +60 -0
  1915. package/src/payment-card/icons/elo.tsx +59 -0
  1916. package/src/payment-card/icons/generic.tsx +26 -0
  1917. package/src/payment-card/icons/jcb.tsx +35 -0
  1918. package/src/payment-card/icons/maestro.tsx +29 -0
  1919. package/src/payment-card/icons/mastercard.tsx +33 -0
  1920. package/src/payment-card/icons/uatp.tsx +56 -0
  1921. package/src/payment-card/icons/unionpay.tsx +85 -0
  1922. package/src/payment-card/icons/visa.tsx +27 -0
  1923. package/src/payment-card/index.ts +14 -0
  1924. package/src/payment-card/payment-card.tsx +158 -0
  1925. package/src/payment-card/stateful-payment-card.tsx +19 -0
  1926. package/src/payment-card/styled-components.ts +30 -0
  1927. package/src/payment-card/types.ts +20 -0
  1928. package/src/payment-card/utils.ts +51 -0
  1929. package/src/phone-input/README.md +252 -0
  1930. package/src/phone-input/__tests__/country-select-dropdown.scenario.tsx +25 -0
  1931. package/src/phone-input/__tests__/country-select-small-dropdown.scenario.tsx +12 -0
  1932. package/src/phone-input/__tests__/phone-input-custom-flags.scenario.tsx +40 -0
  1933. package/src/phone-input/__tests__/phone-input-dropdown.e2e.ts +63 -0
  1934. package/src/phone-input/__tests__/phone-input-dropdown.scenario.tsx +28 -0
  1935. package/src/phone-input/__tests__/phone-input-lite.scenario.tsx +59 -0
  1936. package/src/phone-input/__tests__/phone-input-overrides.scenario.tsx +41 -0
  1937. package/src/phone-input/__tests__/phone-input-rtl.scenario.tsx +19 -0
  1938. package/src/phone-input/__tests__/phone-input.e2e.ts +98 -0
  1939. package/src/phone-input/__tests__/phone-input.scenario.tsx +40 -0
  1940. package/src/phone-input/__tests__/phone-input.stories.tsx +22 -0
  1941. package/src/phone-input/__tests__/phone-input.test.tsx +17 -0
  1942. package/src/phone-input/base-country-picker.tsx +243 -0
  1943. package/src/phone-input/constants.ts +320 -0
  1944. package/src/phone-input/country-picker.tsx +117 -0
  1945. package/src/phone-input/country-select-dropdown.tsx +146 -0
  1946. package/src/phone-input/country-select.tsx +90 -0
  1947. package/src/phone-input/default-props.ts +35 -0
  1948. package/src/phone-input/flag.tsx +46 -0
  1949. package/src/phone-input/flags/FlagAD.tsx +20 -0
  1950. package/src/phone-input/flags/FlagAE.tsx +20 -0
  1951. package/src/phone-input/flags/FlagAF.tsx +20 -0
  1952. package/src/phone-input/flags/FlagAG.tsx +20 -0
  1953. package/src/phone-input/flags/FlagAI.tsx +20 -0
  1954. package/src/phone-input/flags/FlagAL.tsx +20 -0
  1955. package/src/phone-input/flags/FlagAM.tsx +20 -0
  1956. package/src/phone-input/flags/FlagAO.tsx +20 -0
  1957. package/src/phone-input/flags/FlagAR.tsx +20 -0
  1958. package/src/phone-input/flags/FlagAS.tsx +20 -0
  1959. package/src/phone-input/flags/FlagAT.tsx +20 -0
  1960. package/src/phone-input/flags/FlagAU.tsx +20 -0
  1961. package/src/phone-input/flags/FlagAW.tsx +20 -0
  1962. package/src/phone-input/flags/FlagAX.tsx +20 -0
  1963. package/src/phone-input/flags/FlagAZ.tsx +20 -0
  1964. package/src/phone-input/flags/FlagBA.tsx +20 -0
  1965. package/src/phone-input/flags/FlagBB.tsx +20 -0
  1966. package/src/phone-input/flags/FlagBD.tsx +20 -0
  1967. package/src/phone-input/flags/FlagBE.tsx +20 -0
  1968. package/src/phone-input/flags/FlagBF.tsx +20 -0
  1969. package/src/phone-input/flags/FlagBG.tsx +20 -0
  1970. package/src/phone-input/flags/FlagBH.tsx +20 -0
  1971. package/src/phone-input/flags/FlagBI.tsx +20 -0
  1972. package/src/phone-input/flags/FlagBJ.tsx +20 -0
  1973. package/src/phone-input/flags/FlagBL.tsx +20 -0
  1974. package/src/phone-input/flags/FlagBM.tsx +20 -0
  1975. package/src/phone-input/flags/FlagBN.tsx +20 -0
  1976. package/src/phone-input/flags/FlagBO.tsx +20 -0
  1977. package/src/phone-input/flags/FlagBR.tsx +20 -0
  1978. package/src/phone-input/flags/FlagBS.tsx +20 -0
  1979. package/src/phone-input/flags/FlagBT.tsx +20 -0
  1980. package/src/phone-input/flags/FlagBV.tsx +20 -0
  1981. package/src/phone-input/flags/FlagBW.tsx +20 -0
  1982. package/src/phone-input/flags/FlagBY.tsx +20 -0
  1983. package/src/phone-input/flags/FlagBZ.tsx +20 -0
  1984. package/src/phone-input/flags/FlagCA.tsx +20 -0
  1985. package/src/phone-input/flags/FlagCC.tsx +20 -0
  1986. package/src/phone-input/flags/FlagCD.tsx +20 -0
  1987. package/src/phone-input/flags/FlagCF.tsx +20 -0
  1988. package/src/phone-input/flags/FlagCG.tsx +20 -0
  1989. package/src/phone-input/flags/FlagCH.tsx +20 -0
  1990. package/src/phone-input/flags/FlagCI.tsx +20 -0
  1991. package/src/phone-input/flags/FlagCK.tsx +20 -0
  1992. package/src/phone-input/flags/FlagCL.tsx +20 -0
  1993. package/src/phone-input/flags/FlagCM.tsx +20 -0
  1994. package/src/phone-input/flags/FlagCN.tsx +20 -0
  1995. package/src/phone-input/flags/FlagCO.tsx +20 -0
  1996. package/src/phone-input/flags/FlagCR.tsx +20 -0
  1997. package/src/phone-input/flags/FlagCU.tsx +20 -0
  1998. package/src/phone-input/flags/FlagCV.tsx +20 -0
  1999. package/src/phone-input/flags/FlagCW.tsx +20 -0
  2000. package/src/phone-input/flags/FlagCX.tsx +20 -0
  2001. package/src/phone-input/flags/FlagCY.tsx +20 -0
  2002. package/src/phone-input/flags/FlagCZ.tsx +20 -0
  2003. package/src/phone-input/flags/FlagDE.tsx +20 -0
  2004. package/src/phone-input/flags/FlagDJ.tsx +20 -0
  2005. package/src/phone-input/flags/FlagDK.tsx +20 -0
  2006. package/src/phone-input/flags/FlagDM.tsx +20 -0
  2007. package/src/phone-input/flags/FlagDO.tsx +20 -0
  2008. package/src/phone-input/flags/FlagDZ.tsx +20 -0
  2009. package/src/phone-input/flags/FlagEC.tsx +20 -0
  2010. package/src/phone-input/flags/FlagEE.tsx +20 -0
  2011. package/src/phone-input/flags/FlagEG.tsx +20 -0
  2012. package/src/phone-input/flags/FlagER.tsx +20 -0
  2013. package/src/phone-input/flags/FlagES.tsx +20 -0
  2014. package/src/phone-input/flags/FlagET.tsx +20 -0
  2015. package/src/phone-input/flags/FlagEU.tsx +20 -0
  2016. package/src/phone-input/flags/FlagFI.tsx +20 -0
  2017. package/src/phone-input/flags/FlagFJ.tsx +20 -0
  2018. package/src/phone-input/flags/FlagFK.tsx +20 -0
  2019. package/src/phone-input/flags/FlagFM.tsx +20 -0
  2020. package/src/phone-input/flags/FlagFO.tsx +20 -0
  2021. package/src/phone-input/flags/FlagFR.tsx +20 -0
  2022. package/src/phone-input/flags/FlagGA.tsx +20 -0
  2023. package/src/phone-input/flags/FlagGB.tsx +20 -0
  2024. package/src/phone-input/flags/FlagGD.tsx +20 -0
  2025. package/src/phone-input/flags/FlagGE.tsx +20 -0
  2026. package/src/phone-input/flags/FlagGF.tsx +20 -0
  2027. package/src/phone-input/flags/FlagGG.tsx +20 -0
  2028. package/src/phone-input/flags/FlagGH.tsx +20 -0
  2029. package/src/phone-input/flags/FlagGI.tsx +20 -0
  2030. package/src/phone-input/flags/FlagGL.tsx +20 -0
  2031. package/src/phone-input/flags/FlagGM.tsx +20 -0
  2032. package/src/phone-input/flags/FlagGN.tsx +20 -0
  2033. package/src/phone-input/flags/FlagGP.tsx +20 -0
  2034. package/src/phone-input/flags/FlagGQ.tsx +20 -0
  2035. package/src/phone-input/flags/FlagGR.tsx +20 -0
  2036. package/src/phone-input/flags/FlagGS.tsx +20 -0
  2037. package/src/phone-input/flags/FlagGT.tsx +20 -0
  2038. package/src/phone-input/flags/FlagGU.tsx +20 -0
  2039. package/src/phone-input/flags/FlagGW.tsx +20 -0
  2040. package/src/phone-input/flags/FlagGY.tsx +20 -0
  2041. package/src/phone-input/flags/FlagHK.tsx +20 -0
  2042. package/src/phone-input/flags/FlagHM.tsx +20 -0
  2043. package/src/phone-input/flags/FlagHN.tsx +20 -0
  2044. package/src/phone-input/flags/FlagHR.tsx +20 -0
  2045. package/src/phone-input/flags/FlagHT.tsx +20 -0
  2046. package/src/phone-input/flags/FlagHU.tsx +20 -0
  2047. package/src/phone-input/flags/FlagID.tsx +20 -0
  2048. package/src/phone-input/flags/FlagIE.tsx +20 -0
  2049. package/src/phone-input/flags/FlagIL.tsx +20 -0
  2050. package/src/phone-input/flags/FlagIM.tsx +20 -0
  2051. package/src/phone-input/flags/FlagIN.tsx +20 -0
  2052. package/src/phone-input/flags/FlagIO.tsx +20 -0
  2053. package/src/phone-input/flags/FlagIQ.tsx +20 -0
  2054. package/src/phone-input/flags/FlagIR.tsx +20 -0
  2055. package/src/phone-input/flags/FlagIS.tsx +20 -0
  2056. package/src/phone-input/flags/FlagIT.tsx +20 -0
  2057. package/src/phone-input/flags/FlagJE.tsx +20 -0
  2058. package/src/phone-input/flags/FlagJM.tsx +20 -0
  2059. package/src/phone-input/flags/FlagJO.tsx +20 -0
  2060. package/src/phone-input/flags/FlagJP.tsx +20 -0
  2061. package/src/phone-input/flags/FlagKE.tsx +20 -0
  2062. package/src/phone-input/flags/FlagKG.tsx +20 -0
  2063. package/src/phone-input/flags/FlagKH.tsx +20 -0
  2064. package/src/phone-input/flags/FlagKI.tsx +20 -0
  2065. package/src/phone-input/flags/FlagKM.tsx +20 -0
  2066. package/src/phone-input/flags/FlagKN.tsx +20 -0
  2067. package/src/phone-input/flags/FlagKP.tsx +20 -0
  2068. package/src/phone-input/flags/FlagKR.tsx +20 -0
  2069. package/src/phone-input/flags/FlagKW.tsx +20 -0
  2070. package/src/phone-input/flags/FlagKY.tsx +20 -0
  2071. package/src/phone-input/flags/FlagKZ.tsx +20 -0
  2072. package/src/phone-input/flags/FlagLA.tsx +20 -0
  2073. package/src/phone-input/flags/FlagLB.tsx +20 -0
  2074. package/src/phone-input/flags/FlagLC.tsx +20 -0
  2075. package/src/phone-input/flags/FlagLI.tsx +20 -0
  2076. package/src/phone-input/flags/FlagLK.tsx +20 -0
  2077. package/src/phone-input/flags/FlagLR.tsx +20 -0
  2078. package/src/phone-input/flags/FlagLS.tsx +20 -0
  2079. package/src/phone-input/flags/FlagLT.tsx +20 -0
  2080. package/src/phone-input/flags/FlagLU.tsx +20 -0
  2081. package/src/phone-input/flags/FlagLV.tsx +20 -0
  2082. package/src/phone-input/flags/FlagLY.tsx +20 -0
  2083. package/src/phone-input/flags/FlagMA.tsx +20 -0
  2084. package/src/phone-input/flags/FlagMC.tsx +20 -0
  2085. package/src/phone-input/flags/FlagMD.tsx +20 -0
  2086. package/src/phone-input/flags/FlagME.tsx +20 -0
  2087. package/src/phone-input/flags/FlagMF.tsx +20 -0
  2088. package/src/phone-input/flags/FlagMG.tsx +20 -0
  2089. package/src/phone-input/flags/FlagMH.tsx +20 -0
  2090. package/src/phone-input/flags/FlagMK.tsx +20 -0
  2091. package/src/phone-input/flags/FlagML.tsx +20 -0
  2092. package/src/phone-input/flags/FlagMM.tsx +20 -0
  2093. package/src/phone-input/flags/FlagMN.tsx +20 -0
  2094. package/src/phone-input/flags/FlagMO.tsx +20 -0
  2095. package/src/phone-input/flags/FlagMP.tsx +20 -0
  2096. package/src/phone-input/flags/FlagMQ.tsx +20 -0
  2097. package/src/phone-input/flags/FlagMR.tsx +20 -0
  2098. package/src/phone-input/flags/FlagMS.tsx +20 -0
  2099. package/src/phone-input/flags/FlagMT.tsx +20 -0
  2100. package/src/phone-input/flags/FlagMU.tsx +20 -0
  2101. package/src/phone-input/flags/FlagMV.tsx +20 -0
  2102. package/src/phone-input/flags/FlagMW.tsx +20 -0
  2103. package/src/phone-input/flags/FlagMX.tsx +20 -0
  2104. package/src/phone-input/flags/FlagMY.tsx +20 -0
  2105. package/src/phone-input/flags/FlagMZ.tsx +20 -0
  2106. package/src/phone-input/flags/FlagNA.tsx +20 -0
  2107. package/src/phone-input/flags/FlagNC.tsx +20 -0
  2108. package/src/phone-input/flags/FlagNE.tsx +20 -0
  2109. package/src/phone-input/flags/FlagNF.tsx +20 -0
  2110. package/src/phone-input/flags/FlagNG.tsx +20 -0
  2111. package/src/phone-input/flags/FlagNI.tsx +20 -0
  2112. package/src/phone-input/flags/FlagNL.tsx +20 -0
  2113. package/src/phone-input/flags/FlagNO.tsx +20 -0
  2114. package/src/phone-input/flags/FlagNP.tsx +20 -0
  2115. package/src/phone-input/flags/FlagNR.tsx +20 -0
  2116. package/src/phone-input/flags/FlagNU.tsx +20 -0
  2117. package/src/phone-input/flags/FlagNZ.tsx +20 -0
  2118. package/src/phone-input/flags/FlagOM.tsx +20 -0
  2119. package/src/phone-input/flags/FlagPA.tsx +20 -0
  2120. package/src/phone-input/flags/FlagPE.tsx +20 -0
  2121. package/src/phone-input/flags/FlagPF.tsx +20 -0
  2122. package/src/phone-input/flags/FlagPG.tsx +20 -0
  2123. package/src/phone-input/flags/FlagPH.tsx +20 -0
  2124. package/src/phone-input/flags/FlagPK.tsx +20 -0
  2125. package/src/phone-input/flags/FlagPL.tsx +20 -0
  2126. package/src/phone-input/flags/FlagPM.tsx +20 -0
  2127. package/src/phone-input/flags/FlagPN.tsx +20 -0
  2128. package/src/phone-input/flags/FlagPR.tsx +20 -0
  2129. package/src/phone-input/flags/FlagPS.tsx +20 -0
  2130. package/src/phone-input/flags/FlagPT.tsx +20 -0
  2131. package/src/phone-input/flags/FlagPW.tsx +20 -0
  2132. package/src/phone-input/flags/FlagPY.tsx +20 -0
  2133. package/src/phone-input/flags/FlagQA.tsx +20 -0
  2134. package/src/phone-input/flags/FlagRE.tsx +20 -0
  2135. package/src/phone-input/flags/FlagRO.tsx +20 -0
  2136. package/src/phone-input/flags/FlagRS.tsx +20 -0
  2137. package/src/phone-input/flags/FlagRU.tsx +20 -0
  2138. package/src/phone-input/flags/FlagRW.tsx +20 -0
  2139. package/src/phone-input/flags/FlagSA.tsx +20 -0
  2140. package/src/phone-input/flags/FlagSB.tsx +20 -0
  2141. package/src/phone-input/flags/FlagSC.tsx +20 -0
  2142. package/src/phone-input/flags/FlagSD.tsx +20 -0
  2143. package/src/phone-input/flags/FlagSE.tsx +20 -0
  2144. package/src/phone-input/flags/FlagSG.tsx +20 -0
  2145. package/src/phone-input/flags/FlagSH.tsx +20 -0
  2146. package/src/phone-input/flags/FlagSI.tsx +20 -0
  2147. package/src/phone-input/flags/FlagSJ.tsx +20 -0
  2148. package/src/phone-input/flags/FlagSK.tsx +20 -0
  2149. package/src/phone-input/flags/FlagSL.tsx +20 -0
  2150. package/src/phone-input/flags/FlagSM.tsx +20 -0
  2151. package/src/phone-input/flags/FlagSN.tsx +20 -0
  2152. package/src/phone-input/flags/FlagSO.tsx +20 -0
  2153. package/src/phone-input/flags/FlagSR.tsx +20 -0
  2154. package/src/phone-input/flags/FlagSS.tsx +20 -0
  2155. package/src/phone-input/flags/FlagST.tsx +20 -0
  2156. package/src/phone-input/flags/FlagSV.tsx +20 -0
  2157. package/src/phone-input/flags/FlagSX.tsx +20 -0
  2158. package/src/phone-input/flags/FlagSY.tsx +20 -0
  2159. package/src/phone-input/flags/FlagSZ.tsx +20 -0
  2160. package/src/phone-input/flags/FlagTC.tsx +20 -0
  2161. package/src/phone-input/flags/FlagTD.tsx +20 -0
  2162. package/src/phone-input/flags/FlagTF.tsx +20 -0
  2163. package/src/phone-input/flags/FlagTG.tsx +20 -0
  2164. package/src/phone-input/flags/FlagTH.tsx +20 -0
  2165. package/src/phone-input/flags/FlagTJ.tsx +20 -0
  2166. package/src/phone-input/flags/FlagTK.tsx +20 -0
  2167. package/src/phone-input/flags/FlagTL.tsx +20 -0
  2168. package/src/phone-input/flags/FlagTM.tsx +20 -0
  2169. package/src/phone-input/flags/FlagTN.tsx +20 -0
  2170. package/src/phone-input/flags/FlagTO.tsx +20 -0
  2171. package/src/phone-input/flags/FlagTR.tsx +20 -0
  2172. package/src/phone-input/flags/FlagTT.tsx +20 -0
  2173. package/src/phone-input/flags/FlagTV.tsx +20 -0
  2174. package/src/phone-input/flags/FlagTW.tsx +20 -0
  2175. package/src/phone-input/flags/FlagTZ.tsx +20 -0
  2176. package/src/phone-input/flags/FlagUA.tsx +20 -0
  2177. package/src/phone-input/flags/FlagUG.tsx +20 -0
  2178. package/src/phone-input/flags/FlagUM.tsx +20 -0
  2179. package/src/phone-input/flags/FlagUS.tsx +20 -0
  2180. package/src/phone-input/flags/FlagUY.tsx +20 -0
  2181. package/src/phone-input/flags/FlagUZ.tsx +20 -0
  2182. package/src/phone-input/flags/FlagVA.tsx +20 -0
  2183. package/src/phone-input/flags/FlagVC.tsx +20 -0
  2184. package/src/phone-input/flags/FlagVE.tsx +20 -0
  2185. package/src/phone-input/flags/FlagVG.tsx +20 -0
  2186. package/src/phone-input/flags/FlagVI.tsx +20 -0
  2187. package/src/phone-input/flags/FlagVN.tsx +20 -0
  2188. package/src/phone-input/flags/FlagVU.tsx +20 -0
  2189. package/src/phone-input/flags/FlagWF.tsx +20 -0
  2190. package/src/phone-input/flags/FlagWS.tsx +20 -0
  2191. package/src/phone-input/flags/FlagXK.tsx +20 -0
  2192. package/src/phone-input/flags/FlagYE.tsx +20 -0
  2193. package/src/phone-input/flags/FlagYT.tsx +20 -0
  2194. package/src/phone-input/flags/FlagZA.tsx +20 -0
  2195. package/src/phone-input/flags/FlagZM.tsx +20 -0
  2196. package/src/phone-input/flags/FlagZW.tsx +20 -0
  2197. package/src/phone-input/flags/index.ts +250 -0
  2198. package/src/phone-input/index.ts +15 -0
  2199. package/src/phone-input/phone-input-lite.tsx +116 -0
  2200. package/src/phone-input/phone-input-next.tsx +120 -0
  2201. package/src/phone-input/phone-input.tsx +17 -0
  2202. package/src/phone-input/stateful-phone-input-container.ts +83 -0
  2203. package/src/phone-input/stateful-phone-input-next.tsx +21 -0
  2204. package/src/phone-input/stateful-phone-input.tsx +21 -0
  2205. package/src/phone-input/styled-components.tsx +164 -0
  2206. package/src/phone-input/types.ts +160 -0
  2207. package/src/phone-input/utils.ts +26 -0
  2208. package/src/pin-code/__tests__/pin-code-mask.scenario.tsx +20 -0
  2209. package/src/pin-code/__tests__/pin-code-overrides.scenario.tsx +47 -0
  2210. package/src/pin-code/__tests__/pin-code-sizes.scenario.tsx +21 -0
  2211. package/src/pin-code/__tests__/pin-code-states.scenario.tsx +22 -0
  2212. package/src/pin-code/__tests__/pin-code.e2e.ts +116 -0
  2213. package/src/pin-code/__tests__/pin-code.scenario.tsx +12 -0
  2214. package/src/pin-code/__tests__/pin-code.stories.tsx +18 -0
  2215. package/src/pin-code/default-props.ts +34 -0
  2216. package/src/pin-code/index.ts +16 -0
  2217. package/src/pin-code/pin-code.tsx +137 -0
  2218. package/src/pin-code/stateful-pin-code-container.ts +61 -0
  2219. package/src/pin-code/stateful-pin-code.tsx +21 -0
  2220. package/src/pin-code/styled-components.ts +43 -0
  2221. package/src/pin-code/types.ts +88 -0
  2222. package/src/popover/__tests__/popover-autofocus.e2e.ts +21 -0
  2223. package/src/popover/__tests__/popover-autofocus.scenario.tsx +27 -0
  2224. package/src/popover/__tests__/popover-click.scenario.tsx +18 -0
  2225. package/src/popover/__tests__/popover-dynamic-triggertype.e2e.ts +36 -0
  2226. package/src/popover/__tests__/popover-dynamic-triggertype.scenario.tsx +40 -0
  2227. package/src/popover/__tests__/popover-focus-loop.e2e.ts +27 -0
  2228. package/src/popover/__tests__/popover-focus-loop.scenario.tsx +36 -0
  2229. package/src/popover/__tests__/popover-hover.scenario.tsx +25 -0
  2230. package/src/popover/__tests__/popover-large-margin.scenario.tsx +43 -0
  2231. package/src/popover/__tests__/popover-position.scenario.tsx +69 -0
  2232. package/src/popover/__tests__/popover-preventScroll-on-focus.e2e.ts +81 -0
  2233. package/src/popover/__tests__/popover-preventScroll-on-focus.scenario.tsx +110 -0
  2234. package/src/popover/__tests__/popover-progress-bar.scenario.tsx +23 -0
  2235. package/src/popover/__tests__/popover-render-all.scenario.tsx +22 -0
  2236. package/src/popover/__tests__/popover-reposition-with-anchor-update.scenario.tsx +32 -0
  2237. package/src/popover/__tests__/popover-reposition.scenario.tsx +51 -0
  2238. package/src/popover/__tests__/popover-scroll.e2e.ts +59 -0
  2239. package/src/popover/__tests__/popover-scroll.scenario.tsx +39 -0
  2240. package/src/popover/__tests__/popover-select.scenario.tsx +44 -0
  2241. package/src/popover/__tests__/popover-unreliable.e2e.ts +69 -0
  2242. package/src/popover/__tests__/popover.e2e.ts +98 -0
  2243. package/src/popover/__tests__/popover.scenario.tsx +18 -0
  2244. package/src/popover/__tests__/popover.stories.tsx +38 -0
  2245. package/src/popover/__tests__/popover.test.tsx +281 -0
  2246. package/src/popover/__tests__/stateful-container.test.tsx +225 -0
  2247. package/src/popover/__tests__/utils.test.ts +150 -0
  2248. package/src/popover/constants.ts +59 -0
  2249. package/src/popover/default-props.ts +27 -0
  2250. package/src/popover/index.ts +28 -0
  2251. package/src/popover/popover.tsx +515 -0
  2252. package/src/popover/stateful-container.ts +223 -0
  2253. package/src/popover/stateful-popover.tsx +38 -0
  2254. package/src/popover/styled-components.ts +140 -0
  2255. package/src/popover/types.ts +201 -0
  2256. package/src/popover/utils.ts +132 -0
  2257. package/src/progress-bar/__tests__/progress-bar.stories.tsx +20 -0
  2258. package/src/progress-bar/__tests__/progressbar-negative.scenario.tsx +22 -0
  2259. package/src/progress-bar/__tests__/progressbar-rounded-animated.scenario.tsx +37 -0
  2260. package/src/progress-bar/__tests__/progressbar-rounded-overrides.scenario.tsx +53 -0
  2261. package/src/progress-bar/__tests__/progressbar-rounded.scenario.tsx +20 -0
  2262. package/src/progress-bar/__tests__/progressbar-rounded.test.tsx +29 -0
  2263. package/src/progress-bar/__tests__/progressbar.e2e.ts +19 -0
  2264. package/src/progress-bar/__tests__/progressbar.scenario.tsx +36 -0
  2265. package/src/progress-bar/__tests__/progressbar.test.tsx +40 -0
  2266. package/src/progress-bar/constants.ts +11 -0
  2267. package/src/progress-bar/index.ts +25 -0
  2268. package/src/progress-bar/progressbar-rounded.tsx +132 -0
  2269. package/src/progress-bar/progressbar.tsx +162 -0
  2270. package/src/progress-bar/styled-components.tsx +384 -0
  2271. package/src/progress-bar/types.ts +80 -0
  2272. package/src/progress-steps/__tests__/numbered-steps-icon-overrides.scenario.tsx +38 -0
  2273. package/src/progress-steps/__tests__/numbered-steps.scenario.tsx +42 -0
  2274. package/src/progress-steps/__tests__/progress-step-overrides.scenario.tsx +31 -0
  2275. package/src/progress-steps/__tests__/progress-steps-isActive.scenario.tsx +26 -0
  2276. package/src/progress-steps/__tests__/progress-steps-number.scenario.tsx +50 -0
  2277. package/src/progress-steps/__tests__/progress-steps-rtl.scenario.tsx +20 -0
  2278. package/src/progress-steps/__tests__/progress-steps.e2e.ts +50 -0
  2279. package/src/progress-steps/__tests__/progress-steps.scenario.tsx +50 -0
  2280. package/src/progress-steps/__tests__/progress-steps.stories.tsx +20 -0
  2281. package/src/progress-steps/__tests__/progress-steps.test.tsx +50 -0
  2282. package/src/progress-steps/constants.ts +10 -0
  2283. package/src/progress-steps/index.ts +13 -0
  2284. package/src/progress-steps/numbered-step.tsx +86 -0
  2285. package/src/progress-steps/progress-steps.tsx +72 -0
  2286. package/src/progress-steps/step.tsx +90 -0
  2287. package/src/progress-steps/styled-components.ts +391 -0
  2288. package/src/progress-steps/types.ts +105 -0
  2289. package/src/radio/__tests__/radio-rtl.scenario.tsx +19 -0
  2290. package/src/radio/__tests__/radio-select.scenario.tsx +33 -0
  2291. package/src/radio/__tests__/radio-states.scenario.tsx +28 -0
  2292. package/src/radio/__tests__/radio.e2e.ts +32 -0
  2293. package/src/radio/__tests__/radio.scenario.tsx +28 -0
  2294. package/src/radio/__tests__/radio.stories.tsx +14 -0
  2295. package/src/radio/__tests__/radio.test.tsx +84 -0
  2296. package/src/radio/__tests__/radiogroup.test.tsx +141 -0
  2297. package/src/radio/__tests__/stateful-radiogroup-container.test.tsx +27 -0
  2298. package/src/radio/__tests__/stateful-radiogroup.test.tsx +32 -0
  2299. package/src/radio/constants.ts +18 -0
  2300. package/src/radio/index.ts +22 -0
  2301. package/src/radio/radio.tsx +177 -0
  2302. package/src/radio/radiogroup.tsx +105 -0
  2303. package/src/radio/stateful-radiogroup-container.ts +67 -0
  2304. package/src/radio/stateful-radiogroup.tsx +26 -0
  2305. package/src/radio/styled-components.ts +258 -0
  2306. package/src/radio/types.ts +196 -0
  2307. package/src/rating/__tests__/emoticon-rating.test.tsx +66 -0
  2308. package/src/rating/__tests__/rating-emoticon.scenario.tsx +14 -0
  2309. package/src/rating/__tests__/rating-size.scenario.tsx +29 -0
  2310. package/src/rating/__tests__/rating-star.scenario.tsx +26 -0
  2311. package/src/rating/__tests__/rating.e2e.ts +46 -0
  2312. package/src/rating/__tests__/rating.stories.tsx +14 -0
  2313. package/src/rating/__tests__/star-rating.test.tsx +69 -0
  2314. package/src/rating/emoticon-rating.tsx +145 -0
  2315. package/src/rating/index.ts +11 -0
  2316. package/src/rating/star-rating.tsx +146 -0
  2317. package/src/rating/styled-components.ts +154 -0
  2318. package/src/rating/svg-icons.ts +72 -0
  2319. package/src/rating/types.ts +55 -0
  2320. package/src/rating/utils.ts +11 -0
  2321. package/src/segmented-control/__tests__/segmented-control.test.tsx +47 -0
  2322. package/src/segmented-control/constants.ts +15 -0
  2323. package/src/segmented-control/index.ts +27 -0
  2324. package/src/segmented-control/segment.ts +13 -0
  2325. package/src/segmented-control/segmented-control.tsx +445 -0
  2326. package/src/segmented-control/stateful-segmented-control.tsx +61 -0
  2327. package/src/segmented-control/styled-components.ts +252 -0
  2328. package/src/segmented-control/types.ts +82 -0
  2329. package/src/segmented-control/utils.ts +18 -0
  2330. package/src/select/__tests__/autosize-input.test.tsx +22 -0
  2331. package/src/select/__tests__/dropdown.test.tsx +88 -0
  2332. package/src/select/__tests__/multi-value.test.tsx +45 -0
  2333. package/src/select/__tests__/select-async-options.scenario.tsx +41 -0
  2334. package/src/select/__tests__/select-backspace-behavior.e2e.ts +39 -0
  2335. package/src/select/__tests__/select-backspace-behavior.scenario.tsx +60 -0
  2336. package/src/select/__tests__/select-calls-provided-blur.e2e.ts +47 -0
  2337. package/src/select/__tests__/select-calls-provided-blur.scenario.tsx +29 -0
  2338. package/src/select/__tests__/select-click-maintains-focus.e2e.ts +38 -0
  2339. package/src/select/__tests__/select-click-maintains-focus.scenario.tsx +26 -0
  2340. package/src/select/__tests__/select-click-triggers-blur.scenario.tsx +47 -0
  2341. package/src/select/__tests__/select-controlref-set-dropdown-open.scenario.tsx +57 -0
  2342. package/src/select/__tests__/select-controlref-set-input-value.scenario.tsx +59 -0
  2343. package/src/select/__tests__/select-controlref.e2e.ts +98 -0
  2344. package/src/select/__tests__/select-controlref.test.tsx +156 -0
  2345. package/src/select/__tests__/select-creatable-multi.scenario.tsx +22 -0
  2346. package/src/select/__tests__/select-creatable.scenario.tsx +29 -0
  2347. package/src/select/__tests__/select-disable-href-anchor.scenario.tsx +25 -0
  2348. package/src/select/__tests__/select-form-control-label-click.e2e.ts +184 -0
  2349. package/src/select/__tests__/select-highlight.scenario.tsx +29 -0
  2350. package/src/select/__tests__/select-icon-overrides.scenario.tsx +87 -0
  2351. package/src/select/__tests__/select-in-flex-container.scenario.tsx +59 -0
  2352. package/src/select/__tests__/select-in-modal.scenario.tsx +63 -0
  2353. package/src/select/__tests__/select-input-ref.e2e.ts +22 -0
  2354. package/src/select/__tests__/select-input-ref.scenario.tsx +42 -0
  2355. package/src/select/__tests__/select-maintains-input-value.e2e.ts +65 -0
  2356. package/src/select/__tests__/select-maintains-input-value.scenario.tsx +98 -0
  2357. package/src/select/__tests__/select-many-options.scenario.tsx +92 -0
  2358. package/src/select/__tests__/select-open.scenario.tsx +35 -0
  2359. package/src/select/__tests__/select-option-group.scenario.tsx +36 -0
  2360. package/src/select/__tests__/select-overridden-icon-container.e2e.ts +26 -0
  2361. package/src/select/__tests__/select-overridden-icon-container.scenario.tsx +63 -0
  2362. package/src/select/__tests__/select-overridden-menu.scenario.tsx +42 -0
  2363. package/src/select/__tests__/select-rtl.scenario.tsx +19 -0
  2364. package/src/select/__tests__/select-search-multi.scenario.tsx +32 -0
  2365. package/src/select/__tests__/select-search-single-fontsize.scenario.tsx +44 -0
  2366. package/src/select/__tests__/select-search-single.scenario.tsx +32 -0
  2367. package/src/select/__tests__/select-searchable-form-control.scenario.tsx +103 -0
  2368. package/src/select/__tests__/select-sizes-selected-value.scenario.tsx +37 -0
  2369. package/src/select/__tests__/select-sizes.scenario.tsx +80 -0
  2370. package/src/select/__tests__/select-states.scenario.tsx +98 -0
  2371. package/src/select/__tests__/select-unmount-blur.e2e.ts +31 -0
  2372. package/src/select/__tests__/select-unmount-blur.scenario.tsx +46 -0
  2373. package/src/select/__tests__/select.e2e.ts +289 -0
  2374. package/src/select/__tests__/select.scenario.tsx +99 -0
  2375. package/src/select/__tests__/select.stories.tsx +68 -0
  2376. package/src/select/__tests__/select.test.tsx +129 -0
  2377. package/src/select/__tests__/stateful-select-container.test.tsx +57 -0
  2378. package/src/select/__tests__/stateful-select.test.tsx +63 -0
  2379. package/src/select/__tests__/value.test.tsx +27 -0
  2380. package/src/select/autosize-input.tsx +87 -0
  2381. package/src/select/constants.ts +18 -0
  2382. package/src/select/default-props.ts +65 -0
  2383. package/src/select/dropdown.tsx +203 -0
  2384. package/src/select/index.ts +44 -0
  2385. package/src/select/locale.ts +21 -0
  2386. package/src/select/multi-select.tsx +16 -0
  2387. package/src/select/multi-value.tsx +37 -0
  2388. package/src/select/select-component.tsx +1118 -0
  2389. package/src/select/select.tsx +16 -0
  2390. package/src/select/single-select.tsx +16 -0
  2391. package/src/select/stateful-select-container.ts +53 -0
  2392. package/src/select/stateful-select.tsx +21 -0
  2393. package/src/select/styled-components.ts +515 -0
  2394. package/src/select/types.ts +315 -0
  2395. package/src/select/utils/default-filter-options.ts +90 -0
  2396. package/src/select/utils/index.ts +47 -0
  2397. package/src/select/value.tsx +20 -0
  2398. package/src/sheet/action-button.tsx +47 -0
  2399. package/src/sheet/index.ts +9 -0
  2400. package/src/sheet/sheet.tsx +163 -0
  2401. package/src/sheet/styled-components.ts +182 -0
  2402. package/src/sheet/types.ts +46 -0
  2403. package/src/side-navigation/README.md +38 -0
  2404. package/src/side-navigation/__tests__/nav-long.scenario.tsx +80 -0
  2405. package/src/side-navigation/__tests__/nav-rtl.scenario.tsx +19 -0
  2406. package/src/side-navigation/__tests__/nav.e2e.ts +28 -0
  2407. package/src/side-navigation/__tests__/nav.scenario.tsx +42 -0
  2408. package/src/side-navigation/__tests__/nav.test.tsx +66 -0
  2409. package/src/side-navigation/__tests__/side-navigation.stories.tsx +12 -0
  2410. package/src/side-navigation/__tests__/stateful-container.test.tsx +27 -0
  2411. package/src/side-navigation/__tests__/stateful-nav.test.tsx +49 -0
  2412. package/src/side-navigation/constants.ts +9 -0
  2413. package/src/side-navigation/index.ts +16 -0
  2414. package/src/side-navigation/nav-item.tsx +78 -0
  2415. package/src/side-navigation/nav.tsx +128 -0
  2416. package/src/side-navigation/side-navigation-next.tsx +346 -0
  2417. package/src/side-navigation/stateful-container.ts +58 -0
  2418. package/src/side-navigation/stateful-nav.tsx +18 -0
  2419. package/src/side-navigation/styled-components.tsx +135 -0
  2420. package/src/side-navigation/types.ts +103 -0
  2421. package/src/skeleton/__tests__/adorable.png +0 -0
  2422. package/src/skeleton/__tests__/skeleton-animation.scenario.tsx +59 -0
  2423. package/src/skeleton/__tests__/skeleton-loading.scenario.tsx +101 -0
  2424. package/src/skeleton/__tests__/skeleton.e2e.ts +37 -0
  2425. package/src/skeleton/__tests__/skeleton.scenario.tsx +57 -0
  2426. package/src/skeleton/__tests__/skeleton.stories.tsx +14 -0
  2427. package/src/skeleton/index.ts +11 -0
  2428. package/src/skeleton/skeleton.tsx +60 -0
  2429. package/src/skeleton/styled-components.ts +92 -0
  2430. package/src/skeleton/types.ts +26 -0
  2431. package/src/slider/__tests__/slider-always-show-label.scenario.tsx +72 -0
  2432. package/src/slider/__tests__/slider-custom-label.scenario.tsx +44 -0
  2433. package/src/slider/__tests__/slider-disabled.scenario.tsx +24 -0
  2434. package/src/slider/__tests__/slider-marks.scenario.tsx +24 -0
  2435. package/src/slider/__tests__/slider-range.scenario.tsx +24 -0
  2436. package/src/slider/__tests__/slider-rtl.scenario.tsx +19 -0
  2437. package/src/slider/__tests__/slider-select-dropdown.scenario.tsx +36 -0
  2438. package/src/slider/__tests__/slider-step.scenario.tsx +24 -0
  2439. package/src/slider/__tests__/slider.e2e.ts +24 -0
  2440. package/src/slider/__tests__/slider.scenario.tsx +22 -0
  2441. package/src/slider/__tests__/slider.stories.tsx +26 -0
  2442. package/src/slider/__tests__/stateful-slider-container.test.tsx +40 -0
  2443. package/src/slider/constants.ts +11 -0
  2444. package/src/slider/index.ts +27 -0
  2445. package/src/slider/slider.tsx +206 -0
  2446. package/src/slider/stateful-slider-container.ts +68 -0
  2447. package/src/slider/stateful-slider.tsx +18 -0
  2448. package/src/slider/styled-components.ts +180 -0
  2449. package/src/slider/types.ts +88 -0
  2450. package/src/snackbar/__tests__/snackbar-async.scenario.tsx +46 -0
  2451. package/src/snackbar/__tests__/snackbar-element-overrides.scenario.tsx +61 -0
  2452. package/src/snackbar/__tests__/snackbar-element-rtl.scenario.tsx +20 -0
  2453. package/src/snackbar/__tests__/snackbar-element.scenario.tsx +86 -0
  2454. package/src/snackbar/__tests__/snackbar-element.test.tsx +19 -0
  2455. package/src/snackbar/__tests__/snackbar-placement.scenario.tsx +70 -0
  2456. package/src/snackbar/__tests__/snackbar-provider-overrides.scenario.tsx +70 -0
  2457. package/src/snackbar/__tests__/snackbar-provider.scenario.tsx +50 -0
  2458. package/src/snackbar/__tests__/snackbar.e2e.ts +107 -0
  2459. package/src/snackbar/__tests__/snackbar.stories.tsx +20 -0
  2460. package/src/snackbar/__tests__/use-snackbar.test.tsx +40 -0
  2461. package/src/snackbar/constants.ts +22 -0
  2462. package/src/snackbar/index.ts +40 -0
  2463. package/src/snackbar/snackbar-context.tsx +240 -0
  2464. package/src/snackbar/snackbar-element.tsx +201 -0
  2465. package/src/snackbar/styled-components.ts +185 -0
  2466. package/src/snackbar/types.ts +65 -0
  2467. package/src/spinner/__tests__/spinner.scenario.tsx +42 -0
  2468. package/src/spinner/__tests__/spinner.stories.tsx +10 -0
  2469. package/src/spinner/constants.ts +11 -0
  2470. package/src/spinner/index.tsx +22 -0
  2471. package/src/spinner/styled-components.ts +77 -0
  2472. package/src/spinner/types.ts +19 -0
  2473. package/src/stepper/__tests__/stepper.e2e.ts +18 -0
  2474. package/src/stepper/__tests__/stepper.scenario.tsx +20 -0
  2475. package/src/stepper/__tests__/stepper.stories.tsx +10 -0
  2476. package/src/stepper/index.ts +8 -0
  2477. package/src/stepper/stepper.tsx +113 -0
  2478. package/src/stepper/styled-components.ts +17 -0
  2479. package/src/stepper/types.ts +25 -0
  2480. package/src/styles/__mocks__/as-primary-export-hoc.ts +10 -0
  2481. package/src/styles/__mocks__/styled.tsx +119 -0
  2482. package/src/styles/__tests__/styled.test.tsx +396 -0
  2483. package/src/styles/__tests__/util.test.ts +31 -0
  2484. package/src/styles/as-primary-export-hoc.tsx +25 -0
  2485. package/src/styles/index.ts +21 -0
  2486. package/src/styles/styled.tsx +128 -0
  2487. package/src/styles/theme-provider.tsx +20 -0
  2488. package/src/styles/types.ts +117 -0
  2489. package/src/styles/util.ts +46 -0
  2490. package/src/switch/__tests__/stateful-switch.browser.test.tsx +84 -0
  2491. package/src/switch/__tests__/switch-auto-focus.scenario.tsx +24 -0
  2492. package/src/switch/__tests__/switch-disabled.scenario.tsx +46 -0
  2493. package/src/switch/__tests__/switch-placement.scenario.tsx +47 -0
  2494. package/src/switch/__tests__/switch-sizes.scenario.tsx +37 -0
  2495. package/src/switch/__tests__/switch-states.scenario.tsx +33 -0
  2496. package/src/switch/__tests__/switch-unlabeled.scenario.tsx +25 -0
  2497. package/src/switch/__tests__/switch.browser.test.tsx +73 -0
  2498. package/src/switch/__tests__/switch.scenario.tsx +32 -0
  2499. package/src/switch/__tests__/switch.stories.tsx +29 -0
  2500. package/src/switch/constants.ts +20 -0
  2501. package/src/switch/index.ts +22 -0
  2502. package/src/switch/stateful-switch-container.ts +131 -0
  2503. package/src/switch/stateful-switch.tsx +24 -0
  2504. package/src/switch/styled-components.ts +247 -0
  2505. package/src/switch/switch.tsx +257 -0
  2506. package/src/switch/types.ts +166 -0
  2507. package/src/system-banner/__tests__/system-banner.test.tsx +51 -0
  2508. package/src/system-banner/index.ts +9 -0
  2509. package/src/system-banner/styled-components.ts +88 -0
  2510. package/src/system-banner/system-banner.tsx +80 -0
  2511. package/src/system-banner/types.ts +24 -0
  2512. package/src/table/__tests__/filter.test.tsx +105 -0
  2513. package/src/table/__tests__/sortable-head-cell.test.tsx +58 -0
  2514. package/src/table/__tests__/table-borderless.scenario.tsx +65 -0
  2515. package/src/table/__tests__/table-cells.scenario.tsx +365 -0
  2516. package/src/table/__tests__/table-few-rows.scenario.tsx +20 -0
  2517. package/src/table/__tests__/table-filter.scenario.tsx +117 -0
  2518. package/src/table/__tests__/table-pagination.scenario.tsx +107 -0
  2519. package/src/table/__tests__/table-rtl.scenario.tsx +23 -0
  2520. package/src/table/__tests__/table-scroll.scenario.tsx +28 -0
  2521. package/src/table/__tests__/table-sortable-fill-click.scenario.tsx +131 -0
  2522. package/src/table/__tests__/table-sortable.scenario.tsx +127 -0
  2523. package/src/table/__tests__/table.e2e.ts +18 -0
  2524. package/src/table/__tests__/table.stories.tsx +24 -0
  2525. package/src/table/__tests__/table.test.tsx +56 -0
  2526. package/src/table/constants.ts +10 -0
  2527. package/src/table/filter.tsx +89 -0
  2528. package/src/table/index.ts +36 -0
  2529. package/src/table/sortable-head-cell.tsx +77 -0
  2530. package/src/table/styled-components.tsx +286 -0
  2531. package/src/table/table.tsx +70 -0
  2532. package/src/table/types.ts +76 -0
  2533. package/src/table-grid/__tests__/shared.ts +135 -0
  2534. package/src/table-grid/__tests__/table-grid-jobs.scenario.tsx +285 -0
  2535. package/src/table-grid/__tests__/table-grid-records.scenario.tsx +113 -0
  2536. package/src/table-grid/__tests__/table-grid-sortable.scenario.tsx +119 -0
  2537. package/src/table-grid/__tests__/table-grid.scenario.tsx +59 -0
  2538. package/src/table-grid/__tests__/table-grid.stories.tsx +16 -0
  2539. package/src/table-grid/index.ts +10 -0
  2540. package/src/table-grid/sortable-head-cell.ts +11 -0
  2541. package/src/table-grid/styled-components.tsx +85 -0
  2542. package/src/table-semantic/__tests__/table-builder.e2e.ts +18 -0
  2543. package/src/table-semantic/__tests__/table-builder.test.tsx +342 -0
  2544. package/src/table-semantic/__tests__/table-semantic-builder-divider.scenario.tsx +71 -0
  2545. package/src/table-semantic/__tests__/table-semantic-builder-icon-overrides.scenario.tsx +40 -0
  2546. package/src/table-semantic/__tests__/table-semantic-builder-size.scenario.tsx +68 -0
  2547. package/src/table-semantic/__tests__/table-semantic-builder.scenario.tsx +181 -0
  2548. package/src/table-semantic/__tests__/table-semantic-compose.scenario.tsx +52 -0
  2549. package/src/table-semantic/__tests__/table-semantic-divider.scenario.tsx +42 -0
  2550. package/src/table-semantic/__tests__/table-semantic-size.scenario.tsx +37 -0
  2551. package/src/table-semantic/__tests__/table-semantic-spacious-sort.scenario.tsx +29 -0
  2552. package/src/table-semantic/__tests__/table-semantic.scenario.tsx +20 -0
  2553. package/src/table-semantic/__tests__/table-semantic.stories.tsx +26 -0
  2554. package/src/table-semantic/__tests__/table.e2e.ts +18 -0
  2555. package/src/table-semantic/__tests__/table.test.tsx +100 -0
  2556. package/src/table-semantic/constants.ts +18 -0
  2557. package/src/table-semantic/index.ts +29 -0
  2558. package/src/table-semantic/styled-components.ts +284 -0
  2559. package/src/table-semantic/table-builder-column.ts +13 -0
  2560. package/src/table-semantic/table-builder.tsx +311 -0
  2561. package/src/table-semantic/table.tsx +158 -0
  2562. package/src/table-semantic/types.ts +80 -0
  2563. package/src/tabs/__tests__/stateful-tabs.test.tsx +76 -0
  2564. package/src/tabs/__tests__/tab.test.tsx +77 -0
  2565. package/src/tabs/__tests__/tabs-controlled.scenario.tsx +42 -0
  2566. package/src/tabs/__tests__/tabs-one-child.scenario.tsx +17 -0
  2567. package/src/tabs/__tests__/tabs.e2e.ts +42 -0
  2568. package/src/tabs/__tests__/tabs.scenario.tsx +19 -0
  2569. package/src/tabs/__tests__/tabs.stories.tsx +14 -0
  2570. package/src/tabs/constants.ts +14 -0
  2571. package/src/tabs/index.ts +27 -0
  2572. package/src/tabs/stateful-tabs.tsx +50 -0
  2573. package/src/tabs/styled-components.ts +95 -0
  2574. package/src/tabs/tab.tsx +106 -0
  2575. package/src/tabs/tabs.tsx +106 -0
  2576. package/src/tabs/types.ts +88 -0
  2577. package/src/tabs-motion/__tests__/tabs-motion-align.scenario.tsx +64 -0
  2578. package/src/tabs-motion/__tests__/tabs-motion-artwork.scenario.tsx +33 -0
  2579. package/src/tabs-motion/__tests__/tabs-motion-conditional.scenario.tsx +79 -0
  2580. package/src/tabs-motion/__tests__/tabs-motion-disabled.scenario.tsx +29 -0
  2581. package/src/tabs-motion/__tests__/tabs-motion-fixed-vertical.scenario.tsx +42 -0
  2582. package/src/tabs-motion/__tests__/tabs-motion-fixed.scenario.tsx +33 -0
  2583. package/src/tabs-motion/__tests__/tabs-motion-focus.scenario.tsx +25 -0
  2584. package/src/tabs-motion/__tests__/tabs-motion-manual.scenario.tsx +33 -0
  2585. package/src/tabs-motion/__tests__/tabs-motion-overrides.scenario.tsx +47 -0
  2586. package/src/tabs-motion/__tests__/tabs-motion-refs.scenario.tsx +37 -0
  2587. package/src/tabs-motion/__tests__/tabs-motion-renderAll.scenario.tsx +39 -0
  2588. package/src/tabs-motion/__tests__/tabs-motion-rtl-artwork.scenario.tsx +38 -0
  2589. package/src/tabs-motion/__tests__/tabs-motion-rtl-vertical.scenario.tsx +45 -0
  2590. package/src/tabs-motion/__tests__/tabs-motion-rtl.scenario.tsx +34 -0
  2591. package/src/tabs-motion/__tests__/tabs-motion-scroll-safe.scenario.tsx +70 -0
  2592. package/src/tabs-motion/__tests__/tabs-motion-scroll-vertical.scenario.tsx +52 -0
  2593. package/src/tabs-motion/__tests__/tabs-motion-scroll.scenario.tsx +39 -0
  2594. package/src/tabs-motion/__tests__/tabs-motion-stateful.scenario.tsx +28 -0
  2595. package/src/tabs-motion/__tests__/tabs-motion-vertical-pageScroll.scenario.tsx +48 -0
  2596. package/src/tabs-motion/__tests__/tabs-motion-vertical.scenario.tsx +41 -0
  2597. package/src/tabs-motion/__tests__/tabs-motion.e2e.ts +269 -0
  2598. package/src/tabs-motion/__tests__/tabs-motion.scenario.tsx +41 -0
  2599. package/src/tabs-motion/constants.ts +20 -0
  2600. package/src/tabs-motion/index.ts +23 -0
  2601. package/src/tabs-motion/stateful-tabs.tsx +54 -0
  2602. package/src/tabs-motion/styled-components.ts +285 -0
  2603. package/src/tabs-motion/tab.ts +14 -0
  2604. package/src/tabs-motion/tabs.tsx +542 -0
  2605. package/src/tabs-motion/types.ts +81 -0
  2606. package/src/tabs-motion/utils.ts +19 -0
  2607. package/src/tag/__tests__/tag-long-text.scenario.tsx +19 -0
  2608. package/src/tag/__tests__/tag-overrides.scenario.tsx +58 -0
  2609. package/src/tag/__tests__/tag-rtl.scenario.tsx +19 -0
  2610. package/src/tag/__tests__/tag-size.scenario.tsx +30 -0
  2611. package/src/tag/__tests__/tag-start-enhancer.scenario.tsx +221 -0
  2612. package/src/tag/__tests__/tag.e2e.ts +23 -0
  2613. package/src/tag/__tests__/tag.scenario.tsx +162 -0
  2614. package/src/tag/__tests__/tag.stories.tsx +18 -0
  2615. package/src/tag/__tests__/tag.test.tsx +66 -0
  2616. package/src/tag/__tests__/utils.test.tsx +33 -0
  2617. package/src/tag/constants.ts +48 -0
  2618. package/src/tag/deprecated-styles.ts +180 -0
  2619. package/src/tag/index.ts +15 -0
  2620. package/src/tag/styled-components.ts +520 -0
  2621. package/src/tag/tag.tsx +183 -0
  2622. package/src/tag/types.ts +75 -0
  2623. package/src/tag/utils.ts +36 -0
  2624. package/src/tag-group/index.ts +16 -0
  2625. package/src/tag-group/styled-components.ts +48 -0
  2626. package/src/tag-group/tag-group.tsx +66 -0
  2627. package/src/tag-group/types.ts +19 -0
  2628. package/src/template-component/__tests__/component.test.tsx +20 -0
  2629. package/src/template-component/__tests__/stateful-component.test.tsx +17 -0
  2630. package/src/template-component/__tests__/stateful-container.test.tsx +20 -0
  2631. package/src/template-component/__tests__/template-component.scenario.tsx +13 -0
  2632. package/src/template-component/__tests__/template-component.stories.tsx +10 -0
  2633. package/src/template-component/component.tsx +47 -0
  2634. package/src/template-component/constants.ts +9 -0
  2635. package/src/template-component/index.ts +15 -0
  2636. package/src/template-component/stateful-component.tsx +23 -0
  2637. package/src/template-component/stateful-container.ts +56 -0
  2638. package/src/template-component/styled-components.ts +17 -0
  2639. package/src/template-component/types.ts +56 -0
  2640. package/src/test/create-mock-theme.ts +57 -0
  2641. package/src/test/integration.ts +139 -0
  2642. package/src/test/test-framework-setup.ts +9 -0
  2643. package/src/test/test-setup.ts +39 -0
  2644. package/src/test/test-utils.tsx +46 -0
  2645. package/src/textarea/__tests__/stateful-textarea.test.tsx +25 -0
  2646. package/src/textarea/__tests__/textarea-resize.scenario.tsx +19 -0
  2647. package/src/textarea/__tests__/textarea.e2e.ts +56 -0
  2648. package/src/textarea/__tests__/textarea.scenario.tsx +24 -0
  2649. package/src/textarea/__tests__/textarea.stories.tsx +12 -0
  2650. package/src/textarea/__tests__/textarea.test.tsx +51 -0
  2651. package/src/textarea/constants.ts +7 -0
  2652. package/src/textarea/index.ts +13 -0
  2653. package/src/textarea/stateful-container.ts +9 -0
  2654. package/src/textarea/stateful-textarea.tsx +19 -0
  2655. package/src/textarea/styled-components.ts +53 -0
  2656. package/src/textarea/textarea.tsx +93 -0
  2657. package/src/textarea/types.ts +62 -0
  2658. package/src/theme.ts +43 -0
  2659. package/src/themes/dark-theme/__tests__/create-dark-theme.test.ts +12 -0
  2660. package/src/themes/dark-theme/borders.ts +33 -0
  2661. package/src/themes/dark-theme/color-component-tokens.ts +482 -0
  2662. package/src/themes/dark-theme/color-foundation-tokens.ts +80 -0
  2663. package/src/themes/dark-theme/color-semantic-tokens.ts +225 -0
  2664. package/src/themes/dark-theme/create-dark-theme.ts +38 -0
  2665. package/src/themes/dark-theme/dark-theme.ts +44 -0
  2666. package/src/themes/dark-theme/primitives.ts +18 -0
  2667. package/src/themes/index.ts +35 -0
  2668. package/src/themes/light-theme/__tests__/create-light-theme.test.ts +12 -0
  2669. package/src/themes/light-theme/color-component-tokens.ts +482 -0
  2670. package/src/themes/light-theme/color-foundation-tokens.ts +80 -0
  2671. package/src/themes/light-theme/color-semantic-tokens.ts +235 -0
  2672. package/src/themes/light-theme/create-light-theme.ts +38 -0
  2673. package/src/themes/light-theme/light-theme.ts +44 -0
  2674. package/src/themes/light-theme/primitives.ts +18 -0
  2675. package/src/themes/move-theme/dark-theme-with-move.ts +13 -0
  2676. package/src/themes/move-theme/light-theme-with-move.ts +13 -0
  2677. package/src/themes/move-theme/typography.ts +56 -0
  2678. package/src/themes/shared/animation.ts +50 -0
  2679. package/src/themes/shared/borders.ts +65 -0
  2680. package/src/themes/shared/breakpoints.ts +15 -0
  2681. package/src/themes/shared/grid.ts +18 -0
  2682. package/src/themes/shared/lighting.ts +27 -0
  2683. package/src/themes/shared/media-query.ts +17 -0
  2684. package/src/themes/shared/sizing.ts +34 -0
  2685. package/src/themes/shared/typography.ts +184 -0
  2686. package/src/themes/types.ts +862 -0
  2687. package/src/themes/utils.ts +28 -0
  2688. package/src/tile/__tests__/tile-group.test.tsx +75 -0
  2689. package/src/tile/__tests__/tile.test.tsx +98 -0
  2690. package/src/tile/constants.ts +28 -0
  2691. package/src/tile/index.ts +10 -0
  2692. package/src/tile/styled-components.ts +212 -0
  2693. package/src/tile/tile-group.tsx +166 -0
  2694. package/src/tile/tile.tsx +122 -0
  2695. package/src/tile/types.ts +57 -0
  2696. package/src/tile/utils.ts +22 -0
  2697. package/src/timepicker/__tests__/time-picker-min-max-diff-day.e2e.ts +95 -0
  2698. package/src/timepicker/__tests__/time-picker-min-max-diff-day.scenario.tsx +66 -0
  2699. package/src/timepicker/__tests__/time-picker.e2e.ts +316 -0
  2700. package/src/timepicker/__tests__/time-picker.scenario.tsx +167 -0
  2701. package/src/timepicker/__tests__/timepicker.stories.tsx +12 -0
  2702. package/src/timepicker/__tests__/timepicker.test.tsx +49 -0
  2703. package/src/timepicker/index.ts +9 -0
  2704. package/src/timepicker/timepicker.tsx +346 -0
  2705. package/src/timepicker/types.ts +62 -0
  2706. package/src/timezonepicker/__tests__/timezone-picker--abbreviations.scenario.tsx +61 -0
  2707. package/src/timezonepicker/__tests__/timezone-picker-additional-timezones.scenario.tsx +33 -0
  2708. package/src/timezonepicker/__tests__/timezone-picker.e2e.ts +98 -0
  2709. package/src/timezonepicker/__tests__/timezone-picker.scenario.tsx +60 -0
  2710. package/src/timezonepicker/__tests__/timezone-picker.test.tsx +64 -0
  2711. package/src/timezonepicker/__tests__/timezonepicker.stories.tsx +16 -0
  2712. package/src/timezonepicker/index.ts +13 -0
  2713. package/src/timezonepicker/timezone-picker.tsx +151 -0
  2714. package/src/timezonepicker/types.ts +62 -0
  2715. package/src/timezonepicker/tzdata.ts +433 -0
  2716. package/src/timezonepicker/update-tzdata.js +73 -0
  2717. package/src/toast/__tests__/toast-application-state.e2e.ts +27 -0
  2718. package/src/toast/__tests__/toast-application-state.scenario.tsx +31 -0
  2719. package/src/toast/__tests__/toast.e2e.ts +102 -0
  2720. package/src/toast/__tests__/toast.scenario.tsx +35 -0
  2721. package/src/toast/__tests__/toast.stories.tsx +16 -0
  2722. package/src/toast/__tests__/toast.test.tsx +117 -0
  2723. package/src/toast/__tests__/toaster-focus.scenario.tsx +39 -0
  2724. package/src/toast/__tests__/toaster.scenario.tsx +42 -0
  2725. package/src/toast/__tests__/toaster.test.tsx +134 -0
  2726. package/src/toast/constants.ts +34 -0
  2727. package/src/toast/index.ts +23 -0
  2728. package/src/toast/locale.ts +15 -0
  2729. package/src/toast/styled-components.ts +205 -0
  2730. package/src/toast/toast.tsx +279 -0
  2731. package/src/toast/toaster.tsx +296 -0
  2732. package/src/toast/types.ts +116 -0
  2733. package/src/tokens/color-primitive-tokens.ts +348 -0
  2734. package/src/tokens/index.ts +20 -0
  2735. package/src/tokens/types.ts +325 -0
  2736. package/src/tooltip/__tests__/stateful-tooltip.test.tsx +47 -0
  2737. package/src/tooltip/__tests__/tooltip-arrow-margin.scenario.tsx +22 -0
  2738. package/src/tooltip/__tests__/tooltip-complex.scenario.tsx +49 -0
  2739. package/src/tooltip/__tests__/tooltip-interactive-element.scenario.tsx +23 -0
  2740. package/src/tooltip/__tests__/tooltip.e2e.ts +26 -0
  2741. package/src/tooltip/__tests__/tooltip.scenario.tsx +17 -0
  2742. package/src/tooltip/__tests__/tooltip.stories.tsx +16 -0
  2743. package/src/tooltip/__tests__/tooltip.test.tsx +54 -0
  2744. package/src/tooltip/constants.ts +7 -0
  2745. package/src/tooltip/default-props.ts +25 -0
  2746. package/src/tooltip/index.ts +20 -0
  2747. package/src/tooltip/stateful-tooltip-container.tsx +22 -0
  2748. package/src/tooltip/stateful-tooltip.tsx +23 -0
  2749. package/src/tooltip/styled-components.ts +60 -0
  2750. package/src/tooltip/tooltip.tsx +39 -0
  2751. package/src/tooltip/types.ts +50 -0
  2752. package/src/tree-view/__tests__/tree-view-icon-overrides.scenario.tsx +41 -0
  2753. package/src/tree-view/__tests__/tree-view-interactable.scenario.tsx +92 -0
  2754. package/src/tree-view/__tests__/tree-view-render-all.scenario.tsx +57 -0
  2755. package/src/tree-view/__tests__/tree-view-rtl.scenario.tsx +19 -0
  2756. package/src/tree-view/__tests__/tree-view-single-expanded.scenario.tsx +305 -0
  2757. package/src/tree-view/__tests__/tree-view.e2e.ts +66 -0
  2758. package/src/tree-view/__tests__/tree-view.scenario.tsx +53 -0
  2759. package/src/tree-view/__tests__/tree-view.stories.tsx +18 -0
  2760. package/src/tree-view/__tests__/tree-view.test.tsx +150 -0
  2761. package/src/tree-view/__tests__/utils.test.ts +219 -0
  2762. package/src/tree-view/index.ts +32 -0
  2763. package/src/tree-view/stateful-container.ts +73 -0
  2764. package/src/tree-view/stateful-tree-view.tsx +19 -0
  2765. package/src/tree-view/styled-components.ts +126 -0
  2766. package/src/tree-view/tree-label-interactable.tsx +34 -0
  2767. package/src/tree-view/tree-label.tsx +80 -0
  2768. package/src/tree-view/tree-node.tsx +126 -0
  2769. package/src/tree-view/tree-view.tsx +175 -0
  2770. package/src/tree-view/types.ts +86 -0
  2771. package/src/tree-view/utils.ts +246 -0
  2772. package/src/types/globals.d.ts +27 -0
  2773. package/src/types/resize-observer-polyfill.d.ts +49 -0
  2774. package/src/typography/__tests__/typography-body.scenario.tsx +35 -0
  2775. package/src/typography/__tests__/typography-display.scenario.tsx +21 -0
  2776. package/src/typography/__tests__/typography-heading.scenario.tsx +32 -0
  2777. package/src/typography/__tests__/typography-mono-styletron.scenario.tsx +54 -0
  2778. package/src/typography/__tests__/typography-mono.scenario.tsx +76 -0
  2779. package/src/typography/__tests__/typography-overrides.scenario.tsx +21 -0
  2780. package/src/typography/__tests__/typography.stories.tsx +20 -0
  2781. package/src/typography/__tests__/typography.test.tsx +214 -0
  2782. package/src/typography/index.tsx +424 -0
  2783. package/src/utils/__mocks__/get-bui-id.ts +7 -0
  2784. package/src/utils/__tests__/deep-merge.test.ts +36 -0
  2785. package/src/utils/create-event.ts +19 -0
  2786. package/src/utils/deep-merge.ts +45 -0
  2787. package/src/utils/deprecated-component.tsx +23 -0
  2788. package/src/utils/focusVisible.ts +178 -0
  2789. package/src/utils/get-shared-styles.ts +39 -0
  2790. package/src/utils/ownerDocument.ts +18 -0
  2791. package/tsconfig.dist.json +19 -0
  2792. package/tsconfig.json +26 -0
  2793. package/vite.config.mjs +33 -0
@@ -0,0 +1,836 @@
1
+ <svg width="1440" height="415" viewBox="0 0 1440 415" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#mask130_42426_29538)">
3
+ <path d="M1440 0H0V414.6H1440V0Z" fill="#5A0A00"/>
4
+ <path d="M1440 68.02H0V74.58H1440V68.02Z" fill="black"/>
5
+ <path d="M1440 61.99H0V68.55H1440V61.99Z" fill="#870F00"/>
6
+ <path d="M1440 136.65H0V143.21H1440V136.65Z" fill="black"/>
7
+ <path d="M1440 130.62H0V137.18H1440V130.62Z" fill="#870F00"/>
8
+ <path d="M1440 205.27H0V211.83H1440V205.27Z" fill="black"/>
9
+ <path d="M1440 199.24H0V205.8H1440V199.24Z" fill="#870F00"/>
10
+ <path d="M1440 273.9H0V280.46H1440V273.9Z" fill="black"/>
11
+ <path d="M1440 267.87H0V274.43H1440V267.87Z" fill="#870F00"/>
12
+ <path d="M1440 345.54H0V352.1H1440V345.54Z" fill="black"/>
13
+ <path d="M1440 339.51H0V346.07H1440V339.51Z" fill="#870F00"/>
14
+ <path d="M133.85 45.93C136.85 51.77 141.86 56.33 147.96 58.77L151.77 60.3L152.85 62H274.19L270.9 57.94C262.38 47.42 251.88 38.69 239.98 32.23L226.77 25.05C215.64 19 205.66 11.02 197.31 1.49L196.01 0H84.0698L131.89 42.13L133.85 45.93Z" fill="black"/>
15
+ <path d="M186.1 114.11C190.35 120.77 199.14 122.82 205.9 118.72L214.47 113.52L223.58 113.74C229.79 113.89 235.63 110.79 238.99 105.57L240.41 103.36L252.82 113.79C255.5 116.04 258.95 117.14 262.43 116.87L264.06 116.74C268.62 116.38 272.25 112.76 272.62 108.21C272.82 105.79 272.35 103.37 271.28 101.2L264.78 88.11L295.21 118.24L304.12 126.14C307.18 128.85 311.14 130.31 315.22 130.22C318.03 130.16 320.28 127.85 320.25 125.03L320.24 124.25C320.21 121.28 319.22 118.41 317.42 116.05L308.53 104.4L279.5 68.57H157.04L186.1 114.11Z" fill="black"/>
16
+ <path d="M818.06 336.78L801.51 339.5H832.49C828.18 336.96 823.08 335.96 818.06 336.78Z" fill="black"/>
17
+ <path d="M950.89 332.83C948.96 330.01 945.77 328.33 942.35 328.33H941.53C939.97 325.16 936.7 323.03 933 323.03H932.19C928.83 323.03 925.89 325.19 924.85 328.33H914.92C912.6 328.33 910.31 328.94 908.3 330.11L904.48 332.32L901.22 334.2L894.68 337.98C894.07 338.33 893.69 338.9 893.55 339.51H955.44L950.89 332.83Z" fill="black"/>
18
+ <path d="M772.7 346.68L783.45 346.07H771.36C771.67 346.47 772.16 346.71 772.7 346.68Z" fill="black"/>
19
+ <path d="M968.36 338.88L960.3 339.5H974.35C972.42 338.94 970.39 338.73 968.36 338.88Z" fill="black"/>
20
+ <path d="M152.85 61.99L157.04 68.56H279.51L274.19 61.99H152.85Z" fill="#5A0A00"/>
21
+ <path d="M960.3 339.51H955.46L955.7 339.86L960.3 339.51Z" fill="#5A0A00"/>
22
+ <path d="M815.81 344.23L783.44 346.07H817.54C817.55 346 817.55 345.92 817.55 345.85C817.54 344.91 816.75 344.18 815.81 344.23Z" fill="#5A0A00"/>
23
+ <path d="M840.21 346.07H875.53L896.93 344.41C896.44 344.03 895.98 343.6 895.54 343.14L894.16 341.67C893.58 341.06 893.4 340.24 893.57 339.5H832.48C833.81 340.29 835.06 341.23 836.21 342.31L840.21 346.07Z" fill="#5A0A00"/>
24
+ <path d="M836.21 342.31C835.06 341.23 833.81 340.29 832.48 339.5H801.5L771.01 344.52L771.02 345.13C771.03 345.48 771.15 345.81 771.35 346.06H783.44L815.81 344.22C816.74 344.17 817.54 344.9 817.56 345.83C817.56 345.91 817.56 345.98 817.55 346.05H840.21L836.21 342.31Z" fill="#5A0A00"/>
25
+ <path d="M977.73 340.91C976.65 340.32 975.52 339.85 974.35 339.5H960.3L955.7 339.86L955.46 339.5H893.57C893.4 340.24 893.58 341.06 894.16 341.67L895.54 343.14C895.98 343.6 896.44 344.02 896.93 344.41L875.53 346.07H982.08C981.32 343.91 979.79 342.05 977.73 340.91Z" fill="#5A0A00"/>
26
+ <path d="M970.88 362.06L969.26 359.69C972.38 359.71 975.45 358.85 978.12 357.21C980.98 355.45 982.68 352.3 982.6 348.95C982.58 347.96 982.39 346.99 982.07 346.08H875.53L845.01 348.44C843.66 348.54 842.33 348.08 841.35 347.15L840.21 346.08H817.55C817.46 346.87 816.82 347.5 816.01 347.55L772.48 350.27C772.06 350.3 771.73 350.65 771.74 351.07L771.75 351.51C771.76 351.94 772.12 352.29 772.56 352.28L816.92 351.21C817.83 351.19 818.59 351.91 818.61 352.82V352.92V353.02C818.63 353.93 817.91 354.69 817 354.71L772.64 355.78C772.21 355.79 771.86 356.15 771.87 356.59L771.88 357.03C771.89 357.45 772.23 357.79 772.66 357.8L816.27 358.41C817.16 358.42 817.88 359.14 817.9 360.02C817.92 360.95 817.17 361.72 816.23 361.71L773.05 361.35C772.15 361.34 771.43 362.08 771.45 362.97L771.46 363.58L818.83 369.03C825.46 369.79 832.06 367.43 836.7 362.63L841.6 357.56C842.54 356.59 843.84 356.06 845.2 356.09L900.03 357.67L893.8 369.45C893.31 370.37 893.43 371.49 894.09 372.29C895.52 374.01 897.75 374.86 899.96 374.53C901.09 374.36 902.19 374.04 903.22 373.61L902.35 374.52C902.25 374.62 902.16 374.72 902.07 374.83L902.03 374.87C900.13 377.06 899.35 380.01 899.91 382.86L901.04 388.53C901.04 388.58 901.04 388.63 901.05 388.68L902 393.36L903.22 399.49C903.44 400.59 904.53 401.28 905.62 401.01C906.97 400.68 908.22 400.12 909.34 399.39C907.55 404.3 906.55 409.42 906.34 414.58H966L974.61 387.83C977.43 379.14 976.05 369.62 970.88 362.06Z" fill="black"/>
27
+ <path d="M308.77 101.62C308.77 111.51 309.64 121.2 311.3 130.62H637.63C639.29 121.2 640.16 111.52 640.16 101.62C640.16 90.3 639.02 79.24 636.86 68.55H312.07C309.91 79.24 308.77 90.3 308.77 101.62Z" fill="black"/>
28
+ <path d="M474.46 267.32C526.5 267.32 572.93 243.33 603.31 205.81H345.62C376 243.33 422.43 267.32 474.46 267.32Z" fill="black"/>
29
+ <path d="M635.39 61.99C629.77 39.09 619.38 18.05 605.34 0H343.59C329.55 18.05 319.17 39.09 313.54 61.99H635.39Z" fill="black"/>
30
+ <path d="M340.57 199.24H608.36C621.67 181.02 631.35 159.98 636.33 137.18H312.6C317.58 159.98 327.26 181.02 340.57 199.24Z" fill="black"/>
31
+ <path d="M355.6 346.43C349.4 377.48 369.55 407.68 400.61 413.88C431.66 420.08 461.86 399.93 468.06 368.87C469.6 361.13 469.51 353.44 468.02 346.17H355.66C355.64 346.26 355.62 346.34 355.6 346.43Z" fill="black"/>
32
+ <path d="M423.05 301.42C394.34 295.69 366.35 312.49 357.4 339.6H466.26C459.97 320.69 443.99 305.6 423.05 301.42Z" fill="black"/>
33
+ <path d="M233.47 171.62C229.4 165.67 221.27 164.15 215.32 168.22L169.99 199.24H252.38L233.47 171.62Z" fill="black"/>
34
+ <path d="M69.7402 267.87H299.35L256.87 205.81H160.4L69.7402 267.87Z" fill="black"/>
35
+ <path d="M60.1499 274.43H303.84L299.35 267.87H69.7399L60.1499 274.43Z" fill="#5A0A00"/>
36
+ <path d="M345.62 205.81H603.31C605.05 203.67 606.73 201.48 608.36 199.25H340.57C342.2 201.47 343.88 203.66 345.62 205.81Z" fill="#5A0A00"/>
37
+ <path d="M169.99 199.24L160.4 205.81H256.87L252.38 199.24H169.99Z" fill="#5A0A00"/>
38
+ <path d="M468.02 346.17C467.56 343.94 466.97 341.75 466.26 339.61H357.4C356.7 341.74 356.11 343.93 355.65 346.17H468.02Z" fill="#5A0A00"/>
39
+ <path d="M0 339.6V346.17H283.47L293.06 339.6H0Z" fill="#5A0A00"/>
40
+ <path d="M312.6 137.18H636.34C636.81 135.01 637.25 132.82 637.64 130.62H311.3C311.69 132.82 312.12 135.01 312.6 137.18Z" fill="#5A0A00"/>
41
+ <path d="M313.54 61.99C313.01 64.16 312.52 66.35 312.07 68.55H636.86C636.41 66.35 635.92 64.16 635.39 61.99H313.54Z" fill="#5A0A00"/>
42
+ <path d="M0 346.17V401.49L8.97 414.6H183.49L283.47 346.17H0Z" fill="black"/>
43
+ <path d="M323.41 303.01L303.85 274.43H60.15L0 315.6V339.6H293.06L320.01 321.16C325.96 317.09 327.48 308.96 323.41 303.01Z" fill="black"/>
44
+ <path d="M774.33 265.36L774.26 265.32C767.91 261.98 762.25 257.47 757.59 252.01L757.57 251.99C747.29 239.96 732.43 232.8 716.62 232.25H716.55C709.41 232 702.38 230.4 695.84 227.53L695.69 227.47C681.25 221.14 664.81 221.14 650.37 227.47L650.22 227.53C643.68 230.4 636.65 232 629.51 232.25H629.44C613.63 232.8 598.77 239.96 588.49 251.99L588.47 252.01C583.81 257.47 578.15 261.98 571.8 265.32L571.73 265.36C570.26 266.13 568.83 266.97 567.44 267.87H778.63C777.23 266.97 775.8 266.14 774.33 265.36Z" fill="black"/>
45
+ <path d="M543.42 300.83L543.39 300.95C541.55 307.85 538.43 314.35 534.17 320.08L534.13 320.14C529.76 326.03 526.63 332.65 524.82 339.6H821.25C819.45 332.65 816.32 326.03 811.94 320.14L811.9 320.08C807.64 314.34 804.51 307.85 802.68 300.95L802.65 300.83C799.95 290.66 794.48 281.55 786.99 274.44H559.09C551.59 281.55 546.12 290.65 543.42 300.83Z" fill="black"/>
46
+ <path d="M822.03 385.86C820.67 378.79 820.67 371.53 822.03 364.47C823.21 358.38 823.35 352.2 822.53 346.17H523.52C522.7 352.2 522.85 358.37 524.02 364.47C525.38 371.54 525.38 378.8 524.02 385.86C522.15 395.55 522.87 405.45 525.96 414.61H820.08C823.18 405.44 823.9 395.54 822.03 385.86Z" fill="black"/>
47
+ <path d="M567.43 267.87C564.43 269.8 561.63 272 559.07 274.43H786.97C784.41 272 781.62 269.8 778.61 267.87H567.43Z" fill="#5A0A00"/>
48
+ <path d="M523.521 346.17H822.531C822.231 343.96 821.8 341.77 821.24 339.61H524.81C524.25 341.76 523.821 343.96 523.521 346.17Z" fill="#5A0A00"/>
49
+ <path d="M786.52 32.94C762.14 32.94 740.41 44.29 726.32 62H846.72C832.63 44.29 810.9 32.94 786.52 32.94Z" fill="black"/>
50
+ <path d="M786.52 186.73C819.36 186.73 847.38 166.14 858.41 137.18H714.63C725.65 166.15 753.68 186.73 786.52 186.73Z" fill="black"/>
51
+ <path d="M709.62 109.84C709.62 117.01 710.61 123.96 712.44 130.54H860.59C862.43 123.95 863.41 117.01 863.41 109.84C863.41 94.65 859 80.49 851.4 68.56H721.63C714.03 80.48 709.62 94.64 709.62 109.84Z" fill="black"/>
52
+ <path d="M714.63 137.18H858.41C859.24 135.01 859.97 132.8 860.6 130.54H712.44C713.07 132.8 713.8 135.01 714.63 137.18Z" fill="#5A0A00"/>
53
+ <path d="M726.32 61.99C724.65 64.09 723.08 66.28 721.63 68.55H851.41C849.96 66.28 848.4 64.09 846.72 61.99H726.32Z" fill="#5A0A00"/>
54
+ <path d="M1044.38 414.6H1223.27L1440 259.66V130.69L1346.57 0H980.65L826.67 110.08L1044.38 414.6Z" fill="#FFE3AC"/>
55
+ <path d="M1355.17 116.953L1319.16 142.701L1355.61 193.683L1391.62 167.935L1355.17 116.953Z" fill="#E85C4A"/>
56
+ <path d="M1292.97 29.9577L1256.95 55.7051L1293.4 106.687L1329.42 80.9397L1292.97 29.9577Z" fill="#E85C4A"/>
57
+ <path d="M1268.17 179.151L1232.16 204.898L1268.61 255.88L1304.62 230.133L1268.17 179.151Z" fill="#E85C4A"/>
58
+ <path d="M1205.98 92.1573L1169.97 117.905L1206.42 168.887L1242.43 143.139L1205.98 92.1573Z" fill="#E85C4A"/>
59
+ <path d="M1143.78 5.15582L1107.77 30.9033L1144.22 81.8853L1180.23 56.1379L1143.78 5.15582Z" fill="#E85C4A"/>
60
+ <path d="M1330.37 266.141L1294.35 291.888L1328.37 339.47L1364.39 313.723L1330.37 266.141Z" fill="#E85C4A"/>
61
+ <path d="M1118.99 154.349L1082.97 180.096L1119.42 231.078L1155.44 205.331L1118.99 154.349Z" fill="#E85C4A"/>
62
+ <path d="M1181.18 241.342L1145.16 267.09L1181.61 318.072L1217.63 292.324L1181.18 241.342Z" fill="#E85C4A"/>
63
+ <path d="M1056.79 67.3613L1020.77 93.1088L1057.22 144.091L1093.24 118.343L1056.79 67.3613Z" fill="#E85C4A"/>
64
+ <path d="M1243.37 328.333L1207.36 354.08L1241.38 401.662L1277.39 375.914L1243.37 328.333Z" fill="#E85C4A"/>
65
+ <path d="M1122.7 414.6H1173.56L1156.36 390.54L1122.7 414.6Z" fill="#E85C4A"/>
66
+ <path d="M912.17 48.9598L876.156 74.7072L908.034 119.295L944.047 93.5477L912.17 48.9598Z" fill="#E85C4A"/>
67
+ <path d="M1031.99 216.54L995.979 242.288L1032.43 293.27L1068.44 267.522L1031.99 216.54Z" fill="#E85C4A"/>
68
+ <path d="M1094.19 303.542L1058.18 329.289L1094.63 380.271L1130.64 354.524L1094.19 303.542Z" fill="#E85C4A"/>
69
+ <path d="M969.793 129.553L933.78 155.3L970.229 206.282L1006.24 180.535L969.793 129.553Z" fill="#E85C4A"/>
70
+ <path d="M1355.6 193.685L1304.62 230.134L1330.36 266.148L1381.35 229.699L1355.6 193.685Z" fill="#E85C4A"/>
71
+ <path d="M1268.61 255.885L1217.63 292.334L1243.38 328.347L1294.36 291.899L1268.61 255.885Z" fill="#E85C4A"/>
72
+ <path d="M1181.62 318.076L1130.64 354.525L1156.38 390.539L1207.37 354.09L1181.62 318.076Z" fill="#E85C4A"/>
73
+ <path d="M1391.62 167.941L1355.6 193.689L1381.35 229.702L1417.37 203.955L1391.62 167.941Z" fill="#AB1300"/>
74
+ <path d="M1304.62 230.133L1268.61 255.88L1294.36 291.894L1330.37 266.147L1304.62 230.133Z" fill="#AB1300"/>
75
+ <path d="M1217.63 292.324L1181.62 318.072L1207.37 354.085L1243.38 328.338L1217.63 292.324Z" fill="#AB1300"/>
76
+ <path d="M1206.41 168.883L1155.43 205.332L1181.18 241.346L1232.16 204.897L1206.41 168.883Z" fill="#E85C4A"/>
77
+ <path d="M1032.42 293.265L982.941 328.638L1008.69 364.652L1058.17 329.279L1032.42 293.265Z" fill="#E85C4A"/>
78
+ <path d="M1119.43 231.083L1068.44 267.532L1094.19 303.545L1145.17 267.097L1119.43 231.083Z" fill="#E85C4A"/>
79
+ <path d="M1379.09 45.4369L1329.42 80.9494L1355.16 116.963L1404.84 81.4505L1379.09 45.4369Z" fill="#E85C4A"/>
80
+ <path d="M1293.41 106.692L1242.43 143.141L1268.17 179.154L1319.15 142.705L1293.41 106.692Z" fill="#E85C4A"/>
81
+ <path d="M1329.42 80.9397L1293.41 106.687L1319.15 142.701L1355.17 116.953L1329.42 80.9397Z" fill="#AB1300"/>
82
+ <path d="M1242.43 143.139L1206.42 168.887L1232.17 204.9L1268.18 179.153L1242.43 143.139Z" fill="#AB1300"/>
83
+ <path d="M1155.44 205.331L1119.43 231.078L1145.17 267.092L1181.19 241.345L1155.44 205.331Z" fill="#AB1300"/>
84
+ <path d="M1068.44 267.528L1032.42 293.276L1058.17 329.289L1094.19 303.542L1068.44 267.528Z" fill="#AB1300"/>
85
+ <path d="M1231.22 19.6984L1180.23 56.1473L1205.98 92.1609L1256.96 55.712L1231.22 19.6984Z" fill="#E85C4A"/>
86
+ <path d="M1057.23 144.095L1006.24 180.544L1031.99 216.558L1082.97 180.109L1057.23 144.095Z" fill="#E85C4A"/>
87
+ <path d="M970.235 206.285L920.758 241.658L946.506 277.671L995.983 242.299L970.235 206.285Z" fill="#E85C4A"/>
88
+ <path d="M1144.21 81.8957L1093.23 118.345L1118.98 154.358L1169.96 117.909L1144.21 81.8957Z" fill="#E85C4A"/>
89
+ <path d="M1180.23 56.1437L1144.21 81.8912L1169.96 117.905L1205.97 92.1574L1180.23 56.1437Z" fill="#AB1300"/>
90
+ <path d="M1093.24 118.343L1057.23 144.091L1082.97 180.104L1118.99 154.357L1093.24 118.343Z" fill="#AB1300"/>
91
+ <path d="M1006.25 180.535L970.233 206.282L995.981 242.296L1031.99 216.549L1006.25 180.535Z" fill="#AB1300"/>
92
+ <path d="M995.029 57.0939L944.047 93.5427L969.794 129.556L1020.78 93.1075L995.029 57.0939Z" fill="#E85C4A"/>
93
+ <path d="M908.044 119.292L858.567 154.664L884.314 190.678L933.791 155.305L908.044 119.292Z" fill="#E85C4A"/>
94
+ <path d="M1031.05 31.3499L995.035 57.0974L1020.78 93.111L1056.8 67.3635L1031.05 31.3499Z" fill="#AB1300"/>
95
+ <path d="M944.055 93.5417L908.042 119.289L933.789 155.303L969.803 129.555L944.055 93.5417Z" fill="#AB1300"/>
96
+ <path d="M995.01 57.11L1031.02 31.36L1008.6 0H980.65L963.14 12.52L995.01 57.11Z" fill="#E85C4A"/>
97
+ <path d="M1151 0H1140.06L1143.76 5.18L1151 0Z" fill="#E85C4A"/>
98
+ <path d="M1143.76 5.18L1140.06 0H1085.64L1107.75 30.92L1143.76 5.18Z" fill="#AB1300"/>
99
+ <path d="M1056.77 67.37L1107.75 30.92L1085.64 0H1074.89L1031.02 31.36L1056.77 67.37Z" fill="#E85C4A"/>
100
+ <path d="M1258.76 0H1217.1L1231.19 19.71L1258.76 0Z" fill="#E85C4A"/>
101
+ <path d="M1256.94 55.72L1292.94 29.98L1271.51 0H1258.76L1231.19 19.71L1256.94 55.72Z" fill="#AB1300"/>
102
+ <path d="M1334.87 0H1271.51L1292.94 29.98L1334.87 0Z" fill="#E85C4A"/>
103
+ <path d="M1417.33 203.96L1440 187.75V133.34L1391.59 167.95L1417.33 203.96Z" fill="#E85C4A"/>
104
+ <path d="M1417.33 203.96L1381.32 229.7L1415.34 277.29L1440 259.66V235.67L1417.33 203.96Z" fill="#E85C4A"/>
105
+ <path d="M1046.59 414.6H1119.14L1094.6 380.28L1046.59 414.6Z" fill="#E85C4A"/>
106
+ <path d="M1130.61 354.53L1094.6 380.28L1119.14 414.6H1122.7L1156.36 390.54L1130.61 354.53Z" fill="#AB1300"/>
107
+ <path d="M993.82 80.66C923.24 178.7 945.5 315.4 1043.55 385.98C1060.72 398.34 1079.07 407.85 1098.05 414.61H1244.54C1260.33 409.02 1275.54 401.6 1289.82 392.41C1313.62 377.09 1344.33 377.78 1367.3 394.32L1395.49 414.61H1440V357.07L1409.77 335.31C1386.8 318.78 1376.4 289.87 1383.37 262.44C1404.87 177.87 1374.24 85.01 1299.13 30.94C1279.91 17.1 1259.21 6.84001 1237.8 0.0100098H1105.01C1061.76 13.73 1022.38 40.99 993.82 80.66Z" fill="black"/>
108
+ <path d="M491.79 249.99C583.3 249.99 657.48 175.81 657.48 84.3C657.48 53.52 649.09 24.7 634.46 0H349.11C334.49 24.7 326.09 53.52 326.09 84.3C326.09 175.81 400.28 249.99 491.79 249.99Z" fill="white"/>
109
+ <path d="M415.63 0.27C404.84 6.68 396.75 16.81 392.9 28.75L392.86 28.86C391.41 33.34 389.36 37.61 386.75 41.53L386.71 41.59C379.75 52.07 376.87 64.74 378.6 77.2C379.26 81.91 379.26 86.69 378.6 91.41C376.87 103.87 379.75 116.54 386.71 127.02L386.75 127.08C389.36 131 391.41 135.27 392.86 139.75L392.9 139.86C396.76 151.8 404.84 161.93 415.63 168.34L415.69 168.38C419.77 170.8 423.49 173.77 426.75 177.21L426.77 177.23C435.43 186.35 447.13 192 459.67 193.09L459.74 193.1C464.43 193.51 469.05 194.56 473.45 196.22L473.59 196.27C485.32 200.69 498.25 200.69 509.98 196.27L510.12 196.22C514.53 194.56 519.14 193.51 523.83 193.1L523.9 193.09C536.43 192 548.13 186.36 556.8 177.23L556.82 177.21C560.08 173.77 563.81 170.8 567.88 168.38L567.94 168.34C578.73 161.93 586.82 151.8 590.67 139.86L590.71 139.75C592.16 135.27 594.21 131 596.82 127.08L596.86 127.02C603.82 116.54 606.7 103.87 604.97 91.41C604.31 86.7 604.31 81.92 604.97 77.2C606.7 64.74 603.82 52.07 596.86 41.59L596.82 41.53C594.21 37.61 592.16 33.34 590.71 28.86L590.67 28.75C586.81 16.81 578.73 6.68 567.94 0.27L567.88 0.23C567.75 0.16 567.63 0.08 567.51 0H416.07C415.95 0.08 415.82 0.16 415.7 0.23L415.63 0.27Z" fill="#FFCF70"/>
110
+ <path d="M524.33 76.48V32.78C524.33 29.55 523.51 26.37 521.94 23.55L518.22 16.86C517.83 16.16 516.82 16.16 516.43 16.86L512.71 23.55C511.14 26.37 510.32 29.55 510.32 32.78V76.48C510.32 79.71 511.14 82.89 512.71 85.71L516.43 92.4C516.82 93.1 517.83 93.1 518.22 92.4L521.94 85.71C523.51 82.89 524.33 79.71 524.33 76.48Z" fill="#FFC043"/>
111
+ <path d="M524.32 180.14V136.44C524.32 133.21 523.5 130.03 521.93 127.21L518.21 120.52C517.82 119.82 516.81 119.82 516.42 120.52L512.7 127.21C511.13 130.03 510.31 133.21 510.31 136.44V180.14C510.31 183.37 511.13 186.55 512.7 189.37L516.42 196.06C516.81 196.76 517.82 196.76 518.21 196.06L521.93 189.37C523.5 186.55 524.32 183.37 524.32 180.14Z" fill="#FFC043"/>
112
+ <path d="M500.71 200.88V157.18C500.71 153.95 499.89 150.77 498.32 147.95L494.6 141.26C494.21 140.56 493.2 140.56 492.81 141.26L489.09 147.95C487.52 150.77 486.7 153.95 486.7 157.18V200.88C486.7 204.11 487.52 207.29 489.09 210.11L492.81 216.8C493.2 217.5 494.21 217.5 494.6 216.8L498.32 210.11C499.89 207.28 500.71 204.11 500.71 200.88Z" fill="#FFC043"/>
113
+ <path d="M523.63 112.92H567.33C570.56 112.92 573.74 112.1 576.56 110.53L583.25 106.81C583.95 106.42 583.95 105.41 583.25 105.02L576.56 101.3C573.74 99.73 570.56 98.91 567.33 98.91H523.63C520.4 98.91 517.22 99.73 514.4 101.3L507.71 105.02C507.01 105.41 507.01 106.42 507.71 106.81L514.4 110.53C517.22 112.1 520.4 112.92 523.63 112.92Z" fill="#FFC043"/>
114
+ <path d="M548.42 86.92H592.12C595.35 86.92 598.53 86.1 601.35 84.53L608.04 80.81C608.74 80.42 608.74 79.41 608.04 79.02L601.35 75.3C598.53 73.73 595.35 72.91 592.12 72.91H548.42C545.19 72.91 542.01 73.73 539.19 75.3L532.5 79.02C531.8 79.41 531.8 80.42 532.5 80.81L539.19 84.53C542.01 86.1 545.19 86.92 548.42 86.92Z" fill="#FFC043"/>
115
+ <path d="M534.77 152.95L565.67 183.85C567.95 186.13 570.78 187.8 573.89 188.69L581.25 190.79C582.02 191.01 582.73 190.3 582.51 189.53L580.41 182.17C579.52 179.06 577.86 176.23 575.57 173.95L544.67 143.05C542.39 140.77 539.56 139.1 536.45 138.21L529.09 136.11C528.32 135.89 527.61 136.6 527.83 137.37L529.93 144.73C530.82 147.84 532.48 150.67 534.77 152.95Z" fill="#FFC043"/>
116
+ <path d="M555.24 135.79L586.14 166.69C588.42 168.97 591.25 170.64 594.36 171.53L601.72 173.63C602.49 173.85 603.2 173.14 602.98 172.37L600.88 165.01C599.99 161.9 598.33 159.07 596.04 156.79L565.14 125.89C562.86 123.61 560.03 121.94 556.92 121.05L549.56 118.95C548.79 118.73 548.08 119.44 548.3 120.21L550.4 127.57C551.29 130.68 552.95 133.51 555.24 135.79Z" fill="#FFC043"/>
117
+ <path d="M608.03 95.6L586.78 116.85C584.5 119.13 582.83 121.96 581.94 125.07L579.84 132.43C579.62 133.2 580.33 133.91 581.1 133.69L588.46 131.59C591.57 130.7 594.4 129.04 596.68 126.75L617.93 105.5C620.21 103.22 621.88 100.39 622.77 97.28L624.87 89.92C625.09 89.15 624.38 88.44 623.61 88.66L616.25 90.76C613.15 91.65 610.32 93.31 608.03 95.6Z" fill="#FFC043"/>
118
+ <path d="M610.74 49.04H580.7C577.47 49.04 574.29 49.86 571.47 51.43L564.78 55.15C564.08 55.54 564.08 56.55 564.78 56.94L571.47 60.66C574.29 62.23 577.47 63.05 580.7 63.05H610.75C613.98 63.05 617.16 62.23 619.98 60.66L626.67 56.94C627.37 56.55 627.37 55.54 626.67 55.15L619.98 51.43C617.15 49.87 613.97 49.04 610.74 49.04Z" fill="#FFC043"/>
119
+ <path d="M493.17 42.45L496.89 49.14C497.28 49.84 498.29 49.84 498.68 49.14L502.4 42.45C503.97 39.63 504.79 36.45 504.79 33.22V0H490.79V33.22C490.78 36.45 491.6 39.63 493.17 42.45Z" fill="#FFC043"/>
120
+ <path d="M470.86 16.56L474.58 23.25C474.97 23.95 475.98 23.95 476.37 23.25L480.09 16.56C481.66 13.74 482.48 10.56 482.48 7.33V0H468.48V7.33C468.46 10.56 469.29 13.74 470.86 16.56Z" fill="#FFC043"/>
121
+ <path d="M458.69 55.98L427.79 25.08C425.51 22.8 422.68 21.13 419.57 20.24L412.21 18.14C411.44 17.92 410.73 18.63 410.95 19.4L413.05 26.76C413.94 29.87 415.6 32.7 417.89 34.98L448.79 65.88C451.07 68.16 453.9 69.83 457.01 70.72L464.37 72.82C465.14 73.04 465.85 72.33 465.63 71.56L463.53 64.2C462.64 61.09 460.97 58.26 458.69 55.98Z" fill="#FFC043"/>
122
+ <path d="M441.4 83.05H397.7C394.47 83.05 391.29 83.87 388.47 85.44L381.78 89.16C381.08 89.55 381.08 90.56 381.78 90.95L388.47 94.67C391.29 96.24 394.47 97.06 397.7 97.06H441.4C444.63 97.06 447.81 96.24 450.63 94.67L457.32 90.95C458.02 90.56 458.02 89.55 457.32 89.16L450.63 85.44C447.81 83.88 444.63 83.05 441.4 83.05Z" fill="#FFC043"/>
123
+ <path d="M432.16 163.45V119.75C432.16 116.52 431.34 113.34 429.77 110.52L426.05 103.83C425.66 103.13 424.65 103.13 424.26 103.83L420.54 110.52C418.97 113.34 418.15 116.52 418.15 119.75V163.45C418.15 166.68 418.97 169.86 420.54 172.68L424.26 179.37C424.65 180.07 425.66 180.07 426.05 179.37L429.77 172.68C431.34 169.86 432.16 166.68 432.16 163.45Z" fill="#FFC043"/>
124
+ <path d="M403.84 170.34V126.64C403.84 123.41 403.02 120.23 401.45 117.41L397.73 110.72C397.34 110.02 396.33 110.02 395.94 110.72L392.22 117.41C390.65 120.23 389.83 123.41 389.83 126.64V170.34C389.83 173.57 390.65 176.75 392.22 179.57L395.94 186.26C396.33 186.96 397.34 186.96 397.73 186.26L401.45 179.57C403.01 176.75 403.84 173.57 403.84 170.34Z" fill="#FFC043"/>
125
+ <path d="M463.79 153.58L494.69 122.68C496.97 120.4 498.64 117.57 499.53 114.46L501.63 107.1C501.85 106.33 501.14 105.62 500.37 105.84L493.01 107.94C489.9 108.83 487.07 110.49 484.79 112.78L453.89 143.68C451.61 145.96 449.94 148.79 449.05 151.9L446.95 159.26C446.73 160.03 447.44 160.74 448.21 160.52L455.57 158.42C458.68 157.53 461.51 155.86 463.79 153.58Z" fill="#FFC043"/>
126
+ <path d="M556.58 55.97L587.48 25.07C589.76 22.79 591.43 19.96 592.32 16.85L594.42 9.49C594.64 8.72 593.93 8.01 593.16 8.23L585.8 10.33C582.69 11.22 579.86 12.88 577.58 15.17L546.68 46.07C544.4 48.35 542.73 51.18 541.84 54.29L539.74 61.65C539.52 62.42 540.23 63.13 541 62.91L548.36 60.81C551.47 59.92 554.3 58.26 556.58 55.97Z" fill="#FFC043"/>
127
+ <path d="M533.25 24.33L531.15 31.69C530.93 32.46 531.64 33.17 532.41 32.95L539.77 30.85C542.88 29.96 545.71 28.3 547.99 26.01L574.01 0H554.21L538.1 16.11C535.8 18.4 534.14 21.23 533.25 24.33Z" fill="#FFC043"/>
128
+ <path d="M444.58 202.55L475.48 171.65C477.76 169.37 479.43 166.54 480.32 163.43L482.42 156.07C482.64 155.3 481.93 154.59 481.16 154.81L473.8 156.91C470.69 157.8 467.86 159.46 465.58 161.75L434.68 192.65C432.4 194.93 430.73 197.76 429.84 200.87L427.74 208.23C427.52 209 428.23 209.71 429 209.49L436.36 207.39C439.47 206.5 442.3 204.83 444.58 202.55Z" fill="#FFC043"/>
129
+ <path d="M463.79 116.06L494.69 85.16C496.97 82.88 498.64 80.05 499.53 76.94L501.63 69.58C501.85 68.81 501.14 68.1 500.37 68.32L493.01 70.42C489.9 71.31 487.07 72.97 484.79 75.26L453.89 106.16C451.61 108.44 449.94 111.27 449.05 114.38L446.95 121.74C446.73 122.51 447.44 123.22 448.21 123L455.57 120.9C458.68 120.01 461.51 118.34 463.79 116.06Z" fill="#FFC043"/>
130
+ <path d="M392.92 16.7L390.82 24.06C390.6 24.83 391.31 25.54 392.08 25.32L399.44 23.22C402.55 22.33 405.38 20.67 407.66 18.38L426.04 0H406.24L397.76 8.48C395.47 10.76 393.8 13.59 392.92 16.7Z" fill="#FFC043"/>
131
+ <path d="M375.99 69.92H419.69C422.92 69.92 426.1 69.1 428.92 67.53L435.61 63.81C436.31 63.42 436.31 62.41 435.61 62.02L428.92 58.3C426.1 56.73 422.92 55.91 419.69 55.91H375.99C372.76 55.91 369.58 56.73 366.76 58.3L360.07 62.02C359.37 62.41 359.37 63.42 360.07 63.81L366.76 67.53C369.58 69.1 372.76 69.92 375.99 69.92Z" fill="#FFC043"/>
132
+ <path d="M444.76 21.04L475.66 51.94C477.94 54.22 480.77 55.89 483.88 56.78L491.24 58.88C492.01 59.1 492.72 58.39 492.5 57.62L490.4 50.26C489.51 47.15 487.85 44.32 485.56 42.04L454.66 11.14C452.38 8.85997 449.55 7.18997 446.44 6.29997L439.08 4.19997C438.31 3.97997 437.6 4.68997 437.82 5.45997L439.92 12.82C440.81 15.93 442.48 18.76 444.76 21.04Z" fill="#FFC043"/>
133
+ <path d="M489.04 5.08996H545.9L541.42 2.59996C538.6 1.02996 535.42 0.209961 532.19 0.209961H488.49C485.26 0.209961 482.08 1.02996 479.26 2.59996L472.57 6.31996C471.87 6.70996 471.87 7.71996 472.57 8.10996L475.25 9.59996L479.6 7.37996C482.51 5.86996 485.75 5.08996 489.04 5.08996Z" fill="#FFE3AC"/>
134
+ <path d="M548.1 6.31997L545.89 5.08997H489.03C485.74 5.08997 482.5 5.86997 479.57 7.36997L475.22 9.58997L479.23 11.82C482.05 13.39 485.23 14.21 488.46 14.21H532.16C535.39 14.21 538.57 13.39 541.39 11.82L548.08 8.09997C548.8 7.71997 548.8 6.70997 548.1 6.31997Z" fill="#FFF2D9"/>
135
+ <path d="M543.26 10.7999L548.1 8.10995C548.8 7.71995 548.8 6.70995 548.1 6.31995L543.61 3.82995L541 2.38995C540.46 2.10995 539.92 1.84995 539.36 1.61995C537.66 1.04995 535.79 1.14995 534.16 1.89995C532.36 2.72995 530.74 5.03995 530.68 7.01995C530.62 9.08995 531.63 10.9799 533.36 12.0799L533.44 12.1299C535.26 13.2399 537.48 13.4499 539.46 12.7699C539.94 12.5699 540.41 12.3499 540.87 12.1099L543.26 10.7999Z" fill="#FFE3AC"/>
136
+ <path d="M545.38 7.47997L539.66 10.66C538.01 11.58 536 11.54 534.39 10.55C531.89 9.02997 531.89 5.39997 534.39 3.86997C536 2.88997 538.02 2.84997 539.67 3.75997L545.39 6.93997C545.59 7.05997 545.59 7.35997 545.38 7.47997Z" fill="#9A3F21"/>
137
+ <path d="M474.82 9.35999H533.01V10.92H477.62L474.82 9.35999Z" fill="#FFE3AC"/>
138
+ <path d="M481.66 97.59H538.52L534.04 95.1C531.22 93.53 528.04 92.71 524.81 92.71H481.11C477.88 92.71 474.7 93.53 471.88 95.1L465.19 98.82C464.49 99.21 464.49 100.22 465.19 100.61L467.87 102.1L472.22 99.88C475.13 98.37 478.37 97.59 481.66 97.59Z" fill="#FFE3AC"/>
139
+ <path d="M540.72 98.81L538.51 97.58H481.65C478.36 97.58 475.12 98.36 472.19 99.86L467.84 102.08L471.85 104.31C474.67 105.88 477.85 106.7 481.08 106.7H524.78C528.01 106.7 531.19 105.88 534.01 104.31L540.7 100.59C541.42 100.21 541.42 99.2 540.72 98.81Z" fill="#FFF2D9"/>
140
+ <path d="M535.88 103.29L540.72 100.6C541.42 100.21 541.42 99.1999 540.72 98.8099L536.23 96.3199L533.61 94.8799C533.07 94.5999 532.53 94.3399 531.97 94.1099C530.27 93.5399 528.4 93.6399 526.77 94.3899C524.97 95.2199 523.35 97.5299 523.29 99.5099C523.23 101.58 524.24 103.47 525.97 104.57L526.05 104.62C527.87 105.73 530.09 105.94 532.07 105.26C532.55 105.06 533.02 104.84 533.48 104.6L535.88 103.29Z" fill="#FFE3AC"/>
141
+ <path d="M538 99.97L532.28 103.15C530.63 104.07 528.62 104.03 527.01 103.04C524.51 101.52 524.51 97.89 527.01 96.36C528.62 95.38 530.64 95.34 532.29 96.25L538.01 99.43C538.21 99.56 538.21 99.86 538 99.97Z" fill="#9A3F21"/>
142
+ <path d="M467.44 101.85H525.63V103.41H470.24L467.44 101.85Z" fill="#FFE3AC"/>
143
+ <path d="M463.22 29.35H520.08L515.6 26.86C512.78 25.29 509.6 24.47 506.37 24.47H462.67C459.44 24.47 456.26 25.29 453.44 26.86L446.75 30.58C446.05 30.97 446.05 31.98 446.75 32.37L449.43 33.86L453.78 31.64C456.7 30.13 459.94 29.35 463.22 29.35Z" fill="#FFE3AC"/>
144
+ <path d="M522.29 30.57L520.08 29.34H463.22C459.93 29.34 456.69 30.12 453.76 31.62L449.41 33.84L453.42 36.07C456.24 37.64 459.42 38.46 462.65 38.46H506.35C509.58 38.46 512.76 37.64 515.58 36.07L522.27 32.35C522.99 31.97 522.99 30.96 522.29 30.57Z" fill="#FFF2D9"/>
145
+ <path d="M517.449 35.0499L522.289 32.3599C522.989 31.9699 522.989 30.9599 522.289 30.5699L517.799 28.0799L515.179 26.6399C514.639 26.3599 514.099 26.0999 513.539 25.8699C511.839 25.2999 509.969 25.3999 508.339 26.1499C506.539 26.9799 504.919 29.2899 504.859 31.2699C504.799 33.3399 505.809 35.2299 507.539 36.3299L507.619 36.3799C509.439 37.4899 511.659 37.6999 513.639 37.0199C514.119 36.8199 514.589 36.5999 515.049 36.3599L517.449 35.0499Z" fill="#FFE3AC"/>
146
+ <path d="M519.57 31.73L513.85 34.91C512.2 35.83 510.19 35.79 508.58 34.8C506.08 33.28 506.08 29.65 508.58 28.12C510.19 27.14 512.21 27.1 513.86 28.01L519.58 31.19C519.78 31.32 519.78 31.62 519.57 31.73Z" fill="#9A3F21"/>
147
+ <path d="M449.01 33.61H507.2V35.18H451.81L449.01 33.61Z" fill="#FFE3AC"/>
148
+ <path d="M471.45 191.25H528.31L523.83 188.76C521.01 187.19 517.83 186.37 514.6 186.37H470.9C467.67 186.37 464.49 187.19 461.67 188.76L454.98 192.48C454.28 192.87 454.28 193.88 454.98 194.27L457.66 195.76L462.01 193.54C464.92 192.03 468.16 191.25 471.45 191.25Z" fill="#FFE3AC"/>
149
+ <path d="M530.51 192.48L528.3 191.25H471.44C468.15 191.25 464.91 192.03 461.98 193.53L457.63 195.75L461.64 197.98C464.46 199.55 467.64 200.37 470.87 200.37H514.57C517.8 200.37 520.98 199.55 523.8 197.98L530.49 194.26C531.21 193.88 531.21 192.87 530.51 192.48Z" fill="#FFF2D9"/>
150
+ <path d="M525.67 196.96L530.51 194.27C531.21 193.88 531.21 192.87 530.51 192.48L526.02 189.99L523.4 188.55C522.86 188.27 522.32 188.01 521.76 187.78C520.06 187.21 518.19 187.31 516.56 188.06C514.76 188.89 513.14 191.2 513.08 193.18C513.02 195.25 514.03 197.14 515.76 198.24L515.84 198.29C517.66 199.4 519.88 199.61 521.86 198.93C522.34 198.73 522.81 198.51 523.27 198.27L525.67 196.96Z" fill="#FFE3AC"/>
151
+ <path d="M527.79 193.64L522.07 196.82C520.42 197.74 518.41 197.7 516.8 196.71C514.3 195.19 514.3 191.56 516.8 190.03C518.41 189.05 520.43 189.01 522.08 189.92L527.8 193.1C528 193.22 528 193.52 527.79 193.64Z" fill="#9A3F21"/>
152
+ <path d="M457.23 195.52H515.42V197.08H460.03L457.23 195.52Z" fill="#FFE3AC"/>
153
+ <path d="M385.05 59.7999V2.94995L382.56 7.42995C380.99 10.25 380.17 13.43 380.17 16.66V60.36C380.17 63.59 380.99 66.77 382.56 69.59L386.28 76.28C386.67 76.9799 387.68 76.9799 388.07 76.28L389.56 73.6L387.34 69.25C385.83 66.33 385.05 63.09 385.05 59.7999Z" fill="#FFE3AC"/>
154
+ <path d="M386.27 0.739943L385.04 2.94994V59.7999C385.04 63.0899 385.82 66.3299 387.32 69.2599L389.54 73.6099L391.77 69.5999C393.34 66.7799 394.16 63.5999 394.16 60.3699V16.6699C394.16 13.4399 393.34 10.2599 391.77 7.43994L388.05 0.749943C387.67 0.0399432 386.66 0.0399432 386.27 0.739943Z" fill="#FFF2D9"/>
155
+ <path d="M390.75 5.57997L388.06 0.739966C387.67 0.0399658 386.66 0.0399658 386.27 0.739966L383.78 5.22997L382.34 7.84997C382.06 8.38997 381.8 8.92997 381.57 9.48997C381 11.19 381.1 13.06 381.85 14.69C382.68 16.49 384.99 18.11 386.97 18.17C389.04 18.23 390.93 17.22 392.03 15.49L392.08 15.41C393.19 13.59 393.4 11.37 392.72 9.38997C392.52 8.90997 392.3 8.43997 392.06 7.97997L390.75 5.57997Z" fill="#FFE3AC"/>
156
+ <path d="M387.43 3.45998L390.61 9.17998C391.53 10.83 391.49 12.84 390.5 14.45C388.98 16.95 385.35 16.95 383.82 14.45C382.84 12.84 382.8 10.82 383.71 9.16998L386.89 3.44998C387.02 3.24998 387.32 3.24998 387.43 3.45998Z" fill="#9A3F21"/>
157
+ <path d="M389.31 74.02V15.83H390.87V71.22L389.31 74.02Z" fill="#FFE3AC"/>
158
+ <path d="M408.32 82.08V25.22L405.83 29.7C404.26 32.52 403.44 35.7 403.44 38.93V82.63C403.44 85.86 404.26 89.04 405.83 91.86L409.55 98.55C409.94 99.25 410.95 99.25 411.34 98.55L412.83 95.87L410.61 91.52C409.1 88.61 408.32 85.36 408.32 82.08Z" fill="#FFE3AC"/>
159
+ <path d="M409.55 23.01L408.32 25.22V82.08C408.32 85.37 409.1 88.61 410.6 91.54L412.82 95.89L415.05 91.88C416.62 89.06 417.44 85.88 417.44 82.65V38.95C417.44 35.72 416.62 32.54 415.05 29.72L411.33 23.03C410.94 22.31 409.93 22.31 409.55 23.01Z" fill="#FFF2D9"/>
160
+ <path d="M414.02 27.86L411.33 23.02C410.94 22.32 409.93 22.32 409.54 23.02L407.05 27.51L405.61 30.13C405.33 30.67 405.07 31.21 404.84 31.77C404.27 33.47 404.37 35.34 405.12 36.97C405.95 38.77 408.26 40.39 410.24 40.45C412.31 40.51 414.2 39.5 415.3 37.77L415.35 37.69C416.46 35.87 416.67 33.65 415.99 31.67C415.79 31.19 415.57 30.72 415.33 30.26L414.02 27.86Z" fill="#FFE3AC"/>
161
+ <path d="M410.7 25.73L413.88 31.45C414.8 33.1 414.76 35.11 413.77 36.72C412.25 39.22 408.62 39.22 407.09 36.72C406.11 35.11 406.07 33.09 406.98 31.44L410.16 25.72C410.29 25.53 410.59 25.53 410.7 25.73Z" fill="#9A3F21"/>
162
+ <path d="M412.58 96.29V38.1H414.15V93.49L412.58 96.29Z" fill="#FFE3AC"/>
163
+ <path d="M520.4 52.0199L560.6 11.8199L555.67 13.2299C552.56 14.1199 549.73 15.7799 547.45 18.0699L516.55 48.9699C514.27 51.2499 512.6 54.0799 511.71 57.1899L509.61 64.5499C509.39 65.32 510.1 66.0299 510.87 65.8099L513.81 64.9699L515.31 60.3199C516.34 57.1899 518.08 54.3499 520.4 52.0199Z" fill="#FFE3AC"/>
164
+ <path d="M563.04 11.13L560.61 11.82L520.41 52.02C518.09 54.34 516.34 57.19 515.33 60.32L513.83 64.97L518.24 63.71C521.35 62.82 524.18 61.16 526.46 58.87L557.36 27.97C559.64 25.69 561.31 22.86 562.2 19.75L564.3 12.39C564.52 11.62 563.81 10.91 563.04 11.13Z" fill="#FFF2D9"/>
165
+ <path d="M562.78 17.72L564.3 12.39C564.52 11.62 563.81 10.91 563.04 11.13L558.1 12.54L555.23 13.37C554.65 13.55 554.08 13.75 553.52 13.99C551.92 14.79 550.67 16.18 550.04 17.87C549.35 19.72 549.84 22.51 551.19 23.95C552.61 25.46 554.66 26.08 556.66 25.63L556.75 25.61C558.82 25.11 560.54 23.69 561.46 21.81C561.66 21.33 561.83 20.84 561.99 20.35L562.78 17.72Z" fill="#FFE3AC"/>
166
+ <path d="M561.93 13.87L560.13 20.16C559.61 21.97 558.16 23.37 556.33 23.81C553.49 24.5 550.92 21.94 551.61 19.09C552.05 17.25 553.45 15.8 555.27 15.28L561.56 13.49C561.79 13.43 562 13.64 561.93 13.87Z" fill="#9A3F21"/>
167
+ <path d="M513.36 65.0899L554.51 23.9399L555.62 25.0499L516.45 64.2199L513.36 65.0899Z" fill="#FFE3AC"/>
168
+ <path d="M544.05 187.99L584.25 147.79L579.32 149.2C576.21 150.09 573.38 151.75 571.1 154.04L540.2 184.94C537.92 187.22 536.25 190.05 535.36 193.16L533.26 200.52C533.04 201.29 533.75 202 534.52 201.78L537.46 200.94L538.96 196.29C539.99 193.16 541.73 190.31 544.05 187.99Z" fill="#FFE3AC"/>
169
+ <path d="M586.69 147.09L584.26 147.78L544.06 187.98C541.74 190.3 539.99 193.15 538.98 196.28L537.48 200.93L541.89 199.67C545 198.78 547.83 197.12 550.11 194.83L581.01 163.93C583.29 161.65 584.96 158.82 585.85 155.71L587.95 148.35C588.17 147.58 587.46 146.87 586.69 147.09Z" fill="#FFF2D9"/>
170
+ <path d="M586.43 153.68L587.95 148.35C588.17 147.58 587.46 146.87 586.69 147.09L581.75 148.5L578.88 149.33C578.3 149.51 577.73 149.71 577.17 149.95C575.57 150.75 574.32 152.14 573.69 153.83C573 155.68 573.49 158.47 574.84 159.91C576.26 161.42 578.31 162.04 580.31 161.59L580.4 161.57C582.47 161.07 584.19 159.65 585.11 157.77C585.31 157.29 585.48 156.8 585.64 156.31L586.43 153.68Z" fill="#FFE3AC"/>
171
+ <path d="M585.58 149.83L583.78 156.12C583.26 157.93 581.81 159.33 579.98 159.77C577.14 160.46 574.57 157.9 575.26 155.05C575.7 153.21 577.1 151.76 578.92 151.24L585.21 149.45C585.43 149.39 585.65 149.61 585.58 149.83Z" fill="#9A3F21"/>
172
+ <path d="M537.01 201.06L578.16 159.91L579.27 161.01L540.1 200.18L537.01 201.06Z" fill="#FFE3AC"/>
173
+ <path d="M552.1 58.34H608.96L604.48 55.85C601.66 54.28 598.48 53.46 595.25 53.46H551.55C548.32 53.46 545.14 54.28 542.32 55.85L535.63 59.57C534.93 59.96 534.93 60.97 535.63 61.36L538.31 62.85L542.66 60.63C545.57 59.12 548.81 58.34 552.1 58.34Z" fill="#FFE3AC"/>
174
+ <path d="M611.16 59.57L608.95 58.34H552.1C548.81 58.34 545.57 59.12 542.64 60.62L538.29 62.84L542.3 65.07C545.12 66.64 548.3 67.46 551.53 67.46H595.23C598.46 67.46 601.64 66.64 604.46 65.07L611.15 61.35C611.87 60.96 611.87 59.96 611.16 59.57Z" fill="#FFF2D9"/>
175
+ <path d="M606.32 64.05L611.16 61.3599C611.86 60.9699 611.86 59.9599 611.16 59.5699L606.67 57.0799L604.05 55.6399C603.51 55.3599 602.97 55.0999 602.41 54.8699C600.71 54.2999 598.84 54.3999 597.21 55.1499C595.41 55.9799 593.79 58.2899 593.73 60.2699C593.67 62.3399 594.68 64.2299 596.41 65.3299L596.49 65.3799C598.31 66.4899 600.53 66.6999 602.51 66.0199C602.99 65.8199 603.46 65.5999 603.92 65.3599L606.32 64.05Z" fill="#FFE3AC"/>
176
+ <path d="M608.44 60.73L602.72 63.91C601.07 64.83 599.06 64.79 597.45 63.8C594.95 62.28 594.95 58.65 597.45 57.12C599.06 56.14 601.08 56.1 602.73 57.01L608.45 60.19C608.65 60.31 608.65 60.61 608.44 60.73Z" fill="#9A3F21"/>
177
+ <path d="M537.88 62.6H596.08V64.17H540.68L537.88 62.6Z" fill="#FFE3AC"/>
178
+ <path d="M579.21 85.02L619.41 125.22L618 120.29C617.11 117.18 615.45 114.35 613.16 112.07L582.26 81.17C579.98 78.89 577.15 77.22 574.04 76.33L566.68 74.23C565.91 74.01 565.2 74.72 565.42 75.49L566.26 78.43L570.91 79.93C574.04 80.95 576.88 82.69 579.21 85.02Z" fill="#FFE3AC"/>
179
+ <path d="M620.11 127.65L619.42 125.22L579.22 85.02C576.89 82.7 574.05 80.95 570.92 79.94L566.27 78.44L567.53 82.85C568.42 85.96 570.08 88.79 572.37 91.07L603.27 121.97C605.55 124.25 608.38 125.92 611.49 126.81L618.85 128.91C619.61 129.14 620.33 128.42 620.11 127.65Z" fill="#FFF2D9"/>
180
+ <path d="M613.52 127.39L618.85 128.91C619.62 129.13 620.33 128.42 620.11 127.65L618.7 122.71L617.87 119.84C617.69 119.26 617.49 118.69 617.25 118.13C616.45 116.53 615.06 115.28 613.37 114.65C611.52 113.96 608.73 114.45 607.29 115.8C605.78 117.22 605.16 119.27 605.61 121.27L605.63 121.36C606.13 123.43 607.55 125.15 609.43 126.07C609.91 126.27 610.4 126.44 610.89 126.6L613.52 127.39Z" fill="#FFE3AC"/>
181
+ <path d="M617.36 126.55L611.07 124.75C609.26 124.23 607.86 122.78 607.42 120.95C606.73 118.11 609.29 115.54 612.14 116.23C613.98 116.67 615.43 118.07 615.95 119.89L617.74 126.18C617.8 126.4 617.59 126.61 617.36 126.55Z" fill="#9A3F21"/>
182
+ <path d="M566.14 77.98L607.29 119.13L606.18 120.24L567.02 81.07L566.14 77.98Z" fill="#FFE3AC"/>
183
+ <path d="M573.15 110.61L532.95 70.41L537.88 71.82C540.99 72.71 543.82 74.37 546.1 76.66L577 107.56C579.28 109.84 580.95 112.67 581.84 115.78L583.94 123.14C584.16 123.91 583.45 124.62 582.68 124.4L579.74 123.56L578.24 118.91C577.22 115.78 575.47 112.94 573.15 110.61Z" fill="#FFE3AC"/>
184
+ <path d="M530.52 69.71L532.95 70.4L573.15 110.6C575.48 112.92 577.22 115.77 578.23 118.9L579.73 123.55L575.32 122.29C572.21 121.4 569.38 119.74 567.1 117.45L536.2 86.55C533.92 84.27 532.25 81.44 531.36 78.33L529.26 70.97C529.03 70.21 529.75 69.49 530.52 69.71Z" fill="#FFF2D9"/>
185
+ <path d="M530.78 76.31L529.26 70.98C529.04 70.21 529.75 69.5 530.52 69.72L535.46 71.13L538.33 71.96C538.91 72.14 539.48 72.34 540.04 72.58C541.64 73.38 542.89 74.77 543.52 76.46C544.21 78.31 543.72 81.1 542.37 82.54C540.95 84.05 538.9 84.67 536.9 84.22L536.81 84.2C534.74 83.7 533.02 82.28 532.1 80.4C531.9 79.92 531.73 79.43 531.57 78.94L530.78 76.31Z" fill="#FFE3AC"/>
186
+ <path d="M531.62 72.46L533.42 78.75C533.94 80.56 535.39 81.96 537.22 82.4C540.06 83.09 542.63 80.53 541.94 77.68C541.5 75.84 540.1 74.39 538.28 73.87L532 72.08C531.77 72.02 531.56 72.23 531.62 72.46Z" fill="#9A3F21"/>
187
+ <path d="M580.19 123.68L539.04 82.53L537.93 83.64L577.1 122.81L580.19 123.68Z" fill="#FFE3AC"/>
188
+ <path d="M432 106.99H375.14L379.62 104.5C382.44 102.93 385.62 102.11 388.85 102.11H432.55C435.78 102.11 438.96 102.93 441.78 104.5L448.47 108.22C449.17 108.61 449.17 109.62 448.47 110.01L445.79 111.5L441.44 109.28C438.53 107.77 435.29 106.99 432 106.99Z" fill="#FFE3AC"/>
189
+ <path d="M372.93 108.22L375.14 106.99H432C435.29 106.99 438.53 107.77 441.46 109.27L445.81 111.49L441.8 113.72C438.98 115.29 435.8 116.11 432.57 116.11H388.87C385.64 116.11 382.46 115.29 379.64 113.72L372.95 110C372.23 109.61 372.23 108.61 372.93 108.22Z" fill="#FFF2D9"/>
190
+ <path d="M377.78 112.69L372.94 110C372.24 109.61 372.24 108.6 372.94 108.21L377.43 105.72L380.05 104.28C380.59 104 381.13 103.74 381.69 103.51C383.39 102.94 385.26 103.04 386.89 103.79C388.69 104.62 390.31 106.93 390.37 108.91C390.43 110.98 389.42 112.87 387.69 113.97L387.61 114.02C385.79 115.13 383.57 115.34 381.59 114.66C381.11 114.46 380.64 114.24 380.18 114L377.78 112.69Z" fill="#FFE3AC"/>
191
+ <path d="M375.65 109.38L381.37 112.56C383.02 113.48 385.03 113.44 386.64 112.45C389.14 110.93 389.14 107.3 386.64 105.77C385.03 104.79 383.01 104.75 381.36 105.66L375.64 108.84C375.45 108.96 375.45 109.26 375.65 109.38Z" fill="#9A3F21"/>
192
+ <path d="M446.22 111.25H388.02V112.82H443.41L446.22 111.25Z" fill="#FFE3AC"/>
193
+ <path d="M581.9 133.62H525.04L529.52 131.13C532.34 129.56 535.52 128.74 538.75 128.74H582.45C585.68 128.74 588.86 129.56 591.68 131.13L598.37 134.85C599.07 135.24 599.07 136.25 598.37 136.64L595.69 138.13L591.34 135.91C588.43 134.4 585.19 133.62 581.9 133.62Z" fill="#FFE3AC"/>
194
+ <path d="M522.83 134.85L525.04 133.62H581.9C585.19 133.62 588.43 134.4 591.36 135.9L595.71 138.12L591.7 140.35C588.88 141.92 585.7 142.74 582.47 142.74H538.77C535.54 142.74 532.36 141.92 529.54 140.35L522.85 136.63C522.13 136.25 522.13 135.24 522.83 134.85Z" fill="#FFF2D9"/>
195
+ <path d="M527.679 139.33L522.839 136.64C522.139 136.25 522.139 135.24 522.839 134.85L527.329 132.36L529.949 130.92C530.489 130.64 531.029 130.38 531.589 130.15C533.289 129.58 535.159 129.68 536.789 130.43C538.589 131.26 540.209 133.57 540.269 135.55C540.329 137.62 539.319 139.51 537.589 140.61L537.509 140.66C535.689 141.77 533.469 141.98 531.489 141.3C531.009 141.1 530.539 140.88 530.079 140.64L527.679 139.33Z" fill="#FFE3AC"/>
196
+ <path d="M525.55 136.01L531.27 139.19C532.92 140.11 534.93 140.07 536.54 139.08C539.04 137.56 539.04 133.93 536.54 132.4C534.93 131.42 532.91 131.38 531.26 132.29L525.54 135.47C525.35 135.6 525.35 135.89 525.55 136.01Z" fill="#9A3F21"/>
197
+ <path d="M596.119 137.89H537.919V139.45H593.309L596.119 137.89Z" fill="#FFE3AC"/>
198
+ <path d="M467.51 128.57H410.65L415.13 126.08C417.95 124.51 421.13 123.69 424.36 123.69H468.06C471.29 123.69 474.47 124.51 477.29 126.08L483.98 129.8C484.68 130.19 484.68 131.2 483.98 131.59L481.3 133.08L476.95 130.86C474.03 129.35 470.79 128.57 467.51 128.57Z" fill="#FFE3AC"/>
199
+ <path d="M408.44 129.8L410.65 128.57H467.51C470.8 128.57 474.04 129.35 476.97 130.85L481.32 133.07L477.31 135.3C474.49 136.87 471.31 137.69 468.08 137.69H424.38C421.15 137.69 417.97 136.87 415.15 135.3L408.46 131.58C407.74 131.2 407.74 130.19 408.44 129.8Z" fill="#FFF2D9"/>
200
+ <path d="M413.29 134.28L408.45 131.59C407.75 131.2 407.75 130.19 408.45 129.8L412.94 127.31L415.56 125.87C416.1 125.59 416.64 125.33 417.2 125.1C418.9 124.53 420.77 124.63 422.4 125.38C424.2 126.21 425.82 128.52 425.88 130.5C425.94 132.57 424.93 134.46 423.2 135.56L423.12 135.61C421.3 136.72 419.08 136.93 417.1 136.25C416.62 136.05 416.15 135.83 415.69 135.59L413.29 134.28Z" fill="#FFE3AC"/>
201
+ <path d="M411.16 130.96L416.88 134.14C418.53 135.06 420.54 135.02 422.15 134.03C424.65 132.51 424.65 128.88 422.15 127.35C420.54 126.37 418.52 126.33 416.87 127.24L411.15 130.42C410.95 130.54 410.96 130.84 411.16 130.96Z" fill="#9A3F21"/>
202
+ <path d="M481.72 132.84H423.53V134.4H478.92L481.72 132.84Z" fill="#FFE3AC"/>
203
+ <path d="M401.46 151.17H452.68L448.2 148.68C445.38 147.11 442.2 146.29 438.97 146.29H400.9C397.67 146.29 394.49 147.11 391.67 148.68L384.98 152.4C384.28 152.79 384.28 153.8 384.98 154.19L387.66 155.68L392.01 153.46C394.93 151.95 398.17 151.17 401.46 151.17Z" fill="#FFE3AC"/>
204
+ <path d="M454.89 152.4L452.68 151.17H401.46C398.17 151.17 394.93 151.95 392 153.45L387.65 155.67L391.66 157.9C394.48 159.47 397.66 160.29 400.89 160.29H438.96C442.19 160.29 445.37 159.47 448.19 157.9L454.88 154.18C455.59 153.8 455.59 152.79 454.89 152.4Z" fill="#FFF2D9"/>
205
+ <path d="M450.05 156.88L454.89 154.19C455.59 153.8 455.59 152.79 454.89 152.4L450.4 149.91L447.78 148.47C447.24 148.19 446.7 147.93 446.14 147.7C444.44 147.13 442.57 147.23 440.94 147.98C439.14 148.81 437.52 151.12 437.46 153.1C437.4 155.17 438.41 157.06 440.14 158.16L440.22 158.21C442.04 159.32 444.26 159.53 446.24 158.85C446.72 158.65 447.19 158.43 447.65 158.19L450.05 156.88Z" fill="#FFE3AC"/>
206
+ <path d="M452.17 153.56L446.45 156.74C444.8 157.66 442.79 157.62 441.18 156.63C438.68 155.11 438.68 151.48 441.18 149.95C442.79 148.97 444.81 148.93 446.46 149.84L452.18 153.02C452.38 153.14 452.38 153.44 452.17 153.56Z" fill="#9A3F21"/>
207
+ <path d="M387.24 155.44H439.8V157H390.04L387.24 155.44Z" fill="#FFE3AC"/>
208
+ <path d="M427.3 26.06L425.89 30.99L456.89 0H449.99L432.15 17.84C429.85 20.13 428.19 22.96 427.3 26.06Z" fill="#FFE3AC"/>
209
+ <path d="M425.2 33.42C424.98 34.19 425.69 34.9 426.46 34.68L433.82 32.58C436.93 31.69 439.76 30.03 442.04 27.74L469.79 0H456.89L425.9 30.99L425.2 33.42Z" fill="#FFF2D9"/>
210
+ <path d="M431.79 33.16L426.46 34.68C425.69 34.9 424.98 34.19 425.2 33.42L426.61 28.48L427.44 25.61C427.62 25.03 427.82 24.46 428.06 23.9C428.86 22.3 430.25 21.05 431.94 20.42C433.79 19.73 436.58 20.22 438.02 21.57C439.53 22.99 440.15 25.04 439.7 27.04L439.68 27.13C439.18 29.2 437.76 30.92 435.88 31.84C435.4 32.04 434.91 32.21 434.42 32.37L431.79 33.16Z" fill="#FFE3AC"/>
211
+ <path d="M427.94 32.32L434.23 30.52C436.04 30 437.44 28.55 437.88 26.72C438.57 23.88 436.01 21.31 433.16 22C431.32 22.44 429.87 23.84 429.35 25.66L427.56 31.95C427.5 32.17 427.71 32.38 427.94 32.32Z" fill="#9A3F21"/>
212
+ <path d="M439.12 26.01L465.13 0H462.91L438.01 24.9L439.12 26.01Z" fill="#FFE3AC"/>
213
+ <path d="M466.46 153.57L426.26 193.77L427.67 188.84C428.56 185.73 430.22 182.9 432.51 180.62L463.41 149.72C465.69 147.44 468.52 145.77 471.63 144.88L478.99 142.78C479.76 142.56 480.47 143.27 480.25 144.04L479.41 146.98L474.76 148.48C471.63 149.51 468.79 151.25 466.46 153.57Z" fill="#FFE3AC"/>
214
+ <path d="M425.57 196.21L426.26 193.78L466.46 153.58C468.78 151.26 471.63 149.51 474.76 148.5L479.41 147L478.15 151.41C477.26 154.52 475.6 157.35 473.31 159.63L442.41 190.53C440.13 192.81 437.3 194.48 434.19 195.37L426.83 197.47C426.06 197.69 425.35 196.98 425.57 196.21Z" fill="#FFF2D9"/>
215
+ <path d="M432.16 195.95L426.83 197.47C426.06 197.69 425.35 196.98 425.57 196.21L426.98 191.27L427.81 188.4C427.99 187.82 428.19 187.25 428.43 186.69C429.23 185.09 430.62 183.84 432.31 183.21C434.16 182.52 436.95 183.01 438.39 184.36C439.9 185.78 440.52 187.83 440.07 189.83L440.05 189.92C439.55 191.99 438.13 193.71 436.25 194.63C435.77 194.83 435.28 195 434.79 195.16L432.16 195.95Z" fill="#FFE3AC"/>
216
+ <path d="M428.31 195.1L434.6 193.3C436.41 192.78 437.81 191.33 438.25 189.5C438.94 186.66 436.38 184.09 433.53 184.78C431.69 185.22 430.24 186.62 429.72 188.44L427.93 194.73C427.87 194.96 428.08 195.17 428.31 195.1Z" fill="#9A3F21"/>
217
+ <path d="M479.53 146.54L438.38 187.68L439.49 188.79L478.66 149.62L479.53 146.54Z" fill="#FFE3AC"/>
218
+ <path d="M587.55 32.19C589.83 34.47 592.66 36.14 595.77 37.03L600.18 38.29L598.68 33.64C597.67 30.51 595.93 27.67 593.6 25.34L568.26 0H555.47C555.84 0.45 556.23 0.88 556.64 1.29L587.55 32.19Z" fill="#FFF2D9"/>
219
+ <path d="M598.69 33.64L600.19 38.29L603.13 39.13C603.9 39.35 604.61 38.64 604.39 37.87L602.289 30.51C601.399 27.4 599.74 24.57 597.45 22.29L575.169 0H568.27L593.62 25.35C595.93 27.67 597.67 30.51 598.69 33.64Z" fill="#FFE3AC"/>
220
+ <path d="M600.65 38.41L562.229 0H560.02L597.56 37.54L600.65 38.41Z" fill="#FFE3AC"/>
221
+ <path d="M532.94 159.85L492.74 119.65L497.67 121.06C500.78 121.95 503.61 123.61 505.89 125.9L536.79 156.8C539.07 159.08 540.74 161.91 541.63 165.02L543.73 172.38C543.95 173.15 543.24 173.86 542.47 173.64L539.53 172.8L538.03 168.15C537.01 165.02 535.27 162.17 532.94 159.85Z" fill="#FFE3AC"/>
222
+ <path d="M490.31 118.95L492.74 119.64L532.94 159.84C535.26 162.16 537.01 165.01 538.02 168.14L539.52 172.79L535.11 171.53C532 170.64 529.17 168.98 526.89 166.69L495.99 135.79C493.71 133.51 492.04 130.68 491.15 127.57L489.05 120.21C488.82 119.44 489.54 118.73 490.31 118.95Z" fill="#FFF2D9"/>
223
+ <path d="M490.57 125.54L489.05 120.21C488.83 119.44 489.54 118.73 490.31 118.95L495.25 120.36L498.12 121.19C498.7 121.37 499.27 121.57 499.83 121.81C501.43 122.61 502.68 124 503.31 125.69C504 127.54 503.51 130.33 502.16 131.77C500.74 133.28 498.69 133.9 496.69 133.45L496.6 133.43C494.53 132.93 492.81 131.51 491.89 129.63C491.69 129.15 491.52 128.66 491.36 128.17L490.57 125.54Z" fill="#FFE3AC"/>
224
+ <path d="M491.41 121.69L493.21 127.98C493.73 129.79 495.18 131.19 497.01 131.63C499.85 132.32 502.42 129.76 501.73 126.91C501.29 125.07 499.89 123.62 498.07 123.1L491.78 121.31C491.56 121.25 491.35 121.46 491.41 121.69Z" fill="#9A3F21"/>
225
+ <path d="M539.98 172.91L498.83 131.77L497.72 132.87L536.89 172.04L539.98 172.91Z" fill="#FFE3AC"/>
226
+ <path d="M476.5 49.52L422.64 67.72L426.09 63.93C428.26 61.54 431.01 59.74 434.07 58.71L475.47 44.72C478.53 43.69 481.8 43.45 484.98 44.03L492.51 45.41C493.3 45.55 493.62 46.51 493.08 47.1L491.02 49.37L486.19 48.66C482.94 48.17 479.62 48.47 476.5 49.52Z" fill="#FFE3AC"/>
227
+ <path d="M420.94 69.59L422.64 67.72L476.5 49.52C479.62 48.47 482.94 48.17 486.19 48.65L491.02 49.36L487.93 52.76C485.76 55.15 483.01 56.95 479.95 57.98L438.55 71.97C435.49 73 432.22 73.24 429.04 72.66L421.51 71.28C420.72 71.13 420.4 70.18 420.94 69.59Z" fill="#FFF2D9"/>
228
+ <path d="M426.96 72.28L421.51 71.28C420.72 71.14 420.4 70.18 420.94 69.59L424.39 65.79L426.41 63.59C426.83 63.15 427.26 62.73 427.72 62.33C429.15 61.25 430.95 60.74 432.74 60.93C434.71 61.14 436.99 62.81 437.68 64.66C438.4 66.6 438.05 68.72 436.76 70.31L436.7 70.38C435.33 72.02 433.3 72.93 431.2 72.91C430.68 72.88 430.17 72.82 429.65 72.74L426.96 72.28Z" fill="#FFE3AC"/>
229
+ <path d="M423.89 69.8099L430.33 70.9899C432.18 71.3299 434.08 70.6499 435.29 69.1999C437.17 66.9599 436.01 63.5199 433.16 62.8699C431.32 62.4499 429.39 63.0599 428.12 64.4599L423.72 69.2999C423.56 69.4799 423.65 69.7699 423.89 69.8099Z" fill="#9A3F21"/>
230
+ <path d="M491.33 49.0099L436.2 67.6299L436.7 69.11L489.18 51.38L491.33 49.0099Z" fill="#FFE3AC"/>
231
+ <path d="M492.73 72.61L438.87 90.81L442.32 87.02C444.49 84.63 447.24 82.83 450.3 81.8L491.7 67.81C494.76 66.78 498.03 66.54 501.21 67.12L508.74 68.5C509.53 68.64 509.85 69.6 509.31 70.19L507.25 72.46L502.42 71.75C499.16 71.26 495.84 71.56 492.73 72.61Z" fill="#FFE3AC"/>
232
+ <path d="M437.16 92.68L438.86 90.81L492.72 72.61C495.84 71.56 499.16 71.26 502.41 71.74L507.24 72.45L504.15 75.85C501.98 78.24 499.23 80.04 496.17 81.07L454.77 95.06C451.71 96.09 448.44 96.33 445.26 95.75L437.73 94.37C436.95 94.23 436.62 93.27 437.16 92.68Z" fill="#FFF2D9"/>
233
+ <path d="M443.19 95.37L437.74 94.37C436.95 94.23 436.63 93.27 437.17 92.68L440.62 88.88L442.64 86.68C443.06 86.24 443.49 85.82 443.95 85.42C445.38 84.34 447.18 83.83 448.97 84.02C450.94 84.23 453.22 85.9 453.91 87.75C454.63 89.69 454.28 91.81 452.99 93.4L452.93 93.47C451.56 95.11 449.53 96.02 447.43 96C446.91 95.97 446.4 95.91 445.88 95.83L443.19 95.37Z" fill="#FFE3AC"/>
234
+ <path d="M440.109 92.91L446.549 94.09C448.399 94.43 450.299 93.75 451.509 92.3C453.389 90.06 452.229 86.62 449.379 85.97C447.539 85.55 445.609 86.16 444.339 87.56L439.939 92.4C439.779 92.58 439.879 92.86 440.109 92.91Z" fill="#9A3F21"/>
235
+ <path d="M507.56 72.1L452.43 90.73L452.93 92.21L505.41 74.48L507.56 72.1Z" fill="#FFE3AC"/>
236
+ <path d="M422.08 8.50999C421.86 9.27999 422.57 9.98999 423.34 9.76999L426.28 8.92999V8.91999L425.82 9.04999L426.44 8.42999L427.78 4.27999C428.27 2.77999 428.92 1.33999 429.73 -0.0100098H424.54C424.4 0.36999 424.28 0.75999 424.17 1.13999L422.08 8.50999Z" fill="#FFE3AC"/>
237
+ <path d="M426.28 8.92999L428.91 8.17999L426.28 8.92999Z" fill="#FFF2D9"/>
238
+ <path d="M429.74 0C428.93 1.35 428.28 2.78 427.79 4.29L426.45 8.44L434.88 0H429.74Z" fill="#FFF2D9"/>
239
+ <path d="M428.91 8.18L430.7 7.67C433.81 6.78 436.64 5.12 438.92 2.83L441.75 0H437.09L428.91 8.18Z" fill="#FFF2D9"/>
240
+ <path d="M425.82 9.06L426.28 8.93L426.44 8.44L425.82 9.06Z" fill="#FFE3AC"/>
241
+ <path d="M434.88 0L426.44 8.44L426.28 8.93L428.91 8.18L437.09 0H434.88Z" fill="#FFE3AC"/>
242
+ <path d="M553.25 160.75L554.15 157.39C554.56 155.86 555.76 154.67 557.28 154.26L560.64 153.36C561.07 153.24 561.46 153.65 561.33 154.07L560.31 157.46C559.88 158.88 558.77 160 557.34 160.43L553.95 161.45C553.53 161.56 553.13 161.18 553.25 160.75Z" fill="#03582F"/>
243
+ <path d="M380.41 81.68L384.81 82.87C386.81 83.41 388.37 84.97 388.91 86.97L390.1 91.37C390.25 91.93 389.73 92.44 389.17 92.27L384.73 90.93C382.86 90.37 381.41 88.91 380.84 87.04L379.5 82.6C379.34 82.05 379.85 81.53 380.41 81.68Z" fill="#03582F"/>
244
+ <path d="M549.84 44.25H547.41V51.25H549.84V44.25Z" fill="#03582F"/>
245
+ <path d="M409.73 7.91998H405.27V12.38H409.73V7.91998Z" fill="#03582F"/>
246
+ <path d="M600.19 78.81H597.08V82.84H600.19V78.81Z" fill="#03582F"/>
247
+ <path d="M503.292 180.973L500.386 178.067L497.48 180.973L500.386 183.88L503.292 180.973Z" fill="#03582F"/>
248
+ <path d="M409.1 139.85H405.32V143.63H409.1V139.85Z" fill="#03582F"/>
249
+ <path d="M439.87 165H435.55V169.32H439.87V165Z" fill="#048848"/>
250
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M438.87 166H436.55V168.32H438.87V166ZM439.87 165V169.32H435.55V165H439.87Z" fill="#048848"/>
251
+ <path d="M461.23 171.39H458.96V178.36H461.23V171.39Z" fill="#048848"/>
252
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M460.23 172.39H459.96V177.36H460.23V172.39ZM461.23 171.39V178.36H458.96V171.39H461.23Z" fill="#048848"/>
253
+ <path d="M583.2 41.77L583.61 40.67C584.15 39.22 583.24 37.63 581.7 37.37L580.54 37.18L579.79 36.28C578.8 35.08 576.97 35.08 575.98 36.28L575.23 37.18L574.07 37.37C572.54 37.63 571.62 39.22 572.17 40.67L572.58 41.77L572.17 42.87C571.63 44.32 572.54 45.91 574.08 46.17L575.24 46.36L575.99 47.26C576.98 48.46 578.81 48.46 579.8 47.26L580.55 46.36L581.71 46.17C583.24 45.91 584.16 44.32 583.62 42.87L583.2 41.77Z" fill="white"/>
254
+ <path d="M425.97 18.71L426.38 17.61C426.92 16.16 426.01 14.57 424.47 14.31L423.31 14.12L422.56 13.22C421.57 12.02 419.74 12.02 418.75 13.22L418 14.12L416.84 14.31C415.31 14.57 414.39 16.16 414.93 17.61L415.34 18.71L414.93 19.81C414.39 21.26 415.3 22.85 416.84 23.11L418 23.3L418.75 24.2C419.74 25.4 421.57 25.4 422.56 24.2L423.31 23.3L424.47 23.11C426 22.85 426.92 21.26 426.37 19.81L425.97 18.71Z" fill="white"/>
255
+ <path d="M398.42 41.78C399.298 41.78 400.01 41.0681 400.01 40.19C400.01 39.3118 399.298 38.6 398.42 38.6C397.542 38.6 396.83 39.3118 396.83 40.19C396.83 41.0681 397.542 41.78 398.42 41.78Z" fill="white"/>
256
+ <path d="M393.86 101.56C395.506 101.56 396.84 100.226 396.84 98.58C396.84 96.9342 395.506 95.6 393.86 95.6C392.214 95.6 390.88 96.9342 390.88 98.58C390.88 100.226 392.214 101.56 393.86 101.56Z" fill="white"/>
257
+ <path d="M526.52 183.92C529.016 183.92 531.04 181.896 531.04 179.4C531.04 176.904 529.016 174.88 526.52 174.88C524.024 174.88 522 176.904 522 179.4C522 181.896 524.024 183.92 526.52 183.92Z" fill="white"/>
258
+ <path d="M399.26 136.61C400.596 136.61 401.68 135.527 401.68 134.19C401.68 132.853 400.596 131.77 399.26 131.77C397.923 131.77 396.84 132.853 396.84 134.19C396.84 135.527 397.923 136.61 399.26 136.61Z" fill="white"/>
259
+ <path d="M589.93 79.44C591.001 79.44 591.87 78.5714 591.87 77.5C591.87 76.4286 591.001 75.56 589.93 75.56C588.858 75.56 587.99 76.4286 587.99 77.5C587.99 78.5714 588.858 79.44 589.93 79.44Z" fill="white"/>
260
+ <path d="M560.59 36.47L561.49 33.11C561.9 31.58 563.1 30.39 564.62 29.98L567.98 29.08C568.41 28.96 568.8 29.37 568.67 29.79L567.65 33.18C567.22 34.6 566.11 35.72 564.68 36.15L561.29 37.17C560.87 37.29 560.47 36.9 560.59 36.47Z" fill="#03582F"/>
261
+ <path d="M433.54 40.47L436.9 41.37C438.43 41.78 439.62 42.98 440.03 44.5L440.93 47.86C441.05 48.29 440.64 48.68 440.22 48.55L436.83 47.53C435.41 47.1 434.29 45.99 433.86 44.56L432.84 41.17C432.73 40.76 433.12 40.36 433.54 40.47Z" fill="#03582F"/>
262
+ <path d="M515.46 82.49L519.41 80.22C521.21 79.19 523.42 79.19 525.21 80.22L529.16 82.49C529.66 82.78 529.65 83.51 529.14 83.79L525.06 85.98C523.34 86.9 521.28 86.9 519.56 85.98L515.48 83.79C514.96 83.51 514.95 82.78 515.46 82.49Z" fill="#03582F"/>
263
+ <path d="M498.5 153L504.56 154.63C507.32 155.37 509.47 157.52 510.21 160.28L511.84 166.34C512.05 167.11 511.33 167.81 510.56 167.58L504.45 165.74C501.88 164.96 499.87 162.96 499.1 160.39L497.26 154.28C497.03 153.51 497.73 152.79 498.5 153Z" fill="#03582F"/>
264
+ <path d="M472.07 13.16H464.65V15.83H472.07V13.16Z" fill="#03582F"/>
265
+ <path d="M463.702 113.303L461.22 110.821L458.738 113.303L461.22 115.785L463.702 113.303Z" fill="#03582F"/>
266
+ <path d="M539.52 118.24H529.21V121.65H539.52V118.24Z" fill="#03582F"/>
267
+ <path d="M429.71 97.9H425.53V102.08H429.71V97.9Z" fill="#03582F"/>
268
+ <path d="M429.71 101.72H425.53V105.9H429.71V101.72Z" fill="#048848"/>
269
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M428.71 102.72H426.53V104.9H428.71V102.72ZM429.71 101.72V105.9H425.53V101.72H429.71Z" fill="#048848"/>
270
+ <path d="M491.711 68.5783L488.755 65.6226L485.799 68.5783L488.755 71.534L491.711 68.5783Z" fill="#048848"/>
271
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M490.296 68.5783L488.755 67.0368L487.213 68.5783L488.755 70.1198L490.296 68.5783ZM491.711 68.5783L488.755 71.534L485.799 68.5783L488.755 65.6226L491.711 68.5783Z" fill="#048848"/>
272
+ <path d="M530.12 13.16H526.6V18.71H530.12V13.16Z" fill="#048848"/>
273
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M529.12 14.16H527.6V17.71H529.12V14.16ZM530.12 13.16V18.71H526.6V13.16H530.12Z" fill="#048848"/>
274
+ <path d="M557.29 104.49H550.51V106.71H557.29V104.49Z" fill="#048848"/>
275
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M556.29 105.49H551.51V105.71H556.29V105.49ZM557.29 104.49V106.71H550.51V104.49H557.29Z" fill="#048848"/>
276
+ <path d="M484.51 105H481.31V111.25H484.51V105Z" fill="#048848"/>
277
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M483.51 106H482.31V110.25H483.51V106ZM484.51 105V111.25H481.31V105H484.51Z" fill="#048848"/>
278
+ <path d="M456.41 48.58H453.28V54.62H456.41V48.58Z" fill="#048848"/>
279
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M455.41 49.58H454.28V53.62H455.41V49.58ZM456.41 48.58V54.62H453.28V48.58H456.41Z" fill="#048848"/>
280
+ <path d="M509.86 50.5L510.35 49.2C510.99 47.48 509.91 45.61 508.1 45.31L506.73 45.08L505.85 44.01C504.69 42.6 502.52 42.6 501.36 44.01L500.48 45.08L499.11 45.31C497.3 45.61 496.22 47.49 496.86 49.2L497.35 50.5L496.86 51.8C496.22 53.52 497.3 55.39 499.11 55.69L500.48 55.92L501.36 56.99C502.52 58.4 504.69 58.4 505.85 56.99L506.73 55.92L508.1 55.69C509.91 55.39 510.99 53.51 510.35 51.8L509.86 50.5Z" fill="white"/>
281
+ <path d="M434.18 85.84L434.67 84.54C435.31 82.82 434.23 80.95 432.42 80.65L431.05 80.42L430.17 79.35C429.01 77.94 426.84 77.94 425.68 79.35L424.8 80.42L423.43 80.65C421.62 80.95 420.54 82.83 421.18 84.54L421.67 85.84L421.18 87.14C420.54 88.86 421.62 90.73 423.43 91.03L424.8 91.26L425.68 92.33C426.84 93.74 429.01 93.74 430.17 92.33L431.05 91.26L432.42 91.03C434.23 90.73 435.31 88.85 434.67 87.14L434.18 85.84Z" fill="white"/>
282
+ <path d="M524.51 118.98L525 117.68C525.64 115.96 524.56 114.09 522.75 113.79L521.38 113.56L520.5 112.49C519.34 111.08 517.17 111.08 516.01 112.49L515.13 113.56L513.76 113.79C511.95 114.09 510.87 115.97 511.51 117.68L512 118.98L511.51 120.28C510.87 122 511.95 123.87 513.76 124.17L515.13 124.4L516.01 125.47C517.17 126.88 519.34 126.88 520.5 125.47L521.38 124.4L522.75 124.17C524.56 123.87 525.64 121.99 525 120.28L524.51 118.98Z" fill="white"/>
283
+ <path d="M490.48 171.39L490.89 170.29C491.43 168.84 490.52 167.25 488.98 166.99L487.82 166.8L487.07 165.9C486.08 164.7 484.25 164.7 483.26 165.9L482.51 166.8L481.35 166.99C479.82 167.25 478.9 168.84 479.44 170.29L479.85 171.39L479.44 172.49C478.9 173.94 479.81 175.53 481.35 175.79L482.51 175.98L483.26 176.88C484.25 178.08 486.08 178.08 487.07 176.88L487.82 175.98L488.98 175.79C490.51 175.53 491.43 173.94 490.89 172.49L490.48 171.39Z" fill="white"/>
284
+ <path d="M523.66 73.77C524.946 73.77 525.99 72.7268 525.99 71.44C525.99 70.1532 524.946 69.11 523.66 69.11C522.373 69.11 521.33 70.1532 521.33 71.44C521.33 72.7268 522.373 73.77 523.66 73.77Z" fill="white"/>
285
+ <path d="M527.35 28.81C528.548 28.81 529.52 27.8384 529.52 26.64C529.52 25.4415 528.548 24.47 527.35 24.47C526.151 24.47 525.18 25.4415 525.18 26.64C525.18 27.8384 526.151 28.81 527.35 28.81Z" fill="white"/>
286
+ <path d="M449.249 45.04C450.514 45.04 451.539 44.0147 451.539 42.75C451.539 41.4852 450.514 40.46 449.249 40.46C447.985 40.46 446.959 41.4852 446.959 42.75C446.959 44.0147 447.985 45.04 449.249 45.04Z" fill="white"/>
287
+ <path d="M442.449 101.72C443.272 101.72 443.939 101.053 443.939 100.23C443.939 99.4071 443.272 98.74 442.449 98.74C441.627 98.74 440.959 99.4071 440.959 100.23C440.959 101.053 441.627 101.72 442.449 101.72Z" fill="white"/>
288
+ <path d="M487.98 143.29C489.526 143.29 490.78 142.036 490.78 140.49C490.78 138.944 489.526 137.69 487.98 137.69C486.433 137.69 485.18 138.944 485.18 140.49C485.18 142.036 486.433 143.29 487.98 143.29Z" fill="white"/>
289
+ <path d="M554.55 120.03C555.925 120.03 557.04 118.915 557.04 117.54C557.04 116.165 555.925 115.05 554.55 115.05C553.174 115.05 552.06 116.165 552.06 117.54C552.06 118.915 553.174 120.03 554.55 120.03Z" fill="white"/>
290
+ <path d="M1417.7 24.37C1415.91 25.46 1413.9 26.14 1411.81 26.37L1410.72 26.49C1395.32 28.18 1380.86 34.73 1369.44 45.19L1357.82 55.84L1308 90.48L1305.09 103.49L1312.86 124.07L1334.41 131.72L1363.34 128.73L1440.01 88.13V19.35L1434.21 14.35L1417.7 24.37Z" fill="#FF6937"/>
291
+ <path d="M1413.22 136.13L1433.14 124.71C1437.39 122.28 1440.01 117.75 1440.01 112.86V102.9L1410.44 121.12L1413.22 136.13Z" fill="black"/>
292
+ <path d="M993.82 80.66C923.24 178.7 945.5 315.4 1043.55 385.98C1060.72 398.34 1079.07 407.85 1098.05 414.61H1244.54C1260.33 409.02 1275.54 401.6 1289.82 392.41C1313.62 377.09 1344.33 377.78 1367.3 394.32L1395.49 414.61H1440V357.07L1409.77 335.31C1386.8 318.78 1376.4 289.87 1383.37 262.44C1404.87 177.87 1374.24 85.01 1299.13 30.94C1279.91 17.1 1259.21 6.84001 1237.8 0.0100098H1105.01C1061.76 13.73 1022.38 40.99 993.82 80.66Z" fill="black"/>
293
+ <path d="M1094.6 380.28L1066.43 400.42C1076.7 406.05 1087.28 410.77 1098.05 414.61H1119.14L1094.6 380.28Z" fill="#5A0A00"/>
294
+ <path d="M1122.7 414.6H1173.56L1156.36 390.54L1122.7 414.6Z" fill="#5A0A00"/>
295
+ <path d="M969.77 129.57L966.33 132.03C960.05 148.83 955.96 166.15 953.98 183.6L970.21 206.3L1006.22 180.56L969.77 129.57Z" fill="#5A0A00"/>
296
+ <path d="M986.74 325.89C994.59 338.24 1003.76 349.91 1014.21 360.67L1058.16 329.29L1032.42 293.28L986.74 325.89Z" fill="#5A0A00"/>
297
+ <path d="M970.22 206.29L952.84 218.71C953.63 235.21 956.27 251.58 960.72 267.49L995.96 242.29L970.22 206.29Z" fill="#5A0A00"/>
298
+ <path d="M1002.71 72.38C932.13 170.42 954.39 307.12 1052.44 377.7C1078.48 396.45 1107.25 408.64 1136.78 414.61H1223.43C1249.97 409.27 1275.56 399.03 1298.71 384.13C1322.51 368.81 1353.22 369.5 1376.19 386.04L1415.88 414.62H1440V342.4L1418.66 327.04C1395.69 310.51 1385.29 281.6 1392.26 254.17C1413.76 169.6 1383.13 76.74 1308.02 22.67C1295.42 13.6 1282.17 6.06002 1268.51 0.0200195H1091.96C1057.42 15.19 1026.36 39.53 1002.71 72.38Z" fill="#870F00"/>
299
+ <path d="M1387.3 196.76L1387.02 197.25H1181.69L1302.45 32.68C1281.86 17.73 1258.38 6.5 1233.01 0H1130.67C1041.95 22.74 976.36 103.24 976.36 199.05C976.36 312.53 1068.35 404.53 1181.84 404.53C1295.32 404.53 1387.32 312.54 1387.32 199.05C1387.31 198.29 1387.31 197.52 1387.3 196.76Z" fill="#C14F29"/>
300
+ <path d="M1357.94 237.98L1357.7 223.42C1357.61 218.17 1358.14 212.93 1359.27 207.8L1361.59 197.25H1181.7L1286.38 54.59C1283.76 52.8 1281.27 50.83 1278.93 48.68L1268.24 38.89C1255.52 27.23 1238.81 20.9 1221.56 21.19L1207 21.43C1201.75 21.52 1196.51 20.99 1191.38 19.86L1177.07 16.71C1160.27 13.01 1142.7 15.88 1127.94 24.71L1115.37 32.24C1110.87 34.94 1106.06 37.1 1101.06 38.68L1087.18 43.07C1070.73 48.27 1056.9 59.58 1048.53 74.67L1041.5 87.34C1038.93 91.97 1035.83 96.29 1032.25 100.19L1022.46 110.88C1010.8 123.6 1004.47 140.31 1004.76 157.56L1005 172.12C1005.09 177.37 1004.56 182.61 1003.43 187.74L1000.28 202.05C996.58 218.85 999.45 236.42 1008.28 251.18L1015.81 263.75C1018.51 268.25 1020.67 273.06 1022.25 278.06L1026.64 291.94C1031.84 308.39 1043.15 322.22 1058.24 330.59L1070.91 337.62C1075.54 340.19 1079.86 343.29 1083.76 346.87L1094.45 356.66C1107.17 368.32 1123.88 374.65 1141.13 374.36L1155.69 374.12C1160.94 374.03 1166.18 374.56 1171.31 375.69L1185.62 378.84C1202.42 382.54 1219.99 379.67 1234.75 370.84L1247.32 363.31C1251.82 360.61 1256.63 358.45 1261.63 356.87L1275.51 352.48C1291.96 347.28 1305.79 335.97 1314.16 320.88L1321.19 308.21C1323.76 303.58 1326.86 299.26 1330.44 295.36L1340.23 284.67C1351.89 271.94 1358.23 255.23 1357.94 237.98Z" fill="#FFC043"/>
301
+ <path d="M1196.31 90.06C1186.72 87.65 1176.68 87.65 1167.08 90.06C1154.83 93.14 1146.25 104.15 1146.25 116.78C1146.25 123.25 1151.49 128.49 1157.96 128.49H1205.44C1211.91 128.49 1217.15 123.25 1217.15 116.78C1217.14 104.15 1208.56 93.14 1196.31 90.06Z" fill="#F6F0EA"/>
302
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1167.32 91.0298C1176.76 88.66 1186.64 88.6601 1196.07 91.0298L1167.32 91.0298ZM1167.32 91.0299C1155.52 93.9982 1147.25 104.608 1147.25 116.78C1147.25 122.698 1152.04 127.49 1157.96 127.49H1205.44C1211.36 127.49 1216.15 122.698 1216.15 116.781C1216.14 104.608 1207.87 93.998 1196.07 91.0298M1217.15 116.78C1217.15 123.25 1211.91 128.49 1205.44 128.49H1157.96C1151.49 128.49 1146.25 123.25 1146.25 116.78C1146.25 104.15 1154.83 93.14 1167.08 90.06C1176.68 87.65 1186.72 87.65 1196.31 90.06C1208.56 93.14 1217.14 104.15 1217.15 116.78Z" fill="#F6F0EA"/>
303
+ <path d="M1159.37 122.91C1159.37 116.84 1163.39 111.49 1169.22 109.81C1177.37 107.45 1186.03 107.45 1194.18 109.81C1200.01 111.5 1204.03 116.84 1204.03 122.91C1204.03 125.99 1201.53 128.48 1198.46 128.48H1164.95C1161.86 128.48 1159.37 125.99 1159.37 122.91Z" fill="#5C3C2E"/>
304
+ <path d="M1192.44 114.17L1192.3 114.1C1185.65 110.68 1177.75 110.68 1171.1 114.1L1170.95 114.17C1170.15 114.58 1169.61 115.38 1169.54 116.28L1167.44 141.93H1195.95L1193.85 116.28C1193.78 115.39 1193.24 114.59 1192.44 114.17Z" fill="#F6F0EA"/>
305
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1193.85 116.28C1193.78 115.39 1193.24 114.59 1192.44 114.17L1192.3 114.1C1185.65 110.68 1177.75 110.68 1171.1 114.1L1170.95 114.17C1170.15 114.58 1169.61 115.38 1169.54 116.28L1167.44 141.93H1195.95L1193.85 116.28ZM1194.86 140.93L1192.85 116.358C1192.81 115.825 1192.48 115.326 1191.98 115.059L1191.84 114.989C1185.48 111.717 1177.92 111.717 1171.56 114.989L1171.54 114.998L1171.39 115.067C1170.9 115.323 1170.58 115.814 1170.54 116.358L1170.54 116.362L1168.53 140.93H1194.86Z" fill="#F6F0EA"/>
306
+ <path d="M1170.15 118.5L1170.31 118.42C1177.46 114.74 1185.95 114.74 1193.1 118.42L1193.26 118.5C1193.59 118.67 1193.87 118.9 1194.1 119.17L1193.86 116.29C1193.79 115.39 1193.25 114.59 1192.45 114.18L1192.31 114.11C1185.66 110.69 1177.76 110.69 1171.11 114.11L1170.97 114.18C1170.17 114.59 1169.63 115.39 1169.56 116.29L1169.32 119.17C1169.53 118.9 1169.82 118.67 1170.15 118.5Z" fill="#D2BBB0"/>
307
+ <path d="M1265.22 264.85C1271.86 258.33 1276.78 250.26 1279.55 241.37C1283.08 230.02 1278.44 217.73 1268.3 211.54C1263.11 208.37 1256.33 210.01 1253.16 215.21L1229.89 253.35C1226.72 258.54 1228.36 265.32 1233.56 268.49C1243.69 274.68 1256.74 273.18 1265.22 264.85Z" fill="#F6F0EA"/>
308
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1264.52 264.137C1271.04 257.733 1275.87 249.806 1278.59 241.073C1281.99 230.161 1277.53 218.345 1267.78 212.394C1263.06 209.512 1256.9 211.002 1254.01 215.731L1230.74 253.871C1227.86 258.589 1229.35 264.754 1234.08 267.636L1234.08 267.637C1243.82 273.587 1256.37 272.146 1264.52 264.137ZM1279.55 241.37C1276.78 250.26 1271.86 258.33 1265.22 264.85C1256.74 273.18 1243.69 274.68 1233.56 268.49C1228.36 265.32 1226.72 258.54 1229.89 253.35L1253.16 215.21C1256.33 210.01 1263.11 208.37 1268.3 211.54C1278.44 217.73 1283.08 230.02 1279.55 241.37Z" fill="#F6F0EA"/>
309
+ <path d="M1256.94 219.07C1261.82 222.05 1264.14 227.89 1262.64 233.41C1260.54 241.11 1256.3 248.07 1250.41 253.46C1246.19 257.32 1239.94 257.93 1235.06 254.95C1232.59 253.44 1231.81 250.21 1233.31 247.74L1249.74 220.82C1251.24 218.34 1254.47 217.56 1256.94 219.07Z" fill="#5C3C2E"/>
310
+ <path d="M1247.75 249.92L1247.88 249.84C1253.89 246.17 1257.76 239.83 1258.27 232.81L1258.28 232.66C1258.34 231.81 1257.96 230.99 1257.27 230.49L1237.7 216.23L1223.72 239.14L1245.35 250.02C1246.12 250.4 1247.02 250.36 1247.75 249.92Z" fill="#F6F0EA"/>
311
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1257.27 230.49L1237.7 216.23L1223.72 239.14L1245.35 250.02C1246.12 250.4 1247.02 250.36 1247.75 249.92L1247.88 249.84C1253.89 246.17 1257.76 239.83 1258.27 232.81L1258.28 232.66C1258.34 231.81 1257.96 230.99 1257.27 230.49ZM1257.27 232.74C1257.27 232.739 1257.27 232.738 1257.27 232.738L1257.28 232.59C1257.32 232.082 1257.09 231.596 1256.68 231.3L1256.68 231.298L1237.99 217.677L1225.14 238.734L1245.79 249.123C1245.79 249.124 1245.79 249.124 1245.8 249.125C1246.26 249.351 1246.79 249.327 1247.23 249.066C1247.23 249.065 1247.23 249.064 1247.23 249.064L1247.36 248.987C1253.09 245.485 1256.78 239.437 1257.27 232.74Z" fill="#F6F0EA"/>
312
+ <path d="M1255.2 229.89L1255.19 230.05C1254.64 237.6 1250.48 244.42 1244.02 248.36L1243.88 248.45C1243.59 248.63 1243.26 248.75 1242.93 248.8L1245.36 250.02C1246.12 250.4 1247.02 250.37 1247.75 249.92L1247.88 249.84C1253.89 246.17 1257.76 239.83 1258.27 232.81L1258.28 232.66C1258.34 231.81 1257.96 230.99 1257.27 230.49L1255.07 228.89C1255.18 229.2 1255.22 229.54 1255.2 229.89Z" fill="#D2BBB0"/>
313
+ <path d="M1082.24 237.59C1084.66 246.58 1089.27 254.83 1095.66 261.6C1103.81 270.25 1116.8 272.25 1127.17 266.45C1132.48 263.48 1134.38 256.77 1131.41 251.46L1109.62 212.46C1106.65 207.15 1099.94 205.25 1094.63 208.22C1084.26 214 1079.15 226.11 1082.24 237.59Z" fill="#F6F0EA"/>
314
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1131.41 251.46L1109.62 212.46C1106.65 207.15 1099.94 205.25 1094.63 208.22C1084.26 214 1079.15 226.11 1082.24 237.59C1084.66 246.58 1089.27 254.83 1095.66 261.6C1103.81 270.25 1116.8 272.25 1127.17 266.45C1132.48 263.48 1134.38 256.77 1131.41 251.46ZM1108.75 212.948L1130.54 251.948L1130.54 251.948C1133.24 256.776 1131.51 262.877 1126.68 265.577C1116.71 271.153 1104.22 269.231 1096.39 260.914L1096.39 260.914C1090.11 254.264 1085.58 246.16 1083.21 237.33C1080.23 226.292 1085.15 214.65 1095.12 209.093L1095.12 209.093C1099.95 206.393 1106.05 208.12 1108.75 212.948Z" fill="#F6F0EA"/>
315
+ <path d="M1126.19 252.86C1121.2 255.65 1114.97 254.8 1110.9 250.78C1105.22 245.17 1101.25 238.06 1099.44 230.28C1098.15 224.71 1100.69 218.96 1105.68 216.17C1108.21 214.76 1111.4 215.66 1112.82 218.19L1128.2 245.72C1129.62 248.25 1128.72 251.44 1126.19 252.86Z" fill="#5C3C2E"/>
316
+ <path d="M1103.83 229.7L1103.84 229.85C1104.08 236.89 1107.7 243.37 1113.57 247.27L1113.7 247.35C1114.41 247.82 1115.31 247.89 1116.08 247.54L1138.11 237.49L1125.02 214.07L1104.91 227.57C1104.21 228.04 1103.8 228.85 1103.83 229.7Z" fill="#F6F0EA"/>
317
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1104.84 229.8L1104.84 229.816C1105.07 236.527 1108.52 242.705 1114.11 246.428L1114.24 246.507L1114.25 246.516C1114.67 246.796 1115.21 246.837 1115.66 246.63C1115.67 246.63 1115.67 246.63 1115.67 246.63L1136.71 237.031L1124.68 215.505L1105.47 228.4C1105.06 228.673 1104.82 229.147 1104.83 229.651L1104.84 229.8ZM1103.83 229.7L1103.84 229.85C1104.08 236.89 1107.7 243.37 1113.57 247.27L1113.7 247.35C1114.41 247.82 1115.31 247.89 1116.08 247.54L1138.11 237.49L1125.02 214.07L1104.91 227.57C1104.21 228.04 1103.8 228.85 1103.83 229.7Z" fill="#F6F0EA"/>
318
+ <path d="M1117.62 246.02L1117.48 245.93C1111.17 241.75 1107.28 234.77 1107.02 227.21L1107.01 227.05C1107 226.7 1107.05 226.37 1107.17 226.05L1104.91 227.57C1104.2 228.04 1103.79 228.85 1103.82 229.7L1103.83 229.85C1104.07 236.89 1107.69 243.37 1113.56 247.27L1113.69 247.35C1114.4 247.82 1115.3 247.89 1116.07 247.54L1118.55 246.41C1118.22 246.34 1117.91 246.21 1117.62 246.02Z" fill="#D2BBB0"/>
319
+ <path d="M1106.65 289.01L1100.14 305.83C1098.21 310.82 1097.8 316.28 1098.96 321.5C1100.48 328.35 1104.6 334.34 1110.45 338.22C1115.75 341.74 1119.97 346.66 1122.64 352.43L1128.03 364.09L1134.45 330.66C1137.54 314.59 1129.01 298.55 1113.96 292.12L1106.65 289.01Z" fill="#03582F"/>
320
+ <path d="M1104.91 282.62C1105.29 283.17 1105.62 283.68 1105.96 284.21C1106.29 284.73 1106.62 285.26 1106.94 285.79C1107.58 286.85 1108.2 287.91 1108.81 288.98C1110.02 291.12 1111.16 293.3 1112.24 295.5C1114.4 299.9 1116.3 304.42 1117.97 309.02C1118.79 311.32 1119.55 313.64 1120.24 315.98C1120.91 318.33 1121.55 320.68 1122.07 323.06C1123.15 327.81 1123.87 332.63 1124.27 337.46C1123.54 332.67 1122.49 327.93 1121.1 323.31C1120.42 320.99 1119.63 318.71 1118.81 316.45C1117.97 314.19 1117.06 311.96 1116.11 309.75C1114.17 305.35 1112 301.05 1109.59 296.91C1108.39 294.84 1107.14 292.79 1105.82 290.8C1105.17 289.8 1104.49 288.82 1103.81 287.84C1103.47 287.35 1103.12 286.87 1102.77 286.4C1102.42 285.93 1102.05 285.44 1101.72 285.02L1104.91 282.62Z" fill="#10462D"/>
321
+ <path d="M1029.29 138.53L1027.18 141.82C1017.56 156.81 1018.71 176.3 1030.03 190.05L1041.36 203.81L1040.34 189.45C1039.92 183.58 1041.09 177.7 1043.71 172.43C1048.89 162.03 1045.54 149.41 1035.89 142.95L1029.29 138.53Z" fill="#03582F"/>
322
+ <path d="M1031.42 137.29C1031.35 137.42 1031.28 137.58 1031.2 137.73C1031.12 137.88 1031.05 138.04 1030.98 138.19C1030.83 138.5 1030.69 138.82 1030.55 139.14C1030.26 139.77 1030.01 140.43 1029.74 141.07C1029.23 142.38 1028.74 143.7 1028.3 145.04C1027.42 147.72 1026.67 150.45 1026.1 153.23C1026.03 153.58 1025.95 153.92 1025.88 154.27L1025.7 155.32C1025.58 156.02 1025.44 156.72 1025.34 157.42C1025.15 158.83 1024.94 160.24 1024.84 161.66C1024.54 164.5 1024.52 167.36 1024.56 170.22C1024.25 167.37 1024.01 164.5 1024.04 161.62C1024.01 160.18 1024.09 158.74 1024.15 157.29C1024.18 156.57 1024.26 155.85 1024.31 155.13L1024.4 154.05C1024.44 153.69 1024.48 153.33 1024.53 152.97C1024.84 150.09 1025.35 147.23 1026 144.39C1026.32 142.97 1026.7 141.56 1027.1 140.15C1027.32 139.45 1027.52 138.75 1027.76 138.05C1027.87 137.7 1027.99 137.35 1028.12 137C1028.18 136.83 1028.24 136.65 1028.31 136.47C1028.38 136.29 1028.44 136.12 1028.52 135.92L1031.42 137.29Z" fill="#10462D"/>
323
+ <path d="M1120.03 172.68L1133.33 180.06C1144.12 186.05 1156.6 188.24 1168.78 186.29L1188.63 183.11L1176.57 170.46C1170.52 164.11 1162.29 160.29 1153.54 159.75C1146.57 159.32 1139.64 161 1133.64 164.57L1120.03 172.68Z" fill="#03582F"/>
324
+ <path d="M1116.96 171.34C1119.07 171.17 1121.11 171.08 1123.18 171.01C1124.21 170.98 1125.24 170.96 1126.27 170.94C1127.3 170.93 1128.33 170.92 1129.36 170.92C1133.48 170.92 1137.59 171.07 1141.69 171.35C1143.74 171.46 1145.79 171.68 1147.83 171.85L1150.89 172.2L1152.42 172.38L1153.94 172.6C1154.96 172.75 1155.97 172.88 1156.98 173.04L1160.01 173.56C1160.51 173.65 1161.02 173.73 1161.52 173.82L1163.03 174.13L1166.04 174.75L1163 174.33L1161.48 174.12C1160.97 174.06 1160.46 174.01 1159.96 173.96L1156.91 173.64C1155.89 173.55 1154.87 173.48 1153.86 173.41L1152.33 173.3L1150.8 173.22L1147.74 173.08C1145.7 173.04 1143.66 172.96 1141.63 172.98C1137.56 172.97 1133.48 173.09 1129.43 173.36C1128.42 173.42 1127.4 173.51 1126.39 173.58L1123.36 173.85C1121.35 174.05 1119.31 174.28 1117.35 174.57L1116.96 171.34Z" fill="#10462D"/>
325
+ <path d="M1161.4 255.41L1159.82 237.95C1158.86 227.41 1163.08 217.05 1171.13 210.18C1178.14 204.2 1187.35 201.45 1196.49 202.62L1207.33 204.01L1206.21 215.7C1205.51 222.99 1201.68 229.62 1195.71 233.86C1190.06 237.88 1183.01 239.39 1176.2 238.06L1175.83 237.99C1171.59 237.16 1167.37 239.51 1165.86 243.55L1161.4 255.41Z" fill="#03582F"/>
326
+ <path d="M1210.07 205.23C1209.04 205.43 1207.96 205.67 1206.91 205.93C1205.85 206.18 1204.79 206.46 1203.74 206.74C1201.63 207.31 1199.54 207.94 1197.46 208.64C1193.31 210.03 1189.24 211.64 1185.32 213.6C1181.42 215.56 1177.65 217.85 1174.33 220.7C1172.67 222.12 1171.14 223.7 1169.8 225.44C1168.47 227.18 1167.37 229.11 1166.59 231.18C1167.24 229.07 1168.23 227.05 1169.47 225.2C1170.71 223.35 1172.18 221.65 1173.78 220.1C1176.99 216.99 1180.69 214.42 1184.55 212.18C1188.42 209.95 1192.47 208.05 1196.62 206.38C1198.69 205.55 1200.79 204.77 1202.91 204.06C1203.97 203.7 1205.03 203.36 1206.11 203.03C1207.19 202.7 1208.25 202.39 1209.37 202.1L1210.07 205.23Z" fill="#10462D"/>
327
+ <path d="M1234.24 316.09L1232.6 332.06C1231.03 347.32 1220.74 360.28 1206.24 365.28L1180.6 374.11L1187.04 363.55C1189.96 358.77 1191.79 353.4 1192.4 347.83L1192.85 343.72C1194.32 330.46 1204.67 319.92 1217.9 318.21L1234.24 316.09Z" fill="#03582F"/>
328
+ <path d="M1237.05 315.69C1236.77 316.21 1236.52 316.63 1236.25 317.09L1235.45 318.41L1234.63 319.71L1233.79 320.99C1233.23 321.84 1232.66 322.68 1232.08 323.53C1231.5 324.36 1230.92 325.2 1230.33 326.03C1227.98 329.34 1225.53 332.56 1223.02 335.74C1220.53 338.92 1217.95 342.03 1215.35 345.12L1211.41 349.71L1207.41 354.24L1211.02 349.4L1214.56 344.51C1216.88 341.22 1219.19 337.93 1221.39 334.57C1223.61 331.22 1225.76 327.84 1227.8 324.39C1228.31 323.53 1228.81 322.66 1229.31 321.8C1229.8 320.93 1230.29 320.06 1230.77 319.19L1231.48 317.88L1232.16 316.56L1232.82 315.24C1233.03 314.81 1233.25 314.34 1233.42 313.96L1237.05 315.69Z" fill="#10462D"/>
329
+ <path d="M1294.08 249.37L1303.38 239.41C1307.56 234.93 1314 233.37 1319.77 235.43C1324.07 236.96 1327.46 240.33 1329.03 244.61L1329.91 247.01C1332.27 253.44 1338.57 257.56 1345.41 257.14L1350.74 256.81L1340.53 263.44C1333.81 267.81 1325.68 269.48 1317.78 268.12C1308.43 266.51 1300.29 260.81 1295.58 252.58L1294.07 249.95" fill="#03582F"/>
330
+ <path d="M1291.31 245.91C1291.65 246.11 1292.05 246.33 1292.43 246.54C1292.81 246.75 1293.2 246.96 1293.59 247.17C1294.37 247.59 1295.16 247.98 1295.96 248.38C1297.55 249.17 1299.16 249.94 1300.79 250.66C1304.05 252.12 1307.35 253.49 1310.71 254.73C1314.07 255.96 1317.47 257.13 1320.92 258.14C1322.64 258.68 1324.38 259.13 1326.11 259.6C1326.98 259.85 1327.85 260.04 1328.73 260.26L1331.36 260.89L1328.68 260.5C1327.79 260.37 1326.89 260.25 1326.01 260.09C1324.23 259.78 1322.45 259.49 1320.68 259.11C1317.13 258.42 1313.61 257.57 1310.11 256.64C1306.6 255.71 1303.14 254.63 1299.69 253.46C1297.97 252.88 1296.26 252.24 1294.55 251.59C1293.7 251.26 1292.85 250.92 1292 250.57C1291.58 250.39 1291.15 250.22 1290.73 250.03C1290.3 249.85 1289.89 249.66 1289.44 249.45L1291.31 245.91Z" fill="#10462D"/>
331
+ <path d="M1157.15 69.93L1142.76 56.71C1134.19 48.84 1122.36 45.55 1110.96 47.87L1093.62 51.4L1110.26 63.62C1116.79 68.41 1124.73 70.89 1132.82 70.65L1157.15 69.93Z" fill="#03582F"/>
332
+ <path d="M1159.66 71.94L1121.38 57.38L1160.54 69.38L1159.66 71.94Z" fill="#10462D"/>
333
+ <path d="M1052.37 242.69C1047.63 252.17 1037.45 251.54 1028.71 253.43C1028.25 255.76 1028.1 258.21 1028.34 260.73C1029.52 273.26 1040.01 283.08 1052.59 283.44C1066.79 283.84 1078.42 272.46 1078.42 258.35C1078.42 255.04 1077.78 251.88 1076.62 248.99C1074.99 244.95 1071.97 241.58 1068.02 239.74C1062.04 236.96 1054.99 236.87 1052.37 242.69Z" fill="#AB1300"/>
334
+ <path d="M1052.37 242.69C1047.63 252.17 1037.45 251.54 1028.71 253.43C1028.43 254.85 1028.27 256.32 1028.24 257.82C1033.91 258.08 1045.52 257.85 1051.54 252.96C1057.68 247.96 1056.96 241.5 1065.98 238.93C1060.52 237.02 1054.7 237.52 1052.37 242.69Z" fill="#870F00"/>
335
+ <path d="M1043.3 265.3L1040.18 270.71C1039.87 271.24 1040.26 271.91 1040.87 271.91H1047.11C1047.72 271.91 1048.11 271.24 1047.8 270.71L1044.68 265.3C1044.38 264.77 1043.61 264.77 1043.3 265.3Z" fill="#E11900"/>
336
+ <path d="M1064.66 269.35L1059.69 268.21C1059.24 268.11 1058.84 268.53 1058.98 268.98L1060.48 273.85C1060.62 274.3 1061.18 274.43 1061.5 274.08L1064.97 270.35C1065.29 270.01 1065.12 269.46 1064.66 269.35Z" fill="#E11900"/>
337
+ <path d="M1068.42 251.53L1063.37 252.21C1062.91 252.27 1062.69 252.81 1062.97 253.18L1066.09 257.21C1066.38 257.58 1066.95 257.5 1067.13 257.07L1069.06 252.35C1069.24 251.93 1068.89 251.47 1068.42 251.53Z" fill="#E11900"/>
338
+ <path d="M1088.06 104.84C1088.01 104.83 1087.97 104.83 1087.92 104.83C1076.27 103.65 1065.48 111.43 1062.85 122.84C1062.33 125.09 1062.09 127.45 1062.16 129.88C1062.6 144.48 1074.61 156.31 1089.22 156.54C1104.61 156.78 1117.16 144.37 1117.16 129.04C1117.16 126.02 1116.67 123.11 1115.77 120.4C1115.54 119.7 1114.89 119.22 1114.16 119.21C1104.97 119.05 1097.3 105.85 1088.06 104.84Z" fill="#AB1300"/>
339
+ <path d="M1115.77 120.39C1115.54 119.69 1114.89 119.21 1114.16 119.2C1104.98 119.05 1097.3 105.85 1088.07 104.84C1088.02 104.83 1087.98 104.83 1087.93 104.83C1085.59 104.59 1083.29 104.72 1081.08 105.17C1083.9 105.26 1086.96 105.84 1089.67 107.39C1094.92 110.4 1095.7 120.5 1104.86 122.54C1110.22 123.73 1113.76 122.02 1115.77 120.39C1115.77 120.4 1115.77 120.4 1115.77 120.39Z" fill="#870F00"/>
340
+ <path d="M1085.61 141.7L1078.76 140.13C1078.13 139.99 1077.59 140.57 1077.78 141.19L1079.85 147.91C1080.04 148.52 1080.82 148.7 1081.26 148.23L1086.05 143.08C1086.47 142.61 1086.23 141.84 1085.61 141.7Z" fill="#E11900"/>
341
+ <path d="M1083.06 116.7L1075.08 121.71C1074.35 122.17 1074.39 123.24 1075.15 123.65L1083.48 128.06C1084.24 128.46 1085.15 127.89 1085.12 127.03L1084.78 117.61C1084.74 116.75 1083.78 116.24 1083.06 116.7Z" fill="#E11900"/>
342
+ <path d="M1105.59 137.09L1099.46 134.02C1098.9 133.74 1098.25 134.17 1098.28 134.8L1098.69 141.65C1098.73 142.28 1099.43 142.63 1099.95 142.28L1105.67 138.5C1106.19 138.15 1106.15 137.37 1105.59 137.09Z" fill="#E11900"/>
343
+ <path d="M1251.38 52.11C1242.95 44.89 1230.92 44.49 1220.49 50.51C1216.99 52.76 1212.71 52.98 1208.72 51.77C1206.69 55.4 1205.52 59.57 1205.52 64.03C1205.52 77.89 1216.76 89.13 1230.62 89.13C1244.48 89.13 1255.72 77.89 1255.72 64.03C1255.72 60.64 1255.04 57.4 1253.82 54.45C1253.07 53.62 1252.26 52.84 1251.38 52.11Z" fill="#AB1300"/>
344
+ <path d="M1219 58.33C1227.53 57.42 1236.79 45.59 1253.81 54.44C1253.07 53.62 1252.26 52.84 1251.38 52.11C1242.95 44.89 1230.92 44.49 1220.49 50.51C1216.99 52.76 1212.71 52.98 1208.72 51.77C1208.72 51.76 1210.47 59.24 1219 58.33Z" fill="#870F00"/>
345
+ <path d="M1243.7 62.53L1236.67 66.94C1236.03 67.34 1236.06 68.29 1236.73 68.65L1244.07 72.53C1244.74 72.88 1245.54 72.38 1245.52 71.62L1245.22 63.32C1245.18 62.57 1244.34 62.12 1243.7 62.53Z" fill="#E11900"/>
346
+ <path d="M1220.19 66.56L1217.88 72.45C1217.67 72.99 1218.12 73.55 1218.69 73.47L1224.94 72.53C1225.51 72.44 1225.77 71.77 1225.41 71.32L1221.47 66.38C1221.11 65.91 1220.4 66.02 1220.19 66.56Z" fill="#E11900"/>
347
+ <path d="M1199.86 271.71C1199.32 272.15 1198.71 272.52 1198.02 272.78C1191.6 274.38 1185.98 268.77 1179.56 268.77C1172.74 268.77 1168.73 274.39 1162.71 276.39C1161.75 276.8 1160.74 276.93 1159.71 276.9C1157.73 280.49 1156.6 284.62 1156.6 289.01C1156.6 302.87 1167.84 314.11 1181.7 314.11C1195.56 314.11 1206.8 302.87 1206.8 289.01C1206.79 282.3 1204.15 276.21 1199.86 271.71Z" fill="#AB1300"/>
348
+ <path d="M1170.15 280.74C1177.38 279.51 1177.87 273.26 1187.65 275.07C1197.43 276.88 1199.86 271.71 1199.86 271.71C1199.32 272.15 1198.71 272.52 1198.02 272.78C1191.6 274.38 1185.98 268.77 1179.56 268.77C1172.74 268.77 1168.73 274.39 1162.71 276.39C1161.75 276.8 1160.74 276.93 1159.71 276.9C1159.71 276.91 1162.92 281.97 1170.15 280.74Z" fill="#870F00"/>
349
+ <path d="M1191.88 283.34L1190.68 288.57C1190.57 289.05 1191.02 289.46 1191.49 289.32L1196.62 287.74C1197.09 287.6 1197.23 287 1196.87 286.67L1192.94 283.02C1192.57 282.68 1191.98 282.86 1191.88 283.34Z" fill="#E11900"/>
350
+ <path d="M1173.23 288.41L1167.02 286.99C1166.45 286.86 1165.96 287.39 1166.13 287.95L1168 294.04C1168.17 294.6 1168.88 294.76 1169.28 294.33L1173.62 289.66C1174.02 289.23 1173.8 288.54 1173.23 288.41Z" fill="#E11900"/>
351
+ <path d="M1184.46 296.05L1180.74 301.22C1180.4 301.69 1180.7 302.36 1181.28 302.41L1187.62 303.05C1188.2 303.11 1188.62 302.52 1188.39 301.99L1185.77 296.18C1185.53 295.65 1184.8 295.58 1184.46 296.05Z" fill="#E11900"/>
352
+ <path d="M1279.53 279.59C1266.7 280.18 1256.28 290.58 1255.65 303.4C1255.17 313.33 1260.46 322.06 1268.45 326.55C1275.21 321.84 1285.77 327.5 1293.5 324.14C1293.53 324.13 1293.55 324.12 1293.58 324.11C1299.14 321.81 1303.38 317.03 1304.95 311.22C1305.51 309.13 1305.82 306.93 1305.82 304.67C1305.81 290.4 1293.93 278.92 1279.53 279.59Z" fill="#AB1300"/>
353
+ <path d="M1268.45 326.21V326.55C1268.45 326.55 1268.47 326.49 1268.51 326.38L1268.45 326.21Z" fill="#870F00"/>
354
+ <path d="M1293.51 324.14C1293.54 324.13 1293.56 324.12 1293.59 324.11C1296.29 322.99 1298.68 321.29 1300.6 319.16C1297.12 320.16 1292.2 320.4 1284.47 319.87C1272.07 319.03 1268.98 325.26 1268.52 326.38L1268.56 326.49C1275.32 321.9 1285.81 327.48 1293.51 324.14Z" fill="#870F00"/>
355
+ <path d="M1279.64 304.54L1278.24 310.65C1278.11 311.21 1278.64 311.7 1279.18 311.53L1285.17 309.69C1285.72 309.52 1285.88 308.82 1285.46 308.43L1280.87 304.16C1280.45 303.77 1279.77 303.98 1279.64 304.54Z" fill="#E11900"/>
356
+ <path d="M1291.5 290.93L1287.65 292.04C1287.3 292.14 1287.19 292.59 1287.45 292.84L1290.34 295.62C1290.6 295.87 1291.04 295.75 1291.13 295.39L1292.1 291.5C1292.18 291.15 1291.85 290.83 1291.5 290.93Z" fill="#E11900"/>
357
+ <path d="M1263.28 296.57L1264.78 301.79C1264.92 302.27 1265.52 302.42 1265.86 302.06L1269.63 298.15C1269.97 297.79 1269.8 297.2 1269.32 297.08L1264.05 295.77C1263.58 295.65 1263.15 296.1 1263.28 296.57Z" fill="#E11900"/>
358
+ <path d="M1066.18 204.28C1069.99 204.28 1073.07 201.195 1073.07 197.39C1073.07 193.585 1069.99 190.5 1066.18 190.5C1062.37 190.5 1059.29 193.585 1059.29 197.39C1059.29 201.195 1062.37 204.28 1066.18 204.28Z" fill="#F6F0EA"/>
359
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1066.18 203.28C1069.43 203.28 1072.07 200.643 1072.07 197.39C1072.07 194.137 1069.43 191.5 1066.18 191.5C1062.93 191.5 1060.29 194.137 1060.29 197.39C1060.29 200.643 1062.93 203.28 1066.18 203.28ZM1073.07 197.39C1073.07 201.195 1069.99 204.28 1066.18 204.28C1062.37 204.28 1059.29 201.195 1059.29 197.39C1059.29 193.585 1062.37 190.5 1066.18 190.5C1069.99 190.5 1073.07 193.585 1073.07 197.39Z" fill="#F6F0EA"/>
360
+ <path d="M1091.23 181.22C1093.41 181.22 1095.17 179.456 1095.17 177.28C1095.17 175.104 1093.41 173.34 1091.23 173.34C1089.05 173.34 1087.29 175.104 1087.29 177.28C1087.29 179.456 1089.05 181.22 1091.23 181.22Z" fill="#F6F0EA"/>
361
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1091.23 180.22C1092.85 180.22 1094.17 178.904 1094.17 177.28C1094.17 175.656 1092.85 174.34 1091.23 174.34C1089.61 174.34 1088.29 175.656 1088.29 177.28C1088.29 178.904 1089.61 180.22 1091.23 180.22ZM1095.17 177.28C1095.17 179.456 1093.41 181.22 1091.23 181.22C1089.05 181.22 1087.29 179.456 1087.29 177.28C1087.29 175.104 1089.05 173.34 1091.23 173.34C1093.41 173.34 1095.17 175.104 1095.17 177.28Z" fill="#F6F0EA"/>
362
+ <path d="M1093.2 86.26C1096.46 86.26 1099.11 83.614 1099.11 80.35C1099.11 77.086 1096.46 74.44 1093.2 74.44C1089.94 74.44 1087.29 77.086 1087.29 80.35C1087.29 83.614 1089.94 86.26 1093.2 86.26Z" fill="#F6F0EA"/>
363
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1093.2 85.26C1095.91 85.26 1098.11 83.0617 1098.11 80.35C1098.11 77.6383 1095.91 75.44 1093.2 75.44C1090.49 75.44 1088.29 77.6383 1088.29 80.35C1088.29 83.0617 1090.49 85.26 1093.2 85.26ZM1099.11 80.35C1099.11 83.614 1096.46 86.26 1093.2 86.26C1089.94 86.26 1087.29 83.614 1087.29 80.35C1087.29 77.086 1089.94 74.44 1093.2 74.44C1096.46 74.44 1099.11 77.086 1099.11 80.35Z" fill="#F6F0EA"/>
364
+ <path d="M1125.13 104.05C1127.2 104.05 1128.88 102.371 1128.88 100.3C1128.88 98.2289 1127.2 96.55 1125.13 96.55C1123.06 96.55 1121.38 98.2289 1121.38 100.3C1121.38 102.371 1123.06 104.05 1125.13 104.05Z" fill="#F6F0EA"/>
365
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1125.13 103.05C1126.65 103.05 1127.88 101.819 1127.88 100.3C1127.88 98.7812 1126.65 97.55 1125.13 97.55C1123.61 97.55 1122.38 98.7812 1122.38 100.3C1122.38 101.819 1123.61 103.05 1125.13 103.05ZM1128.88 100.3C1128.88 102.371 1127.2 104.05 1125.13 104.05C1123.06 104.05 1121.38 102.371 1121.38 100.3C1121.38 98.2289 1123.06 96.55 1125.13 96.55C1127.2 96.55 1128.88 98.2289 1128.88 100.3Z" fill="#F6F0EA"/>
366
+ <path d="M1012.3 235.25C1014.84 235.25 1016.9 233.191 1016.9 230.65C1016.9 228.11 1014.84 226.05 1012.3 226.05C1009.76 226.05 1007.7 228.11 1007.7 230.65C1007.7 233.191 1009.76 235.25 1012.3 235.25Z" fill="#F6F0EA"/>
367
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1012.3 234.25C1014.29 234.25 1015.9 232.638 1015.9 230.65C1015.9 228.662 1014.29 227.05 1012.3 227.05C1010.31 227.05 1008.7 228.662 1008.7 230.65C1008.7 232.638 1010.31 234.25 1012.3 234.25ZM1016.9 230.65C1016.9 233.191 1014.84 235.25 1012.3 235.25C1009.76 235.25 1007.7 233.191 1007.7 230.65C1007.7 228.11 1009.76 226.05 1012.3 226.05C1014.84 226.05 1016.9 228.11 1016.9 230.65Z" fill="#F6F0EA"/>
368
+ <path d="M1072.82 317.93C1075.91 317.93 1078.42 315.423 1078.42 312.33C1078.42 309.237 1075.91 306.73 1072.82 306.73C1069.73 306.73 1067.22 309.237 1067.22 312.33C1067.22 315.423 1069.73 317.93 1072.82 317.93Z" fill="#F6F0EA"/>
369
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1072.82 316.93C1075.36 316.93 1077.42 314.87 1077.42 312.33C1077.42 309.789 1075.36 307.73 1072.82 307.73C1070.28 307.73 1068.22 309.789 1068.22 312.33C1068.22 314.87 1070.28 316.93 1072.82 316.93ZM1078.42 312.33C1078.42 315.423 1075.91 317.93 1072.82 317.93C1069.73 317.93 1067.22 315.423 1067.22 312.33C1067.22 309.237 1069.73 306.73 1072.82 306.73C1075.91 306.73 1078.42 309.237 1078.42 312.33Z" fill="#F6F0EA"/>
370
+ <path d="M1141.13 283.28C1142.8 283.28 1144.15 281.928 1144.15 280.26C1144.15 278.592 1142.8 277.24 1141.13 277.24C1139.46 277.24 1138.11 278.592 1138.11 280.26C1138.11 281.928 1139.46 283.28 1141.13 283.28Z" fill="#F6F0EA"/>
371
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1141.13 282.28C1142.25 282.28 1143.15 281.376 1143.15 280.26C1143.15 279.144 1142.25 278.24 1141.13 278.24C1140.01 278.24 1139.11 279.144 1139.11 280.26C1139.11 281.376 1140.01 282.28 1141.13 282.28ZM1144.15 280.26C1144.15 281.928 1142.8 283.28 1141.13 283.28C1139.46 283.28 1138.11 281.928 1138.11 280.26C1138.11 278.592 1139.46 277.24 1141.13 277.24C1142.8 277.24 1144.15 278.592 1144.15 280.26Z" fill="#F6F0EA"/>
372
+ <path d="M1163.07 350.42C1166.65 350.42 1169.55 347.519 1169.55 343.94C1169.55 340.361 1166.65 337.46 1163.07 337.46C1159.49 337.46 1156.59 340.361 1156.59 343.94C1156.59 347.519 1159.49 350.42 1163.07 350.42Z" fill="#F6F0EA"/>
373
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1163.07 349.42C1166.1 349.42 1168.55 346.966 1168.55 343.94C1168.55 340.913 1166.1 338.46 1163.07 338.46C1160.04 338.46 1157.59 340.913 1157.59 343.94C1157.59 346.966 1160.04 349.42 1163.07 349.42ZM1169.55 343.94C1169.55 347.519 1166.65 350.42 1163.07 350.42C1159.49 350.42 1156.59 347.519 1156.59 343.94C1156.59 340.361 1159.49 337.46 1163.07 337.46C1166.65 337.46 1169.55 340.361 1169.55 343.94Z" fill="#F6F0EA"/>
374
+ <path d="M1225.97 288.84C1228.53 288.84 1230.61 286.763 1230.61 284.2C1230.61 281.637 1228.53 279.56 1225.97 279.56C1223.41 279.56 1221.33 281.637 1221.33 284.2C1221.33 286.763 1223.41 288.84 1225.97 288.84Z" fill="#F6F0EA"/>
375
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1225.97 287.84C1227.98 287.84 1229.61 286.21 1229.61 284.2C1229.61 282.19 1227.98 280.56 1225.97 280.56C1223.96 280.56 1222.33 282.19 1222.33 284.2C1222.33 286.21 1223.96 287.84 1225.97 287.84ZM1230.61 284.2C1230.61 286.763 1228.53 288.84 1225.97 288.84C1223.41 288.84 1221.33 286.763 1221.33 284.2C1221.33 281.637 1223.41 279.56 1225.97 279.56C1228.53 279.56 1230.61 281.637 1230.61 284.2Z" fill="#F6F0EA"/>
376
+ <path d="M1201.73 253.93C1203.45 253.93 1204.85 252.533 1204.85 250.81C1204.85 249.087 1203.45 247.69 1201.73 247.69C1200.01 247.69 1198.61 249.087 1198.61 250.81C1198.61 252.533 1200.01 253.93 1201.73 253.93Z" fill="#F6F0EA"/>
377
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1201.73 252.93C1202.9 252.93 1203.85 251.981 1203.85 250.81C1203.85 249.639 1202.9 248.69 1201.73 248.69C1200.56 248.69 1199.61 249.639 1199.61 250.81C1199.61 251.981 1200.56 252.93 1201.73 252.93ZM1204.85 250.81C1204.85 252.533 1203.45 253.93 1201.73 253.93C1200.01 253.93 1198.61 252.533 1198.61 250.81C1198.61 249.087 1200.01 247.69 1201.73 247.69C1203.45 247.69 1204.85 249.087 1204.85 250.81Z" fill="#F6F0EA"/>
378
+ <path d="M1145.22 206.22C1146.34 206.22 1147.24 205.316 1147.24 204.2C1147.24 203.084 1146.34 202.18 1145.22 202.18C1144.1 202.18 1143.2 203.084 1143.2 204.2C1143.2 205.316 1144.1 206.22 1145.22 206.22Z" fill="#F6F0EA"/>
379
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1145.22 205.22C1145.78 205.22 1146.24 204.763 1146.24 204.2C1146.24 203.637 1145.78 203.18 1145.22 203.18C1144.66 203.18 1144.2 203.637 1144.2 204.2C1144.2 204.763 1144.66 205.22 1145.22 205.22ZM1147.24 204.2C1147.24 205.316 1146.34 206.22 1145.22 206.22C1144.1 206.22 1143.2 205.316 1143.2 204.2C1143.2 203.084 1144.1 202.18 1145.22 202.18C1146.34 202.18 1147.24 203.084 1147.24 204.2Z" fill="#F6F0EA"/>
380
+ <path d="M1197.91 164.18C1200.02 164.18 1201.73 162.47 1201.73 160.36C1201.73 158.25 1200.02 156.54 1197.91 156.54C1195.8 156.54 1194.09 158.25 1194.09 160.36C1194.09 162.47 1195.8 164.18 1197.91 164.18Z" fill="#F6F0EA"/>
381
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1197.91 163.18C1199.47 163.18 1200.73 161.918 1200.73 160.36C1200.73 158.803 1199.47 157.54 1197.91 157.54C1196.35 157.54 1195.09 158.803 1195.09 160.36C1195.09 161.917 1196.35 163.18 1197.91 163.18ZM1201.73 160.36C1201.73 162.47 1200.02 164.18 1197.91 164.18C1195.8 164.18 1194.09 162.47 1194.09 160.36C1194.09 158.25 1195.8 156.54 1197.91 156.54C1200.02 156.54 1201.73 158.25 1201.73 160.36Z" fill="#F6F0EA"/>
382
+ <path d="M1175.6 47.49C1177.91 47.49 1179.79 45.6141 1179.79 43.3C1179.79 40.9859 1177.91 39.11 1175.6 39.11C1173.29 39.11 1171.41 40.9859 1171.41 43.3C1171.41 45.6141 1173.29 47.49 1175.6 47.49Z" fill="#F6F0EA"/>
383
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1175.6 46.49C1177.36 46.49 1178.79 45.0618 1178.79 43.3C1178.79 41.5382 1177.36 40.11 1175.6 40.11C1173.84 40.11 1172.41 41.5382 1172.41 43.3C1172.41 45.0618 1173.84 46.49 1175.6 46.49ZM1179.79 43.3C1179.79 45.6141 1177.91 47.49 1175.6 47.49C1173.29 47.49 1171.41 45.6141 1171.41 43.3C1171.41 40.9859 1173.29 39.11 1175.6 39.11C1177.91 39.11 1179.79 40.9859 1179.79 43.3Z" fill="#F6F0EA"/>
384
+ <path d="M1335.37 234.09C1337.59 234.09 1339.39 232.29 1339.39 230.07C1339.39 227.85 1337.59 226.05 1335.37 226.05C1333.15 226.05 1331.35 227.85 1331.35 230.07C1331.35 232.29 1333.15 234.09 1335.37 234.09Z" fill="#F6F0EA"/>
385
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1335.37 233.09C1337.04 233.09 1338.39 231.738 1338.39 230.07C1338.39 228.402 1337.04 227.05 1335.37 227.05C1333.7 227.05 1332.35 228.402 1332.35 230.07C1332.35 231.738 1333.7 233.09 1335.37 233.09ZM1339.39 230.07C1339.39 232.29 1337.59 234.09 1335.37 234.09C1333.15 234.09 1331.35 232.29 1331.35 230.07C1331.35 227.85 1333.15 226.05 1335.37 226.05C1337.59 226.05 1339.39 227.85 1339.39 230.07Z" fill="#F6F0EA"/>
386
+ <path d="M1305.7 284.04C1307.58 284.04 1309.1 282.518 1309.1 280.64C1309.1 278.762 1307.58 277.24 1305.7 277.24C1303.82 277.24 1302.3 278.762 1302.3 280.64C1302.3 282.518 1303.82 284.04 1305.7 284.04Z" fill="#F6F0EA"/>
387
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1305.7 283.04C1307.03 283.04 1308.1 281.965 1308.1 280.64C1308.1 279.315 1307.03 278.24 1305.7 278.24C1304.37 278.24 1303.3 279.314 1303.3 280.64C1303.3 281.966 1304.37 283.04 1305.7 283.04ZM1309.1 280.64C1309.1 282.518 1307.58 284.04 1305.7 284.04C1303.82 284.04 1302.3 282.518 1302.3 280.64C1302.3 278.762 1303.82 277.24 1305.7 277.24C1307.58 277.24 1309.1 278.762 1309.1 280.64Z" fill="#F6F0EA"/>
388
+ <path d="M1250.61 339.66C1253.44 339.66 1255.74 337.363 1255.74 334.53C1255.74 331.697 1253.44 329.4 1250.61 329.4C1247.78 329.4 1245.48 331.697 1245.48 334.53C1245.48 337.363 1247.78 339.66 1250.61 339.66Z" fill="#F6F0EA"/>
389
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1250.61 338.66C1252.89 338.66 1254.74 336.811 1254.74 334.53C1254.74 332.249 1252.89 330.4 1250.61 330.4C1248.33 330.4 1246.48 332.249 1246.48 334.53C1246.48 336.811 1248.33 338.66 1250.61 338.66ZM1255.74 334.53C1255.74 337.363 1253.44 339.66 1250.61 339.66C1247.78 339.66 1245.48 337.363 1245.48 334.53C1245.48 331.697 1247.78 329.4 1250.61 329.4C1253.44 329.4 1255.74 331.697 1255.74 334.53Z" fill="#F6F0EA"/>
390
+ <path d="M1297.67 197.25C1302 204.78 1310.13 209.86 1319.44 209.86C1328.75 209.86 1336.88 204.79 1341.21 197.25H1297.67Z" fill="#AB1300"/>
391
+ <path d="M1261.89 197.25C1261.9 199.24 1263.52 200.85 1265.51 200.85C1267.5 200.85 1269.12 199.24 1269.13 197.25H1261.89Z" fill="#F6F0EA"/>
392
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1263.1 198.25C1263.49 199.19 1264.43 199.85 1265.51 199.85C1266.59 199.85 1267.53 199.19 1267.92 198.25H1263.1ZM1262.04 198.25C1261.94 197.933 1261.89 197.597 1261.89 197.25H1269.13C1269.13 197.597 1269.08 197.933 1268.98 198.25C1268.54 199.753 1267.15 200.85 1265.51 200.85C1263.87 200.85 1262.48 199.753 1262.04 198.25Z" fill="#F6F0EA"/>
393
+ <path d="M1423.13 181.2C1422.92 118.12 1393.73 56.02 1339.01 16.01L1217.8 181.2H1423.13Z" fill="#C14F29"/>
394
+ <path d="M1382.99 115.76C1380.29 111.26 1378.13 106.45 1376.55 101.45L1372.16 87.57C1366.96 71.12 1355.65 57.29 1340.56 48.92L1327.89 41.89C1326.04 40.86 1324.23 39.74 1322.49 38.55L1217.8 181.2H1397.69L1398.52 177.45C1402.22 160.65 1399.35 143.08 1390.52 128.32L1382.99 115.76Z" fill="#FFC043"/>
395
+ <path d="M1320.19 119.01L1319.29 110.13C1318.45 101.84 1321.95 93.71 1328.55 88.63C1331.49 86.36 1334.92 84.81 1338.57 84.09L1344.24 82.97C1348.17 82.19 1351.63 79.88 1353.85 76.54L1357.66 70.79V91.36C1357.66 104.4 1347.98 115.41 1335.06 117.08L1320.19 119.01Z" fill="#03582F"/>
396
+ <path d="M1349.28 94.9L1317.82 121.85L1315.83 119.34L1349.28 94.9Z" fill="#10462D"/>
397
+ <path d="M1250.83 139.44C1249.82 147.31 1254.07 146.85 1260.74 155.99C1265 161.82 1265.09 167.06 1265.91 170.59C1269.65 172.23 1273.81 173.04 1278.17 172.79C1292.86 171.93 1304.07 159.32 1303.21 144.63C1302.35 129.94 1289.74 118.73 1275.05 119.59C1263.23 120.29 1253.67 128.58 1250.83 139.44Z" fill="#AB1300"/>
398
+ <path d="M1268.06 153.07C1263.25 141.78 1249.7 139.37 1258.36 126.78C1254.76 130.17 1252.11 134.54 1250.83 139.44C1249.82 147.31 1254.07 146.85 1260.74 155.99C1265 161.82 1265.09 167.06 1265.91 170.59C1265.91 170.59 1272.87 164.36 1268.06 153.07Z" fill="#870F00"/>
399
+ <path d="M1274.48 130.25L1268.5 134C1267.95 134.34 1267.98 135.15 1268.55 135.45L1274.78 138.75C1275.35 139.05 1276.03 138.62 1276.01 137.98L1275.75 130.93C1275.74 130.28 1275.03 129.91 1274.48 130.25Z" fill="#E11900"/>
400
+ <path d="M1288.62 139.26L1287.42 144.49C1287.31 144.97 1287.76 145.38 1288.23 145.24L1293.36 143.66C1293.83 143.52 1293.97 142.92 1293.61 142.59L1289.68 138.94C1289.31 138.6 1288.73 138.78 1288.62 139.26Z" fill="#E11900"/>
401
+ <path d="M1285.32 156.78L1278.59 155.24C1277.97 155.1 1277.44 155.68 1277.62 156.28L1279.65 162.88C1279.84 163.48 1280.6 163.66 1281.03 163.2L1285.73 158.14C1286.16 157.68 1285.93 156.92 1285.32 156.78Z" fill="#E11900"/>
402
+ <path d="M1377.07 181.2C1379.17 177.53 1380.38 173.27 1380.38 168.74C1380.38 165.15 1379.62 161.73 1378.26 158.64C1373.25 157.19 1367.63 156.74 1362.92 154.82C1358.51 153.06 1355.4 148.49 1354.99 143.65C1341.27 143.81 1330.19 154.98 1330.19 168.74C1330.19 173.28 1331.39 177.53 1333.5 181.2H1377.07Z" fill="#AB1300"/>
403
+ <path d="M1356.51 159.31C1362.85 164.58 1369.9 156.99 1378.26 158.65C1373.25 157.2 1367.63 156.75 1362.92 154.83C1358.51 153.07 1355.4 148.5 1354.99 143.66C1354.99 143.66 1350.17 154.04 1356.51 159.31Z" fill="#870F00"/>
404
+ <path d="M1341.34 165.51L1347.86 167C1348.46 167.14 1348.98 166.58 1348.8 165.99L1346.83 159.59C1346.65 159.01 1345.91 158.83 1345.49 159.28L1340.94 164.18C1340.52 164.64 1340.74 165.37 1341.34 165.51Z" fill="#E11900"/>
405
+ <path d="M1363.6 175.05L1370.65 176.66C1371.29 176.81 1371.86 176.2 1371.66 175.57L1369.53 168.66C1369.34 168.03 1368.53 167.84 1368.08 168.33L1363.16 173.63C1362.72 174.11 1362.96 174.9 1363.6 175.05Z" fill="#E11900"/>
406
+ <path d="M1289.94 104.03C1293.26 104.03 1295.96 101.335 1295.96 98.01C1295.96 94.6852 1293.26 91.99 1289.94 91.99C1286.62 91.99 1283.92 94.6852 1283.92 98.01C1283.92 101.335 1286.62 104.03 1289.94 104.03Z" fill="#F6F0EA"/>
407
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1289.94 103.03C1292.71 103.03 1294.96 100.782 1294.96 98.01C1294.96 95.2375 1292.71 92.99 1289.94 92.99C1287.17 92.99 1284.92 95.2375 1284.92 98.01C1284.92 100.782 1287.17 103.03 1289.94 103.03ZM1295.96 98.01C1295.96 101.335 1293.26 104.03 1289.94 104.03C1286.62 104.03 1283.92 101.335 1283.92 98.01C1283.92 94.6852 1286.62 91.99 1289.94 91.99C1293.26 91.99 1295.96 94.6852 1295.96 98.01Z" fill="#F6F0EA"/>
408
+ <path d="M1316.45 64.31C1318.08 64.31 1319.41 62.9848 1319.41 61.35C1319.41 59.7153 1318.08 58.39 1316.45 58.39C1314.81 58.39 1313.49 59.7153 1313.49 61.35C1313.49 62.9848 1314.81 64.31 1316.45 64.31Z" fill="#F6F0EA"/>
409
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1316.45 63.31C1317.53 63.31 1318.41 62.4325 1318.41 61.35C1318.41 60.2676 1317.53 59.39 1316.45 59.39C1315.37 59.39 1314.49 60.2675 1314.49 61.35C1314.49 62.4325 1315.37 63.31 1316.45 63.31ZM1319.41 61.35C1319.41 62.9848 1318.08 64.31 1316.45 64.31C1314.81 64.31 1313.49 62.9848 1313.49 61.35C1313.49 59.7153 1314.81 58.39 1316.45 58.39C1318.08 58.39 1319.41 59.7153 1319.41 61.35Z" fill="#F6F0EA"/>
410
+ <path d="M1372.96 135.28C1375.06 135.28 1376.77 133.574 1376.77 131.47C1376.77 129.366 1375.06 127.66 1372.96 127.66C1370.86 127.66 1369.15 129.366 1369.15 131.47C1369.15 133.574 1370.86 135.28 1372.96 135.28Z" fill="#F6F0EA"/>
411
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1372.96 134.28C1374.51 134.28 1375.77 133.022 1375.77 131.47C1375.77 129.918 1374.51 128.66 1372.96 128.66C1371.41 128.66 1370.15 129.918 1370.15 131.47C1370.15 133.022 1371.41 134.28 1372.96 134.28ZM1376.77 131.47C1376.77 133.574 1375.06 135.28 1372.96 135.28C1370.86 135.28 1369.15 133.574 1369.15 131.47C1369.15 129.366 1370.86 127.66 1372.96 127.66C1375.06 127.66 1376.77 129.366 1376.77 131.47Z" fill="#F6F0EA"/>
412
+ <path d="M1305.24 181.2C1305.24 179.2 1303.62 177.58 1301.62 177.58C1299.62 177.58 1298 179.2 1298 181.2H1305.24Z" fill="#F6F0EA"/>
413
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1304.04 180.2C1303.65 179.249 1302.71 178.58 1301.62 178.58C1300.53 178.58 1299.59 179.249 1299.2 180.2H1304.04ZM1305.1 180.2C1304.67 178.687 1303.27 177.58 1301.62 177.58C1299.97 177.58 1298.57 178.687 1298.14 180.2C1298.05 180.518 1298 180.853 1298 181.2H1305.24C1305.24 180.853 1305.19 180.518 1305.1 180.2Z" fill="#F6F0EA"/>
414
+ <path d="M1306.02 60.98L1297.19 64.19C1285.86 68.31 1275.41 74.53 1266.39 82.53L1264.89 83.86L1274.63 70.58L1309.78 55.84L1306.02 60.98Z" fill="#FFE3AC"/>
415
+ <path d="M1256.89 117.97C1250.1 122.72 1242.16 125.54 1233.89 126.12L1217.14 148.95L1224.96 143.89C1232.41 139.07 1241.11 136.5 1249.98 136.5H1250.6L1271.92 107.44L1256.89 117.97ZM1233.51 133.19C1232.95 129.35 1252.83 124.02 1253.05 128.2C1253.27 132.38 1234.02 136.7 1233.51 133.19Z" fill="#FFE3AC"/>
416
+ <path d="M1283.01 82.7701C1276.78 86.91 1269.3 88.7601 1261.86 88.0001L1237.43 121.3L1247.18 113.05C1253.68 107.54 1261.5 103.81 1269.87 102.21L1276.74 100.89L1296.71 73.6801L1283.01 82.7701ZM1258.32 98.4601C1257.27 95.1001 1276.67 89.0301 1277.37 92.2201C1278.07 95.4001 1259.21 101.33 1258.32 98.4601ZM1280.16 92.4201C1279.47 92.4201 1278.91 91.8601 1278.91 91.1701C1278.91 90.4801 1279.47 89.9201 1280.16 89.9201C1280.85 89.9201 1281.41 90.4801 1281.41 91.1701C1281.41 91.8601 1280.85 92.4201 1280.16 92.4201Z" fill="#FFE3AC"/>
417
+ <path d="M1227.06 168.59L1221.83 172.66C1220.89 173.4 1219.86 174.02 1218.77 174.53L1187.76 188.98L1181.69 197.26L1185.71 193.97C1187.25 192.71 1188.93 191.63 1190.72 190.75L1215.26 178.72C1216.85 177.94 1218.54 179.59 1217.8 181.2L1227.06 168.59Z" fill="#FFE3AC"/>
418
+ <path d="M1225.21 159.01C1221.04 161.64 1216.66 163.93 1212.12 165.85L1201.42 170.38L1199.48 173.02C1199.48 173.02 1210.21 167.52 1210.69 168.9C1211.11 170.12 1196.28 177.38 1196.28 177.38L1197.94 175.12L1193.47 181.21L1210.73 170.92C1215.92 167.82 1221.41 165.25 1227.12 163.24L1232.74 161.26L1241.75 148.58L1225.21 159.01Z" fill="#FFE3AC"/>
419
+ <path d="M1234.39 181.2C1235.45 181.39 1235.63 182.83 1234.66 183.28L1204.42 197.25H1217.36C1216.2 196.81 1216.12 195.21 1217.22 194.65L1243.79 181.21H1234.39V181.2Z" fill="#FFE3AC"/>
420
+ <path d="M1247.59 181.2C1247.33 181.2 1219.56 197.25 1219.56 197.25H1221.33L1250.09 181.2H1247.59Z" fill="#FFE3AC"/>
421
+ <path d="M1278.9 181.2C1276.9 187.67 1271.43 192.47 1264.76 193.62L1243.78 197.25H1270.57C1270.57 196.12 1271.48 195.21 1272.61 195.21C1273.74 195.21 1274.65 196.12 1274.65 197.25H1291.07C1290.25 192.76 1293.11 188.43 1297.56 187.41L1324.75 181.2H1278.9ZM1277.73 194.72C1274.72 190.91 1290.92 181.51 1292.96 184.08C1295 186.65 1280.19 197.82 1277.73 194.72Z" fill="#FFE3AC"/>
422
+ <path d="M1356.96 181.2H1343.49C1344.46 181.76 1344.37 183.2 1343.34 183.63L1319.17 193.83C1316.69 194.88 1314.08 195.62 1311.42 196.04L1303.8 197.24H1323.16C1322.09 196.98 1321.98 195.5 1323 195.08L1356.96 181.2Z" fill="#FFE3AC"/>
423
+ <path d="M1352.33 194.72L1376.74 181.21H1374.33C1374.33 181.21 1358.31 190.45 1357.84 189.78C1357.37 189.11 1370.18 181.21 1370.18 181.21H1365.47C1365.9 181.94 1365.65 182.87 1364.92 183.3L1340.97 197.26H1352.51C1351.39 196.82 1351.29 195.29 1352.33 194.72ZM1356.56 190.12C1356.78 190.12 1356.96 190.3 1356.96 190.52C1356.96 190.74 1356.78 190.92 1356.56 190.92C1356.34 190.92 1356.16 190.74 1356.16 190.52C1356.16 190.3 1356.34 190.12 1356.56 190.12Z" fill="#FFE3AC"/>
424
+ <path d="M832.04 410.43C841.47 397.72 845.13 381.64 842.13 366.1C840.77 359.03 840.77 351.77 842.13 344.71C845.13 329.17 841.47 313.09 832.04 300.38L832 300.32C827.74 294.58 824.61 288.09 822.78 281.19L822.75 281.07C818.69 265.81 808.43 252.95 794.44 245.61L794.37 245.57C788.02 242.23 782.36 237.72 777.7 232.26L777.68 232.24C767.4 220.21 752.54 213.05 736.73 212.5H736.66C729.52 212.25 722.49 210.65 715.95 207.78L715.8 207.72C701.36 201.39 684.92 201.39 670.48 207.72L670.33 207.78C663.79 210.65 656.76 212.25 649.62 212.5H649.55C633.74 213.05 618.88 220.21 608.6 232.24L608.58 232.26C603.92 237.72 598.26 242.23 591.91 245.57L591.84 245.61C577.86 252.95 567.59 265.81 563.53 281.07L563.5 281.19C561.66 288.09 558.54 294.59 554.28 300.32L554.24 300.38C544.81 313.09 541.15 329.17 544.15 344.71C545.51 351.78 545.51 359.04 544.15 366.1C541.15 381.64 544.81 397.72 554.24 410.43L554.28 410.49C555.27 411.82 556.19 413.19 557.06 414.6H829.23C830.09 413.19 831.02 411.82 832.01 410.49L832.04 410.43Z" fill="white"/>
425
+ <path d="M822.37 355.41C822.37 337.96 818.95 321.04 812.21 305.1C805.7 289.71 796.38 275.89 784.51 264.02C772.64 252.15 758.82 242.83 743.43 236.33C727.5 229.59 710.57 226.17 693.12 226.17C675.67 226.17 658.75 229.59 642.81 236.33C627.42 242.84 613.6 252.16 601.73 264.02C589.86 275.89 580.54 289.71 574.03 305.1C567.29 321.03 563.87 337.96 563.87 355.41C563.87 372.86 567.29 389.78 574.03 405.72C575.31 408.74 576.7 411.71 578.19 414.61H584.57C582.61 411.02 580.82 407.32 579.22 403.53C572.78 388.29 569.51 372.11 569.51 355.42C569.51 338.73 572.78 322.55 579.22 307.31C585.45 292.59 594.36 279.37 605.71 268.02C617.06 256.67 630.28 247.76 645 241.53C660.24 235.09 676.42 231.82 693.11 231.82C709.8 231.82 725.98 235.09 741.22 241.53C755.94 247.76 769.16 256.67 780.51 268.02C791.86 279.37 800.77 292.59 807 307.31C813.44 322.55 816.71 338.73 816.71 355.42C816.71 372.11 813.44 388.29 807 403.53C805.39 407.33 803.61 411.02 801.65 414.61H808.03C809.52 411.71 810.91 408.75 812.19 405.72C818.95 389.78 822.37 372.86 822.37 355.41Z" fill="#FFE3AC"/>
426
+ <path d="M788.72 337.17L843.15 332.99C843.22 336.89 842.89 340.82 842.14 344.71C840.78 351.78 840.78 359.04 842.14 366.1C842.17 366.28 842.2 366.46 842.24 366.64C840.38 366.92 838.47 366.97 836.56 366.75L788.28 361.53L788.72 337.17Z" fill="#FFE3AC"/>
427
+ <path d="M774.18 407.36C785.35 394.53 790.81 377.7 789.32 360.76C789 357.09 789 353.41 789.32 349.74C790.82 332.79 785.35 315.97 774.18 303.14L774.16 303.12C771.76 300.36 769.6 297.4 767.72 294.26L767.67 294.17C758.93 279.62 744.66 269.25 728.13 265.42L727.97 265.38C724.45 264.56 721 263.45 717.67 262.03L717.49 261.95C701.89 255.34 684.27 255.34 668.66 261.95L668.48 262.03C665.15 263.44 661.7 264.56 658.18 265.38L658.02 265.42C641.49 269.25 627.22 279.62 618.48 294.17L618.43 294.26C616.55 297.4 614.39 300.36 611.99 303.12L611.97 303.14C600.8 315.97 595.34 332.8 596.83 349.74C597.15 353.41 597.15 357.09 596.83 360.76C595.33 377.71 600.8 394.53 611.97 407.36L611.99 407.38C613.97 409.65 615.78 412.07 617.41 414.61H768.73C770.36 412.08 772.17 409.66 774.15 407.38L774.18 407.36Z" fill="#FFCF70"/>
428
+ <path d="M786.62 352.33H725.88C713.16 352.33 702.81 341.98 702.81 329.26C702.81 316.54 713.16 306.19 725.88 306.19H731.57C740.36 306.19 747.51 299.04 747.51 290.25C747.51 281.46 740.36 274.31 731.57 274.31H659.18V269.14H731.57C743.21 269.14 752.68 278.61 752.68 290.25C752.68 301.89 743.21 311.36 731.57 311.36H725.88C716.01 311.36 707.98 319.39 707.98 329.26C707.98 339.13 716.01 347.16 725.88 347.16H786.62V352.33Z" fill="#FFC043"/>
429
+ <path d="M691.91 414.6H686.74V325C686.74 319.04 681.89 314.2 675.94 314.2H656.15C647.04 314.2 639.64 306.79 639.64 297.69C639.64 288.58 647.05 281.18 656.15 281.18H736.44V286.35H656.15C649.89 286.35 644.8 291.44 644.8 297.7C644.8 303.96 649.89 309.05 656.15 309.05H675.94C684.75 309.05 691.91 316.21 691.91 325.02V414.6Z" fill="#FFC043"/>
430
+ <path d="M734.1 295.63H648.43V300.8H734.1V295.63Z" fill="#FFC043"/>
431
+ <path d="M784.32 339.76H743.9C737.07 339.76 731.52 334.2 731.52 327.38C731.52 320.55 737.08 315 743.9 315H754.6C758.88 315 762.35 311.52 762.35 307.25V295.24H767.52V307.25C767.52 314.37 761.72 320.17 754.6 320.17H743.9C739.92 320.17 736.68 323.41 736.68 327.39C736.68 331.37 739.92 334.61 743.9 334.61H784.32V339.76Z" fill="#FFC043"/>
432
+ <path d="M674.27 414.6V337.45C674.27 328.61 667.08 321.41 658.23 321.41H643.27C638.27 321.41 634.2 317.34 634.2 312.34V294.1H629.03V312.35C629.03 320.2 635.42 326.59 643.27 326.59H658.23C664.22 326.59 669.1 331.47 669.1 337.46V414.61H674.27V414.6Z" fill="#FFC043"/>
433
+ <path d="M709.48 347.71H704.31V414.6H709.48V347.71Z" fill="#FFC043"/>
434
+ <path d="M665.08 383.88H655.35C641.97 383.88 631.09 373 631.09 359.62C631.09 346.24 641.97 335.36 655.35 335.36H665.08V340.53H655.35C644.82 340.53 636.26 349.1 636.26 359.62C636.26 370.15 644.83 378.71 655.35 378.71H665.08V383.88Z" fill="#FFC043"/>
435
+ <path d="M630.19 409.07H618.16C608.07 409.07 599.86 400.86 599.86 390.77C599.86 380.68 608.07 372.47 618.16 372.47C621.87 372.47 624.89 369.45 624.89 365.74V349.75H630.06V365.74C630.06 372.3 624.72 377.63 618.17 377.63C610.93 377.63 605.03 383.52 605.03 390.77C605.03 398.02 610.92 403.91 618.17 403.91H630.2V409.07H630.19Z" fill="#FFC043"/>
436
+ <path d="M635.87 410.79C634.13 410.79 632.71 409.37 632.71 407.63V404.42H627.54V407.63C627.54 410.55 629.05 413.11 631.32 414.6H657.71C655.18 412.24 651.8 410.78 648.07 410.78H635.87V410.79Z" fill="#FFC043"/>
437
+ <path d="M742.92 375.85H706.89V381.02H742.92V375.85Z" fill="#FFC043"/>
438
+ <path d="M613.69 366.64L610.57 363.52C595.51 348.46 595.51 323.96 610.57 308.9L616.97 302.5L620.62 306.15L614.22 312.55C601.18 325.59 601.18 346.82 614.22 359.86L617.34 362.98L613.69 366.64Z" fill="#FFC043"/>
439
+ <path d="M671.69 374.26H659.66C651.58 374.26 645.01 367.69 645.01 359.61C645.01 351.53 651.58 344.96 659.66 344.96H665.08V350.13H659.66C654.43 350.13 650.18 354.38 650.18 359.61C650.18 364.84 654.43 369.09 659.66 369.09H671.69V374.26Z" fill="#FFC043"/>
440
+ <path d="M629.36 349.56L626.12 346.32C620.35 340.55 617.16 332.87 617.16 324.7V315.58H622.33V324.7C622.33 331.49 624.97 337.87 629.77 342.67L633.01 345.91L629.36 349.56Z" fill="#FFC043"/>
441
+ <path d="M663.51 399.99H648.31C642.42 399.99 636.88 397.7 632.71 393.53L631.31 392.13C628.12 388.94 623.88 387.18 619.37 387.18H604.27V382.01H619.37C625.26 382.01 630.8 384.3 634.97 388.47L636.37 389.87C639.56 393.06 643.8 394.82 648.31 394.82H663.51V399.99Z" fill="#FFC043"/>
442
+ <path d="M749.39 388.56H772.7C778.84 388.56 783.84 383.56 783.84 377.42C783.84 371.28 778.84 366.28 772.7 366.28H729.79C728.18 366.28 726.87 364.97 726.87 363.36V358.46H721.7V363.36C721.7 367.82 725.33 371.45 729.79 371.45H772.7C775.99 371.45 778.67 374.13 778.67 377.42C778.67 380.71 775.99 383.39 772.7 383.39H749.39C734.35 383.39 722.11 395.63 722.11 410.67V414.6H727.28V410.67C727.27 398.48 737.2 388.56 749.39 388.56Z" fill="#FFC043"/>
443
+ <path d="M767.16 401.96H773.65V396.79H767.16C754.9 396.79 744.33 404.1 739.56 414.6H745.36C749.7 407.06 757.84 401.96 767.16 401.96Z" fill="#FFC043"/>
444
+ <path d="M709.08 407.96L702.44 414.6H710.03L712.87 411.76L709.08 407.96Z" fill="#FFF2D9"/>
445
+ <path d="M679.38 410.26C672.22 403.1 662.7 399.16 652.58 399.16H646.78V404.53H652.58C661.27 404.53 669.44 407.91 675.59 414.06L676.14 414.61H683.73L679.38 410.26Z" fill="#FFF2D9"/>
446
+ <path d="M623.86 308.53H618.49V302.07C618.49 283.86 633.3 269.05 651.51 269.05H673.57V274.42H651.51C636.26 274.42 623.86 286.82 623.86 302.07V308.53Z" fill="#FFF2D9"/>
447
+ <path d="M663.22 274.42H673.57L677.02 269.05H666.67L663.22 274.42Z" fill="#FFE3AC"/>
448
+ <path d="M621.97 403.52C622.81 407.43 624.36 411.18 626.45 414.6H632.93C630.17 410.99 628.17 406.81 627.22 402.39L621.97 403.52Z" fill="#FFF2D9"/>
449
+ <path d="M779.13 365.2L775.33 361.4L779.02 357.71C782.41 354.32 784.27 349.82 784.27 345.03C784.27 340.24 782.4 335.74 779.02 332.35L775.31 328.64C771.38 324.71 769.22 319.49 769.22 313.93V313.72C769.22 299.21 757.41 287.4 742.9 287.4H739.42V282.03H742.9C760.37 282.03 774.59 296.24 774.59 313.72V313.93C774.59 318.05 776.2 321.93 779.11 324.84L782.82 328.55C791.91 337.64 791.91 352.42 782.82 361.51L779.13 365.2Z" fill="#FFF2D9"/>
450
+ <path d="M747.05 282.32C745.69 282.14 744.31 282.05 742.9 282.05H739.42V287.42H742.9C744.31 287.42 745.7 287.54 747.05 287.75V282.32Z" fill="#FFE3AC"/>
451
+ <path d="M631.68 390.76C620.49 381.82 614.28 366.9 615.48 351.83C616.59 337.81 623.86 324.22 635.42 314.55L638.87 318.67C628.41 327.42 621.84 339.66 620.84 352.25C619.78 365.57 625.23 378.72 635.04 386.56L631.68 390.76Z" fill="#FFF2D9"/>
452
+ <path d="M631.68 390.76L635.03 386.56C633.43 385.28 631.95 383.86 630.59 382.32L625.05 384.06C627.01 386.54 629.22 388.79 631.68 390.76Z" fill="#FFE3AC"/>
453
+ <path d="M784.59 359.52L780.77 355.7C780.24 356.41 779.66 357.09 779.02 357.72L775.33 361.41L779.13 365.21L782.82 361.52C783.45 360.88 784.04 360.21 784.59 359.52Z" fill="#FFE3AC"/>
454
+ <path d="M702.54 391.97C693.31 391.97 684.05 390.39 675.43 387.26C668.98 384.92 662.86 381.74 656.94 378.66C654.11 377.19 651.18 375.66 648.28 374.27C637.36 369.02 628.94 366.79 620.99 367.06L620.81 361.53C632.21 361.15 642.76 365.48 650.68 369.29C653.66 370.72 656.63 372.27 659.5 373.76C665.26 376.75 671.21 379.85 677.32 382.07C690.53 386.87 705.35 387.76 719.04 384.59C732.73 381.42 745.64 374.1 755.4 363.98L759.38 367.82C748.89 378.7 735.01 386.57 720.29 389.98C714.5 391.31 708.53 391.97 702.54 391.97Z" fill="#FFF2D9"/>
455
+ <path d="M753.51 373.28C755.57 371.55 757.53 369.72 759.39 367.79L755.41 363.95C754.04 365.37 752.62 366.73 751.13 368.03L753.51 373.28Z" fill="#FFE3AC"/>
456
+ <path d="M761.05 364.93L756.08 363.58C757.54 358.2 757.99 352.66 757.44 347.11C756.49 337.55 752.32 328.62 746.02 322.62C743.16 319.89 739.75 317.62 736.45 315.42L739.31 311.14C742.79 313.46 746.38 315.86 749.57 318.9C756.86 325.85 761.48 335.69 762.57 346.61C763.19 352.78 762.68 358.95 761.05 364.93Z" fill="#FFF2D9"/>
457
+ <path d="M741.58 318.96L744.41 314.64C742.72 313.41 741 312.26 739.31 311.13L736.45 315.41C738.16 316.56 739.9 317.72 741.58 318.96Z" fill="#FFE3AC"/>
458
+ <path d="M729.2 365.84H709.47V360.47H729.2C735.28 360.47 740.23 355.52 740.23 349.44V347.84C740.23 341.48 735.05 336.3 728.69 336.3H643.1V330.93H728.69C738.01 330.93 745.6 338.51 745.6 347.84V349.44C745.61 358.48 738.25 365.84 729.2 365.84Z" fill="#FFF2D9"/>
459
+ <path d="M721.18 360.47H709.47V365.84H715.81L721.18 360.47Z" fill="#FFE3AC"/>
460
+ <path d="M734.56 318.9H729.19V299.52C728.64 290.36 723.05 281.68 714.94 277.39C706.81 273.09 696.46 273.36 688.56 278.08C680.67 282.8 675.53 291.8 675.49 301L670.12 300.97C670.18 289.93 676.33 279.14 685.81 273.47C695.28 267.8 707.7 267.48 717.46 272.64C727.21 277.81 733.93 288.26 734.56 299.28V299.43V318.9Z" fill="#FFF2D9"/>
461
+ <path d="M671.28 292.75C670.53 295.42 670.13 298.19 670.12 300.97L675.49 301C675.5 298.19 676 295.4 676.89 292.75H671.28Z" fill="#FFE3AC"/>
462
+ <path d="M724.29 322.2H718.92V303.78C718.92 299.33 716.04 296.55 713.34 295.43C710.64 294.31 706.64 294.24 703.49 297.39L697.05 303.83C691.79 309.09 683.23 309.09 677.97 303.83C676.35 302.21 674.11 301.76 671.98 302.64C669.86 303.52 668.59 305.42 668.59 307.71V321.44H663.22V307.71C663.22 303.23 665.79 299.39 669.93 297.67C674.07 295.96 678.6 296.86 681.77 300.02C684.94 303.19 690.09 303.19 693.26 300.02L699.7 293.58C703.9 289.38 709.92 288.18 715.4 290.46C720.89 292.73 724.29 297.83 724.29 303.77V322.2Z" fill="#FFF2D9"/>
463
+ <path d="M724.29 316.83H718.92V322.2H724.29V316.83Z" fill="#FFE3AC"/>
464
+ <path d="M686.7 373.09C680.57 373.09 674.43 371.73 668.94 369.08C666.12 367.72 663.49 366.04 660.96 364.43C658.51 362.87 656.19 361.39 653.72 360.18C646.61 356.69 638.42 355.63 630.66 357.19L629.61 351.92C638.52 350.13 647.93 351.36 656.09 355.36C658.83 356.7 661.38 358.33 663.85 359.91C666.37 361.51 668.74 363.03 671.28 364.25C678.79 367.88 687.72 368.71 695.78 366.54C703.84 364.36 711.13 359.15 715.8 352.23L720.25 355.23C714.87 363.2 706.47 369.21 697.18 371.72C693.78 372.63 690.24 373.09 686.7 373.09Z" fill="#FFF2D9"/>
465
+ <path d="M682.46 360.04C674.99 360.04 667.52 358.57 660.62 355.6L662.74 350.67C676.06 356.39 691.77 355.96 704.76 349.51L707.15 354.32C699.49 358.13 690.98 360.04 682.46 360.04Z" fill="#FFF2D9"/>
466
+ <path d="M608.95 371.24C603.03 367.91 598.45 362.29 596.37 355.82C594.29 349.35 594.74 342.12 597.61 335.96C598.92 333.15 600.66 330.67 602.34 328.27C603.03 327.28 603.74 326.26 604.4 325.26C606.94 321.37 608.12 318.21 608.12 315.32C608.12 312.55 607.02 309.48 604.74 305.93L609.26 303.03C612.11 307.47 613.49 311.49 613.49 315.32C613.49 320.55 610.87 325.17 608.9 328.19C608.2 329.27 607.46 330.33 606.74 331.35C605.12 333.67 603.59 335.85 602.48 338.23C600.18 343.17 599.81 348.99 601.48 354.18C603.15 359.37 606.83 363.88 611.59 366.56L608.95 371.24Z" fill="#FFF2D9"/>
467
+ <path d="M760.68 366.87L756.57 363.76C763.98 353.98 766.69 341.01 763.81 329.08C760.93 317.15 752.61 306.84 741.56 301.51L743.8 296.87C756.23 302.87 765.59 314.46 768.82 327.87C772.05 341.29 769.01 355.87 760.68 366.87Z" fill="#FFF2D9"/>
468
+ <path d="M665.66 324.89H646.51C635.95 324.89 627.36 316.3 627.36 305.74C627.36 295.18 635.95 286.59 646.51 286.59C657.07 286.59 665.66 295.18 665.66 305.74V324.89ZM646.51 291.96C638.91 291.96 632.73 298.14 632.73 305.74C632.73 313.34 638.91 319.52 646.51 319.52H660.29V305.74C660.29 298.14 654.11 291.96 646.51 291.96Z" fill="#FFF2D9"/>
469
+ <path d="M637.88 405.64H631.11C614.84 405.64 601.6 392.4 601.6 376.13V364.14H606.97V376.13C606.97 389.44 617.8 400.27 631.11 400.27H637.88C646.03 400.27 653.69 397.1 659.46 391.33L663.26 395.13C656.48 401.91 647.47 405.64 637.88 405.64Z" fill="#FFF2D9"/>
470
+ <path d="M668.59 316.08H660.29V319.48H668.59V316.08Z" fill="#FFE3AC"/>
471
+ <path d="M648.06 330.93H644.59V336.3H648.06V330.93Z" fill="#FFE3AC"/>
472
+ <path d="M711.77 348.42H653.98C646.01 348.42 639.53 341.94 639.53 333.97C639.53 326 646.01 319.52 653.98 319.52H721.77C731.27 319.52 739 311.79 739 302.29V297.92C739 277.84 722.67 261.51 702.59 261.51C682.51 261.51 666.18 277.84 666.18 297.92V303.55H660.81V297.92C660.81 274.88 679.55 256.14 702.59 256.14C725.63 256.14 744.37 274.88 744.37 297.92V302.29C744.37 314.75 734.23 324.89 721.77 324.89H653.98C648.97 324.89 644.9 328.96 644.9 333.97C644.9 338.98 648.97 343.05 653.98 343.05H711.77V348.42Z" fill="#FFF2D9"/>
473
+ <path d="M709.08 407.96L704.47 412.57L706.5 414.6H710.03L712.87 411.76L709.08 407.96Z" fill="#FFE3AC"/>
474
+ <path d="M706.9 411.13C699.49 411.13 692.08 409.86 685.09 407.34C679.69 405.39 674.57 402.71 669.61 400.12C662.74 396.53 656.25 393.14 649.1 391.52C637.64 388.93 625.11 391.5 615.57 398.37L612.43 394.01C623.19 386.25 637.34 383.36 650.28 386.28C658.12 388.05 665.23 391.76 672.1 395.36C676.9 397.87 681.85 400.46 686.91 402.29C698.73 406.56 711.87 406.91 723.9 403.26C735.93 399.62 746.67 392.04 754.14 381.93C754.26 381.77 754.39 381.57 754.54 381.34C757.01 377.45 757.74 372.84 756.58 368.35C755.42 363.85 752.42 359.99 748.34 357.77L742.1 354.36L744.67 349.65L750.91 353.06C756.29 356 760.25 361.08 761.77 367.02C763.3 372.97 762.34 379.08 759.06 384.24C758.84 384.58 758.64 384.87 758.45 385.13C750.3 396.16 738.58 404.43 725.45 408.41C719.44 410.22 713.17 411.13 706.9 411.13Z" fill="#FFF2D9"/>
475
+ <path d="M726.75 414.6C721.61 412.92 716.84 410.16 712.79 406.45L709.17 410.41C710.86 411.95 712.65 413.35 714.53 414.59H726.75V414.6Z" fill="#FFF2D9"/>
476
+ <path d="M768.4 345.81L764.76 349.76C772.9 357.26 777.41 367.89 777.16 378.94C776.92 389.21 772.7 398.77 765.27 405.87C761.06 409.89 756.1 412.84 750.72 414.61H762.91C765.05 413.19 767.08 411.57 768.98 409.76C777.45 401.67 782.26 390.78 782.53 379.07C782.83 366.47 777.68 354.35 768.4 345.81Z" fill="#FFF2D9"/>
477
+ <path d="M703.29 386.43C701.99 382.22 698.81 378.73 694.54 377.12C691.23 375.87 687.57 375.87 684.26 377.12C681.55 378.14 679.28 379.92 677.65 382.16C685.8 385.08 694.56 386.52 703.29 386.43Z" fill="#BC8B2C"/>
478
+ <path d="M675.43 387.26C675.38 387.24 675.33 387.22 675.28 387.21C675 388.35 674.84 389.53 674.84 390.73V391.18C674.84 393.44 675.73 395.62 677.32 397.23C679.81 399.76 683.6 400.51 686.86 399.12L688.11 398.59C688.92 398.24 689.85 398.24 690.66 398.59L691.91 399.12C695.18 400.51 698.96 399.76 701.45 397.23C702.86 395.8 703.71 393.93 703.89 391.95C703.44 391.96 702.99 391.97 702.53 391.97C693.31 391.97 684.05 390.39 675.43 387.26Z" fill="#BC8B2C"/>
479
+ <path d="M703.94 390.73C703.94 389.25 703.71 387.81 703.29 386.44C694.57 386.53 685.8 385.09 677.64 382.17C676.55 383.67 675.74 385.38 675.29 387.21C675.34 387.23 675.39 387.25 675.44 387.26C684.06 390.39 693.31 391.97 702.55 391.97C703 391.97 703.45 391.96 703.91 391.95C703.93 391.69 703.95 391.43 703.95 391.18V390.73H703.94Z" fill="#FFCF70"/>
480
+ <path d="M709.819 342.62C703.439 342.62 698.049 346.9 696.379 352.75C699.259 351.93 702.069 350.86 704.759 349.52L707.149 354.33C703.579 356.1 699.819 357.46 695.959 358.41C696.299 361.07 697.389 363.5 699.019 365.48C705.769 362.91 711.759 358.2 715.789 352.23L720.239 355.23C716.189 361.24 710.419 366.13 703.849 369.25C705.659 370.11 707.679 370.59 709.819 370.59C717.539 370.59 723.799 364.33 723.799 356.61C723.799 348.89 717.539 342.62 709.819 342.62Z" fill="#BC8B2C"/>
481
+ <path d="M660.96 364.43C658.86 363.09 656.85 361.81 654.77 360.71C654.98 362.66 655.85 364.48 657.25 365.88L657.57 366.2C661.18 369.81 666.35 371.21 671.19 370.07C670.43 369.76 669.69 369.43 668.95 369.08C666.12 367.72 663.5 366.05 660.96 364.43Z" fill="#BC8B2C"/>
482
+ <path d="M663.849 359.9C666.369 361.5 668.74 363.02 671.28 364.24C673.34 365.23 675.499 366.02 677.719 366.59C679.139 365.28 680.289 363.69 681.099 361.9C681.379 361.29 681.599 360.66 681.789 360.03C674.539 359.94 667.32 358.48 660.63 355.6L662.75 350.67C668.93 353.33 675.63 354.66 682.33 354.67C682.04 351.33 680.61 348.11 678.13 345.63L677.81 345.31C676.21 343.71 674.04 342.8 671.78 342.78C668.23 342.75 665.02 344.9 663.7 348.19L663.19 349.45C662.86 350.27 662.21 350.92 661.39 351.25L660.13 351.76C658.36 352.47 656.919 353.73 655.979 355.29C656.019 355.31 656.06 355.33 656.09 355.34C658.82 356.7 661.379 358.33 663.849 359.9Z" fill="#BC8B2C"/>
483
+ <path d="M720.249 355.22L715.799 352.22C711.769 358.2 705.779 362.9 699.029 365.47C700.339 367.06 701.989 368.35 703.859 369.24C710.419 366.12 716.199 361.23 720.249 355.22Z" fill="#FFCF70"/>
484
+ <path d="M677.719 366.59C675.499 366.02 673.339 365.24 671.279 364.24C668.739 363.01 666.369 361.5 663.849 359.9C661.379 358.33 658.829 356.7 656.089 355.35C656.049 355.33 656.009 355.31 655.979 355.3C655.169 356.64 654.709 358.21 654.719 359.85C654.719 360.14 654.739 360.43 654.769 360.71C656.859 361.81 658.859 363.09 660.959 364.43C663.499 366.05 666.119 367.72 668.939 369.08C669.669 369.43 670.419 369.76 671.179 370.07C672.079 369.86 672.969 369.56 673.829 369.17C675.269 368.52 676.579 367.65 677.719 366.59Z" fill="#FFCF70"/>
485
+ <path d="M695.959 358.41C699.819 357.46 703.579 356.1 707.149 354.33L704.759 349.52C702.069 350.86 699.259 351.93 696.379 352.75C696.029 353.97 695.839 355.27 695.839 356.6C695.839 357.21 695.879 357.82 695.959 358.41Z" fill="#FFCF70"/>
486
+ <path d="M660.629 355.61C667.319 358.48 674.549 359.95 681.789 360.04C682.309 358.28 682.489 356.46 682.329 354.68C675.629 354.66 668.929 353.33 662.749 350.68L660.629 355.61Z" fill="#FFF2D9"/>
487
+ <path d="M688.189 338.97C691.149 338.97 693.869 337.97 696.049 336.3H680.319C682.509 337.97 685.229 338.97 688.189 338.97Z" fill="#BC8B2C"/>
488
+ <path d="M675.27 326.04C675.27 327.77 675.609 329.42 676.229 330.92H700.159C700.779 329.41 701.12 327.76 701.12 326.04C701.12 325.65 701.1 325.27 701.07 324.89H675.33C675.29 325.27 675.27 325.65 675.27 326.04Z" fill="#BC8B2C"/>
489
+ <path d="M688.19 313.12C683.43 313.12 679.28 315.69 677.04 319.52H699.35C697.1 315.69 692.95 313.12 688.19 313.12Z" fill="#BC8B2C"/>
490
+ <path d="M680.33 336.3H696.06C697.86 334.91 699.289 333.07 700.159 330.93H676.229C677.099 333.06 678.53 334.91 680.33 336.3Z" fill="#FFCF70"/>
491
+ <path d="M677.04 319.52C676.1 321.12 675.5 322.94 675.33 324.89H701.07C700.9 322.94 700.29 321.12 699.36 319.52H677.04Z" fill="#FFCF70"/>
492
+ <path d="M714.419 365.99C722.14 365.99 728.399 359.731 728.399 352.01C728.399 344.289 722.14 338.03 714.419 338.03C706.698 338.03 700.439 344.289 700.439 352.01C700.439 359.731 706.698 365.99 714.419 365.99Z" fill="#E11900"/>
493
+ <path d="M714.419 353.47C715.226 353.47 715.879 352.816 715.879 352.01C715.879 351.204 715.226 350.55 714.419 350.55C713.613 350.55 712.959 351.204 712.959 352.01C712.959 352.816 713.613 353.47 714.419 353.47Z" fill="#672A16"/>
494
+ <path d="M667.14 342.46L666.63 343.72C666.3 344.54 665.65 345.19 664.83 345.52L663.57 346.03C660.28 347.35 658.129 350.56 658.159 354.11C658.179 356.37 659.09 358.54 660.69 360.14L661.01 360.46C665.29 364.74 671.76 365.92 677.28 363.43C680.51 361.97 683.09 359.39 684.55 356.16C687.04 350.65 685.86 344.17 681.58 339.89L681.26 339.57C679.66 337.97 677.489 337.06 675.229 337.04C671.669 337.01 668.46 339.16 667.14 342.46Z" fill="#E11900"/>
495
+ <path d="M666.899 343.34C666.869 343.31 666.839 343.29 666.809 343.26L666.629 343.71C666.299 344.53 665.649 345.18 664.829 345.51L664.419 345.67C664.439 345.69 664.459 345.72 664.489 345.74C665.159 346.41 666.229 346.41 666.899 345.74C667.559 345.09 667.559 344.01 666.899 343.34Z" fill="#672A16"/>
496
+ <path d="M690.26 395.72L691.51 395.19C692.32 394.84 693.25 394.84 694.06 395.19L695.31 395.72C698.58 397.11 702.359 396.36 704.849 393.83C706.439 392.22 707.33 390.04 707.33 387.78V387.33C707.33 381.28 703.59 375.87 697.93 373.73C694.62 372.48 690.96 372.48 687.65 373.73C681.99 375.87 678.25 381.28 678.25 387.33V387.78C678.25 390.04 679.139 392.22 680.729 393.83C683.209 396.37 687 397.12 690.26 395.72Z" fill="#E11900"/>
497
+ <path d="M691.06 395.27C691.06 395.31 691.06 395.35 691.06 395.39L691.5 395.2C692.31 394.85 693.24 394.85 694.05 395.2L694.45 395.37C694.45 395.34 694.45 395.3 694.45 395.27C694.45 394.33 693.69 393.57 692.75 393.57C691.81 393.57 691.06 394.32 691.06 395.27Z" fill="#672A16"/>
498
+ <path d="M692.79 334.37C699.925 334.37 705.71 328.586 705.71 321.45C705.71 314.315 699.925 308.53 692.79 308.53C685.654 308.53 679.87 314.315 679.87 321.45C679.87 328.586 685.654 334.37 692.79 334.37Z" fill="white"/>
499
+ <path d="M734.89 398.65C735.81 396.87 736.33 394.86 736.33 392.72C736.33 389.99 735.479 387.47 734.039 385.38C729.599 387.33 724.98 388.88 720.28 389.96C717.08 390.7 713.82 391.23 710.53 391.56C710.5 391.94 710.479 392.32 710.479 392.71C710.479 398.07 713.74 402.67 718.39 404.62C720.25 404.25 722.08 403.8 723.9 403.25C727.72 402.1 731.4 400.55 734.89 398.65Z" fill="#BC8B2C"/>
500
+ <path d="M729.46 381.3C727.65 380.34 725.589 379.79 723.409 379.79C718.829 379.79 714.81 382.17 712.52 385.76C714.72 385.46 716.889 385.06 719.039 384.57C722.579 383.75 726.07 382.65 729.46 381.3Z" fill="#BC8B2C"/>
501
+ <path d="M657.93 399.53C660.07 399.83 662.17 400.32 664.2 400.97C664.81 400.08 665.32 399.12 665.7 398.09C664.48 397.47 663.27 396.86 662.05 396.28C660.75 397.47 659.37 398.55 657.93 399.53Z" fill="#BC8B2C"/>
502
+ <path d="M666.43 392.44C665.83 385.86 660.3 380.71 653.56 380.71C649.6 380.71 646.05 382.49 643.68 385.3C645.9 385.47 648.1 385.79 650.27 386.28C655.99 387.57 661.31 389.89 666.43 392.44Z" fill="#BC8B2C"/>
503
+ <path d="M642.29 399.95C647.51 399.2 652.41 397.12 656.58 393.87C654.14 392.91 651.66 392.1 649.09 391.52C646.44 390.92 643.73 390.6 641.01 390.54C640.77 391.53 640.64 392.57 640.64 393.63C640.64 395.93 641.24 398.08 642.29 399.95Z" fill="#BC8B2C"/>
504
+ <path d="M646.82 404.52C646.77 404.53 646.71 404.54 646.66 404.56C648.66 405.82 651.02 406.56 653.56 406.56C655.62 406.56 657.57 406.08 659.3 405.22C657.11 404.76 654.86 404.53 652.58 404.53H646.82V404.52Z" fill="#BC8B2C"/>
505
+ <path d="M734.05 385.38C732.87 383.68 731.3 382.27 729.47 381.3C726.08 382.65 722.59 383.75 719.05 384.57C716.9 385.07 714.72 385.47 712.53 385.76C711.44 387.46 710.74 389.44 710.55 391.56C713.84 391.23 717.1 390.7 720.3 389.96C724.99 388.87 729.6 387.33 734.05 385.38Z" fill="#FFCF70"/>
506
+ <path d="M664.2 400.97C662.16 400.32 660.07 399.83 657.93 399.53C659.37 398.56 660.75 397.47 662.049 396.28C663.259 396.86 664.48 397.47 665.7 398.09C666.21 396.7 666.49 395.2 666.49 393.64C666.49 393.24 666.47 392.84 666.43 392.45C661.3 389.9 655.98 387.58 650.28 386.29C648.11 385.8 645.91 385.48 643.69 385.31C642.43 386.8 641.5 388.59 641.02 390.55C643.74 390.61 646.449 390.93 649.099 391.53C651.669 392.11 654.15 392.92 656.59 393.88C652.42 397.13 647.519 399.21 642.299 399.96C643.349 401.84 644.86 403.42 646.68 404.57C646.73 404.56 646.79 404.55 646.84 404.53H652.59C654.88 404.53 657.13 404.77 659.31 405.22C661.27 404.24 662.96 402.77 664.2 400.97Z" fill="#FFCF70"/>
507
+ <path d="M728 401.96C735.135 401.96 740.92 396.176 740.92 389.04C740.92 381.904 735.135 376.12 728 376.12C720.864 376.12 715.08 381.904 715.08 389.04C715.08 396.176 720.864 401.96 728 401.96Z" fill="white"/>
508
+ <path d="M658.16 401.96C665.295 401.96 671.08 396.176 671.08 389.04C671.08 381.904 665.295 376.12 658.16 376.12C651.024 376.12 645.24 381.904 645.24 389.04C645.24 396.176 651.024 401.96 658.16 401.96Z" fill="white"/>
509
+ <path d="M646.73 283.59L645.74 279.53C645.61 279 644.86 279 644.73 279.53L643.74 283.59C642.98 286.7 641.62 289.64 639.74 292.24C634.78 299.07 635.74 308.53 641.96 314.23L645.23 317.23L648.5 314.23C654.72 308.53 655.67 299.07 650.72 292.24C648.84 289.64 647.48 286.7 646.73 283.59Z" fill="#048848"/>
510
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M641.96 314.23L645.23 317.23L648.5 314.23C654.72 308.53 655.67 299.07 650.72 292.24C648.84 289.64 647.48 286.7 646.73 283.59L645.74 279.53C645.61 279 644.86 279 644.73 279.53L643.74 283.59C642.98 286.7 641.62 289.64 639.74 292.24C634.78 299.07 635.74 308.53 641.96 314.23ZM645.235 281.68L644.711 283.827C643.921 287.063 642.506 290.122 640.55 292.826L640.549 292.828C635.888 299.246 636.79 308.136 642.635 313.493L645.23 315.873L647.824 313.493C653.669 308.137 654.562 299.246 649.91 292.827L649.909 292.826C647.954 290.122 646.539 287.063 645.758 283.826C645.758 283.825 645.758 283.825 645.758 283.825L645.235 281.68Z" fill="#048848"/>
511
+ <path d="M646.1 317.83L645.23 297.09L644.36 317.83C644.34 318.32 644.73 318.73 645.23 318.73C645.73 318.73 646.12 318.32 646.1 317.83Z" fill="#10462D"/>
512
+ <path d="M603.52 369.61L600.8 374.08C600.45 374.66 601.11 375.32 601.69 374.97L606.16 372.25C609.59 370.17 613.39 368.77 617.35 368.14C627.78 366.48 635.31 357.27 634.85 346.72L634.61 341.17L629.06 340.93C618.51 340.47 609.3 348 607.64 358.43C607 362.38 605.61 366.18 603.52 369.61Z" fill="#048848"/>
513
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M629.06 340.93C618.51 340.47 609.3 348 607.64 358.43C607 362.38 605.61 366.18 603.52 369.61L600.8 374.08C600.45 374.66 601.11 375.32 601.69 374.97L606.16 372.25C609.59 370.17 613.39 368.77 617.35 368.14C627.78 366.48 635.31 357.27 634.85 346.72L634.61 341.17L629.06 340.93ZM633.65 342.129L629.017 341.929C618.975 341.491 610.208 348.658 608.627 358.587L608.627 358.59C607.967 362.665 606.532 366.588 604.374 370.13C604.374 370.13 604.374 370.13 604.374 370.13L602.406 373.363L605.641 371.395C609.181 369.248 613.104 367.803 617.193 367.152C627.122 365.572 634.289 356.805 633.851 346.763L633.65 342.129Z" fill="#048848"/>
514
+ <path d="M634.15 340.42L618.97 356.92L635.47 341.74C635.86 341.38 635.87 340.77 635.5 340.39C635.12 340.01 634.51 340.02 634.15 340.42Z" fill="#10462D"/>
515
+ <path d="M597.44 293.1L591.47 289.47C590.7 289 589.81 289.88 590.28 290.66L593.91 296.63C596.69 301.21 598.56 306.28 599.4 311.57C601.61 325.49 613.91 335.54 628 334.92L635.41 334.6L635.73 327.19C636.34 313.11 626.3 300.81 612.38 298.59C607.09 297.75 602.01 295.88 597.44 293.1Z" fill="#048848"/>
516
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M635.73 327.19C636.34 313.11 626.3 300.81 612.38 298.59C607.09 297.75 602.01 295.88 597.44 293.1L591.47 289.47C590.7 289 589.81 289.88 590.28 290.66L593.91 296.63C596.69 301.21 598.56 306.28 599.4 311.57C601.61 325.49 613.91 335.54 628 334.92L635.41 334.6L635.73 327.19ZM634.45 333.641L634.731 327.147C635.319 313.574 625.641 301.718 612.222 299.578C606.804 298.717 601.601 296.802 596.92 293.955C596.92 293.954 596.92 293.955 596.92 293.955L591.42 290.61L594.764 296.111C597.611 300.8 599.527 305.994 600.387 311.413C602.518 324.831 614.374 334.519 627.956 333.921L634.45 333.641Z" fill="#048848"/>
517
+ <path d="M636.669 333.57L609.75 308.81L634.51 335.73C635.1 336.37 636.1 336.39 636.71 335.78C637.33 335.15 637.309 334.15 636.669 333.57Z" fill="#10462D"/>
518
+ <path d="M722.32 327.26H719.34V331.68H722.32V327.26Z" fill="#03582F"/>
519
+ <path d="M710.452 303.934L706.796 307.589L708.479 309.272L712.135 305.617L710.452 303.934Z" fill="#03582F"/>
520
+ <path d="M678.035 369.014L674.379 372.67L676.062 374.353L679.718 370.697L678.035 369.014Z" fill="#03582F"/>
521
+ <path d="M722.32 330.38H719.34V332.22H722.32V330.38Z" fill="#048848"/>
522
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M722.32 330.38V332.22H719.34V330.38H722.32Z" fill="#048848"/>
523
+ <path d="M737.289 324.064L734.771 326.582L735.917 327.727L738.434 325.21L737.289 324.064Z" fill="#048848"/>
524
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M737.289 324.064L738.434 325.21L735.917 327.727L734.771 326.582L737.289 324.064Z" fill="#048848"/>
525
+ <path d="M632.115 395.383L629.598 397.9L630.743 399.045L633.26 396.528L632.115 395.383Z" fill="#048848"/>
526
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M632.115 395.383L633.26 396.528L630.743 399.045L629.598 397.9L632.115 395.383Z" fill="#048848"/>
527
+ <path d="M670.148 329.16L668.316 330.991L671.244 333.919L673.075 332.087L670.148 329.16Z" fill="#03582F"/>
528
+ <path d="M654.175 326.974L654.175 329.564L658.315 329.564L658.315 326.974L654.175 326.974Z" fill="#03582F"/>
529
+ <path d="M654.176 319.474L654.176 321.154L658.316 321.154L658.316 319.474L654.176 319.474Z" fill="#048848"/>
530
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M654.176 319.474L658.316 319.474L658.316 321.154L654.176 321.154L654.176 319.474Z" fill="#048848"/>
531
+ <path d="M745.531 372.691L742.851 375.371L745.778 378.298L748.458 375.618L745.531 372.691Z" fill="#03582F"/>
532
+ <path d="M747.061 371.171L745.229 373.002L748.157 375.93L749.988 374.098L747.061 371.171Z" fill="#048848"/>
533
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M747.061 372.585L746.644 373.002L748.157 374.516L748.574 374.098L747.061 372.585ZM747.061 371.171L749.988 374.098L748.157 375.93L745.229 373.002L747.061 371.171Z" fill="#048848"/>
534
+ <path d="M671.652 322.91L669.82 324.741L671.574 326.495L673.405 324.663L671.652 322.91Z" fill="#048848"/>
535
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M671.652 324.324L671.235 324.741L671.574 325.08L671.991 324.663L671.652 324.324ZM671.652 322.91L673.405 324.663L671.574 326.495L669.82 324.741L671.652 322.91Z" fill="#048848"/>
536
+ <path d="M649.409 367.047L646.991 369.465L649.31 371.784L651.728 369.366L649.409 367.047Z" fill="#03582F"/>
537
+ <path d="M683.5 404.643L681.082 407.061L683.401 409.38L685.82 406.962L683.5 404.643Z" fill="#03582F"/>
538
+ <path d="M716.36 401.96H712.95V407.71H716.36V401.96Z" fill="#048848"/>
539
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M715.36 402.96H713.95V406.71H715.36V402.96ZM716.36 401.96V407.71H712.95V401.96H716.36Z" fill="#048848"/>
540
+ <path d="M716.36 400.69H712.95V402.96H716.36V400.69Z" fill="#03582F"/>
541
+ <path d="M690.99 357.03H689.33V361.33H690.99V357.03Z" fill="#03582F"/>
542
+ <path d="M694.74 349.86H693.08V354.16H694.74V349.86Z" fill="#048848"/>
543
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M694.74 349.86V354.16H693.08V349.86H694.74Z" fill="#048848"/>
544
+ <path d="M718.65 372.79H715.08V376.36H718.65V372.79Z" fill="#048848"/>
545
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M717.65 373.79H716.08V375.36H717.65V373.79ZM718.65 372.79V376.36H715.08V372.79H718.65Z" fill="#048848"/>
546
+ <path d="M679.89 310.32H676.25V311.54H679.89V310.32Z" fill="#03582F"/>
547
+ <path d="M682.08 306.6H678.44V308.4H682.08V306.6Z" fill="#03582F"/>
548
+ <path d="M816.73 355.41C816.73 358.48 816.62 361.54 816.4 364.57L822.01 365.18C822.25 361.94 822.37 358.69 822.37 355.41C822.37 348.42 821.82 341.51 820.73 334.71L815.09 335.14C816.18 341.8 816.73 348.56 816.73 355.41Z" fill="#FFC043"/>
549
+ <path d="M423.9 402.92C455.568 402.92 481.24 377.248 481.24 345.58C481.24 313.912 455.568 288.24 423.9 288.24C392.232 288.24 366.56 313.912 366.56 345.58C366.56 377.248 392.232 402.92 423.9 402.92Z" fill="#048848"/>
550
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M423.9 401.92C455.016 401.92 480.24 376.696 480.24 345.58C480.24 314.464 455.016 289.24 423.9 289.24C392.784 289.24 367.56 314.464 367.56 345.58C367.56 376.696 392.784 401.92 423.9 401.92ZM481.24 345.58C481.24 377.248 455.568 402.92 423.9 402.92C392.232 402.92 366.56 377.248 366.56 345.58C366.56 313.912 392.232 288.24 423.9 288.24C455.568 288.24 481.24 313.912 481.24 345.58Z" fill="#048848"/>
551
+ <path d="M423.9 389.83C448.339 389.83 468.15 370.019 468.15 345.58C468.15 321.141 448.339 301.33 423.9 301.33C399.461 301.33 379.65 321.141 379.65 345.58C379.65 370.019 399.461 389.83 423.9 389.83Z" fill="#FFCF70"/>
552
+ <path d="M454.86 329.2L454.27 331.88L456.61 333.04L465.08 329.37C464.42 327.69 463.66 326.06 462.8 324.48L454.86 329.2Z" fill="#048848"/>
553
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M455.415 331.331L456.638 331.938L463.786 328.841C463.364 327.834 462.904 326.846 462.407 325.877L455.743 329.838L455.415 331.331ZM454.86 329.2L454.27 331.88L456.61 333.04L465.08 329.37C464.543 328.002 463.939 326.667 463.269 325.365C463.116 325.068 462.96 324.773 462.8 324.48L454.86 329.2Z" fill="#048848"/>
554
+ <path d="M458.25 352.43C462.04 333.46 449.73 315.01 430.76 311.23C420.19 309.12 409.79 312.01 401.99 318.26C407.08 317.03 412.51 316.86 417.98 317.95C438.1 321.97 451.16 341.54 447.15 361.66C446.06 367.13 443.82 372.08 440.73 376.3C449.48 371.5 456.14 363 458.25 352.43Z" fill="#10462D"/>
555
+ <path d="M417.97 317.95C412.5 316.86 407.07 317.03 401.98 318.26C395.78 323.23 391.23 330.32 389.55 338.72C385.76 357.69 398.07 376.14 417.04 379.92C425.44 381.6 433.74 380.11 440.71 376.3C443.8 372.07 446.04 367.13 447.13 361.66C451.16 341.53 438.1 321.96 417.97 317.95Z" fill="#03582F"/>
556
+ <path d="M516.33 284.44C515.14 282.65 513.08 281.63 510.93 281.76C508.84 281.89 506.84 282.62 505.16 283.87L442.5 330.67L434.87 329.15C425.39 327.26 416.07 330.3 409.56 336.5L413.34 342.17C414.66 344.14 415.14 346.56 414.67 348.89C413.7 353.73 416.85 358.45 421.69 359.41L424.77 360.02C426.43 360.35 427.9 361.13 429.06 362.2C436.41 358.32 442.02 351.29 443.78 342.51L445.3 334.88L512.57 294.98C514.37 293.91 515.82 292.34 516.74 290.46C517.68 288.52 517.52 286.23 516.33 284.44Z" fill="#FFFAF0"/>
557
+ <path d="M421.69 359.4C416.85 358.43 413.7 353.72 414.67 348.88C415.13 346.55 414.66 344.14 413.34 342.16L409.56 336.49C405.45 340.41 402.45 345.58 401.25 351.57C400.02 357.72 404.01 363.69 410.16 364.92C416.85 366.26 423.46 365.13 429.06 362.18C427.9 361.11 426.43 360.33 424.77 360L421.69 359.4Z" fill="#048848"/>
558
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M421.499 360.382L421.493 360.381C416.115 359.302 412.611 354.068 413.689 348.685C414.098 346.612 413.68 344.472 412.508 342.715L409.403 338.057C405.871 341.726 403.305 346.406 402.231 351.766M408.835 337.206C405.098 341.031 402.378 345.938 401.25 351.57C400.02 357.72 404.01 363.69 410.16 364.92C416.47 366.184 422.709 365.25 428.097 362.665C428.421 362.509 428.742 362.347 429.06 362.18C428.794 361.935 428.512 361.704 428.214 361.491C427.216 360.776 426.049 360.254 424.77 360L421.69 359.4C416.85 358.43 413.7 353.72 414.67 348.88C415.13 346.55 414.66 344.14 413.34 342.16L409.56 336.49C409.314 336.724 409.073 336.963 408.835 337.206ZM424.577 360.981C424.576 360.981 424.576 360.981 424.575 360.981L421.499 360.382M424.577 360.981C425.519 361.169 426.391 361.519 427.167 361.996C422.082 364.314 416.252 365.12 410.356 363.939C404.747 362.818 401.109 357.373 402.231 351.766" fill="#048848"/>
559
+ <path d="M412.315 324.28L406.931 323.206L406.538 325.177L411.922 326.251L412.315 324.28Z" fill="#048848"/>
560
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M411.139 325.065L407.716 324.382L407.714 324.392L411.137 325.075L411.139 325.065ZM412.315 324.28L411.922 326.251L406.538 325.177L406.931 323.206L412.315 324.28Z" fill="#048848"/>
561
+ <path d="M401.606 363.458L398.559 358.891L396.887 360.007L399.934 364.574L401.606 363.458Z" fill="#048848"/>
562
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M400.219 363.181L398.282 360.278L398.274 360.284L400.211 363.187L400.219 363.181ZM401.606 363.458L399.934 364.574L396.887 360.007L398.559 358.891L401.606 363.458Z" fill="#048848"/>
563
+ <path d="M399.402 360.165L398.287 358.493L396.615 359.609L397.73 361.281L399.402 360.165Z" fill="#10462D"/>
564
+ <path d="M400.329 334.925L397.662 334.392L396.973 337.845L399.64 338.377L400.329 334.925Z" fill="#BC8B2C"/>
565
+ <path d="M439.202 371.216L436.534 370.684L435.845 374.136L438.513 374.668L439.202 371.216Z" fill="#BC8B2C"/>
566
+ <path d="M439.621 369.147L436.954 368.615L436.265 372.067L438.932 372.599L439.621 369.147Z" fill="#10462D"/>
567
+ <path d="M443.173 357.529L441.735 355.374L439.581 356.812L441.019 358.966L443.173 357.529Z" fill="#BC8B2C"/>
568
+ <path d="M406.706 330.711L404.61 332.109L406.009 334.206L408.105 332.807L406.706 330.711Z" fill="#10462D"/>
569
+ <path d="M395.493 341.407L392.561 340.822L392.342 341.92L395.274 342.505L395.493 341.407Z" fill="#10462D"/>
570
+ <path d="M405.762 368.199L402.83 367.614L402.61 368.712L405.543 369.297L405.762 368.199Z" fill="#10462D"/>
571
+ <path d="M444.885 364.049L440.796 363.233L440.491 364.763L444.58 365.579L444.885 364.049Z" fill="#10462D"/>
572
+ <path d="M401.192 326.623L398.093 326.004L397.474 329.103L400.573 329.722L401.192 326.623Z" fill="#048848"/>
573
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M400.015 327.408L398.878 327.181L398.651 328.318L399.788 328.545L400.015 327.408ZM401.192 326.623L400.573 329.722L397.474 329.103L398.093 326.004L401.192 326.623Z" fill="#048848"/>
574
+ <path d="M400.577 329.733L397.478 329.114L397.286 330.075L400.385 330.694L400.577 329.733Z" fill="#10462D"/>
575
+ <path d="M413.639 324.541L411.668 324.147L411.275 326.118L413.246 326.512L413.639 324.541Z" fill="#10462D"/>
576
+ <path d="M420.331 321.167L418.114 320.725L417.672 322.941L419.888 323.384L420.331 321.167Z" fill="#BC8B2C"/>
577
+ <path d="M405.419 349.137L401.451 351.785L402.206 352.917L406.174 350.269L405.419 349.137Z" fill="#10462D"/>
578
+ <path d="M427.649 322.677L423.682 325.324L424.437 326.456L428.404 323.808L427.649 322.677Z" fill="#10462D"/>
579
+ <path d="M395.584 346.645L394.034 346.335L393.502 349.003L395.051 349.312L395.584 346.645Z" fill="#10462D"/>
580
+ <path d="M434.905 364.105L433.355 363.796L432.823 366.464L434.373 366.773L434.905 364.105Z" fill="#10462D"/>
581
+ <path d="M398.235 354.921L395.4 354.355L395.14 355.66L397.974 356.225L398.235 354.921Z" fill="#BC8B2C"/>
582
+ <path d="M402.721 341.362L401.289 341.076L401.003 342.508L402.435 342.793L402.721 341.362Z" fill="#048848"/>
583
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M402.721 341.362L402.435 342.793L401.003 342.508L401.289 341.076L402.721 341.362Z" fill="#048848"/>
584
+ <path d="M419.261 328.162L417.829 327.876L417.543 329.308L418.975 329.594L419.261 328.162Z" fill="#048848"/>
585
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M419.261 328.162L418.975 329.594L417.543 329.308L417.829 327.876L419.261 328.162Z" fill="#048848"/>
586
+ <path d="M432.673 326.382L431.241 326.096L430.955 327.528L432.387 327.814L432.673 326.382Z" fill="#BC8B2C"/>
587
+ <path d="M445.592 349.172L444.161 348.886L443.875 350.318L445.307 350.604L445.592 349.172Z" fill="#048848"/>
588
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M445.592 349.172L445.307 350.604L443.875 350.318L444.161 348.886L445.592 349.172Z" fill="#048848"/>
589
+ <path d="M412.222 343.999L410.908 343.737L410.223 347.169L411.537 347.431L412.222 343.999Z" fill="#10462D"/>
590
+ <path d="M408.9 358.289L405.369 357.584L404.944 359.713L408.475 360.417L408.9 358.289Z" fill="#10462D"/>
591
+ <path d="M410.333 358.577L408.205 358.152L407.78 360.281L409.909 360.705L410.333 358.577Z" fill="#FFC043"/>
592
+ <path d="M418.311 362.66L416.946 360.614L416.006 361.242L417.371 363.288L418.311 362.66Z" fill="#10462D"/>
593
+ <path d="M413.01 354.153L412.044 352.705L410.597 353.671L411.563 355.118L413.01 354.153Z" fill="#FFC043"/>
594
+ <path d="M408.088 342.144L408.358 340.79L407.005 340.52L406.734 341.873L408.088 342.144Z" fill="#FFC043"/>
595
+ <path d="M425.051 362.308L422.589 361.817L422.423 362.651L424.885 363.142L425.051 362.308Z" fill="#10462D"/>
596
+ <path d="M428.896 375.681L426.809 377.075L427.28 377.782L429.368 376.388L428.896 375.681Z" fill="#10462D"/>
597
+ <path d="M413.025 366.711L411.348 366.376L410.37 371.28L412.047 371.615L413.025 366.711Z" fill="#048848"/>
598
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M413.025 366.711L412.047 371.615L410.37 371.28L411.348 366.376L413.025 366.711Z" fill="#048848"/>
599
+ <path d="M412.042 371.619L410.365 371.284L410.031 372.961L411.708 373.296L412.042 371.619Z" fill="#BC8B2C"/>
600
+ <path d="M424.224 368.552L420.145 367.738L419.761 369.66L423.841 370.474L424.224 368.552Z" fill="#10462D"/>
601
+ <path d="M426.483 369L424.217 368.548L423.834 370.47L426.099 370.922L426.483 369Z" fill="#048848"/>
602
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M426.483 369L426.099 370.922L423.834 370.47L424.217 368.548L426.483 369Z" fill="#048848"/>
603
+ <path d="M421.688 375.481L420.3 373.401L418.22 374.789L419.608 376.869L421.688 375.481Z" fill="#048848"/>
604
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M420.301 375.204L420.023 374.788L419.607 375.066L419.885 375.482L420.301 375.204ZM421.688 375.481L419.608 376.869L418.22 374.789L420.3 373.401L421.688 375.481Z" fill="#048848"/>
605
+ <path d="M433.117 371.33L430.95 370.898L430.758 371.859L432.925 372.291L433.117 371.33Z" fill="#048848"/>
606
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M433.117 371.33L430.95 370.898L430.758 371.859L432.925 372.291L433.117 371.33Z" fill="#048848"/>
607
+ <path d="M465.08 329.37L477.1 324.17C476.22 321.98 475.2 319.86 474.06 317.8L462.8 324.48C463.66 326.06 464.42 327.69 465.08 329.37Z" fill="#03582F"/>
608
+ <path d="M1435.86 33.28L1420.59 49.26C1409.3 61.07 1405.98 78.4 1412.1 93.54L1414.75 100.1L1402.13 106.78L1396.64 104.74C1391.1 102.68 1384.87 103.86 1380.47 107.81L1376.63 111.25C1375.59 112.18 1374.99 113.52 1374.99 114.91C1374.99 117.29 1376.7 119.34 1379.05 119.76L1384.36 120.71C1387.68 121.3 1390.68 123.05 1392.85 125.64L1394.12 127.16C1397.93 131.73 1404.4 133.04 1409.7 130.33L1429.88 120C1433.8 117.99 1437.14 115.02 1439.59 111.36L1439.86 110.96V9.83002L1434.06 14.35L1435.86 33.28Z" fill="#FA9269"/>
609
+ <path d="M1388.22 121.33L1389 120.5C1389.43 120.04 1389.3 119.29 1388.73 119.01L1388.38 118.83C1385.97 117.62 1383.25 117.17 1380.57 117.54L1380.08 117.61C1379.28 117.72 1378.79 118.53 1379.05 119.29L1379.22 119.77L1383.37 120.57C1383.5 120.59 1383.62 120.62 1383.75 120.66L1387.33 121.61C1387.64 121.68 1387.99 121.58 1388.22 121.33Z" fill="#FABDA5"/>
610
+ <path d="M799.74 173.51C842.211 173.51 876.64 139.081 876.64 96.61C876.64 54.1393 842.211 19.71 799.74 19.71C757.269 19.71 722.84 54.1393 722.84 96.61C722.84 139.081 757.269 173.51 799.74 173.51Z" fill="#C14F29"/>
611
+ <path d="M799.74 166.87C838.544 166.87 870 135.414 870 96.61C870 57.8065 838.544 26.35 799.74 26.35C760.936 26.35 729.48 57.8065 729.48 96.61C729.48 135.414 760.936 166.87 799.74 166.87Z" fill="#870F00"/>
612
+ <path d="M799.74 138.76C823.019 138.76 841.89 119.889 841.89 96.61C841.89 73.3312 823.019 54.46 799.74 54.46C776.461 54.46 757.59 73.3312 757.59 96.61C757.59 119.889 776.461 138.76 799.74 138.76Z" fill="black"/>
613
+ <path d="M787.77 125.77L786.9 124.9C783.6 121.6 779.14 119.7 774.47 119.61C770.77 119.54 767.76 122.55 767.83 126.25C767.92 130.92 769.82 135.38 773.12 138.68L773.99 139.55C777.29 142.85 781.75 144.75 786.42 144.84C790.12 144.91 793.13 141.9 793.06 138.2C792.97 133.53 791.07 129.07 787.77 125.77Z" fill="black"/>
614
+ <path d="M810.25 136.99L811.12 137.86C814.42 141.16 818.88 143.06 823.55 143.15C827.25 143.22 830.26 140.21 830.19 136.51C830.1 131.84 828.2 127.38 824.9 124.08L824.03 123.21C820.73 119.91 816.27 118.01 811.6 117.92C807.9 117.85 804.89 120.86 804.96 124.56C805.05 129.23 806.94 133.69 810.25 136.99Z" fill="black"/>
615
+ <path d="M756.99 97.33L756.12 98.2C752.82 101.5 750.92 105.96 750.83 110.63C750.76 114.33 753.77 117.34 757.47 117.27C762.14 117.18 766.6 115.28 769.9 111.98L770.77 111.11C774.07 107.81 775.97 103.35 776.06 98.68C776.13 94.98 773.12 91.97 769.42 92.04C764.75 92.13 760.29 94.03 756.99 97.33Z" fill="black"/>
616
+ <path d="M796.22 57.39L795.35 56.52C792.05 53.22 787.59 51.32 782.92 51.23C779.22 51.16 776.21 54.17 776.28 57.87C776.37 62.54 778.27 67 781.57 70.3L782.44 71.17C785.74 74.47 790.2 76.37 794.87 76.46C798.57 76.53 801.58 73.52 801.51 69.82C801.42 65.15 799.52 60.69 796.22 57.39Z" fill="#03582F"/>
617
+ <path d="M759.1 93.65L758.23 94.52C754.93 97.82 753.03 102.28 752.94 106.95C752.87 110.65 755.88 113.66 759.58 113.59C764.25 113.5 768.71 111.6 772.01 108.3L772.88 107.43C776.18 104.13 778.08 99.67 778.17 95C778.24 91.3 775.23 88.29 771.53 88.36C766.86 88.45 762.4 90.34 759.1 93.65Z" fill="#03582F"/>
618
+ <path d="M841.7 78.07V76.84C841.7 72.17 839.89 67.68 836.65 64.31C834.09 61.65 829.82 61.65 827.26 64.31C824.02 67.68 822.21 72.17 822.21 76.84V78.07C822.21 82.74 824.02 87.23 827.26 90.6C829.82 93.26 834.09 93.26 836.65 90.6C839.89 87.23 841.7 82.74 841.7 78.07Z" fill="#03582F"/>
619
+ <path d="M821.6 60.04V58.81C821.6 54.14 819.79 49.65 816.55 46.28C813.99 43.62 809.72 43.62 807.16 46.28C803.92 49.65 802.11 54.14 802.11 58.81V60.04C802.11 64.71 803.92 69.2 807.16 72.57C809.72 75.23 813.99 75.23 816.55 72.57C819.79 69.2 821.6 64.71 821.6 60.04Z" fill="#03582F"/>
620
+ <path d="M777.36 111.05H776.13C771.46 111.05 766.97 112.86 763.6 116.1C760.94 118.66 760.94 122.93 763.6 125.49C766.97 128.73 771.46 130.54 776.13 130.54H777.36C782.03 130.54 786.52 128.73 789.89 125.49C792.55 122.93 792.55 118.66 789.89 116.1C786.52 112.86 782.03 111.05 777.36 111.05Z" fill="#03582F"/>
621
+ <path d="M835.73 94.45H834.5C829.83 94.45 825.34 96.26 821.97 99.5C819.31 102.06 819.31 106.33 821.97 108.89C825.34 112.13 829.83 113.94 834.5 113.94H835.73C840.4 113.94 844.89 112.13 848.26 108.89C850.92 106.33 850.92 102.06 848.26 99.5C844.89 96.26 840.4 94.45 835.73 94.45Z" fill="#10462D"/>
622
+ <path d="M804.32 142.46L805.19 141.59C808.49 138.29 810.39 133.83 810.48 129.16C810.55 125.46 807.54 122.45 803.84 122.52C799.17 122.61 794.71 124.51 791.41 127.81L790.54 128.68C787.24 131.98 785.34 136.44 785.25 141.11C785.18 144.81 788.19 147.82 791.89 147.75C796.56 147.66 801.01 145.76 804.32 142.46Z" fill="#03582F"/>
623
+ <path d="M812.89 114.76L813.76 113.89C817.06 110.59 818.96 106.13 819.05 101.46C819.12 97.76 816.11 94.75 812.41 94.82C807.74 94.91 803.28 96.81 799.98 100.11L799.11 100.98C795.81 104.28 793.91 108.74 793.82 113.41C793.75 117.11 796.76 120.12 800.46 120.05C805.13 119.96 809.59 118.06 812.89 114.76Z" fill="#03582F"/>
624
+ <path d="M796.21 78.29H794.98C790.31 78.29 785.82 80.1 782.45 83.34C779.79 85.9 779.79 90.17 782.45 92.73C785.82 95.97 790.31 97.78 794.98 97.78H796.21C800.88 97.78 805.37 95.97 808.74 92.73C811.4 90.17 811.4 85.9 808.74 83.34C805.37 80.09 800.88 78.29 796.21 78.29Z" fill="#03582F"/>
625
+ <path d="M768.06 66.21H766.83C762.16 66.21 757.67 68.02 754.3 71.26C751.64 73.82 751.64 78.09 754.3 80.65C757.67 83.89 762.16 85.7 766.83 85.7H768.06C772.73 85.7 777.22 83.89 780.59 80.65C783.25 78.09 783.25 73.82 780.59 71.26C777.22 68.02 772.73 66.21 768.06 66.21Z" fill="#03582F"/>
626
+ <path d="M817.96 133.52L818.83 134.39C822.13 137.69 826.59 139.59 831.26 139.68C834.96 139.75 837.97 136.74 837.9 133.04C837.81 128.37 835.91 123.91 832.61 120.61L831.74 119.74C828.44 116.44 823.98 114.54 819.31 114.45C815.61 114.38 812.6 117.39 812.67 121.09C812.76 125.77 814.66 130.22 817.96 133.52Z" fill="#03582F"/>
627
+ <path d="M785.72 111.35C789.415 111.35 792.41 108.355 792.41 104.66C792.41 100.965 789.415 97.97 785.72 97.97C782.025 97.97 779.03 100.965 779.03 104.66C779.03 108.355 782.025 111.35 785.72 111.35Z" fill="#03582F"/>
628
+ <path d="M817.58 92.3C820.402 92.3 822.69 90.0122 822.69 87.19C822.69 84.3678 820.402 82.08 817.58 82.08C814.758 82.08 812.47 84.3678 812.47 87.19C812.47 90.0122 814.758 92.3 817.58 92.3Z" fill="#03582F"/>
629
+ <path d="M834.96 79.51L832.17 78.76C831.1 78.47 830.26 77.63 829.97 76.56L829.22 73.77C829.11 73.35 829.5 72.97 829.92 73.09L832.71 73.93C833.71 74.23 834.5 75.02 834.8 76.02L835.64 78.81C835.77 79.23 835.39 79.62 834.96 79.51Z" fill="#06C167"/>
630
+ <path d="M778.51 112.9L779.24 110.19C779.57 108.96 780.53 108 781.77 107.66L784.48 106.93C784.83 106.84 785.14 107.16 785.04 107.5L784.22 110.23C783.87 111.38 782.98 112.28 781.83 112.62L779.1 113.44C778.74 113.56 778.42 113.25 778.51 112.9Z" fill="#06C167"/>
631
+ <path d="M820.45 130.93L818.02 132.33C816.91 132.97 815.55 132.97 814.45 132.33L812.02 130.93C811.71 130.75 811.72 130.3 812.03 130.13L814.54 128.78C815.6 128.21 816.87 128.21 817.92 128.78L820.43 130.13C820.75 130.31 820.76 130.76 820.45 130.93Z" fill="#06C167"/>
632
+ <path d="M796.17 83.4301H791.46V85.4001H796.17V83.4301Z" fill="#06C167"/>
633
+ <path d="M764.78 75.95H762.11V80.35H764.78V75.95Z" fill="#06C167"/>
634
+ <path d="M761.066 108.983L759.277 110.772L761.066 112.561L762.855 110.772L761.066 108.983Z" fill="#06C167"/>
635
+ <path d="M803.29 58.7H800.48V60.43H803.29V58.7Z" fill="#06C167"/>
636
+ <path d="M799.398 126.293L797.864 127.828L801.442 131.406L802.976 129.871L799.398 126.293Z" fill="#BC8B2C"/>
637
+ <path d="M832.879 106.58L836.139 103.32L834.611 101.793L831.352 105.052L832.879 106.58Z" fill="#06C167"/>
638
+ <path d="M785.75 54.46H784.12V56.09H785.75V54.46Z" fill="#BC8B2C"/>
639
+ <path d="M780.59 80.65C783.25 78.09 783.25 73.82 780.59 71.26C778.52 69.27 776.03 67.83 773.34 67C770.9 70.08 769.51 73.9 769.44 77.87C769.38 81.12 771.7 83.84 774.78 84.4C776.92 83.55 778.9 82.28 780.59 80.65Z" fill="#10462D"/>
640
+ <path d="M792.27 56.31C787.6 56.4 783.14 58.3 779.84 61.6L778.97 62.47C778.45 62.99 777.97 63.54 777.53 64.1C778.43 66.4 779.8 68.51 781.57 70.29L782.44 71.16C785.23 73.95 788.85 75.73 792.72 76.27C792.73 76.26 792.74 76.25 792.75 76.24L793.62 75.37C796.92 72.07 798.82 67.61 798.91 62.94C798.94 61.57 798.54 60.3 797.84 59.24C797.56 58.87 797.27 58.51 796.96 58.17C795.75 57 794.09 56.28 792.27 56.31Z" fill="#10462D"/>
641
+ <path d="M777.67 62.4901L776.8 63.36C773.5 66.66 771.6 71.12 771.51 75.79C771.44 79.49 774.45 82.5 778.15 82.43C782.82 82.34 787.28 80.44 790.58 77.14L791.45 76.27C794.75 72.97 796.65 68.51 796.74 63.84C796.81 60.14 793.8 57.13 790.1 57.2C785.43 57.29 780.97 59.1901 777.67 62.4901Z" fill="#996F00"/>
642
+ <path d="M776.02 79.5701C776.848 79.5701 777.52 78.8985 777.52 78.0701C777.52 77.2416 776.848 76.5701 776.02 76.5701C775.192 76.5701 774.52 77.2416 774.52 78.0701C774.52 78.8985 775.192 79.5701 776.02 79.5701Z" fill="black"/>
643
+ <path d="M759.1 93.65L758.23 94.52C755.73 97.02 754.04 100.17 753.33 103.58C756.66 106.63 761.01 108.34 765.54 108.34H766.77C768.96 108.34 771.11 107.94 773.13 107.18C776.28 103.9 778.09 99.56 778.18 95C778.2 94.15 778.05 93.33 777.76 92.58C774.85 90.35 771.32 89.05 767.64 88.87C764.42 89.64 761.46 91.28 759.1 93.65Z" fill="#10462D"/>
644
+ <path d="M771.19 84.42H769.96C765.29 84.42 760.8 86.23 757.43 89.47C754.77 92.03 754.77 96.3 757.43 98.86C760.8 102.1 765.29 103.91 769.96 103.91H771.19C775.86 103.91 780.35 102.1 783.72 98.86C786.38 96.3 786.38 92.03 783.72 89.47C780.35 86.23 775.86 84.42 771.19 84.42Z" fill="#BC8B2C"/>
645
+ <path d="M759.01 95.7601C759.838 95.7601 760.51 95.0885 760.51 94.2601C760.51 93.4316 759.838 92.7601 759.01 92.7601C758.181 92.7601 757.51 93.4316 757.51 94.2601C757.51 95.0885 758.181 95.7601 759.01 95.7601Z" fill="black"/>
646
+ <path d="M831.92 122.64C831.9 121.61 831.79 120.6 831.6 119.61C828.31 116.39 823.92 114.55 819.31 114.46C815.61 114.39 812.6 117.4 812.67 121.1C812.69 122.13 812.8 123.14 812.99 124.13C816.28 127.35 820.67 129.19 825.28 129.28C828.97 129.35 831.99 126.34 831.92 122.64Z" fill="#10462D"/>
647
+ <path d="M797.45 78.33C797.93 81.5 800.7 83.92 804.02 83.86C805.57 83.83 807.1 83.6 808.58 83.18C805.52 80.32 801.59 78.62 797.45 78.33Z" fill="#10462D"/>
648
+ <path d="M819.55 75.81L820.42 74.94C823.72 71.64 825.62 67.18 825.71 62.51C825.78 58.81 822.77 55.8 819.07 55.87C814.4 55.96 809.94 57.86 806.64 61.16L805.77 62.03C802.47 65.33 800.57 69.79 800.48 74.46C800.41 78.16 803.42 81.17 807.12 81.1C811.79 81.01 816.25 79.11 819.55 75.81Z" fill="#BC8B2C"/>
649
+ <path d="M821.2 61.73C822.028 61.73 822.7 61.0585 822.7 60.23C822.7 59.4016 822.028 58.73 821.2 58.73C820.371 58.73 819.7 59.4016 819.7 60.23C819.7 61.0585 820.371 61.73 821.2 61.73Z" fill="black"/>
650
+ <path d="M777.36 130.54C781.45 130.54 785.4 129.15 788.58 126.64C788.32 126.34 788.05 126.05 787.77 125.77L786.9 124.9C783.6 121.6 779.14 119.7 774.47 119.61C770.77 119.54 767.76 122.55 767.83 126.25C767.85 127.05 767.92 127.84 768.04 128.62C770.53 129.87 773.3 130.54 776.13 130.54H777.36Z" fill="#10462D"/>
651
+ <path d="M793.06 138.2C793 134.89 792.02 131.7 790.29 128.94C787.14 132.22 785.34 136.56 785.25 141.11C785.22 142.49 785.63 143.77 786.34 144.84C786.37 144.84 786.4 144.84 786.43 144.84C790.12 144.91 793.13 141.9 793.06 138.2Z" fill="#10462D"/>
652
+ <path d="M791.5 122.04L790.63 121.17C787.33 117.87 782.87 115.97 778.2 115.88C774.5 115.81 771.49 118.82 771.56 122.52C771.65 127.19 773.55 131.65 776.85 134.95L777.72 135.82C781.02 139.12 785.48 141.02 790.15 141.11C793.85 141.18 796.86 138.17 796.79 134.47C796.7 129.8 794.8 125.34 791.5 122.04Z" fill="#BC8B2C"/>
653
+ <path d="M775.92 121.89C776.748 121.89 777.42 121.218 777.42 120.39C777.42 119.562 776.748 118.89 775.92 118.89C775.091 118.89 774.42 119.562 774.42 120.39C774.42 121.218 775.091 121.89 775.92 121.89Z" fill="black"/>
654
+ <path d="M810.73 87.98C809.15 88.78 807.68 89.82 806.38 91.07C805.04 92.36 804.37 94.09 804.38 95.81C805.96 95.01 807.43 93.97 808.73 92.72C810.08 91.43 810.74 89.7 810.73 87.98Z" fill="#10462D"/>
655
+ <path d="M821.96 99.5C820.28 101.11 819.66 103.4 820.1 105.51H820.15C824.82 105.51 829.31 103.7 832.68 100.46C834.36 98.85 834.98 96.56 834.54 94.45H834.49C829.82 94.45 825.33 96.26 821.96 99.5Z" fill="black"/>
656
+ <path d="M818.51 105.5C818.84 104.19 819.03 102.83 819.05 101.46C819.12 97.76 816.11 94.75 812.41 94.82C809.62 94.87 806.91 95.58 804.47 96.83C804.69 98.16 805.33 99.44 806.38 100.46C809.65 103.61 813.98 105.4 818.51 105.5Z" fill="#10462D"/>
657
+ <path d="M823.3 80.35H822.07C817.4 80.35 812.91 82.16 809.54 85.4C806.88 87.96 806.88 92.23 809.54 94.79C812.91 98.03 817.4 99.84 822.07 99.84H823.3C827.97 99.84 832.46 98.03 835.83 94.79C838.49 92.23 838.49 87.96 835.83 85.4C832.46 82.16 827.97 80.35 823.3 80.35Z" fill="#996F00"/>
658
+ <path d="M834.67 91.6C835.498 91.6 836.17 90.9285 836.17 90.1C836.17 89.2716 835.498 88.6 834.67 88.6C833.841 88.6 833.17 89.2716 833.17 90.1C833.17 90.9285 833.841 91.6 834.67 91.6Z" fill="black"/>
659
+ <path d="M806.37 103.79V102.56C806.37 97.89 804.56 93.4 801.32 90.03C798.76 87.37 794.49 87.37 791.93 90.03C788.69 93.4 786.88 97.89 786.88 102.56V103.79C786.88 108.46 788.69 112.95 791.93 116.32C794.49 118.98 798.76 118.98 801.32 116.32C804.56 112.95 806.37 108.46 806.37 103.79Z" fill="#996F00"/>
660
+ <path d="M796.63 116.66C797.458 116.66 798.13 115.988 798.13 115.16C798.13 114.332 797.458 113.66 796.63 113.66C795.801 113.66 795.13 114.332 795.13 115.16C795.13 115.988 795.801 116.66 796.63 116.66Z" fill="black"/>
661
+ <path d="M814.88 119.93L815.75 120.8C819.05 124.1 823.51 126 828.18 126.09C831.88 126.16 834.89 123.15 834.82 119.45C834.73 114.78 832.83 110.32 829.53 107.02L828.66 106.15C825.36 102.85 820.9 100.95 816.23 100.86C812.53 100.79 809.52 103.8 809.59 107.5C809.68 112.17 811.58 116.63 814.88 119.93Z" fill="#BC8B2C"/>
662
+ <path d="M830.46 123.08C831.288 123.08 831.96 122.409 831.96 121.58C831.96 120.752 831.288 120.08 830.46 120.08C829.632 120.08 828.96 120.752 828.96 121.58C828.96 122.409 829.632 123.08 830.46 123.08Z" fill="black"/>
663
+ <path d="M327.55 280.66L237.62 149.27C233.55 143.32 225.42 141.8 219.47 145.87L0 296.1V373.09L28.42 414.61H155L324.16 298.82C330.11 294.74 331.63 286.62 327.55 280.66Z" fill="#870F00"/>
664
+ <path d="M133.124 267.96C123.094 266.08 112.724 267.57 103.624 272.2L96.5843 275.78C91.9043 278.16 86.9843 280.06 81.9243 281.44L78.7543 282.3C71.3943 284.31 65.8243 290.34 64.4243 297.84L59.8643 322.2L88.7943 336.34C98.2243 340.95 108.244 344.27 118.564 346.2C128.884 348.13 139.424 348.66 149.884 347.78L181.964 345.07L186.524 320.71C187.924 313.21 184.924 305.57 178.784 301.03L175.564 298.65C171.204 295.43 167.194 291.75 163.604 287.69L159.294 282.81C152.464 275.09 143.254 269.86 133.124 267.96Z" fill="#FA9269"/>
665
+ <path d="M141.47 322.67L150.41 274.95C145.26 271.51 139.43 269.12 133.26 267.97C125.53 266.52 117.59 267.08 110.2 269.53L101.64 315.21L141.47 322.67Z" fill="#FABDA5"/>
666
+ <path d="M128.61 292.69C118.64 290.82 108.33 292.61 99.5598 297.72L94.1298 300.89C87.8198 304.57 80.9098 307.09 73.7198 308.33C66.7998 309.53 61.3598 314.9 60.0598 321.8C58.6698 329.23 62.4098 336.68 69.1998 340L86.6298 348.52C96.0598 353.13 106.08 356.45 116.4 358.38C126.72 360.31 137.26 360.84 147.72 359.96L167.05 358.33C174.58 357.69 180.76 352.11 182.16 344.67L182.17 344.62C183.46 337.74 180.35 330.79 174.37 327.16L173.6 326.69C167.29 322.86 161.72 317.92 157.17 312.1L154.08 308.15C147.75 300.07 138.7 294.58 128.61 292.69Z" fill="#FFE3AC"/>
667
+ <path d="M207.65 235.66L219.15 174.24C214.11 170.57 208.28 168.03 202.06 166.86C194.24 165.4 186.22 166.18 178.89 169.05L167.81 228.2L207.65 235.66Z" fill="#FABDA5"/>
668
+ <path d="M202.344 165.18C192.184 163.28 181.694 164.32 172.114 168.18L170.414 168.87C148.884 177.54 133.264 196.6 128.994 219.42L157.924 233.56C167.354 238.17 177.374 241.49 187.694 243.42C198.014 245.35 208.554 245.88 219.014 245L251.094 242.29C255.364 219.48 247.704 196.06 230.774 180.18L229.434 178.93C221.894 171.85 212.494 167.08 202.344 165.18Z" fill="#FA9269"/>
669
+ <path d="M213.73 203.17L208.36 231.86L168.53 224.4L173.76 196.47C175.92 184.96 182.6 174.8 192.3 168.26L192.37 168.21C197.35 164.86 204.11 166.23 207.39 171.26C213.53 180.68 215.8 192.11 213.73 203.17Z" fill="#FABDA5"/>
670
+ <path d="M195.57 202.04C185.28 200.11 174.74 200.05 164.43 201.85L142.83 205.63C135.91 206.84 130.47 212.22 129.18 219.12C127.79 226.55 131.53 234 138.32 237.32L155.75 245.84C165.18 250.45 175.2 253.77 185.52 255.7C195.84 257.63 206.38 258.17 216.84 257.28L236.17 255.65C243.7 255.01 249.88 249.43 251.28 241.99C252.57 235.09 249.45 228.1 243.44 224.47L224.67 213.13C215.71 207.73 205.86 203.97 195.57 202.04Z" fill="#FFE3AC"/>
671
+ <path d="M232.59 351.21C253.914 351.21 271.2 333.924 271.2 312.6C271.2 291.276 253.914 273.99 232.59 273.99C211.266 273.99 193.98 291.276 193.98 312.6C193.98 333.924 211.266 351.21 232.59 351.21Z" fill="black"/>
672
+ <path d="M236.79 347.02C258.114 347.02 275.4 329.734 275.4 308.41C275.4 287.086 258.114 269.8 236.79 269.8C215.466 269.8 198.18 287.086 198.18 308.41C198.18 329.734 215.466 347.02 236.79 347.02Z" fill="#FFFAF0"/>
673
+ <path d="M267.99 312.91C270.48 295.68 258.53 279.69 241.29 277.2C231.27 275.75 221.67 279.19 214.9 285.71C219.65 283.96 224.89 283.34 230.25 284.11C247.48 286.6 259.44 302.59 256.95 319.82C255.91 327.03 252.5 333.32 247.63 338.01C258.16 334.15 266.28 324.78 267.99 312.91Z" fill="#66D19E"/>
674
+ <path d="M230.26 284.11C224.9 283.34 219.66 283.96 214.91 285.71C210.04 290.4 206.63 296.69 205.59 303.9C203.1 321.13 215.05 337.12 232.29 339.61C237.65 340.38 242.89 339.76 247.64 338.01C252.51 333.32 255.92 327.03 256.96 319.82C259.45 302.59 247.49 286.6 230.26 284.11Z" fill="#ADDEC9"/>
675
+ <path d="M286.88 265.04C286.66 265.56 287.4 265.94 287.7 265.46C292.56 257.56 294.54 247.96 292.98 238.38C292.7 236.63 291.11 235.55 289.71 236.03C288.31 236.51 287.61 238.1 288.08 239.54C290.69 247.63 290.42 256.69 286.88 265.04Z" fill="#03582F"/>
676
+ <path d="M29.8997 359.32C29.6697 359.2 29.4497 359.09 29.2197 358.97C32.1597 352.03 37.5797 346.19 44.6497 342.68C45.9397 342.04 47.4197 342.58 47.7597 343.74C48.1097 344.9 47.3797 346.12 46.2097 346.49C39.6297 348.59 33.7697 353.05 29.8997 359.32Z" fill="#03582F"/>
677
+ <path d="M43.14 290.46C42.91 290.34 42.69 290.23 42.46 290.11C45.4 283.17 50.82 277.33 57.89 273.82C59.18 273.18 60.66 273.72 61 274.88C61.35 276.04 60.62 277.26 59.45 277.63C52.87 279.73 47 284.19 43.14 290.46Z" fill="#03582F"/>
678
+ <path d="M29.6197 359.16C29.9197 359.22 30.2297 359.29 30.5397 359.35C33.1097 350.48 32.4897 340.75 28.4897 331.94C27.7597 330.33 25.9397 329.7 24.7097 330.53C23.4797 331.36 23.2297 333.08 24.0497 334.34C28.6897 341.44 30.8097 350.22 29.6197 359.16Z" fill="#03582F"/>
679
+ <path d="M31.1798 356.67C30.8698 356.62 30.5598 356.57 30.2598 356.52C31.0698 347.32 35.1698 338.47 42.0898 331.71C43.3498 330.47 45.2698 330.55 46.1198 331.77C46.9598 332.99 46.5698 334.68 45.3498 335.56C38.4698 340.49 33.3198 347.9 31.1798 356.67Z" fill="#048848"/>
680
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M42.0898 331.71C35.2881 338.354 31.2108 347.018 30.3042 356.048C30.2909 356.181 30.2782 356.314 30.2663 356.447C30.2641 356.471 30.2619 356.496 30.2598 356.52C30.5598 356.57 30.8698 356.62 31.1798 356.67C31.1853 356.648 31.1908 356.625 31.1963 356.602C31.2275 356.476 31.2593 356.349 31.2918 356.223C33.4958 347.648 38.587 340.406 45.3498 335.56C46.5698 334.68 46.9598 332.99 46.1198 331.77C45.2698 330.55 43.3498 330.47 42.0898 331.71ZM44.766 334.748C45.6002 334.145 45.7886 333.055 45.2978 332.34C44.8796 331.743 43.713 331.516 42.7912 332.423L42.7886 332.425C37.7777 337.32 34.285 343.337 32.4955 349.78C35.2444 343.681 39.5132 338.512 44.766 334.748Z" fill="#048848"/>
681
+ <path d="M32.1901 345.46C32.4901 345.52 32.8001 345.59 33.1101 345.65C35.6801 336.78 35.0601 327.05 31.0601 318.24C30.3301 316.63 28.5101 316 27.2801 316.83C26.0501 317.66 25.8001 319.38 26.6201 320.64C31.2601 327.74 33.3801 336.52 32.1901 345.46Z" fill="#048848"/>
682
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M30.1495 318.653L30.1493 318.653C29.6102 317.464 28.4342 317.258 27.8394 317.659C27.1184 318.145 26.8976 319.232 27.4577 320.094C30.9982 325.512 33.1097 331.879 33.4628 338.555C34.1239 331.903 33.0457 325.032 30.1495 318.653ZM32.2432 345.043C33.3135 336.247 31.1879 327.63 26.6201 320.64C25.8001 319.38 26.0501 317.66 27.2801 316.83C28.5101 316 30.3301 316.63 31.0601 318.24C34.9984 326.914 35.6601 336.48 33.2266 345.239C33.1945 345.355 33.162 345.47 33.1288 345.585C33.1226 345.607 33.1163 345.628 33.1101 345.65C32.9367 345.616 32.7634 345.58 32.5918 345.543C32.4565 345.515 32.3223 345.486 32.1901 345.46C32.1933 345.435 32.1966 345.411 32.1998 345.386C32.2148 345.272 32.2292 345.157 32.2432 345.043Z" fill="#048848"/>
683
+ <path d="M29.1601 367.41C28.8801 367.27 28.6101 367.12 28.3301 366.98C31.9401 358.48 38.5701 351.33 47.2401 347.03C48.8201 346.24 50.6301 346.91 51.0501 348.33C51.4801 349.75 50.5801 351.24 49.1501 351.7C41.0801 354.26 33.9001 359.72 29.1601 367.41Z" fill="#048848"/>
684
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M47.2401 347.03C38.713 351.259 32.1592 358.245 28.5111 366.561C28.4593 366.679 28.4082 366.797 28.3576 366.915C28.3484 366.937 28.3392 366.958 28.3301 366.98C28.4701 367.05 28.6076 367.123 28.7451 367.195C28.8826 367.267 29.0201 367.34 29.1601 367.41C29.1727 367.39 29.1853 367.369 29.198 367.349C29.2638 367.242 29.3302 367.136 29.3969 367.031C34.1375 359.54 41.2134 354.218 49.1501 351.7C50.5801 351.24 51.4801 349.75 51.0501 348.33C50.6301 346.91 48.8201 346.24 47.2401 347.03ZM48.8455 350.748C49.8275 350.431 50.3436 349.447 50.093 348.62L50.0911 348.614L50.0911 348.614C49.8891 347.931 48.8495 347.343 47.6873 347.924L47.6844 347.926C41.411 351.037 36.2354 355.677 32.5456 361.246C37.0387 356.296 42.6882 352.701 48.8455 350.748Z" fill="#048848"/>
685
+ <path d="M85.0699 272.33C84.7699 272.81 84.0399 272.43 84.2599 271.91C87.8599 263.36 94.5099 256.17 103.21 251.85C104.79 251.06 106.6 251.73 107.02 253.15C107.45 254.57 106.55 256.06 105.12 256.52C97.0199 259.09 89.7999 264.59 85.0699 272.33Z" fill="#048848"/>
686
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M103.21 251.85C94.6999 256.076 88.1513 263.047 84.5001 271.352C84.4567 271.451 84.4136 271.55 84.371 271.649C84.3434 271.713 84.316 271.777 84.2887 271.842C84.2875 271.845 84.2863 271.848 84.2851 271.85C84.2767 271.87 84.2683 271.89 84.2599 271.91C84.0399 272.43 84.7699 272.81 85.0699 272.33C85.0824 272.31 85.095 272.289 85.1075 272.269C85.1078 272.268 85.1081 272.268 85.1083 272.267C85.1451 272.207 85.182 272.148 85.2191 272.088C85.2743 271.999 85.3298 271.911 85.3857 271.822C90.118 264.349 97.1981 259.034 105.12 256.52C106.55 256.06 107.45 254.57 107.02 253.15C106.6 251.73 104.79 251.06 103.21 251.85ZM104.815 255.568C105.797 255.251 106.313 254.267 106.063 253.44L106.061 253.434L106.061 253.434C105.859 252.751 104.819 252.163 103.657 252.744L103.655 252.746C97.3978 255.853 92.2309 260.48 88.5425 266.035C93.0308 261.101 98.6754 257.516 104.815 255.568Z" fill="#048848"/>
687
+ <path d="M287.35 266.05C287.05 266.53 286.32 266.15 286.54 265.63C290.14 257.08 296.79 249.89 305.49 245.57C307.07 244.78 308.88 245.45 309.3 246.87C309.73 248.29 308.83 249.78 307.4 250.24C299.3 252.82 292.08 258.31 287.35 266.05Z" fill="#048848"/>
688
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M305.49 245.57C296.98 249.796 290.431 256.767 286.78 265.072C286.736 265.171 286.693 265.27 286.651 265.369C286.623 265.433 286.596 265.497 286.569 265.562C286.567 265.565 286.566 265.568 286.565 265.57C286.556 265.59 286.548 265.61 286.54 265.63C286.32 266.15 287.05 266.53 287.35 266.05C287.362 266.03 287.375 266.009 287.387 265.989C287.388 265.988 287.388 265.988 287.388 265.987C287.425 265.927 287.462 265.868 287.499 265.808C287.554 265.719 287.61 265.631 287.665 265.543C292.398 258.07 299.478 252.763 307.4 250.24C308.83 249.78 309.73 248.29 309.3 246.87C308.88 245.45 307.07 244.78 305.49 245.57ZM307.095 249.288C308.077 248.971 308.593 247.987 308.343 247.16L308.341 247.154L308.341 247.154C308.139 246.471 307.099 245.883 305.937 246.464L305.934 246.466C299.675 249.574 294.507 254.203 290.819 259.761C295.308 254.826 300.954 251.244 307.095 249.288Z" fill="#048848"/>
689
+ <path d="M125.17 245.96C125.47 246.44 126.2 246.06 125.98 245.54C122.38 236.99 115.73 229.8 107.03 225.48C105.45 224.69 103.64 225.36 103.22 226.78C102.79 228.2 103.69 229.69 105.12 230.15C113.22 232.72 120.43 238.22 125.17 245.96Z" fill="#03582F"/>
690
+ <path d="M28.9698 363.85C29.2798 363.82 29.5898 363.78 29.8998 363.75C29.6098 354.52 26.0198 345.45 19.4998 338.31C18.3098 337 16.3898 336.97 15.4798 338.14C14.5698 339.31 14.8598 341.02 16.0298 341.97C22.6198 347.28 27.3398 354.97 28.9698 363.85Z" fill="#048848"/>
691
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.7596 338.982L18.7596 338.982C17.8841 338.019 16.7095 338.188 16.2692 338.754C15.7347 339.441 15.8584 340.542 16.6587 341.193C21.6835 345.242 25.6478 350.635 28.0433 356.87C26.619 350.345 23.4768 344.148 18.7614 338.984L18.7596 338.982ZM28.9569 363.78C28.9341 363.657 28.9108 363.535 28.887 363.413C27.1842 354.718 22.5115 347.193 16.0298 341.97C14.8598 341.02 14.5698 339.31 15.4798 338.14C16.3898 336.97 18.3098 337 19.4998 338.31C25.9128 345.333 29.4912 354.223 29.8829 363.296C29.8884 363.424 29.8933 363.552 29.8976 363.68C29.8983 363.703 29.8991 363.727 29.8998 363.75C29.7448 363.765 29.5898 363.783 29.4348 363.8C29.2798 363.818 29.1248 363.835 28.9698 363.85C28.9655 363.827 28.9612 363.803 28.9569 363.78Z" fill="#048848"/>
692
+ <path d="M34.0399 341.41C33.7399 341.34 33.4299 341.27 33.1299 341.19C34.4699 332.55 37.6699 324.15 42.6199 316.61C43.5199 315.24 45.3199 314.93 46.4399 315.9C47.5599 316.87 47.6099 318.59 46.6099 319.69C41.0099 325.83 36.6799 333.21 34.0399 341.41Z" fill="#048848"/>
693
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M34.1712 341.007C36.8223 332.968 41.1018 325.729 46.6099 319.69C47.6099 318.59 47.5599 316.87 46.4399 315.9C45.3199 314.93 43.5199 315.24 42.6199 316.61C37.7502 324.028 34.5742 332.278 33.1966 340.77C33.1776 340.887 33.159 341.004 33.1407 341.121C33.1371 341.144 33.1335 341.167 33.1299 341.19C33.3824 341.257 33.6419 341.318 33.8966 341.377C33.9446 341.388 33.9924 341.399 34.0399 341.41C34.0479 341.385 34.056 341.36 34.0641 341.335C34.0995 341.226 34.1352 341.116 34.1712 341.007ZM35.5013 334.824C38.1299 328.978 41.6443 323.651 45.8704 319.017C46.5176 318.304 46.4523 317.234 45.7852 316.656C45.1849 316.136 44.0709 316.223 43.4558 317.159M35.5013 334.824C37.1747 328.637 39.8407 322.666 43.4557 317.159L35.5013 334.824Z" fill="#048848"/>
694
+ <path d="M39.7098 311.13C39.4098 311.06 39.0998 310.99 38.7998 310.91C40.1398 302.27 43.3398 293.87 48.2898 286.33C49.1898 284.96 50.9898 284.65 52.1098 285.62C53.2298 286.59 53.2798 288.31 52.2798 289.41C46.6898 295.55 42.3598 302.93 39.7098 311.13Z" fill="#048848"/>
695
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M39.8406 310.73C42.5012 302.69 46.7809 295.45 52.2798 289.41C53.2798 288.31 53.2298 286.59 52.1098 285.62C50.9898 284.65 49.1898 284.96 48.2898 286.33C43.4197 293.748 40.2435 301.999 38.8661 310.492C38.8473 310.608 38.8289 310.724 38.8108 310.84C38.8071 310.863 38.8035 310.887 38.7998 310.91C39.0523 310.977 39.3118 311.038 39.5665 311.097C39.6145 311.108 39.6623 311.119 39.7098 311.13C39.7179 311.105 39.726 311.08 39.7341 311.055C39.7693 310.946 39.8048 310.838 39.8406 310.73ZM41.1626 304.576C43.7964 298.718 47.3139 293.379 51.5404 288.737C52.1875 288.024 52.1222 286.954 51.4551 286.376C50.8549 285.856 49.7408 285.943 49.1258 286.879M41.1626 304.576C42.8355 298.378 45.5044 292.395 49.1256 286.879L41.1626 304.576Z" fill="#048848"/>
696
+ <path d="M44.2699 286.77C43.9699 286.7 43.6599 286.63 43.3599 286.55C44.6999 277.91 47.8999 269.51 52.8499 261.97C53.7499 260.6 55.5499 260.29 56.6699 261.26C57.7899 262.23 57.8399 263.95 56.8399 265.05C51.2499 271.19 46.9199 278.57 44.2699 286.77Z" fill="#048848"/>
697
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M44.4007 286.37C47.0613 278.33 51.3409 271.09 56.8399 265.05C57.8399 263.95 57.7899 262.23 56.6699 261.26C55.5499 260.29 53.7499 260.6 52.8499 261.97C47.9797 269.388 44.8036 277.639 43.4262 286.132C43.4074 286.248 43.389 286.364 43.3708 286.48C43.3672 286.503 43.3635 286.527 43.3599 286.55C43.6123 286.617 43.8719 286.678 44.1266 286.737C44.1746 286.748 44.2223 286.759 44.2699 286.77C44.278 286.745 44.2861 286.72 44.2942 286.695C44.3294 286.586 44.3649 286.478 44.4007 286.37ZM45.7227 280.216C48.3564 274.358 51.874 269.019 56.1004 264.377C56.7476 263.664 56.6823 262.594 56.0152 262.016C55.4149 261.496 54.3009 261.583 53.6858 262.519M45.7227 280.216C47.3955 274.018 50.0644 268.035 53.6856 262.519L45.7227 280.216Z" fill="#048848"/>
698
+ <path d="M35.8899 324.58C36.2299 324.63 36.5699 324.67 36.8999 324.72C38.9499 315.37 39.0199 305.53 36.9599 295.86C36.5899 294.1 34.8699 293.07 33.3399 293.62C31.8099 294.17 31.0799 295.9 31.6599 297.42C34.9399 305.91 36.4299 315.16 35.8899 324.58Z" fill="#048848"/>
699
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M35.9813 296.066L35.9813 296.066C35.7191 294.819 34.5616 294.244 33.6782 294.561C32.7104 294.909 32.201 296.03 32.5936 297.062C35.2051 303.822 36.6987 311.056 36.9576 318.474C37.8747 311.112 37.5734 303.539 35.9819 296.068L35.9813 296.066ZM35.8899 324.58C36.4299 315.16 34.9399 305.91 31.6599 297.42C31.0799 295.9 31.8099 294.17 33.3399 293.62C34.8699 293.07 36.5899 294.1 36.9599 295.86C39.0199 305.53 38.9499 315.37 36.8999 324.72C36.7246 324.694 36.5465 324.67 36.367 324.646C36.2087 324.625 36.0493 324.604 35.8899 324.58Z" fill="#048848"/>
700
+ <path d="M37.0297 324.84C36.7597 324.78 36.4897 324.71 36.2197 324.65C37.4197 316.96 40.2597 309.49 44.6597 302.78C45.4597 301.56 47.0697 301.28 48.0597 302.15C49.0497 303.01 49.0997 304.55 48.2097 305.52C43.2397 310.98 39.3897 317.54 37.0297 324.84Z" fill="#03582F"/>
701
+ <path d="M40.54 302.03C40.85 302.02 41.16 302.01 41.47 301.99C41.83 293.63 41.6 285.22 40.77 276.8C40.62 275.28 39.22 274.22 37.77 274.52C36.32 274.81 35.43 276.28 35.81 277.71C37.95 285.64 39.53 293.77 40.54 302.03Z" fill="#048848"/>
702
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M37.9661 275.501L37.9661 275.501C37.0974 275.674 36.5414 276.564 36.7759 277.451C38.3721 283.366 39.6583 289.391 40.6307 295.498C40.671 289.314 40.387 283.109 39.7748 276.898C39.6801 275.939 38.8116 275.326 37.9726 275.499L37.9661 275.501ZM40.77 276.8C41.5854 285.072 41.8217 293.335 41.4884 301.55C41.4834 301.672 41.4784 301.794 41.4732 301.916C41.4721 301.941 41.471 301.965 41.47 301.99C41.16 302.01 40.85 302.02 40.54 302.03C40.5367 302.003 40.5334 301.976 40.5301 301.95C40.5155 301.83 40.5007 301.711 40.4858 301.592C39.4739 293.482 37.9121 285.5 35.81 277.71C35.43 276.28 36.32 274.81 37.77 274.52C39.22 274.22 40.62 275.28 40.77 276.8Z" fill="#048848"/>
703
+ <path d="M43.4499 285.74C43.7099 285.73 43.9699 285.72 44.2399 285.71C44.5499 278.67 44.3499 271.57 43.6499 264.48C43.5199 263.2 42.3399 262.31 41.1199 262.55C39.8999 262.8 39.1499 264.03 39.4699 265.24C41.2699 271.93 42.5999 278.78 43.4499 285.74Z" fill="#03582F"/>
704
+ <path d="M46.3898 270.89C46.6398 270.88 46.8798 270.87 47.1298 270.86C47.4198 264.25 47.2298 257.59 46.5698 250.93C46.4498 249.72 45.3398 248.89 44.1898 249.12C43.0398 249.35 42.3398 250.51 42.6398 251.64C44.3498 257.93 45.5998 264.36 46.3898 270.89Z" fill="#048848"/>
705
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M47.1324 270.8C47.1315 270.82 47.1307 270.84 47.1298 270.86C47.0048 270.865 46.8823 270.87 46.7598 270.875C46.6373 270.88 46.5148 270.885 46.3898 270.89C46.3873 270.869 46.3847 270.848 46.3822 270.827C46.3205 270.319 46.2559 269.811 46.1886 269.304C45.3941 263.319 44.2112 257.42 42.6398 251.64C42.3398 250.51 43.0398 249.35 44.1898 249.12C45.3398 248.89 46.4498 249.72 46.5698 250.93C47.1764 257.051 47.386 263.172 47.1908 269.254C47.1742 269.77 47.1548 270.285 47.1324 270.8ZM45.5747 251.029C45.9767 255.086 46.2031 259.142 46.2516 263.187L45.5747 251.029ZM46.2516 263.187C45.5439 259.205 44.662 255.267 43.6057 251.381C43.4512 250.794 43.8177 250.214 44.3859 250.101C44.9362 249.991 45.5109 250.386 45.5747 251.029" fill="#048848"/>
706
+ <path d="M48.1397 266.12L47.2197 265.95L49.6897 241.44C49.8397 239.97 51.2197 238.93 52.6697 239.21C54.1197 239.48 55.0397 240.94 54.6397 242.37L48.1397 266.12Z" fill="#03582F"/>
707
+ <path d="M307.04 271.52V270.59L331.6 268.61C333.08 268.49 334.34 269.66 334.33 271.14C334.32 272.62 333.06 273.78 331.58 273.65L307.04 271.52Z" fill="#03582F"/>
708
+ <path d="M287.16 215.37L286.46 215.73L275.5 198.14C274.84 197.08 275.23 195.69 276.34 195.12C277.45 194.55 278.8 195.05 279.28 196.2L287.16 215.37Z" fill="#048848"/>
709
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M275.5 198.14C274.84 197.08 275.23 195.69 276.34 195.12C277.45 194.55 278.8 195.05 279.28 196.2L287.16 215.37L286.46 215.73L275.5 198.14ZM278.357 196.585C278.357 196.585 278.357 196.584 278.356 196.583C278.098 195.969 277.383 195.709 276.797 196.01C276.203 196.314 276 197.051 276.349 197.611L283.49 209.073L278.357 196.585Z" fill="#048848"/>
710
+ <path d="M49.5708 259.612L48.2046 259.356L26.5213 375.122L27.8875 375.378L49.5708 259.612Z" fill="#03582F"/>
711
+ <path d="M231.46 244.52C233.697 244.52 235.51 242.707 235.51 240.47C235.51 238.233 233.697 236.42 231.46 236.42C229.223 236.42 227.41 238.233 227.41 240.47C227.41 242.707 229.223 244.52 231.46 244.52Z" fill="#B18977"/>
712
+ <path d="M215.63 248.89C216.745 248.89 217.65 247.986 217.65 246.87C217.65 245.754 216.745 244.85 215.63 244.85C214.514 244.85 213.61 245.754 213.61 246.87C213.61 247.986 214.514 248.89 215.63 248.89Z" fill="#B18977"/>
713
+ <path d="M222.15 229.18C223.636 229.18 224.84 227.976 224.84 226.49C224.84 225.004 223.636 223.8 222.15 223.8C220.664 223.8 219.46 225.004 219.46 226.49C219.46 227.976 220.664 229.18 222.15 229.18Z" fill="#B18977"/>
714
+ <path d="M145.37 231.11C146.458 231.11 147.34 230.228 147.34 229.14C147.34 228.052 146.458 227.17 145.37 227.17C144.282 227.17 143.4 228.052 143.4 229.14C143.4 230.228 144.282 231.11 145.37 231.11Z" fill="#B18977"/>
715
+ <path d="M137.67 222.15C139.217 222.15 140.47 220.896 140.47 219.35C140.47 217.804 139.217 216.55 137.67 216.55C136.124 216.55 134.87 217.804 134.87 219.35C134.87 220.896 136.124 222.15 137.67 222.15Z" fill="#B18977"/>
716
+ <path d="M228.35 240.9C230.018 240.9 231.37 239.548 231.37 237.88C231.37 236.212 230.018 234.86 228.35 234.86C226.682 234.86 225.33 236.212 225.33 237.88C225.33 239.548 226.682 240.9 228.35 240.9Z" fill="#FFE3AC"/>
717
+ <path d="M140.75 220.09C142.324 220.09 143.6 218.814 143.6 217.24C143.6 215.666 142.324 214.39 140.75 214.39C139.176 214.39 137.9 215.666 137.9 217.24C137.9 218.814 139.176 220.09 140.75 220.09Z" fill="#FFE3AC"/>
718
+ <path d="M160.7 336.38C162.804 336.38 164.51 334.674 164.51 332.57C164.51 330.466 162.804 328.76 160.7 328.76C158.596 328.76 156.89 330.466 156.89 332.57C156.89 334.674 158.596 336.38 160.7 336.38Z" fill="#B18977"/>
719
+ <path d="M154.85 350.08C155.739 350.08 156.46 349.359 156.46 348.47C156.46 347.581 155.739 346.86 154.85 346.86C153.961 346.86 153.24 347.581 153.24 348.47C153.24 349.359 153.961 350.08 154.85 350.08Z" fill="#B18977"/>
720
+ <path d="M72.2301 326.28C73.1524 326.28 73.9001 325.532 73.9001 324.61C73.9001 323.688 73.1524 322.94 72.2301 322.94C71.3077 322.94 70.5601 323.688 70.5601 324.61C70.5601 325.532 71.3077 326.28 72.2301 326.28Z" fill="#B18977"/>
721
+ <path d="M157.27 334.47C159.242 334.47 160.84 332.872 160.84 330.9C160.84 328.928 159.242 327.33 157.27 327.33C155.299 327.33 153.7 328.928 153.7 330.9C153.7 332.872 155.299 334.47 157.27 334.47Z" fill="#FFE3AC"/>
722
+ <path d="M121.604 319.51C111.634 317.64 101.324 319.43 92.5542 324.54L87.1242 327.71C80.8142 331.39 73.9042 333.91 66.7142 335.15C59.7942 336.35 54.3542 341.72 53.0542 348.62L48.3442 373.76L77.2742 387.9C86.7042 392.51 96.7242 395.83 107.044 397.76C117.364 399.69 127.904 400.23 138.364 399.34L170.444 396.63L175.164 371.44C176.454 364.56 173.344 357.61 167.364 353.98L166.594 353.51C160.284 349.68 154.714 344.74 150.164 338.92L147.074 334.97C140.744 326.9 131.694 321.4 121.604 319.51Z" fill="#FA9269"/>
723
+ <path d="M127.33 388.3L138.83 326.88C133.79 323.21 127.96 320.67 121.74 319.5C113.92 318.04 105.9 318.82 98.5697 321.69L87.4897 380.84L127.33 388.3Z" fill="#FABDA5"/>
724
+ <path d="M116.96 345.02C106.99 343.15 96.6799 344.94 87.9099 350.05L82.4799 353.22C76.1699 356.9 69.2599 359.42 62.0699 360.66C55.1499 361.86 49.7099 367.23 48.4099 374.13C47.0199 381.56 50.7599 389.01 57.5499 392.33L74.9799 400.85C84.4099 405.46 94.4299 408.78 104.75 410.71C115.07 412.64 125.61 413.17 136.07 412.29L155.4 410.66C162.93 410.02 169.11 404.44 170.51 397L170.52 396.95C171.81 390.07 168.7 383.12 162.72 379.49L161.95 379.02C155.64 375.19 150.07 370.25 145.52 364.43L142.43 360.48C136.1 352.41 127.05 346.91 116.96 345.02Z" fill="#FFE3AC"/>
725
+ <path d="M59.3499 378.86C60.4379 378.86 61.3199 377.978 61.3199 376.89C61.3199 375.802 60.4379 374.92 59.3499 374.92C58.2619 374.92 57.3799 375.802 57.3799 376.89C57.3799 377.978 58.2619 378.86 59.3499 378.86Z" fill="#B18977"/>
726
+ <path d="M68.4801 388.63C70.2088 388.63 71.6101 387.229 71.6101 385.5C71.6101 383.771 70.2088 382.37 68.4801 382.37C66.7515 382.37 65.3501 383.771 65.3501 385.5C65.3501 387.229 66.7515 388.63 68.4801 388.63Z" fill="#B18977"/>
727
+ <path d="M148.47 400.55C149.657 400.55 150.62 399.587 150.62 398.4C150.62 397.213 149.657 396.25 148.47 396.25C147.282 396.25 146.32 397.213 146.32 398.4C146.32 399.587 147.282 400.55 148.47 400.55Z" fill="#B18977"/>
728
+ <path d="M158.9 393.05C159.999 393.05 160.89 392.159 160.89 391.06C160.89 389.961 159.999 389.07 158.9 389.07C157.801 389.07 156.91 389.961 156.91 391.06C156.91 392.159 157.801 393.05 158.9 393.05Z" fill="#B18977"/>
729
+ <path d="M69.6697 385.05C72.1274 385.05 74.1197 383.058 74.1197 380.6C74.1197 378.142 72.1274 376.15 69.6697 376.15C67.2121 376.15 65.2197 378.142 65.2197 380.6C65.2197 383.058 67.2121 385.05 69.6697 385.05Z" fill="#FFE3AC"/>
730
+ <path d="M158.764 258.75H153.104V264.41H158.764V258.75Z" fill="#FA9269"/>
731
+ <path d="M235.05 163.491L231.472 159.913L226.437 164.948L230.015 168.525L235.05 163.491Z" fill="#FA9269"/>
732
+ <path d="M301.944 297.53H295.094V301.05H301.944V297.53Z" fill="#FA9269"/>
733
+ <path d="M198.044 350.1H194.244V356.79H198.044V350.1Z" fill="#FA9269"/>
734
+ <path d="M167.37 275.41C168.37 275.41 169.18 274.6 169.18 273.6C169.18 272.6 168.37 271.79 167.37 271.79C166.37 271.79 165.56 272.6 165.56 273.6C165.56 274.6 166.37 275.41 167.37 275.41Z" fill="#FFE3AC"/>
735
+ <path d="M70.5698 269.74C71.5694 269.74 72.3798 268.93 72.3798 267.93C72.3798 266.93 71.5694 266.12 70.5698 266.12C69.5701 266.12 68.7598 266.93 68.7598 267.93C68.7598 268.93 69.5701 269.74 70.5698 269.74Z" fill="#FFE3AC"/>
736
+ <path d="M245.41 187C246.41 187 247.22 186.19 247.22 185.19C247.22 184.19 246.41 183.38 245.41 183.38C244.41 183.38 243.6 184.19 243.6 185.19C243.6 186.19 244.41 187 245.41 187Z" fill="#FFE3AC"/>
737
+ <path d="M216.16 158.6C216.453 158.6 216.69 158.363 216.69 158.07C216.69 157.777 216.453 157.54 216.16 157.54C215.867 157.54 215.63 157.777 215.63 158.07C215.63 158.363 215.867 158.6 216.16 158.6Z" fill="#FFE3AC"/>
738
+ <path d="M307.72 292.66C308.366 292.66 308.89 292.136 308.89 291.49C308.89 290.844 308.366 290.32 307.72 290.32C307.074 290.32 306.55 290.844 306.55 291.49C306.55 292.136 307.074 292.66 307.72 292.66Z" fill="#FFE3AC"/>
739
+ <path d="M258.54 258.75C259.236 258.75 259.8 258.186 259.8 257.49C259.8 256.794 259.236 256.23 258.54 256.23C257.844 256.23 257.28 256.794 257.28 257.49C257.28 258.186 257.844 258.75 258.54 258.75Z" fill="#FFE3AC"/>
740
+ <path d="M179.91 290.33C180.617 290.33 181.19 289.757 181.19 289.05C181.19 288.343 180.617 287.77 179.91 287.77C179.203 287.77 178.63 288.343 178.63 289.05C178.63 289.757 179.203 290.33 179.91 290.33Z" fill="#FFE3AC"/>
741
+ <path d="M12.0602 313.23C13.6508 313.23 14.9402 311.941 14.9402 310.35C14.9402 308.759 13.6508 307.47 12.0602 307.47C10.4696 307.47 9.18018 308.759 9.18018 310.35C9.18018 311.941 10.4696 313.23 12.0602 313.23Z" fill="#FFE3AC"/>
742
+ <path d="M231.49 311.6L227.4 310.5C225.54 310 224.09 308.55 223.58 306.68L222.48 302.59C222.34 302.07 222.83 301.59 223.35 301.75L227.47 302.99C229.2 303.51 230.56 304.87 231.08 306.6L232.32 310.72C232.49 311.25 232.02 311.74 231.49 311.6Z" fill="#048848"/>
743
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M227.4 310.5L231.49 311.6C232.02 311.74 232.49 311.25 232.32 310.72L231.08 306.6C230.56 304.87 229.2 303.51 227.47 302.99L223.35 301.75C222.83 301.59 222.34 302.07 222.48 302.59L223.58 306.68C224.09 308.55 225.54 310 227.4 310.5ZM224.545 306.417C224.545 306.417 224.545 306.418 224.545 306.419C224.963 307.948 226.146 309.127 227.659 309.534L231.206 310.488L230.122 306.888C229.699 305.48 228.59 304.371 227.182 303.948L223.59 302.867L224.545 306.417Z" fill="#048848"/>
744
+ <path d="M236.13 309.89L233.35 305.05C232.08 302.85 232.08 300.14 233.35 297.95L236.13 293.11C236.49 292.49 237.38 292.51 237.72 293.13L240.4 298.13C241.53 300.23 241.53 302.76 240.4 304.86L237.72 309.86C237.38 310.49 236.48 310.51 236.13 309.89Z" fill="#048848"/>
745
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M236.914 309.247L239.519 304.386C240.49 302.582 240.49 300.408 239.519 298.604L239.519 298.602L236.917 293.748L234.217 298.448L234.215 298.452C233.125 300.331 233.124 302.659 234.216 304.55L234.217 304.552L236.914 309.247ZM236.13 293.11C236.49 292.49 237.38 292.51 237.72 293.13L240.4 298.13C241.53 300.23 241.53 302.76 240.4 304.86L237.72 309.86C237.38 310.49 236.48 310.51 236.13 309.89L233.35 305.05C232.08 302.85 232.08 300.14 233.35 297.95L236.13 293.11Z" fill="#048848"/>
746
+ <path d="M853.99 250.8L854.92 251.73C858.44 255.25 863.19 257.27 868.17 257.37C872.11 257.45 875.33 254.23 875.25 250.29C875.15 245.31 873.13 240.56 869.61 237.04L868.68 236.11C865.16 232.59 860.41 230.57 855.43 230.47C851.49 230.39 848.27 233.61 848.35 237.55C848.44 242.53 850.46 247.28 853.99 250.8Z" fill="black"/>
747
+ <path d="M857.22 247.57L858.15 248.5C861.67 252.02 866.42 254.04 871.4 254.14C875.34 254.22 878.56 251 878.48 247.06C878.38 242.08 876.36 237.33 872.84 233.81L871.91 232.88C868.39 229.36 863.64 227.34 858.66 227.24C854.72 227.16 851.5 230.38 851.58 234.32C851.68 239.29 853.7 244.04 857.22 247.57Z" fill="#BC8B2C"/>
748
+ <path d="M873.83 250.93C874.714 250.93 875.43 250.214 875.43 249.33C875.43 248.446 874.714 247.73 873.83 247.73C872.946 247.73 872.23 248.446 872.23 249.33C872.23 250.214 872.946 250.93 873.83 250.93Z" fill="black"/>
749
+ <path d="M924.73 19.48L923 23.53C922.22 25.37 920.51 26.66 918.52 26.91L914.15 27.46C913.59 27.53 913.17 26.96 913.41 26.45L915.29 22.38C916.08 20.67 917.67 19.47 919.53 19.18L923.96 18.49C924.51 18.4 924.95 18.96 924.73 19.48Z" fill="#03582F"/>
750
+ <path d="M332.56 375.51L328.3 374.36C326.36 373.84 324.85 372.33 324.33 370.39L323.18 366.13C323.03 365.59 323.54 365.09 324.08 365.26L328.37 366.55C330.17 367.09 331.59 368.51 332.13 370.31L333.42 374.6C333.6 375.15 333.1 375.66 332.56 375.51Z" fill="#06C167"/>
751
+ <path d="M39.7672 215.287L36.7974 212.317L33.8275 215.287L36.7974 218.257L39.7672 215.287Z" fill="#FA9269"/>
752
+ <path d="M159.324 185.39H156.314V189.4H159.324V185.39Z" fill="#FA9269"/>
753
+ <path d="M220.044 146.01H213.704V149.04H220.044V146.01Z" fill="#FA9269"/>
754
+ <path d="M172.74 148.29C173.789 148.29 174.64 147.439 174.64 146.39C174.64 145.341 173.789 144.49 172.74 144.49C171.691 144.49 170.84 145.341 170.84 146.39C170.84 147.439 171.691 148.29 172.74 148.29Z" fill="#FFE3AC"/>
755
+ <path d="M263.37 383.39C264.519 383.39 265.45 382.459 265.45 381.31C265.45 380.161 264.519 379.23 263.37 379.23C262.221 379.23 261.29 380.161 261.29 381.31C261.29 382.459 262.221 383.39 263.37 383.39Z" fill="#FFE3AC"/>
756
+ <path d="M286.81 153.1L286.44 152.28C285.95 151.2 284.59 150.84 283.62 151.53L282.89 152.05L282 151.96C280.82 151.85 279.82 152.84 279.94 154.02L280.03 154.91L279.51 155.64C278.82 156.61 279.18 157.96 280.26 158.46L281.08 158.83L281.45 159.65C281.94 160.73 283.3 161.09 284.27 160.4L285 159.88L285.89 159.97C287.07 160.08 288.07 159.09 287.95 157.91L287.86 157.02L288.38 156.29C289.07 155.32 288.71 153.97 287.63 153.47L286.81 153.1Z" fill="white"/>
757
+ <path d="M100.74 38.9L100.37 38.08C99.8802 37 98.5202 36.64 97.5502 37.33L96.8202 37.85L95.9302 37.76C94.7502 37.65 93.7502 38.64 93.8702 39.82L93.9602 40.71L93.4402 41.44C92.7502 42.41 93.1102 43.76 94.1902 44.26L95.0002 44.64L95.3702 45.46C95.8602 46.54 97.2202 46.9 98.1902 46.21L98.9202 45.69L99.8102 45.78C100.99 45.89 101.99 44.9 101.87 43.72L101.78 42.83L102.3 42.1C102.99 41.13 102.63 39.78 101.55 39.28L100.74 38.9Z" fill="white"/>
758
+ <path d="M682.61 95.88L682.24 95.06C681.75 93.98 680.39 93.62 679.42 94.31L678.69 94.83L677.8 94.74C676.62 94.63 675.62 95.62 675.74 96.8L675.83 97.69L675.31 98.42C674.62 99.39 674.98 100.74 676.06 101.24L676.88 101.61L677.25 102.43C677.74 103.51 679.1 103.87 680.07 103.18L680.8 102.66L681.69 102.75C682.87 102.86 683.87 101.87 683.75 100.69L683.66 99.8L684.18 99.07C684.87 98.1 684.51 96.75 683.43 96.25L682.61 95.88Z" fill="white"/>
759
+ <path d="M888.86 36.35L888.24 34.99C887.42 33.2 885.17 32.59 883.57 33.74L882.36 34.61L880.88 34.47C878.92 34.28 877.27 35.93 877.46 37.89L877.6 39.37L876.73 40.58C875.58 42.19 876.19 44.44 877.98 45.25L879.34 45.87L879.96 47.23C880.78 49.02 883.03 49.63 884.63 48.48L885.84 47.61L887.32 47.75C889.28 47.94 890.93 46.29 890.74 44.33L890.6 42.85L891.47 41.64C892.62 40.03 892.01 37.78 890.22 36.97L888.86 36.35Z" fill="white"/>
760
+ <path d="M329.39 394.54L329.02 393.72C328.53 392.64 327.17 392.28 326.2 392.97L325.47 393.49L324.58 393.4C323.4 393.29 322.4 394.28 322.52 395.46L322.61 396.35L322.09 397.08C321.4 398.05 321.76 399.4 322.84 399.9L323.66 400.27L324.03 401.09C324.52 402.17 325.88 402.53 326.85 401.84L327.58 401.32L328.47 401.41C329.65 401.52 330.65 400.53 330.53 399.35L330.44 398.46L330.96 397.73C331.65 396.76 331.29 395.41 330.21 394.91L329.39 394.54Z" fill="white"/>
761
+ <path d="M297.81 179.91C298.964 179.91 299.9 178.974 299.9 177.82C299.9 176.666 298.964 175.73 297.81 175.73C296.656 175.73 295.72 176.666 295.72 177.82C295.72 178.974 296.656 179.91 297.81 179.91Z" fill="white"/>
762
+ <path d="M169.9 102.49H159.87V107.48H169.9V102.49Z" fill="#048848"/>
763
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M168.9 103.49H160.87V106.48H168.9V103.49ZM169.9 102.49V107.48H159.87V102.49H169.9Z" fill="#048848"/>
764
+ <path d="M307.91 371.55H304.4V378.75H307.91V371.55Z" fill="#03582F"/>
765
+ <path d="M20.98 22.82H18.29V32.04H20.98V22.82Z" fill="#06C167"/>
766
+ <path d="M308.515 153.002L304.322 148.809L300.129 153.002L304.322 157.195L308.515 153.002Z" fill="#03582F"/>
767
+ <path d="M858.09 19.71C859.946 19.71 861.45 18.2057 861.45 16.35C861.45 14.4943 859.946 12.99 858.09 12.99C856.234 12.99 854.73 14.4943 854.73 16.35C854.73 18.2057 856.234 19.71 858.09 19.71Z" fill="#FFFAF0"/>
768
+ <path d="M785.95 218.89C787.082 218.89 788 217.972 788 216.84C788 215.708 787.082 214.79 785.95 214.79C784.818 214.79 783.9 215.708 783.9 216.84C783.9 217.972 784.818 218.89 785.95 218.89Z" fill="#FFFAF0"/>
769
+ <path d="M876.81 301.69C878.141 301.69 879.22 300.611 879.22 299.28C879.22 297.949 878.141 296.87 876.81 296.87C875.479 296.87 874.4 297.949 874.4 299.28C874.4 300.611 875.479 301.69 876.81 301.69Z" fill="#FFFAF0"/>
770
+ <path d="M864.52 398C865.713 398 866.68 397.033 866.68 395.84C866.68 394.647 865.713 393.68 864.52 393.68C863.327 393.68 862.36 394.647 862.36 395.84C862.36 397.033 863.327 398 864.52 398Z" fill="#FFFAF0"/>
771
+ <path d="M248.184 10.47C247.474 7.68 246.014 5.14 243.954 3.14L240.734 0H204.444L258.194 49.93L248.184 10.47Z" fill="#FA9269"/>
772
+ <path d="M252.97 28.81L211.52 10.5L222.73 7.69C228.46 6.25 234.49 8.49 237.9 13.32C239.85 16.08 242.28 18.47 245.07 20.37L252.04 25.11L252.97 28.81Z" fill="#FF6937"/>
773
+ <path d="M334.78 137.42L375.29 160.65L375.66 160.18C376.2 159.49 376.05 158.49 375.34 157.97L341.09 133.15C340.35 132.61 340.2 131.57 340.76 130.85C341.29 130.16 342.28 130.02 342.98 130.53L377.71 155.4C378.05 155.64 378.51 155.57 378.77 155.25L379.04 154.91C379.3 154.57 379.24 154.09 378.9 153.83L344.56 127.2C343.85 126.65 343.72 125.63 344.27 124.93L344.33 124.85L344.39 124.77C344.94 124.06 345.96 123.93 346.66 124.48L381 151.11C381.34 151.37 381.82 151.31 382.08 150.97L382.35 150.63C382.6 150.3 382.55 149.83 382.24 149.57L349.51 122.12C348.84 121.56 348.74 120.57 349.27 119.89C349.83 119.17 350.88 119.05 351.58 119.64L384.14 146.63C384.82 147.19 385.82 147.08 386.36 146.39L386.73 145.92L354.14 112.47C349.58 107.79 343.1 105.5 336.62 106.28L329.76 107.1C328.45 107.26 327.13 106.85 326.12 105.99L234.44 26.77C232.02 24.68 229.04 23.34 225.88 22.92C222.62 22.49 219.38 23.82 217.37 26.42C215.36 29.02 214.87 32.49 216.1 35.54C217.29 38.5 219.33 41.05 221.96 42.88L321.51 111.94C322.6 112.69 323.32 113.87 323.49 115.19L324.4 122.04C325.29 128.47 329.12 134.17 334.78 137.42Z" fill="#FFE3AC"/>
774
+ <path d="M138.674 33.04C141.524 38.58 146.274 42.91 152.064 45.23L155.685 46.68L188.274 97.77C192.304 104.09 200.654 106.04 207.064 102.14L215.194 97.2L223.844 97.41C229.744 97.55 235.284 94.61 238.474 89.65L239.824 87.55L251.604 97.45C254.144 99.58 257.424 100.63 260.724 100.37L262.275 100.25C266.605 99.91 270.045 96.48 270.405 92.15C270.595 89.86 270.155 87.56 269.125 85.5L262.954 73.07L291.845 101.67L300.294 109.17C303.194 111.74 306.954 113.13 310.835 113.04C313.505 112.98 315.634 110.79 315.604 108.12L315.595 107.38C315.565 104.56 314.624 101.83 312.924 99.59L304.484 88.54L268.764 44.44C260.674 34.46 250.704 26.17 239.414 20.04L215.654 7.12C212.494 5.4 209.524 3.35 206.794 1.01L205.614 0H103.354L136.814 29.43L138.674 33.04Z" fill="#FA9269"/>
775
+ <path d="M301.52 104.57L301.62 104.22C302.29 101.78 304.2 99.87 306.64 99.2L306.99 99.1C307.91 98.85 308.89 99.11 309.56 99.78L312.86 103.08C313.47 103.69 313.95 104.42 314.26 105.22C315.89 109.37 311.79 113.47 307.64 111.85C306.83 111.53 306.1 111.06 305.49 110.45C304.57 109.53 303.17 108.13 302.2 107.16C301.53 106.47 301.27 105.49 301.52 104.57Z" fill="#E11900"/>
776
+ <path d="M964.11 372.16V349.62H930.6L913.93 367.04C911.81 369.26 910.9 372.37 911.5 375.38L914.81 392.01C915.03 393.11 916.12 393.8 917.21 393.53C922.21 392.29 925.9 388.05 926.44 382.92L926.98 377.8L964.11 372.16Z" fill="#9A3F21"/>
777
+ <path d="M926.99 377.8L926.63 371.32C926.49 368.79 927.92 366.44 930.23 365.4L959.92 352.1L964.11 371.6L926.99 377.8Z" fill="#672A16"/>
778
+ <path d="M924.21 356.29L922.22 361.89C921.1 365.05 918.17 367.2 914.83 367.33L913.62 367.38L924.21 356.29Z" fill="#672A16"/>
779
+ <path d="M915.39 391.6C916.14 390.55 916.42 389.24 916.16 387.97L914.97 382.12C914.8 381.3 914.16 380.66 913.35 380.49C912.93 380.4 912.56 380.77 912.64 381.19L914.73 391.45C914.8 391.78 915.21 391.86 915.39 391.6Z" fill="#C14F29"/>
780
+ <path d="M915.47 342.89L905.38 361.98C904.89 362.9 905.01 364.02 905.67 364.82C907.1 366.54 909.33 367.39 911.54 367.06C915.68 366.44 919.31 363.94 921.39 360.3L925.53 353.03H939.27V342.9H915.13" fill="#9A3F21"/>
781
+ <path d="M906.3 361.68C907.54 361.34 908.59 360.5 909.19 359.35L911.96 354.06C912.35 353.32 912.26 352.42 911.73 351.77C911.46 351.44 910.94 351.49 910.74 351.87L905.88 361.15C905.73 361.44 905.99 361.77 906.3 361.68Z" fill="#C14F29"/>
782
+ <path d="M982.46 354.55L962.47 325.32C960.54 322.5 957.35 320.82 953.93 320.82H942.57V337.87L955.83 354.45V368.9L931.32 393.41L934.06 414.6H975.17L986.2 380.34C989.01 371.63 987.63 362.11 982.46 354.55Z" fill="#C14F29"/>
783
+ <path d="M829.63 329.28L782.58 337.02L782.59 337.63C782.61 338.53 783.37 339.22 784.26 339.17L827.37 336.72C828.3 336.67 829.09 337.4 829.12 338.33C829.14 339.22 828.46 339.97 827.57 340.02L784.04 342.74C783.62 342.77 783.29 343.12 783.3 343.54L783.31 343.98C783.32 344.41 783.68 344.76 784.12 344.75L828.48 343.68C829.39 343.66 830.15 344.38 830.17 345.29V345.39V345.49C830.19 346.4 829.47 347.16 828.56 347.18L784.2 348.25C783.77 348.26 783.42 348.62 783.43 349.06L783.44 349.5C783.45 349.92 783.79 350.26 784.22 350.27L827.83 350.88C828.72 350.89 829.44 351.61 829.46 352.49C829.48 353.42 828.73 354.19 827.79 354.18L784.61 353.82C783.71 353.81 782.99 354.55 783.01 355.44L783.02 356.05L830.39 361.5C837.02 362.26 843.62 359.9 848.26 355.1L853.16 350.03C854.1 349.06 855.4 348.53 856.76 348.56L980.42 352.13C983.68 352.22 986.9 351.36 989.68 349.65C992.54 347.89 994.24 344.74 994.16 341.39C994.08 338.04 992.22 334.98 989.28 333.36C986.42 331.78 983.17 331.08 979.91 331.33L856.56 340.88C855.21 340.98 853.88 340.52 852.9 339.59L847.76 334.76C842.93 330.24 836.22 328.19 829.63 329.28Z" fill="white"/>
784
+ <path d="M942.35 320.82H926.51C924.19 320.82 921.9 321.43 919.89 322.6L906.28 330.47C904.95 331.24 904.68 333.05 905.74 334.17L907.12 335.64C910.72 339.46 916.29 340.67 921.15 338.7L929.13 335.46H946.8L942.35 320.82Z" fill="#9A3F21"/>
785
+ <path d="M936.78 320.82H934.29L930.51 335.46H936.16L936.78 320.93" fill="#672A16"/>
786
+ <path d="M907.09 330.72C908.32 331.1 909.66 330.95 910.78 330.3L915.95 327.31C916.67 326.89 917.08 326.08 916.98 325.25C916.93 324.82 916.46 324.59 916.09 324.8L907.02 330.04C906.73 330.21 906.78 330.62 907.09 330.72Z" fill="#C14F29"/>
787
+ <path d="M954.34 376.06L953.84 373.93C952.48 368.14 952.41 362.13 953.63 356.31C955.67 346.64 955.95 336.68 954.48 326.91L953.98 323.6C953.28 318.95 949.28 315.51 944.58 315.51H943.77C940.21 315.51 937.1 317.95 936.26 321.41L934.75 327.59C933.42 333.03 932.61 338.57 932.32 344.16L932.07 348.99C931.57 358.55 929.65 367.99 926.37 376.98L920.94 391.89C918.28 399.18 917.36 406.96 918.19 414.6H955.09C955.5 407.96 955.87 401.7 956.15 396.47C956.53 389.62 955.92 382.74 954.34 376.06Z" fill="#C14F29"/>
788
+ <path d="M947.124 331.71C944.214 332.85 940.934 332.49 938.344 330.74C937.624 330.25 937.224 329.4 937.324 328.53L938.004 322.41C940.784 317.89 947.564 318.65 949.284 323.66L948.604 329.78C948.504 330.64 947.934 331.39 947.124 331.71Z" fill="#FA9269"/>
789
+ <path d="M689.11 22.72L688.16 23.67C684.58 27.25 682.52 32.08 682.43 37.14C682.35 41.15 685.62 44.42 689.63 44.34C694.69 44.24 699.52 42.19 703.1 38.61L704.05 37.66C707.63 34.08 709.69 29.25 709.78 24.19C709.86 20.18 706.59 16.91 702.58 16.99C697.52 17.09 692.69 19.14 689.11 22.72Z" fill="black"/>
790
+ <path d="M687.32 41.23C688.215 41.23 688.94 40.5048 688.94 39.6101C688.94 38.7153 688.215 37.9901 687.32 37.9901C686.425 37.9901 685.7 38.7153 685.7 39.6101C685.7 40.5048 686.425 41.23 687.32 41.23Z" fill="black"/>
791
+ <path d="M693.94 17.89L692.99 18.84C689.41 22.42 687.35 27.25 687.26 32.31C687.18 36.32 690.45 39.59 694.46 39.51C699.52 39.41 704.35 37.36 707.93 33.78L708.88 32.83C712.46 29.25 714.52 24.42 714.61 19.36C714.69 15.35 711.42 12.08 707.41 12.16C702.35 12.26 697.52 14.31 693.94 17.89Z" fill="#996F00"/>
792
+ <path d="M692.15 36.4C693.045 36.4 693.77 35.6747 693.77 34.78C693.77 33.8853 693.045 33.16 692.15 33.16C691.256 33.16 690.53 33.8853 690.53 34.78C690.53 35.6747 691.256 36.4 692.15 36.4Z" fill="black"/>
793
+ <path d="M860.76 177.43H855.41V182.78H860.76V177.43Z" fill="#BC8B2C"/>
794
+ <path d="M343.54 237.93C344.02 238.18 344.44 237.5 344 237.18C336.85 231.95 327.86 229.33 318.61 230.08C316.93 230.22 315.77 231.65 316.12 233.02C316.47 234.39 317.94 235.17 319.33 234.85C327.24 232.97 335.85 233.92 343.54 237.93Z" fill="#03582F"/>
795
+ <path d="M354.12 246.22C354.56 246.54 354.14 247.21 353.65 246.96C345.78 242.88 339.44 236 336 227.38C335.37 225.81 336.14 224.14 337.52 223.85C338.9 223.55 340.26 224.52 340.58 225.92C342.43 233.83 347.12 241.12 354.12 246.22Z" fill="#048848"/>
796
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M336 227.38C339.331 235.728 345.383 242.444 352.91 246.566C353.058 246.647 353.207 246.727 353.357 246.806C353.438 246.849 353.519 246.892 353.6 246.934C353.6 246.934 353.6 246.934 353.6 246.934C353.617 246.943 353.633 246.951 353.65 246.96C354.14 247.21 354.56 246.54 354.12 246.22C354.099 246.205 354.078 246.19 354.057 246.174C354.056 246.173 354.054 246.172 354.053 246.171C353.982 246.119 353.912 246.067 353.842 246.015C353.712 245.919 353.584 245.822 353.456 245.725C346.823 240.654 342.371 233.577 340.58 225.92C340.26 224.52 338.9 223.55 337.52 223.85C336.14 224.14 335.37 225.81 336 227.38ZM348.019 242.088C343.845 237.504 340.973 231.992 339.606 226.148L339.605 226.143L339.605 226.143C339.392 225.209 338.511 224.658 337.732 224.827L337.726 224.829L337.726 224.829C337.104 224.959 336.469 225.863 336.928 227.008L336.929 227.009L336.929 227.009C339.335 233.039 343.197 238.192 348.019 242.088Z" fill="#048848"/>
797
+ <path d="M653.3 189.18C655.067 189.18 656.5 187.747 656.5 185.98C656.5 184.213 655.067 182.78 653.3 182.78C651.533 182.78 650.1 184.213 650.1 185.98C650.1 187.747 651.533 189.18 653.3 189.18Z" fill="white"/>
798
+ <path d="M294.51 47.05C296.333 47.05 297.81 45.5726 297.81 43.75C297.81 41.9275 296.333 40.45 294.51 40.45C292.687 40.45 291.21 41.9275 291.21 43.75C291.21 45.5726 292.687 47.05 294.51 47.05Z" fill="white"/>
799
+ <path d="M309.8 15.94C310.783 15.94 311.58 15.1431 311.58 14.16C311.58 13.1769 310.783 12.38 309.8 12.38C308.817 12.38 308.02 13.1769 308.02 14.16C308.02 15.1431 308.817 15.94 309.8 15.94Z" fill="white"/>
800
+ <path d="M677.67 150.71L674.51 148.26C674.1 147.94 673.54 148.39 673.76 148.86L675.44 152.49C676.73 155.27 677.46 158.28 677.6 161.35C677.96 169.42 684.31 175.93 692.36 176.5L696.6 176.8L697.26 172.6C698.52 164.62 693.6 156.97 685.82 154.81C682.86 153.98 680.09 152.59 677.67 150.71Z" fill="#10462D"/>
801
+ <path d="M712.9 158.71L715.78 155C716.15 154.52 715.63 153.86 715.08 154.12L710.81 156.09C707.54 157.6 704 158.46 700.4 158.62C690.92 159.04 683.26 166.5 682.6 175.97L682.25 180.95L687.18 181.73C696.55 183.21 705.55 177.43 708.08 168.28C709.05 164.81 710.69 161.56 712.9 158.71Z" fill="#048848"/>
802
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M712.11 158.097L713.931 155.752L711.229 156.998C711.229 156.998 711.229 156.998 711.229 156.998C707.841 158.562 704.174 159.453 700.444 159.619C691.472 160.017 684.222 167.077 683.598 176.039L683.312 180.106L687.336 180.742C687.336 180.742 687.336 180.742 687.336 180.742C696.205 182.143 704.722 176.672 707.116 168.013L707.117 168.011C708.122 164.415 709.821 161.048 712.11 158.097ZM687.18 181.73L682.25 180.95L682.6 175.97C683.26 166.5 690.92 159.04 700.4 158.62C704 158.46 707.54 157.6 710.81 156.09L715.08 154.12C715.63 153.86 716.15 154.52 715.78 155L712.9 158.71C710.69 161.56 709.05 164.81 708.08 168.28C705.55 177.43 696.55 183.21 687.18 181.73Z" fill="#048848"/>
803
+ <path d="M682.33 182.13L699.98 166.84L681.12 180.6C680.67 180.93 680.59 181.56 680.93 181.99C681.27 182.44 681.91 182.5 682.33 182.13Z" fill="#10462D"/>
804
+ <path d="M74.5798 40.26L78.7298 42.86C79.2698 43.2 79.8998 42.59 79.5698 42.04L77.0798 37.83C75.1698 34.6 73.9098 31.03 73.3698 27.31C71.9498 17.54 63.4298 10.38 53.5498 10.68L48.3498 10.84L48.0498 16.03C47.4898 25.89 54.4098 34.6 64.1498 36.28C67.8598 36.92 71.3998 38.27 74.5798 40.26Z" fill="#048848"/>
805
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M75.1107 39.4126L77.8802 41.1477L76.219 38.3391C74.2427 34.9969 72.9389 31.3028 72.3802 27.4538C71.0332 18.1864 62.9518 11.3952 53.5805 11.6795C53.5804 11.6795 53.5806 11.6795 53.5805 11.6795L49.2953 11.8114L49.0482 16.0867C49.0481 16.0869 49.0482 16.0865 49.0482 16.0867C48.5172 25.4391 55.0808 33.701 64.3197 35.2945C68.157 35.9565 71.82 37.3533 75.1107 39.4126ZM48.0498 16.03L48.3498 10.84L53.5498 10.68C63.4298 10.38 71.9498 17.54 73.3698 27.31C73.9098 31.03 75.1698 34.6 77.0798 37.83L79.5698 42.04C79.8998 42.59 79.2698 43.2 78.7298 42.86L74.5798 40.26C71.3998 38.27 67.8598 36.92 64.1498 36.28C54.4098 34.6 47.4898 25.89 48.0498 16.03Z" fill="#048848"/>
806
+ <path d="M47.1399 11.04L64.7999 27.73L48.5999 9.62001C48.2199 9.19001 47.5499 9.17001 47.1399 9.57001C46.7199 9.98001 46.7299 10.64 47.1399 11.04Z" fill="#10462D"/>
807
+ <path d="M822.26 221.96L821.39 222.83C818.09 226.13 816.19 230.59 816.1 235.26C816.03 238.96 819.04 241.97 822.74 241.9C827.41 241.81 831.87 239.91 835.17 236.61L836.04 235.74C839.34 232.44 841.24 227.98 841.33 223.31C841.4 219.61 838.39 216.6 834.69 216.67C830.02 216.77 825.56 218.66 822.26 221.96Z" fill="black"/>
808
+ <path d="M820.61 239.04C821.438 239.04 822.11 238.368 822.11 237.54C822.11 236.712 821.438 236.04 820.61 236.04C819.781 236.04 819.11 236.712 819.11 237.54C819.11 238.368 819.781 239.04 820.61 239.04Z" fill="black"/>
809
+ <path d="M825.37 218.85L824.5 219.72C821.2 223.02 819.3 227.48 819.21 232.15C819.14 235.85 822.15 238.86 825.85 238.79C830.52 238.7 834.98 236.8 838.28 233.5L839.15 232.63C842.45 229.33 844.35 224.87 844.44 220.2C844.51 216.5 841.5 213.49 837.8 213.56C833.13 213.65 828.68 215.54 825.37 218.85Z" fill="#03582F"/>
810
+ <path d="M823.72 235.93C824.549 235.93 825.22 235.258 825.22 234.43C825.22 233.602 824.549 232.93 823.72 232.93C822.892 232.93 822.22 233.602 822.22 234.43C822.22 235.258 822.892 235.93 823.72 235.93Z" fill="black"/>
811
+ <path d="M510.98 319.52H501.75V323.59H510.98V319.52Z" fill="#03582F"/>
812
+ <path d="M525.91 305.74H523V313.12H525.91V305.74Z" fill="#06C167"/>
813
+ <path d="M507.328 386.144L504.061 382.877L500.794 386.144L504.061 389.41L507.328 386.144Z" fill="#03582F"/>
814
+ <path d="M330.164 249.99H325.954V254.2H330.164V249.99Z" fill="#FA9269"/>
815
+ <path d="M361.61 232.15C362.935 232.15 364.01 231.075 364.01 229.75C364.01 228.424 362.935 227.35 361.61 227.35C360.284 227.35 359.21 228.424 359.21 229.75C359.21 231.075 360.284 232.15 361.61 232.15Z" fill="#FFE3AC"/>
816
+ <path d="M1319.68 393.23H1314.05V398.86H1319.68V393.23Z" fill="#C14F29"/>
817
+ <path d="M1424.32 301.306L1420.22 297.204L1416.12 301.306L1420.22 305.407L1424.32 301.306Z" fill="#C14F29"/>
818
+ <path d="M1349.43 409.13C1350.91 409.13 1352.11 407.93 1352.11 406.45C1352.11 404.97 1350.91 403.77 1349.43 403.77C1347.95 403.77 1346.75 404.97 1346.75 406.45C1346.75 407.93 1347.95 409.13 1349.43 409.13Z" fill="#C14F29"/>
819
+ <path d="M1380.09 19.71C1381.57 19.71 1382.77 18.5101 1382.77 17.03C1382.77 15.5499 1381.57 14.35 1380.09 14.35C1378.61 14.35 1377.41 15.5499 1377.41 17.03C1377.41 18.5101 1378.61 19.71 1380.09 19.71Z" fill="#C14F29"/>
820
+ <path d="M1406.91 12.19C1408.08 12.19 1409.02 11.2453 1409.02 10.08C1409.02 8.91465 1408.08 7.96997 1406.91 7.96997C1405.74 7.96997 1404.8 8.91465 1404.8 10.08C1404.8 11.2453 1405.74 12.19 1406.91 12.19Z" fill="#C14F29"/>
821
+ <path d="M1004.07 395C1005.72 395 1007.05 393.666 1007.05 392.02C1007.05 390.374 1005.72 389.04 1004.07 389.04C1002.42 389.04 1001.09 390.374 1001.09 392.02C1001.09 393.666 1002.42 395 1004.07 395Z" fill="#C14F29"/>
822
+ <path d="M904.88 249.33C905.995 249.33 906.9 248.426 906.9 247.31C906.9 246.194 905.995 245.29 904.88 245.29C903.764 245.29 902.86 246.194 902.86 247.31C902.86 248.426 903.764 249.33 904.88 249.33Z" fill="#C14F29"/>
823
+ <path d="M154.08 161.43L153.75 160.7C151.03 154.68 149.41 148.22 148.99 141.63L148.7 137.15C148.47 133.64 147.76 130.21 146.6 126.95C146.58 126.88 146.54 126.81 146.52 126.74C146.33 126.22 146.13 125.7 145.92 125.19C145.85 125.02 145.78 124.86 145.71 124.7C145.52 124.26 145.32 123.82 145.12 123.39C145.04 123.22 144.96 123.05 144.88 122.88C144.65 122.42 144.42 121.97 144.17 121.52C144.1 121.4 144.04 121.27 143.97 121.15C143.91 121.05 143.85 120.95 143.79 120.85L145.01 111.93C145.3 109.81 144.52 107.69 142.92 106.27L126.21 91.37L123.32 87.56C120.59 83.95 116.74 81.35 112.37 80.15L70.61 68.72C63.6 66.8 56.29 66.2 49.05 66.97L0 72.16V141.79L28.14 155.48C33.87 158.27 40.08 159.94 46.44 160.39L58.33 161.24C60.11 161.37 61.86 161.68 63.57 162.18L72.99 164.91C74.93 167.22 76.97 169.46 79.11 171.61C85.75 178.25 93.26 183.97 101.43 188.6L116.52 197.16C122.4 200.5 129.79 199.49 134.57 194.71L134.6 194.68C134.67 194.61 134.73 194.54 134.8 194.47L134.81 194.48L151.02 178.27C155.44 173.84 156.67 167.13 154.08 161.43Z" fill="black"/>
824
+ <path d="M147.68 130.62H0V137.18H148.71V137.15C148.56 134.93 148.2 132.75 147.68 130.62Z" fill="#5A0A00"/>
825
+ <path d="M125.89 75.34L142.94 90.54C144.54 91.96 145.32 94.09 145.03 96.2L142.3 116.05C142.09 117.59 140.37 118.42 139.03 117.62C134.88 115.14 131.94 111.05 130.92 106.33L125.89 83.15V75.34Z" fill="#9A3F21"/>
826
+ <path d="M137.584 97.14C131.164 90.72 122.654 86.83 113.604 86.18L107.994 85.77C101.484 85.3 95.1042 83.67 89.1642 80.95C83.4542 78.34 76.7242 79.55 72.2742 83.99L56.0942 100.17L70.3042 125.22C74.9342 133.39 80.6542 140.9 87.2942 147.54C93.9342 154.18 101.444 159.9 109.614 164.53L134.664 178.74L150.874 162.53C155.304 158.1 156.524 151.4 153.944 145.7L153.614 144.97C150.894 138.95 149.274 132.49 148.854 125.9L148.564 121.42C147.974 112.26 144.074 103.63 137.584 97.14Z" fill="#FA9269"/>
827
+ <path d="M107.09 150.74L146.61 111.22C144.75 105.97 141.73 101.15 137.72 97.14C132.69 92.11 126.37 88.63 119.52 87.05L81.46 125.11L107.09 150.74Z" fill="#FABDA5"/>
828
+ <path d="M121.3 113.56C114.88 107.14 106.37 103.25 97.3201 102.6L91.7101 102.19C85.2001 101.72 78.8201 100.09 72.8801 97.37C67.1701 94.76 60.4401 95.97 55.9901 100.41C51.2101 105.19 50.2101 112.58 53.5401 118.46L62.1001 133.55C66.7301 141.72 72.4501 149.23 79.0901 155.87C85.7301 162.51 93.2401 168.23 101.41 172.86L116.5 181.42C122.38 184.76 129.77 183.75 134.55 178.97L134.58 178.94C139.01 174.51 140.23 167.81 137.65 162.11L137.32 161.38C134.6 155.36 132.98 148.9 132.56 142.31L132.27 137.83C131.7 128.68 127.79 120.05 121.3 113.56Z" fill="#FFE3AC"/>
829
+ <path d="M141.93 112.82L139 94.47C138.74 92.83 138.08 91.28 137.07 89.95L123.34 71.84C120.61 68.23 116.76 65.63 112.39 64.43L70.61 52.98C63.6 51.06 56.29 50.46 49.05 51.23L0 56.43V126.06L28.14 139.75C33.87 142.54 40.08 144.21 46.44 144.66L58.33 145.51C60.11 145.64 61.86 145.95 63.57 146.45L84.99 152.66C86.6 153.13 88.33 152.83 89.7 151.86C91.44 150.62 91.97 148.27 90.93 146.4L89 142.93C84.63 135.07 77.42 129.19 68.84 126.51L57.65 123.01L56.85 111.36C56.05 99.7 65.23 89.77 76.92 89.65L84.76 89.57C87.27 89.54 89.78 89.73 92.26 90.12C99.36 91.24 106.64 90.17 113.13 87.06L115.92 90.84C117.33 92.76 119.02 94.47 120.91 95.91L125.31 99.26L128.6 107.41C130.25 111.48 133.48 114.71 137.56 116.34C139.87 117.25 142.33 115.29 141.93 112.82Z" fill="#C14F29"/>
830
+ <path d="M76.184 150.14C75.794 148.32 76.724 146.48 78.414 145.71L78.654 145.6L85.944 148.57C87.384 149.16 87.834 150.98 86.824 152.17C86.394 152.68 85.694 152.89 85.054 152.71L76.184 150.14Z" fill="#FA9269"/>
831
+ <path d="M138.954 112.05L137.474 106.73C137.414 106.52 137.454 106.3 137.574 106.12L137.794 105.8C138.414 104.9 139.604 104.6 140.574 105.08L141.694 112.18C141.754 112.54 141.544 112.89 141.194 113L140.944 113.09C140.104 113.39 139.194 112.91 138.954 112.05Z" fill="#FA9269"/>
832
+ </g>
833
+ <defs>
834
+
835
+ </defs>
836
+ </svg>