xertica-ui 2.2.1 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (708) hide show
  1. package/CHANGELOG.md +564 -525
  2. package/README.md +417 -382
  3. package/bin/cli.ts +1244 -748
  4. package/bin/generate-tokens.ts +262 -262
  5. package/bin/language-config.ts +5 -8
  6. package/components/assets/xertica-orbe-animation.ts +1162 -1162
  7. package/components/assistant/code-block/CodeBlock.tsx +268 -268
  8. package/components/assistant/code-block/code-block.stories.tsx +57 -57
  9. package/components/assistant/code-block/code-block.test.tsx +44 -44
  10. package/components/assistant/code-block/index.ts +1 -1
  11. package/components/assistant/formatted-document/FormattedDocument.tsx +147 -147
  12. package/components/assistant/formatted-document/formatted-document.stories.tsx +51 -51
  13. package/components/assistant/formatted-document/formatted-document.test.tsx +42 -42
  14. package/components/assistant/formatted-document/index.ts +1 -1
  15. package/components/assistant/index.ts +6 -6
  16. package/components/assistant/markdown-message/MarkdownMessage.tsx +152 -152
  17. package/components/assistant/markdown-message/index.ts +1 -1
  18. package/components/assistant/markdown-message/markdown-message.stories.tsx +50 -50
  19. package/components/assistant/markdown-message/markdown-message.test.tsx +33 -33
  20. package/components/assistant/modern-chat-input/ModernChatInput.tsx +17 -7
  21. package/components/assistant/modern-chat-input/index.ts +1 -1
  22. package/components/assistant/modern-chat-input/modern-chat-input.stories.tsx +131 -131
  23. package/components/assistant/modern-chat-input/modern-chat-input.test.tsx +79 -79
  24. package/components/assistant/xertica-assistant/index.ts +3 -3
  25. package/components/assistant/xertica-assistant/parts/AssistantCollapsedView.tsx +99 -99
  26. package/components/assistant/xertica-assistant/parts/AssistantConversationList.tsx +104 -106
  27. package/components/assistant/xertica-assistant/parts/AssistantDocumentEditor.tsx +81 -81
  28. package/components/assistant/xertica-assistant/parts/AssistantFeedbackDialog.tsx +88 -78
  29. package/components/assistant/xertica-assistant/parts/AssistantHeader.tsx +75 -75
  30. package/components/assistant/xertica-assistant/parts/AssistantMessageBubble.tsx +564 -560
  31. package/components/assistant/xertica-assistant/parts/AssistantTabBar.tsx +67 -67
  32. package/components/assistant/xertica-assistant/parts/AssistantTypingIndicator.tsx +41 -41
  33. package/components/assistant/xertica-assistant/parts/AssistantWelcomeScreen.tsx +103 -103
  34. package/components/assistant/xertica-assistant/parts/index.ts +16 -16
  35. package/components/assistant/xertica-assistant/types.ts +134 -134
  36. package/components/assistant/xertica-assistant/use-assistant.ts +615 -615
  37. package/components/assistant/xertica-assistant/xertica-assistant.stories.tsx +407 -407
  38. package/components/assistant/xertica-assistant/xertica-assistant.test.tsx +65 -65
  39. package/components/assistant/xertica-assistant/xertica-assistant.tsx +611 -613
  40. package/components/blocks/card-patterns/ActivityCard.tsx +100 -100
  41. package/components/blocks/card-patterns/FeatureCard.tsx +109 -109
  42. package/components/blocks/card-patterns/FeatureCardSkeleton.tsx +1 -6
  43. package/components/blocks/card-patterns/NotificationCard.tsx +140 -140
  44. package/components/blocks/card-patterns/ProfileCard.tsx +112 -114
  45. package/components/blocks/card-patterns/ProjectCard.tsx +123 -123
  46. package/components/blocks/card-patterns/ProjectCardSkeleton.tsx +1 -6
  47. package/components/blocks/card-patterns/QuickActionCard.tsx +68 -68
  48. package/components/blocks/card-patterns/card-patterns.mdx +123 -123
  49. package/components/blocks/card-patterns/card-patterns.stories.tsx +594 -594
  50. package/components/blocks/card-patterns/index.ts +29 -29
  51. package/components/blocks/index.ts +1 -1
  52. package/components/brand/branding/branding.stories.tsx +57 -57
  53. package/components/brand/index.ts +6 -6
  54. package/components/brand/language-selector/index.ts +1 -1
  55. package/components/brand/language-selector/language-selector.mdx +126 -126
  56. package/components/brand/language-selector/language-selector.stories.tsx +1 -4
  57. package/components/brand/theme-toggle/ThemeToggle.tsx +74 -70
  58. package/components/brand/theme-toggle/index.ts +1 -1
  59. package/components/brand/theme-toggle/theme-toggle.stories.tsx +34 -34
  60. package/components/brand/theme-toggle/theme-toggle.test.tsx +34 -34
  61. package/components/brand/xertica-logo/XerticaLogo.stories.tsx +82 -82
  62. package/components/brand/xertica-logo/XerticaLogo.tsx +104 -104
  63. package/components/brand/xertica-logo/index.ts +1 -1
  64. package/components/brand/xertica-logo/xertica-logo.test.tsx +26 -26
  65. package/components/brand/xertica-orbe/XerticaOrbe.tsx +1927 -1927
  66. package/components/brand/xertica-orbe/index.ts +1 -1
  67. package/components/brand/xertica-orbe/xertica-orbe.stories.tsx +40 -40
  68. package/components/brand/xertica-orbe/xertica-orbe.test.tsx +19 -19
  69. package/components/brand/xertica-provider/XerticaProvider.tsx +1 -4
  70. package/components/brand/xertica-provider/index.ts +1 -1
  71. package/components/brand/xertica-provider/xertica-provider.test.tsx +74 -74
  72. package/components/brand/xertica-xlogo/XerticaXLogo.stories.tsx +79 -79
  73. package/components/brand/xertica-xlogo/XerticaXLogo.tsx +65 -65
  74. package/components/brand/xertica-xlogo/index.ts +1 -1
  75. package/components/brand/xertica-xlogo/xertica-xlogo.test.tsx +16 -16
  76. package/components/examples/ApiKeyMapExample.tsx +71 -71
  77. package/components/examples/DrawingMapExample.tsx +565 -565
  78. package/components/examples/FilterableMapExample.tsx +393 -393
  79. package/components/examples/LocationPickerExample.tsx +348 -348
  80. package/components/examples/MapExamples.tsx +268 -268
  81. package/components/examples/MapGmpExample.tsx +169 -169
  82. package/components/examples/MapShowcase.tsx +471 -471
  83. package/components/examples/RouteMapExamples.tsx +329 -329
  84. package/components/examples/SidebarLogoExample.tsx +65 -65
  85. package/components/examples/SimpleFilterableMap.tsx +219 -219
  86. package/components/examples/index.ts +45 -45
  87. package/components/figma/ImageWithFallback.tsx +27 -27
  88. package/components/hooks/index.ts +13 -13
  89. package/components/hooks/use-layout-shortcuts.ts +43 -43
  90. package/components/index.ts +86 -90
  91. package/components/layout/header/header.stories.tsx +204 -204
  92. package/components/layout/header/header.test.tsx +75 -75
  93. package/components/layout/header/header.tsx +349 -349
  94. package/components/layout/header/index.ts +1 -1
  95. package/components/layout/index.ts +2 -2
  96. package/components/layout/sidebar/index.ts +3 -3
  97. package/components/layout/sidebar/sidebar.stories.tsx +586 -586
  98. package/components/layout/sidebar/sidebar.test.tsx +76 -76
  99. package/components/layout/sidebar/sidebar.tsx +1079 -1073
  100. package/components/layout/sidebar/use-sidebar.ts +104 -104
  101. package/components/media/FloatingMediaWrapper.tsx +371 -371
  102. package/components/media/audio-player/AudioPlayer.stories.tsx +124 -124
  103. package/components/media/audio-player/AudioPlayer.test.tsx +106 -106
  104. package/components/media/audio-player/AudioPlayer.tsx +767 -765
  105. package/components/media/audio-player/index.ts +1 -1
  106. package/components/media/audio-player/use-audio-player.ts +312 -312
  107. package/components/media/index.ts +3 -3
  108. package/components/media/video-player/VideoPlayer.stories.tsx +98 -98
  109. package/components/media/video-player/VideoPlayer.test.tsx +73 -73
  110. package/components/media/video-player/VideoPlayer.tsx +310 -310
  111. package/components/media/video-player/index.ts +1 -1
  112. package/components/pages/forgot-password-page/ForgotPasswordPage.stories.tsx +24 -24
  113. package/components/pages/forgot-password-page/ForgotPasswordPage.tsx +188 -188
  114. package/components/pages/forgot-password-page/forgot-password-page.test.tsx +45 -45
  115. package/components/pages/forgot-password-page/index.ts +1 -1
  116. package/components/pages/home-content/HomeContent.stories.tsx +43 -43
  117. package/components/pages/home-content/HomeContent.tsx +120 -120
  118. package/components/pages/home-content/index.ts +1 -1
  119. package/components/pages/home-page/HomePage.stories.tsx +39 -39
  120. package/components/pages/home-page/HomePage.tsx +78 -74
  121. package/components/pages/home-page/home-page.test.tsx +53 -53
  122. package/components/pages/home-page/index.ts +1 -1
  123. package/components/pages/index.ts +8 -8
  124. package/components/pages/login-page/LoginPage.stories.tsx +39 -39
  125. package/components/pages/login-page/LoginPage.tsx +218 -216
  126. package/components/pages/login-page/index.ts +1 -1
  127. package/components/pages/login-page/login-page.test.tsx +63 -63
  128. package/components/pages/reset-password-page/ResetPasswordPage.stories.tsx +24 -24
  129. package/components/pages/reset-password-page/ResetPasswordPage.tsx +243 -239
  130. package/components/pages/reset-password-page/index.ts +1 -1
  131. package/components/pages/template-content/TemplateContent.stories.tsx +43 -43
  132. package/components/pages/template-content/TemplateContent.tsx +1354 -1235
  133. package/components/pages/template-content/index.ts +1 -1
  134. package/components/pages/template-page/TemplatePage.stories.tsx +39 -39
  135. package/components/pages/template-page/TemplatePage.tsx +62 -62
  136. package/components/pages/template-page/index.ts +1 -1
  137. package/components/pages/template-page/template-page.test.tsx +52 -52
  138. package/components/pages/verify-email-page/VerifyEmailPage.stories.tsx +41 -41
  139. package/components/pages/verify-email-page/VerifyEmailPage.tsx +206 -206
  140. package/components/pages/verify-email-page/index.ts +1 -1
  141. package/components/public-api-smoke.test.tsx +52 -52
  142. package/components/shared/CustomTooltipContent.tsx +48 -48
  143. package/components/shared/assistant-utils.test.ts +16 -16
  144. package/components/shared/assistant-utils.ts +225 -225
  145. package/components/shared/error-boundary.stories.tsx +114 -132
  146. package/components/shared/error-boundary.tsx +150 -154
  147. package/components/shared/error-fallbacks.tsx +222 -226
  148. package/components/shared/layout-constants.ts +8 -8
  149. package/components/shared/navigation.ts +35 -35
  150. package/components/shared/use-mobile.test.ts +16 -16
  151. package/components/shared/use-mobile.ts +36 -36
  152. package/components/shared/utils.test.ts +14 -14
  153. package/components/shared/utils.ts +6 -6
  154. package/components/ui/accordion/accordion.stories.tsx +105 -105
  155. package/components/ui/accordion/accordion.test.tsx +59 -59
  156. package/components/ui/accordion/accordion.tsx +77 -77
  157. package/components/ui/accordion/index.ts +1 -1
  158. package/components/ui/alert/alert.stories.tsx +86 -86
  159. package/components/ui/alert/alert.test.tsx +53 -53
  160. package/components/ui/alert/alert.tsx +93 -93
  161. package/components/ui/alert/index.ts +1 -1
  162. package/components/ui/alert-dialog/alert-dialog.stories.tsx +84 -84
  163. package/components/ui/alert-dialog/alert-dialog.test.tsx +70 -70
  164. package/components/ui/alert-dialog/alert-dialog.tsx +149 -149
  165. package/components/ui/alert-dialog/index.ts +1 -1
  166. package/components/ui/aspect-ratio/aspect-ratio.stories.tsx +46 -46
  167. package/components/ui/aspect-ratio/aspect-ratio.test.tsx +28 -28
  168. package/components/ui/aspect-ratio/aspect-ratio.tsx +20 -20
  169. package/components/ui/aspect-ratio/index.ts +1 -1
  170. package/components/ui/assistant-chart/AssistantChart.tsx +64 -64
  171. package/components/ui/assistant-chart/assistant-chart.stories.tsx +44 -44
  172. package/components/ui/assistant-chart/assistant-chart.test.tsx +46 -46
  173. package/components/ui/assistant-chart/index.ts +1 -1
  174. package/components/ui/avatar/avatar.stories.tsx +86 -86
  175. package/components/ui/avatar/avatar.test.tsx +55 -55
  176. package/components/ui/avatar/avatar.tsx +71 -71
  177. package/components/ui/avatar/index.ts +1 -1
  178. package/components/ui/badge/badge.stories.tsx +72 -72
  179. package/components/ui/badge/badge.test.tsx +40 -40
  180. package/components/ui/badge/badge.tsx +58 -58
  181. package/components/ui/badge/index.ts +1 -1
  182. package/components/ui/breadcrumb/breadcrumb.stories.tsx +123 -123
  183. package/components/ui/breadcrumb/breadcrumb.test.tsx +70 -70
  184. package/components/ui/breadcrumb/breadcrumb.tsx +114 -114
  185. package/components/ui/breadcrumb/index.ts +1 -1
  186. package/components/ui/button/button.stories.tsx +183 -183
  187. package/components/ui/button/button.test.tsx +64 -64
  188. package/components/ui/button/button.tsx +98 -98
  189. package/components/ui/button/index.ts +1 -1
  190. package/components/ui/calendar/calendar.stories.tsx +108 -108
  191. package/components/ui/calendar/calendar.test.tsx +53 -53
  192. package/components/ui/calendar/calendar.tsx +230 -230
  193. package/components/ui/calendar/index.ts +1 -1
  194. package/components/ui/card/card.stories.tsx +301 -301
  195. package/components/ui/card/card.test.tsx +55 -55
  196. package/components/ui/card/card.tsx +83 -83
  197. package/components/ui/card/index.ts +1 -1
  198. package/components/ui/carousel/carousel.stories.tsx +80 -80
  199. package/components/ui/carousel/carousel.test.tsx +75 -75
  200. package/components/ui/carousel/carousel.tsx +242 -242
  201. package/components/ui/carousel/index.ts +1 -1
  202. package/components/ui/chart/chart.stories.tsx +1328 -1328
  203. package/components/ui/chart/chart.test.tsx +178 -178
  204. package/components/ui/chart/chart.tsx +2232 -2232
  205. package/components/ui/chart/index.ts +1 -1
  206. package/components/ui/checkbox/checkbox.stories.tsx +109 -109
  207. package/components/ui/checkbox/checkbox.test.tsx +49 -49
  208. package/components/ui/checkbox/checkbox.tsx +68 -68
  209. package/components/ui/checkbox/index.ts +1 -1
  210. package/components/ui/collapsible/collapsible.stories.tsx +45 -45
  211. package/components/ui/collapsible/collapsible.test.tsx +51 -51
  212. package/components/ui/collapsible/collapsible.tsx +32 -32
  213. package/components/ui/collapsible/index.ts +1 -1
  214. package/components/ui/command/command.stories.tsx +134 -134
  215. package/components/ui/command/command.test.tsx +48 -48
  216. package/components/ui/command/command.tsx +163 -163
  217. package/components/ui/command/index.ts +1 -1
  218. package/components/ui/context-menu/context-menu.stories.tsx +76 -76
  219. package/components/ui/context-menu/context-menu.test.tsx +61 -61
  220. package/components/ui/context-menu/context-menu.tsx +236 -236
  221. package/components/ui/context-menu/index.ts +1 -1
  222. package/components/ui/dialog/dialog.stories.tsx +174 -174
  223. package/components/ui/dialog/dialog.test.tsx +78 -78
  224. package/components/ui/dialog/dialog.tsx +189 -189
  225. package/components/ui/dialog/index.ts +1 -1
  226. package/components/ui/drawer/drawer.stories.tsx +71 -71
  227. package/components/ui/drawer/drawer.test.tsx +67 -67
  228. package/components/ui/drawer/drawer.tsx +146 -146
  229. package/components/ui/drawer/index.ts +1 -1
  230. package/components/ui/dropdown-menu/dropdown-menu.stories.tsx +156 -156
  231. package/components/ui/dropdown-menu/dropdown-menu.test.tsx +62 -62
  232. package/components/ui/dropdown-menu/dropdown-menu.tsx +240 -240
  233. package/components/ui/dropdown-menu/index.ts +1 -1
  234. package/components/ui/empty/empty.stories.tsx +85 -85
  235. package/components/ui/empty/empty.test.tsx +31 -31
  236. package/components/ui/empty/empty.tsx +88 -88
  237. package/components/ui/empty/index.ts +1 -1
  238. package/components/ui/file-upload/file-upload.stories.tsx +144 -144
  239. package/components/ui/file-upload/file-upload.test.tsx +65 -65
  240. package/components/ui/file-upload/file-upload.tsx +142 -142
  241. package/components/ui/file-upload/index.ts +2 -2
  242. package/components/ui/file-upload/use-file-upload.ts +177 -177
  243. package/components/ui/form/form.stories.tsx +85 -85
  244. package/components/ui/form/form.test.tsx +75 -75
  245. package/components/ui/form/form.tsx +163 -163
  246. package/components/ui/form/index.ts +1 -1
  247. package/components/ui/google-maps-loader/google-maps-loader.test.tsx +35 -35
  248. package/components/ui/google-maps-loader/google-maps-loader.tsx +465 -465
  249. package/components/ui/google-maps-loader/index.ts +1 -1
  250. package/components/ui/hover-card/hover-card.stories.tsx +61 -61
  251. package/components/ui/hover-card/hover-card.test.tsx +48 -48
  252. package/components/ui/hover-card/hover-card.tsx +50 -50
  253. package/components/ui/hover-card/index.ts +1 -1
  254. package/components/ui/index.ts +400 -400
  255. package/components/ui/input/index.ts +1 -1
  256. package/components/ui/input/input.stories.tsx +153 -153
  257. package/components/ui/input/input.test.tsx +47 -47
  258. package/components/ui/input/input.tsx +57 -57
  259. package/components/ui/input-otp/index.ts +1 -1
  260. package/components/ui/input-otp/input-otp.stories.tsx +120 -120
  261. package/components/ui/input-otp/input-otp.test.tsx +74 -74
  262. package/components/ui/input-otp/input-otp.tsx +101 -101
  263. package/components/ui/label/index.ts +1 -1
  264. package/components/ui/label/label.stories.tsx +74 -74
  265. package/components/ui/label/label.test.tsx +45 -45
  266. package/components/ui/label/label.tsx +53 -53
  267. package/components/ui/map/index.ts +1 -1
  268. package/components/ui/map/map.stories.tsx +86 -86
  269. package/components/ui/map/map.test.tsx +82 -82
  270. package/components/ui/map/map.tsx +506 -506
  271. package/components/ui/map/mock.test.tsx +13 -13
  272. package/components/ui/map-config/index.ts +1 -1
  273. package/components/ui/map-config/map-config.ts +18 -18
  274. package/components/ui/map-layers/index.ts +1 -1
  275. package/components/ui/map-layers/map-layers.test.tsx +48 -48
  276. package/components/ui/map-layers/map-layers.tsx +126 -126
  277. package/components/ui/map.exports/index.ts +1 -1
  278. package/components/ui/map.exports/map.exports.ts +31 -31
  279. package/components/ui/menubar/index.ts +1 -1
  280. package/components/ui/menubar/menubar.stories.tsx +130 -130
  281. package/components/ui/menubar/menubar.test.tsx +53 -53
  282. package/components/ui/menubar/menubar.tsx +265 -265
  283. package/components/ui/navigation-menu/index.ts +1 -1
  284. package/components/ui/navigation-menu/navigation-menu.stories.tsx +126 -126
  285. package/components/ui/navigation-menu/navigation-menu.test.tsx +47 -47
  286. package/components/ui/navigation-menu/navigation-menu.tsx +165 -165
  287. package/components/ui/notification-badge/index.ts +1 -1
  288. package/components/ui/notification-badge/notification-badge.stories.tsx +66 -66
  289. package/components/ui/notification-badge/notification-badge.test.tsx +61 -61
  290. package/components/ui/notification-badge/notification-badge.tsx +91 -91
  291. package/components/ui/page-header/index.ts +1 -1
  292. package/components/ui/page-header/page-header.stories.tsx +69 -69
  293. package/components/ui/page-header/page-header.test.tsx +37 -37
  294. package/components/ui/page-header/page-header.tsx +124 -124
  295. package/components/ui/pagination/index.ts +3 -3
  296. package/components/ui/pagination/pagination.stories.tsx +210 -210
  297. package/components/ui/pagination/pagination.test.tsx +63 -63
  298. package/components/ui/pagination/pagination.tsx +140 -140
  299. package/components/ui/pagination/use-pagination.ts +173 -173
  300. package/components/ui/popover/index.ts +1 -1
  301. package/components/ui/popover/popover.stories.tsx +73 -73
  302. package/components/ui/popover/popover.test.tsx +48 -48
  303. package/components/ui/popover/popover.tsx +54 -54
  304. package/components/ui/progress/index.ts +1 -1
  305. package/components/ui/progress/progress.stories.tsx +55 -55
  306. package/components/ui/progress/progress.test.tsx +23 -23
  307. package/components/ui/progress/progress.tsx +68 -68
  308. package/components/ui/radio-group/index.ts +1 -1
  309. package/components/ui/radio-group/radio-group.stories.tsx +114 -114
  310. package/components/ui/radio-group/radio-group.test.tsx +78 -78
  311. package/components/ui/radio-group/radio-group.tsx +93 -93
  312. package/components/ui/rating/index.ts +1 -1
  313. package/components/ui/rating/rating.stories.tsx +50 -50
  314. package/components/ui/rating/rating.test.tsx +48 -48
  315. package/components/ui/rating/rating.tsx +145 -145
  316. package/components/ui/resizable/index.ts +1 -1
  317. package/components/ui/resizable/resizable.stories.tsx +88 -88
  318. package/components/ui/resizable/resizable.test.tsx +61 -61
  319. package/components/ui/resizable/resizable.tsx +452 -452
  320. package/components/ui/rich-text-editor/index.ts +7 -7
  321. package/components/ui/rich-text-editor/rich-text-editor.stories.tsx +290 -290
  322. package/components/ui/rich-text-editor/rich-text-editor.test.tsx +86 -86
  323. package/components/ui/rich-text-editor/rich-text-editor.tsx +634 -634
  324. package/components/ui/rich-text-editor/use-rich-text-editor.ts +453 -453
  325. package/components/ui/route-map/index.ts +1 -1
  326. package/components/ui/route-map/route-map.stories.tsx +48 -48
  327. package/components/ui/route-map/route-map.test.tsx +108 -108
  328. package/components/ui/route-map/route-map.tsx +349 -349
  329. package/components/ui/scroll-area/index.ts +1 -1
  330. package/components/ui/scroll-area/scroll-area.stories.tsx +31 -31
  331. package/components/ui/scroll-area/scroll-area.test.tsx +27 -27
  332. package/components/ui/scroll-area/scroll-area.tsx +70 -70
  333. package/components/ui/search/index.ts +1 -1
  334. package/components/ui/search/search.stories.tsx +107 -107
  335. package/components/ui/search/search.test.tsx +67 -67
  336. package/components/ui/search/search.tsx +141 -141
  337. package/components/ui/select/index.ts +1 -1
  338. package/components/ui/select/select.stories.tsx +163 -163
  339. package/components/ui/select/select.test.tsx +99 -99
  340. package/components/ui/select/select.tsx +195 -195
  341. package/components/ui/separator/index.ts +1 -1
  342. package/components/ui/separator/separator.stories.tsx +55 -55
  343. package/components/ui/separator/separator.test.tsx +23 -23
  344. package/components/ui/separator/separator.tsx +39 -39
  345. package/components/ui/sheet/index.ts +1 -1
  346. package/components/ui/sheet/sheet.stories.tsx +93 -93
  347. package/components/ui/sheet/sheet.test.tsx +62 -62
  348. package/components/ui/sheet/sheet.tsx +149 -149
  349. package/components/ui/simple-map/index.ts +1 -1
  350. package/components/ui/simple-map/simple-map.stories.tsx +44 -44
  351. package/components/ui/simple-map/simple-map.test.tsx +36 -36
  352. package/components/ui/simple-map/simple-map.tsx +92 -92
  353. package/components/ui/skeleton/index.ts +1 -1
  354. package/components/ui/skeleton/skeleton.stories.tsx +36 -36
  355. package/components/ui/skeleton/skeleton.test.tsx +19 -19
  356. package/components/ui/skeleton/skeleton.tsx +25 -25
  357. package/components/ui/slider/index.ts +1 -1
  358. package/components/ui/slider/slider.stories.tsx +44 -44
  359. package/components/ui/slider/slider.test.tsx +25 -25
  360. package/components/ui/slider/slider.tsx +66 -66
  361. package/components/ui/sonner/index.ts +1 -1
  362. package/components/ui/sonner/sonner.stories.tsx +41 -41
  363. package/components/ui/sonner/sonner.test.tsx +24 -24
  364. package/components/ui/sonner/sonner.tsx +74 -74
  365. package/components/ui/stats-card/index.ts +2 -2
  366. package/components/ui/stats-card/stats-card-skeleton.tsx +1 -3
  367. package/components/ui/stats-card/stats-card.stories.tsx +99 -99
  368. package/components/ui/stats-card/stats-card.test.tsx +34 -34
  369. package/components/ui/stats-card/stats-card.tsx +93 -93
  370. package/components/ui/stepper/index.ts +3 -3
  371. package/components/ui/stepper/stepper.stories.tsx +171 -171
  372. package/components/ui/stepper/stepper.test.tsx +47 -47
  373. package/components/ui/stepper/stepper.tsx +190 -190
  374. package/components/ui/stepper/use-stepper.ts +139 -139
  375. package/components/ui/switch/index.ts +1 -1
  376. package/components/ui/switch/switch.stories.tsx +93 -93
  377. package/components/ui/switch/switch.test.tsx +44 -44
  378. package/components/ui/switch/switch.tsx +70 -70
  379. package/components/ui/table/index.ts +1 -1
  380. package/components/ui/table/table.stories.tsx +114 -114
  381. package/components/ui/table/table.test.tsx +43 -43
  382. package/components/ui/table/table.tsx +104 -104
  383. package/components/ui/tabs/index.ts +1 -1
  384. package/components/ui/tabs/tabs.stories.tsx +140 -140
  385. package/components/ui/tabs/tabs.test.tsx +50 -50
  386. package/components/ui/tabs/tabs.tsx +66 -66
  387. package/components/ui/textarea/index.ts +1 -1
  388. package/components/ui/textarea/textarea.stories.tsx +69 -69
  389. package/components/ui/textarea/textarea.test.tsx +41 -41
  390. package/components/ui/textarea/textarea.tsx +61 -61
  391. package/components/ui/timeline/index.ts +1 -1
  392. package/components/ui/timeline/timeline.stories.tsx +97 -97
  393. package/components/ui/timeline/timeline.test.tsx +53 -53
  394. package/components/ui/timeline/timeline.tsx +124 -124
  395. package/components/ui/toggle/index.ts +1 -1
  396. package/components/ui/toggle/toggle.stories.tsx +56 -56
  397. package/components/ui/toggle/toggle.test.tsx +32 -32
  398. package/components/ui/toggle/toggle.tsx +55 -55
  399. package/components/ui/toggle-group/index.ts +1 -1
  400. package/components/ui/toggle-group/toggle-group.stories.tsx +66 -66
  401. package/components/ui/toggle-group/toggle-group.test.tsx +47 -47
  402. package/components/ui/toggle-group/toggle-group.tsx +79 -79
  403. package/components/ui/tooltip/index.ts +1 -1
  404. package/components/ui/tooltip/tooltip.stories.tsx +83 -83
  405. package/components/ui/tooltip/tooltip.test.tsx +39 -39
  406. package/components/ui/tooltip/tooltip.tsx +69 -69
  407. package/components/ui/tree-view/index.ts +4 -4
  408. package/components/ui/tree-view/tree-view.stories.tsx +154 -154
  409. package/components/ui/tree-view/tree-view.test.tsx +58 -58
  410. package/components/ui/tree-view/tree-view.tsx +171 -171
  411. package/components/ui/tree-view/use-tree-view.ts +237 -237
  412. package/components.json +892 -892
  413. package/contexts/ApiKeyContext.test.tsx +26 -26
  414. package/contexts/ApiKeyContext.tsx +196 -196
  415. package/contexts/AssistenteContext.test.tsx +17 -17
  416. package/contexts/AssistenteContext.tsx +113 -113
  417. package/contexts/AuthContext.tsx +121 -118
  418. package/contexts/BrandColorsContext.test.tsx +21 -21
  419. package/contexts/BrandColorsContext.tsx +251 -251
  420. package/contexts/LanguageContext.tsx +1 -2
  421. package/contexts/LayoutContext.test.tsx +29 -29
  422. package/contexts/LayoutContext.tsx +140 -140
  423. package/contexts/ThemeContext.test.tsx +38 -38
  424. package/contexts/ThemeContext.tsx +111 -111
  425. package/contexts/index.ts +8 -8
  426. package/contexts/theme-data.ts +340 -340
  427. package/dist/AssistantChart-COGiOV-g.cjs +3541 -0
  428. package/dist/AssistantChart-CWX1OWNM.js +3373 -0
  429. package/dist/AudioPlayer-9psiEucT.cjs +1282 -0
  430. package/dist/AudioPlayer-Dp2bD1Gk.js +1278 -0
  431. package/dist/BrandColorsContext-DZT7JjeD.js +659 -0
  432. package/dist/BrandColorsContext-awnBCmC4.cjs +666 -0
  433. package/dist/CodeBlock-DYkTfR0f.js +221 -0
  434. package/dist/CodeBlock-EOvp9cVu.cjs +223 -0
  435. package/dist/CustomTooltipContent-BhdIeBEg.cjs +54 -0
  436. package/dist/CustomTooltipContent-CNbVB2NS.js +33 -0
  437. package/dist/FeatureCard-BZ4CYxFf.cjs +497 -0
  438. package/dist/FeatureCard-DNycVGwT.js +485 -0
  439. package/dist/FeatureCardSkeleton-DZqc96mt.js +27 -0
  440. package/dist/FeatureCardSkeleton-pTa0YNKP.cjs +29 -0
  441. package/dist/LayoutContext-BEq_-n98.cjs +96 -0
  442. package/dist/LayoutContext-DNl1xSoX.js +92 -0
  443. package/dist/ThemeContext-CMD3z2Dz.cjs +1930 -0
  444. package/dist/ThemeContext-x_F2zsnv.js +1923 -0
  445. package/dist/VerifyEmailPage-BJjAMUTW.js +3223 -0
  446. package/dist/VerifyEmailPage-Bv8Ah_TK.cjs +3235 -0
  447. package/dist/VerifyEmailPage-CkBYfsNy.cjs +3232 -0
  448. package/dist/VerifyEmailPage-Cyl55sJb.js +3226 -0
  449. package/dist/VerifyEmailPage-X14vhdyl.js +3296 -0
  450. package/dist/VerifyEmailPage-u_Dn7t1U.cjs +3305 -0
  451. package/dist/XerticaOrbe-Uk2JML1-.cjs +1927 -0
  452. package/dist/XerticaOrbe-jA5T2iOk.js +1925 -0
  453. package/dist/XerticaProvider-BErr83Bg.js +42 -0
  454. package/dist/XerticaProvider-CwOkHxiT.cjs +44 -0
  455. package/dist/XerticaProvider-DUOJg9iX.js +49 -0
  456. package/dist/XerticaProvider-Dl_b72_l.cjs +51 -0
  457. package/dist/XerticaXLogo-BX3ueACh.js +255 -0
  458. package/dist/XerticaXLogo-mqjoBiLI.js +252 -0
  459. package/dist/XerticaXLogo-qBPhwK3g.cjs +260 -0
  460. package/dist/XerticaXLogo-uQgwns_E.cjs +257 -0
  461. package/dist/alert-dialog-DhwPioBa.cjs +885 -0
  462. package/dist/alert-dialog-DqlRW_An.js +831 -0
  463. package/dist/assistant.cjs.js +8 -4
  464. package/dist/assistant.es.js +5 -11
  465. package/dist/avatar-3kO2Anrp.js +54 -0
  466. package/dist/avatar-BCM7YQRC.cjs +77 -0
  467. package/dist/blocks.cjs.js +9 -4
  468. package/dist/blocks.es.js +2 -16
  469. package/dist/brand.cjs.js +10 -5
  470. package/dist/brand.es.js +3 -11
  471. package/dist/breadcrumb-BKtHF4gk.cjs +98 -0
  472. package/dist/breadcrumb-ifNsA7Zl.js +90 -0
  473. package/dist/button-0BlA47It.cjs +85 -0
  474. package/dist/button-DZHzN1Gd.js +62 -0
  475. package/dist/cli.js +471 -93
  476. package/dist/components/brand/theme-toggle/ThemeToggle.d.ts +1 -1
  477. package/dist/components/index.d.ts +1 -1
  478. package/dist/dropdown-menu-BMcykFDf.cjs +225 -0
  479. package/dist/dropdown-menu-Dn_eV2Xb.js +190 -0
  480. package/dist/google-maps-loader-BCe58h9D.js +308 -0
  481. package/dist/google-maps-loader-casMyxlo.cjs +316 -0
  482. package/dist/hooks.cjs.js +12 -8
  483. package/dist/hooks.es.js +10 -27
  484. package/dist/index-9GWd0qxq.cjs +12 -0
  485. package/dist/index-BabBx2pa.js +6 -0
  486. package/dist/index.cjs.js +37 -32
  487. package/dist/index.es.js +30 -363
  488. package/dist/input-C_UiS2Py.cjs +152 -0
  489. package/dist/input-cc-PTD4R.js +123 -0
  490. package/dist/layout.cjs.js +10 -6
  491. package/dist/layout.es.js +7 -9
  492. package/dist/media.cjs.js +8 -3
  493. package/dist/media.es.js +1 -6
  494. package/dist/pages.cjs.js +8 -3
  495. package/dist/pages.es.js +1 -11
  496. package/dist/progress-C7Lti5wo.js +80 -0
  497. package/dist/progress-Cqwxbqs1.cjs +103 -0
  498. package/dist/rich-text-editor-DqLICivI.js +2832 -0
  499. package/dist/rich-text-editor-DxO1Hz3a.cjs +2903 -0
  500. package/dist/select-CH6v_KcQ.cjs +161 -0
  501. package/dist/select-D-xvCZK2.js +130 -0
  502. package/dist/sidebar-3XyzjVBw.js +792 -0
  503. package/dist/sidebar-B4ZWaMrE.js +792 -0
  504. package/dist/sidebar-BS1p2V7t.cjs +795 -0
  505. package/dist/sidebar-DyYvgyBj.cjs +795 -0
  506. package/dist/skeleton-DjiHerJn.cjs +87 -0
  507. package/dist/skeleton-DtR5tkYe.js +78 -0
  508. package/dist/slider-B00b9SVK.cjs +78 -0
  509. package/dist/slider-DQCNUUMj.js +56 -0
  510. package/dist/sonner-B-jWlik1.cjs +68 -0
  511. package/dist/sonner-C9tiqj4f.js +47 -0
  512. package/dist/tooltip-D8n9UYoU.cjs +72 -0
  513. package/dist/tooltip-RtbSmPYJ.js +48 -0
  514. package/dist/ui.cjs.js +23 -18
  515. package/dist/ui.es.js +16 -303
  516. package/dist/use-audio-player-B78fd2ct.js +188 -0
  517. package/dist/use-audio-player-DGvhPrgR.cjs +190 -0
  518. package/dist/use-mobile-BdXTRb0Z.cjs +51 -0
  519. package/dist/use-mobile-Ce2cBAQe.js +29 -0
  520. package/dist/xertica-assistant-B1NaSFFj.js +2173 -0
  521. package/dist/xertica-assistant-B687qEPU.js +2165 -0
  522. package/dist/xertica-assistant-CIaUlbIt.cjs +2180 -0
  523. package/dist/xertica-assistant-sOHwTgIP.cjs +2172 -0
  524. package/dist/xertica-ui.css +1 -1
  525. package/docs/ai-usage.md +195 -195
  526. package/docs/architecture-improvements.md +456 -456
  527. package/docs/architecture.md +312 -306
  528. package/docs/components/accordion.md +109 -109
  529. package/docs/components/alert-dialog.md +127 -127
  530. package/docs/components/alert.md +106 -106
  531. package/docs/components/aspect-ratio.md +58 -58
  532. package/docs/components/assistant-chart.md +47 -47
  533. package/docs/components/assistant.md +428 -426
  534. package/docs/components/audio-player.md +167 -167
  535. package/docs/components/avatar.md +101 -101
  536. package/docs/components/badge.md +84 -84
  537. package/docs/components/branding.md +252 -252
  538. package/docs/components/breadcrumb.md +104 -104
  539. package/docs/components/button.md +156 -156
  540. package/docs/components/calendar.md +141 -141
  541. package/docs/components/card-patterns.md +447 -445
  542. package/docs/components/card.md +245 -245
  543. package/docs/components/carousel.md +100 -100
  544. package/docs/components/chart.md +638 -638
  545. package/docs/components/checkbox.md +88 -88
  546. package/docs/components/code-block.md +105 -105
  547. package/docs/components/collapsible.md +86 -86
  548. package/docs/components/command.md +113 -113
  549. package/docs/components/context-menu.md +81 -81
  550. package/docs/components/dialog.md +198 -198
  551. package/docs/components/drawer.md +105 -105
  552. package/docs/components/dropdown-menu.md +127 -127
  553. package/docs/components/empty.md +127 -127
  554. package/docs/components/error-boundary.md +201 -191
  555. package/docs/components/file-upload.md +189 -189
  556. package/docs/components/floating-media-wrapper.md +63 -63
  557. package/docs/components/form.md +177 -177
  558. package/docs/components/formatted-document.md +105 -105
  559. package/docs/components/google-maps-loader.md +44 -44
  560. package/docs/components/header.md +177 -177
  561. package/docs/components/hooks.md +432 -430
  562. package/docs/components/hover-card.md +86 -86
  563. package/docs/components/image-with-fallback.md +107 -107
  564. package/docs/components/input-otp.md +95 -95
  565. package/docs/components/input.md +130 -130
  566. package/docs/components/label.md +69 -69
  567. package/docs/components/language-selector.md +20 -16
  568. package/docs/components/map-layers.md +138 -138
  569. package/docs/components/map.md +84 -84
  570. package/docs/components/markdown-message.md +47 -47
  571. package/docs/components/menubar.md +89 -89
  572. package/docs/components/modern-chat-input.md +164 -164
  573. package/docs/components/navigation-menu.md +83 -83
  574. package/docs/components/notification-badge.md +78 -78
  575. package/docs/components/page-header.md +93 -93
  576. package/docs/components/pages.md +323 -309
  577. package/docs/components/pagination.md +334 -334
  578. package/docs/components/popover.md +116 -116
  579. package/docs/components/progress.md +103 -103
  580. package/docs/components/radio-group.md +133 -133
  581. package/docs/components/rating.md +77 -77
  582. package/docs/components/resizable.md +84 -84
  583. package/docs/components/rich-text-editor.md +255 -255
  584. package/docs/components/route-map.md +124 -124
  585. package/docs/components/scroll-area.md +58 -58
  586. package/docs/components/search.md +87 -87
  587. package/docs/components/select.md +144 -144
  588. package/docs/components/separator.md +58 -58
  589. package/docs/components/sheet.md +122 -122
  590. package/docs/components/sidebar.md +314 -314
  591. package/docs/components/simple-map.md +51 -51
  592. package/docs/components/skeleton.md +99 -99
  593. package/docs/components/slider.md +84 -84
  594. package/docs/components/sonner.md +115 -115
  595. package/docs/components/stats-card.md +120 -120
  596. package/docs/components/stepper.md +268 -268
  597. package/docs/components/switch.md +106 -106
  598. package/docs/components/table.md +138 -138
  599. package/docs/components/tabs.md +117 -117
  600. package/docs/components/textarea.md +86 -86
  601. package/docs/components/theme-toggle.md +73 -73
  602. package/docs/components/timeline.md +121 -121
  603. package/docs/components/toggle-group.md +68 -68
  604. package/docs/components/toggle.md +62 -62
  605. package/docs/components/tooltip.md +116 -116
  606. package/docs/components/tree-view.md +238 -238
  607. package/docs/components/use-mobile.md +96 -96
  608. package/docs/components/video-player.md +68 -68
  609. package/docs/components/xertica-logo.md +36 -36
  610. package/docs/components/xertica-orbe.md +35 -35
  611. package/docs/components/xertica-provider.md +65 -65
  612. package/docs/components/xertica-xlogo.md +35 -35
  613. package/docs/decision-tree.md +293 -293
  614. package/docs/doc-audit.md +244 -243
  615. package/docs/form-sizing.md +162 -162
  616. package/docs/getting-started.md +616 -591
  617. package/docs/guidelines.md +330 -328
  618. package/docs/i18n.md +61 -57
  619. package/docs/installation.md +268 -267
  620. package/docs/layout.md +143 -143
  621. package/docs/llms.md +295 -295
  622. package/docs/patterns/analytics.md +194 -194
  623. package/docs/patterns/crud.md +149 -149
  624. package/docs/patterns/dashboard.md +138 -138
  625. package/docs/patterns/detail-page.md +296 -296
  626. package/docs/patterns/form.md +241 -241
  627. package/docs/patterns/login.md +156 -156
  628. package/docs/patterns/settings.md +368 -368
  629. package/docs/patterns/wizard.md +213 -213
  630. package/docs/state-management.md +289 -289
  631. package/guidelines/Guidelines.md +409 -406
  632. package/hooks/useTheme.test.tsx +16 -16
  633. package/hooks/useTheme.ts +4 -4
  634. package/imports/Podcast.tsx +540 -540
  635. package/imports/XerticaAi.tsx +46 -46
  636. package/imports/XerticaX.tsx +15 -15
  637. package/imports/svg-aueiaqngck.ts +20 -20
  638. package/imports/svg-v9krss1ozd.ts +23 -23
  639. package/imports/svg-vhrdofe3qe.ts +6 -6
  640. package/llms-compact.txt +2 -1
  641. package/llms.txt +2 -1
  642. package/mcp/resources.json +22 -22
  643. package/mcp/tools.json +35 -35
  644. package/package.json +219 -213
  645. package/scripts/ai-validator.ts +91 -91
  646. package/scripts/cleanup-case-dupes.ts +62 -62
  647. package/scripts/generate-ai-manifests.ts +107 -107
  648. package/styles/globals.css +13 -13
  649. package/styles/xertica/app-overrides/chat.css +61 -61
  650. package/styles/xertica/app-overrides/scrollbar.css +33 -33
  651. package/styles/xertica/base.css +90 -71
  652. package/styles/xertica/integrations/google-maps.css +76 -76
  653. package/styles/xertica/integrations/sonner.css +73 -73
  654. package/styles/xertica/theme-map.css +102 -99
  655. package/styles/xertica/tokens.css +240 -236
  656. package/templates/CLAUDE.md +16 -1
  657. package/templates/eslint.config.js +26 -26
  658. package/templates/guidelines/Guidelines.md +577 -553
  659. package/templates/package.json +69 -69
  660. package/templates/postcss.config.js +6 -6
  661. package/templates/src/app/App.tsx +46 -46
  662. package/templates/src/app/components/AppLayout.tsx +55 -55
  663. package/templates/src/app/components/AuthGuard.tsx +131 -82
  664. package/templates/src/app/context/AuthContext.tsx +108 -108
  665. package/templates/src/features/assistant/index.ts +5 -5
  666. package/templates/src/features/auth/index.ts +4 -4
  667. package/templates/src/features/auth/ui/AuthPageShell.tsx +32 -32
  668. package/templates/src/features/auth/ui/ForgotPasswordContent.tsx +70 -72
  669. package/templates/src/features/auth/ui/LoginContent.tsx +92 -92
  670. package/templates/src/features/auth/ui/ResetPasswordContent.tsx +6 -2
  671. package/templates/src/features/auth/ui/SocialLoginButtons.tsx +78 -78
  672. package/templates/src/features/auth/ui/VerifyEmailContent.tsx +2 -6
  673. package/templates/src/features/home/data/mock.ts +41 -35
  674. package/templates/src/features/home/index.ts +11 -11
  675. package/templates/src/features/home/store/dashboardStore.ts +25 -25
  676. package/templates/src/features/home/ui/HomeContent.tsx +117 -119
  677. package/templates/src/features/template/index.ts +5 -5
  678. package/templates/src/features/template/ui/CrudTemplate.tsx +1 -4
  679. package/templates/src/features/template/ui/LoginTemplate.tsx +1 -1
  680. package/templates/src/features/template/ui/TemplateContent.tsx +29 -21
  681. package/templates/src/locales/en/pages/templates.json +17 -17
  682. package/templates/src/locales/es/pages/templates.json +17 -17
  683. package/templates/src/locales/pt-BR/pages/templates.json +17 -17
  684. package/templates/src/main.tsx +11 -11
  685. package/templates/src/pages/AssistantPage.tsx +26 -20
  686. package/templates/src/pages/ForgotPasswordPage.tsx +6 -6
  687. package/templates/src/pages/HomePage.tsx +53 -49
  688. package/templates/src/pages/LoginPage.tsx +10 -10
  689. package/templates/src/pages/ResetPasswordPage.tsx +6 -6
  690. package/templates/src/pages/TemplatePage.tsx +28 -28
  691. package/templates/src/pages/VerifyEmailPage.tsx +6 -6
  692. package/templates/src/shared/config/navigation.ts +19 -19
  693. package/templates/src/shared/error-boundary.tsx +150 -154
  694. package/templates/src/shared/error-fallbacks.tsx +222 -226
  695. package/templates/src/shared/lib/auth.ts +20 -20
  696. package/templates/src/shared/types/auth.ts +3 -3
  697. package/templates/src/styles/index.css +95 -95
  698. package/templates/src/styles/xertica/tokens.css +240 -236
  699. package/templates/tsconfig.json +25 -25
  700. package/templates/tsconfig.node.json +12 -12
  701. package/templates/vite-env.d.ts +1 -1
  702. package/templates/vite.config.js +20 -20
  703. package/templates/vite.config.ts +54 -51
  704. package/utils/color-utils.ts +72 -72
  705. package/utils/demo-responses.test.ts +10 -10
  706. package/utils/demo-responses.ts +151 -151
  707. package/utils/gemini.test.ts +25 -25
  708. package/utils/gemini.ts +155 -155
@@ -0,0 +1,1927 @@
1
+ 'use strict';
2
+
3
+ const jsxRuntime = require('react/jsx-runtime');
4
+ const React = require('react');
5
+ const button = require('./button-0BlA47It.cjs');
6
+
7
+ function XerticaOrbe({ size = 64, className = "" }) {
8
+ const containerRef = React.useRef(null);
9
+ const animationRef = React.useRef(null);
10
+ const handleMouseEnter = () => {
11
+ if (animationRef.current) {
12
+ animationRef.current.setSpeed(2.5);
13
+ }
14
+ };
15
+ const handleMouseLeave = () => {
16
+ if (animationRef.current) {
17
+ animationRef.current.setSpeed(1);
18
+ }
19
+ };
20
+ React.useEffect(() => {
21
+ if (!containerRef.current) return;
22
+ const script = document.createElement("script");
23
+ script.src = "https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.12.2/lottie.min.js";
24
+ script.async = true;
25
+ script.onload = () => {
26
+ if (containerRef.current && window.lottie) {
27
+ const animationData = {
28
+ nm: "Xertica Light Spin",
29
+ ddd: 0,
30
+ h: 400,
31
+ w: 400,
32
+ meta: { g: "LottieFiles Figma v81" },
33
+ layers: [
34
+ {
35
+ ty: 0,
36
+ nm: "Spin3",
37
+ sr: 1,
38
+ st: 0,
39
+ op: 529.24,
40
+ ip: 0,
41
+ hd: false,
42
+ ddd: 0,
43
+ bm: 0,
44
+ hasMask: true,
45
+ ao: 0,
46
+ ks: {
47
+ a: { a: 0, k: [200, 200] },
48
+ s: { a: 0, k: [100, 100] },
49
+ sk: { a: 0, k: 0 },
50
+ p: { a: 0, k: [200, 200] },
51
+ r: { a: 0, k: 0 },
52
+ sa: { a: 0, k: 0 },
53
+ o: { a: 0, k: 100 }
54
+ },
55
+ masksProperties: [
56
+ {
57
+ nm: "",
58
+ inv: false,
59
+ mode: "a",
60
+ x: { a: 0, k: 0 },
61
+ o: { a: 0, k: 100 },
62
+ pt: {
63
+ a: 0,
64
+ k: {
65
+ c: true,
66
+ i: [
67
+ [0, -110.38],
68
+ [0, 0],
69
+ [110.38, 0],
70
+ [0, 0],
71
+ [0, 110.38],
72
+ [0, 0],
73
+ [-110.38, 0],
74
+ [0, 0]
75
+ ],
76
+ o: [
77
+ [0, 0],
78
+ [0, 110.38],
79
+ [0, 0],
80
+ [-110.38, 0],
81
+ [0, 0],
82
+ [0, -110.38],
83
+ [0, 0],
84
+ [110.38, 0]
85
+ ],
86
+ v: [
87
+ [400, 200],
88
+ [400, 200],
89
+ [200, 400],
90
+ [200, 400],
91
+ [0, 200],
92
+ [0, 200],
93
+ [200, 0],
94
+ [200, 0]
95
+ ]
96
+ }
97
+ }
98
+ }
99
+ ],
100
+ w: 400,
101
+ h: 400,
102
+ refId: "1",
103
+ ind: 1
104
+ }
105
+ ],
106
+ v: "5.7.0",
107
+ fr: 60,
108
+ op: 528.24,
109
+ ip: 0,
110
+ assets: [
111
+ {
112
+ nm: "[Asset] Spin3",
113
+ id: "1",
114
+ layers: [
115
+ {
116
+ ty: 4,
117
+ nm: "Gloss",
118
+ sr: 1,
119
+ st: 0,
120
+ op: 529.24,
121
+ ip: 0,
122
+ hd: false,
123
+ ddd: 0,
124
+ bm: 0,
125
+ hasMask: false,
126
+ ao: 0,
127
+ ks: {
128
+ a: { a: 0, k: [89.8, 39.39] },
129
+ s: { a: 0, k: [100, 100] },
130
+ sk: { a: 0, k: 0 },
131
+ p: { a: 0, k: [150.4, 85.05] },
132
+ r: { a: 0, k: -15 },
133
+ sa: { a: 0, k: 0 },
134
+ o: { a: 0, k: 70 }
135
+ },
136
+ ef: [
137
+ {
138
+ ty: 29,
139
+ nm: "",
140
+ en: 1,
141
+ ef: [
142
+ { ty: 0, nm: "sigma", v: { a: 0, k: 75 } },
143
+ { ty: 0, nm: "", v: { a: 0, k: 1 } },
144
+ { ty: 0, nm: "", v: { a: 0, k: 0 } }
145
+ ]
146
+ }
147
+ ],
148
+ shapes: [
149
+ {
150
+ ty: "sh",
151
+ bm: 0,
152
+ hd: false,
153
+ nm: "",
154
+ d: 1,
155
+ ks: {
156
+ a: 0,
157
+ k: {
158
+ c: true,
159
+ i: [
160
+ [0, 0],
161
+ [49.59, 0],
162
+ [0, 21.75],
163
+ [-49.59, 0],
164
+ [0, -21.75]
165
+ ],
166
+ o: [
167
+ [0, 21.75],
168
+ [-49.59, 0],
169
+ [0, -21.75],
170
+ [49.59, 0],
171
+ [0, 0]
172
+ ],
173
+ v: [
174
+ [179.6, 39.39],
175
+ [89.8, 78.77],
176
+ [0, 39.39],
177
+ [89.8, 0],
178
+ [179.6, 39.39]
179
+ ]
180
+ }
181
+ }
182
+ },
183
+ {
184
+ ty: "fl",
185
+ bm: 0,
186
+ hd: false,
187
+ nm: "",
188
+ c: { a: 0, k: [1, 1, 1] },
189
+ r: 1,
190
+ o: { a: 0, k: 100 }
191
+ }
192
+ ],
193
+ ind: 1
194
+ },
195
+ {
196
+ ty: 4,
197
+ nm: "Effect",
198
+ sr: 1,
199
+ st: 0,
200
+ op: 529.24,
201
+ ip: 0,
202
+ hd: false,
203
+ ddd: 0,
204
+ bm: 0,
205
+ hasMask: false,
206
+ ao: 0,
207
+ ks: {
208
+ a: { a: 0, k: [178.22, 178.22] },
209
+ s: { a: 0, k: [100, 100] },
210
+ sk: { a: 0, k: 0 },
211
+ p: { a: 0, k: [200, 200] },
212
+ r: { a: 0, k: 0 },
213
+ sa: { a: 0, k: 0 },
214
+ o: { a: 0, k: 30 }
215
+ },
216
+ ef: [
217
+ {
218
+ ty: 29,
219
+ nm: "",
220
+ en: 1,
221
+ ef: [
222
+ { ty: 0, nm: "sigma", v: { a: 0, k: 72 } },
223
+ { ty: 0, nm: "", v: { a: 0, k: 1 } },
224
+ { ty: 0, nm: "", v: { a: 0, k: 0 } }
225
+ ]
226
+ }
227
+ ],
228
+ shapes: [
229
+ {
230
+ ty: "sh",
231
+ bm: 0,
232
+ hd: false,
233
+ nm: "",
234
+ d: 1,
235
+ ks: {
236
+ a: 0,
237
+ k: {
238
+ c: true,
239
+ i: [
240
+ [0, 0],
241
+ [98.43, 0],
242
+ [0, 98.43],
243
+ [-98.43, 0],
244
+ [0, -98.43]
245
+ ],
246
+ o: [
247
+ [0, 98.43],
248
+ [-98.43, 0],
249
+ [0, -98.43],
250
+ [98.43, 0],
251
+ [0, 0]
252
+ ],
253
+ v: [
254
+ [356.44, 178.22],
255
+ [178.22, 356.44],
256
+ [0, 178.22],
257
+ [178.22, 0],
258
+ [356.44, 178.22]
259
+ ]
260
+ }
261
+ }
262
+ },
263
+ {
264
+ ty: "gf",
265
+ bm: 0,
266
+ hd: false,
267
+ nm: "",
268
+ e: { a: 0, k: [233.0399932861328, 77.59410095214844] },
269
+ g: {
270
+ p: 5,
271
+ k: {
272
+ a: 0,
273
+ k: [
274
+ 0,
275
+ 0.17258823529411763,
276
+ 0.15298039215686274,
277
+ 0.35690196078431374,
278
+ 0.25,
279
+ 0.6510196078431372,
280
+ 0.36474509803921573,
281
+ 0.8588627450980392,
282
+ 0.5,
283
+ 0.9882745098039215,
284
+ 0.4863137254901961,
285
+ 0.9176862745098039,
286
+ 0.75,
287
+ 0.4470980392156863,
288
+ 0.8039607843137254,
289
+ 0.9921960784313725,
290
+ 1,
291
+ 1,
292
+ 0.9932941176470588,
293
+ 0.9689803921568627,
294
+ 0,
295
+ 0.6,
296
+ 0.25,
297
+ 1,
298
+ 0.5,
299
+ 1,
300
+ 0.75,
301
+ 1,
302
+ 1,
303
+ 1
304
+ ]
305
+ }
306
+ },
307
+ t: 1,
308
+ a: { a: 0, k: 0 },
309
+ h: { a: 0, k: 0 },
310
+ s: { a: 0, k: [284.5249938964844, 430.0690002441406] },
311
+ r: 1,
312
+ o: { a: 0, k: 100 }
313
+ }
314
+ ],
315
+ ind: 2
316
+ },
317
+ {
318
+ ty: 0,
319
+ nm: "Symbol",
320
+ sr: 1,
321
+ st: 0,
322
+ op: 529.24,
323
+ ip: 0,
324
+ hd: false,
325
+ ddd: 0,
326
+ bm: 0,
327
+ hasMask: false,
328
+ ao: 0,
329
+ ks: {
330
+ a: { a: 0, k: [270.18, 279.17] },
331
+ s: { a: 0, k: [100, 100] },
332
+ sk: { a: 0, k: 0 },
333
+ p: { a: 0, k: [200.18, 200.17] },
334
+ r: { a: 0, k: 0 },
335
+ sa: { a: 0, k: 0 },
336
+ o: { a: 0, k: 100 }
337
+ },
338
+ w: 540.3699951171875,
339
+ h: 558.3469848632812,
340
+ refId: "2",
341
+ ind: 3
342
+ },
343
+ {
344
+ ty: 4,
345
+ nm: "Spin3 Bg",
346
+ sr: 1,
347
+ st: 0,
348
+ op: 529.24,
349
+ ip: 0,
350
+ hd: false,
351
+ ddd: 0,
352
+ bm: 0,
353
+ hasMask: false,
354
+ ao: 0,
355
+ ks: {
356
+ a: { a: 0, k: [200, 200] },
357
+ s: { a: 0, k: [100, 100] },
358
+ sk: { a: 0, k: 0 },
359
+ p: { a: 0, k: [200, 200] },
360
+ r: { a: 0, k: 0 },
361
+ sa: { a: 0, k: 0 },
362
+ o: { a: 0, k: 100 }
363
+ },
364
+ shapes: [
365
+ {
366
+ ty: "sh",
367
+ bm: 0,
368
+ hd: false,
369
+ nm: "",
370
+ d: 1,
371
+ ks: {
372
+ a: 0,
373
+ k: {
374
+ c: true,
375
+ i: [
376
+ [0, -110.38],
377
+ [0, 0],
378
+ [110.38, 0],
379
+ [0, 0],
380
+ [0, 110.38],
381
+ [0, 0],
382
+ [-110.38, 0],
383
+ [0, 0]
384
+ ],
385
+ o: [
386
+ [0, 0],
387
+ [0, 110.38],
388
+ [0, 0],
389
+ [-110.38, 0],
390
+ [0, 0],
391
+ [0, -110.38],
392
+ [0, 0],
393
+ [110.38, 0]
394
+ ],
395
+ v: [
396
+ [400, 200],
397
+ [400, 200],
398
+ [200, 400],
399
+ [200, 400],
400
+ [0, 200],
401
+ [0, 200],
402
+ [200, 0],
403
+ [200, 0]
404
+ ]
405
+ }
406
+ }
407
+ },
408
+ {
409
+ ty: "fl",
410
+ bm: 0,
411
+ hd: false,
412
+ nm: "",
413
+ c: { a: 0, k: [0.9365, 0.9365, 0.9365] },
414
+ r: 1,
415
+ o: { a: 0, k: 100 }
416
+ }
417
+ ],
418
+ ind: 4
419
+ }
420
+ ]
421
+ },
422
+ {
423
+ nm: "[Asset] Symbol",
424
+ id: "2",
425
+ layers: [
426
+ {
427
+ ty: 4,
428
+ nm: "Vector",
429
+ sr: 1,
430
+ st: 0,
431
+ op: 529.24,
432
+ ip: 0,
433
+ hd: false,
434
+ ddd: 0,
435
+ bm: 0,
436
+ hasMask: false,
437
+ ao: 0,
438
+ ks: {
439
+ a: {
440
+ a: 1,
441
+ k: [
442
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [102.86, 106.81], t: 0 },
443
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [102.86, 106.81], t: 132 },
444
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [156.67, 162.69], t: 264 },
445
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [102.86, 106.81], t: 396 },
446
+ { s: [102.86, 106.81], t: 528 }
447
+ ]
448
+ },
449
+ s: { a: 0, k: [100, 100] },
450
+ sk: { a: 0, k: 0 },
451
+ p: {
452
+ a: 1,
453
+ k: [
454
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [437.51, 292.88], t: 0 },
455
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [298.99, 437.66], t: 132 },
456
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [355.86, 209.24], t: 264 },
457
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [106.81, 148.61], t: 396 },
458
+ { s: [437.51, 292.88], t: 528 }
459
+ ]
460
+ },
461
+ r: {
462
+ a: 1,
463
+ k: [
464
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [0], t: 0 },
465
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [40.07], t: 132 },
466
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [-120], t: 264 },
467
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [-90], t: 396 },
468
+ { s: [0], t: 528 }
469
+ ]
470
+ },
471
+ sa: { a: 0, k: 0 },
472
+ o: { a: 0, k: 100 }
473
+ },
474
+ ef: [
475
+ {
476
+ ty: 29,
477
+ nm: "",
478
+ en: 1,
479
+ ef: [
480
+ {
481
+ ty: 0,
482
+ nm: "sigma",
483
+ v: {
484
+ a: 1,
485
+ k: [
486
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 0 },
487
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 132 },
488
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 264 },
489
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 396 },
490
+ { s: [180], t: 528 }
491
+ ]
492
+ }
493
+ },
494
+ { ty: 0, nm: "", v: { a: 0, k: 1 } },
495
+ { ty: 0, nm: "", v: { a: 0, k: 0 } }
496
+ ]
497
+ }
498
+ ],
499
+ shapes: [
500
+ {
501
+ ty: "sh",
502
+ bm: 0,
503
+ hd: false,
504
+ nm: "",
505
+ d: 1,
506
+ ks: {
507
+ a: 1,
508
+ k: [
509
+ {
510
+ o: { x: 0, y: 0 },
511
+ i: { x: 1, y: 1 },
512
+ s: [
513
+ {
514
+ c: true,
515
+ i: [
516
+ [0, 0],
517
+ [0, 0],
518
+ [0, 0],
519
+ [0, 0],
520
+ [0, 0]
521
+ ],
522
+ o: [
523
+ [0, 0],
524
+ [0, 0],
525
+ [0, 0],
526
+ [0, 0],
527
+ [0, 0]
528
+ ],
529
+ v: [
530
+ [61.54, 0],
531
+ [0, 90.75],
532
+ [83.31, 213.62],
533
+ [205.72, 213.62],
534
+ [61.54, 0]
535
+ ]
536
+ }
537
+ ],
538
+ t: 0
539
+ },
540
+ {
541
+ o: { x: 0, y: 0 },
542
+ i: { x: 1, y: 1 },
543
+ s: [
544
+ {
545
+ c: true,
546
+ i: [
547
+ [0, 0],
548
+ [0, 0],
549
+ [0, 0],
550
+ [0, 0],
551
+ [0, 0]
552
+ ],
553
+ o: [
554
+ [0, 0],
555
+ [0, 0],
556
+ [0, 0],
557
+ [0, 0],
558
+ [0, 0]
559
+ ],
560
+ v: [
561
+ [61.54, 0],
562
+ [0, 90.75],
563
+ [83.31, 213.62],
564
+ [205.72, 213.62],
565
+ [61.54, 0]
566
+ ]
567
+ }
568
+ ],
569
+ t: 132
570
+ },
571
+ {
572
+ o: { x: 0, y: 0 },
573
+ i: { x: 1, y: 1 },
574
+ s: [
575
+ {
576
+ c: true,
577
+ i: [
578
+ [0, 0],
579
+ [0, 0],
580
+ [0, 0],
581
+ [0, 0],
582
+ [0, 0]
583
+ ],
584
+ o: [
585
+ [0, 0],
586
+ [0, 0],
587
+ [0, 0],
588
+ [0, 0],
589
+ [0, 0]
590
+ ],
591
+ v: [
592
+ [93.74, 0],
593
+ [0, 138.23],
594
+ [126.89, 325.38],
595
+ [313.34, 325.38],
596
+ [93.74, 0]
597
+ ]
598
+ }
599
+ ],
600
+ t: 264
601
+ },
602
+ {
603
+ o: { x: 0, y: 0 },
604
+ i: { x: 1, y: 1 },
605
+ s: [
606
+ {
607
+ c: true,
608
+ i: [
609
+ [0, 0],
610
+ [0, 0],
611
+ [0, 0],
612
+ [0, 0],
613
+ [0, 0]
614
+ ],
615
+ o: [
616
+ [0, 0],
617
+ [0, 0],
618
+ [0, 0],
619
+ [0, 0],
620
+ [0, 0]
621
+ ],
622
+ v: [
623
+ [61.54, 0],
624
+ [0, 90.75],
625
+ [83.31, 213.62],
626
+ [205.72, 213.62],
627
+ [61.54, 0]
628
+ ]
629
+ }
630
+ ],
631
+ t: 396
632
+ },
633
+ {
634
+ s: [
635
+ {
636
+ c: true,
637
+ i: [
638
+ [0, 0],
639
+ [0, 0],
640
+ [0, 0],
641
+ [0, 0],
642
+ [0, 0]
643
+ ],
644
+ o: [
645
+ [0, 0],
646
+ [0, 0],
647
+ [0, 0],
648
+ [0, 0],
649
+ [0, 0]
650
+ ],
651
+ v: [
652
+ [61.54, 0],
653
+ [0, 90.75],
654
+ [83.31, 213.62],
655
+ [205.72, 213.62],
656
+ [61.54, 0]
657
+ ]
658
+ }
659
+ ],
660
+ t: 528
661
+ }
662
+ ]
663
+ }
664
+ },
665
+ {
666
+ ty: "fl",
667
+ bm: 0,
668
+ hd: false,
669
+ nm: "",
670
+ c: { a: 0, k: [1, 1, 1] },
671
+ r: 1,
672
+ o: { a: 0, k: 0 }
673
+ },
674
+ {
675
+ ty: "fl",
676
+ bm: 0,
677
+ hd: false,
678
+ nm: "",
679
+ c: { a: 0, k: [0.651, 0.3647, 0.8589] },
680
+ r: 1,
681
+ o: { a: 0, k: 100 }
682
+ }
683
+ ],
684
+ ind: 1
685
+ },
686
+ {
687
+ ty: 4,
688
+ nm: "Vector",
689
+ sr: 1,
690
+ st: 0,
691
+ op: 529.24,
692
+ ip: 0,
693
+ hd: false,
694
+ ddd: 0,
695
+ bm: 0,
696
+ hasMask: false,
697
+ ao: 0,
698
+ ks: {
699
+ a: {
700
+ a: 1,
701
+ k: [
702
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [102.86, 106.81], t: 0 },
703
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [102.86, 106.81], t: 132 },
704
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [119.8, 106.93], t: 264 },
705
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [102.86, 106.81], t: 396 },
706
+ { s: [102.86, 106.81], t: 528 }
707
+ ]
708
+ },
709
+ s: { a: 0, k: [100, 100] },
710
+ sk: { a: 0, k: 0 },
711
+ p: {
712
+ a: 1,
713
+ k: [
714
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [360.28, 385.95], t: 0 },
715
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [298.89, 148.47], t: 132 },
716
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [97.91, 161.07], t: 264 },
717
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [314.46, 176.99], t: 396 },
718
+ { s: [360.28, 385.95], t: 528 }
719
+ ]
720
+ },
721
+ r: {
722
+ a: 1,
723
+ k: [
724
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [0], t: 0 },
725
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [90], t: 132 },
726
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [236.43], t: 264 },
727
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [304.16], t: 396 },
728
+ { s: [359.99], t: 528 }
729
+ ]
730
+ },
731
+ sa: { a: 0, k: 0 },
732
+ o: { a: 0, k: 100 }
733
+ },
734
+ ef: [
735
+ {
736
+ ty: 29,
737
+ nm: "",
738
+ en: 1,
739
+ ef: [
740
+ {
741
+ ty: 0,
742
+ nm: "sigma",
743
+ v: {
744
+ a: 1,
745
+ k: [
746
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 0 },
747
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 132 },
748
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 264 },
749
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 396 },
750
+ { s: [180], t: 528 }
751
+ ]
752
+ }
753
+ },
754
+ { ty: 0, nm: "", v: { a: 0, k: 1 } },
755
+ { ty: 0, nm: "", v: { a: 0, k: 0 } }
756
+ ]
757
+ }
758
+ ],
759
+ shapes: [
760
+ {
761
+ ty: "sh",
762
+ bm: 0,
763
+ hd: false,
764
+ nm: "",
765
+ d: 1,
766
+ ks: {
767
+ a: 1,
768
+ k: [
769
+ {
770
+ o: { x: 0, y: 0 },
771
+ i: { x: 1, y: 1 },
772
+ s: [
773
+ {
774
+ c: true,
775
+ i: [
776
+ [0, 0],
777
+ [0, 0],
778
+ [0, 0],
779
+ [0, 0],
780
+ [0, 0]
781
+ ],
782
+ o: [
783
+ [0, 0],
784
+ [0, 0],
785
+ [0, 0],
786
+ [0, 0],
787
+ [0, 0]
788
+ ],
789
+ v: [
790
+ [61.54, 0],
791
+ [0, 90.75],
792
+ [83.31, 213.62],
793
+ [205.72, 213.62],
794
+ [61.54, 0]
795
+ ]
796
+ }
797
+ ],
798
+ t: 0
799
+ },
800
+ {
801
+ o: { x: 0, y: 0 },
802
+ i: { x: 1, y: 1 },
803
+ s: [
804
+ {
805
+ c: true,
806
+ i: [
807
+ [0, 0],
808
+ [0, 0],
809
+ [0, 0],
810
+ [0, 0],
811
+ [0, 0]
812
+ ],
813
+ o: [
814
+ [0, 0],
815
+ [0, 0],
816
+ [0, 0],
817
+ [0, 0],
818
+ [0, 0]
819
+ ],
820
+ v: [
821
+ [61.54, 0],
822
+ [0, 90.75],
823
+ [83.31, 213.62],
824
+ [205.72, 213.62],
825
+ [61.54, 0]
826
+ ]
827
+ }
828
+ ],
829
+ t: 132
830
+ },
831
+ {
832
+ o: { x: 0, y: 0 },
833
+ i: { x: 1, y: 1 },
834
+ s: [
835
+ {
836
+ c: true,
837
+ i: [
838
+ [0, 0],
839
+ [0, 0],
840
+ [0, 0],
841
+ [0, 0],
842
+ [0, 0]
843
+ ],
844
+ o: [
845
+ [0, 0],
846
+ [0, 0],
847
+ [0, 0],
848
+ [0, 0],
849
+ [0, 0]
850
+ ],
851
+ v: [
852
+ [71.68, 0],
853
+ [0, 90.85],
854
+ [97.03, 213.86],
855
+ [239.61, 213.86],
856
+ [71.68, 0]
857
+ ]
858
+ }
859
+ ],
860
+ t: 264
861
+ },
862
+ {
863
+ o: { x: 0, y: 0 },
864
+ i: { x: 1, y: 1 },
865
+ s: [
866
+ {
867
+ c: true,
868
+ i: [
869
+ [0, 0],
870
+ [0, 0],
871
+ [0, 0],
872
+ [0, 0],
873
+ [0, 0]
874
+ ],
875
+ o: [
876
+ [0, 0],
877
+ [0, 0],
878
+ [0, 0],
879
+ [0, 0],
880
+ [0, 0]
881
+ ],
882
+ v: [
883
+ [61.54, 0],
884
+ [0, 90.75],
885
+ [83.31, 213.62],
886
+ [205.72, 213.62],
887
+ [61.54, 0]
888
+ ]
889
+ }
890
+ ],
891
+ t: 396
892
+ },
893
+ {
894
+ s: [
895
+ {
896
+ c: true,
897
+ i: [
898
+ [0, 0],
899
+ [0, 0],
900
+ [0, 0],
901
+ [0, 0],
902
+ [0, 0]
903
+ ],
904
+ o: [
905
+ [0, 0],
906
+ [0, 0],
907
+ [0, 0],
908
+ [0, 0],
909
+ [0, 0]
910
+ ],
911
+ v: [
912
+ [61.54, 0],
913
+ [0, 90.75],
914
+ [83.31, 213.62],
915
+ [205.72, 213.62],
916
+ [61.54, 0]
917
+ ]
918
+ }
919
+ ],
920
+ t: 528
921
+ }
922
+ ]
923
+ }
924
+ },
925
+ {
926
+ ty: "fl",
927
+ bm: 0,
928
+ hd: false,
929
+ nm: "",
930
+ c: { a: 0, k: [0.651, 0.3647, 0.8589] },
931
+ r: 1,
932
+ o: { a: 0, k: 100 }
933
+ }
934
+ ],
935
+ ind: 2
936
+ },
937
+ {
938
+ ty: 4,
939
+ nm: "Vector",
940
+ sr: 1,
941
+ st: 0,
942
+ op: 529.24,
943
+ ip: 0,
944
+ hd: false,
945
+ ddd: 0,
946
+ bm: 0,
947
+ hasMask: false,
948
+ ao: 0,
949
+ ks: {
950
+ a: {
951
+ a: 1,
952
+ k: [
953
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [97.61, 99.15], t: 0 },
954
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [125.74, 126.73], t: 132 },
955
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [133.66, 136.63], t: 264 },
956
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [135.37, 137.5], t: 396 },
957
+ { s: [97.61, 99.15], t: 528 }
958
+ ]
959
+ },
960
+ s: { a: 0, k: [100, 100] },
961
+ sk: { a: 0, k: 0 },
962
+ p: {
963
+ a: 1,
964
+ k: [
965
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [115.44, 324.82], t: 0 },
966
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [152.61, 376.9], t: 132 },
967
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [137.62, 289.25], t: 264 },
968
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [291.87, 363.25], t: 396 },
969
+ { s: [115.44, 324.82], t: 528 }
970
+ ]
971
+ },
972
+ r: {
973
+ a: 1,
974
+ k: [
975
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [0], t: 0 },
976
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [64.79], t: 132 },
977
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 264 },
978
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [227.27], t: 396 },
979
+ { s: [360], t: 528 }
980
+ ]
981
+ },
982
+ sa: { a: 0, k: 0 },
983
+ o: { a: 0, k: 100 }
984
+ },
985
+ ef: [
986
+ {
987
+ ty: 29,
988
+ nm: "",
989
+ en: 1,
990
+ ef: [
991
+ {
992
+ ty: 0,
993
+ nm: "sigma",
994
+ v: {
995
+ a: 1,
996
+ k: [
997
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 0 },
998
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 132 },
999
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 264 },
1000
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 396 },
1001
+ { s: [180], t: 528 }
1002
+ ]
1003
+ }
1004
+ },
1005
+ { ty: 0, nm: "", v: { a: 0, k: 1 } },
1006
+ { ty: 0, nm: "", v: { a: 0, k: 0 } }
1007
+ ]
1008
+ }
1009
+ ],
1010
+ shapes: [
1011
+ {
1012
+ ty: "sh",
1013
+ bm: 0,
1014
+ hd: false,
1015
+ nm: "",
1016
+ d: 1,
1017
+ ks: {
1018
+ a: 1,
1019
+ k: [
1020
+ {
1021
+ o: { x: 0, y: 0 },
1022
+ i: { x: 1, y: 1 },
1023
+ s: [
1024
+ {
1025
+ c: true,
1026
+ i: [
1027
+ [0, 0],
1028
+ [0, 0],
1029
+ [0, 0],
1030
+ [0, 0],
1031
+ [0, 0]
1032
+ ],
1033
+ o: [
1034
+ [0, 0],
1035
+ [0, 0],
1036
+ [0, 0],
1037
+ [0, 0],
1038
+ [0, 0]
1039
+ ],
1040
+ v: [
1041
+ [61.26, 198.3],
1042
+ [195.23, 0.37],
1043
+ [72.83, 0],
1044
+ [0, 107.07],
1045
+ [61.26, 198.3]
1046
+ ]
1047
+ }
1048
+ ],
1049
+ t: 0
1050
+ },
1051
+ {
1052
+ o: { x: 0, y: 0 },
1053
+ i: { x: 1, y: 1 },
1054
+ s: [
1055
+ {
1056
+ c: true,
1057
+ i: [
1058
+ [0, 0],
1059
+ [0, 0],
1060
+ [0, 0],
1061
+ [0, 0],
1062
+ [0, 0]
1063
+ ],
1064
+ o: [
1065
+ [0, 0],
1066
+ [0, 0],
1067
+ [0, 0],
1068
+ [0, 0],
1069
+ [0, 0]
1070
+ ],
1071
+ v: [
1072
+ [78.85, 255.23],
1073
+ [251.47, 0.48],
1074
+ [93.75, 0],
1075
+ [0, 137.85],
1076
+ [78.85, 255.23]
1077
+ ]
1078
+ }
1079
+ ],
1080
+ t: 132
1081
+ },
1082
+ {
1083
+ o: { x: 0, y: 0 },
1084
+ i: { x: 1, y: 1 },
1085
+ s: [
1086
+ {
1087
+ c: true,
1088
+ i: [
1089
+ [0, 0],
1090
+ [0, 0],
1091
+ [0, 0],
1092
+ [0, 0],
1093
+ [0, 0]
1094
+ ],
1095
+ o: [
1096
+ [0, 0],
1097
+ [0, 0],
1098
+ [0, 0],
1099
+ [0, 0],
1100
+ [0, 0]
1101
+ ],
1102
+ v: [
1103
+ [83.59, 270.53],
1104
+ [266.66, 0.51],
1105
+ [99.4, 0],
1106
+ [0, 146.12],
1107
+ [83.59, 270.53]
1108
+ ]
1109
+ }
1110
+ ],
1111
+ t: 264
1112
+ },
1113
+ {
1114
+ o: { x: 0, y: 0 },
1115
+ i: { x: 1, y: 1 },
1116
+ s: [
1117
+ {
1118
+ c: true,
1119
+ i: [
1120
+ [0, 0],
1121
+ [0, 0],
1122
+ [0, 0],
1123
+ [0, 0],
1124
+ [0, 0]
1125
+ ],
1126
+ o: [
1127
+ [0, 0],
1128
+ [0, 0],
1129
+ [0, 0],
1130
+ [0, 0],
1131
+ [0, 0]
1132
+ ],
1133
+ v: [
1134
+ [84.75, 274.24],
1135
+ [270.75, 0.51],
1136
+ [100.75, 0],
1137
+ [0, 148.09],
1138
+ [84.75, 274.24]
1139
+ ]
1140
+ }
1141
+ ],
1142
+ t: 396
1143
+ },
1144
+ {
1145
+ s: [
1146
+ {
1147
+ c: true,
1148
+ i: [
1149
+ [0, 0],
1150
+ [0, 0],
1151
+ [0, 0],
1152
+ [0, 0],
1153
+ [0, 0]
1154
+ ],
1155
+ o: [
1156
+ [0, 0],
1157
+ [0, 0],
1158
+ [0, 0],
1159
+ [0, 0],
1160
+ [0, 0]
1161
+ ],
1162
+ v: [
1163
+ [61.26, 198.3],
1164
+ [195.23, 0.37],
1165
+ [72.83, 0],
1166
+ [0, 107.07],
1167
+ [61.26, 198.3]
1168
+ ]
1169
+ }
1170
+ ],
1171
+ t: 528
1172
+ }
1173
+ ]
1174
+ }
1175
+ },
1176
+ {
1177
+ ty: "fl",
1178
+ bm: 0,
1179
+ hd: false,
1180
+ nm: "",
1181
+ c: { a: 0, k: [0.9922, 0.6902, 0.9491] },
1182
+ r: 1,
1183
+ o: { a: 0, k: 100 }
1184
+ }
1185
+ ],
1186
+ ind: 3
1187
+ },
1188
+ {
1189
+ ty: 4,
1190
+ nm: "Vector",
1191
+ sr: 1,
1192
+ st: 0,
1193
+ op: 529.24,
1194
+ ip: 0,
1195
+ hd: false,
1196
+ ddd: 0,
1197
+ bm: 0,
1198
+ hasMask: false,
1199
+ ao: 0,
1200
+ ks: {
1201
+ a: {
1202
+ a: 1,
1203
+ k: [
1204
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [97.61, 99.15], t: 0 },
1205
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [135.07, 137.2], t: 132 },
1206
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [97.61, 99.15], t: 264 },
1207
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [151.05, 153.43], t: 396 },
1208
+ { s: [97.61, 99.15], t: 528 }
1209
+ ]
1210
+ },
1211
+ s: { a: 0, k: [100, 100] },
1212
+ sk: { a: 0, k: 0 },
1213
+ p: {
1214
+ a: 1,
1215
+ k: [
1216
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [355.04, 172.35], t: 0 },
1217
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [406.08, 339.27], t: 132 },
1218
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [173.45, 419.56], t: 264 },
1219
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [428.69, 129.65], t: 396 },
1220
+ { s: [355.04, 172.35], t: 528 }
1221
+ ]
1222
+ },
1223
+ r: {
1224
+ a: 1,
1225
+ k: [
1226
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [0], t: 0 },
1227
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [33.75], t: 132 },
1228
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 264 },
1229
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [229.26], t: 396 },
1230
+ { s: [360], t: 528 }
1231
+ ]
1232
+ },
1233
+ sa: { a: 0, k: 0 },
1234
+ o: { a: 0, k: 100 }
1235
+ },
1236
+ ef: [
1237
+ {
1238
+ ty: 29,
1239
+ nm: "",
1240
+ en: 1,
1241
+ ef: [
1242
+ {
1243
+ ty: 0,
1244
+ nm: "sigma",
1245
+ v: {
1246
+ a: 1,
1247
+ k: [
1248
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 0 },
1249
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 132 },
1250
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 264 },
1251
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 396 },
1252
+ { s: [180], t: 528 }
1253
+ ]
1254
+ }
1255
+ },
1256
+ { ty: 0, nm: "", v: { a: 0, k: 1 } },
1257
+ { ty: 0, nm: "", v: { a: 0, k: 0 } }
1258
+ ]
1259
+ }
1260
+ ],
1261
+ shapes: [
1262
+ {
1263
+ ty: "sh",
1264
+ bm: 0,
1265
+ hd: false,
1266
+ nm: "",
1267
+ d: 1,
1268
+ ks: {
1269
+ a: 1,
1270
+ k: [
1271
+ {
1272
+ o: { x: 0, y: 0 },
1273
+ i: { x: 1, y: 1 },
1274
+ s: [
1275
+ {
1276
+ c: true,
1277
+ i: [
1278
+ [0, 0],
1279
+ [0, 0],
1280
+ [0, 0],
1281
+ [0, 0],
1282
+ [0, 0]
1283
+ ],
1284
+ o: [
1285
+ [0, 0],
1286
+ [0, 0],
1287
+ [0, 0],
1288
+ [0, 0],
1289
+ [0, 0]
1290
+ ],
1291
+ v: [
1292
+ [61.26, 198.3],
1293
+ [195.23, 0.37],
1294
+ [72.83, 0],
1295
+ [0, 107.07],
1296
+ [61.26, 198.3]
1297
+ ]
1298
+ }
1299
+ ],
1300
+ t: 0
1301
+ },
1302
+ {
1303
+ o: { x: 0, y: 0 },
1304
+ i: { x: 1, y: 1 },
1305
+ s: [
1306
+ {
1307
+ c: true,
1308
+ i: [
1309
+ [0, 0],
1310
+ [0, 0],
1311
+ [0, 0],
1312
+ [0, 0],
1313
+ [0, 0]
1314
+ ],
1315
+ o: [
1316
+ [0, 0],
1317
+ [0, 0],
1318
+ [0, 0],
1319
+ [0, 0],
1320
+ [0, 0]
1321
+ ],
1322
+ v: [
1323
+ [84.75, 274.24],
1324
+ [270.15, 0.51],
1325
+ [100.75, 0],
1326
+ [0, 148.09],
1327
+ [84.75, 274.24]
1328
+ ]
1329
+ }
1330
+ ],
1331
+ t: 132
1332
+ },
1333
+ {
1334
+ o: { x: 0, y: 0 },
1335
+ i: { x: 1, y: 1 },
1336
+ s: [
1337
+ {
1338
+ c: true,
1339
+ i: [
1340
+ [0, 0],
1341
+ [0, 0],
1342
+ [0, 0],
1343
+ [0, 0],
1344
+ [0, 0]
1345
+ ],
1346
+ o: [
1347
+ [0, 0],
1348
+ [0, 0],
1349
+ [0, 0],
1350
+ [0, 0],
1351
+ [0, 0]
1352
+ ],
1353
+ v: [
1354
+ [61.26, 198.3],
1355
+ [195.23, 0.37],
1356
+ [72.83, 0],
1357
+ [0, 107.07],
1358
+ [61.26, 198.3]
1359
+ ]
1360
+ }
1361
+ ],
1362
+ t: 264
1363
+ },
1364
+ {
1365
+ o: { x: 0, y: 0 },
1366
+ i: { x: 1, y: 1 },
1367
+ s: [
1368
+ {
1369
+ c: true,
1370
+ i: [
1371
+ [0, 0],
1372
+ [0, 0],
1373
+ [0, 0],
1374
+ [0, 0],
1375
+ [0, 0]
1376
+ ],
1377
+ o: [
1378
+ [0, 0],
1379
+ [0, 0],
1380
+ [0, 0],
1381
+ [0, 0],
1382
+ [0, 0]
1383
+ ],
1384
+ v: [
1385
+ [94.72, 306.4],
1386
+ [302.11, 0.59],
1387
+ [112.65, 0],
1388
+ [0, 165.61],
1389
+ [94.72, 306.4]
1390
+ ]
1391
+ }
1392
+ ],
1393
+ t: 396
1394
+ },
1395
+ {
1396
+ s: [
1397
+ {
1398
+ c: true,
1399
+ i: [
1400
+ [0, 0],
1401
+ [0, 0],
1402
+ [0, 0],
1403
+ [0, 0],
1404
+ [0, 0]
1405
+ ],
1406
+ o: [
1407
+ [0, 0],
1408
+ [0, 0],
1409
+ [0, 0],
1410
+ [0, 0],
1411
+ [0, 0]
1412
+ ],
1413
+ v: [
1414
+ [61.26, 198.3],
1415
+ [195.23, 0.37],
1416
+ [72.83, 0],
1417
+ [0, 107.07],
1418
+ [61.26, 198.3]
1419
+ ]
1420
+ }
1421
+ ],
1422
+ t: 528
1423
+ }
1424
+ ]
1425
+ }
1426
+ },
1427
+ {
1428
+ ty: "fl",
1429
+ bm: 0,
1430
+ hd: false,
1431
+ nm: "",
1432
+ c: { a: 0, k: [0.9922, 0.6902, 0.9491] },
1433
+ r: 1,
1434
+ o: { a: 0, k: 100 }
1435
+ }
1436
+ ],
1437
+ ind: 4
1438
+ },
1439
+ {
1440
+ ty: 4,
1441
+ nm: "Vector",
1442
+ sr: 1,
1443
+ st: 0,
1444
+ op: 529.24,
1445
+ ip: 0,
1446
+ hd: false,
1447
+ ddd: 0,
1448
+ bm: 0,
1449
+ hasMask: false,
1450
+ ao: 0,
1451
+ ks: {
1452
+ a: {
1453
+ a: 1,
1454
+ k: [
1455
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [158.05, 279.17], t: 0 },
1456
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [158.05, 279.17], t: 132 },
1457
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [158.05, 279.17], t: 264 },
1458
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [219.56, 388.31], t: 396 },
1459
+ { s: [158.05, 279.17], t: 528 }
1460
+ ]
1461
+ },
1462
+ s: { a: 0, k: [100, 100] },
1463
+ sk: { a: 0, k: 0 },
1464
+ p: {
1465
+ a: 1,
1466
+ k: [
1467
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [158.05, 279.17], t: 0 },
1468
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [279.1, 176.02], t: 132 },
1469
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [291.23, 289.05], t: 264 },
1470
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [252.45, 349.85], t: 396 },
1471
+ { s: [158.05, 279.17], t: 528 }
1472
+ ]
1473
+ },
1474
+ r: {
1475
+ a: 1,
1476
+ k: [
1477
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [0], t: 0 },
1478
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [72.03], t: 132 },
1479
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [167.41], t: 264 },
1480
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [260.46], t: 396 },
1481
+ { s: [360], t: 528 }
1482
+ ]
1483
+ },
1484
+ sa: { a: 0, k: 0 },
1485
+ o: { a: 0, k: 100 }
1486
+ },
1487
+ ef: [
1488
+ {
1489
+ ty: 29,
1490
+ nm: "",
1491
+ en: 1,
1492
+ ef: [
1493
+ {
1494
+ ty: 0,
1495
+ nm: "sigma",
1496
+ v: {
1497
+ a: 1,
1498
+ k: [
1499
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 0 },
1500
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 132 },
1501
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 264 },
1502
+ { o: { x: 0, y: 0 }, i: { x: 1, y: 1 }, s: [180], t: 396 },
1503
+ { s: [180], t: 528 }
1504
+ ]
1505
+ }
1506
+ },
1507
+ { ty: 0, nm: "", v: { a: 0, k: 1 } },
1508
+ { ty: 0, nm: "", v: { a: 0, k: 0 } }
1509
+ ]
1510
+ }
1511
+ ],
1512
+ shapes: [
1513
+ {
1514
+ ty: "sh",
1515
+ bm: 0,
1516
+ hd: false,
1517
+ nm: "",
1518
+ d: 1,
1519
+ ks: {
1520
+ a: 1,
1521
+ k: [
1522
+ {
1523
+ o: { x: 0, y: 0 },
1524
+ i: { x: 1, y: 1 },
1525
+ s: [
1526
+ {
1527
+ c: true,
1528
+ i: [
1529
+ [0, 0],
1530
+ [0, 0],
1531
+ [0, 0],
1532
+ [0, 0],
1533
+ [0, 0],
1534
+ [0, 0],
1535
+ [0, 0],
1536
+ [0, 0],
1537
+ [0, 0]
1538
+ ],
1539
+ o: [
1540
+ [0, 0],
1541
+ [0, 0],
1542
+ [0, 0],
1543
+ [0, 0],
1544
+ [0, 0],
1545
+ [0, 0],
1546
+ [0, 0],
1547
+ [0, 0],
1548
+ [0, 0]
1549
+ ],
1550
+ v: [
1551
+ [316.1, 271.67],
1552
+ [177.78, 65.96],
1553
+ [133.2, 0],
1554
+ [10.8, 0],
1555
+ [193.49, 271.67],
1556
+ [0, 558.35],
1557
+ [122.4, 558.35],
1558
+ [167.82, 491.37],
1559
+ [316.1, 271.67]
1560
+ ]
1561
+ }
1562
+ ],
1563
+ t: 0
1564
+ },
1565
+ {
1566
+ o: { x: 0, y: 0 },
1567
+ i: { x: 1, y: 1 },
1568
+ s: [
1569
+ {
1570
+ c: true,
1571
+ i: [
1572
+ [0, 0],
1573
+ [0, 0],
1574
+ [0, 0],
1575
+ [0, 0],
1576
+ [0, 0],
1577
+ [0, 0],
1578
+ [0, 0],
1579
+ [0, 0],
1580
+ [0, 0]
1581
+ ],
1582
+ o: [
1583
+ [0, 0],
1584
+ [0, 0],
1585
+ [0, 0],
1586
+ [0, 0],
1587
+ [0, 0],
1588
+ [0, 0],
1589
+ [0, 0],
1590
+ [0, 0],
1591
+ [0, 0]
1592
+ ],
1593
+ v: [
1594
+ [316.1, 271.67],
1595
+ [177.78, 65.96],
1596
+ [133.2, 0],
1597
+ [10.8, 0],
1598
+ [193.49, 271.67],
1599
+ [0, 558.35],
1600
+ [122.4, 558.35],
1601
+ [167.82, 491.37],
1602
+ [316.1, 271.67]
1603
+ ]
1604
+ }
1605
+ ],
1606
+ t: 132
1607
+ },
1608
+ {
1609
+ o: { x: 0, y: 0 },
1610
+ i: { x: 1, y: 1 },
1611
+ s: [
1612
+ {
1613
+ c: true,
1614
+ i: [
1615
+ [0, 0],
1616
+ [0, 0],
1617
+ [0, 0],
1618
+ [0, 0],
1619
+ [0, 0],
1620
+ [0, 0],
1621
+ [0, 0],
1622
+ [0, 0],
1623
+ [0, 0]
1624
+ ],
1625
+ o: [
1626
+ [0, 0],
1627
+ [0, 0],
1628
+ [0, 0],
1629
+ [0, 0],
1630
+ [0, 0],
1631
+ [0, 0],
1632
+ [0, 0],
1633
+ [0, 0],
1634
+ [0, 0]
1635
+ ],
1636
+ v: [
1637
+ [316.1, 271.67],
1638
+ [177.78, 65.96],
1639
+ [133.2, 0],
1640
+ [10.8, 0],
1641
+ [193.49, 271.67],
1642
+ [0, 558.35],
1643
+ [122.4, 558.35],
1644
+ [167.82, 491.37],
1645
+ [316.1, 271.67]
1646
+ ]
1647
+ }
1648
+ ],
1649
+ t: 264
1650
+ },
1651
+ {
1652
+ o: { x: 0, y: 0 },
1653
+ i: { x: 1, y: 1 },
1654
+ s: [
1655
+ {
1656
+ c: true,
1657
+ i: [
1658
+ [0, 0],
1659
+ [0, 0],
1660
+ [0, 0],
1661
+ [0, 0],
1662
+ [0, 0],
1663
+ [0, 0],
1664
+ [0, 0],
1665
+ [0, 0],
1666
+ [0, 0]
1667
+ ],
1668
+ o: [
1669
+ [0, 0],
1670
+ [0, 0],
1671
+ [0, 0],
1672
+ [0, 0],
1673
+ [0, 0],
1674
+ [0, 0],
1675
+ [0, 0],
1676
+ [0, 0],
1677
+ [0, 0]
1678
+ ],
1679
+ v: [
1680
+ [439.11, 377.62],
1681
+ [247.05, 91.7],
1682
+ [185.16, 0],
1683
+ [15, 0],
1684
+ [268.86, 377.62],
1685
+ [0, 776.63],
1686
+ [170.16, 776.63],
1687
+ [233.28, 683.02],
1688
+ [439.11, 377.62]
1689
+ ]
1690
+ }
1691
+ ],
1692
+ t: 396
1693
+ },
1694
+ {
1695
+ s: [
1696
+ {
1697
+ c: true,
1698
+ i: [
1699
+ [0, 0],
1700
+ [0, 0],
1701
+ [0, 0],
1702
+ [0, 0],
1703
+ [0, 0],
1704
+ [0, 0],
1705
+ [0, 0],
1706
+ [0, 0],
1707
+ [0, 0]
1708
+ ],
1709
+ o: [
1710
+ [0, 0],
1711
+ [0, 0],
1712
+ [0, 0],
1713
+ [0, 0],
1714
+ [0, 0],
1715
+ [0, 0],
1716
+ [0, 0],
1717
+ [0, 0],
1718
+ [0, 0]
1719
+ ],
1720
+ v: [
1721
+ [316.1, 271.67],
1722
+ [177.78, 65.96],
1723
+ [133.2, 0],
1724
+ [10.8, 0],
1725
+ [193.49, 271.67],
1726
+ [0, 558.35],
1727
+ [122.4, 558.35],
1728
+ [167.82, 491.37],
1729
+ [316.1, 271.67]
1730
+ ]
1731
+ }
1732
+ ],
1733
+ t: 528
1734
+ }
1735
+ ]
1736
+ }
1737
+ },
1738
+ {
1739
+ ty: "fl",
1740
+ bm: 0,
1741
+ hd: false,
1742
+ nm: "",
1743
+ c: { a: 0, k: [1, 1, 1] },
1744
+ r: 1,
1745
+ o: { a: 0, k: 0 }
1746
+ },
1747
+ {
1748
+ ty: "fl",
1749
+ bm: 0,
1750
+ hd: false,
1751
+ nm: "",
1752
+ c: { a: 0, k: [0.9922, 0.6902, 0.9491] },
1753
+ r: 1,
1754
+ o: { a: 0, k: 100 }
1755
+ }
1756
+ ],
1757
+ ind: 5
1758
+ },
1759
+ {
1760
+ ty: 4,
1761
+ nm: "Symbol Bg",
1762
+ sr: 1,
1763
+ st: 0,
1764
+ op: 529.24,
1765
+ ip: 0,
1766
+ hd: false,
1767
+ ddd: 0,
1768
+ bm: 0,
1769
+ hasMask: false,
1770
+ ao: 0,
1771
+ ks: {
1772
+ a: { a: 0, k: [270.18, 279.17] },
1773
+ s: { a: 0, k: [100, 100] },
1774
+ sk: { a: 0, k: 0 },
1775
+ p: { a: 0, k: [270.18, 279.17] },
1776
+ r: { a: 0, k: 0 },
1777
+ sa: { a: 0, k: 0 },
1778
+ o: { a: 0, k: 100 }
1779
+ },
1780
+ shapes: [
1781
+ {
1782
+ ty: "sh",
1783
+ bm: 0,
1784
+ hd: false,
1785
+ nm: "",
1786
+ d: 1,
1787
+ ks: {
1788
+ a: 0,
1789
+ k: {
1790
+ c: true,
1791
+ i: [
1792
+ [0, 0],
1793
+ [0, 0],
1794
+ [0, 0],
1795
+ [0, 0],
1796
+ [0, 0],
1797
+ [0, 0],
1798
+ [0, 0],
1799
+ [0, 0],
1800
+ [0, 0]
1801
+ ],
1802
+ o: [
1803
+ [0, 0],
1804
+ [0, 0],
1805
+ [0, 0],
1806
+ [0, 0],
1807
+ [0, 0],
1808
+ [0, 0],
1809
+ [0, 0],
1810
+ [0, 0],
1811
+ [0, 0]
1812
+ ],
1813
+ v: [
1814
+ [540.37, 279.17],
1815
+ [405.84, 558.35],
1816
+ [134.53, 558.35],
1817
+ [0, 279.17],
1818
+ [134.53, 0],
1819
+ [405.84, 0],
1820
+ [540.37, 279.17],
1821
+ [405.84, 558.35],
1822
+ [134.53, 558.35]
1823
+ ]
1824
+ }
1825
+ }
1826
+ },
1827
+ {
1828
+ ty: "fl",
1829
+ bm: 0,
1830
+ hd: false,
1831
+ nm: "",
1832
+ c: { a: 0, k: [1, 1, 1] },
1833
+ r: 1,
1834
+ o: { a: 0, k: 0 }
1835
+ }
1836
+ ],
1837
+ ind: 6
1838
+ }
1839
+ ]
1840
+ }
1841
+ ]
1842
+ };
1843
+ animationRef.current = window.lottie.loadAnimation({
1844
+ container: containerRef.current,
1845
+ renderer: "svg",
1846
+ loop: true,
1847
+ autoplay: true,
1848
+ animationData
1849
+ });
1850
+ }
1851
+ };
1852
+ document.head.appendChild(script);
1853
+ return () => {
1854
+ if (document.head.contains(script)) {
1855
+ document.head.removeChild(script);
1856
+ }
1857
+ };
1858
+ }, []);
1859
+ return /* @__PURE__ */ jsxRuntime.jsxs(
1860
+ "div",
1861
+ {
1862
+ className: button.cn("relative flex items-center justify-center cursor-pointer", className),
1863
+ style: {
1864
+ width: size,
1865
+ height: size
1866
+ },
1867
+ onMouseEnter: handleMouseEnter,
1868
+ onMouseLeave: handleMouseLeave,
1869
+ "aria-label": "Xertica Orbe",
1870
+ role: "img",
1871
+ children: [
1872
+ /* @__PURE__ */ jsxRuntime.jsx(
1873
+ "div",
1874
+ {
1875
+ ref: containerRef,
1876
+ className: "absolute inset-0 rounded-full overflow-hidden",
1877
+ style: {
1878
+ width: size,
1879
+ height: size
1880
+ }
1881
+ }
1882
+ ),
1883
+ /* @__PURE__ */ jsxRuntime.jsx(
1884
+ "div",
1885
+ {
1886
+ className: "absolute inset-0 rounded-full pointer-events-none mix-blend-overlay",
1887
+ style: {
1888
+ width: size,
1889
+ height: size,
1890
+ background: `
1891
+ radial-gradient(
1892
+ circle at 30% 30%,
1893
+ rgba(255, 255, 255, 0.4) 0%,
1894
+ rgba(255, 255, 255, 0.2) 20%,
1895
+ rgba(255, 255, 255, 0.05) 40%,
1896
+ transparent 60%
1897
+ ),
1898
+ radial-gradient(
1899
+ circle at 70% 70%,
1900
+ rgba(0, 0, 0, 0.15) 0%,
1901
+ rgba(0, 0, 0, 0.08) 30%,
1902
+ transparent 60%
1903
+ )
1904
+ `
1905
+ }
1906
+ }
1907
+ ),
1908
+ /* @__PURE__ */ jsxRuntime.jsx(
1909
+ "div",
1910
+ {
1911
+ className: "absolute inset-0 rounded-full pointer-events-none",
1912
+ style: {
1913
+ width: size,
1914
+ height: size,
1915
+ boxShadow: `
1916
+ inset -2px -2px ${Math.max(4, size * 0.08)}px rgba(255, 255, 255, 0.15),
1917
+ inset 2px 2px ${Math.max(6, size * 0.1)}px rgba(0, 0, 0, 0.1)
1918
+ `
1919
+ }
1920
+ }
1921
+ )
1922
+ ]
1923
+ }
1924
+ );
1925
+ }
1926
+
1927
+ exports.XerticaOrbe = XerticaOrbe;