@asante-org/leybold-design-system 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +163 -0
- package/dist/.next/types/app/layout.d.ts +9 -0
- package/dist/.next/types/app/page.d.ts +9 -0
- package/dist/.storybook/algoliaProvider.d.ts +42 -0
- package/dist/assets/.gitkeep +2 -0
- package/dist/assets/ai-banner-desktop.png +0 -0
- package/dist/assets/ai-banner-mobile.png +0 -0
- package/dist/assets/carousel-card.png +0 -0
- package/dist/assets/desktop-layout-alt.svg +27 -0
- package/dist/assets/desktop-layout.svg +29 -0
- package/dist/assets/globe.svg +7 -0
- package/dist/assets/language-selector-bg.png +0 -0
- package/dist/assets/leybold-footer-logo.svg +19 -0
- package/dist/assets/leybold-white.svg +19 -0
- package/dist/assets/list-card-alt.png +0 -0
- package/dist/assets/list-card.png +0 -0
- package/dist/assets/list-link-a.png +0 -0
- package/dist/assets/list-link-b.png +0 -0
- package/dist/assets/list-link-c.png +0 -0
- package/dist/assets/list-product-overlay-tip-active.svg +3 -0
- package/dist/assets/list-product-overlay-tip.svg +3 -0
- package/dist/assets/list-product.png +0 -0
- package/dist/assets/logo-example.svg +9 -0
- package/dist/assets/logo.svg +19 -0
- package/dist/assets/phone-layout.svg +14 -0
- package/dist/assets/red-tip.svg +10 -0
- package/dist/assets/search-product.png +0 -0
- package/dist/assets/tablet-layout.svg +28 -0
- package/dist/fonts/calibri.ttf +0 -0
- package/dist/fonts/calibrib.ttf +0 -0
- package/dist/fonts/calibril.ttf +0 -0
- package/dist/index.esm.js +2859 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.esm.scss +5602 -0
- package/dist/index.js +2858 -0
- package/dist/index.js.map +1 -0
- package/dist/index.scss +5602 -0
- package/dist/src/app/layout.d.ts +9 -0
- package/dist/src/app/page.d.ts +2 -0
- package/dist/src/components/AIBanner/AIBanner.d.ts +15 -0
- package/dist/src/components/AIBanner/AIBanner.stories.d.ts +7 -0
- package/dist/src/components/AIBanner/index.d.ts +2 -0
- package/dist/src/components/Button/Button.d.ts +80 -0
- package/dist/src/components/Button/Button.stories.d.ts +25 -0
- package/dist/src/components/Button/index.d.ts +2 -0
- package/dist/src/components/ContentCardHorizontal/ContentCardHorizontal.d.ts +3 -0
- package/dist/src/components/ContentCardHorizontal/ContentCardHorizontal.stories.d.ts +10 -0
- package/dist/src/components/ContentCardHorizontal/index.d.ts +2 -0
- package/dist/src/components/Filters/AppliedFilterTag.d.ts +27 -0
- package/dist/src/components/Filters/AppliedFilters.d.ts +24 -0
- package/dist/src/components/Filters/Filter.types.d.ts +204 -0
- package/dist/src/components/Filters/FilterAccordion.d.ts +6 -0
- package/dist/src/components/Filters/FilterItem.d.ts +6 -0
- package/dist/src/components/Filters/FilterSearch.d.ts +6 -0
- package/dist/src/components/Filters/Filters.stories.d.ts +24 -0
- package/dist/src/components/Filters/FiltersPanel.d.ts +10 -0
- package/dist/src/components/Filters/index.d.ts +7 -0
- package/dist/src/components/Image/Image.d.ts +4 -0
- package/dist/src/components/Image/Image.stories.d.ts +16 -0
- package/dist/src/components/Image/Image.types.d.ts +34 -0
- package/dist/src/components/Image/index.d.ts +2 -0
- package/dist/src/components/InstantResults/FederatedInstantResultsLayout.d.ts +3 -0
- package/dist/src/components/InstantResults/FederatedInstantResultsLayout.stories.d.ts +13 -0
- package/dist/src/components/InstantResults/index.d.ts +9 -0
- package/dist/src/components/LanguageSelector/LanguageSelector.d.ts +7 -0
- package/dist/src/components/LanguageSelector/LanguageSelector.stories.d.ts +32 -0
- package/dist/src/components/LanguageSelector/LanguageSelector.types.d.ts +64 -0
- package/dist/src/components/LanguageSelector/LanguageSelectorLink.d.ts +20 -0
- package/dist/src/components/LanguageSelector/LocationDropdown.d.ts +6 -0
- package/dist/src/components/LanguageSelector/LocationSelectorLink.d.ts +20 -0
- package/dist/src/components/LanguageSelector/index.d.ts +7 -0
- package/dist/src/components/Pagination/Pagination.d.ts +3 -0
- package/dist/src/components/Pagination/Pagination.stories.d.ts +16 -0
- package/dist/src/components/Pagination/Pagination.types.d.ts +98 -0
- package/dist/src/components/Pagination/PaginationButton.d.ts +3 -0
- package/dist/src/components/Pagination/PaginationEllipsis.d.ts +3 -0
- package/dist/src/components/Pagination/PaginationItem.d.ts +3 -0
- package/dist/src/components/Pagination/index.d.ts +5 -0
- package/dist/src/components/ProductCardDetails/ProductCardDetails.d.ts +4 -0
- package/dist/src/components/ProductCardDetails/ProductCardDetails.stories.d.ts +10 -0
- package/dist/src/components/ProductCardDetails/index.d.ts +2 -0
- package/dist/src/components/ProductCardHorizontal/ProductCardHorizontal.d.ts +4 -0
- package/dist/src/components/ProductCardHorizontal/ProductCardHorizontal.stories.d.ts +11 -0
- package/dist/src/components/ProductCardHorizontal/index.d.ts +2 -0
- package/dist/src/components/ProductCardVertical/ProductCardVertical.d.ts +22 -0
- package/dist/src/components/ProductCardVertical/ProductCardVertical.types.d.ts +50 -0
- package/dist/src/components/ProductCardVertical/index.d.ts +2 -0
- package/dist/src/components/ResultsColumn/ResultsColumn.d.ts +3 -0
- package/dist/src/components/ResultsColumn/index.d.ts +2 -0
- package/dist/src/components/ResultsCount/ResultsCount.d.ts +7 -0
- package/dist/src/components/ResultsCount/index.d.ts +2 -0
- package/dist/src/components/ResultsView/FederatedResultsView.d.ts +3 -0
- package/dist/src/components/ResultsView/FederatedResultsView.stories.d.ts +11 -0
- package/dist/src/components/ResultsView/ResultsList.d.ts +3 -0
- package/dist/src/components/ResultsView/index.d.ts +3 -0
- package/dist/src/components/SearchBar/SearchBar.d.ts +3 -0
- package/dist/src/components/SearchBar/SearchBar.stories.d.ts +9 -0
- package/dist/src/components/SearchBar/SearchIcon.d.ts +5 -0
- package/dist/src/components/SearchBar/SearchInput.d.ts +10 -0
- package/dist/src/components/SearchBar/SearchSubmitButton.d.ts +10 -0
- package/dist/src/components/SearchBar/index.d.ts +8 -0
- package/dist/src/components/SearchModal/ModalCloseButton.d.ts +7 -0
- package/dist/src/components/SearchModal/SearchModal.d.ts +3 -0
- package/dist/src/components/SearchModal/SearchModal.stories.d.ts +8 -0
- package/dist/src/components/SearchModal/index.d.ts +4 -0
- package/dist/src/components/SearchTriggerButton/SearchTriggerButton.d.ts +3 -0
- package/dist/src/components/SearchTriggerButton/SearchTriggerButton.stories.d.ts +8 -0
- package/dist/src/components/SearchTriggerButton/index.d.ts +2 -0
- package/dist/src/components/SeeAllLinkButton/SeeAllLinkButton.d.ts +7 -0
- package/dist/src/components/SeeAllLinkButton/index.d.ts +2 -0
- package/dist/src/experience/Carousel/Carousel.d.ts +36 -0
- package/dist/src/experience/Carousel/Carousel.stories.d.ts +7 -0
- package/dist/src/experience/Carousel/index.d.ts +2 -0
- package/dist/src/experience/Footer/Footer.d.ts +201 -0
- package/dist/src/experience/Footer/Footer.stories.d.ts +28 -0
- package/dist/src/experience/Footer/icons/AtlasCopcoIcon.d.ts +10 -0
- package/dist/src/experience/Footer/icons/ExternalLinkIcon.d.ts +10 -0
- package/dist/src/experience/Footer/icons/index.d.ts +2 -0
- package/dist/src/experience/Footer/index.d.ts +2 -0
- package/dist/src/experience/GeneratedList/GeneratedList.d.ts +40 -0
- package/dist/src/experience/GeneratedList/GeneratedList.stories.d.ts +7 -0
- package/dist/src/experience/GeneratedList/GeneratedList.types.d.ts +131 -0
- package/dist/src/experience/GeneratedList/GeneratedListExternalLink.stories.d.ts +7 -0
- package/dist/src/experience/GeneratedList/GeneratedListList.stories.d.ts +9 -0
- package/dist/src/experience/GeneratedList/GeneratedListProduct.stories.d.ts +7 -0
- package/dist/src/experience/GeneratedList/_Card.d.ts +8 -0
- package/dist/src/experience/GeneratedList/_CardMobile.d.ts +8 -0
- package/dist/src/experience/GeneratedList/_ExternalLink.d.ts +8 -0
- package/dist/src/experience/GeneratedList/_List.d.ts +8 -0
- package/dist/src/experience/GeneratedList/_Product.d.ts +9 -0
- package/dist/src/experience/GeneratedList/index.d.ts +2 -0
- package/dist/src/experience/Header/Header.d.ts +20 -0
- package/dist/src/experience/Header/Header.stories.d.ts +9 -0
- package/dist/src/experience/Header/HeaderNavButton.d.ts +9 -0
- package/dist/src/experience/Header/MegaMenu.d.ts +10 -0
- package/dist/src/experience/Header/MenuLink.d.ts +8 -0
- package/dist/src/experience/Header/MobileHeader.stories.d.ts +6 -0
- package/dist/src/experience/Header/MobileMenu.d.ts +9 -0
- package/dist/src/experience/Header/MobileNavBar.d.ts +13 -0
- package/dist/src/experience/Header/index.d.ts +6 -0
- package/dist/src/experience/algolia-dynamic-search/AlgoliaDynamicSearch.d.ts +4 -0
- package/dist/src/experience/algolia-dynamic-search/AlgoliaDynamicSearch.stories.d.ts +7 -0
- package/dist/src/experience/algolia-dynamic-search/index.d.ts +3 -0
- package/dist/src/experience/federated-search/FederatedSearchExperience.d.ts +39 -0
- package/dist/src/experience/federated-search/FederatedSearchExperience.stories.d.ts +10 -0
- package/dist/src/experience/federated-search/FederatedSearchWithAlgolia.stories.d.ts +7 -0
- package/dist/src/experience/federated-search/components/AssistanceBanner/AssistanceBanner.d.ts +22 -0
- package/dist/src/experience/federated-search/components/AssistanceBanner/AssistanceBanner.types.d.ts +29 -0
- package/dist/src/experience/federated-search/components/AssistanceBanner/AssistanceIcon.d.ts +2 -0
- package/dist/src/experience/federated-search/components/AssistanceBanner/index.d.ts +3 -0
- package/dist/src/experience/federated-search/components/FilterDrawer/FilterDrawer.d.ts +24 -0
- package/dist/src/experience/federated-search/components/FilterDrawer/FilterDrawer.types.d.ts +22 -0
- package/dist/src/experience/federated-search/components/FilterDrawer/index.d.ts +2 -0
- package/dist/src/experience/federated-search/components/TabButton/TabButton.d.ts +31 -0
- package/dist/src/experience/federated-search/components/TabButton/TabButton.types.d.ts +32 -0
- package/dist/src/experience/federated-search/components/TabButton/index.d.ts +2 -0
- package/dist/src/experience/federated-search/index.d.ts +2 -0
- package/dist/src/experience/qr-form-journey/QrFormJourney.d.ts +3 -0
- package/dist/src/experience/qr-form-journey/QrFormJourney.stories.d.ts +8 -0
- package/dist/src/experience/qr-form-journey/index.d.ts +1 -0
- package/dist/src/hooks/useFederatedSearchMock.d.ts +36 -0
- package/dist/src/index.d.ts +29 -0
- package/dist/src/stories/foundation/Buttons/ButtonComponents.d.ts +56 -0
- package/dist/src/stories/foundation/Typography/TypographyComponents.d.ts +46 -0
- package/dist/src/stories/foundation/_components/StoryLayout.d.ts +11 -0
- package/dist/src/types/buttons.d.ts +4 -0
- package/dist/src/types/cards.d.ts +50 -0
- package/dist/src/types/search.d.ts +139 -0
- package/dist/src/utils/styles/index.d.ts +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +115 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<svg width="850" height="1348" viewBox="0 0 850 1348" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_6077_1423)">
|
|
3
|
+
<rect width="712.439" height="1224.5" transform="translate(68.9614 57.3103)" fill="white"/>
|
|
4
|
+
<rect x="109.222" y="57.3103" width="631.918" height="289.428" fill="#383E42"/>
|
|
5
|
+
<rect x="109.222" y="363.436" width="307.61" height="286.645" fill="#383E42"/>
|
|
6
|
+
<rect x="433.53" y="363.436" width="307.61" height="286.645" fill="#383E42"/>
|
|
7
|
+
<rect x="109.222" y="666.779" width="199.508" height="287.573" fill="#383E42"/>
|
|
8
|
+
<rect x="325.427" y="666.779" width="199.508" height="287.573" fill="#383E42"/>
|
|
9
|
+
<rect x="541.632" y="666.779" width="199.508" height="287.573" fill="#383E42"/>
|
|
10
|
+
<rect x="109.222" y="971.05" width="145.456" height="310.764" fill="#383E42"/>
|
|
11
|
+
<rect x="271.375" y="971.05" width="145.456" height="310.764" fill="#383E42"/>
|
|
12
|
+
<rect x="433.53" y="971.05" width="145.456" height="310.764" fill="#383E42"/>
|
|
13
|
+
<rect x="595.684" y="971.05" width="145.456" height="310.764" fill="#383E42"/>
|
|
14
|
+
</g>
|
|
15
|
+
<path d="M80.8101 1328.22C67.2978 1328.16 54.1901 1321.66 44.6745 1310.14C35.3019 1298.8 30.0765 1283.29 30.005 1267.37C29.9937 1264.92 30.005 1262.47 30.005 1260.02C30.005 1252.98 30.005 1245.94 30.005 1238.9C30.005 1227.81 30.005 1216.72 30.005 1205.63C30.005 1190.91 30.005 1176.19 30.005 1161.48C30.005 1143.49 30.005 1125.5 30.005 1107.51C30.005 1086.91 30.005 1066.31 30.005 1045.7C30.005 1022.85 30.005 999.991 30.005 977.138C30.005 952.421 30.005 927.703 30.005 902.988C30.005 876.93 30.005 850.872 30.005 824.814C30.005 797.949 30.005 771.084 30.005 744.219C30.005 716.86 30.005 689.499 30.005 662.14C30.005 634.82 30.005 607.5 30.005 580.179C30.005 553.432 30.005 526.684 30.005 499.936C30.005 474.141 30.005 448.349 30.005 422.554C30.005 398.042 30.005 373.53 30.005 349.018C30.005 326.514 30.005 304.012 30.005 281.508C30.005 261.333 30.005 241.157 30.005 220.981C30.005 203.503 30.005 186.025 30.005 168.544C30.005 154.413 30.005 140.282 30.005 126.151C30.005 115.72 30.005 105.29 30.005 94.8616C30.005 88.5668 30.005 82.272 30.005 75.9794C30.005 71.6476 29.9617 67.3407 30.4321 63.0269C32.1652 47.1333 39.2177 32.4364 49.8246 22.6595C58.7757 14.4084 69.8023 10.0721 81.0717 10.0315C84.899 10.018 88.7263 10.0315 92.5536 10.0315C101.475 10.0315 110.397 10.0315 119.318 10.0315C132.58 10.0315 145.843 10.0315 159.106 10.0315C175.889 10.0315 192.673 10.0315 209.456 10.0315C228.903 10.0315 248.348 10.0315 267.795 10.0315C289.151 10.0315 310.507 10.0315 331.863 10.0315C354.458 10.0315 377.053 10.0315 399.648 10.0315C422.437 10.0315 445.226 10.0315 468.013 10.0315C490.32 10.0315 512.629 10.0315 534.936 10.0315C556.079 10.0315 577.221 10.0315 598.363 10.0315C617.312 10.0315 636.258 10.0315 655.207 10.0315C671.284 10.0315 687.361 10.0315 703.438 10.0315C715.906 10.0315 728.374 10.0315 740.842 10.0315C748.765 10.0315 756.689 10.0315 764.613 10.0315C767.815 10.0315 771.029 9.94363 774.232 10.0631C787.648 10.5612 800.602 17.6155 809.758 29.3667C818.515 40.6063 823.355 55.5489 823.421 70.8971C823.432 73.5296 823.421 76.162 823.421 78.7944C823.421 85.9749 823.421 93.1532 823.421 100.334C823.421 111.6 823.421 122.865 823.421 134.131C823.421 148.977 823.421 163.823 823.421 178.668C823.421 196.663 823.421 214.657 823.421 232.651C823.421 253.458 823.421 274.263 823.421 295.069C823.421 318.002 823.421 340.934 823.421 363.864C823.421 388.57 823.421 413.278 823.421 437.984C823.421 464.155 823.421 490.326 823.421 516.497C823.421 543.386 823.421 570.276 823.421 597.166C823.421 624.457 823.421 651.748 823.421 679.039C823.421 706.425 823.421 733.808 823.421 761.194C823.421 787.915 823.421 814.633 823.421 841.354C823.421 867.101 823.421 892.851 823.421 918.598C823.421 943.047 823.421 967.494 823.421 991.943C823.421 1014.37 823.421 1036.79 823.421 1059.21C823.421 1079.29 823.421 1099.36 823.421 1119.44C823.421 1136.76 823.421 1154.08 823.421 1171.4C823.421 1185.44 823.421 1199.48 823.421 1213.52C823.421 1223.8 823.421 1234.07 823.421 1244.35C823.421 1250.46 823.421 1256.56 823.421 1262.66C823.421 1267.45 823.423 1272.19 822.787 1276.95C820.658 1292.85 813.211 1307.33 802.305 1316.75C793.553 1324.31 783.006 1328.19 772.245 1328.22C768.201 1328.23 764.156 1328.22 760.112 1328.22C751.01 1328.22 741.909 1328.22 732.807 1328.22C719.436 1328.22 706.066 1328.22 692.695 1328.22C675.751 1328.22 658.806 1328.22 641.862 1328.22C622.327 1328.22 602.793 1328.22 583.257 1328.22C561.844 1328.22 540.431 1328.22 519.017 1328.22C496.396 1328.22 473.772 1328.22 451.151 1328.22C428.366 1328.22 405.581 1328.22 382.797 1328.22C360.524 1328.22 338.251 1328.22 315.977 1328.22C294.955 1328.22 273.933 1328.22 252.911 1328.22C234.004 1328.22 215.097 1328.22 196.19 1328.22C180.239 1328.22 164.289 1328.22 148.338 1328.22C136.056 1328.22 123.772 1328.22 111.491 1328.22C103.727 1328.22 95.9632 1328.22 88.1994 1328.22C85.7363 1328.22 83.2732 1328.22 80.8101 1328.22Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
16
|
+
<path d="M406.252 33.5113C406.214 28.3716 400.717 25.8852 397.904 29.8369C395.109 33.766 398.019 39.9336 402.273 39.1063C404.553 38.6645 406.231 36.257 406.252 33.5113Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
17
|
+
<path d="M436.158 33.539C436.087 28.52 429.858 28.5162 429.861 33.539C429.868 38.5579 436.143 38.5656 436.158 33.539Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
18
|
+
<path d="M85.7487 1281.14C79.7232 1281.14 74.054 1277.04 71.2505 1270.66C69.7083 1267.14 69.3727 1263.44 69.3727 1259.56C69.3727 1254.95 69.3727 1250.34 69.3727 1245.73C69.3727 1237.09 69.3727 1228.45 69.3727 1219.8C69.3727 1207.54 69.3727 1195.27 69.3727 1183C69.3727 1167.53 69.3727 1152.06 69.3727 1136.59C69.3727 1118.33 69.3727 1100.06 69.3727 1081.8C69.3727 1061.16 69.3727 1040.52 69.3727 1019.89C69.3727 997.29 69.3727 974.692 69.3727 952.095C69.3727 928.022 69.3727 903.952 69.3727 879.879C69.3727 854.609 69.3727 829.338 69.3727 804.07C69.3727 778.159 69.3727 752.248 69.3727 726.34C69.3727 700.055 69.3727 673.769 69.3727 647.484C69.3727 621.314 69.3727 595.141 69.3727 568.971C69.3727 543.329 69.3727 517.686 69.3727 492.046C69.3727 467.349 69.3727 442.651 69.3727 417.954C69.3727 394.617 69.3727 371.279 69.3727 347.94C69.3727 326.377 69.3727 304.815 69.3727 283.25C69.3727 263.878 69.3727 244.506 69.3727 225.134C69.3727 208.366 69.3727 191.599 69.3727 174.832C69.3727 161.087 69.3727 147.34 69.3727 133.595C69.3727 123.31 69.3727 113.023 69.3727 102.738C69.3727 96.2673 69.3727 89.7986 69.3727 83.3276C69.3727 81.0519 69.3349 78.7716 69.3745 76.4958C69.4952 69.2625 72.9058 62.5525 78.3205 59.255C81.4992 57.3198 84.791 57.1213 88.2505 57.1213C93.767 57.1213 99.2854 57.1213 104.802 57.1213C114.86 57.1213 124.918 57.1213 134.977 57.1213C148.843 57.1213 162.71 57.1213 176.579 57.1213C193.522 57.1213 210.466 57.1213 227.409 57.1213C246.698 57.1213 265.987 57.1213 285.274 57.1213C306.175 57.1213 327.076 57.1213 347.978 57.1213C369.76 57.1213 391.541 57.1213 413.324 57.1213C435.192 57.1213 457.06 57.1213 478.928 57.1213C500.278 57.1213 521.627 57.1213 542.977 57.1213C562.957 57.1213 582.938 57.1213 602.921 57.1213C620.918 57.1213 638.916 57.1213 656.913 57.1213C672.135 57.1213 687.356 57.1213 702.578 57.1213C714.291 57.1213 726.005 57.1213 737.719 57.1213C745.192 57.1213 752.667 57.1213 760.141 57.1213C762.854 57.1213 765.588 57.0063 768.301 57.1371C774.353 57.4303 779.905 61.815 782.484 68.3784C783.825 71.7932 784.04 75.3275 784.04 79.0084C784.04 83.7855 784.04 88.5626 784.04 93.3397C784.04 102.136 784.04 110.935 784.04 119.731C784.04 132.093 784.04 144.455 784.04 156.815C784.04 172.349 784.04 187.885 784.04 203.418C784.04 221.768 784.04 240.119 784.04 258.47C784.04 279.181 784.04 299.893 784.04 320.605C784.04 343.264 784.04 365.92 784.04 388.579C784.04 412.766 784.04 436.956 784.04 461.144C784.04 486.448 784.04 511.752 784.04 537.054C784.04 563.057 784.04 589.061 784.04 615.066C784.04 641.354 784.04 667.644 784.04 693.931C784.04 720.09 784.04 746.247 784.04 772.406C784.04 798.019 784.04 823.63 784.04 849.243C784.04 873.893 784.04 898.545 784.04 923.195C784.04 946.406 784.04 969.617 784.04 992.826C784.04 1014.26 784.04 1035.69 784.04 1057.12C784.04 1076.41 784.04 1095.7 784.04 1114.99C784.04 1131.66 784.04 1148.33 784.04 1165C784.04 1178.63 784.04 1192.27 784.04 1205.9C784.04 1216.09 784.04 1226.27 784.04 1236.46C784.04 1242.78 784.04 1249.1 784.04 1255.42C784.04 1257.78 784.119 1260.17 784.019 1262.53C783.713 1269.78 779.963 1276.38 774.443 1279.38C771.317 1281.08 768.125 1281.14 764.788 1281.14C759.076 1281.14 753.363 1281.14 747.649 1281.14C737.425 1281.14 727.2 1281.14 716.974 1281.14C703.015 1281.14 689.056 1281.14 675.095 1281.14C658.103 1281.14 641.112 1281.14 624.12 1281.14C604.763 1281.14 585.408 1281.14 566.051 1281.14C545.107 1281.14 524.165 1281.14 503.221 1281.14C481.422 1281.14 459.622 1281.14 437.824 1281.14C415.901 1281.14 393.979 1281.14 372.058 1281.14C350.744 1281.14 329.43 1281.14 308.117 1281.14C288.143 1281.14 268.17 1281.14 248.197 1281.14C230.297 1281.14 212.396 1281.14 194.497 1281.14C179.401 1281.14 164.307 1281.14 149.211 1281.14C137.652 1281.14 126.095 1281.14 114.536 1281.14C107.247 1281.14 99.9566 1281.14 92.6679 1281.14C90.3621 1281.14 88.0545 1281.14 85.7487 1281.14Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
19
|
+
<path d="M80.8101 1328.22C67.2978 1328.16 54.1901 1321.66 44.6745 1310.14C35.3019 1298.8 30.0765 1283.29 30.005 1267.37C29.9937 1264.92 30.005 1262.47 30.005 1260.02C30.005 1252.98 30.005 1245.94 30.005 1238.9C30.005 1227.81 30.005 1216.72 30.005 1205.63C30.005 1190.91 30.005 1176.19 30.005 1161.48C30.005 1143.49 30.005 1125.5 30.005 1107.51C30.005 1086.91 30.005 1066.31 30.005 1045.7C30.005 1022.85 30.005 999.991 30.005 977.138C30.005 952.421 30.005 927.703 30.005 902.988C30.005 876.93 30.005 850.872 30.005 824.814C30.005 797.949 30.005 771.084 30.005 744.219C30.005 716.86 30.005 689.499 30.005 662.14C30.005 634.82 30.005 607.5 30.005 580.179C30.005 553.432 30.005 526.684 30.005 499.936C30.005 474.141 30.005 448.349 30.005 422.554C30.005 398.042 30.005 373.53 30.005 349.018C30.005 326.514 30.005 304.012 30.005 281.508C30.005 261.333 30.005 241.157 30.005 220.981C30.005 203.503 30.005 186.025 30.005 168.544C30.005 154.413 30.005 140.282 30.005 126.151C30.005 115.72 30.005 105.29 30.005 94.8616C30.005 88.5668 30.005 82.272 30.005 75.9794C30.005 71.6476 29.9617 67.3407 30.4321 63.0269C32.1652 47.1333 39.2177 32.4364 49.8246 22.6595C58.7757 14.4084 69.8023 10.0721 81.0717 10.0315C84.899 10.018 88.7263 10.0315 92.5536 10.0315C101.475 10.0315 110.397 10.0315 119.318 10.0315C132.58 10.0315 145.843 10.0315 159.106 10.0315C175.889 10.0315 192.673 10.0315 209.456 10.0315C228.903 10.0315 248.348 10.0315 267.795 10.0315C289.151 10.0315 310.507 10.0315 331.863 10.0315C354.458 10.0315 377.053 10.0315 399.648 10.0315C422.437 10.0315 445.226 10.0315 468.013 10.0315C490.32 10.0315 512.629 10.0315 534.936 10.0315C556.079 10.0315 577.221 10.0315 598.363 10.0315C617.312 10.0315 636.258 10.0315 655.207 10.0315C671.284 10.0315 687.361 10.0315 703.438 10.0315C715.906 10.0315 728.374 10.0315 740.842 10.0315C748.765 10.0315 756.689 10.0315 764.613 10.0315C767.815 10.0315 771.029 9.94363 774.232 10.0631C787.648 10.5612 800.602 17.6155 809.758 29.3667C818.515 40.6063 823.355 55.5489 823.421 70.8971C823.432 73.5296 823.421 76.162 823.421 78.7944C823.421 85.9749 823.421 93.1532 823.421 100.334C823.421 111.6 823.421 122.865 823.421 134.131C823.421 148.977 823.421 163.823 823.421 178.668C823.421 196.663 823.421 214.657 823.421 232.651C823.421 253.458 823.421 274.263 823.421 295.069C823.421 318.002 823.421 340.934 823.421 363.864C823.421 388.57 823.421 413.278 823.421 437.984C823.421 464.155 823.421 490.326 823.421 516.497C823.421 543.386 823.421 570.276 823.421 597.166C823.421 624.457 823.421 651.748 823.421 679.039C823.421 706.425 823.421 733.808 823.421 761.194C823.421 787.915 823.421 814.633 823.421 841.354C823.421 867.101 823.421 892.851 823.421 918.598C823.421 943.047 823.421 967.494 823.421 991.943C823.421 1014.37 823.421 1036.79 823.421 1059.21C823.421 1079.29 823.421 1099.36 823.421 1119.44C823.421 1136.76 823.421 1154.08 823.421 1171.4C823.421 1185.44 823.421 1199.48 823.421 1213.52C823.421 1223.8 823.421 1234.07 823.421 1244.35C823.421 1250.46 823.421 1256.56 823.421 1262.66C823.421 1267.45 823.423 1272.19 822.787 1276.95C820.658 1292.85 813.211 1307.33 802.305 1316.75C793.553 1324.31 783.006 1328.19 772.245 1328.22C768.201 1328.23 764.156 1328.22 760.112 1328.22C751.01 1328.22 741.909 1328.22 732.807 1328.22C719.436 1328.22 706.066 1328.22 692.695 1328.22C675.751 1328.22 658.806 1328.22 641.862 1328.22C622.327 1328.22 602.793 1328.22 583.257 1328.22C561.844 1328.22 540.431 1328.22 519.017 1328.22C496.396 1328.22 473.772 1328.22 451.151 1328.22C428.366 1328.22 405.581 1328.22 382.797 1328.22C360.524 1328.22 338.251 1328.22 315.977 1328.22C294.955 1328.22 273.933 1328.22 252.911 1328.22C234.004 1328.22 215.097 1328.22 196.19 1328.22C180.239 1328.22 164.289 1328.22 148.338 1328.22C136.056 1328.22 123.772 1328.22 111.491 1328.22C103.727 1328.22 95.9632 1328.22 88.1994 1328.22C85.7363 1328.22 83.2732 1328.22 80.8101 1328.22Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
20
|
+
<path d="M406.252 33.5113C406.214 28.3716 400.717 25.8852 397.904 29.8369C395.109 33.766 398.019 39.9336 402.273 39.1063C404.553 38.6645 406.231 36.257 406.252 33.5113Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
21
|
+
<path d="M436.158 33.539C436.087 28.52 429.858 28.5162 429.861 33.539C429.868 38.5579 436.143 38.5656 436.158 33.539Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
22
|
+
<path d="M85.7487 1281.14C79.7232 1281.14 74.054 1277.04 71.2505 1270.66C69.7083 1267.14 69.3727 1263.44 69.3727 1259.56C69.3727 1254.95 69.3727 1250.34 69.3727 1245.73C69.3727 1237.09 69.3727 1228.45 69.3727 1219.8C69.3727 1207.54 69.3727 1195.27 69.3727 1183C69.3727 1167.53 69.3727 1152.06 69.3727 1136.59C69.3727 1118.33 69.3727 1100.06 69.3727 1081.8C69.3727 1061.16 69.3727 1040.52 69.3727 1019.89C69.3727 997.29 69.3727 974.692 69.3727 952.095C69.3727 928.022 69.3727 903.952 69.3727 879.879C69.3727 854.609 69.3727 829.338 69.3727 804.07C69.3727 778.159 69.3727 752.248 69.3727 726.34C69.3727 700.055 69.3727 673.769 69.3727 647.484C69.3727 621.314 69.3727 595.141 69.3727 568.971C69.3727 543.329 69.3727 517.686 69.3727 492.046C69.3727 467.349 69.3727 442.651 69.3727 417.954C69.3727 394.617 69.3727 371.279 69.3727 347.94C69.3727 326.377 69.3727 304.815 69.3727 283.25C69.3727 263.878 69.3727 244.506 69.3727 225.134C69.3727 208.366 69.3727 191.599 69.3727 174.832C69.3727 161.087 69.3727 147.34 69.3727 133.595C69.3727 123.31 69.3727 113.023 69.3727 102.738C69.3727 96.2673 69.3727 89.7986 69.3727 83.3276C69.3727 81.0519 69.3349 78.7716 69.3745 76.4958C69.4952 69.2625 72.9058 62.5525 78.3205 59.255C81.4992 57.3198 84.791 57.1213 88.2505 57.1213C93.767 57.1213 99.2854 57.1213 104.802 57.1213C114.86 57.1213 124.918 57.1213 134.977 57.1213C148.843 57.1213 162.71 57.1213 176.579 57.1213C193.522 57.1213 210.466 57.1213 227.409 57.1213C246.698 57.1213 265.987 57.1213 285.274 57.1213C306.175 57.1213 327.076 57.1213 347.978 57.1213C369.76 57.1213 391.541 57.1213 413.324 57.1213C435.192 57.1213 457.06 57.1213 478.928 57.1213C500.278 57.1213 521.627 57.1213 542.977 57.1213C562.957 57.1213 582.938 57.1213 602.921 57.1213C620.918 57.1213 638.916 57.1213 656.913 57.1213C672.135 57.1213 687.356 57.1213 702.578 57.1213C714.291 57.1213 726.005 57.1213 737.719 57.1213C745.192 57.1213 752.667 57.1213 760.141 57.1213C762.854 57.1213 765.588 57.0063 768.301 57.1371C774.353 57.4303 779.905 61.815 782.484 68.3784C783.825 71.7932 784.04 75.3275 784.04 79.0084C784.04 83.7855 784.04 88.5626 784.04 93.3397C784.04 102.136 784.04 110.935 784.04 119.731C784.04 132.093 784.04 144.455 784.04 156.815C784.04 172.349 784.04 187.885 784.04 203.418C784.04 221.768 784.04 240.119 784.04 258.47C784.04 279.181 784.04 299.893 784.04 320.605C784.04 343.264 784.04 365.92 784.04 388.579C784.04 412.766 784.04 436.956 784.04 461.144C784.04 486.448 784.04 511.752 784.04 537.054C784.04 563.057 784.04 589.061 784.04 615.066C784.04 641.354 784.04 667.644 784.04 693.931C784.04 720.09 784.04 746.247 784.04 772.406C784.04 798.019 784.04 823.63 784.04 849.243C784.04 873.893 784.04 898.545 784.04 923.195C784.04 946.406 784.04 969.617 784.04 992.826C784.04 1014.26 784.04 1035.69 784.04 1057.12C784.04 1076.41 784.04 1095.7 784.04 1114.99C784.04 1131.66 784.04 1148.33 784.04 1165C784.04 1178.63 784.04 1192.27 784.04 1205.9C784.04 1216.09 784.04 1226.27 784.04 1236.46C784.04 1242.78 784.04 1249.1 784.04 1255.42C784.04 1257.78 784.119 1260.17 784.019 1262.53C783.713 1269.78 779.963 1276.38 774.443 1279.38C771.317 1281.08 768.125 1281.14 764.788 1281.14C759.076 1281.14 753.363 1281.14 747.649 1281.14C737.425 1281.14 727.2 1281.14 716.974 1281.14C703.015 1281.14 689.056 1281.14 675.095 1281.14C658.103 1281.14 641.112 1281.14 624.12 1281.14C604.763 1281.14 585.408 1281.14 566.051 1281.14C545.107 1281.14 524.165 1281.14 503.221 1281.14C481.422 1281.14 459.622 1281.14 437.824 1281.14C415.901 1281.14 393.979 1281.14 372.058 1281.14C350.744 1281.14 329.43 1281.14 308.117 1281.14C288.143 1281.14 268.17 1281.14 248.197 1281.14C230.297 1281.14 212.396 1281.14 194.497 1281.14C179.401 1281.14 164.307 1281.14 149.211 1281.14C137.652 1281.14 126.095 1281.14 114.536 1281.14C107.247 1281.14 99.9566 1281.14 92.6679 1281.14C90.3621 1281.14 88.0545 1281.14 85.7487 1281.14Z" stroke="black" stroke-width="2.82535" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
23
|
+
<defs>
|
|
24
|
+
<clipPath id="clip0_6077_1423">
|
|
25
|
+
<rect width="712.439" height="1224.5" fill="white" transform="translate(68.9614 57.3103)"/>
|
|
26
|
+
</clipPath>
|
|
27
|
+
</defs>
|
|
28
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|