@magmamath/students-features 0.2.22 → 0.3.0-rc.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 (127) hide show
  1. package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js +8 -10
  2. package/dist/commonjs/features/chatbot/components/Alternatives/Alternatives.js.map +1 -1
  3. package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js +6 -15
  4. package/dist/commonjs/features/chatbot/components/ChatControls/ChatControls.js.map +1 -1
  5. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js +3 -4
  6. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
  7. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.js +3 -2
  8. package/dist/commonjs/features/chatbot/components/ChatMessage/MessageTextToSpeech.js.map +1 -1
  9. package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js +4 -5
  10. package/dist/commonjs/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -1
  11. package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js +14 -23
  12. package/dist/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -1
  13. package/dist/commonjs/features/chatbot/components/Chatbot.js +6 -9
  14. package/dist/commonjs/features/chatbot/components/Chatbot.js.map +1 -1
  15. package/dist/commonjs/features/chatbot/index.js +2 -2
  16. package/dist/commonjs/features/chatbot/index.js.map +1 -1
  17. package/dist/commonjs/features/chatbot/model/{model.js → ChatBotModel.js} +83 -117
  18. package/dist/commonjs/features/chatbot/model/ChatBotModel.js.map +1 -0
  19. package/dist/commonjs/features/chatbot/model/t2s.js +7 -4
  20. package/dist/commonjs/features/chatbot/model/t2s.js.map +1 -1
  21. package/dist/commonjs/features/chatbot/model/translation.js +15 -30
  22. package/dist/commonjs/features/chatbot/model/translation.js.map +1 -1
  23. package/dist/commonjs/features/chatbot/types/model.types.js.map +1 -1
  24. package/dist/commonjs/features/feedback/model/model.js +1 -1
  25. package/dist/commonjs/features/feedback/model/model.js.map +1 -1
  26. package/dist/commonjs/lib/effector/createEntityFieldStore.js +8 -26
  27. package/dist/commonjs/lib/effector/createEntityFieldStore.js.map +1 -1
  28. package/dist/commonjs/shared/icons/ChatbotIcon.js +106 -613
  29. package/dist/commonjs/shared/icons/ChatbotIcon.js.map +1 -1
  30. package/dist/module/features/chatbot/components/Alternatives/Alternatives.js +6 -8
  31. package/dist/module/features/chatbot/components/Alternatives/Alternatives.js.map +1 -1
  32. package/dist/module/features/chatbot/components/ChatControls/ChatControls.js +6 -15
  33. package/dist/module/features/chatbot/components/ChatControls/ChatControls.js.map +1 -1
  34. package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js +3 -4
  35. package/dist/module/features/chatbot/components/ChatMessage/MessageLoader.js.map +1 -1
  36. package/dist/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.js +3 -2
  37. package/dist/module/features/chatbot/components/ChatMessage/MessageTextToSpeech.js.map +1 -1
  38. package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js +4 -5
  39. package/dist/module/features/chatbot/components/ChatMessage/ReceivedMessage.js.map +1 -1
  40. package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js +14 -23
  41. package/dist/module/features/chatbot/components/ChatMessages/ChatbotMessages.js.map +1 -1
  42. package/dist/module/features/chatbot/components/Chatbot.js +6 -9
  43. package/dist/module/features/chatbot/components/Chatbot.js.map +1 -1
  44. package/dist/module/features/chatbot/index.js +1 -1
  45. package/dist/module/features/chatbot/index.js.map +1 -1
  46. package/dist/module/features/chatbot/model/ChatBotModel.js +208 -0
  47. package/dist/module/features/chatbot/model/ChatBotModel.js.map +1 -0
  48. package/dist/module/features/chatbot/model/t2s.js +8 -5
  49. package/dist/module/features/chatbot/model/t2s.js.map +1 -1
  50. package/dist/module/features/chatbot/model/translation.js +15 -30
  51. package/dist/module/features/chatbot/model/translation.js.map +1 -1
  52. package/dist/module/features/chatbot/types/model.types.js.map +1 -1
  53. package/dist/module/features/feedback/model/model.js +1 -1
  54. package/dist/module/features/feedback/model/model.js.map +1 -1
  55. package/dist/module/lib/effector/createEntityFieldStore.js +8 -26
  56. package/dist/module/lib/effector/createEntityFieldStore.js.map +1 -1
  57. package/dist/module/shared/icons/ChatbotIcon.js +107 -614
  58. package/dist/module/shared/icons/ChatbotIcon.js.map +1 -1
  59. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts +1 -1
  60. package/dist/typescript/commonjs/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -1
  61. package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts +2 -6
  62. package/dist/typescript/commonjs/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -1
  63. package/dist/typescript/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts +1 -1
  64. package/dist/typescript/commonjs/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +1 -1
  65. package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts +2 -6
  66. package/dist/typescript/commonjs/features/chatbot/components/Chatbot.d.ts.map +1 -1
  67. package/dist/typescript/commonjs/features/chatbot/index.d.ts +1 -1
  68. package/dist/typescript/commonjs/features/chatbot/index.d.ts.map +1 -1
  69. package/dist/typescript/commonjs/features/chatbot/model/{model.d.ts → ChatBotModel.d.ts} +19 -35
  70. package/dist/typescript/commonjs/features/chatbot/model/ChatBotModel.d.ts.map +1 -0
  71. package/dist/typescript/commonjs/features/chatbot/model/t2s.d.ts +1 -1
  72. package/dist/typescript/commonjs/features/chatbot/model/t2s.d.ts.map +1 -1
  73. package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts +1 -1
  74. package/dist/typescript/commonjs/features/chatbot/model/translation.d.ts.map +1 -1
  75. package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts +8 -20
  76. package/dist/typescript/commonjs/features/chatbot/types/model.types.d.ts.map +1 -1
  77. package/dist/typescript/commonjs/features/chatbot/types/translation.types.d.ts +1 -5
  78. package/dist/typescript/commonjs/features/chatbot/types/translation.types.d.ts.map +1 -1
  79. package/dist/typescript/commonjs/lib/effector/createEntityFieldStore.d.ts +4 -9
  80. package/dist/typescript/commonjs/lib/effector/createEntityFieldStore.d.ts.map +1 -1
  81. package/dist/typescript/commonjs/shared/icons/ChatbotIcon.d.ts.map +1 -1
  82. package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts +1 -1
  83. package/dist/typescript/module/features/chatbot/components/Alternatives/Alternatives.d.ts.map +1 -1
  84. package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts +2 -6
  85. package/dist/typescript/module/features/chatbot/components/ChatControls/ChatControls.d.ts.map +1 -1
  86. package/dist/typescript/module/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts +1 -1
  87. package/dist/typescript/module/features/chatbot/components/ChatMessages/ChatbotMessages.d.ts.map +1 -1
  88. package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts +2 -6
  89. package/dist/typescript/module/features/chatbot/components/Chatbot.d.ts.map +1 -1
  90. package/dist/typescript/module/features/chatbot/index.d.ts +1 -1
  91. package/dist/typescript/module/features/chatbot/index.d.ts.map +1 -1
  92. package/dist/typescript/module/features/chatbot/model/{model.d.ts → ChatBotModel.d.ts} +19 -35
  93. package/dist/typescript/module/features/chatbot/model/ChatBotModel.d.ts.map +1 -0
  94. package/dist/typescript/module/features/chatbot/model/t2s.d.ts +1 -1
  95. package/dist/typescript/module/features/chatbot/model/t2s.d.ts.map +1 -1
  96. package/dist/typescript/module/features/chatbot/model/translation.d.ts +1 -1
  97. package/dist/typescript/module/features/chatbot/model/translation.d.ts.map +1 -1
  98. package/dist/typescript/module/features/chatbot/types/model.types.d.ts +8 -20
  99. package/dist/typescript/module/features/chatbot/types/model.types.d.ts.map +1 -1
  100. package/dist/typescript/module/features/chatbot/types/translation.types.d.ts +1 -5
  101. package/dist/typescript/module/features/chatbot/types/translation.types.d.ts.map +1 -1
  102. package/dist/typescript/module/lib/effector/createEntityFieldStore.d.ts +4 -9
  103. package/dist/typescript/module/lib/effector/createEntityFieldStore.d.ts.map +1 -1
  104. package/dist/typescript/module/shared/icons/ChatbotIcon.d.ts.map +1 -1
  105. package/package.json +1 -1
  106. package/src/features/chatbot/components/Alternatives/Alternatives.tsx +7 -10
  107. package/src/features/chatbot/components/ChatControls/ChatControls.tsx +5 -10
  108. package/src/features/chatbot/components/ChatMessage/MessageLoader.tsx +2 -3
  109. package/src/features/chatbot/components/ChatMessage/MessageTextToSpeech.tsx +2 -1
  110. package/src/features/chatbot/components/ChatMessage/ReceivedMessage.tsx +3 -4
  111. package/src/features/chatbot/components/ChatMessages/ChatbotMessages.tsx +15 -24
  112. package/src/features/chatbot/components/Chatbot.tsx +6 -10
  113. package/src/features/chatbot/index.ts +1 -1
  114. package/src/features/chatbot/model/ChatBotModel.ts +222 -0
  115. package/src/features/chatbot/model/t2s.ts +8 -5
  116. package/src/features/chatbot/model/translation.ts +181 -201
  117. package/src/features/chatbot/types/model.types.ts +8 -14
  118. package/src/features/chatbot/types/translation.types.ts +10 -12
  119. package/src/features/feedback/model/model.ts +1 -1
  120. package/src/lib/effector/createEntityFieldStore.ts +9 -35
  121. package/src/shared/icons/ChatbotIcon.tsx +85 -500
  122. package/dist/commonjs/features/chatbot/model/model.js.map +0 -1
  123. package/dist/module/features/chatbot/model/model.js +0 -242
  124. package/dist/module/features/chatbot/model/model.js.map +0 -1
  125. package/dist/typescript/commonjs/features/chatbot/model/model.d.ts.map +0 -1
  126. package/dist/typescript/module/features/chatbot/model/model.d.ts.map +0 -1
  127. package/src/features/chatbot/model/model.ts +0 -268
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  import React from 'react';
4
- import Svg, { Path, Defs, LinearGradient, Stop, G, RadialGradient } from 'react-native-svg';
4
+ import Svg, { Path, Defs, LinearGradient, Stop, Mask, G, Rect } from 'react-native-svg';
5
5
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
6
  export const ChatbotIcon = ({
7
7
  width = 60,
@@ -9,639 +9,132 @@ export const ChatbotIcon = ({
9
9
  }) => /*#__PURE__*/_jsxs(Svg, {
10
10
  width: width,
11
11
  height: height,
12
- viewBox: "0 0 388 557",
12
+ viewBox: "0 0 60 60",
13
13
  fill: "none",
14
- children: [/*#__PURE__*/_jsx(Path, {
15
- d: "M379.929 297.928c-2.36 5.62-5.13 11.11-8.12 16.56-13.34 24.33-26.89 44.61-19.11 83.72 7.77 39.11 3.77 107.34-57.34 137.78-11.64 5.8-24.81 10.21-38.81 13.43-4.12.95-8.32 1.8-12.57 2.55-4.9.86-9.87 1.6-14.88 2.2-9.54 1.17-19.25 1.89-28.92 2.22-6.65.23-13.28.28-19.84.15-26.57-.49-51.87-3.72-71.8-8.52-8.02-1.93-15.17-4.11-21.18-6.47-.12-.05-.24-.09-.36-.14-43.44-17.2-88.3-56.56-86.97-146.53 1.33-90.22 51.11-122.22 87.78-134 36.66-11.78 77.11-36.67 78.44-85.11.87-31.56-8.73-49.63-10.25-71.96-.81-11.96.7-25.14 7.36-42.26 2.44-5.65 5-10.82 7.65-15.55 1.92-3.42 3.88-6.62 5.87-9.59 23.93-35.63 52.86-39.94 66.48-34.42.41.17.82.34 1.21.53.23.1.46.21.69.32.67.32 1.31.66 1.92 1.03.29.17.58.35.86.53.28.17.56.36.82.54.27.19.53.37.79.57.77.57 1.48 1.16 2.15 1.79.22.2.44.4.64.61 3.18 3.16 5.15 6.76 6.37 10.01.16.41.3.83.43 1.23.29.87.53 1.71.71 2.49.25 1.15-1.27 1.84-1.94.85-.59-.89-1.3-1.83-2.12-2.76-.19-.22-.39-.45-.61-.67-.1-.13-.23-.25-.35-.37-.16-.17-.33-.34-.5-.5-.41-.41-.85-.8-1.32-1.19-.26-.22-.53-.43-.81-.64-.49-.36-1-.72-1.54-1.05-.15-.1-.31-.19-.47-.28-.22-.13-.45-.26-.68-.38-.25-.14-.5-.26-.76-.39-.14-.07-.28-.13-.43-.19a3.9 3.9 0 00-.47-.2c-.17-.08-.35-.15-.53-.22-.66-.25-1.34-.48-2.06-.66-11.22-2.89-36 21.67-38.66 57.78-.2 2.69-.14 5.31.14 7.86.68 6.13 2.67 11.88 5.6 17.29 12.25 22.67 40.93 39.16 58.37 50.74 23.33 15.5 38.33 27.33 47.16 49.33.46 1.15.9 2.29 1.31 3.42 2.48 6.77 4.08 13.16 4.76 19.57 1.39 12.98-1.01 26-7.57 42.18-10.33 25.5 9 42 26.34 18.33 2.76-3.77 5.4-7.98 7.76-12.52 1.78-3.42 3.4-7.02 4.78-10.74 3.11-8.42 4.98-17.48 4.75-26.5-.01-.36-.02-.72-.04-1.08-.01-.35-.03-.71-.06-1.07-.02-.36-.05-.72-.08-1.08-.06-.79-.15-1.58-.25-2.36-.06-.47-.12-.94-.2-1.4-.05-.34-.1-.68-.17-1.02-.08-.49-.18-.98-.28-1.48-.1-.49-.21-.98-.32-1.47-.06-.26-.12-.51-.19-.76-.06-.26-.13-.53-.21-.8-.21-.8-.45-1.59-.71-2.39-.08-.26-.17-.51-.26-.77l-.33-.93c-.17-.45-.34-.9-.52-1.35-.15-.38-.31-.75-.47-1.12-.1-.24-.2-.47-.31-.7l-.01-.02c-.19-.45-.4-.89-.62-1.33-.08-.17-.16-.34-.25-.51-.08-.17-.17-.34-.26-.51-.39-.77-.81-1.54-1.26-2.29-.22-.38-.44-.75-.68-1.13-.17-.28-.35-.56-.53-.83-.36-.57-.74-1.12-1.13-1.67-.19-.28-.38-.55-.58-.82-.02-.02-.03-.04-.04-.05-.27-.36-.54-.72-.81-1.07-.77-.99-1.58-1.96-2.44-2.92-1.66-1.85.5-4.63 2.69-3.47.26.14.52.28.78.43 1.41.79 2.89 1.68 4.41 2.68.46.31.92.62 1.38.94.3.2.6.42.89.63 1.04.75 2.1 1.55 3.15 2.4.35.28.71.57 1.06.87.19.15.37.31.55.47 2.18 1.86 4.35 3.96 6.46 6.32.27.31.55.62.82.94.3.34.59.68.87 1.03.35.42.7.85 1.04 1.29 1.22 1.55 2.4 3.19 3.52 4.93.16.24.31.47.46.71.32.5.63 1.02.94 1.54.15.26.31.52.46.78.16.27.31.53.45.8.15.26.3.54.44.81.31.55.6 1.11.88 1.68a66.915 66.915 0 012.01 4.34c.13.31.26.61.38.92a82.877 82.877 0 011.08 2.82c9.57 26.77 6.29 47.82-1.88 67.27z",
16
- fill: "url(#paint0_linear_653_513)"
17
- }), /*#__PURE__*/_jsxs(G, {
18
- style: {
19
- mixBlendMode: 'screen'
20
- },
21
- opacity: 0.37,
22
- children: [/*#__PURE__*/_jsx(Path, {
23
- d: "M270.92 250.768c-.22 1.11-.44 2.19-.66 3.25-1.44-1.87-4.19-7.5-4.68-23.59-.66-21.98-5.76-32.2-10.43-40.86.18.55 3.47 10.42 2.66 21.92 0 0-4-10.5-10.17-7.33-6.17 3.16-3.5 13.5-3.5 13.5s10.5 34.16 2.83 62.33c-7.66 28.15-18.99 25-21.65 14.52.27.44 4.01 6.29 9.15-3.35 5.34-10 14.17-54-5.33-96.34-19.5-42.33-30.33-40.83-37.33-67.66-6.54-25.09-3.62-39.53-3.22-41.31-.42 1.42-3.23 10.42-8.45 11.64-5.67 1.33-9.17-2.33-9.17-2.33s-6.44 13.62-14.97 8.65c-.81-11.96.7-25.14 7.36-42.26 2.44-5.65 5-10.82 7.65-15.55-4.52 12.69-11.41 37.19-.54 44.66 14.89 10.22 26-42.23 26-42.23s4 4.89-1.11 24.67-6.22 44.67 11.34 69.11c17.55 24.45 28 38.89 32.66 54.22 0 0 2-10.44-2-22 0 0 10.22 6 13.34 12.89 0 0 1.55-7.55-5.77-21.76.41.26 12.92 8.35 22.23 35.92.57 2.68 1.31 5.3 1.98 7.4 0 0 6.22 19.22 1.78 41.89z",
24
- fill: "url(#paint1_radial_653_513)"
25
- }), /*#__PURE__*/_jsx(Path, {
26
- d: "M206.14 247.818c-1.48 17.07-14.37 31.92-14.77 32.38 7.33-10.67 13.1-39.54 7.77-41.54-1.18-.44-2.55.3-4.13 1.99l-.01.01c-3.42 2.83-8.95 9.58-16.53 25.66-4.26 9.04-9.82 17.66-16.06 25.2-14.19 15.07-29.49 14.25-29.49 14.25 27.55-12 42.22-41.56 42.66-49.78.45-8.22-9.11-8-9.11-8-6.66 6.22-17.33 8.89-17.33 8.89s11.78-6.45 23.11-37.11c11.33-30.67.89-69.78.89-69.78 14.5 10.83 17.17 43.5 9 68.83-8.17 25.34-1 24.17-1 24.17 14-18.83 26.5-12.5 25 4.83z",
27
- fill: "url(#paint2_radial_653_513)"
28
- }), /*#__PURE__*/_jsx(Path, {
29
- d: "M332.709 288.958c-.22.13-.44.24-.66.35.22-.12.44-.23.66-.35z",
30
- fill: "url(#paint3_radial_653_513)"
31
- }), /*#__PURE__*/_jsx(Path, {
32
- d: "M334.509 287.858c-.54.37-1.09.71-1.63 1.01.54-.31 1.08-.64 1.63-1.01z",
33
- fill: "url(#paint4_radial_653_513)"
34
- }), /*#__PURE__*/_jsx(Path, {
35
- d: "M369.139 250.878s3.11 44.89-4 52.44c-6.34 6.74-9.5-26.94-9.79-47.09-1.38 3.72-3 7.32-4.78 10.74.91 19.91-4.49 52-29.76 59.02-30 8.33-34.67-33.67-14.34-61.67 14.54-20.02 17.12-38.91 17.57-45.34 0 0-8.01 33.68-24.68 40.34 0 0 6-61.55-24.66-89.77 0 0 20.66 29.11 14.44 69.77-6.08 39.73-9.61 49.13-9.77 49.55.23-.35 4.98-7.23 8.88-3.55 4 3.78-2 17.78 1.33 30.45 3.24 12.26 10.42 17.87 10.87 18.21-.38-.16-6.73-2.69-9.75 3.34-3.12 6.23 12.66 18.67 26.22 15.11 13.55-3.55 1.33-12.88 1.33-12.88s16.45.88 25.11-16.23c8.67-17.11 9.11-26.22 9.11-26.22s1.34 18.67 7.56 20c6.22 1.33 20.89-13.33 9.11-66.22zm-51.58 85.19c-12.5.25-18.67-7.83-18.67-7.83s7.17 5.25 18.25 4.75 19.42-6.92 19.42-6.92c-.84 1.84-6.5 9.75-19 10z",
36
- fill: "url(#paint5_radial_653_513)"
14
+ children: [/*#__PURE__*/_jsxs(Mask, {
15
+ id: "a",
16
+ maskUnits: "userSpaceOnUse",
17
+ x: 0,
18
+ y: 0,
19
+ width: 60,
20
+ height: 60,
21
+ children: [/*#__PURE__*/_jsx(Rect, {
22
+ x: "0",
23
+ y: "0",
24
+ width: "60",
25
+ height: "60",
26
+ fill: "white"
27
+ }), /*#__PURE__*/_jsx(Rect, {
28
+ x: "10",
29
+ y: "10",
30
+ width: "40",
31
+ height: "40",
32
+ fill: "black"
37
33
  }), /*#__PURE__*/_jsx(Path, {
38
- d: "M167.14 329.318s-.01.02-.04.05l.06.12s-.01-.11-.02-.17zm27.78 19.34c11.55-.67 22.89-12 23.55-31.67 0 0 0 .01-.01.03 0 .02-.01.05-.02.08-.41 1.77-6.01 24.17-23.3 22.89-16.83-1.24-16.76-17.06-2.51-37.91-2.49 2.59-19.54 20.97-20.16 37.24 0 0-1.27-.7-2.58-2.5-.89 2.59-2.35 8.17-.97 14.17 1.89 8.22 14.55 15.34 29.55 3.67 0 0-18 2.89-18.89-16.23 0 0 3.78 10.89 15.34 10.23zm-9.45 8.31s-4.65 1.92-9.93-.68c-5.27-2.61-5.07-10.27-5.07-10.27s2.54 4.93 6.65 7.6 8.35 3.35 8.35 3.35z",
39
- fill: "url(#paint6_radial_653_513)"
40
- }), /*#__PURE__*/_jsx(Path, {
41
- d: "M113.579 271.358c-16.4.84-40.17 14.62-61.45 38.61a94.666 94.666 0 00-17.18 27.87c1.79-8.62 7.33-26.62 23.49-39.5-.69.31-11.85 5.47-18.63 15.48 0 0-6-7.5-4.34-13.5 1.67-6 8.34-9.16 12.17-9.66s5.5.33 5.5.33 9.67-8.83 32.67-15.67c14.32-4.25 23.15-4.43 27.77-3.96z",
42
- fill: "url(#paint7_radial_653_513)"
34
+ d: "M60 0H0v60h60V0z",
35
+ fill: "#ffffff"
43
36
  })]
44
37
  }), /*#__PURE__*/_jsxs(G, {
45
- style: {
46
- mixBlendMode: 'screen'
47
- },
48
- opacity: 0.4,
38
+ mask: "url(#a)",
49
39
  children: [/*#__PURE__*/_jsx(Path, {
50
- d: "M17.81 409.548l-4-23.56s-5.11 12.22-1.11 36.89 15.78 37.33 26 42.22c10.22 4.89 18.67-.89 18.67-.89s-2.89 14.67-20.89 7.56c0 0 6.22 16 23.11 9.56 16.89-6.44 19.11-31.33-4.89-49.56 0 0 6.89 16.67-7.11 18.22-14 1.55-25.56-17.56-29.78-40.44z",
51
- fill: "url(#paint8_radial_653_513)"
40
+ d: "M53.869 8.767v14.384M6.448 8.767v14.384",
41
+ stroke: "#A83900",
42
+ strokeWidth: 1.0538,
43
+ strokeLinecap: "round"
52
44
  }), /*#__PURE__*/_jsx(Path, {
53
- d: "M108.539 548.018c-8.02-1.93-15.17-4.11-21.18-6.47-.12-.05-.24-.09-.36-.14 8.21-8.41-2.03-24-13.42-23.64-14.22.44-25.77-6.22-25.77-6.22s11.77 2.22 26-2.67c13.92-4.79 10.8-17.46 10.67-17.98 9.99 11.34 9.77 36.87 9.77 36.87 8.77-30.27-12.54-58.59-13.1-59.33.53.38 17.43 12.83 24.43 37.11 5.22 18.09 4.22 34.14 2.96 42.47z",
54
- fill: "url(#paint9_radial_653_513)"
45
+ d: "M1.705 25.206c1.897-3.92 6.06-3.53 7.904-2.845L5.025 33.426c-1.897-1.107-5.216-4.3-3.32-8.22z",
46
+ fill: "#FF7819"
55
47
  }), /*#__PURE__*/_jsx(Path, {
56
- d: "M354.239 449.788c-2.21 2.89-6.109 6.16-12.599 6.7-12 1-10.33-12 1.33-23.33 6.38-6.2 9.72-16.34 11.44-24.25 1.53 12.27 1.809 26.4-.171 40.88z",
57
- fill: "url(#paint10_radial_653_513)"
48
+ d: "M58.295 25.206c-1.897-3.92-6.06-3.53-7.904-2.845l4.584 11.065c1.897-1.107 5.216-4.3 3.32-8.22z",
49
+ fill: "#FF275E"
58
50
  }), /*#__PURE__*/_jsx(Path, {
59
- d: "M351.989 462.218c-1.79 7.84-4.32 15.66-7.74 23.23-5.92.16-16.86 1.23-26.78 6.37-14.5 7.5-23.5 8-28-1s1.17-20.5 13.67-31.5 17.17-22.16 19.17-32.5c0 0 1.33 7.84-1 17.34-1.43 5.8 1.62 7.06 4.93 5.53-.36 2.86.04 5.47 1.23 7.8 3.45 6.74 12.15 12.67 24.52 4.73z",
60
- fill: "url(#paint11_radial_653_513)"
51
+ d: "M5.025 44.594v-9.168c.474-6.112 3.952-18.673 25.133-18.81 21.182-.138 25.186 12.593 25.291 18.81v9.168c0 6.111-4.954 11.065-11.064 11.065H16.09c-6.111 0-11.065-4.954-11.065-11.065z",
52
+ fill: "#A83900"
61
53
  }), /*#__PURE__*/_jsx(Path, {
62
- d: "M317.129 507.998c-.19.42-6.51 13.83-23.32 14.24-16.78.41-29.04-9.38-29.49-9.73.14.24 1.74 3.19-.01 4.06-1.76.88-9.01-7.86-9.64-8.61.34.67 3.63 7.25 1.97 8.2-1.75 1-6.67-5.09-7.25-5.67-.58-.58-1.58 4.92-.33 8.92 0 0-1.5-1.09-2.67-4 0 0-4.33 9.66.42 20.83 2.42 5.68 6.41 10.16 9.74 13.18-4.12.95-8.32 1.8-12.57 2.55-2.68-3.1-7.7-9.94-10.59-20.31-4.08-14.67-.08-26-.08-26s2.33 14.08 6.83 21.66c0 0-.33-10.66 1.83-14 2.17-3.33 3.42-1.66 3.42-1.66s-.17-5.17 2.58-4.92c0 0-.33-3.17.25-5.25.59-2.08 1.67-1.33 1.67-1.33s-3.17-13.67 5-24.75c8.17-11.09 17.33-13.34 28.08-19.25 10.29-5.66 15.69-9.65 16.14-9.97-.62.61-10.75 10.56-24.8 18.47-14.5 8.16-20.34 23.5-14.5 36.33 5.83 12.83 31.32 21.5 57.32 7.01z",
63
- fill: "url(#paint12_radial_653_513)"
54
+ d: "M5.025 42.594v-9.168c.474-6.112 3.952-18.673 25.133-18.81 21.182-.138 25.186 12.593 25.291 18.81v9.168c0 6.111-4.954 11.065-11.064 11.065H16.09c-6.111 0-11.065-4.954-11.065-11.065z",
55
+ fill: "url(#paint0_linear_722_2)"
56
+ }), /*#__PURE__*/_jsx(Mask, {
57
+ id: "b",
58
+ maskUnits: "userSpaceOnUse",
59
+ x: "10",
60
+ y: "22",
61
+ width: "40",
62
+ height: "26",
63
+ children: /*#__PURE__*/_jsx(Path, {
64
+ d: "M42.356 47.81H18.118c-4.001 0-7.244-3.244-7.244-7.244v-7.298c0-6.639 5.674-11.223 11.855-11.223 2.96 0 5.071 1.202 6.287 2.092.703.515 1.597.53 2.302.02 1.86-1.348 3.617-2.112 6.902-2.112 6.006 0 11.38 5.532 11.38 11.223v7.298c0 4-3.243 7.244-7.244 7.244z",
65
+ fill: "white"
66
+ })
67
+ }), /*#__PURE__*/_jsx(Rect, {
68
+ x: "0",
69
+ y: "0",
70
+ width: "60",
71
+ height: "60",
72
+ fill: "#ffffff",
73
+ mask: "url(#b)"
74
+ }), /*#__PURE__*/_jsxs(G, {
75
+ mask: "url(#b)",
76
+ children: [/*#__PURE__*/_jsx(Path, {
77
+ d: "M52.566 52.989L15.97 16.393c-.597-.598-.174-1.62.67-1.62h36.596c.524 0 .949.425.949.95v36.595c0 .845-1.022 1.268-1.62.67z",
78
+ fill: "#ffffff",
79
+ fillOpacity: 0.1
80
+ }), /*#__PURE__*/_jsx(G, {
81
+ filter: "url(#filter0_d_722_2)",
82
+ children: /*#__PURE__*/_jsx(Path, {
83
+ d: "M42.356 47.81H18.118c-4.001 0-7.244-3.244-7.244-7.244v-7.298c0-6.639 5.674-11.223 11.855-11.223 2.96 0 5.071 1.202 6.287 2.092.703.515 1.597.53 2.302.02 1.86-1.348 3.617-2.112 6.902-2.112 6.006 0 11.38 5.532 11.38 11.223v7.298c0 4-3.243 7.244-7.244 7.244z",
84
+ fill: "#F2F2F4"
85
+ })
86
+ }), /*#__PURE__*/_jsx(Path, {
87
+ d: "M42.357 47.544h-24.24a6.978 6.978 0 01-6.977-6.978v-7.298c0-6.466 5.528-10.956 11.589-10.956 2.883 0 4.94 1.17 6.13 2.04.793.581 1.813.602 2.615.021.917-.664 1.797-1.176 2.845-1.524 1.049-.349 2.28-.537 3.9-.537 2.922 0 5.702 1.346 7.755 3.399 2.054 2.054 3.36 4.795 3.36 7.557v7.298a6.978 6.978 0 01-6.977 6.978z",
88
+ stroke: "#811200",
89
+ strokeWidth: 0.355555
90
+ }), /*#__PURE__*/_jsx(Path, {
91
+ opacity: 0.33,
92
+ d: "M16.248 34.66c-.294-2.838-1.239-5.452-2.775-7.616-.445.65-1.4 2.215-1.667 3.282a12.456 12.456 0 00-.333 2.666v7.334c0 .666-.1 2.542 1.333 4.333 1.333 1.667 3 2.333 3.442 2.333V34.66zM25.972 34.982v12.344h9.56V34.91c-.133-3.61-1.922-7.251-4.726-9.893 0 0-.37.309-.667.309-.333 0-.666-.334-1.333-.667-2.333-1.666-4-2-6.333-2-1.067 0-2.607.295-3.243.443 3.132 2.174 5.912 6.727 6.742 11.88zM44.94 34.965c0 1.312.15 5.606.153 11.727.682-.344 2.18-1.3 2.713-2.366.666-1.334 1-2.334 1-3.334v-8.666c-.111-1.334-.933-4.534-3.334-6.667-3-2.667-5.333-3.136-8-3.068 3.49 1.794 6.829 6.264 7.469 12.373z",
93
+ fill: "#ffffff"
94
+ })]
64
95
  }), /*#__PURE__*/_jsx(Path, {
65
- opacity: 0.6,
66
- d: "M242.47 470.988c-9.16 15.83-29.33 33.83-24.5 57 2.97 14.24 7.83 22.18 11.13 26.18-9.54 1.17-19.25 1.89-28.92 2.22-6.65.23-13.28.28-19.84.15-2.27-8.36.84-15.95 5.79-22.21 2.89-3.66 6.4-6.86 9.84-9.51 12.34-9.5 15.5-9.83 24-24.33 8.5-14.5.67-32.17 8-45.5 7.34-13.33 23.67.17 14.5 16z",
67
- fill: "url(#paint13_radial_653_513)"
96
+ d: "M6.448 9.4a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
97
+ fill: "#FD7E14"
68
98
  }), /*#__PURE__*/_jsx(Path, {
69
- opacity: 0.5,
70
- d: "M170.229 399.798s17.17 9.31 25.94 29.22c8.77 19.91 8.77 22.1 8.77 22.1s-5.3-5.3-10.96-2.19c-5.66 3.1-7.85 4.2-7.49 9.31.36 5.11-.73 15.16-.73 15.16s-2.07-27.82-12.3-42.8c-10.23-14.98-14.61-13.52-13.15-24.11 1.46-10.59 9.92-6.7 9.92-6.7v.01z",
71
- fill: "url(#paint14_radial_653_513)"
72
- })]
73
- }), /*#__PURE__*/_jsxs(G, {
74
- style: {
75
- mixBlendMode: 'multiply'
76
- },
77
- opacity: 0.6,
78
- children: [/*#__PURE__*/_jsx(Path, {
79
- d: "M350.569 266.969c-2.36 4.54-5 8.75-7.76 12.52-17.34 23.67-36.67 7.17-26.34-18.33 6.56-16.18 8.96-29.2 7.57-42.18-.45 6.43-3.03 25.32-17.57 45.34-20.33 28-15.66 70 14.34 61.67 25.27-7.02 30.67-39.11 29.76-59.02zm-39.21 33.24c-8.89-3.55-5.55-22-2.22-28.89 0 0-1.56 15.34 4.67 21.11 6.07 5.64 13.2 3.66 13.54 3.57-.35.38-7.33 7.68-15.99 4.21z",
80
- fill: "url(#paint15_linear_653_513)"
99
+ d: "M53.868 9.4a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
100
+ fill: "#FF275E"
101
+ }), /*#__PURE__*/_jsx(Path, {
102
+ d: "M26.364 40.065c.747 1.71 2.087 2.621 3.952 2.687 1.969.07 3.48-.882 4.268-2.687",
103
+ stroke: "#FD7E14",
104
+ strokeWidth: 1.68609,
105
+ strokeLinecap: "round"
81
106
  }), /*#__PURE__*/_jsx(Path, {
82
- d: "M209.579 183.548s28.89 65.78 9.33 101.33c-19.56 35.55-21.11 41.11-16.11 42.78 5 1.67 12.67-3.33 15.67-10.67 0 0-5.33 24.33-23.33 23-18-1.33-16.67-19.33.67-42.33 17.34-23 28.56-58.22 13.78-114.11h-.01z",
83
- fill: "url(#paint16_radial_653_513)"
107
+ d: "M20.832 37.694a2.53 2.53 0 100-5.058 2.53 2.53 0 000 5.058z",
108
+ fill: "#FD7E14",
109
+ stroke: "#FD7E14",
110
+ strokeWidth: 0.210761
84
111
  }), /*#__PURE__*/_jsx(Path, {
85
- d: "M199.139 238.659s-2 14-17 42.33-40.83 44.67-60.17 44c-19.33-.67-25.5-13.001-17.5-25.171 8-12.16 19.17-15.659 20.17-19.829s-7-4-7-4 1 2.83-.33 6.17c-1.34 3.33-11.84 4.5-30.84 18-8.8 6.26-19.97 18.699-29.05 33.439 7.41-30.83 36.05-49.78 36.05-49.78s-21.16 9.34-34 31.34c-9.67 16.59-11.1 30.24-11.22 35.95-5.37 12.41-8.44 25.321-7.11 36.881 3.67 32 20.67 48.33 15.67 57-5 8.67-22 9.669-33-11.331s-10-47.669-10-47.669 3.33 20 12.66 38.33c9.34 18.34 17.67 11.67 14.67 1.67-1.57-5.23-8.21-20.24-11.43-38.94-4.78-27.73 3.75-56.031 22.42-77.081 21.97-24.76 46.59-38.65 63.01-38.65 20.67 0 16.78 10.111 4.67 18.891-11.79 8.55-22.67 26.45-2.34 28.11 20.34 1.67 47.34-23.001 61-52.001 13.67-29 20.67-27.659 20.67-27.659z",
86
- fill: "url(#paint17_radial_653_513)"
112
+ d: "M19.4 33.494l-.505.55a.729.729 0 101.081.977l.497-.559a.723.723 0 00-1.073-.968z",
113
+ fill: "#ffffff"
87
114
  }), /*#__PURE__*/_jsx(Path, {
88
- d: "M269.138 208.878s6.22 19.22 1.78 41.89c-4.44 22.67-9.44 34.89-11.11 42.56-1.67 7.67.56 17.22.56 17.22s1.89-8.33 11.11-25.67c9.22-17.34 13-46.11 11.56-63.44-1.44-17.33-4.67-32.78-12.22-33.78-7.55-1-4.11 13.56-1.67 21.22h-.01z",
89
- fill: "url(#paint18_radial_653_513)"
115
+ d: "M40.117 37.694a2.53 2.53 0 100-5.059 2.53 2.53 0 000 5.059z",
116
+ fill: "#FD7E14",
117
+ stroke: "#FD7E14",
118
+ strokeWidth: 0.210761
119
+ }), /*#__PURE__*/_jsx(Path, {
120
+ d: "M38.842 33.494l-.505.55a.728.728 0 101.082.977l.496-.559a.723.723 0 00-1.073-.968z",
121
+ fill: "#ffffff"
90
122
  })]
91
- }), /*#__PURE__*/_jsx(Path, {
92
- d: "M258.009 22.488c-.59-.89-1.3-1.83-2.12-2.76-.19-.22-.39-.45-.61-.67-.1-.13-.23-.25-.35-.37-.16-.18-.33-.34-.5-.5-.41-.41-.85-.8-1.32-1.19-.26-.22-.53-.43-.81-.64-.49-.36-1-.72-1.54-1.05-.15-.1-.31-.19-.47-.28-.22-.13-.45-.26-.68-.38-.25-.14-.5-.26-.76-.39-.14-.07-.28-.13-.43-.19a3.9 3.9 0 00-.47-.2c-.17-.08-.35-.15-.53-.22-.66-.25-1.34-.48-2.06-.66-11.22-2.89-36 21.67-38.66 57.78-.2 2.69-.14 5.31.14 7.86-5.77-31.19 13.88-50.3 1.86-56.86-10.32-5.63-24.39 6.79-31.82 14.64 23.93-35.63 52.86-39.94 66.48-34.42.41.17.82.34 1.21.53.23.1.46.21.69.32.67.32 1.31.66 1.92 1.03.29.17.58.35.86.53.28.17.56.36.82.54.27.19.53.37.79.57.77.57 1.48 1.16 2.15 1.79.22.2.44.4.64.61 3.18 3.16 5.15 6.76 6.37 10.01.16.41.3.83.43 1.23.29.87.53 1.71.71 2.49.25 1.15-1.27 1.84-1.94.85z",
93
- fill: "url(#paint19_radial_653_513)"
94
- }), /*#__PURE__*/_jsx(Path, {
95
- d: "M317.969 195.988c.46 1.15.9 2.29 1.31 3.42-.29-.54-.55-1.08-.81-1.64-11.11-24-32.44-34.67-50.66-37.34-18.23-2.66-28.89-15.11-52.89-59.55-.91-1.68-1.73-3.33-2.48-4.96 12.25 22.67 40.93 39.16 58.37 50.74 23.33 15.5 38.33 27.33 47.16 49.33z",
96
- fill: "url(#paint20_radial_653_513)"
97
- }), /*#__PURE__*/_jsx(Path, {
98
- d: "M382.028 291.098c13.78-34.67-5.78-70.22-13.78-69.78-8 .45-8 8.45-8 8.45s-.05-.01-.15-.04c-.01-.36-.02-.72-.04-1.08-.02-.36-.03-.71-.06-1.07-.02-.36-.05-.719-.08-1.079-.06-.79-.15-1.581-.25-2.361-.06-.47-.12-.93-.2-1.4-.05-.34-.1-.679-.17-1.019-.08-.49-.17-.991-.28-1.481-.1-.49-.21-.98-.32-1.47-.06-.26-.12-.51-.19-.76l-.21-.8a43.24 43.24 0 00-.97-3.16l-.33-.93a42.229 42.229 0 00-.99-2.47c-.09-.23-.2-.47-.31-.7l-.01-.02c-.19-.45-.4-.89-.62-1.33-.08-.17-.16-.339-.25-.509-.08-.17-.17-.341-.26-.511-.39-.77-.81-1.54-1.26-2.29-.22-.38-.44-.759-.68-1.129-.17-.28-.34-.561-.53-.831-.36-.57-.74-1.119-1.13-1.669-.19-.28-.38-.55-.58-.82-.02-.02-.03-.041-.04-.051a54.695 54.695 0 00-3.25-3.99c-1.66-1.85.5-4.63 2.69-3.47.26.14.52.28.78.43 1.41.79 2.89 1.681 4.41 2.681.46.31.92.62 1.38.94.3.2.6.419.89.629 1.04.75 2.1 1.551 3.15 2.401.35.28.71.57 1.06.87.19.15.37.31.55.47a67.017 67.017 0 016.46 6.319c.27.31.55.62.82.94.3.34.59.68.87 1.03.35.42.7.85 1.04 1.29 1.22 1.55 2.4 3.19 3.52 4.93a57.18 57.18 0 011.4 2.25c.15.26.31.52.46.78.16.27.31.53.45.8.15.26.3.54.44.81.31.55.6 1.11.88 1.68a66.915 66.915 0 012.01 4.34c.13.31.26.611.38.921a82.968 82.968 0 011.08 2.82c9.57 26.77 6.29 47.819-1.88 67.269.47-2.2 1.16-4.48 2.1-6.83z",
99
- fill: "url(#paint21_radial_653_513)"
100
- }), /*#__PURE__*/_jsx(Path, {
101
- opacity: 0.4,
102
- d: "M204.14 543.429c-5.89.33-1.93-10.59-1.79-10.99-.3.19-6.31 4.08-5.99 11.66.2 4.58 2.21 9.23 3.82 12.29-6.65.23-13.28.28-19.84.15-2.27-8.36.84-15.95 5.79-22.21 5.25-4.98 13.91-11.61 18.9-8.34 7.44 4.89 5.11 17.11-.89 17.44z",
103
- fill: "url(#paint22_radial_653_513)"
104
- }), /*#__PURE__*/_jsx(Path, {
105
- d: "M294.55 416.088c-13.01 20.3-60.55 24.84-81.41 10.56-3.97-2.72-4.83-6.21-6.17-10.83-7.68-26.57 17.61-52.97 46.88-58.88 26.28-5.31 43.69-4.1 47.16 1.58 2.38 3.9.52 6.83-.87 8.28 1.78 6.87 6.52 30.39-5.59 49.29z",
106
- fill: "#fff"
107
- }), /*#__PURE__*/_jsx(Path, {
108
- d: "M301.029 372.318c0-2-2-7.67-2.89-8.56-.89-.89-6-4-8.78-4.22-2.78-.22-8.78-1.44-14.11-.44s-25.67 1.22-29 2.78c-.28.13-.76.35-1.39.65 3.58 7.28 8.12 20.18 11.16 27.68 24.35-7.95 44.66-6.47 44.22 6-.56 15.67 2.89-4.78 3.44-7.44.55-2.66-2.67-14.44-2.67-16.44l.02-.01z",
109
- fill: "url(#paint23_linear_653_513)"
110
- }), /*#__PURE__*/_jsx(Path, {
111
- d: "M232.528 369.338c-9.54 6.06-20.85 15.4-23.28 26.76-4.11 19.22 2.33 27.11 2.33 27.11s-5.67-15.22 24.67-30.78c1.88-.97 3.78-1.88 5.69-2.74-2.8-6.93-6.1-13.64-9.42-20.35h.01z",
112
- fill: "url(#paint24_linear_653_513)"
113
- }), /*#__PURE__*/_jsx(Path, {
114
- d: "M302.719 365.238c1.47-1.53 3.44-4.63.92-8.75-3.67-6-22.06-7.28-49.83-1.67-30.93 6.25-56.28 34.04-48.16 62.11 1.41 4.88 4.44 9.19 8.64 12.06 22.04 15.08 68.77 9.78 82.52-11.67 12.8-19.97 7.79-44.82 5.91-52.08zm-30.25 64.64c-20.66 7.78-48.55 5.22-59.55-4.89 0 0-12.11-10.33 4.22-35.44 16.33-25.12 59.33-30 70.22-26.34 10.89 3.67 12.11 9.56 12.22 24.89.12 15.33-6.44 34-27.11 41.78z",
115
- fill: "#4B0A40"
116
- }), /*#__PURE__*/_jsx(Path, {
117
- d: "M257.989 427.798c15.32-3.59 24.338-21.012 20.143-38.912-4.196-17.901-20.016-29.502-35.335-25.911-15.32 3.59-24.338 21.012-20.142 38.912 4.195 17.901 20.015 29.502 35.334 25.911z",
118
- fill: "#4B0A40"
119
- }), /*#__PURE__*/_jsx(Path, {
120
- d: "M273.588 412.818c-3.54 6.82-9.24 11.46-16.07 13.06-1.7.4-3.44.6-5.18.6-10.97 0-21.17-7.86-25.93-19.35 4.32-5.02 10.37-9.51 17.65-12.77 11-4.93 22.72-6.19 32.29-4.17 1.68 7.92.7 15.93-2.76 22.63z",
121
- fill: "url(#paint25_linear_653_513)"
122
- }), /*#__PURE__*/_jsx(Path, {
123
- d: "M226.639 414.158c6.351 0 11.5-5.149 11.5-11.5s-5.149-11.5-11.5-11.5c-6.352 0-11.5 5.149-11.5 11.5s5.148 11.5 11.5 11.5zM61.98 416.088c13.01 20.3 60.549 24.84 81.409 10.56 3.97-2.72 4.83-6.21 6.17-10.83 7.68-26.57-17.61-52.97-46.88-58.88-26.28-5.31-43.69-4.1-47.16 1.58-2.38 3.9-.52 6.83.87 8.28-1.78 6.87-6.52 30.39 5.59 49.29z",
124
- fill: "#fff"
125
- }), /*#__PURE__*/_jsx(Path, {
126
- d: "M55.498 372.318c0-2 2-7.67 2.89-8.56.89-.89 6-4 8.78-4.22 2.78-.22 8.78-1.44 14.11-.44s25.67 1.22 29 2.78c.28.13.76.35 1.39.65-3.58 7.28-8.12 20.18-11.16 27.68-24.35-7.95-44.66-6.47-44.22 6 .56 15.67-2.89-4.78-3.44-7.44-.55-2.66 2.67-14.44 2.67-16.44l-.02-.01z",
127
- fill: "url(#paint26_linear_653_513)"
128
- }), /*#__PURE__*/_jsx(Path, {
129
- d: "M124.01 369.338c9.54 6.06 20.85 15.4 23.28 26.76 4.11 19.22-2.33 27.11-2.33 27.11s5.67-15.22-24.67-30.78c-1.88-.97-3.78-1.88-5.69-2.74 2.8-6.93 6.1-13.64 9.42-20.35h-.01z",
130
- fill: "url(#paint27_linear_653_513)"
131
- }), /*#__PURE__*/_jsx(Path, {
132
- d: "M59.72 417.318c13.75 21.45 60.479 26.75 82.519 11.67 4.2-2.87 7.23-7.18 8.64-12.06 8.12-28.07-17.23-55.86-48.16-62.11-27.77-5.61-46.16-4.33-49.83 1.67-2.52 4.12-.55 7.22.92 8.75-1.88 7.26-6.89 32.11 5.91 52.08zm-2.77-29.22c.11-15.33 1.33-21.22 12.22-24.89 10.89-3.66 53.889 1.22 70.219 26.34 16.33 25.11 4.22 35.44 4.22 35.44-11 10.11-38.89 12.67-59.55 4.89-20.67-7.78-27.23-26.45-27.11-41.78z",
133
- fill: "#4B0A40"
134
- }), /*#__PURE__*/_jsx(Path, {
135
- d: "M133.901 401.929c4.195-17.901-4.823-35.322-20.142-38.913-15.32-3.59-31.14 8.011-35.335 25.911-4.195 17.901 4.823 35.322 20.142 38.913 15.32 3.59 31.14-8.011 35.335-25.911z",
136
- fill: "#4B0A40"
137
- }), /*#__PURE__*/_jsx(Path, {
138
- d: "M82.939 412.818c3.54 6.82 9.24 11.46 16.07 13.06 1.699.4 3.439.6 5.179.6 10.97 0 21.171-7.86 25.931-19.35-4.32-5.02-10.371-9.51-17.651-12.77-11-4.93-22.72-6.19-32.29-4.17-1.68 7.92-.7 15.93 2.76 22.63z",
139
- fill: "url(#paint28_linear_653_513)"
140
- }), /*#__PURE__*/_jsx(Path, {
141
- d: "M81.09 410.158c6.351 0 11.5-5.149 11.5-11.5s-5.149-11.5-11.5-11.5-11.5 5.149-11.5 11.5 5.149 11.5 11.5 11.5z",
142
- fill: "#fff"
143
- }), /*#__PURE__*/_jsx(Path, {
144
- d: "M232.05 452.368c1.89.34 3.13 2.18 2.72 4.05-2.41 11.22-10.71 29.01-31.64 33.9-22.03 5.15-36.76-5.38-41.94-9.98a3.392 3.392 0 01-.63-4.33l.42-.68c.97-1.57 3.01-2.06 4.62-1.14 9.06 5.19 21.58 9.5 35.2 5.81 19.06-5.17 25.33-18.08 27.37-25.22a3.395 3.395 0 013.87-2.41h.01z",
145
- fill: "#4B0A40"
146
- }), /*#__PURE__*/_jsxs(Defs, {
147
- children: [/*#__PURE__*/_jsxs(LinearGradient, {
148
- id: "paint0_linear_653_513",
149
- x1: 193.829,
150
- y1: 297.318,
151
- x2: 193.829,
152
- y2: 469.328,
153
- gradientUnits: "userSpaceOnUse",
154
- children: [/*#__PURE__*/_jsx(Stop, {
155
- stopColor: "#FD7518"
156
- }), /*#__PURE__*/_jsx(Stop, {
157
- offset: 1,
158
- stopColor: "#F6255C"
159
- })]
160
- }), /*#__PURE__*/_jsxs(RadialGradient, {
161
- id: "paint1_radial_653_513",
162
- cx: 0,
163
- cy: 0,
164
- r: 1,
165
- gradientUnits: "userSpaceOnUse",
166
- gradientTransform: "translate(195.9 165.768) scale(177.16)",
167
- children: [/*#__PURE__*/_jsx(Stop, {
168
- stopColor: "#F7FF9B"
169
- }), /*#__PURE__*/_jsx(Stop, {
170
- offset: 1,
171
- stopColor: "#F7FF9B",
172
- stopOpacity: 0
173
- })]
174
- }), /*#__PURE__*/_jsxs(RadialGradient, {
175
- id: "paint2_radial_653_513",
176
- cx: 0,
177
- cy: 0,
178
- r: 1,
123
+ }), /*#__PURE__*/_jsx(Defs, {
124
+ children: /*#__PURE__*/_jsxs(LinearGradient, {
125
+ id: "paint0_linear_722_2",
126
+ x1: 5.0249,
127
+ y1: 36.0572,
128
+ x2: 55.4494,
129
+ y2: 36.0572,
179
130
  gradientUnits: "userSpaceOnUse",
180
- gradientTransform: "matrix(-37.33102 143.11116 -83.00448 -21.65199 206.327 255.304)",
181
131
  children: [/*#__PURE__*/_jsx(Stop, {
182
- stopColor: "#F7FF9B"
132
+ stopColor: "#FF245F"
183
133
  }), /*#__PURE__*/_jsx(Stop, {
184
134
  offset: 1,
185
- stopColor: "#F7FF9B",
186
- stopOpacity: 0
135
+ stopColor: "#FF7917"
187
136
  })]
188
- }), /*#__PURE__*/_jsxs(RadialGradient, {
189
- id: "paint3_radial_653_513",
190
- cx: 0,
191
- cy: 0,
192
- r: 1,
193
- gradientUnits: "userSpaceOnUse",
194
- gradientTransform: "matrix(.68003 0 0 .68001 332.339 289.188)",
195
- children: [/*#__PURE__*/_jsx(Stop, {
196
- stopColor: "#F7FF9B"
197
- }), /*#__PURE__*/_jsx(Stop, {
198
- offset: 1,
199
- stopColor: "#F7FF9B",
200
- stopOpacity: 0
201
- })]
202
- }), /*#__PURE__*/_jsxs(RadialGradient, {
203
- id: "paint4_radial_653_513",
204
- cx: 0,
205
- cy: 0,
206
- r: 1,
207
- gradientUnits: "userSpaceOnUse",
208
- gradientTransform: "matrix(1.72001 0 0 1.72002 333.599 288.528)",
209
- children: [/*#__PURE__*/_jsx(Stop, {
210
- stopColor: "#F7FF9B"
211
- }), /*#__PURE__*/_jsx(Stop, {
212
- offset: 1,
213
- stopColor: "#F7FF9B",
214
- stopOpacity: 0
215
- })]
216
- }), /*#__PURE__*/_jsxs(RadialGradient, {
217
- id: "paint5_radial_653_513",
218
- cx: 0,
219
- cy: 0,
220
- r: 1,
221
- gradientUnits: "userSpaceOnUse",
222
- gradientTransform: "translate(318.469 291.988) scale(145.72)",
223
- children: [/*#__PURE__*/_jsx(Stop, {
224
- stopColor: "#F7FF9B"
225
- }), /*#__PURE__*/_jsx(Stop, {
226
- offset: 1,
227
- stopColor: "#F7FF9B",
228
- stopOpacity: 0
229
- })]
230
- }), /*#__PURE__*/_jsxs(RadialGradient, {
231
- id: "paint6_radial_653_513",
232
- cx: 0,
233
- cy: 0,
234
- r: 1,
235
- gradientUnits: "userSpaceOnUse",
236
- gradientTransform: "translate(204.89 321.318) scale(76.29)",
237
- children: [/*#__PURE__*/_jsx(Stop, {
238
- stopColor: "#F7FF9B"
239
- }), /*#__PURE__*/_jsx(Stop, {
240
- offset: 1,
241
- stopColor: "#F7FF9B",
242
- stopOpacity: 0
243
- })]
244
- }), /*#__PURE__*/_jsxs(RadialGradient, {
245
- id: "paint7_radial_653_513",
246
- cx: 0,
247
- cy: 0,
248
- r: 1,
249
- gradientUnits: "userSpaceOnUse",
250
- gradientTransform: "translate(51.59 292.198) scale(68.15)",
251
- children: [/*#__PURE__*/_jsx(Stop, {
252
- stopColor: "#F7FF9B"
253
- }), /*#__PURE__*/_jsx(Stop, {
254
- offset: 1,
255
- stopColor: "#F7FF9B",
256
- stopOpacity: 0
257
- })]
258
- }), /*#__PURE__*/_jsxs(RadialGradient, {
259
- id: "paint8_radial_653_513",
260
- cx: 0,
261
- cy: 0,
262
- r: 1,
263
- gradientUnits: "userSpaceOnUse",
264
- gradientTransform: "translate(56.25 414.658) scale(80.62)",
265
- children: [/*#__PURE__*/_jsx(Stop, {
266
- stopColor: "#FFDBB2"
267
- }), /*#__PURE__*/_jsx(Stop, {
268
- offset: 1,
269
- stopColor: "#FFDBB2",
270
- stopOpacity: 0
271
- })]
272
- }), /*#__PURE__*/_jsxs(RadialGradient, {
273
- id: "paint9_radial_653_513",
274
- cx: 0,
275
- cy: 0,
276
- r: 1,
277
- gradientUnits: "userSpaceOnUse",
278
- gradientTransform: "translate(130.469 508.878) scale(102.88)",
279
- children: [/*#__PURE__*/_jsx(Stop, {
280
- stopColor: "#FFDBB2"
281
- }), /*#__PURE__*/_jsx(Stop, {
282
- offset: 1,
283
- stopColor: "#FFDBB2",
284
- stopOpacity: 0
285
- })]
286
- }), /*#__PURE__*/_jsxs(RadialGradient, {
287
- id: "paint10_radial_653_513",
288
- cx: 0,
289
- cy: 0,
290
- r: 1,
291
- gradientUnits: "userSpaceOnUse",
292
- gradientTransform: "translate(369.14 504.878) scale(100.32)",
293
- children: [/*#__PURE__*/_jsx(Stop, {
294
- stopColor: "#FFDBB2"
295
- }), /*#__PURE__*/_jsx(Stop, {
296
- offset: 1,
297
- stopColor: "#FFDBB2",
298
- stopOpacity: 0
299
- })]
300
- }), /*#__PURE__*/_jsxs(RadialGradient, {
301
- id: "paint11_radial_653_513",
302
- cx: 0,
303
- cy: 0,
304
- r: 1,
305
- gradientUnits: "userSpaceOnUse",
306
- gradientTransform: "translate(369.139 504.878) scale(100.32)",
307
- children: [/*#__PURE__*/_jsx(Stop, {
308
- stopColor: "#FFDBB2"
309
- }), /*#__PURE__*/_jsx(Stop, {
310
- offset: 1,
311
- stopColor: "#FFDBB2",
312
- stopOpacity: 0
313
- })]
314
- }), /*#__PURE__*/_jsxs(RadialGradient, {
315
- id: "paint12_radial_653_513",
316
- cx: 0,
317
- cy: 0,
318
- r: 1,
319
- gradientUnits: "userSpaceOnUse",
320
- gradientTransform: "translate(277.139 570.658) scale(116.82)",
321
- children: [/*#__PURE__*/_jsx(Stop, {
322
- stopColor: "#FFDBB2"
323
- }), /*#__PURE__*/_jsx(Stop, {
324
- offset: 1,
325
- stopColor: "#FFDBB2",
326
- stopOpacity: 0
327
- })]
328
- }), /*#__PURE__*/_jsxs(RadialGradient, {
329
- id: "paint13_radial_653_513",
330
- cx: 0,
331
- cy: 0,
332
- r: 1,
333
- gradientUnits: "userSpaceOnUse",
334
- gradientTransform: "translate(187.97 552.808) scale(105.33)",
335
- children: [/*#__PURE__*/_jsx(Stop, {
336
- stopColor: "#FFDBB2"
337
- }), /*#__PURE__*/_jsx(Stop, {
338
- offset: 1,
339
- stopColor: "#FFDBB2",
340
- stopOpacity: 0
341
- })]
342
- }), /*#__PURE__*/_jsxs(RadialGradient, {
343
- id: "paint14_radial_653_513",
344
- cx: 0,
345
- cy: 0,
346
- r: 1,
347
- gradientUnits: "userSpaceOnUse",
348
- gradientTransform: "matrix(49.8 0 0 49.8 199.579 416.428)",
349
- children: [/*#__PURE__*/_jsx(Stop, {
350
- stopColor: "#FFDBB2"
351
- }), /*#__PURE__*/_jsx(Stop, {
352
- offset: 1,
353
- stopColor: "#FFDBB2",
354
- stopOpacity: 0
355
- })]
356
- }), /*#__PURE__*/_jsxs(LinearGradient, {
357
- id: "paint15_linear_653_513",
358
- x1: 319.759,
359
- y1: 282.229,
360
- x2: 346.419,
361
- y2: 245.789,
362
- gradientUnits: "userSpaceOnUse",
363
- children: [/*#__PURE__*/_jsx(Stop, {
364
- stopColor: "#DA5B50"
365
- }), /*#__PURE__*/_jsx(Stop, {
366
- offset: 1,
367
- stopColor: "#DA5B50",
368
- stopOpacity: 0
369
- })]
370
- }), /*#__PURE__*/_jsxs(RadialGradient, {
371
- id: "paint16_radial_653_513",
372
- cx: 0,
373
- cy: 0,
374
- r: 1,
375
- gradientUnits: "userSpaceOnUse",
376
- gradientTransform: "translate(186.469 331.098) scale(133.38)",
377
- children: [/*#__PURE__*/_jsx(Stop, {
378
- stopColor: "#DA5B50"
379
- }), /*#__PURE__*/_jsx(Stop, {
380
- offset: 0.16,
381
- stopColor: "#DA5B50",
382
- stopOpacity: 0.98
383
- }), /*#__PURE__*/_jsx(Stop, {
384
- offset: 0.3,
385
- stopColor: "#DA5B50",
386
- stopOpacity: 0.94
387
- }), /*#__PURE__*/_jsx(Stop, {
388
- offset: 0.43,
389
- stopColor: "#DA5B50",
390
- stopOpacity: 0.85
391
- }), /*#__PURE__*/_jsx(Stop, {
392
- offset: 0.55,
393
- stopColor: "#DA5B50",
394
- stopOpacity: 0.74
395
- }), /*#__PURE__*/_jsx(Stop, {
396
- offset: 0.67,
397
- stopColor: "#DA5B50",
398
- stopOpacity: 0.59
399
- }), /*#__PURE__*/_jsx(Stop, {
400
- offset: 0.79,
401
- stopColor: "#DA5B50",
402
- stopOpacity: 0.41
403
- }), /*#__PURE__*/_jsx(Stop, {
404
- offset: 0.91,
405
- stopColor: "#DA5B50",
406
- stopOpacity: 0.2
407
- }), /*#__PURE__*/_jsx(Stop, {
408
- offset: 1,
409
- stopColor: "#DA5B50",
410
- stopOpacity: 0
411
- })]
412
- }), /*#__PURE__*/_jsxs(RadialGradient, {
413
- id: "paint17_radial_653_513",
414
- cx: 0,
415
- cy: 0,
416
- r: 1,
417
- gradientUnits: "userSpaceOnUse",
418
- gradientTransform: "translate(76.139 317.989) scale(151.46)",
419
- children: [/*#__PURE__*/_jsx(Stop, {
420
- stopColor: "#DA5B50"
421
- }), /*#__PURE__*/_jsx(Stop, {
422
- offset: 0.2,
423
- stopColor: "#DA5B50",
424
- stopOpacity: 0.99
425
- }), /*#__PURE__*/_jsx(Stop, {
426
- offset: 0.34,
427
- stopColor: "#DA5B50",
428
- stopOpacity: 0.94
429
- }), /*#__PURE__*/_jsx(Stop, {
430
- offset: 0.46,
431
- stopColor: "#DA5B50",
432
- stopOpacity: 0.87
433
- }), /*#__PURE__*/_jsx(Stop, {
434
- offset: 0.58,
435
- stopColor: "#DA5B50",
436
- stopOpacity: 0.77
437
- }), /*#__PURE__*/_jsx(Stop, {
438
- offset: 0.68,
439
- stopColor: "#DA5B50",
440
- stopOpacity: 0.64
441
- }), /*#__PURE__*/_jsx(Stop, {
442
- offset: 0.78,
443
- stopColor: "#DA5B50",
444
- stopOpacity: 0.48
445
- }), /*#__PURE__*/_jsx(Stop, {
446
- offset: 0.88,
447
- stopColor: "#DA5B50",
448
- stopOpacity: 0.29
449
- }), /*#__PURE__*/_jsx(Stop, {
450
- offset: 0.97,
451
- stopColor: "#DA5B50",
452
- stopOpacity: 0.07
453
- }), /*#__PURE__*/_jsx(Stop, {
454
- offset: 1,
455
- stopColor: "#DA5B50",
456
- stopOpacity: 0
457
- })]
458
- }), /*#__PURE__*/_jsxs(RadialGradient, {
459
- id: "paint18_radial_653_513",
460
- cx: 0,
461
- cy: 0,
462
- r: 1,
463
- gradientUnits: "userSpaceOnUse",
464
- gradientTransform: "translate(267.808 301.768) scale(103.98)",
465
- children: [/*#__PURE__*/_jsx(Stop, {
466
- stopColor: "#DA5B50"
467
- }), /*#__PURE__*/_jsx(Stop, {
468
- offset: 0.25,
469
- stopColor: "#DA5B50",
470
- stopOpacity: 0.99
471
- }), /*#__PURE__*/_jsx(Stop, {
472
- offset: 0.4,
473
- stopColor: "#DA5B50",
474
- stopOpacity: 0.95
475
- }), /*#__PURE__*/_jsx(Stop, {
476
- offset: 0.51,
477
- stopColor: "#DA5B50",
478
- stopOpacity: 0.89
479
- }), /*#__PURE__*/_jsx(Stop, {
480
- offset: 0.61,
481
- stopColor: "#DA5B50",
482
- stopOpacity: 0.8
483
- }), /*#__PURE__*/_jsx(Stop, {
484
- offset: 0.71,
485
- stopColor: "#DA5B50",
486
- stopOpacity: 0.68
487
- }), /*#__PURE__*/_jsx(Stop, {
488
- offset: 0.79,
489
- stopColor: "#DA5B50",
490
- stopOpacity: 0.53
491
- }), /*#__PURE__*/_jsx(Stop, {
492
- offset: 0.87,
493
- stopColor: "#DA5B50",
494
- stopOpacity: 0.36
495
- }), /*#__PURE__*/_jsx(Stop, {
496
- offset: 0.95,
497
- stopColor: "#DA5B50",
498
- stopOpacity: 0.17
499
- }), /*#__PURE__*/_jsx(Stop, {
500
- offset: 1,
501
- stopColor: "#DA5B50",
502
- stopOpacity: 0
503
- })]
504
- }), /*#__PURE__*/_jsxs(RadialGradient, {
505
- id: "paint19_radial_653_513",
506
- cx: 0,
507
- cy: 0,
508
- r: 1,
509
- gradientUnits: "userSpaceOnUse",
510
- gradientTransform: "translate(243.799 -51.342) scale(97.51)",
511
- children: [/*#__PURE__*/_jsx(Stop, {
512
- stopColor: "#F7CE28"
513
- }), /*#__PURE__*/_jsx(Stop, {
514
- offset: 1,
515
- stopColor: "#F7FF9B",
516
- stopOpacity: 0
517
- })]
518
- }), /*#__PURE__*/_jsxs(RadialGradient, {
519
- id: "paint20_radial_653_513",
520
- cx: 0,
521
- cy: 0,
522
- r: 1,
523
- gradientUnits: "userSpaceOnUse",
524
- gradientTransform: "translate(269.579 50.658) scale(129.97)",
525
- children: [/*#__PURE__*/_jsx(Stop, {
526
- stopColor: "#F7CE28"
527
- }), /*#__PURE__*/_jsx(Stop, {
528
- offset: 1,
529
- stopColor: "#F7FF9B",
530
- stopOpacity: 0
531
- })]
532
- }), /*#__PURE__*/_jsxs(RadialGradient, {
533
- id: "paint21_radial_653_513",
534
- cx: 0,
535
- cy: 0,
536
- r: 1,
537
- gradientUnits: "userSpaceOnUse",
538
- gradientTransform: "translate(313.398 146.378) scale(121.22)",
539
- children: [/*#__PURE__*/_jsx(Stop, {
540
- stopColor: "#F7CE28"
541
- }), /*#__PURE__*/_jsx(Stop, {
542
- offset: 1,
543
- stopColor: "#F7FF9B",
544
- stopOpacity: 0
545
- })]
546
- }), /*#__PURE__*/_jsxs(RadialGradient, {
547
- id: "paint22_radial_653_513",
548
- cx: 0,
549
- cy: 0,
550
- r: 1,
551
- gradientUnits: "userSpaceOnUse",
552
- gradientTransform: "translate(165.64 565.819) scale(62.67)",
553
- children: [/*#__PURE__*/_jsx(Stop, {
554
- stopColor: "#FFDBB2"
555
- }), /*#__PURE__*/_jsx(Stop, {
556
- offset: 1,
557
- stopColor: "#FFDBB2",
558
- stopOpacity: 0
559
- })]
560
- }), /*#__PURE__*/_jsxs(LinearGradient, {
561
- id: "paint23_linear_653_513",
562
- x1: 274.819,
563
- y1: 370.478,
564
- x2: 273.489,
565
- y2: 383.368,
566
- gradientUnits: "userSpaceOnUse",
567
- children: [/*#__PURE__*/_jsx(Stop, {
568
- stopColor: "#F4D7F0"
569
- }), /*#__PURE__*/_jsx(Stop, {
570
- offset: 1,
571
- stopColor: "#F5D9F1",
572
- stopOpacity: 0
573
- })]
574
- }), /*#__PURE__*/_jsxs(LinearGradient, {
575
- id: "paint24_linear_653_513",
576
- x1: 217.478,
577
- y1: 390.088,
578
- x2: 225.038,
579
- y2: 400.318,
580
- gradientUnits: "userSpaceOnUse",
581
- children: [/*#__PURE__*/_jsx(Stop, {
582
- stopColor: "#F4D7F0"
583
- }), /*#__PURE__*/_jsx(Stop, {
584
- offset: 1,
585
- stopColor: "#F5D9F1",
586
- stopOpacity: 0
587
- })]
588
- }), /*#__PURE__*/_jsxs(LinearGradient, {
589
- id: "paint25_linear_653_513",
590
- x1: 249.618,
591
- y1: 393.858,
592
- x2: 255.618,
593
- y2: 410.188,
594
- gradientUnits: "userSpaceOnUse",
595
- children: [/*#__PURE__*/_jsx(Stop, {
596
- stopColor: "#621357",
597
- stopOpacity: 0
598
- }), /*#__PURE__*/_jsx(Stop, {
599
- offset: 1,
600
- stopColor: "#621357"
601
- })]
602
- }), /*#__PURE__*/_jsxs(LinearGradient, {
603
- id: "paint26_linear_653_513",
604
- x1: 81.7084,
605
- y1: 370.478,
606
- x2: 83.0484,
607
- y2: 383.368,
608
- gradientUnits: "userSpaceOnUse",
609
- children: [/*#__PURE__*/_jsx(Stop, {
610
- stopColor: "#F4D7F0"
611
- }), /*#__PURE__*/_jsx(Stop, {
612
- offset: 1,
613
- stopColor: "#F5D9F1",
614
- stopOpacity: 0
615
- })]
616
- }), /*#__PURE__*/_jsxs(LinearGradient, {
617
- id: "paint27_linear_653_513",
618
- x1: 139.05,
619
- y1: 390.088,
620
- x2: 131.49,
621
- y2: 400.318,
622
- gradientUnits: "userSpaceOnUse",
623
- children: [/*#__PURE__*/_jsx(Stop, {
624
- stopColor: "#F4D7F0"
625
- }), /*#__PURE__*/_jsx(Stop, {
626
- offset: 1,
627
- stopColor: "#F5D9F1",
628
- stopOpacity: 0
629
- })]
630
- }), /*#__PURE__*/_jsxs(LinearGradient, {
631
- id: "paint28_linear_653_513",
632
- x1: 106.919,
633
- y1: 393.858,
634
- x2: 100.919,
635
- y2: 410.188,
636
- gradientUnits: "userSpaceOnUse",
637
- children: [/*#__PURE__*/_jsx(Stop, {
638
- stopColor: "#621357",
639
- stopOpacity: 0
640
- }), /*#__PURE__*/_jsx(Stop, {
641
- offset: 1,
642
- stopColor: "#621357"
643
- })]
644
- })]
137
+ })
645
138
  })]
646
139
  });
647
140
  //# sourceMappingURL=ChatbotIcon.js.map