@ludo.ninja/components 2.0.1 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (895) hide show
  1. package/build/api/graphql/index.d.ts +4 -0
  2. package/build/api/graphql/index.js +11 -0
  3. package/build/api/server-assets/mutations/useDislikeAsset/index.d.ts +7 -0
  4. package/build/api/server-assets/mutations/useDislikeAsset/index.js +32 -0
  5. package/build/api/server-assets/mutations/useLikeAsset/index.d.ts +7 -0
  6. package/build/api/server-assets/mutations/useLikeAsset/index.js +33 -0
  7. package/build/api/server-assets/queries/useFetchAssetByBlockchain/index.d.ts +14 -0
  8. package/build/api/server-assets/queries/useFetchAssetByBlockchain/index.js +48 -0
  9. package/build/api/server-assets/queries/useFetchAssets/index.d.ts +7 -0
  10. package/build/api/server-assets/queries/useFetchAssets/index.js +31 -0
  11. package/build/api/server-assets/queries/useFetchDynamicAssetLikes/index.d.ts +8 -0
  12. package/build/api/server-assets/queries/useFetchDynamicAssetLikes/index.js +35 -0
  13. package/build/api/server-assets/queries/useFetchDynamicAssetsLikes/index.d.ts +7 -0
  14. package/build/api/server-assets/queries/useFetchDynamicAssetsLikes/index.js +30 -0
  15. package/build/api/server-collection/mutations/useDislikeCollection/index.d.ts +7 -0
  16. package/build/api/server-collection/mutations/useDislikeCollection/index.js +31 -0
  17. package/build/api/server-collection/mutations/useLikeCollection/index.d.ts +7 -0
  18. package/build/api/server-collection/mutations/useLikeCollection/index.js +31 -0
  19. package/build/api/server-experiences/queries/useFetchMyExperienceWithLevel/index.d.ts +2 -0
  20. package/build/api/server-experiences/queries/useFetchMyExperienceWithLevel/index.js +84 -0
  21. package/build/api/server-experiences/queries/useFetchMyTasks/index.d.ts +31 -0
  22. package/build/api/server-experiences/queries/useFetchMyTasks/index.js +49 -0
  23. package/build/api/server-galleries/mutations/useAddAssetsToGallery/index.d.ts +7 -0
  24. package/build/api/server-galleries/mutations/useAddAssetsToGallery/index.js +36 -0
  25. package/build/api/server-galleries/mutations/useAddChangeGalleryBanner/index.d.ts +4 -0
  26. package/build/api/server-galleries/mutations/useAddChangeGalleryBanner/index.js +30 -0
  27. package/build/api/server-galleries/mutations/useAddCollectionsToGallery/index.d.ts +7 -0
  28. package/build/api/server-galleries/mutations/useAddCollectionsToGallery/index.js +35 -0
  29. package/build/api/server-galleries/mutations/useAddCreationsToGallery/index.d.ts +7 -0
  30. package/build/api/server-galleries/mutations/useAddCreationsToGallery/index.js +43 -0
  31. package/build/api/server-galleries/mutations/useCreateFavorites/index.d.ts +6 -0
  32. package/build/api/server-galleries/mutations/useCreateFavorites/index.js +25 -0
  33. package/build/api/server-galleries/mutations/useCreateGallery/index.d.ts +6 -0
  34. package/build/api/server-galleries/mutations/useCreateGallery/index.js +25 -0
  35. package/build/api/server-galleries/mutations/useDeleteGallery/index.d.ts +8 -0
  36. package/build/api/server-galleries/mutations/useDeleteGallery/index.js +42 -0
  37. package/build/api/server-galleries/mutations/useDeleteGalleryBanner/index.d.ts +5 -0
  38. package/build/api/server-galleries/mutations/useDeleteGalleryBanner/index.js +39 -0
  39. package/build/api/server-galleries/mutations/useEditGallery/index.d.ts +5 -0
  40. package/build/api/server-galleries/mutations/useEditGallery/index.js +23 -0
  41. package/build/api/server-galleries/mutations/useRemoveAssetFromGallery/index.d.ts +7 -0
  42. package/build/api/server-galleries/mutations/useRemoveAssetFromGallery/index.js +49 -0
  43. package/build/api/server-galleries/mutations/useRemoveCollectionFromGallery/index.d.ts +7 -0
  44. package/build/api/server-galleries/mutations/useRemoveCollectionFromGallery/index.js +44 -0
  45. package/build/api/server-galleries/queries/useFetchGallery/index.d.ts +16 -0
  46. package/build/api/server-galleries/queries/useFetchGallery/index.js +46 -0
  47. package/build/api/server-galleries/queries/useFetchGalleryAssets/index.d.ts +18 -0
  48. package/build/api/server-galleries/queries/useFetchGalleryAssets/index.js +86 -0
  49. package/build/api/server-galleries/queries/useFetchMyFavorites/index.d.ts +10 -0
  50. package/build/api/server-galleries/queries/useFetchMyFavorites/index.js +70 -0
  51. package/build/api/server-galleries/queries/useFetchMyGalleries/index.d.ts +10 -0
  52. package/build/api/server-galleries/queries/useFetchMyGalleries/index.js +72 -0
  53. package/build/api/server-galleries/queries/useFetchSubscribedGalleries/index.d.ts +9 -0
  54. package/build/api/server-galleries/queries/useFetchSubscribedGalleries/index.js +69 -0
  55. package/build/api/server-galleries/queries/useFetchUserFavorites/index.d.ts +11 -0
  56. package/build/api/server-galleries/queries/useFetchUserFavorites/index.js +68 -0
  57. package/build/api/server-identities/mutations/useAddWalletElrond/index.d.ts +6 -0
  58. package/build/api/server-identities/mutations/useAddWalletElrond/index.js +35 -0
  59. package/build/api/server-identities/mutations/useAddWalletFlow/index.d.ts +5 -0
  60. package/build/api/server-identities/mutations/useAddWalletFlow/index.js +35 -0
  61. package/build/api/server-identities/mutations/useAddWalletMetamask/index.d.ts +12 -0
  62. package/build/api/server-identities/mutations/useAddWalletMetamask/index.js +39 -0
  63. package/build/api/server-identities/mutations/useAddWalletSolana/index.d.ts +5 -0
  64. package/build/api/server-identities/mutations/useAddWalletSolana/index.js +35 -0
  65. package/build/api/server-identities/mutations/useAddWalletTezos/index.d.ts +5 -0
  66. package/build/api/server-identities/mutations/useAddWalletTezos/index.js +35 -0
  67. package/build/api/server-identities/mutations/useFollowProfile/index.d.ts +7 -0
  68. package/build/api/server-identities/mutations/useFollowProfile/index.js +40 -0
  69. package/build/api/server-identities/mutations/useGenerateNewInviteCodes/index.d.ts +7 -0
  70. package/build/api/server-identities/mutations/useGenerateNewInviteCodes/index.js +31 -0
  71. package/build/api/server-identities/mutations/useInviteCode/index.d.ts +7 -0
  72. package/build/api/server-identities/mutations/useInviteCode/index.js +34 -0
  73. package/build/api/server-identities/mutations/useRemoveWallet/index.d.ts +6 -0
  74. package/build/api/server-identities/mutations/useRemoveWallet/index.js +37 -0
  75. package/build/api/server-identities/mutations/useRevokeToken/index.d.ts +4 -0
  76. package/build/api/server-identities/mutations/useRevokeToken/index.js +21 -0
  77. package/build/api/server-identities/mutations/useSaveEmailOfJoiner/index.d.ts +7 -0
  78. package/build/api/server-identities/mutations/useSaveEmailOfJoiner/index.js +34 -0
  79. package/build/api/server-identities/mutations/useUnfollowProfile/index.d.ts +7 -0
  80. package/build/api/server-identities/mutations/useUnfollowProfile/index.js +39 -0
  81. package/build/api/server-identities/queries/useFetchProfile/index.d.ts +16 -0
  82. package/build/api/server-identities/queries/useFetchProfile/index.js +80 -0
  83. package/build/api/server-identities/queries/useFetchUserWallets/index.d.ts +7 -0
  84. package/build/api/server-identities/queries/useFetchUserWallets/index.js +19 -0
  85. package/build/api/server-medias/mutations/useDeleteUserpic/index.d.ts +6 -0
  86. package/build/api/server-medias/mutations/useDeleteUserpic/index.js +20 -0
  87. package/build/api/server-medias/mutations/useUploadUserpic/index.d.ts +4 -0
  88. package/build/api/server-medias/mutations/useUploadUserpic/index.js +27 -0
  89. package/build/api/server-medias/queries/useFetchUserPic/index.d.ts +12 -0
  90. package/build/api/server-medias/queries/useFetchUserPic/index.js +39 -0
  91. package/build/api/server-opportunities/mutations/useDislikeOpportunity.d.ts +4 -0
  92. package/build/api/server-opportunities/mutations/useDislikeOpportunity.js +29 -0
  93. package/build/api/server-opportunities/mutations/useLikeOpportunity.d.ts +4 -0
  94. package/build/api/server-opportunities/mutations/useLikeOpportunity.js +29 -0
  95. package/build/api/server-opportunities/mutations/useOpenOpportunity/index.d.ts +5 -0
  96. package/build/api/server-opportunities/mutations/useOpenOpportunity/index.js +28 -0
  97. package/build/api/server-opportunities/queries/useGetOpportunities.d.ts +4 -0
  98. package/build/api/server-opportunities/queries/useGetOpportunities.js +26 -0
  99. package/build/api/server-preferences/queries/fetchSearchResultSelections/index.d.ts +28 -0
  100. package/build/api/server-preferences/queries/fetchSearchResultSelections/index.js +33 -0
  101. package/build/api/server-preferences/queries/fetchSearchResultSelections/queryData.d.ts +14 -0
  102. package/build/api/server-preferences/queries/fetchSearchResultSelections/queryData.js +37 -0
  103. package/build/api/server-search/queries/useFetchAllCreations/index.d.ts +32 -0
  104. package/build/api/server-search/queries/useFetchAllCreations/index.js +94 -0
  105. package/build/api/server-search/queries/useFetchAssetsCount/index.d.ts +7 -0
  106. package/build/api/server-search/queries/useFetchAssetsCount/index.js +33 -0
  107. package/build/api/server-search/queries/useFetchCollection/index.d.ts +19 -0
  108. package/build/api/server-search/queries/useFetchCollection/index.js +59 -0
  109. package/build/api/server-search/queries/useFetchCollections/index.d.ts +23 -0
  110. package/build/api/server-search/queries/useFetchCollections/index.js +101 -0
  111. package/build/api/server-search/queries/useFetchDynamicCollectionData/index.d.ts +13 -0
  112. package/build/api/server-search/queries/useFetchDynamicCollectionData/index.js +126 -0
  113. package/build/api/server-search/queries/useFetchFindAllTopEntitiesByName/index.d.ts +47 -0
  114. package/build/api/server-search/queries/useFetchFindAllTopEntitiesByName/index.js +59 -0
  115. package/build/api/server-search/queries/useFetchNetWorth/index.d.ts +7 -0
  116. package/build/api/server-search/queries/useFetchNetWorth/index.js +23 -0
  117. package/build/api/server-search/queries/useFindCreations/index.d.ts +34 -0
  118. package/build/api/server-search/queries/useFindCreations/index.js +107 -0
  119. package/build/api/server-search/queries/useFindProfilesByName/index.d.ts +32 -0
  120. package/build/api/server-search/queries/useFindProfilesByName/index.js +59 -0
  121. package/build/api/server-search/queries/useFindShowcaseItems/index.d.ts +2 -0
  122. package/build/api/server-search/queries/useFindShowcaseItems/index.js +42 -0
  123. package/build/api/server-search/queries/useFindUserCreations/index.d.ts +16 -0
  124. package/build/api/server-search/queries/useFindUserCreations/index.js +95 -0
  125. package/build/api/server-search/queries/useFindUserShowcaseItems/index.d.ts +2 -0
  126. package/build/api/server-search/queries/useFindUserShowcaseItems/index.js +40 -0
  127. package/build/api/subscriptions/SubscriberInviteNotification.d.ts +1 -0
  128. package/build/api/subscriptions/SubscriberInviteNotification.js +44 -0
  129. package/build/components/assetPage/assetLikes/index.d.ts +6 -0
  130. package/build/components/assetPage/assetLikes/index.js +58 -0
  131. package/build/components/assetPage/assetNft/index.d.ts +4 -0
  132. package/build/components/assetPage/assetNft/index.js +37 -0
  133. package/build/components/assetPage/audioVideoPlayer/Duration.d.ts +5 -0
  134. package/build/components/assetPage/audioVideoPlayer/Duration.js +22 -0
  135. package/build/components/assetPage/audioVideoPlayer/index.d.ts +96 -0
  136. package/build/components/assetPage/audioVideoPlayer/index.js +308 -0
  137. package/build/components/assetPage/category/index.d.ts +6 -0
  138. package/build/components/assetPage/category/index.js +55 -0
  139. package/build/components/assetPage/description/index.d.ts +4 -0
  140. package/build/components/assetPage/description/index.js +43 -0
  141. package/build/components/assetPage/index.d.ts +11 -0
  142. package/build/components/assetPage/index.js +25 -0
  143. package/build/components/assetPage/information/index.d.ts +6 -0
  144. package/build/components/assetPage/information/index.js +117 -0
  145. package/build/components/assetPage/marketPlaces/index.d.ts +4 -0
  146. package/build/components/assetPage/marketPlaces/index.js +57 -0
  147. package/build/components/assetPage/media/AssetImage/index.d.ts +8 -0
  148. package/build/components/assetPage/media/AssetImage/index.js +187 -0
  149. package/build/components/assetPage/moreDropDown/index.d.ts +10 -0
  150. package/build/components/assetPage/moreDropDown/index.js +152 -0
  151. package/build/components/assetPage/participants/index.d.ts +9 -0
  152. package/build/components/assetPage/participants/index.js +178 -0
  153. package/build/components/assetPage/priceRank/index.d.ts +9 -0
  154. package/build/components/assetPage/priceRank/index.js +112 -0
  155. package/build/components/assetPage/properties/index.d.ts +4 -0
  156. package/build/components/assetPage/properties/index.js +42 -0
  157. package/build/components/assetPage/slider/index.d.ts +5 -0
  158. package/build/components/assetPage/slider/index.js +178 -0
  159. package/build/components/assetPage/slider/slideItem.d.ts +5 -0
  160. package/build/components/assetPage/slider/slideItem.js +53 -0
  161. package/build/components/assetPage/slider/store.d.ts +8 -0
  162. package/build/components/assetPage/slider/store.js +16 -0
  163. package/build/components/assetPage/tittle/index.d.ts +9 -0
  164. package/build/components/assetPage/tittle/index.js +89 -0
  165. package/build/components/assetPage/viewer3D/index.d.ts +7 -0
  166. package/build/components/assetPage/viewer3D/index.js +123 -0
  167. package/build/components/base/Meta/index.d.ts +2 -0
  168. package/build/components/base/Meta/index.js +39 -0
  169. package/build/components/base/NoSSR/index.d.ts +5 -0
  170. package/build/components/base/NoSSR/index.js +11 -0
  171. package/build/components/favoriteList/add/addCreationToFavoriteList/index.d.ts +7 -0
  172. package/build/components/favoriteList/add/addCreationToFavoriteList/index.js +28 -0
  173. package/build/components/gallery/add/addCreationToGallery/index.d.ts +2 -0
  174. package/build/components/gallery/add/addCreationToGallery/index.js +48 -0
  175. package/build/components/headers/components/MobileToggle/index.d.ts +0 -0
  176. package/build/components/headers/components/MobileToggle/index.js +1 -0
  177. package/build/components/headers/components/headerExperienceLabel/index.d.ts +4 -0
  178. package/build/components/headers/components/headerExperienceLabel/index.js +31 -0
  179. package/build/components/headers/components/headerUserPic/index.d.ts +4 -0
  180. package/build/components/headers/components/headerUserPic/index.js +29 -0
  181. package/build/components/headers/header/index.d.ts +2 -0
  182. package/build/components/headers/header/index.js +30 -0
  183. package/build/components/headers/headerSearch/index.d.ts +2 -0
  184. package/build/components/headers/headerSearch/index.js +37 -0
  185. package/build/components/headers/headerSimple/index.d.ts +2 -0
  186. package/build/components/headers/headerSimple/index.js +76 -0
  187. package/build/components/linkTabs/index.d.ts +7 -0
  188. package/build/components/linkTabs/index.js +51 -0
  189. package/build/components/linkTabs/linkTab/index.d.ts +8 -0
  190. package/build/components/linkTabs/linkTab/index.js +74 -0
  191. package/build/components/profile/profileSkeleton/index.d.ts +4 -0
  192. package/build/components/profile/profileSkeleton/index.js +75 -0
  193. package/build/components/search/SearchInputContainer.d.ts +26 -0
  194. package/build/components/search/SearchInputContainer.js +226 -0
  195. package/build/components/search/searchCloseMoreButtons/index.d.ts +14 -0
  196. package/build/components/search/searchCloseMoreButtons/index.js +58 -0
  197. package/build/components/search/searchSimpleInput/index.d.ts +4 -0
  198. package/build/components/search/searchSimpleInput/index.js +139 -0
  199. package/build/components/search/searchSuggestions/index.d.ts +14 -0
  200. package/build/components/search/searchSuggestions/index.js +145 -0
  201. package/build/components/search/searchSuggestions/searchSuggestionsCaption/index.d.ts +7 -0
  202. package/build/components/search/searchSuggestions/searchSuggestionsCaption/index.js +45 -0
  203. package/build/components/search/searchSuggestions/searchSuggestionsFooter/index.d.ts +2 -0
  204. package/build/components/search/searchSuggestions/searchSuggestionsFooter/index.js +52 -0
  205. package/build/components/search/searchSuggestions/searchSuggestionsItem/index.d.ts +11 -0
  206. package/build/components/search/searchSuggestions/searchSuggestionsItem/index.js +117 -0
  207. package/build/components/search/searchSuggestions/searchSuggestionsItem/searchSuggestionsItemSkeleton/index.d.ts +3 -0
  208. package/build/components/search/searchSuggestions/searchSuggestionsItem/searchSuggestionsItemSkeleton/index.js +116 -0
  209. package/build/components/search/searchSuggestions/searchSuggestionsNotFound/index.d.ts +4 -0
  210. package/build/components/search/searchSuggestions/searchSuggestionsNotFound/index.js +46 -0
  211. package/build/components/searchFiltersConnector/filters/applyResetBtns/index.d.ts +5 -0
  212. package/build/components/searchFiltersConnector/filters/applyResetBtns/index.js +55 -0
  213. package/build/components/searchFiltersConnector/filters/galleriesFiltersForm/index.d.ts +10 -0
  214. package/build/components/searchFiltersConnector/filters/galleriesFiltersForm/index.js +60 -0
  215. package/build/components/searchFiltersConnector/filters/index.d.ts +11 -0
  216. package/build/components/searchFiltersConnector/filters/index.js +158 -0
  217. package/build/components/searchFiltersConnector/filters/mobileFilters/index.d.ts +5 -0
  218. package/build/components/searchFiltersConnector/filters/mobileFilters/index.js +25 -0
  219. package/build/components/searchFiltersConnector/filters/setsFiltersForm/index.d.ts +9 -0
  220. package/build/components/searchFiltersConnector/filters/setsFiltersForm/index.js +53 -0
  221. package/build/components/searchFiltersConnector/index.d.ts +10 -0
  222. package/build/components/searchFiltersConnector/index.js +121 -0
  223. package/build/components/sidebar/data.d.ts +19 -0
  224. package/build/components/sidebar/data.js +80 -0
  225. package/build/components/sidebar/index.d.ts +2 -0
  226. package/build/components/sidebar/index.js +160 -0
  227. package/build/components/sidebar/initializer.d.ts +1 -0
  228. package/build/components/sidebar/initializer.js +36 -0
  229. package/build/components/sidebar/sidebarFilters/index.d.ts +7 -0
  230. package/build/components/sidebar/sidebarFilters/index.js +51 -0
  231. package/build/components/sidebar/sidebarInviteCodeLabel/index.d.ts +2 -0
  232. package/build/components/sidebar/sidebarInviteCodeLabel/index.js +38 -0
  233. package/build/components/toTopBtn/index.d.ts +5 -0
  234. package/build/components/toTopBtn/index.js +95 -0
  235. package/build/dto/AssetEntity/index.d.ts +63 -0
  236. package/build/dto/AssetEntity/index.js +223 -0
  237. package/build/dto/AssetEntity/interface.d.ts +39 -0
  238. package/build/dto/AssetEntity/interface.js +2 -0
  239. package/build/dto/AssetEntity/views/AssetAudio/index.d.ts +9 -0
  240. package/build/dto/AssetEntity/views/AssetAudio/index.js +27 -0
  241. package/build/dto/AssetEntity/views/AssetImage/index.d.ts +10 -0
  242. package/build/dto/AssetEntity/views/AssetImage/index.js +38 -0
  243. package/build/dto/AssetEntity/views/AssetObject/index.d.ts +11 -0
  244. package/build/dto/AssetEntity/views/AssetObject/index.js +59 -0
  245. package/build/dto/AssetEntity/views/AssetOther/index.d.ts +11 -0
  246. package/build/dto/AssetEntity/views/AssetOther/index.js +43 -0
  247. package/build/dto/AssetEntity/views/AssetScreenshot/index.d.ts +10 -0
  248. package/build/dto/AssetEntity/views/AssetScreenshot/index.js +38 -0
  249. package/build/dto/AssetEntity/views/AssetVideo/index.d.ts +9 -0
  250. package/build/dto/AssetEntity/views/AssetVideo/index.js +27 -0
  251. package/build/dto/AssetEntity/views/index.d.ts +6 -0
  252. package/build/dto/AssetEntity/views/index.js +16 -0
  253. package/build/dto/Collection/CollectionCreationEntity/index.d.ts +45 -0
  254. package/build/dto/Collection/CollectionCreationEntity/index.js +173 -0
  255. package/build/dto/Collection/CollectionCreationEntity/interface.d.ts +24 -0
  256. package/build/dto/Collection/CollectionCreationEntity/interface.js +2 -0
  257. package/build/dto/Collection/CollectionEntity/index.d.ts +32 -0
  258. package/build/dto/Collection/CollectionEntity/index.js +82 -0
  259. package/build/dto/Collection/CollectionEntity/interface.d.ts +16 -0
  260. package/build/dto/Collection/CollectionEntity/interface.js +2 -0
  261. package/build/dto/CreationEntity/index.d.ts +49 -0
  262. package/build/dto/CreationEntity/index.js +178 -0
  263. package/build/dto/CreationEntity/interface.d.ts +30 -0
  264. package/build/dto/CreationEntity/interface.js +2 -0
  265. package/build/dto/GalleryEntityV2/index.d.ts +32 -0
  266. package/build/dto/GalleryEntityV2/index.js +82 -0
  267. package/build/dto/GalleryEntityV2/interface.d.ts +16 -0
  268. package/build/dto/GalleryEntityV2/interface.js +2 -0
  269. package/build/dto/Theme/interface.d.ts +2 -0
  270. package/build/dto/Theme/interface.js +5 -0
  271. package/build/dto/common/ItemType/data.d.ts +3 -0
  272. package/build/dto/common/ItemType/data.js +36 -0
  273. package/build/dto/common/ItemType/index.d.ts +45 -0
  274. package/build/dto/common/ItemType/index.js +42 -0
  275. package/build/dto/common/ItemViews/CreationAudio/index.d.ts +9 -0
  276. package/build/dto/common/ItemViews/CreationAudio/index.js +27 -0
  277. package/build/dto/common/ItemViews/CreationImage/index.d.ts +10 -0
  278. package/build/dto/common/ItemViews/CreationImage/index.js +38 -0
  279. package/build/dto/common/ItemViews/CreationObject/index.d.ts +8 -0
  280. package/build/dto/common/ItemViews/CreationObject/index.js +30 -0
  281. package/build/dto/common/ItemViews/CreationOther/index.d.ts +9 -0
  282. package/build/dto/common/ItemViews/CreationOther/index.js +27 -0
  283. package/build/dto/common/ItemViews/CreationVideo/index.d.ts +9 -0
  284. package/build/dto/common/ItemViews/CreationVideo/index.js +27 -0
  285. package/build/dto/common/Media/Audio/index.d.ts +13 -0
  286. package/build/dto/common/Media/Audio/index.js +37 -0
  287. package/build/dto/common/Media/Image/index.d.ts +13 -0
  288. package/build/dto/common/Media/Image/index.js +45 -0
  289. package/build/dto/common/Media/Object/index.d.ts +13 -0
  290. package/build/dto/common/Media/Object/index.js +46 -0
  291. package/build/dto/common/Media/Other/index.d.ts +13 -0
  292. package/build/dto/common/Media/Other/index.js +65 -0
  293. package/build/dto/common/Media/Screenshot/index.d.ts +13 -0
  294. package/build/dto/common/Media/Screenshot/index.js +45 -0
  295. package/build/dto/common/Media/Urls/index.d.ts +31 -0
  296. package/build/dto/common/Media/Urls/index.js +124 -0
  297. package/build/dto/common/Media/Video/index.d.ts +13 -0
  298. package/build/dto/common/Media/Video/index.js +37 -0
  299. package/build/dto/common/Media/index.d.ts +26 -0
  300. package/build/dto/common/Media/index.js +45 -0
  301. package/build/dto/common/Media/interface.d.ts +28 -0
  302. package/build/dto/common/Media/interface.js +2 -0
  303. package/build/entities/user/type.d.ts +5 -0
  304. package/build/entities/user/type.js +2 -0
  305. package/build/fonts/FontsInitializeLayout.d.ts +6 -0
  306. package/build/fonts/FontsInitializeLayout.js +160 -0
  307. package/build/fonts/vars.d.ts +1 -0
  308. package/build/fonts/vars.js +6 -0
  309. package/build/hooks/apollo/index.d.ts +2 -0
  310. package/build/hooks/apollo/index.js +13 -0
  311. package/build/hooks/audio/useMultiAudio/index.d.ts +2 -0
  312. package/build/hooks/audio/useMultiAudio/index.js +47 -0
  313. package/build/hooks/extension/useExtension/index.d.ts +7 -0
  314. package/build/hooks/extension/useExtension/index.js +32 -0
  315. package/build/hooks/favorites/useGetFavoriteGallaryCreations/index.d.ts +23 -0
  316. package/build/hooks/favorites/useGetFavoriteGallaryCreations/index.js +132 -0
  317. package/build/hooks/favorites/useGetUserFevoritesCreations/index.d.ts +24 -0
  318. package/build/hooks/favorites/useGetUserFevoritesCreations/index.js +188 -0
  319. package/build/hooks/galleries/useGetUserGalleriesCreations/index.d.ts +24 -0
  320. package/build/hooks/galleries/useGetUserGalleriesCreations/index.js +177 -0
  321. package/build/hooks/likes/dynamic/useFindCollectionsAndLikes.d.ts +29 -0
  322. package/build/hooks/likes/dynamic/useFindCollectionsAndLikes.js +150 -0
  323. package/build/hooks/likes/dynamic/useFindCreationsAndLikes.d.ts +15 -0
  324. package/build/hooks/likes/dynamic/useFindCreationsAndLikes.js +125 -0
  325. package/build/hooks/likes/dynamic/useGetCollectionInfoAndLikes.d.ts +14 -0
  326. package/build/hooks/likes/dynamic/useGetCollectionInfoAndLikes.js +135 -0
  327. package/build/hooks/likes/dynamic/useGetCreationsAndLikes.d.ts +18 -0
  328. package/build/hooks/likes/dynamic/useGetCreationsAndLikes.js +139 -0
  329. package/build/hooks/likes/dynamic/useGetCreationsAndLikesByType.d.ts +16 -0
  330. package/build/hooks/likes/dynamic/useGetCreationsAndLikesByType.js +151 -0
  331. package/build/hooks/likes/dynamic/useGetMixedLikesFavoriteList.d.ts +19 -0
  332. package/build/hooks/likes/dynamic/useGetMixedLikesFavoriteList.js +49 -0
  333. package/build/hooks/likes/dynamic/useGetTableLikes.d.ts +15 -0
  334. package/build/hooks/likes/dynamic/useGetTableLikes.js +117 -0
  335. package/build/hooks/likes/index.d.ts +19 -0
  336. package/build/hooks/likes/index.js +113 -0
  337. package/build/hooks/likes/useGetLikesAsset.d.ts +20 -0
  338. package/build/hooks/likes/useGetLikesAsset.js +97 -0
  339. package/build/index.d.ts +0 -0
  340. package/build/modules/gallery/api/useGetAssetsAndCollectionForFavorite.d.ts +19 -0
  341. package/build/modules/gallery/api/useGetAssetsAndCollectionForFavorite.js +221 -0
  342. package/build/modules/gallery/api/useGetFavoriteGallery.d.ts +6 -0
  343. package/build/modules/gallery/api/useGetFavoriteGallery.js +40 -0
  344. package/build/modules/gallery/store.d.ts +26 -0
  345. package/build/modules/gallery/store.js +101 -0
  346. package/build/modules/gallery/ui/AllResults.d.ts +3 -0
  347. package/build/modules/gallery/ui/AllResults.js +12 -0
  348. package/build/modules/gallery/ui/Description.d.ts +4 -0
  349. package/build/modules/gallery/ui/Description.js +101 -0
  350. package/build/modules/gallery/ui/EditGallery.d.ts +9 -0
  351. package/build/modules/gallery/ui/EditGallery.js +51 -0
  352. package/build/modules/gallery/ui/GalleryDeleteIcon.d.ts +4 -0
  353. package/build/modules/gallery/ui/GalleryDeleteIcon.js +28 -0
  354. package/build/modules/gallery/ui/PlaceholderItemsGallery.d.ts +1 -0
  355. package/build/modules/gallery/ui/PlaceholderItemsGallery.js +71 -0
  356. package/build/modules/gallery/ui/STopSections.d.ts +2 -0
  357. package/build/modules/gallery/ui/STopSections.js +31 -0
  358. package/build/modules/gallery/ui/chooseGalleryItems/chooseGalleryItem/index.d.ts +7 -0
  359. package/build/modules/gallery/ui/chooseGalleryItems/chooseGalleryItem/index.js +92 -0
  360. package/build/modules/gallery/ui/chooseGalleryItems/index.d.ts +15 -0
  361. package/build/modules/gallery/ui/chooseGalleryItems/index.js +161 -0
  362. package/build/modules/gallery/ui/createGalleryForm/index.d.ts +13 -0
  363. package/build/modules/gallery/ui/createGalleryForm/index.js +140 -0
  364. package/build/modules/gallery/ui/editGalleryForm/index.d.ts +8 -0
  365. package/build/modules/gallery/ui/editGalleryForm/index.js +192 -0
  366. package/build/modules/gallery/ui/itemsPreview/index.d.ts +20 -0
  367. package/build/modules/gallery/ui/itemsPreview/index.js +279 -0
  368. package/build/modules/gallery/useToGalleryAsset.d.ts +18 -0
  369. package/build/modules/gallery/useToGalleryAsset.js +88 -0
  370. package/build/modules/notifications/CreatorNotifications.d.ts +1 -0
  371. package/build/modules/notifications/CreatorNotifications.js +41 -0
  372. package/build/modules/notifications/index.d.ts +22 -0
  373. package/build/modules/notifications/index.js +6 -0
  374. package/build/modules/opportunity/OpportunityCard.d.ts +5 -0
  375. package/build/modules/opportunity/OpportunityCard.js +235 -0
  376. package/build/modules/opportunity/OpportunityDropDown.d.ts +5 -0
  377. package/build/modules/opportunity/OpportunityDropDown.js +42 -0
  378. package/build/modules/opportunity/ShareIcon.d.ts +1 -0
  379. package/build/modules/opportunity/ShareIcon.js +6 -0
  380. package/build/modules/opportunity/encodeQuery.d.ts +14 -0
  381. package/build/modules/opportunity/encodeQuery.js +31 -0
  382. package/build/modules/opportunity/popup/CopyIcon.d.ts +8 -0
  383. package/build/modules/opportunity/popup/CopyIcon.js +7 -0
  384. package/build/modules/opportunity/popup/FacebookIcon.d.ts +8 -0
  385. package/build/modules/opportunity/popup/FacebookIcon.js +7 -0
  386. package/build/modules/opportunity/popup/LinkedInIcon.d.ts +8 -0
  387. package/build/modules/opportunity/popup/LinkedInIcon.js +7 -0
  388. package/build/modules/opportunity/popup/LogoXIcon.d.ts +8 -0
  389. package/build/modules/opportunity/popup/LogoXIcon.js +7 -0
  390. package/build/modules/opportunity/popup/OpportunityMenu.d.ts +8 -0
  391. package/build/modules/opportunity/popup/OpportunityMenu.js +201 -0
  392. package/build/modules/opportunity/type.d.ts +2 -0
  393. package/build/modules/opportunity/type.js +2 -0
  394. package/build/modules/sessionScroll/globalTabs.d.ts +12 -0
  395. package/build/modules/sessionScroll/globalTabs.js +50 -0
  396. package/build/modules/sessionScroll/index.d.ts +14 -0
  397. package/build/modules/sessionScroll/index.js +61 -0
  398. package/build/modules/sessionScroll/type.d.ts +7 -0
  399. package/build/modules/sessionScroll/type.js +2 -0
  400. package/build/modules/sessionScroll/useVirtuosoInitialScroll.d.ts +12 -0
  401. package/build/modules/sessionScroll/useVirtuosoInitialScroll.js +59 -0
  402. package/build/modules/user/auth/useAuthVerification.d.ts +1 -0
  403. package/build/modules/user/auth/useAuthVerification.js +74 -0
  404. package/build/modules/user/auth/useSignIn.d.ts +2 -0
  405. package/build/modules/user/auth/useSignIn.js +23 -0
  406. package/build/modules/user/auth/useSignOut.d.ts +1 -0
  407. package/build/modules/user/auth/useSignOut.js +37 -0
  408. package/build/modules/user/profileData/profileDataInitialization.d.ts +1 -0
  409. package/build/modules/user/profileData/profileDataInitialization.js +59 -0
  410. package/build/modules/user/store.d.ts +33 -0
  411. package/build/modules/user/store.js +73 -0
  412. package/build/modules/virtuoso/VirtuosoPageBuilder.d.ts +19 -0
  413. package/build/modules/virtuoso/VirtuosoPageBuilder.js +135 -0
  414. package/build/modules/virtuoso/VirtuosoToTopBtn.d.ts +9 -0
  415. package/build/modules/virtuoso/VirtuosoToTopBtn.js +38 -0
  416. package/build/modules/virtuoso/types.d.ts +7 -0
  417. package/build/modules/virtuoso/types.js +2 -0
  418. package/build/modules/virtuoso/useSubscribeVirtuosoScrollToHeader.d.ts +3 -0
  419. package/build/modules/virtuoso/useSubscribeVirtuosoScrollToHeader.js +27 -0
  420. package/build/modules/virtuoso/useVirtuosoData.d.ts +12 -0
  421. package/build/modules/virtuoso/useVirtuosoData.js +49 -0
  422. package/build/store/env/index.d.ts +22 -0
  423. package/build/store/env/index.js +37 -0
  424. package/build/store/index.d.ts +10 -0
  425. package/build/store/index.js +12 -0
  426. package/build/store/media/index.d.ts +2 -0
  427. package/build/store/media/index.js +59 -0
  428. package/build/store/media/types.d.ts +11 -0
  429. package/build/store/media/types.js +2 -0
  430. package/build/store/ui/index.d.ts +2 -0
  431. package/build/store/ui/index.js +116 -0
  432. package/build/store/ui/types.d.ts +34 -0
  433. package/build/store/ui/types.js +2 -0
  434. package/build/store/ui/utils.d.ts +7 -0
  435. package/build/store/ui/utils.js +25 -0
  436. package/build/styles/ScreenWidth.d.ts +22 -0
  437. package/build/styles/ScreenWidth.js +26 -0
  438. package/build/styles/animations/index.d.ts +2 -0
  439. package/build/styles/animations/index.js +20 -0
  440. package/build/styles/colors/index.d.ts +1 -0
  441. package/build/styles/colors/index.js +38 -0
  442. package/build/styles/globalStyles.d.ts +3 -0
  443. package/build/styles/globalStyles.js +86 -0
  444. package/build/styles/mixins/boxShadow.d.ts +2 -0
  445. package/build/styles/mixins/boxShadow.js +13 -0
  446. package/build/styles/mixins/boxTransform.d.ts +2 -0
  447. package/build/styles/mixins/boxTransform.js +12 -0
  448. package/build/styles/mixins/z-indexes.d.ts +10 -0
  449. package/build/styles/mixins/z-indexes.js +13 -0
  450. package/build/styles/typography/index.d.ts +1 -0
  451. package/build/styles/typography/index.js +13 -0
  452. package/build/system/ActiveLink/ActiveLink.test.d.ts +1 -0
  453. package/build/system/ActiveLink/ActiveLink.test.js +48 -0
  454. package/build/system/ActiveLink/index.d.ts +9 -0
  455. package/build/system/ActiveLink/index.js +49 -0
  456. package/build/system/Alert/index.d.ts +2 -0
  457. package/build/system/Alert/index.js +21 -0
  458. package/build/system/Alert/type.d.ts +2 -0
  459. package/build/system/Alert/type.js +8 -0
  460. package/build/system/BasicOverlay/index.d.ts +2 -0
  461. package/build/system/BasicOverlay/index.js +27 -0
  462. package/build/system/Buttons/IconButton/index.d.ts +2 -0
  463. package/build/system/Buttons/IconButton/index.js +7 -0
  464. package/build/system/Buttons/IconWithButton/index.d.ts +2 -0
  465. package/build/system/Buttons/IconWithButton/index.js +7 -0
  466. package/build/system/Buttons/IconWithButton/themes.d.ts +0 -0
  467. package/build/system/Buttons/IconWithButton/themes.js +1 -0
  468. package/build/system/Buttons/MainButton/index.d.ts +2 -0
  469. package/build/system/Buttons/MainButton/index.js +7 -0
  470. package/build/system/Buttons/MainButton/themes.d.ts +0 -0
  471. package/build/system/Buttons/MainButton/themes.js +1 -0
  472. package/build/system/Buttons/SecondaryButton/index.d.ts +2 -0
  473. package/build/system/Buttons/SecondaryButton/index.js +7 -0
  474. package/build/system/Cards/CardCheckbox/CardCheckbox.test.d.ts +1 -0
  475. package/build/system/Cards/CardCheckbox/CardCheckbox.test.js +35 -0
  476. package/build/system/Cards/CardCheckbox/index.d.ts +5 -0
  477. package/build/system/Cards/CardCheckbox/index.js +92 -0
  478. package/build/system/Cards/CardContent/CardCategory/CardCategory.test.d.ts +1 -0
  479. package/build/system/Cards/CardContent/CardCategory/CardCategory.test.js +28 -0
  480. package/build/system/Cards/CardContent/CardCategory/index.d.ts +5 -0
  481. package/build/system/Cards/CardContent/CardCategory/index.js +54 -0
  482. package/build/system/Cards/CardContent/CardContent.test.d.ts +1 -0
  483. package/build/system/Cards/CardContent/CardContent.test.js +103 -0
  484. package/build/system/Cards/CardContent/CardLikes/CardLikes.test.d.ts +1 -0
  485. package/build/system/Cards/CardContent/CardLikes/CardLikes.test.js +37 -0
  486. package/build/system/Cards/CardContent/CardLikes/index.d.ts +5 -0
  487. package/build/system/Cards/CardContent/CardLikes/index.js +29 -0
  488. package/build/system/Cards/CardContent/CardShowMore/CardShowMore.test.d.ts +1 -0
  489. package/build/system/Cards/CardContent/CardShowMore/CardShowMore.test.js +46 -0
  490. package/build/system/Cards/CardContent/CardShowMore/index.d.ts +7 -0
  491. package/build/system/Cards/CardContent/CardShowMore/index.js +121 -0
  492. package/build/system/Cards/CardContent/index.d.ts +17 -0
  493. package/build/system/Cards/CardContent/index.js +97 -0
  494. package/build/system/Cards/CardMedia/CardAudio/CardAudio.test.d.ts +1 -0
  495. package/build/system/Cards/CardMedia/CardAudio/CardAudio.test.js +92 -0
  496. package/build/system/Cards/CardMedia/CardAudio/index.d.ts +7 -0
  497. package/build/system/Cards/CardMedia/CardAudio/index.js +66 -0
  498. package/build/system/Cards/CardMedia/CardImage/CardImage.test.d.ts +1 -0
  499. package/build/system/Cards/CardMedia/CardImage/CardImage.test.js +34 -0
  500. package/build/system/Cards/CardMedia/CardImage/index.d.ts +6 -0
  501. package/build/system/Cards/CardMedia/CardImage/index.js +19 -0
  502. package/build/system/Cards/CardMedia/CardVideo/index.d.ts +6 -0
  503. package/build/system/Cards/CardMedia/CardVideo/index.js +54 -0
  504. package/build/system/Cards/CardRank/index.d.ts +4 -0
  505. package/build/system/Cards/CardRank/index.js +82 -0
  506. package/build/system/Cards/CreationCard/CardHead.d.ts +13 -0
  507. package/build/system/Cards/CreationCard/CardHead.js +76 -0
  508. package/build/system/Cards/CreationCard/index.d.ts +28 -0
  509. package/build/system/Cards/CreationCard/index.js +124 -0
  510. package/build/system/Cards/MultiMediaCard/index.d.ts +9 -0
  511. package/build/system/Cards/MultiMediaCard/index.js +130 -0
  512. package/build/system/Cards/Styles/Content.d.ts +3 -0
  513. package/build/system/Cards/Styles/Content.js +40 -0
  514. package/build/system/Cards/Styles/Head.d.ts +3 -0
  515. package/build/system/Cards/Styles/Head.js +45 -0
  516. package/build/system/Cards/Styles/Headicons.d.ts +5 -0
  517. package/build/system/Cards/Styles/Headicons.js +121 -0
  518. package/build/system/Cards/Styles/Image.d.ts +5 -0
  519. package/build/system/Cards/Styles/Image.js +24 -0
  520. package/build/system/Cards/Styles/Likes.d.ts +5 -0
  521. package/build/system/Cards/Styles/Likes.js +53 -0
  522. package/build/system/Cards/Styles/MultiHead.d.ts +3 -0
  523. package/build/system/Cards/Styles/MultiHead.js +44 -0
  524. package/build/system/Cards/Styles/Video.d.ts +3 -0
  525. package/build/system/Cards/Styles/Video.js +15 -0
  526. package/build/system/CardsHolderWithSkeleton/CardsHolder/CardsError/index.d.ts +4 -0
  527. package/build/system/CardsHolderWithSkeleton/CardsHolder/CardsError/index.js +48 -0
  528. package/build/system/CardsHolderWithSkeleton/CardsHolder/CardsNoResults/index.d.ts +4 -0
  529. package/build/system/CardsHolderWithSkeleton/CardsHolder/CardsNoResults/index.js +34 -0
  530. package/build/system/CardsHolderWithSkeleton/CardsHolder/CardsSkeleton/index.d.ts +5 -0
  531. package/build/system/CardsHolderWithSkeleton/CardsHolder/CardsSkeleton/index.js +57 -0
  532. package/build/system/CardsHolderWithSkeleton/CardsHolderLoader/index.d.ts +2 -0
  533. package/build/system/CardsHolderWithSkeleton/CardsHolderLoader/index.js +42 -0
  534. package/build/system/DropDown/DropDown.test.d.ts +1 -0
  535. package/build/system/DropDown/DropDown.test.js +38 -0
  536. package/build/system/DropDown/index.d.ts +8 -0
  537. package/build/system/DropDown/index.js +65 -0
  538. package/build/system/Filters/helpers.d.ts +6 -0
  539. package/build/system/Filters/helpers.js +8 -0
  540. package/build/system/Filters/type.d.ts +16 -0
  541. package/build/system/Filters/type.js +11 -0
  542. package/build/system/Flex/index.d.ts +0 -0
  543. package/build/system/Flex/index.js +1 -0
  544. package/build/system/Forms/Checkbox/Checkbox.test.d.ts +1 -0
  545. package/build/system/Forms/Checkbox/Checkbox.test.js +76 -0
  546. package/build/system/Forms/Checkbox/index.d.ts +22 -0
  547. package/build/system/Forms/Checkbox/index.js +64 -0
  548. package/build/system/Forms/DatePicker/index.d.ts +16 -0
  549. package/build/system/Forms/DatePicker/index.js +137 -0
  550. package/build/system/Forms/ErrorLabel/ErrorLabel.test.d.ts +1 -0
  551. package/build/system/Forms/ErrorLabel/ErrorLabel.test.js +28 -0
  552. package/build/system/Forms/ErrorLabel/index.d.ts +7 -0
  553. package/build/system/Forms/ErrorLabel/index.js +25 -0
  554. package/build/system/Forms/Input/Input.test.d.ts +1 -0
  555. package/build/system/Forms/Input/Input.test.js +54 -0
  556. package/build/system/Forms/Input/index.d.ts +16 -0
  557. package/build/system/Forms/Input/index.js +72 -0
  558. package/build/system/Forms/Input/type.d.ts +5 -0
  559. package/build/system/Forms/Input/type.js +2 -0
  560. package/build/system/Forms/Messages/index.d.ts +67 -0
  561. package/build/system/Forms/Messages/index.js +69 -0
  562. package/build/system/Forms/RadioInput/index.d.ts +12 -0
  563. package/build/system/Forms/RadioInput/index.js +73 -0
  564. package/build/system/Forms/Selects/DesktopSelect/index.d.ts +12 -0
  565. package/build/system/Forms/Selects/DesktopSelect/index.js +184 -0
  566. package/build/system/Forms/Selects/DesktopSelect/type.d.ts +5 -0
  567. package/build/system/Forms/Selects/DesktopSelect/type.js +2 -0
  568. package/build/system/Forms/Selects/MobileSelect/index.d.ts +14 -0
  569. package/build/system/Forms/Selects/MobileSelect/index.js +31 -0
  570. package/build/system/Forms/TextArea/TextArea.test.d.ts +1 -0
  571. package/build/system/Forms/TextArea/TextArea.test.js +54 -0
  572. package/build/system/Forms/TextArea/index.d.ts +14 -0
  573. package/build/system/Forms/TextArea/index.js +70 -0
  574. package/build/system/Forms/index.d.ts +5 -0
  575. package/build/system/Forms/index.js +14 -0
  576. package/build/system/Img/ExternalImage/index.d.ts +6 -0
  577. package/build/system/Img/ExternalImage/index.js +22 -0
  578. package/build/system/Img/ImageInterceptor/ImageInterceptor.test.d.ts +1 -0
  579. package/build/system/Img/ImageInterceptor/ImageInterceptor.test.js +45 -0
  580. package/build/system/Img/ImageInterceptor/index.d.ts +17 -0
  581. package/build/system/Img/ImageInterceptor/index.js +60 -0
  582. package/build/system/Img/Profilepic/index.d.ts +10 -0
  583. package/build/system/Img/Profilepic/index.js +34 -0
  584. package/build/system/Img/Userpic/UserPic.test.d.ts +2 -0
  585. package/build/system/Img/Userpic/UserPic.test.js +65 -0
  586. package/build/system/Img/Userpic/index.d.ts +9 -0
  587. package/build/system/Img/Userpic/index.js +84 -0
  588. package/build/system/Img/index.d.ts +3 -0
  589. package/build/system/Img/index.js +19 -0
  590. package/build/system/Labels/ExperienceLabel/ExperienceLabel.test.d.ts +1 -0
  591. package/build/system/Labels/ExperienceLabel/ExperienceLabel.test.js +52 -0
  592. package/build/system/Labels/ExperienceLabel/index.d.ts +6 -0
  593. package/build/system/Labels/ExperienceLabel/index.js +65 -0
  594. package/build/system/Labels/InviteLabel/InviteLabel.test.d.ts +1 -0
  595. package/build/system/Labels/InviteLabel/InviteLabel.test.js +44 -0
  596. package/build/system/Labels/InviteLabel/index.d.ts +6 -0
  597. package/build/system/Labels/InviteLabel/index.js +44 -0
  598. package/build/system/Labels/SkeletonLabel/index.d.ts +2 -0
  599. package/build/system/Labels/SkeletonLabel/index.js +7 -0
  600. package/build/system/Modals/Modal/Modal.test.d.ts +1 -0
  601. package/build/system/Modals/Modal/Modal.test.js +36 -0
  602. package/build/system/Modals/Modal/index.d.ts +2 -0
  603. package/build/system/Modals/Modal/index.js +82 -0
  604. package/build/system/Modals/ModalSidebar/CreatorModalSidebarPortal.d.ts +1 -0
  605. package/build/system/Modals/ModalSidebar/CreatorModalSidebarPortal.js +47 -0
  606. package/build/system/Modals/ModalSidebar/ModalSidebar.test.d.ts +1 -0
  607. package/build/system/Modals/ModalSidebar/ModalSidebar.test.js +35 -0
  608. package/build/system/Modals/ModalSidebar/ModalSidebarPortal.d.ts +5 -0
  609. package/build/system/Modals/ModalSidebar/ModalSidebarPortal.js +10 -0
  610. package/build/system/Modals/ModalSidebar/index.d.ts +4 -0
  611. package/build/system/Modals/ModalSidebar/index.js +78 -0
  612. package/build/system/Overlay/Overlay.test.d.ts +1 -0
  613. package/build/system/Overlay/Overlay.test.js +44 -0
  614. package/build/system/Overlay/index.d.ts +2 -0
  615. package/build/system/Overlay/index.js +41 -0
  616. package/build/system/PageLoader/index.d.ts +2 -0
  617. package/build/system/PageLoader/index.js +7 -0
  618. package/build/system/Palete/index.d.ts +2 -0
  619. package/build/system/Palete/index.js +7 -0
  620. package/build/system/ShareIconResize.d.ts +1 -0
  621. package/build/system/ShareIconResize.js +31 -0
  622. package/build/system/Tabs/TabNavLink/TabNavLink.test.d.ts +2 -0
  623. package/build/system/Tabs/TabNavLink/TabNavLink.test.js +40 -0
  624. package/build/system/Tabs/TabNavLink/index.d.ts +12 -0
  625. package/build/system/Tabs/TabNavLink/index.js +58 -0
  626. package/build/system/Tabs/TabsNav/TabsNav.test.d.ts +2 -0
  627. package/build/system/Tabs/TabsNav/TabsNav.test.js +43 -0
  628. package/build/system/Tabs/TabsNav/index.d.ts +10 -0
  629. package/build/system/Tabs/TabsNav/index.js +31 -0
  630. package/build/system/Tabs/TabsNav/type.d.ts +6 -0
  631. package/build/system/Tabs/TabsNav/type.js +2 -0
  632. package/build/system/Tabs/TabsPanel/TabsPanel.test.d.ts +2 -0
  633. package/build/system/Tabs/TabsPanel/TabsPanel.test.js +32 -0
  634. package/build/system/Tabs/TabsPanel/index.d.ts +7 -0
  635. package/build/system/Tabs/TabsPanel/index.js +17 -0
  636. package/build/system/Text/index.d.ts +0 -0
  637. package/build/system/Text/index.js +1 -0
  638. package/build/system/index.d.ts +6 -0
  639. package/build/system/index.js +22 -0
  640. package/build/system/theme.d.ts +1 -0
  641. package/build/system/theme.js +7 -0
  642. package/build/utils/3d.d.ts +5 -0
  643. package/build/utils/3d.js +44 -0
  644. package/build/utils/adaptive/check4k.d.ts +5 -0
  645. package/build/utils/adaptive/check4k.js +16 -0
  646. package/build/utils/adaptive/scale.d.ts +9 -0
  647. package/build/utils/adaptive/scale.js +18 -0
  648. package/build/utils/auth/index.d.ts +1 -0
  649. package/build/utils/auth/index.js +9 -0
  650. package/build/utils/copyBtn/index.d.ts +5 -0
  651. package/build/utils/copyBtn/index.js +46 -0
  652. package/build/utils/env/index.d.ts +1 -0
  653. package/build/utils/env/index.js +5 -0
  654. package/build/utils/extractItemIds.d.ts +2 -0
  655. package/build/utils/extractItemIds.js +13 -0
  656. package/build/utils/getDimensionsImage.d.ts +4 -0
  657. package/build/utils/getDimensionsImage.js +38 -0
  658. package/build/utils/getPageSizeAssets.d.ts +5 -0
  659. package/build/utils/getPageSizeAssets.js +17 -0
  660. package/build/utils/imageProportionsSize/index.d.ts +5 -0
  661. package/build/utils/imageProportionsSize/index.js +23 -0
  662. package/build/utils/screen/index.d.ts +18 -0
  663. package/build/utils/screen/index.js +87 -0
  664. package/build/utils/seacrhTabs.d.ts +4 -0
  665. package/build/utils/seacrhTabs.js +17 -0
  666. package/build/utils/ssrFunctions/index.d.ts +17 -0
  667. package/build/utils/ssrFunctions/index.js +33 -0
  668. package/build/utils/ui/index.d.ts +8 -0
  669. package/build/utils/ui/index.js +6 -0
  670. package/package.json +2 -2
  671. package/public/404/404.svg +8 -0
  672. package/public/500/500.svg +8 -0
  673. package/public/MobileSearchBtn/close.svg +3 -0
  674. package/public/MobileSearchBtn/search.svg +4 -0
  675. package/public/MobileSearchBtn/test/pirate.svg +9 -0
  676. package/public/MobileSearchBtn/test/squircle.svg +9 -0
  677. package/public/alerts/close.svg +5 -0
  678. package/public/alerts/errorIcon.svg +4 -0
  679. package/public/alerts/successIcon.svg +4 -0
  680. package/public/alerts/warningIcon.svg +8 -0
  681. package/public/assetPage/arrow.svg +3 -0
  682. package/public/assetPage/audioPlaceholder.svg +35 -0
  683. package/public/assetPage/details.svg +6 -0
  684. package/public/assetPage/favorite.svg +3 -0
  685. package/public/assetPage/favorite_hover.svg +3 -0
  686. package/public/assetPage/flag.svg +5 -0
  687. package/public/assetPage/fullScreen.svg +3 -0
  688. package/public/assetPage/owners.svg +4 -0
  689. package/public/assetPage/pause.svg +4 -0
  690. package/public/assetPage/play.svg +3 -0
  691. package/public/assetPage/share.svg +3 -0
  692. package/public/assetPage/share2.svg +3 -0
  693. package/public/assetPage/share2_hover.svg +3 -0
  694. package/public/assetPage/shareWithDots.svg +6 -0
  695. package/public/assetPage/shareWithDots_hover.svg +6 -0
  696. package/public/assetPage/share_hover.svg +3 -0
  697. package/public/assetPage/soundOf.svg +3 -0
  698. package/public/assetPage/soundOn.svg +3 -0
  699. package/public/banner/banner_img.svg +96 -0
  700. package/public/banner/banner_stroke.svg +3 -0
  701. package/public/button_skin/accept.svg +11 -0
  702. package/public/button_skin/decline.svg +11 -0
  703. package/public/calendar.svg +3 -0
  704. package/public/cards/addToFavListIcon.svg +5 -0
  705. package/public/cards/addToGalleryIcon.svg +3 -0
  706. package/public/cards/heart.svg +3 -0
  707. package/public/cardsHolderLoader/loader.svg +4 -0
  708. package/public/checkbox-on.svg +4 -0
  709. package/public/checkboxArrow.svg +3 -0
  710. package/public/close.svg +3 -0
  711. package/public/close20.svg +4 -0
  712. package/public/collectionPage/export.svg +3 -0
  713. package/public/copied.svg +4 -0
  714. package/public/copy-icon-new.svg +4 -0
  715. package/public/creation/card/moreBtn.svg +6 -0
  716. package/public/creation/card/moreBtnVertical.svg +5 -0
  717. package/public/creation/card/moreBtn_hover.svg +5 -0
  718. package/public/defaultUserpics/0.svg +24 -0
  719. package/public/defaultUserpics/1.svg +24 -0
  720. package/public/defaultUserpics/10.svg +24 -0
  721. package/public/defaultUserpics/11.svg +24 -0
  722. package/public/defaultUserpics/12.svg +24 -0
  723. package/public/defaultUserpics/13.svg +24 -0
  724. package/public/defaultUserpics/14.svg +24 -0
  725. package/public/defaultUserpics/15.svg +24 -0
  726. package/public/defaultUserpics/16.svg +24 -0
  727. package/public/defaultUserpics/17.svg +24 -0
  728. package/public/defaultUserpics/18.svg +24 -0
  729. package/public/defaultUserpics/19.svg +24 -0
  730. package/public/defaultUserpics/2.svg +24 -0
  731. package/public/defaultUserpics/20.svg +24 -0
  732. package/public/defaultUserpics/3.svg +24 -0
  733. package/public/defaultUserpics/4.svg +24 -0
  734. package/public/defaultUserpics/5.svg +24 -0
  735. package/public/defaultUserpics/6.svg +24 -0
  736. package/public/defaultUserpics/7.svg +24 -0
  737. package/public/defaultUserpics/8.svg +24 -0
  738. package/public/defaultUserpics/9.svg +24 -0
  739. package/public/defaultUserpics/defaultUserpic.svg +31 -0
  740. package/public/dropDown/arrow_down.svg +3 -0
  741. package/public/dropdown-arrow-down.svg +3 -0
  742. package/public/dropdown-arrow-up.svg +3 -0
  743. package/public/error/refresh.svg +4 -0
  744. package/public/favicon.ico +0 -0
  745. package/public/favicon.png +0 -0
  746. package/public/follower.svg +4 -0
  747. package/public/fonts/dm-sans-v15-latin-500.woff2 +0 -0
  748. package/public/fonts/dm-sans-v15-latin-500italic.woff2 +0 -0
  749. package/public/fonts/dm-sans-v15-latin-600.woff2 +0 -0
  750. package/public/fonts/dm-sans-v15-latin-600italic.woff2 +0 -0
  751. package/public/fonts/dm-sans-v15-latin-700.woff2 +0 -0
  752. package/public/fonts/dm-sans-v15-latin-700italic.woff2 +0 -0
  753. package/public/fonts/dm-sans-v15-latin-italic.woff2 +0 -0
  754. package/public/fonts/dm-sans-v15-latin-regular.woff2 +0 -0
  755. package/public/fonts/poppins-v21-latin-200.woff2 +0 -0
  756. package/public/fonts/poppins-v21-latin-300.woff2 +0 -0
  757. package/public/fonts/poppins-v21-latin-500.woff2 +0 -0
  758. package/public/fonts/poppins-v21-latin-600.woff2 +0 -0
  759. package/public/fonts/poppins-v21-latin-700.woff2 +0 -0
  760. package/public/fonts/poppins-v21-latin-800.woff2 +0 -0
  761. package/public/fonts/poppins-v21-latin-regular.woff2 +0 -0
  762. package/public/forms/checkbox/checked.svg +4 -0
  763. package/public/formsBg/get_early_access_bg.jpg +0 -0
  764. package/public/gallery/defaultImage.svg +3 -0
  765. package/public/gallery/delete.svg +4 -0
  766. package/public/header/mobile_menu_icons/arrows/arrow_down.svg +3 -0
  767. package/public/header/mobile_menu_icons/arrows/arrow_up.svg +3 -0
  768. package/public/header/mobile_menu_icons/campaigns.svg +6 -0
  769. package/public/header/mobile_menu_icons/dropdown/add_new_campaign.svg +10 -0
  770. package/public/header/mobile_menu_icons/dropdown/my_galleries.svg +12 -0
  771. package/public/header/mobile_menu_icons/dropdown/my_profile.svg +5 -0
  772. package/public/header/mobile_menu_icons/dropdown/my_wallets.svg +5 -0
  773. package/public/header/mobile_menu_icons/dropdown/notifications.svg +6 -0
  774. package/public/header/mobile_menu_icons/dropdown/top_campaigns.svg +7 -0
  775. package/public/header/mobile_menu_icons/dropdown/top_creations.svg +6 -0
  776. package/public/header/mobile_menu_icons/dropdown/top_creators.svg +10 -0
  777. package/public/header/mobile_menu_icons/dropdown/top_galleries.svg +13 -0
  778. package/public/header/mobile_menu_icons/dropdown/top_/321/201ollectors.svg +10 -0
  779. package/public/header/mobile_menu_icons/experiences.svg +11 -0
  780. package/public/header/mobile_menu_icons/settings.svg +3 -0
  781. package/public/header/mobile_menu_icons/sign_out.svg +4 -0
  782. package/public/header/mobile_menu_icons/submit_nft.svg +16 -0
  783. package/public/header/mobile_menu_icons/top.svg +7 -0
  784. package/public/header/mobile_toggle/close.svg +3 -0
  785. package/public/header/mobile_toggle/regular.svg +3 -0
  786. package/public/iconButton/share.svg +6 -0
  787. package/public/iconButton/trash.svg +5 -0
  788. package/public/iconButton/trash_open.svg +6 -0
  789. package/public/like-icon-active.svg +4 -0
  790. package/public/like-icon.svg +3 -0
  791. package/public/logOut/logOutBtn.svg +5 -0
  792. package/public/logo/main_logo.svg +214 -0
  793. package/public/logo/main_logo_dark.svg +49 -0
  794. package/public/logo/mobile_logo.svg +210 -0
  795. package/public/logo/mobile_logo_dark.svg +45 -0
  796. package/public/ludo-logo-small.svg +5 -0
  797. package/public/ludo-logo-square.svg +9 -0
  798. package/public/modal/close.svg +3 -0
  799. package/public/noContent/noContent.svg +9 -0
  800. package/public/noContent/noContentAudio.svg +34 -0
  801. package/public/noContent/noContentObject.svg +35 -0
  802. package/public/no_image placeholder.svg +9 -0
  803. package/public/no_media_placeholder.svg +222 -0
  804. package/public/report.svg +6 -0
  805. package/public/rewardsPage/XP_logo.svg +22 -0
  806. package/public/rewardsPage/arrow_up_light.svg +3 -0
  807. package/public/rewardsPage/banner_rewards.svg +9 -0
  808. package/public/rewardsPage/banner_rewards_mobile.svg +9 -0
  809. package/public/rewardsPage/banner_rewards_tablet.svg +9 -0
  810. package/public/rewardsPage/banner_seasons.svg +9 -0
  811. package/public/rewardsPage/defaultUserPic.svg +9 -0
  812. package/public/rewardsPage/ludo_logo_white.svg +49 -0
  813. package/public/search/arrow_up.svg +3 -0
  814. package/public/search/back.svg +3 -0
  815. package/public/search/close.svg +3 -0
  816. package/public/search/no_found.svg +4 -0
  817. package/public/search/search.svg +4 -0
  818. package/public/search-icon.svg +4 -0
  819. package/public/selects/arrow_down.svg +3 -0
  820. package/public/services/opensea.svg +5 -0
  821. package/public/services/other.svg +8 -0
  822. package/public/services/rarible.svg +4 -0
  823. package/public/settings_page/back.svg +3 -0
  824. package/public/settings_page/burger_menu.svg +5 -0
  825. package/public/settings_page/notifications.svg +5 -0
  826. package/public/settings_page/notifications_active.svg +5 -0
  827. package/public/settings_page/privacy.svg +4 -0
  828. package/public/settings_page/privacy_active.svg +4 -0
  829. package/public/settings_page/settings.svg +5 -0
  830. package/public/settings_page/settings_active.svg +5 -0
  831. package/public/settings_page/upload.svg +4 -0
  832. package/public/share/copy-link-btn.svg +6 -0
  833. package/public/share/email-btn.svg +5 -0
  834. package/public/share/facebook-btn.svg +5 -0
  835. package/public/share/insta-btn.svg +21 -0
  836. package/public/share/reddit-btn.svg +11 -0
  837. package/public/share/telegram-btn.svg +4 -0
  838. package/public/share/twitter-btn.svg +5 -0
  839. package/public/share/whatsapp-btn.svg +6 -0
  840. package/public/share-icon.svg +7 -0
  841. package/public/showCaseIcons/heart.svg +3 -0
  842. package/public/sidebar/aboutLudo.svg +40 -0
  843. package/public/sidebar/aboutLudoDark.svg +52 -0
  844. package/public/sidebar/api.svg +3 -0
  845. package/public/sidebar/close.svg +3 -0
  846. package/public/sidebar/disconnect.svg +3 -0
  847. package/public/sidebar/explore.svg +5 -0
  848. package/public/sidebar/ludoX.svg +63 -0
  849. package/public/sidebar/my-invites.svg +4 -0
  850. package/public/sidebar/rewards.svg +4 -0
  851. package/public/sidebar/submitNft.svg +3 -0
  852. package/public/socials/facebook.svg +4 -0
  853. package/public/socials/instagram.svg +5 -0
  854. package/public/socials/twitter.svg +3 -0
  855. package/public/socials/website.svg +8 -0
  856. package/public/tabs/arrow_right.svg +3 -0
  857. package/public/tabs/arrow_right_dark.svg +3 -0
  858. package/public/tests/audio.mp3 +0 -0
  859. package/public/tests/test_1.svg +11 -0
  860. package/public/toTopBtn/toTopBtn.svg +4 -0
  861. package/public/upload-userpic.svg +11 -0
  862. package/public/userpic-placeholder.jpg +0 -0
  863. package/public/userpics/placeholder-lg-1.svg +10 -0
  864. package/public/userpics/placeholder-sm-1.svg +10 -0
  865. package/public/video/pause.svg +5 -0
  866. package/public/video/play.svg +4 -0
  867. package/public/wallets/arkane-btn.svg +5 -0
  868. package/public/wallets/bitski-btn.svg +12 -0
  869. package/public/wallets/elrond-btn.svg +36 -0
  870. package/public/wallets/elrond-icon-sm.svg +35 -0
  871. package/public/wallets/elrond.svg +4 -0
  872. package/public/wallets/ethereum-icon-sm.svg +7 -0
  873. package/public/wallets/flow-btn.svg +6 -0
  874. package/public/wallets/flow-icon-sm.svg +12 -0
  875. package/public/wallets/formatic-btn.svg +4 -0
  876. package/public/wallets/formatic-icon-sm.svg +4 -0
  877. package/public/wallets/maiar-btn.svg +17 -0
  878. package/public/wallets/maiar-icon-sm.svg +17 -0
  879. package/public/wallets/metamask-btn.svg +33 -0
  880. package/public/wallets/metamask-icon-sm.svg +32 -0
  881. package/public/wallets/phantom.svg +4 -0
  882. package/public/wallets/plus.svg +4 -0
  883. package/public/wallets/solana-btn.svg +20 -0
  884. package/public/wallets/solana-icon-sm.svg +19 -0
  885. package/public/wallets/terra-btn.svg +29 -0
  886. package/public/wallets/terra-icon-sm.svg +29 -0
  887. package/public/wallets/tezos-btn.svg +12 -0
  888. package/public/wallets/tezos-icon-sm.svg +11 -0
  889. package/public/wallets/wallet_connect.svg +4 -0
  890. package/public/wallets/walletconnect-btn.svg +3 -0
  891. package/public/wallets/walletlink-btn.svg +5 -0
  892. package/public/wallets/walletlink-icon-sm.svg +5 -0
  893. package/public/wallets/xdefi-btn.svg +6 -0
  894. package/public/wallets/xdefi-icon-sm.svg +6 -0
  895. package/public/warning.svg +3 -0
@@ -0,0 +1,3 @@
1
+ <svg width="308" height="116" viewBox="0 0 308 116" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M85.6666 30.918C122.797 26.3758 192.399 19.8459 232.946 21.1131C259.682 21.9486 307.487 27.5064 303.826 56.2407C300.081 85.6313 245.811 98.7211 217.751 103.725C106.978 123.482 46.0907 104.728 23.8794 97.331C-4.11597 88.0078 2.47442 67.4989 13.7908 56.5915C45.0716 26.4409 191.423 7.68619 256.207 3.86693" stroke="#6048FF" stroke-width="7" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_6881_50323)">
3
+ <circle cx="24" cy="24" r="24" fill="#5962F7"/>
4
+ <path d="M17.2818 22.3341L22.9579 29.8313L32.2337 17.9999" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_6881_50323">
8
+ <rect width="48" height="48" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_6881_50324)">
3
+ <circle cx="24" cy="24" r="24" fill="#ECF0FC"/>
4
+ <path d="M30.364 17.636L24 24M17.636 30.364L24 24M24 24L30.364 30.364M24 24L17.636 17.636" stroke="#696F91" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_6881_50324">
8
+ <rect width="48" height="48" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </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="M6.66668 0.916748C7.08089 0.916748 7.41668 1.25253 7.41668 1.66675V2.58341H12.5833V1.66675C12.5833 1.25253 12.9191 0.916748 13.3333 0.916748C13.7476 0.916748 14.0833 1.25253 14.0833 1.66675V2.58341C14.5018 2.58344 14.8597 2.58442 15.1558 2.60861C15.48 2.63512 15.7954 2.69316 16.097 2.84682C16.5514 3.07835 16.9216 3.44792 17.1535 3.90296C17.3072 4.20464 17.3651 4.52019 17.3916 4.84445C17.4167 5.15257 17.4167 5.52781 17.4167 5.96835V14.0317C17.4167 14.4723 17.4167 14.8475 17.3916 15.1557C17.3651 15.48 17.3072 15.7956 17.1535 16.0973C16.9216 16.5524 16.5513 16.9218 16.097 17.1533C15.7954 17.307 15.4801 17.365 15.1558 17.3915C14.8471 17.4168 14.4711 17.4168 14.0294 17.4167H5.97098C5.52927 17.4168 5.15311 17.4168 4.84426 17.3915C4.51993 17.365 4.20433 17.307 3.90268 17.1533C3.44784 16.9216 3.07838 16.5519 2.84675 16.0973C2.69306 15.7956 2.63504 15.4801 2.60854 15.1558C2.58332 14.8471 2.58333 14.4711 2.58334 14.0295V5.97053C2.58333 5.52898 2.58332 5.15301 2.60854 4.84433C2.63504 4.52003 2.69307 4.20456 2.84675 3.90296C3.07834 3.44842 3.44776 3.07861 3.90268 2.84682C4.20434 2.69311 4.51995 2.6351 4.84428 2.60861C5.14039 2.58443 5.49837 2.58344 5.91668 2.58341V1.66675C5.91668 1.25253 6.25246 0.916748 6.66668 0.916748ZM6.00017 4.08341C5.5211 4.08341 5.20679 4.084 4.96639 4.10363C4.7347 4.12256 4.63853 4.15537 4.58367 4.18333C4.41138 4.27111 4.27124 4.41127 4.18326 4.58394C4.15527 4.63886 4.12248 4.73497 4.10356 4.96648C4.08509 5.19255 4.08348 5.48405 4.08335 5.91675H15.9167C15.9165 5.48398 15.915 5.19248 15.8965 4.96636C15.8777 4.73481 15.8449 4.63877 15.8169 4.58394C15.7292 4.41177 15.5888 4.27137 15.416 4.18333C15.3611 4.15533 15.265 4.12254 15.0336 4.10363C14.7934 4.084 14.4793 4.08341 14.0002 4.08341H6.00017ZM15.9167 7.41675H4.08334V14C4.08334 14.4791 4.08393 14.7934 4.10356 15.0337C4.12248 15.2652 4.15528 15.3614 4.18326 15.4163C4.2712 15.5889 4.4113 15.729 4.58367 15.8168C4.63855 15.8448 4.73473 15.8776 4.96641 15.8965C5.2068 15.9162 5.52111 15.9167 6.00017 15.9167H14.0002C14.4793 15.9167 14.7934 15.9162 15.0336 15.8965C15.265 15.8776 15.361 15.8448 15.416 15.8168C15.5889 15.7287 15.7293 15.5884 15.8169 15.4163C15.8449 15.3615 15.8777 15.2654 15.8965 15.0338C15.9161 14.7934 15.9167 14.4792 15.9167 14V7.41675Z" fill="#B0B2C0"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 18 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.7 2.96424V18.05L10.74 14.53L17.78 18.05V2.96424C17.78 2.96424 17.78 0.449857 14.7 0.449951H6.7C3.7 0.449951 3.7 2.96424 3.7 2.96424ZM16.28 2.99058C16.2799 2.98948 16.2798 2.98827 16.2797 2.98694C16.2779 2.96695 16.2733 2.92592 16.2622 2.87142C16.2389 2.75726 16.1941 2.61831 16.1159 2.49052C16.018 2.33073 15.7463 1.94992 14.7 1.94995H6.7C5.71222 1.94995 5.45942 2.31427 5.36317 2.47561C5.28604 2.60489 5.24142 2.74651 5.21806 2.86395C5.20693 2.91992 5.20225 2.96234 5.20044 2.98358C5.20026 2.98565 5.20012 2.98747 5.2 2.98905V15.6229L10.0692 13.1883C10.4915 12.9772 10.9885 12.9772 11.4108 13.1883L16.28 15.6229V2.99058Z" fill="#B0B2C0"/>
3
+ <path d="M0.199997 6.46424V21.55L7.24 18.03L14.28 21.55V6.46424C14.28 6.46424 14.28 3.94986 11.2 3.94995H3.2C0.199997 3.94995 0.199997 6.46424 0.199997 6.46424Z" fill="#B0B2C0"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0.199997 6.46424V21.55L7.24 18.03L14.28 21.55V6.46424C14.28 6.46424 14.28 3.94986 11.2 3.94995H3.2C0.199997 3.94995 0.199997 6.46424 0.199997 6.46424ZM12.78 6.49058C12.7799 6.48948 12.7798 6.48827 12.7797 6.48694C12.7779 6.46695 12.7733 6.42592 12.7622 6.37142C12.7389 6.25726 12.6941 6.11831 12.6159 5.99052C12.518 5.83073 12.2463 5.44992 11.2 5.44995H3.2C2.21222 5.44995 1.95942 5.81427 1.86317 5.97561C1.78604 6.10489 1.74142 6.24651 1.71806 6.36395C1.70693 6.41992 1.70225 6.46234 1.70044 6.48358C1.70026 6.48565 1.70012 6.48747 1.7 6.48905V19.1229L6.56918 16.6883C6.99147 16.4772 7.48853 16.4772 7.91082 16.6883L12.78 19.1229V6.49058Z" fill="#B0B2C0"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 14 13" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.24907 1.60002L6.78716 1.13811C6.77533 1.12628 6.7636 1.11454 6.75197 1.10289C6.57941 0.93001 6.42733 0.77765 6.24397 0.665284C6.08268 0.566445 5.90681 0.493787 5.72342 0.449759C5.51435 0.399566 5.29922 0.399767 5.05508 0.399993C5.03855 0.400009 5.0219 0.400024 5.0051 0.400024H2.20039C1.20628 0.400024 0.400392 1.20591 0.400392 2.20002L0.400391 9.90315C0.40038 10.2194 0.400371 10.4923 0.418733 10.717C0.438114 10.9542 0.480904 11.1902 0.59658 11.4172C0.769086 11.7558 1.04425 12.0312 1.38308 12.2038C1.61013 12.3195 1.84614 12.3623 2.08337 12.3817C2.30823 12.4 2.58123 12.4 2.89764 12.4H11.1034C11.4198 12.4 11.6927 12.4 11.9174 12.3817C12.1546 12.3623 12.3905 12.3195 12.6175 12.2038C12.9559 12.0314 13.2316 11.7562 13.4043 11.4172C13.52 11.1902 13.5628 10.9542 13.5822 10.717C13.6005 10.4923 13.6005 10.2194 13.6005 9.9031L13.6005 4.0969C13.6005 3.78061 13.6005 3.50776 13.5822 3.28302C13.5628 3.04581 13.52 2.80988 13.4043 2.58285C13.2316 2.24392 12.9559 1.96866 12.6175 1.79621C12.3904 1.68054 12.1546 1.63775 11.9174 1.61837C11.6926 1.6 11.4198 1.60001 11.1035 1.60002L7.24907 1.60002ZM7.00039 4.60002C7.33176 4.60002 7.60039 4.86865 7.60039 5.20003V6.40002H8.80039C9.13176 6.40002 9.40039 6.66865 9.40039 7.00002C9.40039 7.3314 9.13176 7.60002 8.80039 7.60002H7.60039V8.80002C7.60039 9.1314 7.33176 9.40002 7.00039 9.40002C6.66902 9.40002 6.40039 9.1314 6.40039 8.80002V7.60002H5.20039C4.86902 7.60002 4.60039 7.3314 4.60039 7.00002C4.60039 6.66865 4.86902 6.40002 5.20039 6.40002H6.40039V5.20003C6.40039 4.86865 6.66902 4.60002 7.00039 4.60002Z" fill="#B0B2C0"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.1082 0C17.6353 0 20 3.3528 20 6.4752C20 12.8112 12.3529 18 10 18C7.64706 18 0 12.8112 0 6.4752C0 3.3528 2.36706 0 5.89176 0C7.90824 0 10 1.9248 10 1.9248C10 1.9248 12.0894 0 14.1082 0Z" fill="#B0B2C0"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18 29C24.0751 29 29 24.0751 29 18H32C32 25.732 25.732 32 18 32C10.268 32 4 25.732 4 18C4 10.268 10.268 4 18 4V7C11.9249 7 7 11.9249 7 18C7 24.0751 11.9249 29 18 29Z" fill="#6048FF"/>
3
+ <path d="M18 7V4C21.9174 4 25.459 5.60893 28 8.20203C30.4744 10.7271 32 14.1854 32 18H29C29 14.8479 27.6742 12.0055 25.5499 10C23.5799 8.14015 20.9231 7 18 7Z" fill="#EAEDFC"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="2" y="2" width="26" height="26" rx="4" fill="#4FABF8" stroke="white" stroke-width="4"/>
3
+ <path d="M8 13.32L13.0556 21L22 9" stroke="white" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 3L4 6L9 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.2502 2.0268L17 16.777M17 2L2 17" stroke="#5962F7" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
2
+ <path d="M6.13344 6.01429L14 13.8811M14 6L6 14" stroke="#6048FF" stroke-width="1.5" stroke-linecap="round"
3
+ stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 8V11H11V8M6 7.5V1M6 1L4 3M6 1L8 3" stroke="#696F91" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="18" height="18" rx="6" fill="#6048FF"/>
3
+ <path d="M5 9L8 12L13 7" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="2" y="6" width="12" height="12" rx="2" stroke="#6048FF" stroke-width="1.5"/>
3
+ <path d="M6 5.5V4C6 2.89543 6.89543 2 8 2H16C17.1046 2 18 2.89543 18 4V12C18 13.1046 17.1046 14 16 14H14.5" stroke="#6048FF" stroke-width="1.5"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="17" height="4" viewBox="0 0 17 4" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.4981 3.5C1.66967 3.5 0.998101 2.82843 0.998101 2C0.998101 1.17157 1.66967 0.5 2.4981 0.5C3.32653 0.5 3.9981 1.17157 3.9981 2C3.9981 2.82843 3.32653 3.5 2.4981 3.5Z" />
3
+ <path d="M9 3.5C8.17157 3.5 7.5 2.82843 7.5 2C7.5 1.17157 8.17157 0.5 9 0.5C9.82843 0.5 10.5 1.17157 10.5 2C10.5 2.82843 9.82843 3.5 9 3.5Z" />
4
+ <path d="M15.498 3.5C14.6695 3.5 13.998 2.82843 13.998 2C13.998 1.17157 14.6695 0.5 15.498 0.5C16.3264 0.5 16.998 1.17157 16.998 2C16.998 2.82843 16.3264 3.5 15.498 3.5Z" />
5
+ </svg>
6
+
@@ -0,0 +1,5 @@
1
+ <svg width="4" height="14" viewBox="0 0 4 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.5 12.5C3.5 13.3284 2.82843 14 2 14C1.17157 14 0.5 13.3284 0.5 12.5C0.5 11.6716 1.17157 11 2 11C2.82843 11 3.5 11.6716 3.5 12.5Z" fill="#B0B2C0"/>
3
+ <path d="M3.5 7.0022C3.5 7.83062 2.82843 8.5022 2 8.5022C1.17157 8.5022 0.5 7.83062 0.5 7.0022C0.5 6.17377 1.17157 5.5022 2 5.5022C2.82843 5.5022 3.5 6.17377 3.5 7.0022Z" fill="#B0B2C0"/>
4
+ <path d="M3.5024 1.49992C3.5024 2.32835 2.83083 2.99992 2.0024 2.99992C1.17397 2.99992 0.502398 2.32835 0.502398 1.49992C0.502398 0.671497 1.17397 -7.62542e-05 2.0024 -7.62542e-05C2.83083 -7.62542e-05 3.5024 0.671497 3.5024 1.49992Z" fill="#B0B2C0"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="14" height="18" viewBox="0 0 14 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.5 14.5C8.5 15.3284 7.82843 16 7 16C6.17157 16 5.5 15.3284 5.5 14.5C5.5 13.6716 6.17157 13 7 13C7.82843 13 8.5 13.6716 8.5 14.5Z" fill="#696F90"/>
3
+ <path d="M8.5 9.0022C8.5 9.83062 7.82843 10.5022 7 10.5022C6.17157 10.5022 5.5 9.83062 5.5 9.0022C5.5 8.17377 6.17157 7.5022 7 7.5022C7.82843 7.5022 8.5 8.17377 8.5 9.0022Z" fill="#696F90"/>
4
+ <path d="M8.5024 3.5C8.5024 4.32843 7.83083 5 7.0024 5C6.17397 5 5.5024 4.32843 5.5024 3.5C5.5024 2.67157 6.17397 2 7.0024 2C7.83083 2 8.5024 2.67157 8.5024 3.5Z" fill="#696F90"/>
5
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36694)">
3
+ <mask id="mask0_1631_36694" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36694)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FABF8"/>
8
+ <path d="M39.1997 33.8333L37.6663 32.5714C37.6663 32.5714 32.2997 17.4286 23.8663 11.119C15.433 4.80952 0.866341 4.17857 0.866341 4.17857L-0.666992 2.91667L3.16634 0.392857L16.1997 -1.5L27.6997 0.392857L39.9663 8.59524L45.333 21.8452L39.1997 33.8333Z" fill="#6048FF"/>
9
+ <g filter="url(#filter0_f_1631_36694)">
10
+ <path d="M-6.13822 24.2604L-3.73099 24.7038C-3.73099 24.7038 0.894429 17.5531 16.28 16.2898C31.6655 15.0265 52.5049 33.1952 52.5049 33.1952L54.9121 33.6386L53.507 38.9762L43.2968 49.5322L31.3933 54.8018L13.6731 53.4038L-1.92803 41.825L-6.13822 24.2604Z" fill="#4FD4F8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36694" x="-16.1387" y="6.22681" width="81.0508" height="58.5751" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36694"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36694">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36710)">
3
+ <mask id="mask0_1631_36710" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" transform="rotate(-90 20 20)" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36710)">
7
+ <circle cx="20" cy="20" r="20" transform="rotate(-90 20 20)" fill="#84FF7A"/>
8
+ <path d="M33.8333 0.800326L32.5714 2.33366C32.5714 2.33366 17.4286 7.70032 11.119 16.1337C4.80952 24.567 4.17857 39.1337 4.17857 39.1337L2.91667 40.667L0.392857 36.8337L-1.5 23.8003L0.392856 12.3003L8.59524 0.0336604L21.8452 -5.33301L33.8333 0.800326Z" fill="#4FD4F8"/>
9
+ <g filter="url(#filter0_f_1631_36710)">
10
+ <path d="M24.2607 46.1382L24.704 43.731C24.704 43.731 17.5534 39.1056 16.2901 23.7201C15.0268 8.33453 33.1955 -12.5049 33.1955 -12.5049L33.6388 -14.9121L38.9764 -13.507L49.5325 -3.29678L54.8021 8.60673L53.404 26.3269L41.8253 41.928L24.2607 46.1382Z" fill="#6BEB2E" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36710" x="6.22754" y="-24.9121" width="58.5742" height="81.0503" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36710"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36710">
21
+ <rect width="40" height="40" fill="white" transform="translate(0 40) rotate(-90)"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36872)">
3
+ <mask id="mask0_1631_36872" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36872)">
7
+ <circle cx="20" cy="20" r="20" fill="#BB6BD9"/>
8
+ <path d="M38.1667 33.3231L27.6196 39C27.6196 39 29.4913 13.5214 21.9746 7.55165C14.458 1.58187 5.36667 3.3728 5.36667 3.3728L4 2.17885L7.41667 -0.209066L19.0333 -2L29.2833 -0.209066L40.2167 7.55165L45 20.0882L38.1667 33.3231Z" fill="#4FABF8"/>
9
+ <g filter="url(#filter0_f_1631_36872)">
10
+ <path d="M-3.55154 21.9042L-1.31602 22.3183C-1.31602 22.3183 1.06539 35.1691 15.6145 28.7437C30.1636 22.3183 40.6828 31.0008 40.6828 31.0008L42.9183 31.4149L41.6135 36.4002L40.6829 37.4476L29.6285 42.3693L13.1723 41.0636L-1.31594 30.2492L-3.55154 21.9042Z" fill="#FF6493" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36872" x="-13.5518" y="11.9042" width="66.4697" height="40.4651" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36872"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36872">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36796)">
3
+ <mask id="mask0_1631_36796" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36796)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FD4F8"/>
8
+ <path d="M40.1795 7.67129L38.4393 8.26988C38.4393 8.26988 23.8791 5.16178 14.8062 8.76007C5.73333 12.3584 -1.83099 23.5541 -1.83099 23.5541L-3.57119 24.1527L-3.70449 19.9017L1.12322 8.69233L8.19634 0.530124L20.6234 -5.17676L33.6889 -2.98687L40.1795 7.67129Z" fill="#2D9CDB"/>
9
+ <g filter="url(#filter0_f_1631_36796)">
10
+ <path d="M-5.77882 18.2149L-3.8488 18.5224C-3.8488 18.5224 1.85649 0.176372 8.65319 13.6885C15.4499 27.2005 33.8511 24.7453 33.8511 24.7453L43.2029 24.533L41.9741 28.7897L33.5607 37.3437L23.8806 41.7382L9.6392 40.9539L-2.71007 32.0609L-5.77882 18.2149Z" fill="#F0FF42" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36796" x="-15.7793" y="-1.27722" width="68.9824" height="53.0155" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36796"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36796">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36826)">
3
+ <mask id="mask0_1631_36826" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36826)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FD4F8"/>
8
+ <path d="M41.0073 10.8149L39.2445 11.587C39.2445 11.587 23.8038 9.58725 14.6535 14.1103C5.50315 18.6334 -1.42779 30.9469 -1.42779 30.9469L-3.19063 31.719L-3.69156 27.2995L-2.9441 11.8749L3.73318 2.76508L19.5299 -0.911398L33.3346 0.25856L41.0073 10.8149Z" fill="#6048FF"/>
9
+ <g filter="url(#filter0_f_1631_36826)">
10
+ <path d="M39.5059 31.3762L37.7177 31.689C37.7177 31.689 32.7251 33.1167 27.1138 28.138C21.5025 23.1593 29.1046 -4.53757 29.1046 -4.53757L32.9939 -3.72629L36.2369 -3.04981L39.174 -1.82991L45.7368 6.61344L46.3548 17.6474L44.8956 25.5549L42.2008 28.4655L39.5059 31.3762Z" fill="#9B51E0" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36826" x="15.0488" y="-14.5376" width="41.3057" height="56.4163" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36826"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36826">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36852)">
3
+ <mask id="mask0_1631_36852" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36852)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FABF8"/>
8
+ <path d="M15.8225 -1.94234L15.8608 0.0274754C15.8608 0.0274754 7.84842 14.2616 8.53847 24.6639C9.22852 35.0661 18.2185 46.0079 18.2185 46.0079L18.2568 47.9777L13.8481 46.939L3.93805 38.8305L-2.09998 29.2379L-3.84429 14.7746L2.73048 1.83566L15.8225 -1.94234Z" fill="#6048FF"/>
9
+ <g filter="url(#filter0_f_1631_36852)">
10
+ <path d="M38.3887 36.9926L37.1437 34.9676C37.1437 34.9676 28.9777 36.2786 18.0647 25.999C7.15174 15.7194 6.7139 -11.1271 6.7139 -11.1271L5.46893 -13.1522L10.2335 -15.6082L24.487 -15.1034L36.027 -9.94042L46.5375 3.75369L48.3249 22.5369L38.3887 36.9926Z" fill="#84FF7A" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36852" x="-4.53125" y="-25.6082" width="62.8564" height="72.6008" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36852"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36852">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36700)">
3
+ <mask id="mask0_1631_36700" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36700)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FABF8"/>
8
+ <path d="M38.1667 33.3231L27.6196 39C27.6196 39 29.4913 13.5214 21.9746 7.55165C14.458 1.58187 5.36667 3.3728 5.36667 3.3728L4 2.17885L7.41667 -0.209066L19.0333 -2L29.2833 -0.209066L40.2167 7.55165L45 20.0882L38.1667 33.3231Z" fill="#4FD4F8"/>
9
+ <g filter="url(#filter0_f_1631_36700)">
10
+ <path d="M-3.55154 21.9042L-1.31602 22.3183C-1.31602 22.3183 1.06539 35.1691 15.6145 28.7437C30.1636 22.3183 40.6828 31.0008 40.6828 31.0008L42.9183 31.4149L41.6135 36.4002L40.6829 37.4476L29.6285 42.3693L13.1723 41.0636L-1.31594 30.2492L-3.55154 21.9042Z" fill="#5962F7" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36700" x="-13.5518" y="11.9042" width="66.4697" height="40.4651" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36700"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36700">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36736)">
3
+ <mask id="mask0_1631_36736" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36736)">
7
+ <circle cx="20" cy="20" r="20" fill="#6048FF"/>
8
+ <path d="M39.5342 32L38.1009 30.8214C38.1009 30.8214 33.0842 16.6786 25.2009 10.7857C17.3176 4.89286 3.70091 4.30357 3.70091 4.30357L2.26758 3.125L5.85091 0.767857L18.0342 -1L28.7842 0.767857L40.2509 8.42857L45.2676 20.8036L39.5342 32Z" fill="#6BEB2E"/>
9
+ <g filter="url(#filter0_f_1631_36736)">
10
+ <path d="M25.6119 -4.15708L25.0318 -2.20785C25.0318 -2.20785 30.5583 2.12682 30.2505 14.8868C29.9427 27.6468 13.0278 43.466 13.0278 43.466L12.4476 45.4152L8.14186 43.8654L0.281542 34.682L-3.04238 24.4938L-0.320167 10.0076L10.6641 -1.98421L25.6119 -4.15708Z" fill="#4FD4F8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36736" x="-13.042" y="-14.1571" width="53.3047" height="69.5724" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36736"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36736">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36730)">
3
+ <mask id="mask0_1631_36730" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36730)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FD4F8"/>
8
+ <path d="M39.1997 33.8333L37.6663 32.5714C37.6663 32.5714 32.2997 17.4286 23.8663 11.119C15.433 4.80952 0.866341 4.17857 0.866341 4.17857L-0.666992 2.91667L3.16634 0.392857L16.1997 -1.5L27.6997 0.392857L39.9663 8.59524L45.333 21.8452L39.1997 33.8333Z" fill="#EFA7EC"/>
9
+ <g filter="url(#filter0_f_1631_36730)">
10
+ <path d="M-6.13822 24.2604L-3.73099 24.7038C-3.73099 24.7038 0.894429 17.5531 16.28 16.2898C31.6655 15.0265 52.5049 33.1952 52.5049 33.1952L54.9121 33.6386L53.507 38.9762L43.2968 49.5322L31.3933 54.8018L13.6731 53.4038L-1.92803 41.825L-6.13822 24.2604Z" fill="#4FABF8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36730" x="-16.1387" y="6.22681" width="81.0508" height="58.5751" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36730"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36730">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36882)">
3
+ <mask id="mask0_1631_36882" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36882)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FD4F8"/>
8
+ <path d="M33.8333 0.800326L32.5714 2.33366C32.5714 2.33366 17.4286 7.70032 11.119 16.1337C4.80952 24.567 4.17857 39.1337 4.17857 39.1337L2.91667 40.667L0.392857 36.8337L-1.5 23.8003L0.392856 12.3003L8.59524 0.0336604L21.8452 -5.33301L33.8333 0.800326Z" fill="#FF6493"/>
9
+ <g filter="url(#filter0_f_1631_36882)">
10
+ <path d="M24.2607 46.1382L24.704 43.731C24.704 43.731 17.5534 39.1056 16.2901 23.7201C15.0268 8.33453 33.1955 -12.5049 33.1955 -12.5049L33.6388 -14.9121L38.9764 -13.507L49.5325 -3.29678L54.8021 8.60673L53.404 26.3269L41.8253 41.928L24.2607 46.1382Z" fill="#4FABF8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36882" x="6.22754" y="-24.9121" width="58.5742" height="81.0503" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36882"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36882">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36806)">
3
+ <mask id="mask0_1631_36806" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36806)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FD4F8"/>
8
+ <g filter="url(#filter0_f_1631_36806)">
9
+ <path d="M39.5342 32L38.1009 30.8214C38.1009 30.8214 33.0842 16.6786 25.2009 10.7857C17.3176 4.89286 3.70091 4.30357 3.70091 4.30357L2.26758 3.125L5.85091 0.767857L18.0342 -1L28.7842 0.767857L40.2509 8.42857L45.2676 20.8036L39.5342 32Z" fill="#F0FF42"/>
10
+ </g>
11
+ <path d="M25.6119 -4.15708L25.0318 -2.20785C25.0318 -2.20785 30.5583 2.12682 30.2505 14.8868C29.9427 27.6468 13.0278 43.466 13.0278 43.466L12.4476 45.4152L8.14186 43.8654L0.281542 34.682L-3.04238 24.4938L-0.320167 10.0076L10.6641 -1.98421L25.6119 -4.15708Z" fill="#5962F7" fill-opacity="0.7"/>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36806" x="-7.73242" y="-11" width="63" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36806"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36806">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36836)">
3
+ <mask id="mask0_1631_36836" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36836)">
7
+ <circle cx="20" cy="20" r="20" fill="#BB6BD9"/>
8
+ <path d="M39.1997 33.8333L37.6663 32.5714C37.6663 32.5714 32.2997 17.4286 23.8663 11.119C15.433 4.80952 0.866341 4.17857 0.866341 4.17857L-0.666992 2.91667L3.16634 0.392857L16.1997 -1.5L27.6997 0.392857L39.9663 8.59524L45.333 21.8452L39.1997 33.8333Z" fill="#4FD4F8"/>
9
+ <g filter="url(#filter0_f_1631_36836)">
10
+ <path d="M-6.13822 24.2604L-3.73099 24.7038C-3.73099 24.7038 0.894429 17.5531 16.28 16.2898C31.6655 15.0265 52.5049 33.1952 52.5049 33.1952L54.9121 33.6386L53.507 38.9762L43.2968 49.5322L31.3933 54.8018L13.6731 53.4038L-1.92803 41.825L-6.13822 24.2604Z" fill="#4FABF8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36836" x="-16.1387" y="6.22681" width="81.0508" height="58.5751" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36836"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36836">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36766)">
3
+ <mask id="mask0_1631_36766" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36766)">
7
+ <circle cx="20" cy="20" r="20" fill="#BB6BD9"/>
8
+ <path d="M40.1795 7.67129L38.4393 8.26988C38.4393 8.26988 23.8791 5.16178 14.8062 8.76007C5.73333 12.3584 -1.83099 23.5541 -1.83099 23.5541L-3.57119 24.1527L-3.70449 19.9017L1.12322 8.69233L8.19634 0.530124L20.6234 -5.17676L33.6889 -2.98687L40.1795 7.67129Z" fill="#9B51E0"/>
9
+ <g filter="url(#filter0_f_1631_36766)">
10
+ <path d="M-5.77882 18.2148L-3.8488 18.5222C-3.8488 18.5222 1.85649 0.17625 8.65319 13.6883C15.4499 27.2004 33.8511 24.7452 33.8511 24.7452L43.2029 24.5329L41.9741 28.7895L33.5607 37.3435L23.8806 41.7381L9.6392 40.9537L-2.71007 32.0607L-5.77882 18.2148Z" fill="#4FABF8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36766" x="-15.7793" y="-1.27734" width="68.9824" height="53.0154" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36766"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36766">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36862)">
3
+ <mask id="mask0_1631_36862" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36862)">
7
+ <circle cx="20" cy="20" r="20" fill="#4FD4F8"/>
8
+ <path d="M38.8914 10.3978L40.4846 15.0181C40.4846 15.0181 27.7039 24.6145 18.563 22.8212C9.4221 21.0278 4.08346 4.99293 4.08346 4.99293L5.43481 3.70652L9.01945 0.918467L15.7107 -0.356072L21.6398 -0.928421L34.5899 0.918465L38.3338 7.45048L38.8914 10.3978Z" fill="#6BEB2E"/>
9
+ <g filter="url(#filter0_f_1631_36862)">
10
+ <path d="M0.724749 28.4007L-0.998704 24.0549C-0.998704 24.0549 3.42274 17.2196 18.1298 16.012C32.8369 14.8044 38.0157 32.6227 38.0157 32.6227L37.1396 34.4548L35.9448 36.3666L25.0315 41.5444L13.6403 41.5444L3.21665 35.5744L0.724749 28.4007Z" fill="#5962F7" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36862" x="-10.999" y="5.95325" width="59.0146" height="45.5912" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36862"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36862">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36776)">
3
+ <mask id="mask0_1631_36776" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36776)">
7
+ <circle cx="20" cy="20" r="20" fill="#FF6493"/>
8
+ <path d="M43.6 32L42 30.6429C42 30.6429 16.9739 29.6442 8.17391 22.8585C-0.626087 16.0728 3.6 0.107143 3.6 0.107143L2 -1.25L6 -3.96429L19.6 -6L31.6 -3.96429L44.4 4.85714L50 19.1071L43.6 32Z" fill="#EFA7EC"/>
9
+ <g filter="url(#filter0_f_1631_36776)">
10
+ <path d="M19.9347 50.1044L21.1948 47.8346C21.1948 47.8346 15.5719 40.766 19.5073 24.8733C23.4427 8.98061 48.7561 -5.81995 48.7561 -5.81995L50.0161 -8.08967L54.9061 -4.87151L62.0625 8.96303L63.3322 22.7111L55.9318 40.0501L39.0148 51.8148L19.9347 50.1044Z" fill="#BB6BD9" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36776" x="8.10938" y="-18.0896" width="65.2227" height="79.9044" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36776"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36776">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36786)">
3
+ <mask id="mask0_1631_36786" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36786)">
7
+ <circle cx="20" cy="20" r="20" fill="#F0FF42"/>
8
+ <path d="M41.7195 36.2747L38.477 39C38.477 39 23.8678 25.6374 26.4511 12.3626C29.0344 -0.912083 15.7679 0.111111 15.7679 0.111111L13 -0.472527L14.8707 -1H17.1333L29.4264 0.996861L42.539 9.64993L44 22.6484L41.7195 36.2747Z" fill="#4FABF8"/>
9
+ <g filter="url(#filter0_f_1631_36786)">
10
+ <path d="M34.6921 1.80794L38.6492 6.32987C38.6492 6.32987 40.6818 14.342 27.2073 24.6815C13.7328 35.0209 -5.32609 25.85 -5.32609 25.85L-5.89444 21.9993L-6.81806 15.7409L-6.12207 10.9826L-1.57702 4.67316L12.8267 -1.91584L30.0824 -2.42364L34.6921 1.80794Z" fill="#4FD4F8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36786" x="-16.8184" y="-12.4236" width="65.5771" height="52.0242" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36786"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36786">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1631_36816)">
3
+ <mask id="mask0_1631_36816" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40">
4
+ <circle cx="20" cy="20" r="20" fill="#C4C4C4"/>
5
+ </mask>
6
+ <g mask="url(#mask0_1631_36816)">
7
+ <circle cx="20" cy="20" r="20" fill="#6048FF"/>
8
+ <path d="M40.1795 7.67129L38.4393 8.26988C38.4393 8.26988 23.8791 5.16178 14.8062 8.76007C5.73333 12.3584 -1.83099 23.5541 -1.83099 23.5541L-3.57119 24.1527L-3.70449 19.9017L1.12322 8.69233L8.19634 0.530124L20.6234 -5.17676L33.6889 -2.98687L40.1795 7.67129Z" fill="#BB6BD9"/>
9
+ <g filter="url(#filter0_f_1631_36816)">
10
+ <path d="M-5.77882 18.2148L-3.8488 18.5222C-3.8488 18.5222 1.85649 0.17625 8.65319 13.6883C15.4499 27.2004 33.8511 24.7452 33.8511 24.7452L43.2029 24.5329L41.9741 28.7895L33.5607 37.3435L23.8806 41.7381L9.6392 40.9537L-2.71007 32.0607L-5.77882 18.2148Z" fill="#4FD4F8" fill-opacity="0.7"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_f_1631_36816" x="-15.7793" y="-1.27734" width="68.9824" height="53.0154" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
18
+ <feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1631_36816"/>
19
+ </filter>
20
+ <clipPath id="clip0_1631_36816">
21
+ <rect width="40" height="40" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>