@salesforce/retail-react-app 1.0.0-preview.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/.eslintignore +7 -0
- package/.eslintrc.js +25 -0
- package/.prettierignore +4 -0
- package/.prettierrc.yaml +7 -0
- package/CHANGELOG.md +173 -0
- package/LICENSE +14 -0
- package/README.md +48 -0
- package/app/assets/svg/account.svg +3 -0
- package/app/assets/svg/alert.svg +3 -0
- package/app/assets/svg/basket.svg +3 -0
- package/app/assets/svg/brand-logo.svg +10 -0
- package/app/assets/svg/cc-amex.svg +7 -0
- package/app/assets/svg/cc-cvv.svg +8 -0
- package/app/assets/svg/cc-discover.svg +14 -0
- package/app/assets/svg/cc-mastercard.svg +8 -0
- package/app/assets/svg/cc-visa.svg +11 -0
- package/app/assets/svg/check-circle.svg +3 -0
- package/app/assets/svg/check.svg +3 -0
- package/app/assets/svg/chevron-down.svg +3 -0
- package/app/assets/svg/chevron-left.svg +3 -0
- package/app/assets/svg/chevron-right.svg +3 -0
- package/app/assets/svg/chevron-up.svg +3 -0
- package/app/assets/svg/close.svg +3 -0
- package/app/assets/svg/dashboard.svg +4 -0
- package/app/assets/svg/figma-logo.svg +14 -0
- package/app/assets/svg/file.svg +3 -0
- package/app/assets/svg/filter.svg +3 -0
- package/app/assets/svg/flag-ca.svg +5 -0
- package/app/assets/svg/flag-cn.svg +19 -0
- package/app/assets/svg/flag-fr.svg +19 -0
- package/app/assets/svg/flag-gb.svg +16 -0
- package/app/assets/svg/flag-it.svg +29 -0
- package/app/assets/svg/flag-jp.svg +10 -0
- package/app/assets/svg/flag-us.svg +7 -0
- package/app/assets/svg/github-logo.svg +40 -0
- package/app/assets/svg/hamburger.svg +8 -0
- package/app/assets/svg/heart-solid.svg +7 -0
- package/app/assets/svg/heart.svg +3 -0
- package/app/assets/svg/info.svg +3 -0
- package/app/assets/svg/like.svg +4 -0
- package/app/assets/svg/location.svg +3 -0
- package/app/assets/svg/lock.svg +3 -0
- package/app/assets/svg/paypal.svg +19 -0
- package/app/assets/svg/plug.svg +3 -0
- package/app/assets/svg/plus.svg +3 -0
- package/app/assets/svg/receipt.svg +3 -0
- package/app/assets/svg/search.svg +8 -0
- package/app/assets/svg/signout.svg +3 -0
- package/app/assets/svg/social-facebook.svg +3 -0
- package/app/assets/svg/social-instagram.svg +3 -0
- package/app/assets/svg/social-pinterest.svg +4 -0
- package/app/assets/svg/social-twitter.svg +3 -0
- package/app/assets/svg/social-youtube.svg +3 -0
- package/app/assets/svg/user.svg +3 -0
- package/app/assets/svg/visibility-off.svg +5 -0
- package/app/assets/svg/visibility.svg +3 -0
- package/app/components/_app/index.jsx +401 -0
- package/app/components/_app/index.test.js +85 -0
- package/app/components/_app/partials/above-header.jsx +10 -0
- package/app/components/_app-config/index.jsx +125 -0
- package/app/components/_app-config/index.test.js +77 -0
- package/app/components/_error/index.jsx +142 -0
- package/app/components/_error/index.test.js +25 -0
- package/app/components/action-card/index.jsx +75 -0
- package/app/components/address-display/index.jsx +30 -0
- package/app/components/basic-tile/index.jsx +65 -0
- package/app/components/basic-tile/index.test.js +23 -0
- package/app/components/breadcrumb/index.jsx +67 -0
- package/app/components/breadcrumb/index.test.js +30 -0
- package/app/components/confirmation-modal/index.jsx +111 -0
- package/app/components/confirmation-modal/index.test.js +98 -0
- package/app/components/drawer-menu/index.jsx +405 -0
- package/app/components/drawer-menu/index.test.js +33 -0
- package/app/components/dynamic-image/index.jsx +56 -0
- package/app/components/field/index.jsx +161 -0
- package/app/components/footer/index.jsx +269 -0
- package/app/components/footer/index.test.js +22 -0
- package/app/components/forms/address-fields.jsx +49 -0
- package/app/components/forms/credit-card-fields.jsx +149 -0
- package/app/components/forms/form-action-buttons.jsx +55 -0
- package/app/components/forms/login-fields.jsx +31 -0
- package/app/components/forms/password-requirements.jsx +99 -0
- package/app/components/forms/post-checkout-registration-fields.jsx +43 -0
- package/app/components/forms/profile-fields.jsx +36 -0
- package/app/components/forms/promo-code-fields.jsx +43 -0
- package/app/components/forms/registration-fields.jsx +42 -0
- package/app/components/forms/reset-password-fields.jsx +31 -0
- package/app/components/forms/state-province-options.jsx +75 -0
- package/app/components/forms/update-password-fields.jsx +49 -0
- package/app/components/forms/useAddressFields.jsx +196 -0
- package/app/components/forms/useCreditCardFields.jsx +146 -0
- package/app/components/forms/useLoginFields.jsx +52 -0
- package/app/components/forms/useProfileFields.jsx +95 -0
- package/app/components/forms/usePromoCodeFields.jsx +39 -0
- package/app/components/forms/useRegistrationFields.jsx +136 -0
- package/app/components/forms/useResetPasswordFields.jsx +40 -0
- package/app/components/forms/useUpdatePasswordFields.jsx +89 -0
- package/app/components/header/index.jsx +290 -0
- package/app/components/header/index.test.js +217 -0
- package/app/components/hero/index.jsx +84 -0
- package/app/components/hero/index.test.js +40 -0
- package/app/components/icons/index.jsx +158 -0
- package/app/components/icons/index.test.js +20 -0
- package/app/components/image-gallery/index.jsx +176 -0
- package/app/components/image-gallery/index.test.js +485 -0
- package/app/components/item-variant/index.jsx +33 -0
- package/app/components/item-variant/item-attributes.jsx +107 -0
- package/app/components/item-variant/item-image.jsx +73 -0
- package/app/components/item-variant/item-name.jsx +28 -0
- package/app/components/item-variant/item-price.jsx +117 -0
- package/app/components/link/index.jsx +32 -0
- package/app/components/link/index.test.js +72 -0
- package/app/components/links-list/index.jsx +89 -0
- package/app/components/links-list/index.test.js +62 -0
- package/app/components/list-menu/index.jsx +280 -0
- package/app/components/list-menu/index.test.js +44 -0
- package/app/components/loading-spinner/index.jsx +46 -0
- package/app/components/locale-selector/index.jsx +124 -0
- package/app/components/locale-selector/index.test.js +37 -0
- package/app/components/locale-text/index.jsx +97 -0
- package/app/components/locale-text/index.test.js +36 -0
- package/app/components/login/index.jsx +96 -0
- package/app/components/nested-accordion/index.jsx +185 -0
- package/app/components/nested-accordion/index.test.js +98 -0
- package/app/components/offline-banner/index.jsx +40 -0
- package/app/components/offline-banner/index.test.js +15 -0
- package/app/components/offline-boundary/index.jsx +104 -0
- package/app/components/offline-boundary/index.test.js +123 -0
- package/app/components/order-summary/index.jsx +331 -0
- package/app/components/page-action-placeholder/index.jsx +50 -0
- package/app/components/pagination/index.jsx +134 -0
- package/app/components/pagination/index.test.js +25 -0
- package/app/components/product-item/index.jsx +146 -0
- package/app/components/product-item/index.test.js +38 -0
- package/app/components/product-scroller/index.jsx +172 -0
- package/app/components/product-scroller/index.test.js +98 -0
- package/app/components/product-tile/index.jsx +195 -0
- package/app/components/product-tile/index.test.js +96 -0
- package/app/components/product-view/index.jsx +538 -0
- package/app/components/product-view/index.test.js +224 -0
- package/app/components/product-view-modal/index.jsx +48 -0
- package/app/components/product-view-modal/index.test.js +72 -0
- package/app/components/promo-code/index.jsx +162 -0
- package/app/components/promo-popover/index.jsx +83 -0
- package/app/components/quantity-picker/index.jsx +58 -0
- package/app/components/radio-card/index.jsx +75 -0
- package/app/components/recommended-products/index.jsx +227 -0
- package/app/components/register/index.jsx +114 -0
- package/app/components/reset-password/index.jsx +87 -0
- package/app/components/responsive/index.jsx +29 -0
- package/app/components/scroll-to-top/index.jsx +24 -0
- package/app/components/scroll-to-top/index.test.js +46 -0
- package/app/components/search/index.jsx +279 -0
- package/app/components/search/index.test.js +127 -0
- package/app/components/search/partials/recent-searches.jsx +76 -0
- package/app/components/search/partials/search-suggestions.jsx +45 -0
- package/app/components/search/partials/suggestions.jsx +43 -0
- package/app/components/section/index.jsx +68 -0
- package/app/components/seo/index.jsx +33 -0
- package/app/components/social-icons/index.jsx +101 -0
- package/app/components/social-icons/index.test.js +30 -0
- package/app/components/swatch-group/index.jsx +77 -0
- package/app/components/swatch-group/index.test.js +136 -0
- package/app/components/swatch-group/swatch.jsx +94 -0
- package/app/components/toggle-card/index.jsx +97 -0
- package/app/components/with-registration/index.jsx +58 -0
- package/app/components/with-registration/index.test.js +85 -0
- package/app/constants.js +109 -0
- package/app/contexts/index.js +92 -0
- package/app/hooks/einstein-mock-data.js +916 -0
- package/app/hooks/index.js +17 -0
- package/app/hooks/use-add-to-cart-modal.js +344 -0
- package/app/hooks/use-add-to-cart-modal.test.js +625 -0
- package/app/hooks/use-auth-modal.js +337 -0
- package/app/hooks/use-auth-modal.test.js +365 -0
- package/app/hooks/use-currency.js +20 -0
- package/app/hooks/use-currency.test.js +41 -0
- package/app/hooks/use-current-basket.js +39 -0
- package/app/hooks/use-current-customer.js +29 -0
- package/app/hooks/use-derived-product.js +77 -0
- package/app/hooks/use-derived-product.test.js +69 -0
- package/app/hooks/use-einstein.js +512 -0
- package/app/hooks/use-einstein.test.js +224 -0
- package/app/hooks/use-intersection-observer.js +64 -0
- package/app/hooks/use-limit-urls.js +31 -0
- package/app/hooks/use-limit-urls.test.js +40 -0
- package/app/hooks/use-multi-site.js +36 -0
- package/app/hooks/use-multi-site.test.js +53 -0
- package/app/hooks/use-navigation.js +37 -0
- package/app/hooks/use-navigation.test.js +109 -0
- package/app/hooks/use-page-urls.js +35 -0
- package/app/hooks/use-page-urls.test.js +39 -0
- package/app/hooks/use-pdp-search-params.js +16 -0
- package/app/hooks/use-pdp-search-params.test.js +52 -0
- package/app/hooks/use-previous.js +17 -0
- package/app/hooks/use-product-view-modal.js +93 -0
- package/app/hooks/use-product-view-modal.test.js +172 -0
- package/app/hooks/use-search-params.js +96 -0
- package/app/hooks/use-search-params.test.js +91 -0
- package/app/hooks/use-sort-urls.js +33 -0
- package/app/hooks/use-sort-urls.test.js +42 -0
- package/app/hooks/use-toast.js +68 -0
- package/app/hooks/use-toast.test.js +58 -0
- package/app/hooks/use-variant.js +32 -0
- package/app/hooks/use-variant.test.js +81 -0
- package/app/hooks/use-variation-attributes.js +138 -0
- package/app/hooks/use-variation-attributes.test.js +119 -0
- package/app/hooks/use-variation-params.js +31 -0
- package/app/hooks/use-variation-params.test.js +73 -0
- package/app/hooks/use-wish-list.js +42 -0
- package/app/main.jsx +14 -0
- package/app/mocks/basket-with-suit.js +146 -0
- package/app/mocks/empty-basket.js +39 -0
- package/app/mocks/mock-data.js +5632 -0
- package/app/mocks/product-set-winter-lookM.js +1224 -0
- package/app/mocks/searchResults.js +144 -0
- package/app/mocks/variant-750518699578M.js +434 -0
- package/app/page-designer/README.md +102 -0
- package/app/page-designer/assets/image-tile/index.jsx +51 -0
- package/app/page-designer/assets/image-tile/index.test.js +30 -0
- package/app/page-designer/assets/image-with-text/index.jsx +140 -0
- package/app/page-designer/assets/image-with-text/index.test.js +38 -0
- package/app/page-designer/assets/index.js +9 -0
- package/app/page-designer/index.js +10 -0
- package/app/page-designer/layouts/carousel/index.jsx +222 -0
- package/app/page-designer/layouts/carousel/index.test.js +43 -0
- package/app/page-designer/layouts/index.js +14 -0
- package/app/page-designer/layouts/mobileGrid1r1c/index.jsx +36 -0
- package/app/page-designer/layouts/mobileGrid1r1c/index.test.js +35 -0
- package/app/page-designer/layouts/mobileGrid2r1c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r1c/index.test.js +47 -0
- package/app/page-designer/layouts/mobileGrid2r2c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r2c/index.test.js +71 -0
- package/app/page-designer/layouts/mobileGrid2r3c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r3c/index.test.js +95 -0
- package/app/page-designer/layouts/mobileGrid3r1c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid3r1c/index.test.js +59 -0
- package/app/page-designer/layouts/mobileGrid3r2c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid3r2c/index.test.js +95 -0
- package/app/page-designer/utils.js +14 -0
- package/app/pages/account/addresses.jsx +382 -0
- package/app/pages/account/addresses.test.js +120 -0
- package/app/pages/account/constant.js +57 -0
- package/app/pages/account/index.jsx +237 -0
- package/app/pages/account/index.test.js +188 -0
- package/app/pages/account/order-detail.jsx +397 -0
- package/app/pages/account/order-history.jsx +264 -0
- package/app/pages/account/orders.jsx +30 -0
- package/app/pages/account/orders.test.js +95 -0
- package/app/pages/account/profile.jsx +357 -0
- package/app/pages/account/wishlist/index.jsx +195 -0
- package/app/pages/account/wishlist/index.mock.js +1481 -0
- package/app/pages/account/wishlist/index.test.js +56 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.jsx +170 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.mock.js +1623 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.test.js +99 -0
- package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.jsx +120 -0
- package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.test.js +391 -0
- package/app/pages/cart/index.jsx +476 -0
- package/app/pages/cart/index.test.js +481 -0
- package/app/pages/cart/partials/cart-cta.jsx +46 -0
- package/app/pages/cart/partials/cart-secondary-button-group.jsx +135 -0
- package/app/pages/cart/partials/cart-secondary-button-group.test.js +103 -0
- package/app/pages/cart/partials/cart-skeleton.jsx +93 -0
- package/app/pages/cart/partials/cart-title.jsx +27 -0
- package/app/pages/cart/partials/empty-cart.jsx +86 -0
- package/app/pages/checkout/confirmation.jsx +541 -0
- package/app/pages/checkout/confirmation.mock.js +450 -0
- package/app/pages/checkout/confirmation.test.js +114 -0
- package/app/pages/checkout/index.jsx +169 -0
- package/app/pages/checkout/index.test.js +582 -0
- package/app/pages/checkout/partials/cc-radio-group.jsx +122 -0
- package/app/pages/checkout/partials/checkout-footer.jsx +140 -0
- package/app/pages/checkout/partials/checkout-footer.test.js +16 -0
- package/app/pages/checkout/partials/checkout-header.jsx +54 -0
- package/app/pages/checkout/partials/checkout-header.test.js +16 -0
- package/app/pages/checkout/partials/checkout-skeleton.jsx +52 -0
- package/app/pages/checkout/partials/contact-info.jsx +251 -0
- package/app/pages/checkout/partials/contact-info.test.js +43 -0
- package/app/pages/checkout/partials/payment-form.jsx +97 -0
- package/app/pages/checkout/partials/payment.jsx +276 -0
- package/app/pages/checkout/partials/shipping-address-selection.jsx +377 -0
- package/app/pages/checkout/partials/shipping-address.jsx +132 -0
- package/app/pages/checkout/partials/shipping-options.jsx +232 -0
- package/app/pages/checkout/util/checkout-context.js +94 -0
- package/app/pages/home/data.js +134 -0
- package/app/pages/home/index.jsx +301 -0
- package/app/pages/home/index.test.js +23 -0
- package/app/pages/login/index.jsx +123 -0
- package/app/pages/login/index.test.js +229 -0
- package/app/pages/login-redirect/index.jsx +23 -0
- package/app/pages/login-redirect/index.test.js +16 -0
- package/app/pages/page-not-found/index.jsx +90 -0
- package/app/pages/page-not-found/index.test.js +31 -0
- package/app/pages/product-detail/index.jsx +394 -0
- package/app/pages/product-detail/index.mock.js +197 -0
- package/app/pages/product-detail/index.test.js +162 -0
- package/app/pages/product-detail/partials/information-accordion.jsx +121 -0
- package/app/pages/product-list/index.jsx +735 -0
- package/app/pages/product-list/index.test.js +180 -0
- package/app/pages/product-list/partials/above-page-header.jsx +10 -0
- package/app/pages/product-list/partials/checkbox-refinements.jsx +41 -0
- package/app/pages/product-list/partials/checkbox-refinements.test.js +53 -0
- package/app/pages/product-list/partials/color-refinements.jsx +88 -0
- package/app/pages/product-list/partials/empty-results.jsx +118 -0
- package/app/pages/product-list/partials/link-refinements.jsx +38 -0
- package/app/pages/product-list/partials/page-header.jsx +42 -0
- package/app/pages/product-list/partials/radio-refinements.jsx +60 -0
- package/app/pages/product-list/partials/refinements.jsx +144 -0
- package/app/pages/product-list/partials/selected-refinements.jsx +100 -0
- package/app/pages/product-list/partials/size-refinements.jsx +55 -0
- package/app/pages/registration/index.jsx +87 -0
- package/app/pages/registration/index.test.jsx +132 -0
- package/app/pages/reset-password/index.jsx +112 -0
- package/app/pages/reset-password/index.test.jsx +141 -0
- package/app/request-processor.js +118 -0
- package/app/request-processor.test.js +23 -0
- package/app/routes.jsx +111 -0
- package/app/routes.test.js +13 -0
- package/app/ssr.js +70 -0
- package/app/static/ico/favicon.ico +0 -0
- package/app/static/img/global/app-icon-192.png +0 -0
- package/app/static/img/global/app-icon-512.png +0 -0
- package/app/static/img/global/apple-touch-icon.png +0 -0
- package/app/static/img/hero.png +0 -0
- package/app/static/manifest.json +19 -0
- package/app/static/robots.txt +2 -0
- package/app/theme/components/base/accordion.js +21 -0
- package/app/theme/components/base/alert.js +17 -0
- package/app/theme/components/base/badge.js +25 -0
- package/app/theme/components/base/button.js +77 -0
- package/app/theme/components/base/checkbox.js +30 -0
- package/app/theme/components/base/container.js +17 -0
- package/app/theme/components/base/drawer.js +26 -0
- package/app/theme/components/base/formLabel.js +13 -0
- package/app/theme/components/base/icon.js +13 -0
- package/app/theme/components/base/input.js +44 -0
- package/app/theme/components/base/modal.js +11 -0
- package/app/theme/components/base/popover.js +61 -0
- package/app/theme/components/base/radio.js +33 -0
- package/app/theme/components/base/select.js +15 -0
- package/app/theme/components/base/skeleton.js +12 -0
- package/app/theme/components/base/tooltip.js +19 -0
- package/app/theme/components/project/_app.js +25 -0
- package/app/theme/components/project/breadcrumb.js +25 -0
- package/app/theme/components/project/checkout-footer.js +35 -0
- package/app/theme/components/project/drawer-menu.js +66 -0
- package/app/theme/components/project/footer.js +84 -0
- package/app/theme/components/project/header.js +84 -0
- package/app/theme/components/project/image-gallery.js +59 -0
- package/app/theme/components/project/links-list.js +43 -0
- package/app/theme/components/project/list-menu.js +91 -0
- package/app/theme/components/project/locale-selector.js +42 -0
- package/app/theme/components/project/nested-accordion.js +26 -0
- package/app/theme/components/project/offline-banner.js +25 -0
- package/app/theme/components/project/pagination.js +22 -0
- package/app/theme/components/project/product-tile.js +32 -0
- package/app/theme/components/project/social-icons.js +52 -0
- package/app/theme/components/project/swatch-group.js +115 -0
- package/app/theme/foundations/colors.js +170 -0
- package/app/theme/foundations/gradients.js +9 -0
- package/app/theme/foundations/layerStyles.js +41 -0
- package/app/theme/foundations/shadows.js +9 -0
- package/app/theme/foundations/sizes.js +18 -0
- package/app/theme/foundations/space.js +9 -0
- package/app/theme/foundations/styles.js +21 -0
- package/app/theme/index.js +104 -0
- package/app/utils/cc-utils.js +112 -0
- package/app/utils/cc-utils.test.js +41 -0
- package/app/utils/image-groups-utils.js +62 -0
- package/app/utils/image-groups-utils.test.js +65 -0
- package/app/utils/locale.js +78 -0
- package/app/utils/locale.test.js +112 -0
- package/app/utils/password-utils.js +21 -0
- package/app/utils/phone-utils.js +22 -0
- package/app/utils/phone-utils.test.js +15 -0
- package/app/utils/product-utils.js +35 -0
- package/app/utils/product-utils.test.js +51 -0
- package/app/utils/responsive-image.js +198 -0
- package/app/utils/responsive-image.test.js +170 -0
- package/app/utils/routes-utils.js +111 -0
- package/app/utils/routes-utils.test.js +291 -0
- package/app/utils/site-utils.js +222 -0
- package/app/utils/site-utils.test.js +376 -0
- package/app/utils/test-utils.js +257 -0
- package/app/utils/url.js +291 -0
- package/app/utils/url.test.js +421 -0
- package/app/utils/utils.js +201 -0
- package/app/utils/utils.test.js +182 -0
- package/babel.config.js +7 -0
- package/cache-hash-config.json +8 -0
- package/config/default.js +64 -0
- package/config/mocks/default.js +131 -0
- package/config/sites.js +78 -0
- package/jest-setup.js +191 -0
- package/jest.config.js +50 -0
- package/jsconfig.json +13 -0
- package/package.json +105 -0
- package/scripts/extract-default-messages.js +92 -0
- package/tests/lighthouserc.js +37 -0
- package/translations/README.md +127 -0
- package/translations/compiled/de-DE.json +3212 -0
- package/translations/compiled/en-GB.json +3212 -0
- package/translations/compiled/en-US.json +3212 -0
- package/translations/compiled/en-XA.json +6948 -0
- package/translations/compiled/es-MX.json +3216 -0
- package/translations/compiled/fr-FR.json +3216 -0
- package/translations/compiled/it-IT.json +3188 -0
- package/translations/compiled/ja-JP.json +3200 -0
- package/translations/compiled/ko-KR.json +3180 -0
- package/translations/compiled/pt-BR.json +3220 -0
- package/translations/compiled/zh-CN.json +3212 -0
- package/translations/compiled/zh-TW.json +3208 -0
- package/translations/de-DE.json +1417 -0
- package/translations/en-GB.json +1417 -0
- package/translations/en-US.json +1417 -0
- package/translations/es-MX.json +1417 -0
- package/translations/fr-FR.json +1417 -0
- package/translations/it-IT.json +1417 -0
- package/translations/ja-JP.json +1417 -0
- package/translations/ko-KR.json +1417 -0
- package/translations/pt-BR.json +1417 -0
- package/translations/zh-CN.json +1417 -0
- package/translations/zh-TW.json +1417 -0
- package/worker/main.js +36 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="36" height="24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 4h12.92v9.154H7V4z" fill="#192F5D"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M8.076 4.392l.12.362h.378l-.306.222.116.365-.308-.225-.306.222.116-.362-.308-.222h.385l.113-.362zm2.155 0l.116.362h.382l-.31.222.117.365-.305-.225-.31.222.117-.362-.305-.222h.378l.12-.362zm2.151 0l.12.362h.375l-.306.222.117.365-.31-.225-.305.222.117-.362-.31-.222h.383l.12-.362zm2.155 0l.116.362h.382l-.309.222.12.365-.309-.225-.309.222.12-.362-.309-.222h.379l.119-.362zm2.152 0l.12.362h.378l-.306.222.116.365-.308-.225-.306.222.116-.362-.305-.222h.378l.117-.362zm2.154 0l.117.362h.381l-.308.222.12.365-.31-.225-.308.222.12-.362-.31-.222h.382l.116-.362zm-9.688.916l.116.362h.382l-.309.223.113.362-.299-.223-.309.223.11-.362-.299-.223h.379l.116-.362zm2.151 0l.12.362h.378l-.308.223.12.362-.31-.223-.308.223.12-.362-.31-.223h.382l.116-.362zm2.155 0l.116.362h.382l-.309.223.117.362-.306-.223-.309.223.117-.362-.306-.223h.379l.12-.362zm2.152 0l.12.362h.378l-.309.223.12.362-.31-.223-.305.223.117-.362-.31-.223h.386l.113-.362zm2.155 0l.116.362h.382l-.31.223.117.362-.305-.223-.31.223.117-.362-.305-.223h.378l.12-.362zm-9.692.913l.12.369h.378l-.306.222.116.362-.308-.226-.306.226.116-.365-.308-.222h.385l.113-.366zm2.155 0l.116.366h.382l-.31.222.117.362-.305-.226-.31.226.117-.365-.305-.223h.378l.12-.362zm2.151 0l.12.366h.375l-.306.222.117.362-.31-.226-.305.226.117-.365-.31-.223h.383l.12-.362zm2.155 0l.116.366h.382l-.309.222.12.362-.309-.226-.309.226.12-.365-.309-.223h.379l.119-.362zm2.152 0l.12.366h.378l-.306.222.116.362-.308-.226-.306.226.116-.365-.305-.223h.378l.117-.362zm2.154 0l.117.366h.381l-.308.222.12.362-.31-.226-.308.226.12-.365-.31-.223h.382l.116-.362zm-9.688.917l.116.362h.382l-.309.222.116.365-.305-.225-.309.222.116-.362-.305-.222h.378l.12-.362zm2.151 0l.12.362h.378l-.308.222.12.365-.31-.225-.308.222.12-.362-.31-.222h.382l.116-.362zm2.155 0l.116.362h.382l-.309.222.117.365-.306-.225-.309.222.117-.362-.306-.222h.379l.12-.362zm2.152 0l.12.362h.378l-.306.222.117.365-.31-.225-.305.222.117-.362-.31-.222h.386l.113-.362zm2.155 0l.116.362h.382l-.31.222.117.365-.305-.225-.31.222.117-.362-.305-.222h.378l.12-.362zm-9.692.916l.12.362h.378l-.306.223.116.365-.308-.226L7.77 9l.116-.361-.308-.223h.385l.113-.362zm2.155 0l.116.362h.382l-.31.223.117.361-.305-.222L9.92 9l.117-.361-.305-.223h.378l.12-.362zm2.151 0l.12.362h.375l-.306.223.117.365-.31-.226-.305.222.117-.361-.31-.223h.383l.12-.362zm2.155 0l.116.362h.382l-.309.223.12.365-.309-.226-.309.222.12-.361-.309-.223h.379l.119-.362zm2.152 0l.12.362h.378l-.306.223.116.365-.308-.226-.306.222.116-.361-.305-.223h.378l.117-.362zm2.154 0l.117.362h.381l-.308.223.12.365-.31-.226-.308.222.12-.361-.31-.223h.382l.116-.362zm-9.688.917l.116.361h.382l-.309.223.116.362-.305-.226-.309.226.116-.365-.305-.223h.378l.12-.358zm2.151 0l.12.361h.378l-.308.223.12.362-.31-.226-.308.226.12-.365-.31-.223h.382l.116-.358zm2.155 0l.116.361h.382l-.309.223.117.362-.306-.226-.309.226.117-.365-.306-.223h.379l.12-.358zm2.152 0l.12.361h.378l-.306.223.117.362-.31-.226-.305.226.117-.365-.31-.223h.386l.113-.358zm2.155 0l.116.361h.382l-.31.223.117.362-.305-.226-.31.226.117-.365-.305-.223h.378l.12-.358zm-9.692.913l.12.365h.378l-.306.222.116.359-.308-.223-.306.223.116-.362-.308-.222h.385l.113-.362zm2.155 0l.116.365h.382l-.31.222.12.359-.308-.223-.31.223.12-.362-.308-.222h.378l.12-.362zm2.151 0l.12.365h.375l-.306.222.117.359-.31-.223-.305.223.117-.362-.31-.222h.383l.12-.362zm2.155 0l.116.365h.382l-.309.222.12.359-.309-.223-.309.223.12-.362-.309-.222h.379l.119-.362zm2.152 0l.12.365h.378l-.306.222.116.359-.308-.223-.306.223.116-.362-.305-.222h.378l.117-.362zm2.154 0l.117.365h.381l-.308.222.12.359-.31-.223-.308.223.12-.362-.31-.222h.382l.116-.362zm-9.688.916l.116.362h.382l-.309.222.116.366-.305-.226-.309.222.116-.362-.305-.222h.378l.12-.362zm2.151 0l.12.362h.378l-.308.222.12.366-.31-.226-.308.222.12-.362-.31-.222h.382l.116-.362zm2.155 0l.116.362h.382l-.309.222.117.366-.306-.226-.309.222.117-.362-.306-.222h.379l.12-.362zm2.152 0l.12.362h.378l-.306.222.117.366-.31-.226-.305.222.117-.362-.31-.222h.386l.113-.362zm2.155 0l.116.362h.382l-.31.222.117.366-.305-.226-.31.222.117-.362-.305-.222h.378l.12-.362zm-9.692.916l.12.362h.378l-.306.223.116.362-.308-.223-.306.223.116-.366-.308-.222h.385l.113-.358zm2.155 0l.116.362h.382l-.31.223.12.362-.308-.223-.31.223.12-.366-.308-.222h.378l.12-.358zm2.151 0l.12.362h.375l-.299.223.116.362-.309-.223-.305.223.116-.366-.309-.222h.382l.113-.358zm2.155 0l.116.362h.382l-.309.223.12.362-.309-.223-.309.223.12-.366-.309-.222h.379l.119-.358zm2.152 0l.12.362h.378l-.306.223.116.362-.308-.223-.306.223.116-.366-.305-.222h.378l.117-.358zm2.154 0l.117.362h.381l-.308.223.12.362-.31-.223-.308.223.12-.366-.31-.222h.382l.116-.358z"
|
|
5
|
+
fill="#fff"/>
|
|
6
|
+
<path d="M36 0H0v24h36V0z" fill="#fff"/>
|
|
7
|
+
<path d="M18 19.2a7.2 7.2 0 100-14.4 7.2 7.2 0 000 14.4z" fill="#BC002D"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30 0H6v24h24V0zM18.5 21a8.5 8.5 0 100-17 8.5 8.5 0 000 17z"
|
|
9
|
+
fill="#fff"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.833313 3.3335H19.7222V4.42367H0.833313V3.3335ZM0.833313 5.51383H19.7222V6.604H0.833313V5.51383ZM0.833313 7.69141H19.7222V8.78434H0.833313V7.69141ZM0.833313 9.87174H19.7222V10.9619H0.833313V9.87174ZM0.833313 12.0521H19.7222V13.1423H0.833313V12.0521ZM0.833313 14.2297H19.7222V15.3198H0.833313V14.2297ZM0.833313 16.41H19.7222V17.5002H0.833313V16.41Z" fill="#BD3D44"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.833313 4.42383H19.7222V5.514H0.833313V4.42383ZM0.833313 6.60417H19.7222V7.69157H0.833313V6.60417ZM0.833313 8.78174H19.7222V9.87191H0.833313V8.78174ZM0.833313 10.9621H19.7222V12.0522H0.833313V10.9621ZM0.833313 13.1424H19.7222V14.2326H0.833313V13.1424ZM0.833313 15.32H19.7222V16.4102H0.833313V15.32Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.833313 3.3335H11.5994V10.9619H0.833313V3.3335Z" fill="#192F5D"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.72974 3.66016L1.82935 3.96175H2.14478L1.89022 4.14714L1.98706 4.4515L1.72974 4.26335L1.47518 4.44873L1.57202 4.14714L1.3147 3.96175H1.63566L1.72974 3.66016ZM3.52547 3.66016L3.62231 3.96175H3.94051L3.68319 4.14714L3.78003 4.4515L3.52547 4.26335L3.26815 4.44873L3.36499 4.14714L3.11043 3.96175H3.42586L3.52547 3.66016ZM5.31844 3.66016L5.41805 3.96175H5.73071L5.47616 4.14714L5.573 4.4515L5.31567 4.26335L5.06112 4.44873L5.15796 4.14714L4.90064 3.96175H5.21883L5.31844 3.66016ZM7.11418 3.66016L7.21102 3.96175H7.52922L7.27189 4.14714L7.3715 4.4515L7.11418 4.26335L6.85685 4.44873L6.95646 4.14714L6.69914 3.96175H7.01457L7.11418 3.66016ZM8.90715 3.66016L9.00675 3.96175H9.32218L9.06763 4.14714L9.16447 4.4515L8.90715 4.26335L8.65259 4.44873L8.74943 4.14714L8.49487 3.96175H8.8103L8.90715 3.66016ZM10.7029 3.66016L10.7997 3.96175H11.1179L10.8606 4.14714L10.9602 4.4515L10.7029 4.26335L10.4456 4.44873L10.5452 4.14714L10.2878 3.96175H10.606L10.7029 3.66016ZM2.62899 4.42383L2.72583 4.72542H3.04403L2.7867 4.91081L2.88078 5.2124L2.63175 5.02702L2.37443 5.2124L2.46574 4.91081L2.21672 4.72542H2.53215L2.62899 4.42383ZM4.42196 4.42383L4.52157 4.72542H4.837L4.57967 4.91081L4.67928 5.2124L4.42196 5.02702L4.16463 5.2124L4.26424 4.91081L4.00692 4.72542H4.32511L4.42196 4.42383ZM6.21769 4.42383L6.31454 4.72542H6.63273L6.37541 4.91081L6.47225 5.2124L6.21769 5.02702L5.96037 5.2124L6.05721 4.91081L5.80265 4.72542H6.11808L6.21769 4.42383ZM8.01066 4.42383L8.11027 4.72542H8.4257L8.16838 4.91081L8.26799 5.2124L8.01066 5.02702L7.7561 5.2124L7.85295 4.91081L7.59562 4.72542H7.91659L8.01066 4.42383ZM9.8064 4.42383L9.90324 4.72542H10.2214L9.96411 4.91081L10.061 5.2124L9.8064 5.02702L9.54907 5.2124L9.64592 4.91081L9.39136 4.72542H9.70679L9.8064 4.42383ZM1.72974 5.18473L1.82935 5.49186H2.14478L1.89022 5.67724L1.98706 5.97884L1.72974 5.79069L1.47518 5.97884L1.57202 5.67448L1.3147 5.48909H1.63566L1.72974 5.18473ZM3.52547 5.18473L3.62231 5.48909H3.94051L3.68319 5.67448L3.78003 5.97607L3.52547 5.78792L3.26815 5.97607L3.36499 5.67171L3.11043 5.48633H3.42586L3.52547 5.18473ZM5.31844 5.18473L5.41805 5.48909H5.73071L5.47616 5.67448L5.573 5.97607L5.31567 5.78792L5.06112 5.97607L5.15796 5.67171L4.90064 5.48633H5.21883L5.31844 5.18473ZM7.11418 5.18473L7.21102 5.48909H7.52922L7.27189 5.67448L7.3715 5.97607L7.11418 5.78792L6.85685 5.97607L6.95646 5.67171L6.69914 5.48633H7.01457L7.11418 5.18473ZM8.90715 5.18473L9.00675 5.48909H9.32218L9.06763 5.67448L9.16447 5.97607L8.90715 5.78792L8.65259 5.97607L8.74943 5.67171L8.49487 5.48633H8.8103L8.90715 5.18473ZM10.7029 5.18473L10.7997 5.48909H11.1179L10.8606 5.67448L10.9602 5.97607L10.7029 5.78792L10.4456 5.97607L10.5452 5.67171L10.2878 5.48633H10.606L10.7029 5.18473ZM2.62899 5.9484L2.72583 6.25H3.04403L2.7867 6.43538L2.88354 6.73974L2.62899 6.55159L2.37166 6.73698L2.46851 6.43538L2.21395 6.25H2.52938L2.62899 5.9484ZM4.42196 5.9484L4.52157 6.25H4.837L4.57967 6.43538L4.67928 6.73974L4.42196 6.55159L4.16463 6.73698L4.26424 6.43538L4.00692 6.25H4.32511L4.42196 5.9484ZM6.21769 5.9484L6.31454 6.25H6.63273L6.37541 6.43538L6.47225 6.73974L6.21769 6.55159L5.96037 6.73698L6.05721 6.43538L5.80265 6.25H6.11808L6.21769 5.9484ZM8.01066 5.9484L8.11027 6.25H8.4257L8.17114 6.43538L8.26799 6.73974L8.01066 6.55159L7.7561 6.73698L7.85295 6.43538L7.59562 6.25H7.91659L8.01066 5.9484ZM9.8064 5.9484L9.90324 6.25H10.2214L9.96411 6.43538L10.061 6.73974L9.8064 6.55159L9.54907 6.73698L9.64592 6.43538L9.39136 6.25H9.70679L9.8064 5.9484ZM1.72974 6.71207L1.82935 7.01367H2.14478L1.89022 7.19905L1.98706 7.50342L1.72974 7.31526L1.47518 7.50065L1.57202 7.19905L1.3147 7.01367H1.63566L1.72974 6.71207ZM3.52547 6.71207L3.62231 7.01367H3.94051L3.68319 7.19905L3.78003 7.50065L3.52547 7.31526L3.26815 7.50065L3.36499 7.19905L3.11043 7.01367H3.42586L3.52547 6.71207ZM5.31844 6.71207L5.41805 7.01367H5.73071L5.47616 7.19905L5.573 7.50342L5.31567 7.31526L5.06112 7.50065L5.15796 7.19905L4.90064 7.01367H5.21883L5.31844 6.71207ZM7.11418 6.71207L7.21102 7.01367H7.52922L7.27189 7.19905L7.3715 7.50342L7.11418 7.31526L6.85685 7.50065L6.95646 7.19905L6.69914 7.01367H7.01457L7.11418 6.71207ZM8.90715 6.71207L9.00675 7.01367H9.32218L9.06763 7.19905L9.16447 7.50342L8.90715 7.31526L8.65259 7.50065L8.74943 7.19905L8.49487 7.01367H8.8103L8.90715 6.71207ZM10.7029 6.71207L10.7997 7.01367H11.1179L10.8606 7.19905L10.9602 7.50342L10.7029 7.31526L10.4456 7.50065L10.5452 7.19905L10.2878 7.01367H10.606L10.7029 6.71207ZM2.62899 7.47575L2.72583 7.77734H3.04403L2.7867 7.96273L2.88354 8.26432L2.62899 8.07617L2.37166 8.26432L2.46851 7.95996L2.21395 7.77457H2.52938L2.62899 7.47575ZM4.42196 7.47575L4.52157 7.77734H4.837L4.57967 7.96273L4.67928 8.26432L4.42196 8.07617L4.16463 8.26432L4.26424 7.95996L4.00692 7.77457H4.32511L4.42196 7.47575ZM6.21769 7.47575L6.31454 7.77734H6.63273L6.37541 7.96273L6.47225 8.26432L6.21769 8.07617L5.96037 8.26432L6.05721 7.95996L5.80265 7.77457H6.11808L6.21769 7.47575ZM8.01066 7.47575L8.11027 7.77734H8.4257L8.17114 7.96273L8.26799 8.26432L8.01066 8.07617L7.7561 8.26432L7.85295 7.95996L7.59562 7.77457H7.91659L8.01066 7.47575ZM9.8064 7.47575L9.90324 7.77734H10.2214L9.96411 7.96273L10.061 8.26432L9.8064 8.07617L9.54907 8.26432L9.64592 7.95996L9.39136 7.77457H9.70679L9.8064 7.47575ZM1.72974 8.23665L1.82935 8.54101H2.14478L1.89022 8.7264L1.98706 9.02522L1.72974 8.83984L1.47518 9.02522L1.57202 8.72363L1.3147 8.53825H1.63566L1.72974 8.23665ZM3.52547 8.23665L3.62231 8.54101H3.94051L3.68319 8.7264L3.7828 9.02522L3.52547 8.83984L3.26815 9.02522L3.36776 8.72363L3.11043 8.53825H3.42586L3.52547 8.23665ZM5.31844 8.23665L5.41805 8.54101H5.73071L5.47616 8.7264L5.573 9.02522L5.31567 8.83984L5.06112 9.02522L5.15796 8.72363L4.90064 8.53825H5.21883L5.31844 8.23665ZM7.11418 8.23665L7.21102 8.54101H7.52922L7.27189 8.7264L7.3715 9.02522L7.11418 8.83984L6.85685 9.02522L6.95646 8.72363L6.69914 8.53825H7.01457L7.11418 8.23665ZM8.90715 8.23665L9.00675 8.54101H9.32218L9.06763 8.7264L9.16447 9.02522L8.90715 8.83984L8.65259 9.02522L8.74943 8.72363L8.49487 8.53825H8.8103L8.90715 8.23665ZM10.7029 8.23665L10.7997 8.54101H11.1179L10.8606 8.7264L10.9602 9.02522L10.7029 8.83984L10.4456 9.02522L10.5452 8.72363L10.2878 8.53825H10.606L10.7029 8.23665ZM2.62899 9.00032L2.72583 9.30192H3.04403L2.7867 9.4873L2.88354 9.79166L2.62899 9.60351L2.37166 9.7889L2.46851 9.4873L2.21395 9.30192H2.52938L2.62899 9.00032ZM4.42196 9.00032L4.52157 9.30192H4.837L4.57967 9.4873L4.67928 9.79166L4.42196 9.60351L4.16463 9.7889L4.26424 9.4873L4.00692 9.30192H4.32511L4.42196 9.00032ZM6.21769 9.00032L6.31454 9.30192H6.63273L6.37541 9.4873L6.47225 9.79166L6.21769 9.60351L5.96037 9.7889L6.05721 9.4873L5.80265 9.30192H6.11808L6.21769 9.00032ZM8.01066 9.00032L8.11027 9.30192H8.4257L8.17114 9.4873L8.26799 9.79166L8.01066 9.60351L7.7561 9.7889L7.85295 9.4873L7.59562 9.30192H7.91659L8.01066 9.00032ZM9.8064 9.00032L9.90324 9.30192H10.2214L9.96411 9.4873L10.061 9.79166L9.8064 9.60351L9.54907 9.7889L9.64592 9.4873L9.39136 9.30192H9.70679L9.8064 9.00032ZM1.72974 9.76399L1.82935 10.0656H2.14478L1.89022 10.251L1.98706 10.5526L1.72974 10.3672L1.47518 10.5526L1.57202 10.2482L1.3147 10.0628H1.63566L1.72974 9.76399ZM3.52547 9.76399L3.62231 10.0656H3.94051L3.68319 10.251L3.7828 10.5526L3.52547 10.3672L3.26815 10.5526L3.36776 10.2482L3.11043 10.0628H3.42586L3.52547 9.76399ZM5.31844 9.76399L5.41805 10.0656H5.73071L5.48169 10.251L5.57853 10.5526L5.32121 10.3672L5.06665 10.5526L5.16349 10.2482L4.90617 10.0628H5.22437L5.31844 9.76399ZM7.11418 9.76399L7.21102 10.0656H7.52922L7.27189 10.251L7.3715 10.5526L7.11418 10.3672L6.85685 10.5526L6.95646 10.2482L6.69914 10.0628H7.01457L7.11418 9.76399ZM8.90715 9.76399L9.00675 10.0656H9.32218L9.06763 10.251L9.16447 10.5526L8.90715 10.3672L8.65259 10.5526L8.74943 10.2482L8.49487 10.0628H8.8103L8.90715 9.76399ZM10.7029 9.76399L10.7997 10.0656H11.1179L10.8606 10.251L10.9602 10.5526L10.7029 10.3672L10.4456 10.5526L10.5452 10.2482L10.2878 10.0628H10.606L10.7029 9.76399Z" fill="white"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 0H0V20H20V0ZM10.4167 17.5C14.3287 17.5 17.5 14.3287 17.5 10.4167C17.5 6.50465 14.3287 3.33333 10.4167 3.33333C6.50465 3.33333 3.33333 6.50465 3.33333 10.4167C3.33333 14.3287 6.50465 17.5 10.4167 17.5Z" fill="white"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<circle id="e" cx="64" cy="64" r="56"/>
|
|
4
|
+
<filter id="m" x="-7.1%" y="-5.4%" width="114.3%" height="114.3%">
|
|
5
|
+
<feMorphology in="SourceAlpha" operator="dilate" radius="1" result="shadowSpreadOuter1"/>
|
|
6
|
+
<feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/>
|
|
7
|
+
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="2"/>
|
|
8
|
+
<feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/>
|
|
9
|
+
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.240942029 0"/>
|
|
10
|
+
</filter>
|
|
11
|
+
<linearGradient id="l" x1="50%" x2="50%" y2="100%">
|
|
12
|
+
<stop stop-color="#FEFEFE" offset="0"/>
|
|
13
|
+
<stop stop-color="#E0E0E0" offset="1"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<linearGradient id="j" x1="50%" x2="50%" y1="100%">
|
|
16
|
+
<stop stop-color="#492779" offset="0"/>
|
|
17
|
+
<stop stop-color="#892793" offset="1"/>
|
|
18
|
+
</linearGradient>
|
|
19
|
+
<path id="d" d="M12 64.034c0 23.025 14.885 42.472 35.555 49.367 2.6.456 3.575-1.105 3.575-2.47 0-1.237-.065-5.334-.065-9.692C38 103.644 34.62 98.05 33.58 95.124c-.585-1.496-3.12-6.114-5.33-7.35-1.82-.976-4.42-3.382-.065-3.447 4.095-.065 7.02 3.772 7.995 5.333 4.68 7.87 12.155 5.66 15.145 4.293.455-3.382 1.82-5.66 3.315-6.96-11.57-1.3-23.66-5.788-23.66-25.69 0-5.66 2.015-10.343 5.33-13.985-.52-1.3-2.34-6.634.52-13.79 0 0 4.355-1.365 14.3 5.334 4.16-1.17 8.58-1.756 13-1.756s8.84.586 13 1.756c9.945-6.764 14.3-5.333 14.3-5.333 2.86 7.154 1.04 12.487.52 13.788 3.315 3.642 5.33 8.26 5.33 13.984 0 19.968-12.155 24.39-23.725 25.692 1.885 1.626 3.51 4.748 3.51 9.626 0 6.96-.065 12.553-.065 14.31 0 1.365.975 2.99 3.575 2.47C101.115 106.507 116 86.995 116 64.035 116 35.284 92.73 12 64 12S12 35.285 12 64.034z"/>
|
|
20
|
+
<filter id="k" x="-.5%" y="-.5%" width="101%" height="102%">
|
|
21
|
+
<feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
|
22
|
+
<feColorMatrix in="shadowOffsetOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.529296875 0"/>
|
|
23
|
+
</filter>
|
|
24
|
+
<filter id="i" x="-1%" y="-1%" width="101.9%" height="103%">
|
|
25
|
+
<feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1"/>
|
|
26
|
+
<feOffset in="shadowBlurInner1" result="shadowOffsetInner1"/>
|
|
27
|
+
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/>
|
|
28
|
+
<feColorMatrix in="shadowInnerInner1" values="0 0 0 0 0.258823529 0 0 0 0 0.137254902 0 0 0 0 0.431372549 0 0 0 0.703549592 0"/>
|
|
29
|
+
</filter>
|
|
30
|
+
</defs>
|
|
31
|
+
<g fill="none" fill-rule="evenodd">
|
|
32
|
+
<path d="M0 0h128v128H0z"/>
|
|
33
|
+
<use fill="#000" filter="url(#m)" xlink:href="#e"/>
|
|
34
|
+
<use fill="#FFF" fill-opacity="0" stroke="#BABABA" stroke-opacity=".5" stroke-width="2" xlink:href="#e"/>
|
|
35
|
+
<circle cx="64" cy="64" r="56" fill="url(#l)"/>
|
|
36
|
+
<use fill="#000" filter="url(#k)" xlink:href="#d"/>
|
|
37
|
+
<use fill="url(#j)" xlink:href="#d"/>
|
|
38
|
+
<use fill="#000" filter="url(#i)" xlink:href="#d"/>
|
|
39
|
+
</g>
|
|
40
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
fill-rule="evenodd"
|
|
4
|
+
clip-rule="evenodd"
|
|
5
|
+
d="M20.5 7H3.5C3.22386 7 3 6.77614 3 6.5V5.5C3 5.22386 3.22386 5 3.5 5H20.5C20.7761 5 21 5.22386 21 5.5V6.5C21 6.77614 20.7761 7 20.5 7ZM21 12.5V11.5C21 11.2239 20.7761 11 20.5 11H3.5C3.22386 11 3 11.2239 3 11.5V12.5C3 12.7761 3.22386 13 3.5 13H20.5C20.7761 13 21 12.7761 21 12.5ZM21 17.5V18.5C21 18.7761 20.7761 19 20.5 19H3.5C3.22386 19 3 18.7761 3 18.5V17.5C3 17.2239 3.22386 17 3.5 17H20.5C20.7761 17 21 17.2239 21 17.5Z"
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g>
|
|
3
|
+
<path stroke="null" fill-rule="evenodd" clip-rule="evenodd" d="m10,2.07c1.1586,-1.26976 2.7819,-2.01646 4.5,-2.07c3.0376,0 5.5,2.46243 5.5,5.5c0,3.59623 -3.9978,7.5375 -6.3954,9.9013c-0.2159,0.2128 -0.4188,0.4129 -0.6046,0.5987l-2.28,2.28c-0.1405,0.1407 -0.3312,0.2198 -0.53,0.22l-0.38,0c-0.19884,-0.0002 -0.38948,-0.0793 -0.53,-0.22l-2.28,-2.28c-0.18584,-0.1858 -0.38873,-0.3859 -0.6046,-0.5987c-2.39765,-2.3638 -6.3954,-6.30507 -6.3954,-9.9013c0,-3.03757 2.46243,-5.5 5.5,-5.5c1.7181,0.05354 3.34137,0.80024 4.5,2.07z" fill="#181818" id="svg_1"/>
|
|
4
|
+
<path id="svg_2" d="m4.37505,1.62507l0.74991,-0.18758" fill="currentColor"/>
|
|
5
|
+
</g>
|
|
6
|
+
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 22 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6.37862 1.00005C4.99671 1.00005 3.6222 1.54619 2.57466 2.64249C0.479536 4.83503 0.473517 8.35409 2.56622 10.5483L10.9486 19.3391C11.1515 19.5536 11.5371 19.5536 11.74 19.3391C14.5362 16.4128 17.3261 13.4832 20.1224 10.5568C22.2175 8.36421 22.2175 4.84358 20.1224 2.651C18.0273 0.458421 14.601 0.458372 12.5059 2.651L11.3486 3.85091L10.1912 2.64249C9.06169 1.45591 7.66226 0.994307 6.37868 1.00005H6.37862ZM6.37862 2.07231C7.46763 2.07231 8.56236 2.5147 9.40819 3.39988L10.957 5.02529C11.1599 5.23982 11.5455 5.23982 11.7485 5.02529L13.2888 3.40839C14.9804 1.63801 17.6477 1.63805 19.3394 3.40839C21.031 5.17873 21.031 8.03757 19.3394 9.8079C16.6761 12.5951 14.0117 15.3861 11.3485 18.1733L3.35758 9.79941C1.6671 8.02688 1.66595 5.17018 3.35758 3.39988C4.20338 2.51471 5.28961 2.07231 6.37862 2.07231Z" fill="currentColor" stroke="currentColor" stroke-width="0.5"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C14.6522 2 17.1957 3.05357 19.0711 4.92893C20.9464 6.8043 22 9.34784 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM4 12C4 16.4183 7.58172 20 12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12ZM13 12.5C13 12.2239 12.7761 12 12.5 12H11.5C11.2239 12 11 12.2239 11 12.5V15.5C11 15.7761 11.2239 16 11.5 16H12.5C12.7761 16 13 15.7761 13 15.5V12.5ZM12.5 8C12.7761 8 13 8.22386 13 8.5V9.5C13 9.77614 12.7761 10 12.5 10H11.5C11.2239 10 11 9.77614 11 9.5V8.5C11 8.22386 11.2239 8 11.5 8H12.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 30 28" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="m18.741 11.63 1.837-3.686c0.3732-0.73309 0.5566-1.5481 0.5333-2.3704v-0.46222c0-0.11826-0.0115-0.23382-0.0335-0.34562-1e-3 -0.00477-0.0019-0.00953-0.0029-0.01429-0.0141-0.06846-0.0321-0.13548-0.0538-0.20081-2e-4 -5.9e-4 -4e-4 -0.00118-6e-4 -0.00176-0.2353-0.70617-0.9017-1.2153-1.6869-1.2153h-0.166c-0.2525 0.00188-0.4762 0.16365-0.557 0.40296l-0.7111 2.1096c-0.2206 0.65833-0.7188 1.1868-1.363 1.4459l-0.5096 0.20148c-0.9303 0.38132-1.7178 1.0445-2.2518 1.8963l-1.446 2.3703c-0.4323 0.6918-1.1899 1.1125-2.0053 1.1141h-0.0095-1.0548v9.4815h0.69926c0.03816-5e-4 0.07624-5e-4 0.11434 0 1.0221 0.0144 2.0026 0.4159 2.742 1.1259 0.7573 0.7581 1.7847 1.1844 2.8562 1.1852h7.3956c0.9671-0.0039 1.8348-0.5949 2.1926-1.4933l1.2681-3.1645c0.335-0.841 0.5079-1.7377 0.5097-2.6429v-3.366c0-1.3091-1.0613-2.3703-2.3704-2.3703h-5.9259zm4.3071-2.6667h1.6188c2.7819 0 5.037 2.2552 5.037 5.037v3.3713c-0.0024 1.2413-0.2395 2.471-0.6988 3.6242l-0.0022 0.0054-1.266 3.1591c-3e-4 1e-3 -7e-4 0.0019-0.0011 0.0028-0.761 1.9076-2.6041 3.1623-4.6581 3.1705l-0.0108 1e-4h-7.3975c-1.7659-0.0013-3.4595-0.6988-4.7139-1.9403-0.2595-0.243-0.6032-0.3761-0.95906-0.3711l-0.01884 3e-4h-1.2169c-0.59762 0.6896-1.4799 1.1259-2.4642 1.1259h-2.3704c-1.8 0-3.2593-1.4592-3.2593-3.2593v-10.667c0-1.8001 1.4592-3.2593 3.2593-3.2593h2.3704c1.0395 0 1.9653 0.4866 2.5621 1.2444h1.294l1.3544-2.2204 0.0087-0.01386c0.8301-1.3239 2.054-2.3546 3.4998-2.9472l0.0155-0.00633 0.3842-0.15189 0.6689-1.9846c0.4446-1.3162 1.6745-2.206 3.0637-2.2163l0.0099-7.3e-5h0.1759c2.4546 0 4.4444 1.9898 4.4444 4.4444v0.4286c0.0269 1.1832-0.2234 2.3554-0.7299 3.4232zm-16.455 2.7459c-0.08716-0.0504-0.18836-0.0792-0.2963-0.0792h-2.3704c-0.32728 0-0.59259 0.2653-0.59259 0.5926v10.667c0 0.3273 0.26531 0.5926 0.59259 0.5926h2.3704c0.10794 0 0.20914-0.0288 0.2963-0.0793 0.17713-0.1024 0.2963-0.2939 0.2963-0.5133v-10.667c0-0.2194-0.11917-0.4109-0.2963-0.5134z" fill="currentColor" />
|
|
3
|
+
</svg>
|
|
4
|
+
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 11.7448 1.83051 13.2169 3.52961 14.5833C4.65265 15.4865 5.71829 16.3434 6.16 17.78L6.67 19.32C6.81299 19.7454 7.22185 20.0234 7.67 20H8.23C8.67815 20.0234 9.08701 19.7454 9.23 19.32L9.74 17.78C10.2178 16.3544 11.2945 15.4996 12.4226 14.604C14.151 13.2317 16 11.7637 16 8ZM8 2C4.68629 2 2 4.68629 2 8C2 10.8 3.18 11.74 4.82 13C6.19881 13.9318 7.29809 15.2212 8 16.73C8.7053 15.2233 9.80387 13.9348 11.18 13C12.82 11.74 14 10.8 14 8C14 4.68629 11.3137 2 8 2ZM10 8C10 9.10457 9.10457 10 8 10C6.89543 10 6 9.10457 6 8C6 6.89543 6.89543 6 8 6C9.10457 6 10 6.89543 10 8Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 2C8.68629 2 6 4.68629 6 8V10C4.89543 10 4 10.8954 4 12V20C4 21.1046 4.89543 22 6 22H18C19.1046 22 20 21.1046 20 20V12C20 10.8954 19.1046 10 18 10V8C18 4.68629 15.3137 2 12 2ZM18 12V20H6V12H18ZM8 8V10H16V8C16 5.79086 14.2091 4 12 4C9.79086 4 8 5.79086 8 8Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg viewBox="0 0 80 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0)">
|
|
3
|
+
<path d="M79.0022 6.42684C78.6097 7.14639 78.6587 7.96405 78.5279 8.73265C78.1027 11.3001 77.6939 13.8676 77.3014 16.435C77.2197 17.0074 76.9417 17.22 76.402 17.2036C75.9932 17.1873 75.5843 17.1873 75.1755 17.2036C74.6359 17.22 74.505 16.9747 74.5868 16.4841C74.9793 14.0638 75.3554 11.6272 75.7479 9.20689C75.9278 8.09487 76.124 6.98285 76.2712 5.87083C76.3366 5.4293 76.5328 5.26576 76.958 5.29847C77.6448 5.36388 78.348 5.15129 79.0185 5.44565C79.0022 5.77271 79.0022 6.09978 79.0022 6.42684Z" fill="#029DDF"/>
|
|
4
|
+
<path d="M4.33463 17.776C3.15719 17.776 1.99611 17.776 0.818682 17.776C0.0991397 17.776 -0.0807458 17.5634 0.0337268 16.8929C0.687856 12.7228 1.35834 8.55274 2.01247 4.38267C2.19235 3.20523 2.38859 2.04415 2.58483 0.866721C2.6666 0.310711 2.9446 0 3.51696 0C5.9536 0 8.37387 0 10.7942 0.0327065C11.6445 0.0490597 12.4622 0.245298 13.2308 0.605069C14.9315 1.40638 15.6184 2.87817 15.3076 5.00409L15.2749 4.98773C14.4736 4.72608 13.6887 4.46443 12.822 4.46443C11.0067 4.46443 9.20789 4.46443 7.39268 4.46443C6.70584 4.46443 6.39513 4.74244 6.29701 5.42927C6.05172 6.98283 5.77371 8.52003 5.57747 10.0736C5.52841 10.4824 5.2177 10.924 5.54477 11.3655C5.15229 12.0033 5.18499 12.7392 5.05417 13.4424C4.79252 14.8814 4.66169 16.3369 4.33463 17.776Z" fill="#013187"/>
|
|
5
|
+
<path d="M4.33366 17.7765C4.66073 16.3374 4.79155 14.882 5.06956 13.4429C5.20038 12.7397 5.15132 12.0038 5.56015 11.3661C5.80545 11.1535 6.09981 11.1044 6.41052 11.1044C7.45713 11.1044 8.50373 11.1371 9.53399 10.9899C11.9706 10.6465 13.7695 9.46909 14.7343 7.13058C15.0123 6.4601 15.1104 5.77326 15.323 5.08643C16.5986 5.75691 16.9911 6.90163 16.9584 8.22624C16.942 8.78225 16.8602 9.33826 16.7294 9.86157C16.0426 12.7234 14.1129 14.2769 11.0712 14.3914C9.48493 14.4568 9.3541 14.1788 9.09245 16.1249C8.96162 17.106 8.78174 18.0709 8.63456 19.0357C8.52009 19.7389 8.29114 19.9515 7.5716 19.9679C6.63947 19.9679 5.72369 19.9679 4.79155 19.9679C4.26825 19.9679 4.0393 19.7716 4.13742 19.2156C4.23554 18.7577 4.26825 18.2671 4.33366 17.7765Z" fill="#029DDF"/>
|
|
6
|
+
<path d="M25.1514 17.2032C23.5815 17.1869 23.6469 17.3995 23.9085 15.7478C24.4318 12.5589 24.9224 9.3537 25.4294 6.16482C25.5439 5.41257 25.6583 5.31445 26.4269 5.31445C27.7352 5.31445 29.0598 5.31445 30.3681 5.31445C30.7115 5.31445 31.0713 5.31445 31.4147 5.37987C33.5079 5.72328 34.4073 6.99883 34.0639 9.17381C33.6551 11.7903 32.0688 13.1804 29.4196 13.2458C28.9453 13.2621 28.4711 13.2621 27.9968 13.2458C27.4899 13.2294 27.2446 13.4747 27.1792 13.9653C27.0647 14.7176 26.9339 15.4698 26.8194 16.2057C26.6722 17.1705 26.6232 17.2196 25.6583 17.2196C25.4784 17.2032 25.3149 17.2032 25.1514 17.2032ZM28.5202 10.8582C28.9944 10.8582 29.4686 10.8255 29.9102 10.662C30.6134 10.384 31.0058 9.56629 30.875 8.66686C30.7933 8.06179 30.3681 7.76744 29.5177 7.70202C29.256 7.68567 28.978 7.70202 28.7164 7.68567C28.2912 7.63661 28.1277 7.86556 28.0786 8.24168C27.9805 8.97758 27.8824 9.69712 27.7352 10.4167C27.6698 10.7764 27.7188 10.9073 28.095 10.8745C28.2258 10.8418 28.373 10.8582 28.5202 10.8582Z" fill="#023288"/>
|
|
7
|
+
<path d="M59.477 5.29907C60.3764 5.34813 61.4557 5.20095 62.5023 5.44625C64.0395 5.82238 64.8408 6.85263 64.7918 8.42254C64.71 11.4315 62.9275 13.1813 59.9185 13.214C59.5424 13.214 59.1826 13.2467 58.8065 13.214C58.1524 13.1486 57.8744 13.4757 57.7926 14.0808C57.6781 14.9148 57.5146 15.7324 57.4165 16.5664C57.3674 17.0407 57.1385 17.2042 56.6806 17.1879C56.1736 17.1715 55.6503 17.1879 55.1434 17.1879C54.4238 17.1879 54.3421 17.1061 54.4565 16.4029C54.7018 14.7839 54.9635 13.165 55.2251 11.546C55.5031 9.77986 55.7811 8.03006 56.0591 6.26391C56.19 5.38084 56.2881 5.29907 57.2039 5.29907C57.9071 5.29907 58.6103 5.29907 59.477 5.29907ZM59.1499 10.8755C59.4933 10.8428 59.8531 10.8265 60.1802 10.7447C61.1123 10.5648 61.6356 9.77986 61.5538 8.78231C61.4884 8.03006 61.0305 7.703 60.0003 7.65394C59.7877 7.65394 59.5914 7.65394 59.3789 7.63758C58.9864 7.60488 58.7738 7.75206 58.7247 8.17724C58.6593 8.78231 58.5448 9.38738 58.4304 9.99245C58.2995 10.8592 58.2995 10.8592 59.1499 10.8755Z" fill="#029DDF"/>
|
|
8
|
+
<path d="M40.7191 10.09C40.7191 9.30502 41.1279 9.2069 41.6839 9.25596C42.1418 9.28867 42.5834 9.27232 43.0412 9.25596C43.4501 9.25596 43.5972 9.43585 43.5482 9.82833C43.1884 12.0687 42.8287 14.3255 42.4689 16.5659C42.4035 16.9747 42.1745 17.1873 41.7657 17.1873C41.3569 17.1873 40.948 17.1709 40.5392 17.1873C39.9995 17.22 39.5089 17.1873 39.6561 16.3533C38.8221 16.991 37.9881 17.3672 37.0233 17.3835C34.881 17.4326 33.491 16.0753 33.4746 13.933C33.4746 10.8913 36.0094 8.6836 39.0184 9.12514C39.6725 9.22326 40.2448 9.48491 40.7191 10.09ZM38.0208 15.2085C39.3291 15.2085 40.343 14.2273 40.3593 12.9518C40.3757 11.9215 39.6888 11.2511 38.5932 11.2674C37.3176 11.2838 36.3037 12.2977 36.2874 13.5896C36.2874 14.5871 36.9251 15.2085 38.0208 15.2085Z" fill="#033389"/>
|
|
9
|
+
<path d="M70.3515 16.3205C69.2558 17.2199 68.0948 17.5797 66.7865 17.3344C65.3474 17.0727 64.4153 16.0916 64.2027 14.6525C63.7121 11.3818 66.394 8.68354 69.6647 9.14143C70.3515 9.23955 70.6459 9.38673 71.3654 10.0082C71.3654 9.23955 71.8724 9.2232 72.4284 9.2559C72.7718 9.28861 73.1316 9.2559 73.475 9.2559C74.1945 9.2559 74.2763 9.33767 74.1782 10.0409C73.9165 11.7089 73.6549 13.3606 73.3932 15.0122C73.3114 15.4701 73.246 15.9444 73.1806 16.4186C73.1152 16.9583 72.8535 17.2363 72.2975 17.2036C71.9214 17.1872 71.5616 17.2036 71.1855 17.2036C70.3515 17.2036 70.3352 17.1872 70.3515 16.3205ZM68.6671 15.2085C69.9917 15.2248 70.9893 14.26 71.022 12.9681C71.0383 11.9215 70.3679 11.251 69.2885 11.251C67.9966 11.251 66.9337 12.314 66.95 13.6059C66.95 14.5871 67.6042 15.1921 68.6671 15.2085Z" fill="#029DDF"/>
|
|
10
|
+
<path d="M15.3394 5.10165C15.1268 5.77213 15.0123 6.47532 14.7507 7.1458C13.7858 9.48431 11.987 10.6617 9.55034 11.0052C8.50373 11.1523 7.45712 11.1196 6.42687 11.1196C6.09981 11.1196 5.8218 11.1687 5.5765 11.3813C5.24944 10.9397 5.56015 10.4982 5.60921 10.0894C5.80545 8.53583 6.08345 6.99862 6.32875 5.44507C6.44322 4.75823 6.73758 4.48022 7.42442 4.48022C9.23963 4.48022 11.0385 4.48022 12.8537 4.48022C13.7041 4.48022 14.5054 4.75823 15.3067 5.00353C15.3067 5.03623 15.323 5.05259 15.3394 5.05259C15.323 5.05259 15.3394 5.08529 15.3394 5.10165Z" fill="#012169"/>
|
|
11
|
+
<path d="M48.7655 13.7037C49.6485 12.4118 50.4826 11.2671 51.2184 10.0733C51.6109 9.43555 52.0852 9.14119 52.8211 9.25567C53.1645 9.30473 53.5242 9.25567 53.8677 9.27202C54.0803 9.27202 54.3256 9.20661 54.4727 9.46826C54.6199 9.72991 54.4237 9.89344 54.2928 10.0733C53.4261 11.3162 52.5594 12.5754 51.6927 13.8182C50.4008 15.6825 49.0762 17.5468 47.8006 19.4437C47.5063 19.8689 47.1956 20.0652 46.6722 20.0161C46.2471 19.9834 45.8055 20.0161 45.3803 19.9997C45.135 19.9997 44.857 20.0815 44.7099 19.8035C44.5463 19.5255 44.7916 19.3456 44.9225 19.1494C45.4621 18.3808 45.9854 17.5958 46.5741 16.8436C46.8194 16.5165 46.8194 16.2549 46.705 15.8951C46.0345 13.9654 45.3803 12.0194 44.7099 10.0733C44.4809 9.40285 44.5627 9.27202 45.2659 9.25567C45.7238 9.25567 46.1653 9.28837 46.6232 9.25567C47.1956 9.20661 47.4899 9.45191 47.6371 9.99156C47.9969 11.1853 48.373 12.3791 48.7655 13.7037Z" fill="#033389"/>
|
|
12
|
+
<path d="M15.3089 5.04008C15.2744 5.04008 15.2744 5.02282 15.2744 4.98828L15.3089 5.00555C15.3089 5.02282 15.3089 5.04008 15.3089 5.04008Z" fill="#029DDF"/>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0">
|
|
16
|
+
<rect width="79.0025" height="20" fill="white"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 22 28" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="m17.667 8.6665h3.3334c0.3682 0 0.6666 0.29848 0.6666 0.66667v1.3333c0 0.3682-0.2984 0.6667-0.6666 0.6667h-0.6667v3.12c-0.0094 1.401-0.5698 2.7421-1.56 3.7333l-2.6 2.6667c-0.6733 0.6671-1.5616 1.0735-2.5067 1.1466v4.6667c0 0.3682-0.2984 0.6667-0.6666 0.6667h-4c-0.36819 0-0.66666-0.2985-0.66666-0.6667v-4.6667c-0.93979-0.0622-1.8275-0.4541-2.5067-1.1066l-2.6-2.6667c-0.99994-1.001-1.5611-2.3584-1.56-3.7733v-3.12h-0.66667c-0.36819 0-0.66666-0.2985-0.66666-0.6667v-1.3333c0-0.36819 0.29848-0.66667 0.66666-0.66667h3.3333v-7.3333c0-0.36819 0.29847-0.66667 0.66666-0.66667h1.3333c0.36819 0 0.66666 0.29848 0.66666 0.66667v7.3333h8v-7.3333c0-0.36819 0.2984-0.66667 0.6666-0.66667h1.3334c0.3682 0 0.6666 0.29848 0.6666 0.66667v7.3333zm-0.7866 7.68c0.504-0.5011 0.7872-1.1826 0.7866-1.8933v-3.12h-13.333v3.12c-5.7e-4 0.7107 0.28261 1.3922 0.78666 1.8933l2.4 2.4c0.37472 0.3752 0.88308 0.5862 1.4133 0.5867h4.1333c0.5303-5e-4 1.0387-0.2115 1.4134-0.5867l2.4-2.4z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M19 11.5V12.5C19 12.7761 18.7761 13 18.5 13H13V18.5C13 18.7761 12.7761 19 12.5 19H11.5C11.2239 19 11 18.7761 11 18.5V13H5.5C5.22386 13 5 12.7761 5 12.5V11.5C5 11.2239 5.22386 11 5.5 11H11V5.5C11 5.22386 11.2239 5 11.5 5H12.5C12.7761 5 13 5.22386 13 5.5V11H18.5C18.7761 11 19 11.2239 19 11.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8333 1.66675H4.16667C3.70643 1.66675 3.33333 2.03984 3.33333 2.50008V16.0501C3.3364 16.2707 3.42272 16.4821 3.575 16.6417L5.15 18.2084C5.22523 18.2894 5.33116 18.3348 5.44167 18.3334H5.68333C5.79383 18.3348 5.89977 18.2894 5.975 18.2084L7.5 16.6667C7.57693 16.5882 7.68176 16.5433 7.79167 16.5417C7.90138 16.5442 8.00589 16.589 8.08333 16.6667L9.59166 18.1751C9.6669 18.256 9.77283 18.3014 9.88333 18.3001H10.125C10.2355 18.3014 10.3414 18.256 10.4167 18.1751L11.9333 16.6667C12.0103 16.5882 12.1151 16.5433 12.225 16.5417C12.3289 16.5483 12.4267 16.5928 12.5 16.6667L14.0083 18.1751C14.0836 18.256 14.1895 18.3014 14.3 18.3001H14.5417C14.6522 18.3014 14.7581 18.256 14.8333 18.1751L16.425 16.6667C16.579 16.5115 16.6657 16.302 16.6667 16.0834V2.50008C16.6667 2.03984 16.2936 1.66675 15.8333 1.66675ZM12.9167 8.33341C13.1468 8.33341 13.3333 8.14687 13.3333 7.91675V7.08341C13.3333 6.8533 13.1468 6.66675 12.9167 6.66675H7.08333C6.85321 6.66675 6.66667 6.8533 6.66667 7.08341V7.91675C6.66667 8.14687 6.85321 8.33341 7.08333 8.33341H12.9167ZM10.4167 11.6667C10.6468 11.6667 10.8333 11.4802 10.8333 11.2501V10.4167C10.8333 10.1866 10.6468 10.0001 10.4167 10.0001H7.08333C6.85321 10.0001 6.66667 10.1866 6.66667 10.4167V11.2501C6.66667 11.4802 6.85321 11.6667 7.08333 11.6667H10.4167ZM14.45 16.2668L15 15.7167V3.33341H5V15.7001L5.56667 16.2668L6.59167 15.2417C6.74688 15.0878 6.95638 15.001 7.175 15.0001H8.38333C8.60195 15.001 8.81145 15.0878 8.96667 15.2417L10 16.2751L11.075 15.2417C11.2323 15.0858 11.4452 14.9988 11.6667 15.0001H12.8333C13.0519 15.001 13.2614 15.0878 13.4167 15.2417L13.7 15.5251L13.8333 15.6584L14.45 16.2668Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
fill-rule="evenodd"
|
|
4
|
+
clip-rule="evenodd"
|
|
5
|
+
d="M16.3333 15.0715L19.8889 18.6313C20.0477 18.8079 20.0398 19.0783 19.8711 19.2454L19.2489 19.8684C19.1654 19.9526 19.0518 20 18.9333 20C18.8148 20 18.7012 19.9526 18.6178 19.8684L15.0622 16.3085C14.9639 16.21 14.8746 16.1028 14.7956 15.9881L14.1289 15.0982C13.0258 15.9801 11.656 16.4602 10.2444 16.4598C7.33565 16.4699 4.80802 14.461 4.15798 11.6223C3.50794 8.78365 4.90898 5.87288 7.53164 4.61326C10.1543 3.35364 13.2986 4.08134 15.1031 6.36555C16.9076 8.64977 16.8906 11.8809 15.0622 14.1459L15.9511 14.76C16.0899 14.849 16.2182 14.9535 16.3333 15.0715ZM5.79991 10.2301C5.79991 12.6877 7.78976 14.6799 10.2444 14.6799C11.4231 14.6799 12.5536 14.2111 13.3871 13.3766C14.2206 12.5421 14.6888 11.4103 14.6888 10.2301C14.6888 7.77254 12.699 5.7803 10.2444 5.7803C7.78976 5.7803 5.79991 7.77254 5.79991 10.2301Z"
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.16667 15.8333H8.75C8.98012 15.8333 9.16667 16.0199 9.16667 16.25V17.0833C9.16667 17.3135 8.98012 17.5 8.75 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333L2.5 4.16667C2.5 3.24619 3.24619 2.5 4.16667 2.5L8.75 2.5C8.98012 2.5 9.16667 2.68655 9.16667 2.91667V3.75C9.16667 3.98012 8.98012 4.16667 8.75 4.16667L4.16667 4.16667L4.16667 15.8333ZM13.0333 5.125L17.3167 9.4C17.4324 9.5181 17.4981 9.67632 17.5 9.84167V10.1583C17.4999 10.324 17.4339 10.4829 17.3167 10.6L13.0333 14.875C12.9551 14.9539 12.8486 14.9983 12.7375 14.9983C12.6264 14.9983 12.5199 14.9539 12.4417 14.875L11.85 14.2917C11.7711 14.2134 11.7268 14.1069 11.7268 13.9958C11.7268 13.8847 11.7711 13.7782 11.85 13.7L14.725 10.8333L6.25 10.8333C6.01988 10.8333 5.83333 10.6468 5.83333 10.4167V9.58333C5.83333 9.35322 6.01988 9.16667 6.25 9.16667L14.725 9.16667L11.85 6.3C11.7716 6.2232 11.7274 6.11807 11.7274 6.00833C11.7274 5.89859 11.7716 5.79347 11.85 5.71667L12.4417 5.125C12.5199 5.04612 12.6264 5.00175 12.7375 5.00175C12.8486 5.00175 12.9551 5.04612 13.0333 5.125Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 0C15.5229 0 20 4.47715 20 10C20 14.9912 16.3432 19.1283 11.5625 19.8785V12.8906H13.8926L14.3359 10H11.5625V8.125C11.5625 7.345 11.9387 6.58509 13.1381 6.56299C13.156 6.56267 13.174 6.5625 13.1922 6.5625H14.4531V4.10156C14.4531 4.10156 13.5767 3.95203 12.6249 3.91464C12.4889 3.9093 12.3514 3.90625 12.2146 3.90625C9.93047 3.90625 8.4375 5.29063 8.4375 7.79688V10H5.89844V12.8906H8.4375V19.8785C3.65684 19.1283 0 14.9912 0 10C0 4.47715 4.47715 0 10 0Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.44444 0C3.2657 0 2.13524 0.468253 1.30175 1.30175C0.468253 2.13524 0 3.2657 0 4.44444V11.5556C0 12.7343 0.468253 13.8648 1.30175 14.6983C2.13524 15.5317 3.2657 16 4.44444 16H11.5556C12.7343 16 13.8648 15.5317 14.6983 14.6983C15.5317 13.8648 16 12.7343 16 11.5556V4.44444C16 3.2657 15.5317 2.13524 14.6983 1.30175C13.8648 0.468253 12.7343 0 11.5556 0H4.44444ZM13.3333 1.77778C13.8222 1.77778 14.2222 2.17778 14.2222 2.66667C14.2222 3.15556 13.8222 3.55556 13.3333 3.55556C12.8444 3.55556 12.4444 3.15556 12.4444 2.66667C12.4444 2.17778 12.8444 1.77778 13.3333 1.77778ZM8 3.55556C9.17874 3.55556 10.3092 4.02381 11.1427 4.8573C11.9762 5.6908 12.4444 6.82126 12.4444 8C12.4444 9.17874 11.9762 10.3092 11.1427 11.1427C10.3092 11.9762 9.17874 12.4444 8 12.4444C6.82126 12.4444 5.6908 11.9762 4.8573 11.1427C4.02381 10.3092 3.55556 9.17874 3.55556 8C3.55556 6.82126 4.02381 5.6908 4.8573 4.8573C5.6908 4.02381 6.82126 3.55556 8 3.55556ZM8 5.33333C7.64969 5.33345 7.30284 5.40256 6.97924 5.53673C6.65564 5.67089 6.36164 5.86748 6.11401 6.11527C5.86639 6.36306 5.67 6.65719 5.53605 6.98088C5.4021 7.30457 5.33322 7.65147 5.33333 8.00178C5.33345 8.35209 5.40256 8.69894 5.53673 9.02254C5.67089 9.34614 5.86748 9.64014 6.11527 9.88776C6.36306 10.1354 6.65719 10.3318 6.98088 10.4657C7.30457 10.5997 7.65147 10.6686 8.00178 10.6684C8.70926 10.6682 9.38767 10.3869 9.88776 9.88651C10.3879 9.38608 10.6687 8.70748 10.6684 8C10.6682 7.29252 10.3869 6.61411 9.88651 6.11401C9.38608 5.61392 8.70748 5.3331 8 5.33333Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.9968 0C5.4737 0 0.996826 4.47688 0.996826 10C0.996826 15.5225 5.4737 20 10.9968 20C16.52 20 20.9968 15.5225 20.9968 10C20.9968 4.47688 16.5193 0 10.9968 0Z" fill="currentColor"/>
|
|
3
|
+
<path d="M16.0012 7.79124C16.0012 10.7025 14.3824 12.8781 11.9968 12.8781C11.1949 12.8781 10.4418 12.445 10.1837 11.9525C10.1837 11.9525 9.75242 13.6625 9.6618 13.9925C9.34055 15.1587 8.39492 16.3256 8.3218 16.4212C8.27055 16.4875 8.15742 16.4669 8.14555 16.3787C8.12492 16.23 7.8843 14.7587 8.16805 13.5581L9.12242 9.51374C9.12242 9.51374 8.88555 9.03999 8.88555 8.33937C8.88555 7.23937 9.52305 6.41812 10.3168 6.41812C10.9918 6.41812 11.3174 6.92437 11.3174 7.53187C11.3174 8.21062 10.8855 9.22562 10.6624 10.1656C10.4762 10.9531 11.0574 11.5956 11.8337 11.5956C13.2399 11.5956 14.1868 9.78937 14.1868 7.64937C14.1868 6.02312 13.0918 4.80499 11.0987 4.80499C8.84805 4.80499 7.44492 6.48374 7.44492 8.35937C7.44492 9.00624 7.63617 9.46249 7.93492 9.81499C8.0718 9.97749 8.09117 10.0425 8.04117 10.2287C8.00492 10.3656 7.9243 10.6937 7.8893 10.8244C7.83992 11.0125 7.68742 11.0794 7.51805 11.01C6.48117 10.5869 5.99805 9.45062 5.99805 8.17437C5.99805 6.06624 7.77617 3.53812 11.3024 3.53812C14.1368 3.53937 16.0012 5.58937 16.0012 7.79124Z" fill="var(--pinterest-icon-inner)"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.6367 2.52885C18.4961 2.02885 19.1406 1.23077 19.4434 0.288462C18.6621 0.75 17.7734 1.08654 16.8555 1.26923C16.084 0.5 15.0195 0 13.8379 0C11.5723 0 9.74609 1.79808 9.74609 4.02885C9.74609 4.34615 9.76562 4.67308 9.83398 4.96154C6.43555 4.77885 3.42773 3.25962 1.38672 0.817308C1.04492 1.41346 0.830078 2.02885 0.830078 2.77885C0.830078 4.16346 1.55273 5.39423 2.66602 6.125C1.99219 6.10577 1.36719 5.92308 0.810547 5.625V5.67308C0.810547 7.63462 2.22656 9.26923 4.10156 9.63461C3.75 9.73077 3.37891 9.77885 3.00781 9.77885C2.75391 9.77885 2.5 9.75 2.24609 9.70192C2.75391 11.2981 4.28711 12.4904 6.06445 12.5096C4.67773 13.6058 2.89062 14.4231 0.976562 14.4231C0.644531 14.4231 0.322266 14.4038 0 14.3558C1.80664 15.5 3.98438 16 6.29883 16C13.8379 16 17.959 9.84615 17.959 4.50962V3.98077C18.75 3.41346 19.4434 2.71154 20 1.88462C19.2578 2.21154 18.4766 2.43269 17.6367 2.52885Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 22 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.5399 0.339985L18.9999 0.489985C20.7284 0.685348 22.0264 2.1607 21.9999 3.89999V12.1C22.0264 13.8393 20.7284 15.3146 18.9999 15.51L17.5999 15.66C13.2315 16.11 8.82835 16.11 4.45991 15.66L2.99991 15.51C1.27143 15.3146 -0.0265361 13.8393 -9.13677e-05 12.1V3.89999C-0.0265361 2.1607 1.27143 0.685348 2.99991 0.489985L4.39991 0.339985C8.76835 -0.109992 13.1715 -0.109992 17.5399 0.339985ZM10.1099 11.22L13.9999 8.61999H14.0599C14.2695 8.48341 14.3959 8.25017 14.3959 7.99999C14.3959 7.7498 14.2695 7.51656 14.0599 7.37999L10.1699 4.77999C9.94024 4.62475 9.64368 4.60885 9.39873 4.73865C9.15379 4.86845 9.00041 5.12278 8.99991 5.39999V10.6C9.01281 10.8581 9.15765 11.0913 9.38324 11.2173C9.60883 11.3433 9.8834 11.3443 10.1099 11.22Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1704 4.83341C13.1704 7.1346 11.3044 9.00008 9.00252 9.00008C6.70063 9.00008 4.83459 7.1346 4.83459 4.83341C4.83459 2.53223 6.70063 0.666748 9.00252 0.666748C11.3044 0.666748 13.1704 2.53223 13.1704 4.83341ZM11.5033 4.83341C11.5033 3.4527 10.3836 2.33341 9.00251 2.33341C7.62138 2.33341 6.50176 3.4527 6.50176 4.83341C6.50176 6.21413 7.62138 7.33341 9.00251 7.33341C10.3836 7.33341 11.5033 6.21413 11.5033 4.83341ZM17.2467 16.1251L15.6712 12.9667C14.9646 11.557 13.5224 10.6668 11.9451 10.6667H6.05997C4.48264 10.6668 3.04048 11.557 2.33384 12.9667L0.758362 16.1251C0.628348 16.383 0.641206 16.6899 0.792341 16.936C0.943477 17.1822 1.21134 17.3325 1.50025 17.3334H16.5048C16.7937 17.3325 17.0616 17.1822 17.2127 16.936C17.3638 16.6899 17.3767 16.383 17.2467 16.1251ZM3.82595 13.7167L2.85066 15.6667H15.1544L14.1791 13.7167C13.7563 12.8701 12.8916 12.3347 11.9451 12.3334H6.05996C5.11343 12.3347 4.24874 12.8701 3.82595 13.7167Z" fill="#181818"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.06066 3L2 4.06066L5.27758 7.33824C3.88036 8.45795 2.7586 9.93495 2.05997 11.6701C2.02156 11.7759 2.00129 11.8875 2.00001 12.0001C1.99948 12.1063 2.01986 12.2117 2.05997 12.3101C3.68479 16.3692 7.62406 19.0221 11.9939 19.0001C13.4422 19.0084 14.8434 18.723 16.129 18.1897L18.9706 21.0312L20.0312 19.9706L3.06066 3ZM14.5536 16.6143L12.8232 14.8839C12.5598 14.9595 12.2816 15.0001 11.9939 15.0001C10.3381 15.0001 8.99575 13.6569 8.99575 12.0001C8.99575 11.7129 9.03609 11.4351 9.11141 11.1721L6.70955 8.77022C5.60357 9.60334 4.68941 10.7013 4.06875 12.0001C5.5333 15.0499 8.6124 16.9925 11.9939 17.0001C12.8754 16.9981 13.7364 16.8646 14.5536 16.6143Z"/>
|
|
3
|
+
<path d="M11.1742 9.11356L14.8792 12.8185C14.9527 12.5583 14.9921 12.2838 14.9921 12.0001C14.9921 10.3432 13.6498 9.00007 11.9939 9.00007C11.7097 9.00007 11.4347 9.03964 11.1742 9.11356Z"/>
|
|
4
|
+
<path d="M19.9191 12.0001C19.2975 13.2944 18.3851 14.3894 17.2822 15.2216L18.7171 16.6564C20.1111 15.5374 21.2304 14.0624 21.9279 12.3301C21.9706 12.2255 21.9911 12.1131 21.9878 12.0001C22.0041 11.9007 22.0041 11.7994 21.9878 11.7001C20.3582 7.61653 16.3881 4.95491 11.9939 5.00007C10.5489 4.99171 9.15069 5.27589 7.86748 5.80682L9.44159 7.38093C10.2566 7.13322 11.1151 7.00206 11.9939 7.00206C15.3771 7.00206 18.4596 8.94605 19.9191 12.0001Z"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9878 11.7C20.3582 7.61646 16.3881 4.95484 11.9939 5C7.629 4.97475 3.69114 7.61877 2.05997 11.67C2.02156 11.7758 2.00129 11.8874 2.00001 12C1.99948 12.1063 2.01986 12.2116 2.05997 12.31C3.68479 16.3691 7.62406 19.022 11.9939 19C16.3588 19.0252 20.2967 16.3812 21.9279 12.33C21.9706 12.2254 21.9911 12.113 21.9878 12C22.0041 11.9007 22.0041 11.7993 21.9878 11.7ZM11.9939 17C8.6124 16.9924 5.5333 15.0498 4.06875 12C5.52824 8.94598 8.61076 7.00199 11.9939 7.00199C15.3771 7.00199 18.4596 8.94598 19.9191 12C18.4545 15.0498 15.3754 16.9924 11.9939 17ZM8.99575 12C8.99575 10.3431 10.3381 9 11.9939 9C13.6498 9 14.9921 10.3431 14.9921 12C14.9921 13.6569 13.6498 15 11.9939 15C10.3381 15 8.99575 13.6569 8.99575 12Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|