MindsDB 1.3.1__py3-none-any.whl → 25.1.2.0__py3-none-any.whl

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.

Potentially problematic release.


This version of MindsDB might be problematic. Click here for more details.

Files changed (1960) hide show
  1. MindsDB-25.1.2.0.dist-info/LICENSE +85 -0
  2. MindsDB-25.1.2.0.dist-info/METADATA +932 -0
  3. MindsDB-25.1.2.0.dist-info/RECORD +1923 -0
  4. {MindsDB-1.3.1.dist-info → MindsDB-25.1.2.0.dist-info}/WHEEL +1 -1
  5. mindsdb/__about__.py +5 -5
  6. mindsdb/__init__.py +1 -11
  7. mindsdb/__main__.py +552 -0
  8. mindsdb/api/common/check_auth.py +42 -0
  9. mindsdb/api/executor/__init__.py +2 -0
  10. mindsdb/api/executor/command_executor.py +2047 -0
  11. mindsdb/api/executor/controllers/__init__.py +1 -0
  12. mindsdb/api/executor/controllers/session_controller.py +91 -0
  13. mindsdb/api/executor/data_types/answer.py +16 -0
  14. mindsdb/api/executor/data_types/response_type.py +8 -0
  15. mindsdb/api/executor/datahub/__init__.py +1 -0
  16. mindsdb/api/executor/datahub/classes/tables_row.py +65 -0
  17. mindsdb/api/executor/datahub/datanodes/__init__.py +4 -0
  18. mindsdb/api/executor/datahub/datanodes/datanode.py +20 -0
  19. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +180 -0
  20. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +281 -0
  21. mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +428 -0
  22. mindsdb/api/executor/datahub/datanodes/project_datanode.py +186 -0
  23. mindsdb/api/executor/datahub/datanodes/system_tables.py +525 -0
  24. mindsdb/api/executor/exceptions.py +39 -0
  25. mindsdb/api/executor/planner/__init__.py +5 -0
  26. mindsdb/api/executor/planner/exceptions.py +3 -0
  27. mindsdb/api/executor/planner/plan_join.py +640 -0
  28. mindsdb/api/executor/planner/plan_join_ts.py +384 -0
  29. mindsdb/api/executor/planner/query_plan.py +29 -0
  30. mindsdb/api/executor/planner/query_planner.py +837 -0
  31. mindsdb/api/executor/planner/query_prepare.py +527 -0
  32. mindsdb/api/executor/planner/step_result.py +19 -0
  33. mindsdb/api/executor/planner/steps.py +262 -0
  34. mindsdb/api/executor/planner/ts_utils.py +93 -0
  35. mindsdb/api/executor/planner/utils.py +126 -0
  36. mindsdb/api/executor/sql_query/result_set.py +312 -0
  37. mindsdb/api/executor/sql_query/sql_query.py +318 -0
  38. mindsdb/api/executor/sql_query/steps/__init__.py +13 -0
  39. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +424 -0
  40. mindsdb/api/executor/sql_query/steps/base.py +21 -0
  41. mindsdb/api/executor/sql_query/steps/delete_step.py +49 -0
  42. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +116 -0
  43. mindsdb/api/executor/sql_query/steps/insert_step.py +129 -0
  44. mindsdb/api/executor/sql_query/steps/join_step.py +109 -0
  45. mindsdb/api/executor/sql_query/steps/map_reduce_step.py +179 -0
  46. mindsdb/api/executor/sql_query/steps/multiple_step.py +24 -0
  47. mindsdb/api/executor/sql_query/steps/prepare_steps.py +59 -0
  48. mindsdb/api/executor/sql_query/steps/project_step.py +86 -0
  49. mindsdb/api/executor/sql_query/steps/sql_steps.py +41 -0
  50. mindsdb/api/executor/sql_query/steps/subselect_step.py +159 -0
  51. mindsdb/api/executor/sql_query/steps/union_step.py +56 -0
  52. mindsdb/api/executor/sql_query/steps/update_step.py +129 -0
  53. mindsdb/api/executor/utilities/functions.py +37 -0
  54. mindsdb/api/executor/utilities/sql.py +195 -0
  55. mindsdb/api/http/gui.py +94 -0
  56. mindsdb/api/http/gunicorn_wrapper.py +17 -0
  57. mindsdb/api/http/initialize.py +454 -0
  58. mindsdb/api/http/namespaces/agents.py +499 -0
  59. mindsdb/api/http/namespaces/analysis.py +117 -0
  60. mindsdb/api/http/namespaces/auth.py +167 -0
  61. mindsdb/api/http/namespaces/chatbots.py +318 -0
  62. mindsdb/api/http/namespaces/config.py +286 -0
  63. mindsdb/api/http/namespaces/configs/agents.py +3 -0
  64. mindsdb/api/http/namespaces/configs/analysis.py +3 -0
  65. mindsdb/api/http/namespaces/configs/auth.py +4 -0
  66. mindsdb/api/http/namespaces/configs/chatbots.py +3 -0
  67. mindsdb/api/http/namespaces/configs/config.py +3 -0
  68. mindsdb/api/http/namespaces/configs/databases.py +3 -0
  69. mindsdb/api/http/namespaces/configs/default.py +4 -0
  70. mindsdb/api/http/namespaces/configs/files.py +4 -0
  71. mindsdb/api/http/namespaces/configs/handlers.py +3 -0
  72. mindsdb/api/http/namespaces/configs/jobs.py +3 -0
  73. mindsdb/api/http/namespaces/configs/knowledge_bases.py +3 -0
  74. mindsdb/api/http/namespaces/configs/projects.py +3 -0
  75. mindsdb/api/http/namespaces/configs/skills.py +3 -0
  76. mindsdb/api/http/namespaces/configs/sql.py +3 -0
  77. mindsdb/api/http/namespaces/configs/tabs.py +3 -0
  78. mindsdb/api/http/namespaces/configs/tree.py +3 -0
  79. mindsdb/api/http/namespaces/configs/util.py +3 -0
  80. mindsdb/api/http/namespaces/configs/webhooks.py +3 -0
  81. mindsdb/api/http/namespaces/databases.py +394 -0
  82. mindsdb/api/http/namespaces/default.py +152 -0
  83. mindsdb/api/http/namespaces/file.py +191 -0
  84. mindsdb/api/http/namespaces/handlers.py +232 -0
  85. mindsdb/api/http/namespaces/jobs.py +99 -0
  86. mindsdb/api/http/namespaces/knowledge_bases.py +420 -0
  87. mindsdb/api/http/namespaces/models.py +297 -0
  88. mindsdb/api/http/namespaces/projects.py +46 -0
  89. mindsdb/api/http/namespaces/skills.py +170 -0
  90. mindsdb/api/http/namespaces/sql.py +162 -0
  91. mindsdb/api/http/namespaces/tab.py +131 -0
  92. mindsdb/api/http/namespaces/tree.py +105 -0
  93. mindsdb/api/http/namespaces/util.py +144 -0
  94. mindsdb/api/http/namespaces/views.py +153 -0
  95. mindsdb/api/http/namespaces/webhooks.py +29 -0
  96. mindsdb/api/http/start.py +67 -0
  97. mindsdb/api/http/utils.py +37 -0
  98. mindsdb/api/mongo/classes/__init__.py +5 -0
  99. mindsdb/api/mongo/classes/query_sql.py +18 -0
  100. mindsdb/api/mongo/classes/responder.py +45 -0
  101. mindsdb/api/mongo/classes/responder_collection.py +34 -0
  102. mindsdb/api/mongo/classes/scram.py +86 -0
  103. mindsdb/api/mongo/classes/session.py +23 -0
  104. mindsdb/api/mongo/functions/__init__.py +19 -0
  105. mindsdb/api/mongo/responders/__init__.py +73 -0
  106. mindsdb/api/mongo/responders/add_shard.py +13 -0
  107. mindsdb/api/mongo/responders/aggregate.py +90 -0
  108. mindsdb/api/mongo/responders/buildinfo.py +17 -0
  109. mindsdb/api/mongo/responders/coll_stats.py +62 -0
  110. mindsdb/api/mongo/responders/company_id.py +25 -0
  111. mindsdb/api/mongo/responders/connection_status.py +22 -0
  112. mindsdb/api/mongo/responders/count.py +21 -0
  113. mindsdb/api/mongo/responders/db_stats.py +31 -0
  114. mindsdb/api/mongo/responders/delete.py +105 -0
  115. mindsdb/api/mongo/responders/describe.py +23 -0
  116. mindsdb/api/mongo/responders/end_sessions.py +13 -0
  117. mindsdb/api/mongo/responders/find.py +175 -0
  118. mindsdb/api/mongo/responders/get_cmd_line_opts.py +18 -0
  119. mindsdb/api/mongo/responders/get_free_monitoring_status.py +14 -0
  120. mindsdb/api/mongo/responders/get_parameter.py +23 -0
  121. mindsdb/api/mongo/responders/getlog.py +14 -0
  122. mindsdb/api/mongo/responders/host_info.py +28 -0
  123. mindsdb/api/mongo/responders/insert.py +268 -0
  124. mindsdb/api/mongo/responders/is_master.py +20 -0
  125. mindsdb/api/mongo/responders/is_master_lower.py +13 -0
  126. mindsdb/api/mongo/responders/list_collections.py +55 -0
  127. mindsdb/api/mongo/responders/list_databases.py +37 -0
  128. mindsdb/api/mongo/responders/list_indexes.py +22 -0
  129. mindsdb/api/mongo/responders/ping.py +13 -0
  130. mindsdb/api/mongo/responders/recv_chunk_start.py +13 -0
  131. mindsdb/api/mongo/responders/replsetgetstatus.py +13 -0
  132. mindsdb/api/mongo/responders/sasl_continue.py +34 -0
  133. mindsdb/api/mongo/responders/sasl_start.py +33 -0
  134. mindsdb/api/mongo/responders/update_range_deletions.py +12 -0
  135. mindsdb/api/mongo/responders/whatsmyuri.py +18 -0
  136. mindsdb/api/mongo/server.py +388 -0
  137. mindsdb/api/mongo/start.py +15 -0
  138. mindsdb/api/mongo/utilities/mongodb_ast.py +257 -0
  139. mindsdb/api/mongo/utilities/mongodb_parser.py +145 -0
  140. mindsdb/api/mongo/utilities/mongodb_query.py +84 -0
  141. mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +130 -0
  142. mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +3 -0
  143. mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +37 -0
  144. mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +22 -0
  145. mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +151 -0
  146. mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
  147. mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +212 -0
  148. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +166 -0
  149. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +15 -0
  150. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +140 -0
  151. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +44 -0
  152. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +94 -0
  153. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +159 -0
  154. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +52 -0
  155. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +58 -0
  156. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +20 -0
  157. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +80 -0
  158. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +96 -0
  159. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +106 -0
  160. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +13 -0
  161. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +54 -0
  162. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +46 -0
  163. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +53 -0
  164. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +16 -0
  165. mindsdb/api/mysql/mysql_proxy/executor/__init__.py +2 -0
  166. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +138 -0
  167. mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
  168. mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +135 -0
  169. mindsdb/api/mysql/mysql_proxy/libs/__init__.py +1 -0
  170. mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +1 -0
  171. mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +1030 -0
  172. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +930 -0
  173. mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
  174. mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +18 -0
  175. mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +48 -0
  176. mindsdb/api/mysql/start.py +13 -0
  177. mindsdb/api/postgres/__init__.py +0 -0
  178. mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
  179. mindsdb/api/postgres/postgres_proxy/executor/__init__.py +1 -0
  180. mindsdb/api/postgres/postgres_proxy/executor/executor.py +188 -0
  181. mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
  182. mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +322 -0
  183. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +34 -0
  184. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +31 -0
  185. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +1265 -0
  186. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +31 -0
  187. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
  188. mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
  189. mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +10 -0
  190. mindsdb/api/postgres/start.py +11 -0
  191. mindsdb/integrations/__init__.py +0 -0
  192. mindsdb/integrations/handlers/__init__.py +0 -0
  193. mindsdb/integrations/handlers/access_handler/__about__.py +9 -0
  194. mindsdb/integrations/handlers/access_handler/__init__.py +20 -0
  195. mindsdb/integrations/handlers/access_handler/access_handler.py +197 -0
  196. mindsdb/integrations/handlers/access_handler/connection_args.py +15 -0
  197. mindsdb/integrations/handlers/access_handler/icon.svg +19 -0
  198. mindsdb/integrations/handlers/access_handler/requirements.txt +2 -0
  199. mindsdb/integrations/handlers/access_handler/tests/__init__.py +0 -0
  200. mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +32 -0
  201. mindsdb/integrations/handlers/aerospike_handler/__about__.py +9 -0
  202. mindsdb/integrations/handlers/aerospike_handler/__init__.py +30 -0
  203. mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +236 -0
  204. mindsdb/integrations/handlers/aerospike_handler/connection_args.py +46 -0
  205. mindsdb/integrations/handlers/aerospike_handler/icon.svg +11 -0
  206. mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
  207. mindsdb/integrations/handlers/aerospike_handler/tests/__init__.py +0 -0
  208. mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +36 -0
  209. mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
  210. mindsdb/integrations/handlers/airtable_handler/__init__.py +20 -0
  211. mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +211 -0
  212. mindsdb/integrations/handlers/airtable_handler/connection_args.py +26 -0
  213. mindsdb/integrations/handlers/airtable_handler/icon.svg +11 -0
  214. mindsdb/integrations/handlers/airtable_handler/tests/__init__.py +0 -0
  215. mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +34 -0
  216. mindsdb/integrations/handlers/altibase_handler/__about__.py +9 -0
  217. mindsdb/integrations/handlers/altibase_handler/__init__.py +20 -0
  218. mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +253 -0
  219. mindsdb/integrations/handlers/altibase_handler/connection_args.py +50 -0
  220. mindsdb/integrations/handlers/altibase_handler/icon.svg +3 -0
  221. mindsdb/integrations/handlers/altibase_handler/requirements.txt +2 -0
  222. mindsdb/integrations/handlers/altibase_handler/tests/__init__.py +0 -0
  223. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +67 -0
  224. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +68 -0
  225. mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +9 -0
  226. mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +19 -0
  227. mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +180 -0
  228. mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +13 -0
  229. mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
  230. mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +21 -0
  231. mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
  232. mindsdb/integrations/handlers/anthropic_handler/__init__.py +22 -0
  233. mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +108 -0
  234. mindsdb/integrations/handlers/anthropic_handler/icon.svg +3 -0
  235. mindsdb/integrations/handlers/anthropic_handler/requirements.txt +1 -0
  236. mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +9 -0
  237. mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +20 -0
  238. mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +290 -0
  239. mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py +14 -0
  240. mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg +4 -0
  241. mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +3 -0
  242. mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py +51 -0
  243. mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py +0 -0
  244. mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py +212 -0
  245. mindsdb/integrations/handlers/apache_doris_handler/__about__.py +9 -0
  246. mindsdb/integrations/handlers/apache_doris_handler/__init__.py +20 -0
  247. mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
  248. mindsdb/integrations/handlers/apache_doris_handler/icon.svg +5 -0
  249. mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
  250. mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
  251. mindsdb/integrations/handlers/aqicn_handler/__init__.py +28 -0
  252. mindsdb/integrations/handlers/aqicn_handler/aqicn.py +35 -0
  253. mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +97 -0
  254. mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +425 -0
  255. mindsdb/integrations/handlers/aqicn_handler/connection_args.py +18 -0
  256. mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
  257. mindsdb/integrations/handlers/aqicn_handler/tests/__init__.py +0 -0
  258. mindsdb/integrations/handlers/athena_handler/__about__.py +9 -0
  259. mindsdb/integrations/handlers/athena_handler/__init__.py +20 -0
  260. mindsdb/integrations/handlers/athena_handler/athena_handler.py +218 -0
  261. mindsdb/integrations/handlers/athena_handler/connection_args.py +51 -0
  262. mindsdb/integrations/handlers/athena_handler/icon.svg +22 -0
  263. mindsdb/integrations/handlers/athena_handler/tests/__init__.py +0 -0
  264. mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +85 -0
  265. mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
  266. mindsdb/integrations/handlers/aurora_handler/__init__.py +20 -0
  267. mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +140 -0
  268. mindsdb/integrations/handlers/aurora_handler/connection_args.py +50 -0
  269. mindsdb/integrations/handlers/aurora_handler/icon.svg +7 -0
  270. mindsdb/integrations/handlers/aurora_handler/requirements.txt +1 -0
  271. mindsdb/integrations/handlers/aurora_handler/tests/__init__.py +0 -0
  272. mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +37 -0
  273. mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +37 -0
  274. mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
  275. mindsdb/integrations/handlers/autogluon_handler/__init__.py +20 -0
  276. mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
  277. mindsdb/integrations/handlers/autogluon_handler/config.py +17 -0
  278. mindsdb/integrations/handlers/autogluon_handler/icon.svg +3 -0
  279. mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
  280. mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
  281. mindsdb/integrations/handlers/autokeras_handler/__init__.py +22 -0
  282. mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +139 -0
  283. mindsdb/integrations/handlers/autokeras_handler/icon.svg +9 -0
  284. mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
  285. mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
  286. mindsdb/integrations/handlers/autosklearn_handler/__init__.py +19 -0
  287. mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +53 -0
  288. mindsdb/integrations/handlers/autosklearn_handler/config.py +29 -0
  289. mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
  290. mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
  291. mindsdb/integrations/handlers/azure_blob_handler/__about__.py +9 -0
  292. mindsdb/integrations/handlers/azure_blob_handler/__init__.py +20 -0
  293. mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +346 -0
  294. mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +25 -0
  295. mindsdb/integrations/handlers/azure_blob_handler/icon.svg +30 -0
  296. mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +1 -0
  297. mindsdb/integrations/handlers/bedrock_handler/__about__.py +9 -0
  298. mindsdb/integrations/handlers/bedrock_handler/__init__.py +19 -0
  299. mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +328 -0
  300. mindsdb/integrations/handlers/bedrock_handler/icon.svg +9 -0
  301. mindsdb/integrations/handlers/bedrock_handler/requirements.txt +1 -0
  302. mindsdb/integrations/handlers/bedrock_handler/settings.py +287 -0
  303. mindsdb/integrations/handlers/bedrock_handler/utilities.py +46 -0
  304. mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
  305. mindsdb/integrations/handlers/bigquery_handler/__init__.py +21 -0
  306. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +181 -0
  307. mindsdb/integrations/handlers/bigquery_handler/connection_args.py +30 -0
  308. mindsdb/integrations/handlers/bigquery_handler/icon.svg +5 -0
  309. mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
  310. mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py +0 -0
  311. mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +221 -0
  312. mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
  313. mindsdb/integrations/handlers/binance_handler/__init__.py +19 -0
  314. mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
  315. mindsdb/integrations/handlers/binance_handler/binance_tables.py +175 -0
  316. mindsdb/integrations/handlers/binance_handler/icon.svg +14 -0
  317. mindsdb/integrations/handlers/binance_handler/requirements.txt +1 -0
  318. mindsdb/integrations/handlers/box_handler/__about__.py +9 -0
  319. mindsdb/integrations/handlers/box_handler/__init__.py +30 -0
  320. mindsdb/integrations/handlers/box_handler/box_handler.py +257 -0
  321. mindsdb/integrations/handlers/box_handler/connection_args.py +17 -0
  322. mindsdb/integrations/handlers/box_handler/icon.svg +1 -0
  323. mindsdb/integrations/handlers/box_handler/requirements.txt +1 -0
  324. mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
  325. mindsdb/integrations/handlers/byom_handler/__init__.py +21 -0
  326. mindsdb/integrations/handlers/byom_handler/byom_handler.py +678 -0
  327. mindsdb/integrations/handlers/byom_handler/connection_args.py +19 -0
  328. mindsdb/integrations/handlers/byom_handler/icon.svg +13 -0
  329. mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +229 -0
  330. mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
  331. mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
  332. mindsdb/integrations/handlers/cassandra_handler/__init__.py +21 -0
  333. mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +27 -0
  334. mindsdb/integrations/handlers/cassandra_handler/connection_args.py +50 -0
  335. mindsdb/integrations/handlers/cassandra_handler/icon.svg +33 -0
  336. mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
  337. mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py +0 -0
  338. mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +39 -0
  339. mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
  340. mindsdb/integrations/handlers/chromadb_handler/__init__.py +29 -0
  341. mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +491 -0
  342. mindsdb/integrations/handlers/chromadb_handler/connection_args.py +28 -0
  343. mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
  344. mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
  345. mindsdb/integrations/handlers/chromadb_handler/settings.py +62 -0
  346. mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py +0 -0
  347. mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
  348. mindsdb/integrations/handlers/ckan_handler/__init__.py +28 -0
  349. mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +310 -0
  350. mindsdb/integrations/handlers/ckan_handler/connection_args.py +22 -0
  351. mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
  352. mindsdb/integrations/handlers/ckan_handler/requirements.txt +1 -0
  353. mindsdb/integrations/handlers/ckan_handler/tests/__init__.py +0 -0
  354. mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +156 -0
  355. mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
  356. mindsdb/integrations/handlers/clickhouse_handler/__init__.py +20 -0
  357. mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +168 -0
  358. mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +53 -0
  359. mindsdb/integrations/handlers/clickhouse_handler/icon.svg +4 -0
  360. mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
  361. mindsdb/integrations/handlers/clickhouse_handler/tests/__init__.py +0 -0
  362. mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +41 -0
  363. mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
  364. mindsdb/integrations/handlers/clipdrop_handler/__init__.py +22 -0
  365. mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +87 -0
  366. mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +193 -0
  367. mindsdb/integrations/handlers/clipdrop_handler/icon.svg +6 -0
  368. mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
  369. mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +27 -0
  370. mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +219 -0
  371. mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +33 -0
  372. mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
  373. mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +2 -0
  374. mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py +0 -0
  375. mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +50 -0
  376. mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
  377. mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +20 -0
  378. mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +123 -0
  379. mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +41 -0
  380. mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
  381. mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +2 -0
  382. mindsdb/integrations/handlers/cloud_sql_handler/tests/__init__.py +0 -0
  383. mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +37 -0
  384. mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +37 -0
  385. mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
  386. mindsdb/integrations/handlers/cockroach_handler/__init__.py +19 -0
  387. mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +11 -0
  388. mindsdb/integrations/handlers/cockroach_handler/icon.svg +11 -0
  389. mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py +0 -0
  390. mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +34 -0
  391. mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
  392. mindsdb/integrations/handlers/cohere_handler/__init__.py +21 -0
  393. mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +88 -0
  394. mindsdb/integrations/handlers/cohere_handler/icon.svg +12 -0
  395. mindsdb/integrations/handlers/cohere_handler/requirements.txt +1 -0
  396. mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
  397. mindsdb/integrations/handlers/coinbase_handler/__init__.py +21 -0
  398. mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +138 -0
  399. mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
  400. mindsdb/integrations/handlers/coinbase_handler/connection_args.py +34 -0
  401. mindsdb/integrations/handlers/coinbase_handler/icon.svg +3 -0
  402. mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
  403. mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
  404. mindsdb/integrations/handlers/confluence_handler/__init__.py +29 -0
  405. mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +102 -0
  406. mindsdb/integrations/handlers/confluence_handler/confluence_table.py +193 -0
  407. mindsdb/integrations/handlers/confluence_handler/connection_args.py +32 -0
  408. mindsdb/integrations/handlers/confluence_handler/icon.svg +14 -0
  409. mindsdb/integrations/handlers/confluence_handler/requirements.txt +1 -0
  410. mindsdb/integrations/handlers/confluence_handler/tests/__init__.py +0 -0
  411. mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
  412. mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
  413. mindsdb/integrations/handlers/couchbase_handler/__init__.py +30 -0
  414. mindsdb/integrations/handlers/couchbase_handler/connection_args.py +31 -0
  415. mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +208 -0
  416. mindsdb/integrations/handlers/couchbase_handler/icon.svg +3 -0
  417. mindsdb/integrations/handlers/couchbase_handler/requirements.txt +1 -0
  418. mindsdb/integrations/handlers/couchbase_handler/tests/__init__.py +0 -0
  419. mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +39 -0
  420. mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +9 -0
  421. mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +30 -0
  422. mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +31 -0
  423. mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +472 -0
  424. mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +3 -0
  425. mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +1 -0
  426. mindsdb/integrations/handlers/couchbasevector_handler/tests/__init__.py +0 -0
  427. mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
  428. mindsdb/integrations/handlers/crate_handler/__init__.py +27 -0
  429. mindsdb/integrations/handlers/crate_handler/crate_handler.py +226 -0
  430. mindsdb/integrations/handlers/crate_handler/icon.svg +14 -0
  431. mindsdb/integrations/handlers/crate_handler/requirements.txt +2 -0
  432. mindsdb/integrations/handlers/crate_handler/tests/__init__.py +0 -0
  433. mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +46 -0
  434. mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
  435. mindsdb/integrations/handlers/d0lt_handler/__init__.py +29 -0
  436. mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
  437. mindsdb/integrations/handlers/d0lt_handler/icon.svg +6 -0
  438. mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
  439. mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py +0 -0
  440. mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +53 -0
  441. mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
  442. mindsdb/integrations/handlers/databend_handler/__init__.py +20 -0
  443. mindsdb/integrations/handlers/databend_handler/connection_args.py +36 -0
  444. mindsdb/integrations/handlers/databend_handler/databend_handler.py +199 -0
  445. mindsdb/integrations/handlers/databend_handler/icon.svg +9 -0
  446. mindsdb/integrations/handlers/databend_handler/requirements.txt +1 -0
  447. mindsdb/integrations/handlers/databend_handler/tests/__init__.py +1 -0
  448. mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +37 -0
  449. mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
  450. mindsdb/integrations/handlers/databricks_handler/__init__.py +29 -0
  451. mindsdb/integrations/handlers/databricks_handler/connection_args.py +58 -0
  452. mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +261 -0
  453. mindsdb/integrations/handlers/databricks_handler/icon.svg +3 -0
  454. mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -0
  455. mindsdb/integrations/handlers/databricks_handler/tests/__init__.py +0 -0
  456. mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +37 -0
  457. mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
  458. mindsdb/integrations/handlers/datastax_handler/__init__.py +27 -0
  459. mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
  460. mindsdb/integrations/handlers/datastax_handler/icon.svg +4 -0
  461. mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
  462. mindsdb/integrations/handlers/datastax_handler/tests/__init__.py +0 -0
  463. mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +38 -0
  464. mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
  465. mindsdb/integrations/handlers/db2_handler/__init__.py +29 -0
  466. mindsdb/integrations/handlers/db2_handler/connection_args.py +53 -0
  467. mindsdb/integrations/handlers/db2_handler/db2_handler.py +235 -0
  468. mindsdb/integrations/handlers/db2_handler/icon.svg +49 -0
  469. mindsdb/integrations/handlers/db2_handler/requirements.txt +2 -0
  470. mindsdb/integrations/handlers/db2_handler/tests/__init__.py +0 -0
  471. mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +46 -0
  472. mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
  473. mindsdb/integrations/handlers/derby_handler/__init__.py +21 -0
  474. mindsdb/integrations/handlers/derby_handler/connection_args.py +50 -0
  475. mindsdb/integrations/handlers/derby_handler/derby_handler.py +203 -0
  476. mindsdb/integrations/handlers/derby_handler/icon.svg +21 -0
  477. mindsdb/integrations/handlers/derby_handler/requirements.txt +1 -0
  478. mindsdb/integrations/handlers/derby_handler/tests/__init__.py +0 -0
  479. mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +46 -0
  480. mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
  481. mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
  482. mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
  483. mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
  484. mindsdb/integrations/handlers/discord_handler/icon.svg +3 -0
  485. mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
  486. mindsdb/integrations/handlers/discord_handler/tests/__init__.py +0 -0
  487. mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +59 -0
  488. mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
  489. mindsdb/integrations/handlers/dockerhub_handler/__init__.py +28 -0
  490. mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +25 -0
  491. mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +55 -0
  492. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +112 -0
  493. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
  494. mindsdb/integrations/handlers/dockerhub_handler/icon.svg +12 -0
  495. mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
  496. mindsdb/integrations/handlers/documentdb_handler/__init__.py +21 -0
  497. mindsdb/integrations/handlers/documentdb_handler/connection_args.py +53 -0
  498. mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +41 -0
  499. mindsdb/integrations/handlers/documentdb_handler/icon.svg +15 -0
  500. mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
  501. mindsdb/integrations/handlers/dremio_handler/__init__.py +20 -0
  502. mindsdb/integrations/handlers/dremio_handler/connection_args.py +31 -0
  503. mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +222 -0
  504. mindsdb/integrations/handlers/dremio_handler/icon.svg +16 -0
  505. mindsdb/integrations/handlers/dremio_handler/requirements.txt +1 -0
  506. mindsdb/integrations/handlers/dremio_handler/tests/__init__.py +0 -0
  507. mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +35 -0
  508. mindsdb/integrations/handlers/dropbox_handler/__about__.py +9 -0
  509. mindsdb/integrations/handlers/dropbox_handler/__init__.py +30 -0
  510. mindsdb/integrations/handlers/dropbox_handler/connection_args.py +17 -0
  511. mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +253 -0
  512. mindsdb/integrations/handlers/dropbox_handler/icon.svg +4 -0
  513. mindsdb/integrations/handlers/dropbox_handler/requirements.txt +1 -0
  514. mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py +0 -0
  515. mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +18 -0
  516. mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
  517. mindsdb/integrations/handlers/druid_handler/__init__.py +20 -0
  518. mindsdb/integrations/handlers/druid_handler/connection_args.py +51 -0
  519. mindsdb/integrations/handlers/druid_handler/druid_handler.py +216 -0
  520. mindsdb/integrations/handlers/druid_handler/icon.svg +6 -0
  521. mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
  522. mindsdb/integrations/handlers/druid_handler/tests/__init__.py +0 -0
  523. mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +35 -0
  524. mindsdb/integrations/handlers/dspy_handler/__about__.py +9 -0
  525. mindsdb/integrations/handlers/dspy_handler/__init__.py +19 -0
  526. mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +250 -0
  527. mindsdb/integrations/handlers/dspy_handler/icon.svg +14 -0
  528. mindsdb/integrations/handlers/dspy_handler/requirements.txt +8 -0
  529. mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
  530. mindsdb/integrations/handlers/duckdb_handler/__init__.py +28 -0
  531. mindsdb/integrations/handlers/duckdb_handler/connection_args.py +17 -0
  532. mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +170 -0
  533. mindsdb/integrations/handlers/duckdb_handler/icon.svg +10 -0
  534. mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py +0 -0
  535. mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +48 -0
  536. mindsdb/integrations/handlers/dummy_data_handler/__about__.py +9 -0
  537. mindsdb/integrations/handlers/dummy_data_handler/__init__.py +19 -0
  538. mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +97 -0
  539. mindsdb/integrations/handlers/dummy_data_handler/icon.svg +3 -0
  540. mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
  541. mindsdb/integrations/handlers/dynamodb_handler/__init__.py +20 -0
  542. mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +39 -0
  543. mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +293 -0
  544. mindsdb/integrations/handlers/dynamodb_handler/icon.svg +17 -0
  545. mindsdb/integrations/handlers/dynamodb_handler/tests/__init__.py +0 -0
  546. mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +34 -0
  547. mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
  548. mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +21 -0
  549. mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +45 -0
  550. mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +12 -0
  551. mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +13 -0
  552. mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
  553. mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py +0 -0
  554. mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +66 -0
  555. mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
  556. mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +30 -0
  557. mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +38 -0
  558. mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +288 -0
  559. mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +16 -0
  560. mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +2 -0
  561. mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py +0 -0
  562. mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +32 -0
  563. mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
  564. mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
  565. mindsdb/integrations/handlers/email_handler/email_client.py +165 -0
  566. mindsdb/integrations/handlers/email_handler/email_handler.py +99 -0
  567. mindsdb/integrations/handlers/email_handler/email_ingestor.py +86 -0
  568. mindsdb/integrations/handlers/email_handler/email_tables.py +159 -0
  569. mindsdb/integrations/handlers/email_handler/icon.png +0 -0
  570. mindsdb/integrations/handlers/email_handler/requirements.txt +2 -0
  571. mindsdb/integrations/handlers/email_handler/settings.py +60 -0
  572. mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
  573. mindsdb/integrations/handlers/empress_handler/__init__.py +20 -0
  574. mindsdb/integrations/handlers/empress_handler/connection_args.py +42 -0
  575. mindsdb/integrations/handlers/empress_handler/empress_handler.py +211 -0
  576. mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
  577. mindsdb/integrations/handlers/empress_handler/requirements.txt +1 -0
  578. mindsdb/integrations/handlers/empress_handler/tests/__init__.py +0 -0
  579. mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +55 -0
  580. mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
  581. mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
  582. mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
  583. mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
  584. mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
  585. mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
  586. mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
  587. mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +27 -0
  588. mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +216 -0
  589. mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +10 -0
  590. mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
  591. mindsdb/integrations/handlers/faunadb_handler/__init__.py +30 -0
  592. mindsdb/integrations/handlers/faunadb_handler/connection_args.py +39 -0
  593. mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +267 -0
  594. mindsdb/integrations/handlers/faunadb_handler/icon.svg +3 -0
  595. mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
  596. mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py +0 -0
  597. mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
  598. mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
  599. mindsdb/integrations/handlers/file_handler/__init__.py +16 -0
  600. mindsdb/integrations/handlers/file_handler/file_handler.py +528 -0
  601. mindsdb/integrations/handlers/file_handler/icon.svg +8 -0
  602. mindsdb/integrations/handlers/file_handler/requirements.txt +4 -0
  603. mindsdb/integrations/handlers/file_handler/tests/__init__.py +0 -0
  604. mindsdb/integrations/handlers/file_handler/tests/data/test.txt +10 -0
  605. mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +458 -0
  606. mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +9 -0
  607. mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +19 -0
  608. mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +56 -0
  609. mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +89 -0
  610. mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +67 -0
  611. mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
  612. mindsdb/integrations/handlers/firebird_handler/__init__.py +20 -0
  613. mindsdb/integrations/handlers/firebird_handler/connection_args.py +34 -0
  614. mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +240 -0
  615. mindsdb/integrations/handlers/firebird_handler/icon.svg +16 -0
  616. mindsdb/integrations/handlers/firebird_handler/requirements.txt +2 -0
  617. mindsdb/integrations/handlers/firebird_handler/tests/__init__.py +0 -0
  618. mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +37 -0
  619. mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
  620. mindsdb/integrations/handlers/flaml_handler/__init__.py +19 -0
  621. mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +47 -0
  622. mindsdb/integrations/handlers/flaml_handler/icon.svg +5 -0
  623. mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
  624. mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
  625. mindsdb/integrations/handlers/frappe_handler/__init__.py +19 -0
  626. mindsdb/integrations/handlers/frappe_handler/frappe_client.py +111 -0
  627. mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
  628. mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +82 -0
  629. mindsdb/integrations/handlers/frappe_handler/icon.svg +11 -0
  630. mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
  631. mindsdb/integrations/handlers/gcs_handler/__about__.py +9 -0
  632. mindsdb/integrations/handlers/gcs_handler/__init__.py +20 -0
  633. mindsdb/integrations/handlers/gcs_handler/connection_args.py +29 -0
  634. mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +375 -0
  635. mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +50 -0
  636. mindsdb/integrations/handlers/gcs_handler/icon.svg +1 -0
  637. mindsdb/integrations/handlers/gcs_handler/requirements.txt +4 -0
  638. mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
  639. mindsdb/integrations/handlers/github_handler/__init__.py +28 -0
  640. mindsdb/integrations/handlers/github_handler/connection_args.py +32 -0
  641. mindsdb/integrations/handlers/github_handler/github_handler.py +124 -0
  642. mindsdb/integrations/handlers/github_handler/github_tables.py +968 -0
  643. mindsdb/integrations/handlers/github_handler/icon.svg +10 -0
  644. mindsdb/integrations/handlers/github_handler/requirements.txt +1 -0
  645. mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
  646. mindsdb/integrations/handlers/gitlab_handler/__init__.py +19 -0
  647. mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
  648. mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
  649. mindsdb/integrations/handlers/gitlab_handler/icon.svg +6 -0
  650. mindsdb/integrations/handlers/gitlab_handler/requirements.txt +1 -0
  651. mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
  652. mindsdb/integrations/handlers/gmail_handler/__init__.py +20 -0
  653. mindsdb/integrations/handlers/gmail_handler/connection_args.py +27 -0
  654. mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +566 -0
  655. mindsdb/integrations/handlers/gmail_handler/icon.svg +14 -0
  656. mindsdb/integrations/handlers/gmail_handler/requirements.txt +2 -0
  657. mindsdb/integrations/handlers/gmail_handler/tests/__init__.py +0 -0
  658. mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +50 -0
  659. mindsdb/integrations/handlers/gmail_handler/utils.py +45 -0
  660. mindsdb/integrations/handlers/google_analytics_handler/__about__.py +9 -0
  661. mindsdb/integrations/handlers/google_analytics_handler/__init__.py +18 -0
  662. mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +129 -0
  663. mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +283 -0
  664. mindsdb/integrations/handlers/google_analytics_handler/icon.svg +4 -0
  665. mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -0
  666. mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py +0 -0
  667. mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +48 -0
  668. mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
  669. mindsdb/integrations/handlers/google_books_handler/__init__.py +20 -0
  670. mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
  671. mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +185 -0
  672. mindsdb/integrations/handlers/google_books_handler/icon.svg +5 -0
  673. mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
  674. mindsdb/integrations/handlers/google_books_handler/tests/__init__.py +0 -0
  675. mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +41 -0
  676. mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
  677. mindsdb/integrations/handlers/google_calendar_handler/__init__.py +21 -0
  678. mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +12 -0
  679. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +292 -0
  680. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +228 -0
  681. mindsdb/integrations/handlers/google_calendar_handler/icon.svg +10 -0
  682. mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
  683. mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py +0 -0
  684. mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +56 -0
  685. mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
  686. mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +20 -0
  687. mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +20 -0
  688. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +396 -0
  689. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +435 -0
  690. mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +15 -0
  691. mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
  692. mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py +0 -0
  693. mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +64 -0
  694. mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
  695. mindsdb/integrations/handlers/google_fit_handler/__init__.py +19 -0
  696. mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
  697. mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +69 -0
  698. mindsdb/integrations/handlers/google_fit_handler/icon.svg +13 -0
  699. mindsdb/integrations/handlers/google_fit_handler/requirements.txt +4 -0
  700. mindsdb/integrations/handlers/google_gemini_handler/__about__.py +9 -0
  701. mindsdb/integrations/handlers/google_gemini_handler/__init__.py +30 -0
  702. mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +370 -0
  703. mindsdb/integrations/handlers/google_gemini_handler/icon.svg +3 -0
  704. mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +2 -0
  705. mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
  706. mindsdb/integrations/handlers/google_search_handler/__init__.py +20 -0
  707. mindsdb/integrations/handlers/google_search_handler/connection_args.py +15 -0
  708. mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +205 -0
  709. mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +220 -0
  710. mindsdb/integrations/handlers/google_search_handler/icon.svg +19 -0
  711. mindsdb/integrations/handlers/google_search_handler/requirements.txt +2 -0
  712. mindsdb/integrations/handlers/google_search_handler/tests/__init__.py +0 -0
  713. mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +55 -0
  714. mindsdb/integrations/handlers/greptimedb_handler/__about__.py +9 -0
  715. mindsdb/integrations/handlers/greptimedb_handler/__init__.py +19 -0
  716. mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +21 -0
  717. mindsdb/integrations/handlers/greptimedb_handler/icon.svg +3 -0
  718. mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +1 -0
  719. mindsdb/integrations/handlers/groq_handler/__about__.py +9 -0
  720. mindsdb/integrations/handlers/groq_handler/__init__.py +23 -0
  721. mindsdb/integrations/handlers/groq_handler/groq_handler.py +136 -0
  722. mindsdb/integrations/handlers/groq_handler/icon.svg +30 -0
  723. mindsdb/integrations/handlers/groq_handler/requirements.txt +2 -0
  724. mindsdb/integrations/handlers/groq_handler/settings.py +31 -0
  725. mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
  726. mindsdb/integrations/handlers/hackernews_handler/__init__.py +21 -0
  727. mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
  728. mindsdb/integrations/handlers/hackernews_handler/hn_table.py +152 -0
  729. mindsdb/integrations/handlers/hackernews_handler/icon.svg +11 -0
  730. mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
  731. mindsdb/integrations/handlers/hana_handler/__init__.py +20 -0
  732. mindsdb/integrations/handlers/hana_handler/connection_args.py +57 -0
  733. mindsdb/integrations/handlers/hana_handler/hana_handler.py +259 -0
  734. mindsdb/integrations/handlers/hana_handler/icon.svg +13 -0
  735. mindsdb/integrations/handlers/hana_handler/requirements.txt +2 -0
  736. mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
  737. mindsdb/integrations/handlers/hive_handler/__init__.py +20 -0
  738. mindsdb/integrations/handlers/hive_handler/connection_args.py +53 -0
  739. mindsdb/integrations/handlers/hive_handler/hive_handler.py +224 -0
  740. mindsdb/integrations/handlers/hive_handler/icon.svg +41 -0
  741. mindsdb/integrations/handlers/hive_handler/requirements.txt +3 -0
  742. mindsdb/integrations/handlers/hive_handler/tests/__init__.py +0 -0
  743. mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +50 -0
  744. mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
  745. mindsdb/integrations/handlers/hsqldb_handler/__init__.py +20 -0
  746. mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +39 -0
  747. mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +197 -0
  748. mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
  749. mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +1 -0
  750. mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
  751. mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
  752. mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
  753. mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +589 -0
  754. mindsdb/integrations/handlers/hubspot_handler/icon.svg +3 -0
  755. mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
  756. mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
  757. mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +19 -0
  758. mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +6 -0
  759. mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +250 -0
  760. mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +24 -0
  761. mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +2 -0
  762. mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py +0 -0
  763. mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +9 -0
  764. mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
  765. mindsdb/integrations/handlers/huggingface_handler/__init__.py +20 -0
  766. mindsdb/integrations/handlers/huggingface_handler/finetune.py +223 -0
  767. mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +383 -0
  768. mindsdb/integrations/handlers/huggingface_handler/icon.svg +24 -0
  769. mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -0
  770. mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +6 -0
  771. mindsdb/integrations/handlers/huggingface_handler/settings.py +27 -0
  772. mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +9 -0
  773. mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +30 -0
  774. mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +38 -0
  775. mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +338 -0
  776. mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +54 -0
  777. mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +1 -0
  778. mindsdb/integrations/handlers/ibm_cos_handler/tests/__init__.py +0 -0
  779. mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +23 -0
  780. mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
  781. mindsdb/integrations/handlers/ignite_handler/__init__.py +20 -0
  782. mindsdb/integrations/handlers/ignite_handler/connection_args.py +46 -0
  783. mindsdb/integrations/handlers/ignite_handler/icon.svg +5 -0
  784. mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +207 -0
  785. mindsdb/integrations/handlers/ignite_handler/requirements.txt +1 -0
  786. mindsdb/integrations/handlers/ignite_handler/tests/__init__.py +0 -0
  787. mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +33 -0
  788. mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
  789. mindsdb/integrations/handlers/impala_handler/__init__.py +20 -0
  790. mindsdb/integrations/handlers/impala_handler/connection_args.py +37 -0
  791. mindsdb/integrations/handlers/impala_handler/icon.svg +13 -0
  792. mindsdb/integrations/handlers/impala_handler/impala_handler.py +156 -0
  793. mindsdb/integrations/handlers/impala_handler/requirements.txt +1 -0
  794. mindsdb/integrations/handlers/impala_handler/tests/__init__.py +0 -0
  795. mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +50 -0
  796. mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
  797. mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
  798. mindsdb/integrations/handlers/influxdb_handler/icon.svg +14 -0
  799. mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
  800. mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
  801. mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
  802. mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
  803. mindsdb/integrations/handlers/informix_handler/__init__.py +20 -0
  804. mindsdb/integrations/handlers/informix_handler/icon.svg +5 -0
  805. mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
  806. mindsdb/integrations/handlers/informix_handler/requirements.txt +1 -0
  807. mindsdb/integrations/handlers/informix_handler/tests/__init__.py +0 -0
  808. mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +52 -0
  809. mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
  810. mindsdb/integrations/handlers/ingres_handler/__init__.py +20 -0
  811. mindsdb/integrations/handlers/ingres_handler/connection_args.py +36 -0
  812. mindsdb/integrations/handlers/ingres_handler/icon.svg +6 -0
  813. mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +210 -0
  814. mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
  815. mindsdb/integrations/handlers/ingres_handler/tests/__init__.py +0 -0
  816. mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +53 -0
  817. mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
  818. mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
  819. mindsdb/integrations/handlers/instatus_handler/icon.svg +5 -0
  820. mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +127 -0
  821. mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +393 -0
  822. mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
  823. mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
  824. mindsdb/integrations/handlers/intercom_handler/icon.svg +3 -0
  825. mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
  826. mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
  827. mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
  828. mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
  829. mindsdb/integrations/handlers/jira_handler/icon.svg +15 -0
  830. mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
  831. mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
  832. mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
  833. mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
  834. mindsdb/integrations/handlers/kinetica_handler/__init__.py +22 -0
  835. mindsdb/integrations/handlers/kinetica_handler/connection_args.py +54 -0
  836. mindsdb/integrations/handlers/kinetica_handler/icon.svg +5 -0
  837. mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +12 -0
  838. mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
  839. mindsdb/integrations/handlers/lancedb_handler/__init__.py +29 -0
  840. mindsdb/integrations/handlers/lancedb_handler/connection_args.py +35 -0
  841. mindsdb/integrations/handlers/lancedb_handler/icon.svg +8 -0
  842. mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +329 -0
  843. mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
  844. mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py +0 -0
  845. mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
  846. mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
  847. mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +23 -0
  848. mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +14 -0
  849. mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +221 -0
  850. mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +2 -0
  851. mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +111 -0
  852. mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
  853. mindsdb/integrations/handlers/langchain_handler/__init__.py +19 -0
  854. mindsdb/integrations/handlers/langchain_handler/icon.svg +14 -0
  855. mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +278 -0
  856. mindsdb/integrations/handlers/langchain_handler/requirements.txt +8 -0
  857. mindsdb/integrations/handlers/langchain_handler/tools.py +247 -0
  858. mindsdb/integrations/handlers/leonardoai_handler/__about__.py +9 -0
  859. mindsdb/integrations/handlers/leonardoai_handler/__init__.py +19 -0
  860. mindsdb/integrations/handlers/leonardoai_handler/icon.svg +306 -0
  861. mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +225 -0
  862. mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
  863. mindsdb/integrations/handlers/libsql_handler/__about__.py +9 -0
  864. mindsdb/integrations/handlers/libsql_handler/__init__.py +28 -0
  865. mindsdb/integrations/handlers/libsql_handler/connection_args.py +22 -0
  866. mindsdb/integrations/handlers/libsql_handler/icon.svg +3 -0
  867. mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +192 -0
  868. mindsdb/integrations/handlers/libsql_handler/requirements.txt +1 -0
  869. mindsdb/integrations/handlers/libsql_handler/tests/__init__.py +0 -0
  870. mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +45 -0
  871. mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
  872. mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
  873. mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
  874. mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
  875. mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
  876. mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
  877. mindsdb/integrations/handlers/lightdash_handler/tests/__init__.py +0 -0
  878. mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
  879. mindsdb/integrations/handlers/lightfm_handler/__init__.py +21 -0
  880. mindsdb/integrations/handlers/lightfm_handler/helpers.py +175 -0
  881. mindsdb/integrations/handlers/lightfm_handler/icon.svg +14 -0
  882. mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +198 -0
  883. mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
  884. mindsdb/integrations/handlers/lightfm_handler/settings.py +7 -0
  885. mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
  886. mindsdb/integrations/handlers/lightwood_handler/__init__.py +19 -0
  887. mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
  888. mindsdb/integrations/handlers/lightwood_handler/icon.svg +13 -0
  889. mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
  890. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -0
  891. mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py +0 -0
  892. mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +258 -0
  893. mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
  894. mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
  895. mindsdb/integrations/handlers/lindorm_handler/__init__.py +28 -0
  896. mindsdb/integrations/handlers/lindorm_handler/icon.svg +5 -0
  897. mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
  898. mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
  899. mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py +0 -0
  900. mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +33 -0
  901. mindsdb/integrations/handlers/litellm_handler/__about__.py +9 -0
  902. mindsdb/integrations/handlers/litellm_handler/__init__.py +30 -0
  903. mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
  904. mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +141 -0
  905. mindsdb/integrations/handlers/litellm_handler/requirements.txt +2 -0
  906. mindsdb/integrations/handlers/litellm_handler/settings.py +39 -0
  907. mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
  908. mindsdb/integrations/handlers/llama_index_handler/__init__.py +19 -0
  909. mindsdb/integrations/handlers/llama_index_handler/icon.svg +9 -0
  910. mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +201 -0
  911. mindsdb/integrations/handlers/llama_index_handler/requirements.txt +5 -0
  912. mindsdb/integrations/handlers/llama_index_handler/settings.py +65 -0
  913. mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
  914. mindsdb/integrations/handlers/ludwig_handler/__init__.py +19 -0
  915. mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
  916. mindsdb/integrations/handlers/ludwig_handler/icon.svg +5 -0
  917. mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +68 -0
  918. mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
  919. mindsdb/integrations/handlers/ludwig_handler/utils.py +12 -0
  920. mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
  921. mindsdb/integrations/handlers/luma_handler/__init__.py +28 -0
  922. mindsdb/integrations/handlers/luma_handler/connection_args.py +18 -0
  923. mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
  924. mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
  925. mindsdb/integrations/handlers/luma_handler/luma_handler.py +77 -0
  926. mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
  927. mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
  928. mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
  929. mindsdb/integrations/handlers/mariadb_handler/__init__.py +20 -0
  930. mindsdb/integrations/handlers/mariadb_handler/connection_args.py +76 -0
  931. mindsdb/integrations/handlers/mariadb_handler/icon.svg +3 -0
  932. mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
  933. mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
  934. mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
  935. mindsdb/integrations/handlers/materialize_handler/__init__.py +20 -0
  936. mindsdb/integrations/handlers/materialize_handler/icon.svg +7 -0
  937. mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
  938. mindsdb/integrations/handlers/materialize_handler/tests/__init__.py +0 -0
  939. mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +56 -0
  940. mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
  941. mindsdb/integrations/handlers/matrixone_handler/__init__.py +20 -0
  942. mindsdb/integrations/handlers/matrixone_handler/connection_args.py +52 -0
  943. mindsdb/integrations/handlers/matrixone_handler/icon.svg +9 -0
  944. mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +168 -0
  945. mindsdb/integrations/handlers/matrixone_handler/requirements.txt +1 -0
  946. mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py +0 -0
  947. mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +56 -0
  948. mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
  949. mindsdb/integrations/handlers/maxdb_handler/__init__.py +28 -0
  950. mindsdb/integrations/handlers/maxdb_handler/connection_args.py +42 -0
  951. mindsdb/integrations/handlers/maxdb_handler/icon.svg +13 -0
  952. mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +185 -0
  953. mindsdb/integrations/handlers/maxdb_handler/requirements.txt +1 -0
  954. mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py +0 -0
  955. mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +55 -0
  956. mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
  957. mindsdb/integrations/handlers/mediawiki_handler/__init__.py +27 -0
  958. mindsdb/integrations/handlers/mediawiki_handler/icon.svg +153 -0
  959. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
  960. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
  961. mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +1 -0
  962. mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
  963. mindsdb/integrations/handlers/mendeley_handler/__init__.py +19 -0
  964. mindsdb/integrations/handlers/mendeley_handler/icon.svg +14 -0
  965. mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
  966. mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +134 -0
  967. mindsdb/integrations/handlers/mendeley_handler/requirements.txt +1 -0
  968. mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py +0 -0
  969. mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +108 -0
  970. mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
  971. mindsdb/integrations/handlers/merlion_handler/__init__.py +19 -0
  972. mindsdb/integrations/handlers/merlion_handler/adapters.py +182 -0
  973. mindsdb/integrations/handlers/merlion_handler/icon.svg +16 -0
  974. mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
  975. mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
  976. mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
  977. mindsdb/integrations/handlers/milvus_handler/__init__.py +29 -0
  978. mindsdb/integrations/handlers/milvus_handler/connection_args.py +112 -0
  979. mindsdb/integrations/handlers/milvus_handler/icon.svg +5 -0
  980. mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +332 -0
  981. mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
  982. mindsdb/integrations/handlers/milvus_handler/tests/__init__.py +0 -0
  983. mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +9 -0
  984. mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +23 -0
  985. mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +13 -0
  986. mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +132 -0
  987. mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +2 -0
  988. mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +18 -0
  989. mindsdb/integrations/handlers/minds_endpoint_handler/tests/__init__.py +0 -0
  990. mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +160 -0
  991. mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
  992. mindsdb/integrations/handlers/mlflow_handler/__init__.py +18 -0
  993. mindsdb/integrations/handlers/mlflow_handler/icon.svg +4 -0
  994. mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +83 -0
  995. mindsdb/integrations/handlers/mlflow_handler/requirements.txt +1 -0
  996. mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
  997. mindsdb/integrations/handlers/monetdb_handler/__init__.py +20 -0
  998. mindsdb/integrations/handlers/monetdb_handler/connection_args.py +44 -0
  999. mindsdb/integrations/handlers/monetdb_handler/icon.svg +4 -0
  1000. mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +219 -0
  1001. mindsdb/integrations/handlers/monetdb_handler/requirements.txt +2 -0
  1002. mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py +0 -0
  1003. mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +50 -0
  1004. mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py +0 -0
  1005. mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +50 -0
  1006. mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
  1007. mindsdb/integrations/handlers/mongodb_handler/__init__.py +21 -0
  1008. mindsdb/integrations/handlers/mongodb_handler/connection_args.py +46 -0
  1009. mindsdb/integrations/handlers/mongodb_handler/icon.svg +3 -0
  1010. mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +372 -0
  1011. mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py +0 -0
  1012. mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +125 -0
  1013. mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py +0 -0
  1014. mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +286 -0
  1015. mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
  1016. mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +19 -0
  1017. mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
  1018. mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +81 -0
  1019. mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +1 -0
  1020. mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +9 -0
  1021. mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +27 -0
  1022. mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +31 -0
  1023. mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +102 -0
  1024. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +252 -0
  1025. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +100 -0
  1026. mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
  1027. mindsdb/integrations/handlers/ms_teams_handler/__init__.py +27 -0
  1028. mindsdb/integrations/handlers/ms_teams_handler/icon.svg +23 -0
  1029. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +193 -0
  1030. mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +2 -0
  1031. mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
  1032. mindsdb/integrations/handlers/mssql_handler/__init__.py +21 -0
  1033. mindsdb/integrations/handlers/mssql_handler/connection_args.py +52 -0
  1034. mindsdb/integrations/handlers/mssql_handler/icon.svg +21 -0
  1035. mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +218 -0
  1036. mindsdb/integrations/handlers/mssql_handler/requirements.txt +1 -0
  1037. mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
  1038. mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +169 -0
  1039. mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
  1040. mindsdb/integrations/handlers/mysql_handler/__init__.py +20 -0
  1041. mindsdb/integrations/handlers/mysql_handler/connection_args.py +76 -0
  1042. mindsdb/integrations/handlers/mysql_handler/icon.svg +4 -0
  1043. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +214 -0
  1044. mindsdb/integrations/handlers/mysql_handler/requirements.txt +1 -0
  1045. mindsdb/integrations/handlers/mysql_handler/settings.py +46 -0
  1046. mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
  1047. mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +19 -0
  1048. mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +5 -0
  1049. mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
  1050. mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
  1051. mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +2 -0
  1052. mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
  1053. mindsdb/integrations/handlers/newsapi_handler/__init__.py +29 -0
  1054. mindsdb/integrations/handlers/newsapi_handler/connection_args.py +14 -0
  1055. mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
  1056. mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +209 -0
  1057. mindsdb/integrations/handlers/newsapi_handler/requirements.txt +1 -0
  1058. mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py +0 -0
  1059. mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +90 -0
  1060. mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
  1061. mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
  1062. mindsdb/integrations/handlers/notion_handler/icon.svg +11 -0
  1063. mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
  1064. mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
  1065. mindsdb/integrations/handlers/notion_handler/requirements.txt +1 -0
  1066. mindsdb/integrations/handlers/notion_handler/tests/__init__.py +0 -0
  1067. mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +62 -0
  1068. mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
  1069. mindsdb/integrations/handlers/npm_handler/__init__.py +27 -0
  1070. mindsdb/integrations/handlers/npm_handler/api.py +26 -0
  1071. mindsdb/integrations/handlers/npm_handler/icon.svg +11 -0
  1072. mindsdb/integrations/handlers/npm_handler/npm_handler.py +53 -0
  1073. mindsdb/integrations/handlers/npm_handler/npm_tables.py +242 -0
  1074. mindsdb/integrations/handlers/npm_handler/tests/__init__.py +0 -0
  1075. mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
  1076. mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +21 -0
  1077. mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +65 -0
  1078. mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +3 -0
  1079. mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +228 -0
  1080. mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +1 -0
  1081. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py +0 -0
  1082. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +50 -0
  1083. mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
  1084. mindsdb/integrations/handlers/oceanbase_handler/__init__.py +20 -0
  1085. mindsdb/integrations/handlers/oceanbase_handler/icon.svg +4 -0
  1086. mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
  1087. mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
  1088. mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py +0 -0
  1089. mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +56 -0
  1090. mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
  1091. mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +28 -0
  1092. mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +18 -0
  1093. mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +7 -0
  1094. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +45 -0
  1095. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +100 -0
  1096. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
  1097. mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
  1098. mindsdb/integrations/handlers/ollama_handler/__init__.py +19 -0
  1099. mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
  1100. mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +171 -0
  1101. mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
  1102. mindsdb/integrations/handlers/openai_handler/__init__.py +22 -0
  1103. mindsdb/integrations/handlers/openai_handler/constants.py +36 -0
  1104. mindsdb/integrations/handlers/openai_handler/creation_args.py +14 -0
  1105. mindsdb/integrations/handlers/openai_handler/helpers.py +197 -0
  1106. mindsdb/integrations/handlers/openai_handler/icon.svg +10 -0
  1107. mindsdb/integrations/handlers/openai_handler/model_using_args.py +5 -0
  1108. mindsdb/integrations/handlers/openai_handler/openai_handler.py +1188 -0
  1109. mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
  1110. mindsdb/integrations/handlers/openai_handler/tests/__init__.py +0 -0
  1111. mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +509 -0
  1112. mindsdb/integrations/handlers/openbb_handler/__about__.py +9 -0
  1113. mindsdb/integrations/handlers/openbb_handler/__init__.py +27 -0
  1114. mindsdb/integrations/handlers/openbb_handler/icon.svg +3 -0
  1115. mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +119 -0
  1116. mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +337 -0
  1117. mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
  1118. mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
  1119. mindsdb/integrations/handlers/opengauss_handler/__init__.py +21 -0
  1120. mindsdb/integrations/handlers/opengauss_handler/connection_args.py +36 -0
  1121. mindsdb/integrations/handlers/opengauss_handler/icon.svg +6 -0
  1122. mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +11 -0
  1123. mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py +0 -0
  1124. mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +45 -0
  1125. mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
  1126. mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
  1127. mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +10 -0
  1128. mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
  1129. mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
  1130. mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
  1131. mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py +0 -0
  1132. mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
  1133. mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
  1134. mindsdb/integrations/handlers/oracle_handler/__init__.py +28 -0
  1135. mindsdb/integrations/handlers/oracle_handler/connection_args.py +70 -0
  1136. mindsdb/integrations/handlers/oracle_handler/icon.svg +3 -0
  1137. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +246 -0
  1138. mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -0
  1139. mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
  1140. mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +32 -0
  1141. mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
  1142. mindsdb/integrations/handlers/orioledb_handler/__init__.py +21 -0
  1143. mindsdb/integrations/handlers/orioledb_handler/connection_args.py +36 -0
  1144. mindsdb/integrations/handlers/orioledb_handler/icon.svg +6 -0
  1145. mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +11 -0
  1146. mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py +0 -0
  1147. mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +56 -0
  1148. mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
  1149. mindsdb/integrations/handlers/palm_handler/__init__.py +19 -0
  1150. mindsdb/integrations/handlers/palm_handler/icon.svg +9 -0
  1151. mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
  1152. mindsdb/integrations/handlers/palm_handler/requirements.txt +1 -0
  1153. mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
  1154. mindsdb/integrations/handlers/paypal_handler/__init__.py +27 -0
  1155. mindsdb/integrations/handlers/paypal_handler/icon.svg +5 -0
  1156. mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
  1157. mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +283 -0
  1158. mindsdb/integrations/handlers/paypal_handler/requirements.txt +1 -0
  1159. mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
  1160. mindsdb/integrations/handlers/pgvector_handler/__init__.py +29 -0
  1161. mindsdb/integrations/handlers/pgvector_handler/connection_args.py +54 -0
  1162. mindsdb/integrations/handlers/pgvector_handler/icon.svg +23 -0
  1163. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +447 -0
  1164. mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
  1165. mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
  1166. mindsdb/integrations/handlers/phoenix_handler/__init__.py +20 -0
  1167. mindsdb/integrations/handlers/phoenix_handler/connection_args.py +50 -0
  1168. mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
  1169. mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +229 -0
  1170. mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
  1171. mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py +0 -0
  1172. mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +33 -0
  1173. mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
  1174. mindsdb/integrations/handlers/pinecone_handler/__init__.py +29 -0
  1175. mindsdb/integrations/handlers/pinecone_handler/connection_args.py +53 -0
  1176. mindsdb/integrations/handlers/pinecone_handler/icon.svg +21 -0
  1177. mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +304 -0
  1178. mindsdb/integrations/handlers/pinecone_handler/requirements.txt +1 -0
  1179. mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py +0 -0
  1180. mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
  1181. mindsdb/integrations/handlers/pinot_handler/__init__.py +20 -0
  1182. mindsdb/integrations/handlers/pinot_handler/connection_args.py +49 -0
  1183. mindsdb/integrations/handlers/pinot_handler/icon.svg +7 -0
  1184. mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +223 -0
  1185. mindsdb/integrations/handlers/pinot_handler/requirements.txt +1 -0
  1186. mindsdb/integrations/handlers/pinot_handler/tests/__init__.py +0 -0
  1187. mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +36 -0
  1188. mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
  1189. mindsdb/integrations/handlers/pirateweather_handler/__init__.py +29 -0
  1190. mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +14 -0
  1191. mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
  1192. mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +236 -0
  1193. mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
  1194. mindsdb/integrations/handlers/plaid_handler/__init__.py +21 -0
  1195. mindsdb/integrations/handlers/plaid_handler/icon.svg +3 -0
  1196. mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
  1197. mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +159 -0
  1198. mindsdb/integrations/handlers/plaid_handler/requirements.txt +1 -0
  1199. mindsdb/integrations/handlers/plaid_handler/utils.py +9 -0
  1200. mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
  1201. mindsdb/integrations/handlers/planetscale_handler/__init__.py +20 -0
  1202. mindsdb/integrations/handlers/planetscale_handler/connection_args.py +36 -0
  1203. mindsdb/integrations/handlers/planetscale_handler/icon.svg +3 -0
  1204. mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +14 -0
  1205. mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
  1206. mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
  1207. mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +21 -0
  1208. mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +10 -0
  1209. mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +103 -0
  1210. mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +1 -0
  1211. mindsdb/integrations/handlers/portkey_handler/__about__.py +9 -0
  1212. mindsdb/integrations/handlers/portkey_handler/__init__.py +22 -0
  1213. mindsdb/integrations/handlers/portkey_handler/icon.svg +9 -0
  1214. mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +79 -0
  1215. mindsdb/integrations/handlers/portkey_handler/requirements.txt +1 -0
  1216. mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
  1217. mindsdb/integrations/handlers/postgres_handler/__init__.py +20 -0
  1218. mindsdb/integrations/handlers/postgres_handler/connection_args.py +65 -0
  1219. mindsdb/integrations/handlers/postgres_handler/icon.svg +23 -0
  1220. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +396 -0
  1221. mindsdb/integrations/handlers/postgres_handler/tests/__init__.py +0 -0
  1222. mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +172 -0
  1223. mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
  1224. mindsdb/integrations/handlers/pycaret_handler/__init__.py +22 -0
  1225. mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
  1226. mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
  1227. mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
  1228. mindsdb/integrations/handlers/pycaret_handler/test/__init__.py +0 -0
  1229. mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +242 -0
  1230. mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
  1231. mindsdb/integrations/handlers/pypi_handler/__init__.py +28 -0
  1232. mindsdb/integrations/handlers/pypi_handler/api.py +152 -0
  1233. mindsdb/integrations/handlers/pypi_handler/icon.svg +123 -0
  1234. mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +73 -0
  1235. mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +263 -0
  1236. mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
  1237. mindsdb/integrations/handlers/qdrant_handler/__init__.py +29 -0
  1238. mindsdb/integrations/handlers/qdrant_handler/connection_args.py +75 -0
  1239. mindsdb/integrations/handlers/qdrant_handler/icon.svg +10 -0
  1240. mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +402 -0
  1241. mindsdb/integrations/handlers/qdrant_handler/requirements.txt +1 -0
  1242. mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
  1243. mindsdb/integrations/handlers/questdb_handler/__init__.py +20 -0
  1244. mindsdb/integrations/handlers/questdb_handler/icon.svg +25 -0
  1245. mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +72 -0
  1246. mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
  1247. mindsdb/integrations/handlers/questdb_handler/tests/__init__.py +0 -0
  1248. mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +35 -0
  1249. mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
  1250. mindsdb/integrations/handlers/quickbooks_handler/__init__.py +21 -0
  1251. mindsdb/integrations/handlers/quickbooks_handler/icon.svg +11 -0
  1252. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
  1253. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +374 -0
  1254. mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +1 -0
  1255. mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
  1256. mindsdb/integrations/handlers/rag_handler/__init__.py +29 -0
  1257. mindsdb/integrations/handlers/rag_handler/exceptions.py +26 -0
  1258. mindsdb/integrations/handlers/rag_handler/icon.svg +13 -0
  1259. mindsdb/integrations/handlers/rag_handler/ingest.py +185 -0
  1260. mindsdb/integrations/handlers/rag_handler/rag.py +147 -0
  1261. mindsdb/integrations/handlers/rag_handler/rag_handler.py +144 -0
  1262. mindsdb/integrations/handlers/rag_handler/requirements.txt +6 -0
  1263. mindsdb/integrations/handlers/rag_handler/settings.py +479 -0
  1264. mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
  1265. mindsdb/integrations/handlers/ray_serve_handler/__init__.py +18 -0
  1266. mindsdb/integrations/handlers/ray_serve_handler/icon.svg +3 -0
  1267. mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +66 -0
  1268. mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
  1269. mindsdb/integrations/handlers/reddit_handler/__init__.py +21 -0
  1270. mindsdb/integrations/handlers/reddit_handler/icon.svg +11 -0
  1271. mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
  1272. mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +195 -0
  1273. mindsdb/integrations/handlers/reddit_handler/requirements.txt +1 -0
  1274. mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
  1275. mindsdb/integrations/handlers/redshift_handler/__init__.py +20 -0
  1276. mindsdb/integrations/handlers/redshift_handler/connection_args.py +58 -0
  1277. mindsdb/integrations/handlers/redshift_handler/icon.svg +9 -0
  1278. mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +69 -0
  1279. mindsdb/integrations/handlers/redshift_handler/tests/__init__.py +0 -0
  1280. mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +154 -0
  1281. mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
  1282. mindsdb/integrations/handlers/replicate_handler/__init__.py +19 -0
  1283. mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
  1284. mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
  1285. mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
  1286. mindsdb/integrations/handlers/replicate_handler/icon.svg +5 -0
  1287. mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +162 -0
  1288. mindsdb/integrations/handlers/replicate_handler/requirements.txt +1 -0
  1289. mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
  1290. mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +19 -0
  1291. mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +6 -0
  1292. mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +1 -0
  1293. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
  1294. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +201 -0
  1295. mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
  1296. mindsdb/integrations/handlers/rockset_handler/__init__.py +21 -0
  1297. mindsdb/integrations/handlers/rockset_handler/connection_args.py +45 -0
  1298. mindsdb/integrations/handlers/rockset_handler/icon.svg +5 -0
  1299. mindsdb/integrations/handlers/rockset_handler/requirements.txt +1 -0
  1300. mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +11 -0
  1301. mindsdb/integrations/handlers/rockset_handler/tests/__init__.py +0 -0
  1302. mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
  1303. mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
  1304. mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +32 -0
  1305. mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
  1306. mindsdb/integrations/handlers/s3_handler/__init__.py +20 -0
  1307. mindsdb/integrations/handlers/s3_handler/connection_args.py +47 -0
  1308. mindsdb/integrations/handlers/s3_handler/icon.svg +15 -0
  1309. mindsdb/integrations/handlers/s3_handler/s3_handler.py +454 -0
  1310. mindsdb/integrations/handlers/s3_handler/tests/__init__.py +0 -0
  1311. mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +37 -0
  1312. mindsdb/integrations/handlers/salesforce_handler/__about__.py +9 -0
  1313. mindsdb/integrations/handlers/salesforce_handler/__init__.py +30 -0
  1314. mindsdb/integrations/handlers/salesforce_handler/connection_args.py +39 -0
  1315. mindsdb/integrations/handlers/salesforce_handler/icon.svg +1 -0
  1316. mindsdb/integrations/handlers/salesforce_handler/requirements.txt +1 -0
  1317. mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +180 -0
  1318. mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +129 -0
  1319. mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
  1320. mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
  1321. mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
  1322. mindsdb/integrations/handlers/sap_erp_handler/icon.svg +13 -0
  1323. mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
  1324. mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
  1325. mindsdb/integrations/handlers/sap_erp_handler/tests/__init__.py +0 -0
  1326. mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
  1327. mindsdb/integrations/handlers/scylla_handler/__init__.py +21 -0
  1328. mindsdb/integrations/handlers/scylla_handler/connection_args.py +50 -0
  1329. mindsdb/integrations/handlers/scylla_handler/icon.svg +17 -0
  1330. mindsdb/integrations/handlers/scylla_handler/requirements.txt +1 -0
  1331. mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +205 -0
  1332. mindsdb/integrations/handlers/scylla_handler/tests/__init__.py +0 -0
  1333. mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +38 -0
  1334. mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
  1335. mindsdb/integrations/handlers/sendinblue_handler/__init__.py +27 -0
  1336. mindsdb/integrations/handlers/sendinblue_handler/icon.svg +3 -0
  1337. mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +1 -0
  1338. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
  1339. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +276 -0
  1340. mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +9 -0
  1341. mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +21 -0
  1342. mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +21 -0
  1343. mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +1 -0
  1344. mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +75 -0
  1345. mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +12 -0
  1346. mindsdb/integrations/handlers/serpstack_handler/__about__.py +9 -0
  1347. mindsdb/integrations/handlers/serpstack_handler/__init__.py +27 -0
  1348. mindsdb/integrations/handlers/serpstack_handler/icon.svg +86 -0
  1349. mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +123 -0
  1350. mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +260 -0
  1351. mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
  1352. mindsdb/integrations/handlers/sharepoint_handler/__init__.py +27 -0
  1353. mindsdb/integrations/handlers/sharepoint_handler/icon.svg +23 -0
  1354. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +579 -0
  1355. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
  1356. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +581 -0
  1357. mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py +0 -0
  1358. mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +53 -0
  1359. mindsdb/integrations/handlers/sharepoint_handler/utils.py +163 -0
  1360. mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
  1361. mindsdb/integrations/handlers/sheets_handler/__init__.py +20 -0
  1362. mindsdb/integrations/handlers/sheets_handler/connection_args.py +20 -0
  1363. mindsdb/integrations/handlers/sheets_handler/icon.svg +55 -0
  1364. mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +176 -0
  1365. mindsdb/integrations/handlers/sheets_handler/tests/__init__.py +0 -0
  1366. mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +33 -0
  1367. mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
  1368. mindsdb/integrations/handlers/shopify_handler/__init__.py +27 -0
  1369. mindsdb/integrations/handlers/shopify_handler/icon.svg +5 -0
  1370. mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
  1371. mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
  1372. mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +1083 -0
  1373. mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
  1374. mindsdb/integrations/handlers/singlestore_handler/__init__.py +21 -0
  1375. mindsdb/integrations/handlers/singlestore_handler/icon.svg +16 -0
  1376. mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
  1377. mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
  1378. mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py +0 -0
  1379. mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +42 -0
  1380. mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
  1381. mindsdb/integrations/handlers/slack_handler/__init__.py +28 -0
  1382. mindsdb/integrations/handlers/slack_handler/connection_args.py +26 -0
  1383. mindsdb/integrations/handlers/slack_handler/icon.svg +13 -0
  1384. mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
  1385. mindsdb/integrations/handlers/slack_handler/slack_handler.py +339 -0
  1386. mindsdb/integrations/handlers/slack_handler/slack_tables.py +718 -0
  1387. mindsdb/integrations/handlers/slack_handler/tests/__init__.py +0 -0
  1388. mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +27 -0
  1389. mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
  1390. mindsdb/integrations/handlers/snowflake_handler/__init__.py +21 -0
  1391. mindsdb/integrations/handlers/snowflake_handler/connection_args.py +63 -0
  1392. mindsdb/integrations/handlers/snowflake_handler/icon.svg +10 -0
  1393. mindsdb/integrations/handlers/snowflake_handler/requirements.txt +2 -0
  1394. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +280 -0
  1395. mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py +0 -0
  1396. mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +230 -0
  1397. mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
  1398. mindsdb/integrations/handlers/solace_handler/__init__.py +19 -0
  1399. mindsdb/integrations/handlers/solace_handler/icon.svg +3 -0
  1400. mindsdb/integrations/handlers/solace_handler/requirements.txt +1 -0
  1401. mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
  1402. mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
  1403. mindsdb/integrations/handlers/solr_handler/__init__.py +20 -0
  1404. mindsdb/integrations/handlers/solr_handler/connection_args.py +46 -0
  1405. mindsdb/integrations/handlers/solr_handler/icon.svg +10 -0
  1406. mindsdb/integrations/handlers/solr_handler/requirements.txt +1 -0
  1407. mindsdb/integrations/handlers/solr_handler/solr_handler.py +176 -0
  1408. mindsdb/integrations/handlers/solr_handler/tests/__init__.py +0 -0
  1409. mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +38 -0
  1410. mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
  1411. mindsdb/integrations/handlers/spacy_handler/__init__.py +19 -0
  1412. mindsdb/integrations/handlers/spacy_handler/icon.svg +3 -0
  1413. mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
  1414. mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
  1415. mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
  1416. mindsdb/integrations/handlers/sqlany_handler/__init__.py +20 -0
  1417. mindsdb/integrations/handlers/sqlany_handler/connection_args.py +46 -0
  1418. mindsdb/integrations/handlers/sqlany_handler/icon.svg +13 -0
  1419. mindsdb/integrations/handlers/sqlany_handler/requirements.txt +2 -0
  1420. mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +179 -0
  1421. mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
  1422. mindsdb/integrations/handlers/sqlite_handler/__init__.py +20 -0
  1423. mindsdb/integrations/handlers/sqlite_handler/connection_args.py +16 -0
  1424. mindsdb/integrations/handlers/sqlite_handler/icon.svg +12 -0
  1425. mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +184 -0
  1426. mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py +0 -0
  1427. mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +32 -0
  1428. mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
  1429. mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +20 -0
  1430. mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +48 -0
  1431. mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +21 -0
  1432. mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +2 -0
  1433. mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +154 -0
  1434. mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py +0 -0
  1435. mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +45 -0
  1436. mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
  1437. mindsdb/integrations/handlers/stabilityai_handler/__init__.py +19 -0
  1438. mindsdb/integrations/handlers/stabilityai_handler/icon.svg +10 -0
  1439. mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
  1440. mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
  1441. mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +172 -0
  1442. mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
  1443. mindsdb/integrations/handlers/starrocks_handler/__init__.py +20 -0
  1444. mindsdb/integrations/handlers/starrocks_handler/icon.svg +9 -0
  1445. mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
  1446. mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
  1447. mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py +0 -0
  1448. mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +56 -0
  1449. mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
  1450. mindsdb/integrations/handlers/statsforecast_handler/__init__.py +19 -0
  1451. mindsdb/integrations/handlers/statsforecast_handler/icon.svg +5 -0
  1452. mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
  1453. mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
  1454. mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +192 -0
  1455. mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
  1456. mindsdb/integrations/handlers/strapi_handler/__init__.py +28 -0
  1457. mindsdb/integrations/handlers/strapi_handler/icon.svg +7 -0
  1458. mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
  1459. mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +131 -0
  1460. mindsdb/integrations/handlers/strapi_handler/tests/__init__.py +0 -0
  1461. mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
  1462. mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
  1463. mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
  1464. mindsdb/integrations/handlers/strava_handler/icon.svg +12 -0
  1465. mindsdb/integrations/handlers/strava_handler/requirements.txt +1 -0
  1466. mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
  1467. mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
  1468. mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
  1469. mindsdb/integrations/handlers/stripe_handler/__init__.py +27 -0
  1470. mindsdb/integrations/handlers/stripe_handler/icon.svg +4 -0
  1471. mindsdb/integrations/handlers/stripe_handler/requirements.txt +1 -0
  1472. mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
  1473. mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
  1474. mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
  1475. mindsdb/integrations/handlers/supabase_handler/__init__.py +20 -0
  1476. mindsdb/integrations/handlers/supabase_handler/icon.svg +15 -0
  1477. mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
  1478. mindsdb/integrations/handlers/supabase_handler/tests/__init__.py +0 -0
  1479. mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +46 -0
  1480. mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
  1481. mindsdb/integrations/handlers/surrealdb_handler/__init__.py +20 -0
  1482. mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +52 -0
  1483. mindsdb/integrations/handlers/surrealdb_handler/icon.svg +9 -0
  1484. mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
  1485. mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +196 -0
  1486. mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py +0 -0
  1487. mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +57 -0
  1488. mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py +0 -0
  1489. mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +20 -0
  1490. mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
  1491. mindsdb/integrations/handlers/symbl_handler/__init__.py +28 -0
  1492. mindsdb/integrations/handlers/symbl_handler/connection_args.py +25 -0
  1493. mindsdb/integrations/handlers/symbl_handler/icon.svg +4 -0
  1494. mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
  1495. mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +106 -0
  1496. mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
  1497. mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
  1498. mindsdb/integrations/handlers/tdengine_handler/__init__.py +20 -0
  1499. mindsdb/integrations/handlers/tdengine_handler/connection_args.py +36 -0
  1500. mindsdb/integrations/handlers/tdengine_handler/icon.svg +59 -0
  1501. mindsdb/integrations/handlers/tdengine_handler/requirements.txt +1 -0
  1502. mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +146 -0
  1503. mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py +0 -0
  1504. mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +48 -0
  1505. mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
  1506. mindsdb/integrations/handlers/teradata_handler/__init__.py +20 -0
  1507. mindsdb/integrations/handlers/teradata_handler/connection_args.py +39 -0
  1508. mindsdb/integrations/handlers/teradata_handler/icon.svg +4 -0
  1509. mindsdb/integrations/handlers/teradata_handler/requirements.txt +2 -0
  1510. mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +245 -0
  1511. mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
  1512. mindsdb/integrations/handlers/tidb_handler/__init__.py +21 -0
  1513. mindsdb/integrations/handlers/tidb_handler/connection_args.py +36 -0
  1514. mindsdb/integrations/handlers/tidb_handler/icon.svg +5 -0
  1515. mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
  1516. mindsdb/integrations/handlers/tidb_handler/tests/__init__.py +0 -0
  1517. mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +45 -0
  1518. mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +11 -0
  1519. mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
  1520. mindsdb/integrations/handlers/timegpt_handler/__init__.py +18 -0
  1521. mindsdb/integrations/handlers/timegpt_handler/icon.svg +5 -0
  1522. mindsdb/integrations/handlers/timegpt_handler/requirements.txt +1 -0
  1523. mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +205 -0
  1524. mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
  1525. mindsdb/integrations/handlers/timescaledb_handler/__init__.py +19 -0
  1526. mindsdb/integrations/handlers/timescaledb_handler/icon.svg +9 -0
  1527. mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py +0 -0
  1528. mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +47 -0
  1529. mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
  1530. mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
  1531. mindsdb/integrations/handlers/tpot_handler/__init__.py +19 -0
  1532. mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
  1533. mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
  1534. mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +80 -0
  1535. mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
  1536. mindsdb/integrations/handlers/trino_handler/__init__.py +19 -0
  1537. mindsdb/integrations/handlers/trino_handler/icon.svg +23 -0
  1538. mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
  1539. mindsdb/integrations/handlers/trino_handler/tests/__init__.py +0 -0
  1540. mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +48 -0
  1541. mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +12 -0
  1542. mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
  1543. mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
  1544. mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +27 -0
  1545. mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +4 -0
  1546. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +215 -0
  1547. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
  1548. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +477 -0
  1549. mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +9 -0
  1550. mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +19 -0
  1551. mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +7 -0
  1552. mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +2 -0
  1553. mindsdb/integrations/handlers/twelve_labs_handler/settings.py +271 -0
  1554. mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +567 -0
  1555. mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +285 -0
  1556. mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
  1557. mindsdb/integrations/handlers/twilio_handler/__init__.py +21 -0
  1558. mindsdb/integrations/handlers/twilio_handler/icon.svg +11 -0
  1559. mindsdb/integrations/handlers/twilio_handler/requirements.txt +1 -0
  1560. mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
  1561. mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
  1562. mindsdb/integrations/handlers/twitter_handler/__init__.py +21 -0
  1563. mindsdb/integrations/handlers/twitter_handler/icon.svg +10 -0
  1564. mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
  1565. mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
  1566. mindsdb/integrations/handlers/unify_handler/__about__.py +9 -0
  1567. mindsdb/integrations/handlers/unify_handler/__init__.py +22 -0
  1568. mindsdb/integrations/handlers/unify_handler/creation_args.py +14 -0
  1569. mindsdb/integrations/handlers/unify_handler/icon.svg +25 -0
  1570. mindsdb/integrations/handlers/unify_handler/model_using_args.py +5 -0
  1571. mindsdb/integrations/handlers/unify_handler/requirements.txt +1 -0
  1572. mindsdb/integrations/handlers/unify_handler/tests/__init__.py +0 -0
  1573. mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +60 -0
  1574. mindsdb/integrations/handlers/unify_handler/unify_handler.py +67 -0
  1575. mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
  1576. mindsdb/integrations/handlers/vertex_handler/__init__.py +19 -0
  1577. mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
  1578. mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
  1579. mindsdb/integrations/handlers/vertex_handler/vertex_client.py +95 -0
  1580. mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
  1581. mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
  1582. mindsdb/integrations/handlers/vertica_handler/__init__.py +20 -0
  1583. mindsdb/integrations/handlers/vertica_handler/connection_args.py +41 -0
  1584. mindsdb/integrations/handlers/vertica_handler/icon.svg +8 -0
  1585. mindsdb/integrations/handlers/vertica_handler/requirements.txt +2 -0
  1586. mindsdb/integrations/handlers/vertica_handler/tests/__init__.py +0 -0
  1587. mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +53 -0
  1588. mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +160 -0
  1589. mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
  1590. mindsdb/integrations/handlers/vitess_handler/__init__.py +20 -0
  1591. mindsdb/integrations/handlers/vitess_handler/icon.svg +23 -0
  1592. mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
  1593. mindsdb/integrations/handlers/vitess_handler/tests/__init__.py +0 -0
  1594. mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +56 -0
  1595. mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
  1596. mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
  1597. mindsdb/integrations/handlers/weaviate_handler/__init__.py +29 -0
  1598. mindsdb/integrations/handlers/weaviate_handler/connection_args.py +29 -0
  1599. mindsdb/integrations/handlers/weaviate_handler/icon.svg +197 -0
  1600. mindsdb/integrations/handlers/weaviate_handler/requirements.txt +1 -0
  1601. mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +652 -0
  1602. mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
  1603. mindsdb/integrations/handlers/web_handler/__init__.py +24 -0
  1604. mindsdb/integrations/handlers/web_handler/icon.svg +11 -0
  1605. mindsdb/integrations/handlers/web_handler/requirements.txt +3 -0
  1606. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +343 -0
  1607. mindsdb/integrations/handlers/web_handler/web_handler.py +91 -0
  1608. mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
  1609. mindsdb/integrations/handlers/webz_handler/__init__.py +28 -0
  1610. mindsdb/integrations/handlers/webz_handler/icon.svg +4 -0
  1611. mindsdb/integrations/handlers/webz_handler/requirements.txt +3 -0
  1612. mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
  1613. mindsdb/integrations/handlers/webz_handler/webz_tables.py +218 -0
  1614. mindsdb/integrations/handlers/whatsapp_handler/__about__.py +9 -0
  1615. mindsdb/integrations/handlers/whatsapp_handler/__init__.py +28 -0
  1616. mindsdb/integrations/handlers/whatsapp_handler/icon.svg +19 -0
  1617. mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +1 -0
  1618. mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +420 -0
  1619. mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
  1620. mindsdb/integrations/handlers/writer_handler/__init__.py +30 -0
  1621. mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
  1622. mindsdb/integrations/handlers/writer_handler/icon.svg +10 -0
  1623. mindsdb/integrations/handlers/writer_handler/ingest.py +11 -0
  1624. mindsdb/integrations/handlers/writer_handler/rag.py +14 -0
  1625. mindsdb/integrations/handlers/writer_handler/requirements.txt +4 -0
  1626. mindsdb/integrations/handlers/writer_handler/settings.py +86 -0
  1627. mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
  1628. mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
  1629. mindsdb/integrations/handlers/xata_handler/__init__.py +29 -0
  1630. mindsdb/integrations/handlers/xata_handler/connection_args.py +35 -0
  1631. mindsdb/integrations/handlers/xata_handler/icon.svg +29 -0
  1632. mindsdb/integrations/handlers/xata_handler/requirements.txt +1 -0
  1633. mindsdb/integrations/handlers/xata_handler/tests/__init__.py +0 -0
  1634. mindsdb/integrations/handlers/xata_handler/xata_handler.py +347 -0
  1635. mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
  1636. mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
  1637. mindsdb/integrations/handlers/youtube_handler/icon.svg +11 -0
  1638. mindsdb/integrations/handlers/youtube_handler/requirements.txt +2 -0
  1639. mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
  1640. mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +448 -0
  1641. mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
  1642. mindsdb/integrations/handlers/yugabyte_handler/__init__.py +19 -0
  1643. mindsdb/integrations/handlers/yugabyte_handler/icon.svg +4 -0
  1644. mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py +0 -0
  1645. mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +49 -0
  1646. mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
  1647. mindsdb/integrations/handlers/zendesk_handler/__about__.py +9 -0
  1648. mindsdb/integrations/handlers/zendesk_handler/__init__.py +28 -0
  1649. mindsdb/integrations/handlers/zendesk_handler/connection_args.py +33 -0
  1650. mindsdb/integrations/handlers/zendesk_handler/icon.svg +1 -0
  1651. mindsdb/integrations/handlers/zendesk_handler/requirements.txt +1 -0
  1652. mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +89 -0
  1653. mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +463 -0
  1654. mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
  1655. mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +28 -0
  1656. mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +18 -0
  1657. mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +4 -0
  1658. mindsdb/integrations/handlers/zipcodebase_handler/tests/__init__.py +0 -0
  1659. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +67 -0
  1660. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +107 -0
  1661. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
  1662. mindsdb/integrations/handlers/zotero_handler/__about__.py +9 -0
  1663. mindsdb/integrations/handlers/zotero_handler/__init__.py +21 -0
  1664. mindsdb/integrations/handlers/zotero_handler/icon.svg +102 -0
  1665. mindsdb/integrations/handlers/zotero_handler/requirements.txt +1 -0
  1666. mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +109 -0
  1667. mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +157 -0
  1668. mindsdb/integrations/libs/__init__.py +3 -0
  1669. mindsdb/integrations/libs/api_handler.py +444 -0
  1670. mindsdb/integrations/libs/api_handler_exceptions.py +18 -0
  1671. mindsdb/integrations/libs/base.py +355 -0
  1672. mindsdb/integrations/libs/const.py +23 -0
  1673. mindsdb/integrations/libs/llm/__init__.py +0 -0
  1674. mindsdb/integrations/libs/llm/config.py +106 -0
  1675. mindsdb/integrations/libs/llm/utils.py +603 -0
  1676. mindsdb/integrations/libs/ml_exec_base.py +453 -0
  1677. mindsdb/integrations/libs/ml_handler_process/__init__.py +8 -0
  1678. mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +28 -0
  1679. mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +14 -0
  1680. mindsdb/integrations/libs/ml_handler_process/describe_process.py +117 -0
  1681. mindsdb/integrations/libs/ml_handler_process/func_call_process.py +26 -0
  1682. mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +28 -0
  1683. mindsdb/integrations/libs/ml_handler_process/learn_process.py +156 -0
  1684. mindsdb/integrations/libs/ml_handler_process/predict_process.py +35 -0
  1685. mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +28 -0
  1686. mindsdb/integrations/libs/ml_handler_process/update_process.py +27 -0
  1687. mindsdb/integrations/libs/process_cache.py +430 -0
  1688. mindsdb/integrations/libs/realtime_chat_handler.py +33 -0
  1689. mindsdb/integrations/libs/response.py +95 -0
  1690. mindsdb/integrations/libs/storage_handler.py +88 -0
  1691. mindsdb/integrations/libs/vectordatabase_handler.py +534 -0
  1692. mindsdb/integrations/utilities/__init__.py +0 -0
  1693. mindsdb/integrations/utilities/datasets/__init__.py +0 -0
  1694. mindsdb/integrations/utilities/datasets/dataset.py +73 -0
  1695. mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +21 -0
  1696. mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +106 -0
  1697. mindsdb/integrations/utilities/date_utils.py +79 -0
  1698. mindsdb/integrations/utilities/handler_utils.py +70 -0
  1699. mindsdb/integrations/utilities/handlers/__init__.py +0 -0
  1700. mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +1 -0
  1701. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +1 -0
  1702. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +138 -0
  1703. mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +2 -0
  1704. mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +11 -0
  1705. mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +2 -0
  1706. mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +59 -0
  1707. mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +108 -0
  1708. mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +1 -0
  1709. mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +128 -0
  1710. mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +4 -0
  1711. mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +63 -0
  1712. mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +44 -0
  1713. mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +17 -0
  1714. mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +71 -0
  1715. mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +134 -0
  1716. mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +67 -0
  1717. mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +1 -0
  1718. mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +18 -0
  1719. mindsdb/integrations/utilities/install.py +134 -0
  1720. mindsdb/integrations/utilities/query_traversal.py +239 -0
  1721. mindsdb/integrations/utilities/rag/__init__.py +0 -0
  1722. mindsdb/integrations/utilities/rag/chains/__init__.py +0 -0
  1723. mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +218 -0
  1724. mindsdb/integrations/utilities/rag/config_loader.py +77 -0
  1725. mindsdb/integrations/utilities/rag/loaders/__init__.py +0 -0
  1726. mindsdb/integrations/utilities/rag/loaders/file_loader.py +44 -0
  1727. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +54 -0
  1728. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py +0 -0
  1729. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +84 -0
  1730. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +60 -0
  1731. mindsdb/integrations/utilities/rag/pipelines/__init__.py +0 -0
  1732. mindsdb/integrations/utilities/rag/pipelines/rag.py +253 -0
  1733. mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +83 -0
  1734. mindsdb/integrations/utilities/rag/rerankers/__init__.py +0 -0
  1735. mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +156 -0
  1736. mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
  1737. mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +117 -0
  1738. mindsdb/integrations/utilities/rag/retrievers/base.py +10 -0
  1739. mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +101 -0
  1740. mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +149 -0
  1741. mindsdb/integrations/utilities/rag/settings.py +511 -0
  1742. mindsdb/integrations/utilities/rag/splitters/__init__.py +0 -0
  1743. mindsdb/integrations/utilities/rag/splitters/file_splitter.py +132 -0
  1744. mindsdb/integrations/utilities/rag/utils.py +52 -0
  1745. mindsdb/integrations/utilities/rag/vector_store.py +99 -0
  1746. mindsdb/integrations/utilities/sql_utils.py +225 -0
  1747. mindsdb/integrations/utilities/test_utils.py +30 -0
  1748. mindsdb/integrations/utilities/time_series_utils.py +191 -0
  1749. mindsdb/integrations/utilities/utils.py +32 -0
  1750. mindsdb/interfaces/__init__.py +1 -0
  1751. mindsdb/interfaces/agents/__init__.py +0 -0
  1752. mindsdb/interfaces/agents/agents_controller.py +435 -0
  1753. mindsdb/interfaces/agents/callback_handlers.py +130 -0
  1754. mindsdb/interfaces/agents/constants.py +179 -0
  1755. mindsdb/interfaces/agents/langchain_agent.py +676 -0
  1756. mindsdb/interfaces/agents/langfuse_callback_handler.py +163 -0
  1757. mindsdb/interfaces/agents/mindsdb_chat_model.py +196 -0
  1758. mindsdb/interfaces/agents/mindsdb_database_agent.py +54 -0
  1759. mindsdb/interfaces/agents/safe_output_parser.py +51 -0
  1760. mindsdb/interfaces/chatbot/__init__.py +1 -0
  1761. mindsdb/interfaces/chatbot/chatbot_controller.py +409 -0
  1762. mindsdb/interfaces/chatbot/chatbot_executor.py +226 -0
  1763. mindsdb/interfaces/chatbot/chatbot_task.py +174 -0
  1764. mindsdb/interfaces/chatbot/memory.py +223 -0
  1765. mindsdb/interfaces/chatbot/model_executor.py +107 -0
  1766. mindsdb/interfaces/chatbot/polling.py +233 -0
  1767. mindsdb/interfaces/chatbot/types.py +38 -0
  1768. mindsdb/interfaces/database/__init__.py +0 -0
  1769. mindsdb/interfaces/database/database.py +122 -0
  1770. mindsdb/interfaces/database/integrations.py +931 -0
  1771. mindsdb/interfaces/database/log.py +297 -0
  1772. mindsdb/interfaces/database/projects.py +397 -0
  1773. mindsdb/interfaces/database/views.py +139 -0
  1774. mindsdb/interfaces/file/__init__.py +0 -0
  1775. mindsdb/interfaces/file/file_controller.py +146 -0
  1776. mindsdb/interfaces/functions/__init__.py +0 -0
  1777. mindsdb/interfaces/functions/controller.py +207 -0
  1778. mindsdb/interfaces/jobs/__init__.py +0 -0
  1779. mindsdb/interfaces/jobs/jobs_controller.py +549 -0
  1780. mindsdb/interfaces/jobs/scheduler.py +143 -0
  1781. mindsdb/interfaces/knowledge_base/__init__.py +0 -0
  1782. mindsdb/interfaces/knowledge_base/controller.py +899 -0
  1783. mindsdb/interfaces/knowledge_base/preprocessing/__init__.py +0 -0
  1784. mindsdb/interfaces/knowledge_base/preprocessing/constants.py +13 -0
  1785. mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +176 -0
  1786. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +401 -0
  1787. mindsdb/interfaces/knowledge_base/preprocessing/models.py +108 -0
  1788. mindsdb/interfaces/model/__init__.py +0 -0
  1789. mindsdb/interfaces/model/functions.py +155 -0
  1790. mindsdb/interfaces/model/model_controller.py +488 -0
  1791. mindsdb/interfaces/query_context/__init__.py +0 -0
  1792. mindsdb/interfaces/query_context/context_controller.py +289 -0
  1793. mindsdb/interfaces/query_context/last_query.py +266 -0
  1794. mindsdb/interfaces/skills/__init__.py +1 -0
  1795. mindsdb/interfaces/skills/custom/__init__.py +0 -0
  1796. mindsdb/interfaces/skills/custom/text2sql/__init__.py +0 -0
  1797. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +37 -0
  1798. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +88 -0
  1799. mindsdb/interfaces/skills/retrieval_tool.py +110 -0
  1800. mindsdb/interfaces/skills/skill_tool.py +255 -0
  1801. mindsdb/interfaces/skills/skills_controller.py +175 -0
  1802. mindsdb/interfaces/skills/sql_agent.py +256 -0
  1803. mindsdb/interfaces/storage/__init__.py +1 -0
  1804. mindsdb/interfaces/storage/db.py +597 -0
  1805. mindsdb/interfaces/storage/fs.py +661 -0
  1806. mindsdb/interfaces/storage/json.py +97 -0
  1807. mindsdb/interfaces/storage/model_fs.py +282 -0
  1808. mindsdb/interfaces/tabs/__init__.py +0 -0
  1809. mindsdb/interfaces/tabs/tabs_controller.py +291 -0
  1810. mindsdb/interfaces/tasks/__init__.py +0 -0
  1811. mindsdb/interfaces/tasks/task.py +16 -0
  1812. mindsdb/interfaces/tasks/task_monitor.py +150 -0
  1813. mindsdb/interfaces/tasks/task_thread.py +55 -0
  1814. mindsdb/interfaces/triggers/__init__.py +0 -0
  1815. mindsdb/interfaces/triggers/trigger_task.py +95 -0
  1816. mindsdb/interfaces/triggers/triggers_controller.py +167 -0
  1817. mindsdb/metrics/__init__.py +0 -0
  1818. mindsdb/metrics/metrics.py +50 -0
  1819. mindsdb/metrics/server.py +26 -0
  1820. mindsdb/migrations/__init__.py +0 -0
  1821. mindsdb/migrations/alembic.ini +65 -0
  1822. mindsdb/migrations/env.py +87 -0
  1823. mindsdb/migrations/migrate.py +53 -0
  1824. mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
  1825. mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +38 -0
  1826. mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +256 -0
  1827. mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +156 -0
  1828. mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +106 -0
  1829. mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +29 -0
  1830. mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +33 -0
  1831. mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +42 -0
  1832. mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +36 -0
  1833. mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +81 -0
  1834. mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +69 -0
  1835. mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +74 -0
  1836. mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +59 -0
  1837. mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +90 -0
  1838. mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +115 -0
  1839. mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +66 -0
  1840. mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +106 -0
  1841. mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +34 -0
  1842. mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +56 -0
  1843. mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +42 -0
  1844. mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +36 -0
  1845. mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +33 -0
  1846. mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +35 -0
  1847. mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +46 -0
  1848. mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +41 -0
  1849. mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +28 -0
  1850. mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +35 -0
  1851. mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +60 -0
  1852. mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +54 -0
  1853. mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +38 -0
  1854. mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +26 -0
  1855. mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +32 -0
  1856. mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +35 -0
  1857. mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +29 -0
  1858. mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +82 -0
  1859. mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +28 -0
  1860. mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +54 -0
  1861. mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +38 -0
  1862. mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
  1863. mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +44 -0
  1864. mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +32 -0
  1865. mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +44 -0
  1866. mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +36 -0
  1867. mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +34 -0
  1868. mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +50 -0
  1869. mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +47 -0
  1870. mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +42 -0
  1871. mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +27 -0
  1872. mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +41 -0
  1873. mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +28 -0
  1874. mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +103 -0
  1875. mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +44 -0
  1876. mindsdb/migrations/versions/__init__.py +0 -0
  1877. mindsdb/utilities/__init__.py +0 -0
  1878. mindsdb/utilities/auth.py +73 -0
  1879. mindsdb/utilities/cache.py +282 -0
  1880. mindsdb/utilities/config.py +530 -0
  1881. mindsdb/utilities/context.py +57 -0
  1882. mindsdb/utilities/context_executor.py +59 -0
  1883. mindsdb/utilities/exception.py +29 -0
  1884. mindsdb/utilities/fs.py +153 -0
  1885. mindsdb/utilities/functions.py +197 -0
  1886. mindsdb/utilities/hooks/__init__.py +34 -0
  1887. mindsdb/utilities/hooks/profiling.py +74 -0
  1888. mindsdb/utilities/json_encoder.py +33 -0
  1889. mindsdb/utilities/log.py +97 -0
  1890. mindsdb/utilities/log_controller.py +39 -0
  1891. mindsdb/utilities/ml_task_queue/__init__.py +57 -0
  1892. mindsdb/utilities/ml_task_queue/base.py +14 -0
  1893. mindsdb/utilities/ml_task_queue/const.py +26 -0
  1894. mindsdb/utilities/ml_task_queue/consumer.py +252 -0
  1895. mindsdb/utilities/ml_task_queue/producer.py +81 -0
  1896. mindsdb/utilities/ml_task_queue/task.py +82 -0
  1897. mindsdb/utilities/ml_task_queue/utils.py +124 -0
  1898. mindsdb/utilities/otel.py +72 -0
  1899. mindsdb/utilities/profiler/__init__.py +19 -0
  1900. mindsdb/utilities/profiler/profiler.py +144 -0
  1901. mindsdb/utilities/ps.py +78 -0
  1902. mindsdb/utilities/render/__init__.py +0 -0
  1903. mindsdb/utilities/render/sqlalchemy_render.py +831 -0
  1904. mindsdb/utilities/security.py +54 -0
  1905. mindsdb/utilities/sentry.py +46 -0
  1906. mindsdb/utilities/starters.py +33 -0
  1907. mindsdb/utilities/telemetry.py +44 -0
  1908. mindsdb/utilities/wizards.py +49 -0
  1909. MindsDB-1.3.1.dist-info/LICENSE +0 -21
  1910. MindsDB-1.3.1.dist-info/METADATA +0 -112
  1911. MindsDB-1.3.1.dist-info/RECORD +0 -55
  1912. mindsdb/config/__init__.py +0 -32
  1913. mindsdb/config/helpers.py +0 -21
  1914. mindsdb/external_libs/stats.py +0 -61
  1915. mindsdb/libs/__init__.py +0 -6
  1916. mindsdb/libs/backends/lightwood.py +0 -180
  1917. mindsdb/libs/backends/ludwig.py +0 -456
  1918. mindsdb/libs/constants/mindsdb.py +0 -81
  1919. mindsdb/libs/controllers/predictor.py +0 -583
  1920. mindsdb/libs/controllers/transaction.py +0 -254
  1921. mindsdb/libs/data_sources/file_ds.py +0 -196
  1922. mindsdb/libs/data_types/data_source.py +0 -59
  1923. mindsdb/libs/data_types/mindsdb_logger.py +0 -127
  1924. mindsdb/libs/data_types/probability_evaluation.py +0 -56
  1925. mindsdb/libs/data_types/transaction_data.py +0 -15
  1926. mindsdb/libs/data_types/transaction_output_data.py +0 -29
  1927. mindsdb/libs/data_types/transaction_output_row.py +0 -35
  1928. mindsdb/libs/helpers/explain_prediction.py +0 -114
  1929. mindsdb/libs/helpers/file_helpers.py +0 -66
  1930. mindsdb/libs/helpers/general_helpers.py +0 -276
  1931. mindsdb/libs/helpers/multi_data_source.py +0 -28
  1932. mindsdb/libs/helpers/parser.py +0 -161
  1933. mindsdb/libs/helpers/probabilistic_validator.py +0 -198
  1934. mindsdb/libs/helpers/sqlite_helpers.py +0 -33
  1935. mindsdb/libs/helpers/text_helpers.py +0 -79
  1936. mindsdb/libs/helpers/train_helpers.py +0 -4
  1937. mindsdb/libs/phases/base_module.py +0 -62
  1938. mindsdb/libs/phases/data_extractor/data_extractor.py +0 -233
  1939. mindsdb/libs/phases/data_transformer/data_transformer.py +0 -103
  1940. mindsdb/libs/phases/model_analyzer/helpers/column_evaluator.py +0 -120
  1941. mindsdb/libs/phases/model_analyzer/model_analyzer.py +0 -119
  1942. mindsdb/libs/phases/model_interface/model_interface.py +0 -31
  1943. mindsdb/libs/phases/stats_generator/scores.py +0 -377
  1944. mindsdb/libs/phases/stats_generator/stats_generator.py +0 -691
  1945. mindsdb/scraps.py +0 -133
  1946. {MindsDB-1.3.1.dist-info → MindsDB-25.1.2.0.dist-info}/top_level.txt +0 -0
  1947. /mindsdb/{external_libs → api}/__init__.py +0 -0
  1948. /mindsdb/{libs/backends → api/common}/__init__.py +0 -0
  1949. /mindsdb/{libs/constants → api/executor/data_types}/__init__.py +0 -0
  1950. /mindsdb/{libs/controllers → api/executor/datahub/classes}/__init__.py +0 -0
  1951. /mindsdb/{libs/data_sources → api/executor/sql_query}/__init__.py +0 -0
  1952. /mindsdb/{libs/data_types → api/executor/utilities}/__init__.py +0 -0
  1953. /mindsdb/{libs/helpers → api/http}/__init__.py +0 -0
  1954. /mindsdb/{libs/phases → api/http/namespaces}/__init__.py +0 -0
  1955. /mindsdb/{libs/phases/data_extractor → api/http/namespaces/configs}/__init__.py +0 -0
  1956. /mindsdb/{libs/phases/data_transformer → api/mongo}/__init__.py +0 -0
  1957. /mindsdb/{libs/phases/model_analyzer → api/mongo/utilities}/__init__.py +0 -0
  1958. /mindsdb/{libs/phases/model_analyzer/helpers → api/mysql}/__init__.py +0 -0
  1959. /mindsdb/{libs/phases/model_interface → api/mysql/mysql_proxy}/__init__.py +0 -0
  1960. /mindsdb/{libs/phases/stats_generator → api/mysql/mysql_proxy/classes}/__init__.py +0 -0
@@ -0,0 +1,306 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="38" viewBox="0 0 40 38" fill="none">
2
+ <g clip-path="url(#clip0_146_780)">
3
+ <path d="M23.4034 34.1067L23.528 34.3582L23.5326 34.3565C23.4143 34.5879 22.8103 35.7463 22.0851 36.6444C21.7394 37.073 21.3663 37.4418 21.0051 37.6223L20.9297 37.6754C20.9297 37.6754 20.9246 37.6787 20.9137 37.6838C20.9137 37.6838 19.9577 38.0984 19.0829 37.6838L19.0669 37.6754L18.9909 37.6223C18.6303 37.4418 18.2571 37.0724 17.9114 36.6444C17.1869 35.7463 16.5823 34.5879 16.4646 34.3565L16.4686 34.3582L16.5931 34.1067L16.6126 34.0967C16.76 34.3683 16.9006 34.6086 17.0349 34.8271C17.3857 35.3987 17.6971 35.8246 17.992 36.2912C17.9931 36.2945 17.9954 36.2968 17.9971 36.2996C18.4503 37.0132 19.0029 37.3898 19.0029 37.3898C19.0029 37.3898 19.28 37.6525 19.7514 37.6961H19.7537C19.8297 37.7033 19.9114 37.7039 19.9983 37.6972C20.084 37.7039 20.1657 37.7028 20.2423 37.6961H20.2451C20.716 37.6525 20.9931 37.3898 20.9931 37.3898C20.9931 37.3898 21.5457 37.0132 21.9989 36.3001L22.0046 36.2917C22.2989 35.8246 22.6103 35.3987 22.9611 34.8271C23.096 34.608 23.236 34.3688 23.384 34.0967L23.4034 34.1067Z" fill="#FDFDFD"/>
4
+ <path d="M39.3966 21.0817C39.4994 21.161 39.6212 21.218 39.7543 21.2448C39.7131 21.8187 39.6454 22.3904 39.5514 22.9582L39.4543 22.9431C39.3 23.6344 39.0017 24.424 38.6543 25.1963C39.0568 23.8559 39.3058 22.4759 39.3966 21.0817Z" fill="#DC01FF"/>
5
+ <path d="M39.4532 22.9431L39.5503 22.9576C39.2997 24.4802 38.8619 25.9676 38.2463 27.3874C37.2521 29.6874 35.8106 31.7766 34.0017 33.539C33.0749 34.446 32.0585 35.261 30.9674 35.9721H30.9663C30.5537 36.1481 30.1994 36.2766 29.9217 36.3152L30.3806 35.905C34.3223 33.4619 37.3074 29.6708 38.6514 25.1996L38.652 25.1974L38.6526 25.1957C39.0006 24.4234 39.2994 23.6338 39.4532 22.9431Z" fill="#DC01FF"/>
6
+ <path d="M38.6526 25.1996C37.3086 29.6702 34.324 33.4618 30.3817 35.9055L31.9103 34.5375C32.4349 34.1558 32.9514 33.6993 33.3754 33.226C34.8874 31.8725 36.0874 30.1636 36.9583 28.671C38.0286 26.8381 38.604 25.3309 38.6509 25.2041C38.6509 25.2024 38.652 25.2013 38.6526 25.1996Z" fill="#FF8D02"/>
7
+ <path d="M38.6497 25.2046C38.6023 25.3309 38.028 26.8386 36.9577 28.6715C37.051 28.5139 37.1017 28.3356 37.1051 28.1535C37.5166 27.4539 38.136 26.3474 38.6497 25.2046Z" fill="#EAEAEC"/>
8
+ <path d="M39.3954 21.081C39.3044 22.4754 39.0553 23.8556 38.6526 25.1962V25.1973L38.6514 25.1996C38.6514 25.2012 38.6503 25.2024 38.6497 25.204C38.1354 26.3468 37.5166 27.4527 37.1051 28.1524C37.1091 27.9659 37.0636 27.7815 36.9731 27.6173C36.8826 27.453 36.7501 27.3145 36.5886 27.2152C37.6446 24.9242 38.1882 22.439 38.1829 19.9259C38.1883 17.1601 37.5292 14.4316 36.2589 11.9605C36.4398 11.9082 36.6039 11.8112 36.7355 11.6789C36.867 11.5465 36.9614 11.3833 37.0097 11.2049C37.0564 11.0377 37.0607 10.8618 37.0223 10.6925C38.585 13.4532 39.4146 16.5532 39.4349 19.7086" fill="#EAEAEC"/>
9
+ <path d="M36.588 27.2158C36.8251 27.3611 36.9949 27.5846 37.0674 27.8512C37.0949 27.9512 37.1074 28.0524 37.1046 28.153C36.9576 28.4042 36.8067 28.6533 36.652 28.9001L36.5303 29.0784C36.3831 29.1574 36.2194 29.2025 36.0517 29.2105C35.884 29.2184 35.7166 29.1889 35.5623 29.1242C35.6337 29.0091 35.7034 28.8934 35.7726 28.7766C35.814 28.7905 35.8566 28.8005 35.9 28.8062L35.9411 28.8107C36.0486 28.8197 36.1567 28.8041 36.2569 28.7652C36.3571 28.7262 36.4467 28.6651 36.5185 28.5865C36.5904 28.5079 36.6426 28.414 36.6711 28.3123C36.6995 28.2106 36.7033 28.1038 36.6823 28.0004V27.9993C36.6803 27.987 36.6774 27.9749 36.6737 27.963C36.6726 27.9596 36.6726 27.9551 36.6709 27.9518L36.6594 27.9149C36.6505 27.8882 36.6398 27.862 36.6274 27.8367L36.6263 27.8328C36.6137 27.8068 36.5992 27.7818 36.5829 27.7579L36.5817 27.7573C36.5737 27.7445 36.5646 27.7322 36.5554 27.7204C36.548 27.7109 36.5411 27.702 36.5326 27.6925C36.5269 27.6855 36.5208 27.6788 36.5143 27.6724C36.5109 27.6674 36.5063 27.6634 36.5023 27.659C36.4951 27.6512 36.4875 27.644 36.4794 27.6372C36.4783 27.6361 36.4777 27.6344 36.476 27.6338L36.4617 27.6204C36.4571 27.6154 36.4514 27.612 36.4463 27.6076C36.4358 27.5989 36.425 27.5907 36.4137 27.583L36.4131 27.5824C36.4726 27.4611 36.5314 27.3388 36.588 27.2158Z" fill="#FDFDFD"/>
10
+ <path d="M36.652 28.9001C36.652 28.9001 36.8331 28.6151 37.1051 28.153C37.1007 28.3427 37.0454 28.5281 36.9447 28.6904C36.844 28.8527 36.7015 28.9863 36.5314 29.0778L36.652 28.9001Z" fill="#FDFDFD"/>
11
+ <path d="M36.9583 28.671C36.0874 30.1642 34.8874 31.8725 33.3754 33.226C34.6863 31.7619 36.1034 29.7054 36.1034 29.7054L36.5314 29.0784C36.7069 28.9845 36.856 28.8454 36.9583 28.671Z" fill="#F05601"/>
12
+ <path d="M36.5526 27.1945L36.5886 27.2152C36.532 27.3381 36.4737 27.4611 36.4143 27.5824L36.4126 27.5807L36.3977 27.5695L36.3829 27.56C36.3718 27.5525 36.3604 27.5456 36.3486 27.5393C36.3343 27.5315 36.32 27.5237 36.3057 27.517C36.2788 27.5034 36.2506 27.4922 36.2217 27.4834L36.2006 27.4773C36.1823 27.4694 36.1628 27.4647 36.1429 27.4633V27.0576C36.2863 27.0772 36.4263 27.123 36.5526 27.1945Z" fill="#FDFDFD"/>
13
+ <path d="M36.2011 27.4779C36.2088 27.4797 36.2158 27.4826 36.2222 27.485C36.2153 27.4824 36.2082 27.48 36.2011 27.4779Z" fill="#22245C"/>
14
+ <path d="M36.7549 13.01C36.6014 12.6552 36.4362 12.3053 36.2594 11.9611C36.2211 11.9723 36.1822 11.9814 36.1429 11.9884V27.0582C36.2869 27.0767 36.4263 27.1231 36.5531 27.1946L36.5891 27.2158C37.6452 24.9248 38.1887 22.4396 38.1834 19.9265C38.1834 17.5275 37.7023 15.2 36.7549 13.01Z" fill="#202541"/>
15
+ <path d="M36.1697 27.4701L36.1937 27.4763L36.2006 27.478C36.2371 27.4873 36.2724 27.5008 36.3057 27.5182C36.3206 27.5249 36.3343 27.5327 36.3491 27.5405C36.3606 27.5461 36.372 27.5534 36.3829 27.5607L36.3977 27.5707C36.4029 27.5746 36.408 27.5774 36.4126 27.5819C36.4137 27.5819 36.4137 27.5819 36.4143 27.583C36.3269 27.7624 36.2371 27.9401 36.1429 28.1167V27.464C36.152 27.4649 36.161 27.4667 36.1697 27.4696V27.4701ZM36.144 28.1161V28.1597H36.1206C36.1286 28.1446 36.1371 28.1307 36.144 28.1161Z" fill="#22245C"/>
16
+ <path d="M36.1423 27.0146V27.0582L36.1051 27.0543L36.1423 27.0146Z" fill="#FEFEFE"/>
17
+ <path d="M36.1429 26.8655C36.08 26.8135 35.9829 26.7313 35.8571 26.6196V12.1265L35.9366 12.0063H35.9429C36.0097 12.0063 36.0777 12.0007 36.1429 11.989V26.8655Z" fill="#F1CF25"/>
18
+ <path d="M35.8571 26.6201C35.9829 26.7308 36.08 26.8135 36.1434 26.8654V27.0152L36.1063 27.0543C36.0233 27.0469 35.9397 27.0486 35.8571 27.0594V26.6201Z" fill="#FEFEFE"/>
19
+ <path d="M36.1429 27.4633L36.116 27.4589C36.1249 27.4597 36.1342 27.4612 36.1429 27.4633ZM36.072 28.2485L36.1349 28.3737L35.9554 28.4586C35.9954 28.3893 36.0337 28.3194 36.072 28.2485ZM36.12 28.1602C36.1047 28.1896 36.0891 28.2188 36.0732 28.2479L36.0292 28.1602H36.12Z" fill="#22245C"/>
20
+ <path d="M35.956 27.4505C35.9703 27.4494 35.9851 27.4494 36 27.4494C36.0202 27.4491 36.0405 27.4501 36.0606 27.4522L36.0777 27.4533C36.0863 27.4544 36.0949 27.455 36.1029 27.4566C36.1163 27.4583 36.1296 27.4606 36.1429 27.4634V28.1161L36.12 28.1596H36.0286L36.0097 28.1222L35.9303 28.1596H35.8571V27.4639C35.8669 27.4617 35.8766 27.4594 35.8869 27.4583C35.8903 27.4572 35.8937 27.4572 35.8966 27.4572L35.9189 27.4544C35.9311 27.4522 35.9435 27.4509 35.956 27.4505Z" fill="#22245C"/>
21
+ <path d="M36.0103 28.1228L36.0291 28.1602H35.9308L36.0103 28.1228Z" fill="#22245C"/>
22
+ <path d="M36 29.2119C36.1886 29.2119 36.3708 29.1644 36.5314 29.0784L36.1034 29.7048C36.1034 29.7048 34.6863 31.7613 33.3754 33.226L31.9103 34.5375C30.8171 35.3333 29.688 35.806 29.2834 35.4439C29.3177 35.3612 29.3594 35.2562 29.4063 35.1405H29.4068C30.8029 34.3147 32.0787 33.3087 33.2 32.1497L33.2057 32.1441C33.2436 32.1057 33.281 32.0668 33.3177 32.0273L33.3286 32.0161C34.1732 31.1296 34.9225 30.1605 35.5646 29.1242C35.7017 29.1818 35.8503 29.2119 36 29.2119Z" fill="#F05601"/>
23
+ <path d="M36.5457 10.5847C36.5952 10.6683 36.6258 10.7612 36.6357 10.8574C36.6456 10.9535 36.6345 11.0505 36.6031 11.1421C36.5717 11.2337 36.5208 11.3177 36.4536 11.3886C36.3865 11.4594 36.3047 11.5155 36.2137 11.5531L36.18 11.566C36.1707 11.5696 36.1611 11.5728 36.1514 11.5755L36.1434 11.5782H36.1417C36.1173 11.5861 36.0923 11.5921 36.0669 11.5961L36.036 11.6006L36.0149 11.6028C36.0017 11.605 35.9883 11.6059 35.9749 11.6056C35.9634 11.6067 35.952 11.6067 35.9406 11.6067C35.9125 11.6066 35.8844 11.6047 35.8566 11.6012C35.8463 11.6 35.8354 11.5989 35.8246 11.5967H35.8217L35.7977 11.5917C35.7909 11.5905 35.784 11.5894 35.7772 11.5872L35.7669 11.585L35.7566 11.5827C35.678 11.5615 35.6037 11.527 35.5372 11.481L35.5326 11.4777C35.5285 11.4754 35.5247 11.4728 35.5212 11.4698L35.5109 11.462C35.4758 11.4374 35.4443 11.4082 35.4172 11.3754C35.4101 11.3684 35.4036 11.3609 35.3977 11.353C35.392 11.3463 35.3863 11.3396 35.3817 11.3324C35.3655 11.3115 35.3507 11.2896 35.3372 11.267L35.32 11.2346C35.3066 11.2094 35.2951 11.1832 35.2857 11.1563C35.2823 11.1491 35.28 11.1418 35.2777 11.1351C35.274 11.1255 35.2709 11.1156 35.2686 11.1055L35.264 11.0887C35.262 11.0823 35.2605 11.0758 35.2594 11.0692L35.256 11.053C35.2504 11.0321 35.2471 11.0108 35.2463 10.9892C35.2451 10.979 35.2443 10.9688 35.244 10.9585L35.2434 10.925C35.2435 10.8975 35.2452 10.8701 35.2486 10.8428C35.2492 10.8356 35.2497 10.8289 35.2514 10.8216C35.2533 10.8017 35.2573 10.782 35.2634 10.7629C35.2634 10.7624 35.2634 10.7618 35.2646 10.7612C35.2657 10.7545 35.268 10.7467 35.2703 10.7406C35.272 10.7327 35.2749 10.7249 35.2777 10.7171C35.2825 10.701 35.2883 10.6851 35.2949 10.6696L35.3097 10.6361C35.3223 10.609 35.3372 10.583 35.3543 10.5584C35.3699 10.5323 35.3883 10.508 35.4092 10.4857C35.4137 10.4807 35.4177 10.4751 35.4229 10.4707L35.444 10.4483C35.4543 10.4379 35.465 10.4278 35.476 10.4181L35.4806 10.4142C35.4893 10.4064 35.4984 10.3992 35.508 10.3924C35.5347 10.3709 35.5634 10.3518 35.5937 10.3354C35.7538 10.2451 35.944 10.2206 36.1225 10.2673C36.301 10.3141 36.4532 10.4282 36.5457 10.5847Z" fill="#1E205D"/>
24
+ <path d="M35.5994 11.6487L35.4389 11.8873C35.2028 11.7694 35.0179 11.5725 34.9177 11.3324C34.8514 11.1707 34.8257 10.9957 34.8428 10.8223C34.8599 10.6488 34.9193 10.4819 35.016 10.3355C35.1162 10.1847 35.2533 10.0607 35.415 9.97502C35.5767 9.88932 35.7578 9.84457 35.9417 9.84485C36.1358 9.84561 36.3264 9.89592 36.4946 9.99079C36.6628 10.0857 36.8027 10.2218 36.9006 10.3858L36.9011 10.3869C36.9583 10.4836 37 10.5875 37.0234 10.6931V10.6943C37.074 10.9185 37.0501 11.1527 36.9553 11.3627C36.8604 11.5727 36.6995 11.7477 36.496 11.8622C36.3284 11.957 36.1382 12.0071 35.9446 12.0075H35.9377L35.9566 11.9784L35.5994 11.6487ZM35.3126 11.2184C35.3199 11.2352 35.3285 11.2515 35.3383 11.2671C35.3606 11.3057 35.3873 11.3419 35.4177 11.3749C35.4426 11.4034 35.4701 11.4296 35.5 11.4531L35.5114 11.4621L35.5223 11.4699C35.5274 11.4739 35.5327 11.4777 35.5383 11.4811L35.5646 11.4984C35.5842 11.5114 35.6049 11.523 35.6263 11.5331L35.6531 11.5459C35.6874 11.561 35.7217 11.5733 35.7571 11.5828L35.7674 11.585L35.7777 11.5873L35.7983 11.5923C35.8064 11.5942 35.8146 11.5957 35.8228 11.5968H35.8257C35.8644 11.6018 35.9033 11.6049 35.9423 11.6063H35.9766C35.984 11.6051 35.9926 11.6046 36.0006 11.6046L36.016 11.6029C36.047 11.6004 36.0778 11.5954 36.108 11.5878C36.1194 11.585 36.1314 11.5822 36.1428 11.5783H36.144C36.1468 11.5772 36.1497 11.5772 36.1526 11.5755C36.1622 11.5728 36.1718 11.5697 36.1811 11.566C36.2194 11.5526 36.2563 11.5358 36.2914 11.5157C36.3977 11.4557 36.4858 11.3692 36.5469 11.2652C36.6081 11.1611 36.64 11.0431 36.6394 10.923C36.6389 10.803 36.606 10.6853 36.544 10.5817C36.482 10.4781 36.3931 10.3924 36.2863 10.3333C36.1653 10.2663 36.0266 10.2362 35.8881 10.2468C35.7495 10.2575 35.6173 10.3084 35.5086 10.3931C35.4988 10.3998 35.4903 10.407 35.4811 10.4143L35.4766 10.4182C35.4575 10.4344 35.4398 10.4519 35.4234 10.4707C35.3975 10.4976 35.3746 10.527 35.3548 10.5585L35.3366 10.5864C35.3077 10.6348 35.2855 10.6866 35.2703 10.7406L35.2646 10.7613V10.7624L35.2566 10.796L35.252 10.8217C35.2479 10.8417 35.2456 10.8621 35.2451 10.8826C35.244 10.8966 35.244 10.9111 35.244 10.9251L35.2446 10.9586L35.2468 10.9893L35.2503 11.0189C35.2514 11.0301 35.2537 11.0424 35.256 11.053C35.2571 11.0586 35.2577 11.0642 35.2594 11.0692C35.2616 11.0815 35.2647 11.0937 35.2686 11.1056C35.2709 11.1156 35.2739 11.1255 35.2777 11.1352C35.2872 11.1637 35.2992 11.1915 35.3126 11.2184Z" fill="#FEFCFD"/>
25
+ <path d="M35.856 12.003C35.7101 11.992 35.5679 11.9526 35.4377 11.8873L35.5977 11.6487L35.9537 11.9778L35.9354 12.0063C35.9086 12.0063 35.8823 12.0052 35.856 12.003Z" fill="#FEFCFD"/>
26
+ <path d="M35.8571 12.0029C35.8834 12.0052 35.9097 12.0063 35.9366 12.0063L35.8571 12.1264V12.0029Z" fill="#F1CF25"/>
27
+ <path d="M35.8571 27.17C35.9011 27.1739 35.9451 27.1778 35.9891 27.1806L35.8571 27.3231V27.17Z" fill="#FDFDFD"/>
28
+ <path d="M35.8571 27.0588C35.9398 27.0484 36.0233 27.0469 36.1063 27.0543L35.9897 27.1806C35.9456 27.1778 35.9016 27.1741 35.8577 27.1694L35.8571 27.0588Z" fill="#FDFDFD"/>
29
+ <path d="M35.9189 27.4539L35.8971 27.4572C35.8937 27.4572 35.8903 27.4572 35.8869 27.4584C35.8771 27.46 35.8669 27.4611 35.8571 27.4639V27.3231L35.9891 27.1806L36.1057 27.0543L36.1434 27.0582V27.4639H36.1417C36.129 27.4607 36.116 27.4584 36.1029 27.4572C36.069 27.4509 36.0345 27.4483 36 27.4494C35.9729 27.4494 35.9458 27.4509 35.9189 27.4539Z" fill="#FDFDFD"/>
30
+ <path d="M35.8571 26.6201C35.1097 25.9562 33.404 24.2719 32.5411 22.0601C32.108 20.948 31.7931 19.7856 31.5468 18.6641L35.8571 12.1259V26.6201Z" fill="#202541"/>
31
+ <path d="M35.4383 11.8873C35.5668 11.9522 35.7097 11.9918 35.8571 12.003V12.1259L31.5468 18.6642C31.4731 18.3291 31.4039 17.993 31.3394 17.6561L35.3183 12.065L35.4383 11.8873Z" fill="#00E9BF"/>
32
+ <path d="M35.8571 27.0588C35.7611 27.0711 35.6686 27.0957 35.5811 27.1303C33.1549 26.6905 31.5989 23.8299 31.2303 22.6452C30.8366 21.3823 30.3029 19.57 30.0029 16.6412L30 16.6133C29.7371 14.0757 29.0971 12.1136 28.9354 11.6487C29.684 11.7666 30.2183 11.7588 30.2183 11.7588C30.2183 11.7588 30.284 12.065 30.6869 14.0052C30.8869 14.9703 31.0686 16.2539 31.3389 17.656L30.7949 18.4216L31.3566 18.9525L31.5463 18.6642C31.7926 19.7852 32.108 20.9486 32.5406 22.0596C33.4034 24.2719 35.1097 25.9557 35.8566 26.6196L35.8571 27.0588Z" fill="#FEFEFE"/>
33
+ <path d="M35.5806 27.1309C35.668 27.0956 35.7606 27.0716 35.8566 27.0593V27.17C35.7641 27.1602 35.672 27.1472 35.5806 27.1309Z" fill="#FDFDFD"/>
34
+ <path d="M35.5806 27.1309C35.672 27.1476 35.7634 27.1605 35.8572 27.17V27.3237L35.6617 27.5343C35.648 27.5422 35.6343 27.5494 35.6212 27.5578C35.5812 27.581 35.5447 27.6094 35.5126 27.6422C35.4469 27.7039 35.3948 27.778 35.3594 27.8601V27.8612L35.3589 27.8624L35.3417 27.8802C35.2034 27.8886 35.0629 27.8914 34.9217 27.8875C34.9614 27.7189 35.0419 27.5622 35.1566 27.4305C35.2713 27.2988 35.4167 27.196 35.5806 27.1309Z" fill="#FDFDFD"/>
35
+ <path d="M36.5846 27.7579C36.6011 27.7818 36.6158 27.8068 36.6286 27.8328L36.6297 27.8367L36.6469 27.8742C36.6526 27.8876 36.6583 27.901 36.6617 27.9149C36.6661 27.9271 36.6699 27.9394 36.6732 27.9518L36.676 27.963C36.6794 27.9747 36.6817 27.9876 36.6846 27.9999L36.692 28.0435C36.7034 28.1295 36.6977 28.2184 36.6749 28.305L36.6617 28.3475C36.6466 28.3906 36.6275 28.4323 36.6046 28.4721C36.5403 28.5812 36.4463 28.6707 36.3332 28.7307C36.22 28.7906 36.092 28.8188 35.9634 28.8119L35.9434 28.8107C35.9184 28.8095 35.8936 28.8061 35.8692 28.8007C35.8669 28.8007 35.8663 28.8007 35.8652 28.7996L35.824 28.7912L35.8183 28.7895C35.8075 28.7868 35.7968 28.7836 35.7863 28.78C35.7823 28.7794 35.7783 28.7778 35.7749 28.7767C35.836 28.6716 35.8972 28.566 35.956 28.4598L36.1354 28.3749L36.0726 28.2491C36.0887 28.2198 36.1045 28.1904 36.12 28.1608H36.1429V28.1172C36.2372 27.9412 36.3274 27.7635 36.4149 27.5841H36.416L36.448 27.6093L36.4629 27.6216C36.4686 27.6266 36.4732 27.6299 36.4777 27.635C36.4793 27.636 36.4807 27.6373 36.4817 27.6389C36.4897 27.6456 36.4966 27.6529 36.504 27.6601C36.5083 27.6643 36.5123 27.6688 36.516 27.6735C36.5408 27.7001 36.5633 27.7285 36.5834 27.7585C36.5846 27.7574 36.5846 27.7568 36.5846 27.7579Z" fill="#22245C"/>
36
+ <path d="M35.6514 28.7213C35.6645 28.7289 35.6778 28.736 35.6914 28.7426L35.6937 28.7431C35.7196 28.7557 35.7463 28.7666 35.7737 28.7756C35.7052 28.8929 35.6349 29.0086 35.5634 29.1237C35.4083 29.0592 35.2704 28.9605 35.1606 28.8353L35.5492 28.6509C35.5566 28.6576 35.5645 28.664 35.5726 28.6699L35.6046 28.6928L35.6154 28.7001L35.6514 28.7213ZM35.6629 27.5344L35.8583 27.3237V27.4634C35.8498 27.4649 35.8414 27.4668 35.8332 27.469L35.8154 27.4741C35.8044 27.4767 35.7936 27.4799 35.7829 27.4836C35.7817 27.4836 35.7812 27.4836 35.7806 27.4847C35.7564 27.4924 35.7328 27.5016 35.7097 27.5121C35.7017 27.5148 35.6937 27.5193 35.6857 27.5232C35.6794 27.526 35.672 27.5288 35.6663 27.5327L35.6629 27.5344Z" fill="#FDFDFD"/>
37
+ <path d="M35.5731 28.6705C35.5649 28.6644 35.5569 28.6581 35.5491 28.6515L35.9548 28.4592C35.896 28.5654 35.8348 28.671 35.7731 28.7761L35.7348 28.7621C35.72 28.7563 35.7055 28.7498 35.6914 28.7426C35.6778 28.7362 35.6645 28.7293 35.6514 28.7219C35.6394 28.7146 35.6268 28.7079 35.616 28.7006C35.6123 28.6985 35.6087 28.6963 35.6051 28.6939L35.5731 28.6705Z" fill="#22245C"/>
38
+ <path d="M35.3714 28.4257C35.3726 28.4296 35.3749 28.4329 35.3771 28.4368C35.3817 28.4473 35.3871 28.4573 35.3931 28.467C35.3989 28.4782 35.4051 28.4877 35.4126 28.4972C35.4368 28.5352 35.4652 28.5706 35.4971 28.6028L35.5074 28.614C35.5126 28.6194 35.5184 28.6243 35.5246 28.6285C35.5326 28.6369 35.5417 28.6447 35.5503 28.6509L35.1617 28.8358C35.0992 28.7642 35.0464 28.6849 35.0046 28.6L35.3714 28.4257Z" fill="#FDFDFD"/>
39
+ <path d="M35.4457 29.0672C35.4834 29.0884 35.5228 29.1074 35.5628 29.1242C34.8896 30.2105 34.0988 31.2227 33.204 32.1435L33.1983 32.1491C31.9737 33.369 29.748 34.2866 29.748 34.2866L29.8451 34.0429C30.14 33.3371 30.604 32.0077 31.0108 30.8062L35.1606 28.8358C35.2394 28.9252 35.3343 29.0035 35.4457 29.0672Z" fill="#202541"/>
40
+ <path d="M35.42 28.5112C35.4099 28.4973 35.401 28.4828 35.3931 28.4676L35.3926 28.467C35.3867 28.4572 35.3811 28.4471 35.376 28.4369L35.3703 28.4257L35.9303 28.1602H36.028L36.072 28.248C36.0337 28.3189 35.9949 28.3894 35.9554 28.4586L35.5497 28.6509L35.5234 28.6285C35.5214 28.6268 35.5195 28.6249 35.5177 28.6229C35.5137 28.6201 35.5097 28.6168 35.5063 28.6129L35.496 28.6028C35.468 28.5743 35.4425 28.544 35.42 28.5112ZM35.6612 27.5349L35.3594 27.8613C35.3636 27.8506 35.3684 27.8401 35.3737 27.83L35.3954 27.7897C35.4425 27.7088 35.5068 27.6387 35.584 27.5841C35.5954 27.5746 35.6086 27.5668 35.6212 27.5584C35.634 27.5498 35.6473 27.5419 35.6612 27.5349Z" fill="#22245C"/>
41
+ <path d="M35.3377 28.3474C35.3341 28.3375 35.3308 28.3274 35.328 28.3172L35.32 28.2876C35.3186 28.2832 35.3176 28.2787 35.3171 28.2742L35.3131 28.2541L35.3091 28.2317C35.3074 28.2244 35.3074 28.2177 35.3063 28.2105C35.3003 28.1622 35.2997 28.1135 35.3046 28.0652L35.3051 28.0579L35.3074 28.0378C35.309 28.025 35.3113 28.0123 35.3143 27.9998C35.3184 27.9737 35.3251 27.9481 35.3343 27.9232C35.3356 27.9189 35.3371 27.9146 35.3388 27.9104L35.3434 27.897L35.3463 27.8892C35.3497 27.8796 35.3537 27.8703 35.3583 27.8612V27.8601L35.6606 27.5337L35.664 27.5321C35.6697 27.5282 35.6771 27.5254 35.684 27.522C35.7009 27.5129 35.7185 27.5051 35.7366 27.4985C35.7503 27.4929 35.764 27.4874 35.7789 27.4834L35.7806 27.4829C35.7913 27.4792 35.8021 27.4761 35.8131 27.4734L35.8308 27.4684C35.8391 27.4661 35.8475 27.4643 35.856 27.4628V28.1591H35.9297L35.3697 28.4251C35.3697 28.4228 35.3686 28.4211 35.368 28.4195C35.3623 28.4083 35.3577 28.3977 35.3531 28.3865C35.347 28.3738 35.3419 28.3608 35.3377 28.3474Z" fill="#22245C"/>
42
+ <path d="M34.9229 27.8881C35.064 27.892 35.2034 27.8897 35.3423 27.8808L35.3594 27.8629C35.3541 27.8743 35.3495 27.8861 35.3457 27.8981L35.3411 27.9104L35.3366 27.9238C35.3276 27.9487 35.3209 27.9743 35.3166 28.0004C35.3125 28.0198 35.3094 28.0394 35.3074 28.0591L35.3063 28.0663L35.3046 28.0943C35.3023 28.1339 35.3034 28.1725 35.3086 28.2116C35.3091 28.2183 35.3097 28.225 35.3114 28.2323L35.3154 28.2547C35.3163 28.2614 35.3176 28.2682 35.3194 28.2748L35.3223 28.2882C35.3264 28.3088 35.3323 28.329 35.34 28.3485C35.3479 28.3735 35.3579 28.3978 35.3697 28.4212L35.372 28.4268L35.0051 28.6006C34.8963 28.379 34.8673 28.1278 34.9229 27.8881Z" fill="#FDFDFD"/>
43
+ <path d="M35.2572 11.0536C35.2572 11.0583 35.2584 11.0647 35.2602 11.07C35.2582 11.0645 35.257 11.0588 35.2566 11.053L35.2572 11.0536Z" fill="#1E205D"/>
44
+ <path d="M32.8577 7.36084C33.7264 8.2084 34.5052 9.13966 35.1823 10.1404C35.1183 10.1991 35.0623 10.265 35.0154 10.336L26.1657 6.18172C26.0268 6.03117 25.8821 5.88578 25.732 5.74584L23.4532 2.47449C26.7743 3.09856 29.8502 4.62019 32.332 6.86684C32.5103 7.02722 32.6852 7.19208 32.8577 7.36084Z" fill="#1F2A48"/>
45
+ <path d="M35.004 28.6C35.0451 28.6838 35.0977 28.7632 35.1611 28.8358L31.0114 30.8062L31.136 30.4368L35.004 28.6Z" fill="#FDFDFD"/>
46
+ <path d="M33.8897 6.91266C34.3354 7.43292 35.5926 8.92777 36.1543 9.86548C35.9813 9.83212 35.8027 9.83967 35.6333 9.88749C35.464 9.93532 35.3087 10.022 35.1806 10.1404C34.3692 8.94062 33.4121 7.84141 32.3303 6.86683C32.9046 6.81207 33.4651 6.85398 33.8903 6.9121L33.8897 6.91266Z" fill="#986F09"/>
47
+ <path d="M26.1657 6.18225L35.0148 10.3354C34.9628 10.4137 34.9217 10.4992 34.8914 10.5875L26.616 6.70363C26.4731 6.52705 26.324 6.35269 26.1657 6.18225ZM34.8434 11.0535C34.8548 11.1474 34.8788 11.2418 34.9166 11.3329H30.3834C30.2807 11.2417 30.1797 11.1485 30.0806 11.0535H34.8434Z" fill="#F9B309"/>
48
+ <path d="M34.8297 7.02438L34.256 6.95621C32.847 5.4685 31.2047 4.20973 29.3909 3.22718L29.7006 2.97571C31.2774 3.8423 32.7251 4.91631 34.0034 6.16771C34.2892 6.44712 34.564 6.73212 34.8297 7.02438Z" fill="#01FF94"/>
49
+ <path d="M39.8011 19.5655C39.7686 17.0747 39.2407 14.6139 38.2468 12.3203C37.4106 10.3844 36.2559 8.59538 34.8286 7.02435L34.2543 6.95618L34.2714 6.97294C35.1876 7.94111 35.9986 8.9996 36.6914 10.1314C36.7726 10.2041 36.8428 10.289 36.8994 10.3851C36.9566 10.4818 36.9983 10.5863 37.0217 10.6925L37.0223 10.693C38.6095 13.4963 39.4402 16.6489 39.436 19.8533C39.4364 20.2628 39.423 20.6723 39.396 21.081C39.4988 21.1604 39.6211 21.2174 39.7537 21.2442C39.7872 20.7811 39.8037 20.317 39.8034 19.8527C39.8034 19.7577 39.8028 19.6616 39.8011 19.5655Z" fill="#FF7801"/>
50
+ <path d="M33.8909 6.91267L34.2554 6.95626L34.2726 6.97302C34.164 6.95346 34.0349 6.93223 33.8909 6.91267Z" fill="#E5E2E5"/>
51
+ <path d="M33.8909 6.91267C34.0349 6.93167 34.164 6.95346 34.272 6.97414C35.1879 7.94197 35.9987 9.00008 36.6914 10.1315C36.5411 9.9963 36.3557 9.9041 36.1554 9.86493C35.5932 8.92779 34.3366 7.43293 33.8909 6.91267Z" fill="#986F09"/>
52
+ <path d="M32.8571 32.4928C31.8202 33.5084 30.6613 34.3974 29.4057 35.1405C29.52 34.8583 29.6571 34.5146 29.7486 34.2866C29.7486 34.2866 31.9743 33.3696 33.1988 32.1497C33.0868 32.2653 32.9726 32.3805 32.8571 32.4928Z" fill="#202541"/>
53
+ <path d="M31.9109 34.5375L33.3754 33.226C32.9349 33.7115 32.4441 34.151 31.9109 34.5375Z" fill="#F05601"/>
54
+ <path d="M31.8383 28.3016C31.8383 28.3016 31.5274 29.2656 31.1354 30.4363L30.364 30.8018C30.7149 29.6562 30.9229 28.6375 31.004 28.1993C31.4823 28.2848 31.8383 28.3016 31.8383 28.3016Z" fill="#FFE9B6"/>
55
+ <path d="M31.5463 18.6641L31.3566 18.9519L30.7949 18.421L31.3389 17.656C31.4029 17.9868 31.4714 18.3232 31.5463 18.6641Z" fill="#FEFEFE"/>
56
+ <path d="M30.364 30.8023L31.1354 30.4363L31.0103 30.8062L30.248 31.1683C30.288 31.0448 30.3274 30.9225 30.364 30.8023Z" fill="#FDFDFD"/>
57
+ <path d="M29.5663 27.7584C29.6692 27.8054 29.7714 27.8495 29.872 27.8903C30.2537 28.0423 30.6612 28.139 31.0052 28.2005C30.8383 29.0782 30.6247 29.9469 30.3652 30.8029L28.8972 31.4992C29.192 30.0993 29.4743 28.3446 29.5663 27.7584Z" fill="#F6515B"/>
58
+ <path d="M30.3829 11.333H29.98V11.0536H30.0806C30.2092 11.1765 30.3126 11.2699 30.3834 11.333H30.3829Z" fill="#FEFEFE"/>
59
+ <path d="M29.9223 36.3158C29.8309 36.3292 29.748 36.332 29.6743 36.3236C29.9131 36.1889 30.1486 36.0498 30.3806 35.905L29.9223 36.3158Z" fill="#FF8D02"/>
60
+ <path d="M29.748 34.2866C29.7206 34.2989 29.2817 33.9921 29.0737 33.8451C29.1034 33.797 29.132 33.7495 29.1594 33.7015C29.6057 32.9342 29.9669 32.0289 30.2474 31.1678L31.0103 30.8057C30.6034 32.0071 30.1394 33.3366 29.8452 34.0424C29.8452 34.0424 29.8069 34.1402 29.748 34.2866Z" fill="#FDE5D0"/>
61
+ <path d="M29.7011 2.97517L29.3909 3.22664C26.5173 1.66932 23.2853 0.854214 20 0.858347V0.499023C22.6737 0.499023 25.2669 1.01091 27.7086 2.02014C28.3904 2.30202 29.0556 2.62085 29.7011 2.97517ZM29.2817 35.4439C29.6863 35.806 30.8154 35.3333 31.9086 34.5375L30.38 35.9055C30.1474 36.0497 29.912 36.1888 29.6731 36.3235C29.5779 36.3165 29.4875 36.2797 29.4154 36.2185C29.1571 35.9865 29.1154 35.8435 29.2303 35.5674L29.2817 35.4439Z" fill="#FF8D02"/>
62
+ <path d="M29.5668 27.7579C29.4748 28.3447 29.1926 30.0994 28.8983 31.4987L27.6297 32.1005C27.9497 29.8809 27.9246 26.8308 27.9246 26.8308C27.9246 26.8308 28.7446 27.3807 29.5668 27.7579Z" fill="#A70D75"/>
63
+ <path d="M31.2297 22.6458C30.836 21.3829 30.3023 19.57 30.0023 16.6418L29.9994 16.6139C29.7366 14.0757 29.0966 12.1137 28.9343 11.6487C28.4314 11.5699 27.832 11.4347 27.232 11.2017C27.4206 11.4956 27.7863 12.1338 28.0857 13.072C28.5103 14.402 28.5851 16.1361 28.5851 16.1361C28.5851 16.1361 28.5931 16.3261 28.6091 16.6306C28.6377 17.1744 28.6909 18.0847 28.7663 18.9481C28.8846 20.2971 29.1126 22.5089 29.9834 24.6324C30.7966 26.614 32.9406 27.839 34.9211 27.8887C34.9607 27.72 35.0412 27.5631 35.1559 27.4313C35.2705 27.2995 35.416 27.1966 35.58 27.1315C33.1543 26.6911 31.5983 23.8305 31.2297 22.6458Z" fill="#FECA3C"/>
64
+ <path d="M23.0354 6.13088C23.2697 6.26556 23.4966 6.41364 23.7206 6.56509C23.9446 6.71709 24.1617 6.87914 24.3743 7.04847C24.8 7.38432 25.2063 7.747 25.588 8.13594C25.2617 7.70006 24.8811 7.30385 24.4789 6.93056C24.0733 6.55744 23.6355 6.21939 23.1703 5.9202C22.936 5.77156 22.6943 5.63241 22.4446 5.50779C22.1931 5.38597 21.9349 5.27476 21.6703 5.18032C21.604 5.15685 21.536 5.13561 21.4691 5.11494C21.4349 5.10376 21.4023 5.09259 21.368 5.08309L21.2651 5.05626C21.1966 5.03894 21.1291 5.0177 21.0594 5.00429L20.8514 4.95959C20.7817 4.94506 20.7114 4.93723 20.6411 4.92606L20.5354 4.91041C20.5006 4.90538 20.4651 4.90259 20.4297 4.89923C20.3589 4.89364 20.2886 4.88526 20.2171 4.88023L20.1497 4.878V3.70447C22.3006 3.74638 23.8 4.30241 24.9309 5.0965L25.7783 6.31194L26.6154 6.70423C27.012 7.19432 27.3583 7.70229 27.6891 8.19406C28.3814 9.22684 29.183 10.1855 30.0806 11.0541H29.98V11.3335H30.3834C30.4474 11.3905 30.4851 11.4218 30.4891 11.4257C29.7778 11.3331 29.0782 11.1683 28.4017 10.934C27.6903 10.5713 26.9823 10.0756 26.0783 9.38435C25.1749 8.69309 24.5794 8.11191 23.184 7.19656C21.9503 6.38738 20.4754 6.29406 20.1497 6.28232V5.19597L20.1983 5.19764C20.2646 5.20211 20.3303 5.20882 20.3966 5.21441C20.4297 5.21776 20.4629 5.21944 20.496 5.22391L20.5949 5.23788C20.6606 5.24906 20.7274 5.2552 20.7926 5.26862C21.0554 5.31444 21.3137 5.38485 21.5697 5.4642C21.824 5.54803 22.0737 5.64694 22.3183 5.75814C22.44 5.81682 22.5617 5.87438 22.6806 5.93697C22.8006 5.99732 22.9177 6.0655 23.0354 6.13088Z" fill="#FEFEFE"/>
65
+ <path d="M27.6286 32.1005L28.8966 31.4987C28.872 31.6177 28.8463 31.7334 28.8212 31.8451L27.5754 32.4364C27.5949 32.3274 27.612 32.2151 27.628 32.1011L27.6286 32.1005Z" fill="#FDFDFD"/>
66
+ <path d="M28.8217 31.8457C28.8463 31.7334 28.872 31.6177 28.8966 31.4992L30.364 30.8024C30.3269 30.9231 30.2886 31.0449 30.248 31.1684L28.8217 31.8457Z" fill="#FDFDFD"/>
67
+ <path d="M27.5772 32.4363L28.8229 31.8451C28.7943 31.9747 28.7652 32.1005 28.7366 32.2195C28.3246 33.9278 27.0629 35.4165 25.3897 36.4291C23.7166 37.4417 21.0069 37.6217 21.0069 37.6217C21.3674 37.4412 21.7406 37.0723 22.0863 36.6437C23.9423 36.9432 26.8034 35.364 27.3754 33.3662C27.4537 33.0941 27.5206 32.7783 27.5777 32.4363H27.5772Z" fill="url(#paint0_linear_146_780)"/>
68
+ <path d="M31.08 26.7855C30.5086 26.2854 29.616 24.8056 29.2349 23.3046C28.8543 21.8036 28.7234 20.9984 28.648 19.0822C28.615 18.2649 28.5944 17.4473 28.5863 16.6295C28.5834 16.3042 28.5857 16.1366 28.5857 16.1366C28.5857 16.1366 28.5109 14.4026 28.0863 13.0726C27.7863 12.1337 27.4217 11.4961 27.2326 11.2016L27.1606 11.1731C25.6669 10.5741 25.1674 10.2902 25.152 10.2812C25.1777 10.3148 26.8492 12.5065 27.2492 14.9759C27.332 15.4861 27.3783 15.9729 27.3994 16.4417C27.4834 18.2601 27.1932 19.8019 27.1932 21.337C27.1932 23.2683 28.0452 26.8928 31.9132 27.5327C31.9137 27.5327 31.6514 27.2857 31.08 26.7855Z" fill="url(#paint1_linear_146_780)"/>
69
+ <path d="M23.532 34.3565L27.5766 32.4364C27.5194 32.7784 27.4526 33.0941 27.3743 33.3663C26.8017 35.3646 23.9411 36.9433 22.0846 36.6443C22.8103 35.7463 23.4143 34.5879 23.532 34.3565Z" fill="#202541"/>
70
+ <path d="M23.184 7.19597C24.5794 8.11077 25.1743 8.6925 26.0777 9.38321C26.9811 10.075 27.6903 10.5696 28.4011 10.9323C26.4149 10.2561 24.6743 9.09486 23.3154 8.18453C21.4983 6.96686 20.1497 6.71371 20.1497 6.71371V6.28174C20.4749 6.29291 21.9497 6.38736 23.184 7.19597Z" fill="#FFBB01"/>
71
+ <path d="M34.8914 10.588C34.8417 10.7366 34.8246 10.8953 34.844 11.0529H30.0811C29.1835 10.1845 28.382 9.22609 27.6897 8.19344C27.3583 7.70167 27.0126 7.1937 26.616 6.70361L34.8914 10.5874V10.588Z" fill="#202541"/>
72
+ <path d="M24.9543 14.8183C25.5726 15.0117 26.0983 15.3716 26.3629 15.5739C26.444 15.8455 26.5091 16.0919 26.5446 16.2802L24.9909 16.1405C25.037 16.0902 25.0805 16.0376 25.1212 15.9829C25.1714 15.9103 25.1492 15.8276 25.0697 15.8276L25.1006 15.7248C25.236 15.7723 25.3 15.7616 25.316 15.6991C25.3366 15.6169 25.2497 15.5772 24.8006 15.3375C24.3514 15.0972 24.136 15.0218 23.7703 15.0396C23.4051 15.0581 22.848 15.3174 22.4423 15.8365C22.272 16.0533 22.0766 16.2249 21.9011 16.3719C21.676 16.5608 21.4823 16.7094 21.4189 16.8625C21.2594 16.8083 20.9663 16.7508 20.7971 16.7664V16.2914C20.7971 15.1726 21.1314 14.8262 21.5126 14.7351C21.8931 14.6429 23.1326 14.6127 24.3069 14.6921C24.528 14.7071 24.7463 14.7535 24.9543 14.8183Z" fill="url(#paint2_radial_146_780)"/>
73
+ <path d="M26.1663 6.18229L25.9731 6.09176L25.732 5.74641C25.8846 5.88723 26.0286 6.03364 26.1663 6.18229ZM25.732 5.74641C25.4863 5.51729 25.22 5.29823 24.9314 5.09594L23.0583 2.40576C23.1897 2.427 23.3211 2.45047 23.452 2.47506L25.7309 5.74641H25.732Z" fill="#FEFEFE"/>
74
+ <path d="M26.6171 6.70368L25.78 6.31083L24.9331 5.09595C25.2217 5.29824 25.4868 5.51674 25.732 5.74642L25.9731 6.09233L26.1663 6.18286C26.3246 6.35274 26.4737 6.52709 26.6171 6.70368Z" fill="#FEFEFE"/>
75
+ <path d="M23.3846 34.0966C23.4451 33.986 23.5063 33.8698 23.5691 33.7474C23.8794 33.1433 24.1154 32.7476 24.3034 32.4297V32.4286C24.4891 32.1139 24.6263 31.8759 24.7406 31.5875C24.9691 31.0064 25.3577 29.6467 25.4611 28.4615C25.5411 27.5444 25.2897 26.6101 24.8834 25.7724C24.7646 25.5282 24.632 25.2918 24.492 25.0661C23.8691 24.0686 21.6217 22.5771 21.3594 22.4441C21.0971 22.3116 21.172 22.2205 21.2474 22.1646C21.3217 22.1099 22.0623 21.6891 22.0623 21.6891C22.0623 21.6891 23.1954 22.0596 24.1126 22.8604C25.0303 23.6612 25.3166 24.1921 25.3166 24.1921C25.3166 24.1921 24.3943 21.8674 24.5531 21.8171C24.712 21.7668 25.9949 22.5491 26.4446 23.7171C26.8943 24.8833 26.796 27.2997 26.4446 28.6453C26.0931 29.9904 25.316 31.0986 24.8246 32.0368C24.4855 32.6739 24.1358 33.3054 23.7754 33.9312L23.404 34.1073L23.3846 34.0966Z" fill="#FFFDFE"/>
76
+ <path d="M23.1697 5.92014C23.6349 6.21935 24.0727 6.5574 24.4783 6.93049C24.8806 7.30378 25.2611 7.69999 25.5874 8.13587C25.207 7.74843 24.8016 7.3852 24.3737 7.0484C24.1623 6.87909 23.9442 6.71785 23.72 6.56502C23.4974 6.41199 23.2691 6.26715 23.0354 6.13081C22.9177 6.06487 22.8011 5.99725 22.68 5.93746C22.5611 5.87431 22.4394 5.81675 22.3183 5.75864C22.0742 5.647 21.8239 5.54887 21.5686 5.46469C21.3131 5.38534 21.0543 5.31381 20.792 5.26911C20.7269 5.25569 20.6606 5.24843 20.5943 5.23837L20.496 5.2244C20.4629 5.21993 20.4297 5.21769 20.396 5.2149C20.3297 5.20931 20.2646 5.20261 20.1977 5.19814L20.1497 5.19646V4.87793L20.2171 4.88016C20.2886 4.88464 20.3589 4.89246 20.4297 4.89861C20.4651 4.90252 20.5006 4.90531 20.5354 4.90978L20.6411 4.92543C20.7114 4.93661 20.7823 4.94499 20.8514 4.95896L21.0594 5.00367C21.1291 5.01764 21.1966 5.03887 21.2651 5.05564L21.368 5.08246C21.4023 5.09252 21.4349 5.10369 21.4691 5.11431C21.536 5.13499 21.604 5.15678 21.6703 5.17969C21.9349 5.27414 22.1931 5.38534 22.444 5.50716C22.6943 5.63234 22.9354 5.77149 23.1697 5.92069V5.92014Z" fill="#15134A"/>
77
+ <path d="M24.3017 29.2879C24.3017 29.2879 24.496 29.8881 24.5149 30.7548C24.5303 31.4897 24.5103 31.8345 24.3823 32.2178C24.3583 32.289 24.3319 32.3592 24.3029 32.4285V32.4296C24.1149 32.7482 23.8789 33.1432 23.5686 33.7473C23.3811 34.115 23.1786 34.4751 22.9617 34.827C22.5377 34.7951 21.1514 34.6862 20.8931 34.6353C20.5869 34.5738 20.4931 34.3486 20.8931 34.0374C21.2926 33.7261 23.9337 31.2611 24.1011 30.486C24.264 29.7316 24.1097 28.9711 24.1011 28.9314C24.1823 29.0644 24.2486 29.1845 24.3011 29.2874L24.3017 29.2879Z" fill="#250EF0"/>
78
+ <path d="M24.3829 32.2178C24.8772 31.455 25.1646 27.2638 25.0274 26.2697C25.0023 26.0986 24.9502 25.9323 24.8732 25.7768L24.8829 25.7723C25.2897 26.6106 25.5406 27.5444 25.4612 28.462C25.3583 29.6467 24.9697 31.0057 24.74 31.5875C24.6257 31.8764 24.4886 32.1144 24.3034 32.4285C24.3337 32.3558 24.3606 32.2865 24.3834 32.2178H24.3829Z" fill="#F9DB00"/>
79
+ <path d="M25.028 26.2697C25.1651 27.2644 24.8771 31.455 24.3834 32.2178C24.5114 31.8345 24.532 31.4897 24.5154 30.7548C24.4971 29.8881 24.3023 29.2874 24.3023 29.2874C24.3011 29.2667 24.2651 28.5397 24.2166 27.6729C24.1663 26.7944 24.0537 26.0931 23.5171 25.2934C23.4872 25.2485 23.4562 25.2044 23.424 25.161C22.8794 24.4206 22.0274 23.8142 21.2194 23.8718C20.3646 23.9333 20 24.2993 20 24.2993V23.6952C20 23.6952 20.536 23.3102 21.2503 23.3102C21.9657 23.3102 22.7709 23.8718 23.2457 24.192C23.6383 24.4574 24.5086 25.0258 24.8743 25.7774C24.9497 25.9339 25.004 26.0987 25.028 26.2697Z" fill="#162653"/>
80
+ <path d="M23.8926 16.3846C23.3166 16.3511 22.8926 15.8387 22.8926 15.8202C22.8926 15.8012 23.3674 15.4542 23.7611 15.3827C24.1554 15.3117 24.7029 15.5453 24.9463 15.6599C25.0063 15.6878 25.0571 15.709 25.1006 15.7247L25.0703 15.8275C25.0492 15.828 25.0284 15.8326 25.0091 15.8409C24.8834 15.8912 24.4686 16.4187 23.8926 16.3846Z" fill="#071C50"/>
81
+ <path d="M27.576 32.4364L23.5314 34.3565L23.5526 34.3152L23.7737 33.9301L27.628 32.1C27.612 32.2151 27.5943 32.3274 27.576 32.4364Z" fill="#FDFDFD"/>
82
+ <path d="M23.5286 34.3582L23.404 34.1067L23.7754 33.9307L23.5537 34.3157L23.5326 34.3565L23.5286 34.3582Z" fill="#FFFDFE"/>
83
+ <path d="M22.8229 1.5708L23.4531 2.47498C23.3221 2.44985 23.1906 2.42675 23.0589 2.40568L22.5869 1.72839L22.8229 1.5708Z" fill="#ECEDF6"/>
84
+ <path d="M22.6314 19.5751C22.9829 20.0741 23.0417 20.4535 23.1286 20.8861C23.1937 21.213 23.2326 21.6573 23.2474 21.8545C23.1833 21.8148 23.1169 21.7786 23.0486 21.7461C22.636 21.5539 22.58 21.4874 22.5989 21.4488C22.6177 21.4097 22.9051 21.2152 22.8189 20.8559C22.7326 20.4966 22.196 19.5197 21.396 19.6885C21.396 19.6885 21.3234 17.1839 21.4046 16.8972C21.4081 16.8852 21.4125 16.8734 21.4177 16.862C21.4806 16.7083 21.6749 16.5602 21.8994 16.3713L21.9537 16.4004C21.976 16.3864 22.0394 16.3741 22.1806 16.3713C22.0217 16.4848 21.8046 16.6776 21.7977 16.705C21.7903 16.7351 21.7274 17.9042 21.8491 18.3479C21.9714 18.7922 22.2806 19.076 22.6314 19.5751Z" fill="url(#paint3_linear_146_780)"/>
85
+ <path d="M23.0589 2.40578C22.4118 2.29839 21.7592 2.22564 21.104 2.18784C21.0871 1.91257 20.9635 1.65396 20.7584 1.46476C20.5532 1.27556 20.282 1.17002 20 1.16966V0.858398C23.404 0.858398 26.6057 1.71787 29.3909 3.22669C31.2046 4.20969 32.8468 5.46862 34.256 6.95628L33.892 6.91213C33.4669 6.85402 32.9069 6.8121 32.3326 6.86743C29.8504 4.62125 26.7747 3.09969 23.4537 2.47507L22.824 1.5709L22.5874 1.72793L23.0589 2.40578Z" fill="#ECEDF6"/>
86
+ <path d="M26.556 16.3489L26.5434 16.2802L24.9903 16.1405C24.8309 16.316 24.552 16.582 24.2497 16.7245C23.8211 16.9257 23.2006 16.5736 22.9429 16.4043C22.6851 16.2349 22.3834 16.2366 22.224 16.3428L22.1806 16.3724C22.5703 16.3646 22.7783 16.5999 23.184 16.9078C23.5897 17.2162 23.9709 17.3291 24.4983 17.1089C25.0263 16.8893 26.1754 16.4596 26.1754 16.4596C26.1754 16.4596 25.7257 17.4359 24.8954 18.9676C24.0651 20.4988 23.8897 21.4085 23.84 21.7069C23.8086 21.8986 23.8971 22.0612 23.9651 22.1523C24.0189 21.9573 24.14 21.7461 24.3354 21.4426C24.4183 21.3146 24.5131 21.1705 24.6223 21.0039C25.0954 20.2803 25.9806 18.8435 26.2097 18.3954C26.3674 18.0863 26.5257 17.5683 26.5714 17.0441C26.5945 16.8126 26.5894 16.5792 26.556 16.3489Z" fill="url(#paint4_linear_146_780)"/>
87
+ <path d="M26.176 16.4584C26.176 16.4584 25.7263 17.4347 24.896 18.9664C24.0657 20.4982 23.8903 21.4074 23.8406 21.7064C23.8092 21.898 23.8977 22.0601 23.9657 22.1512C23.944 22.2289 23.9336 22.3092 23.9349 22.3898C23.9349 22.3898 23.6 22.0713 23.2492 21.8556C23.2337 21.6583 23.1949 21.214 23.1292 20.8866C23.0434 20.4546 22.984 20.0746 22.6326 19.5756C22.2817 19.0765 21.9732 18.7932 21.8509 18.3489C21.7297 17.9052 21.792 16.7362 21.7994 16.706C21.8063 16.6792 22.0234 16.4864 22.1823 16.3724C22.5714 16.3646 22.78 16.5993 23.1857 16.9077C23.5914 17.2162 23.972 17.3285 24.5 17.1089C25.0269 16.8887 26.176 16.4584 26.176 16.4584Z" fill="#F6F6F6"/>
88
+ <path d="M22.8914 15.8203C22.8914 15.8382 23.3148 16.3506 23.8914 16.3847C24.4674 16.4194 24.8817 15.8913 25.008 15.8404C25.0271 15.8322 25.0477 15.8276 25.0686 15.827C25.148 15.827 25.1703 15.9092 25.12 15.9824C25.1028 16.0086 25.0571 16.0662 24.9897 16.1394C24.8303 16.3154 24.5514 16.5814 24.2491 16.7239C23.8206 16.9251 23.2 16.573 22.9428 16.4037C22.6846 16.2338 22.3828 16.2361 22.224 16.3423C22.2097 16.3512 22.1954 16.3613 22.1806 16.3719C22.0388 16.3747 21.976 16.3864 21.9531 16.4009L21.8994 16.3719C22.0754 16.2249 22.2708 16.0533 22.4406 15.8365C22.8463 15.3179 23.404 15.0586 23.7686 15.0396C24.1343 15.0218 24.3497 15.0966 24.7994 15.3369C25.248 15.5772 25.3354 15.6163 25.3137 15.699C25.2983 15.7605 25.2343 15.7723 25.0988 15.7248C25.0462 15.706 24.9947 15.6844 24.9446 15.6599C24.7011 15.5454 24.1531 15.3118 23.7594 15.3828C23.3668 15.4543 22.8914 15.8024 22.8914 15.8203Z" fill="url(#paint5_linear_146_780)"/>
89
+ <path d="M28.7674 18.9475C28.8857 20.2965 29.1137 22.5078 29.9846 24.6319C30.7983 26.6135 32.9423 27.8384 34.9229 27.8876C34.8657 28.1296 34.8971 28.3805 35.0046 28.599L31.136 30.4358C31.5291 29.2645 31.84 28.3011 31.84 28.3011C31.84 28.3011 31.484 28.2844 31.0057 28.1994C30.6185 28.1335 30.2391 28.0296 29.8731 27.8893C29.7701 27.8479 29.6681 27.8039 29.5674 27.7574C28.7446 27.3802 27.9251 26.8303 27.9251 26.8303C27.9251 26.8303 27.9509 29.8809 27.6303 32.1L23.776 33.9301C24.0434 33.463 24.4977 32.6599 24.8251 32.0357C25.3166 31.098 26.0937 29.9904 26.4451 28.6442C26.7966 27.2997 26.8949 24.8828 26.4451 23.7154C25.9954 22.5486 24.7126 21.7662 24.5537 21.8165C24.3943 21.8668 25.3171 24.1915 25.3171 24.1915C25.3171 24.1915 25.0314 23.6606 24.1131 22.8599C23.1954 22.0585 22.0629 21.6886 22.0629 21.6886C21.7914 21.6198 21.4166 21.7338 21.1497 21.9764C20.8829 22.2189 20.4423 22.5799 20.0303 22.5899C20.0202 22.5902 20.0101 22.59 20 22.5894V22.1982C20.3606 22.1574 20.8589 21.7176 20.9646 21.5556C21.0703 21.3929 21.0766 21.2354 21.1189 21.2354C21.1611 21.2354 21.5646 21.3555 21.7737 21.3231C21.9834 21.2912 22.1937 21.1096 22.2651 21.0141C22.3371 20.9179 22.3291 20.8352 22.1354 20.5838C21.9423 20.3323 21.6926 20.2541 21.4531 20.4223C21.2149 20.5899 20.9389 20.686 20.9389 20.686C20.9389 20.686 20.7937 20.6681 20.7937 19.6841C20.7937 18.8363 20.7966 17.7617 20.7977 16.7653C20.968 16.7491 21.2606 16.8072 21.4194 16.8614C21.4143 16.873 21.4101 16.885 21.4069 16.8972C21.3257 17.1839 21.3977 19.6885 21.3977 19.6885C22.1977 19.5192 22.7349 20.4966 22.8211 20.8559C22.9074 21.2152 22.62 21.4091 22.6011 21.4483C22.5823 21.4874 22.6383 21.5533 23.0509 21.7456C23.116 21.7763 23.1834 21.8132 23.2497 21.8545C23.6017 22.0702 23.9354 22.3888 23.9354 22.3888C23.9342 22.3084 23.9446 22.2282 23.9663 22.1507C24.02 21.9551 24.1417 21.7439 24.3371 21.441C24.42 21.3125 24.5143 21.1683 24.624 21.0018C25.0971 20.2786 25.9823 18.8419 26.2114 18.3932C26.3691 18.0847 26.5274 17.5661 26.5731 17.0425C26.5943 16.8061 26.5926 16.5669 26.5577 16.3473L26.5457 16.2786C26.497 16.0404 26.4363 15.8046 26.364 15.5722C26.1251 14.7748 25.7491 13.7583 25.5931 13.3548C25.3777 12.796 24.9097 10.8189 23.1583 9.39165C21.74 8.23488 20.4417 8.10356 20 8.09518V5.19153H20.0011L20.152 5.196V6.71376C20.152 6.71376 21.5006 6.96691 23.3177 8.18459C24.6766 9.09491 26.4171 10.255 28.4034 10.9323C29.0731 11.1609 29.7703 11.3347 30.4909 11.4246L30.3851 11.3324H34.9183C35.0182 11.5726 35.2032 11.7696 35.4394 11.8874L35.3194 12.0651L31.34 17.6561C31.0697 16.254 30.888 14.9704 30.688 14.0053C30.2851 12.0651 30.2194 11.7588 30.2194 11.7588C30.2194 11.7588 29.6857 11.7666 28.9366 11.6487C28.4337 11.5694 27.8337 11.4341 27.2337 11.2017L27.1617 11.1726C25.668 10.5736 25.1686 10.2897 25.1531 10.2807C25.1794 10.3143 26.8503 12.506 27.2503 14.9754C27.3331 15.4856 27.3794 15.9724 27.4006 16.4412C27.4846 18.2602 27.1943 19.8014 27.1943 21.3365C27.1943 23.2678 28.0469 26.8923 31.9143 27.5327C31.9143 27.5327 31.6526 27.2852 31.0806 26.7856C30.5091 26.2849 29.6166 24.8051 29.236 23.3041C28.8549 21.8037 28.724 20.9979 28.6491 19.0822C28.6046 17.9389 28.5777 16.6351 28.5863 16.1501" fill="url(#paint6_radial_146_780)"/>
90
+ <path d="M23.0594 2.40576L24.9337 5.09537C23.8023 4.30184 22.3023 3.74581 20.152 3.7039V4.87743L20.0057 4.87296H20V3.33061C20.1505 3.33046 20.2994 3.3003 20.4376 3.24196C20.5758 3.18363 20.7003 3.09835 20.8037 2.99133C20.907 2.88431 20.9869 2.75781 21.0386 2.61956C21.0902 2.48131 21.1125 2.33421 21.104 2.18726C21.7594 2.22509 22.4122 2.2984 23.0594 2.40576Z" fill="#15134A"/>
91
+ <path d="M19.3017 2.25044C19.3017 2.43133 19.3752 2.60481 19.506 2.73272C19.6368 2.86063 19.8142 2.93249 19.9991 2.93249C20.1841 2.93249 20.3615 2.86063 20.4923 2.73272C20.6231 2.60481 20.6966 2.43133 20.6966 2.25044C20.6966 2.06963 20.6231 1.89622 20.4924 1.76836C20.3616 1.64051 20.1843 1.56868 19.9994 1.56868C19.8145 1.56868 19.6372 1.64051 19.5065 1.76836C19.3757 1.89622 19.3017 2.06963 19.3017 2.25044ZM20 1.16968C20.2931 1.16997 20.574 1.28392 20.7813 1.48652C20.9886 1.68912 21.1053 1.96385 21.1057 2.25044C21.1054 2.53723 20.9887 2.81218 20.7813 3.01492C20.5739 3.21766 20.2927 3.33162 19.9994 3.33177C19.8489 3.33162 19.6999 3.30144 19.5617 3.24307C19.4235 3.1847 19.2989 3.09937 19.1956 2.9923C19.0922 2.88522 19.0123 2.75865 18.9607 2.62033C18.9091 2.48201 18.8869 2.33485 18.8954 2.18785C18.9126 1.91258 19.0364 1.65405 19.2416 1.46489C19.4468 1.27573 19.718 1.17016 20 1.16968Z" fill="#FEFEFE"/>
92
+ <path d="M21.0057 37.6217C21.0057 37.6217 23.716 37.4418 25.3886 36.4292C27.0628 35.4166 28.3234 33.9273 28.736 32.2196C28.7646 32.1005 28.7931 31.9748 28.8223 31.8451L30.2486 31.1678C29.9674 32.0296 29.6068 32.9343 29.1606 33.7016C29.1328 33.7499 29.1042 33.7977 29.0748 33.8452C28.3377 35.0388 27.136 36.133 25.5743 36.8472C25.5743 36.8483 25.5737 36.8477 25.5737 36.8477C24.07 37.3219 22.5089 37.6002 20.9308 37.6753L21.0063 37.6217H21.0057Z" fill="url(#paint7_linear_146_780)"/>
93
+ <path d="M20.9314 37.6759L21.1046 37.6658C22.6237 37.5793 24.1254 37.3046 25.5737 36.8483C24.256 37.4518 22.6817 37.7865 20.9154 37.6843C20.9207 37.6817 20.9259 37.6784 20.9309 37.6753L20.9314 37.6759Z" fill="url(#paint8_linear_146_780)"/>
94
+ <path d="M20 1.5686C20.1849 1.56875 20.3621 1.64072 20.4928 1.76868C20.6234 1.89664 20.6967 2.07011 20.6966 2.25093C20.6964 2.43174 20.6228 2.60509 20.492 2.73284C20.3611 2.8606 20.1837 2.93228 19.9988 2.93213C19.814 2.93199 19.6367 2.86001 19.5061 2.73205C19.3754 2.60409 19.3021 2.43062 19.3023 2.24981C19.3024 2.06899 19.376 1.89564 19.5069 1.76789C19.6377 1.64014 19.8151 1.56846 20 1.5686Z" fill="#1E205D"/>
95
+ <path d="M20.0057 4.87238L20.152 4.87686V5.19538L20.0011 5.19091H20V4.87183L20.0057 4.87238Z" fill="#15134A"/>
96
+ <path d="M19.9983 0.858398V1.16966C19.4097 1.16966 18.9269 1.62119 18.8943 2.18784C18.2389 2.22562 17.5861 2.29837 16.9389 2.40578L17.4109 1.72849L17.1743 1.57146L16.5446 2.47563C13.2234 3.09976 10.1476 4.62139 7.66571 6.86799C7.09199 6.81266 6.53142 6.85457 6.10685 6.91269C5.97926 6.92984 5.85217 6.95034 5.72571 6.97416C9.27771 3.21496 14.3611 0.858398 19.9977 0.858398H19.9983Z" fill="#ECEDF6"/>
97
+ <path d="M19.9983 0.499552V0.858876C14.3617 0.858876 9.27829 3.21543 5.72458 6.97408C5.1718 7.55851 4.65707 8.17629 4.18343 8.82379L3.83029 8.67067C4.47836 7.77866 5.20226 6.94174 5.99429 6.16882C7.79861 4.40099 9.93661 2.99242 12.2897 2.02123C14.7283 1.0118 17.3502 0.494239 19.9983 0.499552Z" fill="#2702FF"/>
98
+ <path d="M16.9389 2.40569C17.5859 2.2983 18.2385 2.22554 18.8937 2.18774C18.8852 2.3347 18.9075 2.4818 18.9592 2.62005C19.0108 2.7583 19.0907 2.8848 19.1941 2.99182C19.2974 3.09883 19.422 3.18412 19.5601 3.24245C19.6983 3.30079 19.8472 3.33095 19.9977 3.3311V4.87289H19.992L19.8463 4.87792V3.70439C17.6954 3.7463 16.1954 4.30233 15.0646 5.09586L16.9389 2.40624V2.40569Z" fill="#15134A"/>
99
+ <path d="M19.992 4.87238H19.9977V5.19147L19.8463 5.19594V4.87741L19.992 4.87238Z" fill="#15134A"/>
100
+ <path d="M26.3617 15.5733C26.1229 14.7753 25.7469 13.7593 25.5909 13.3553C25.3754 12.797 24.9074 10.8199 23.156 9.39266C21.7377 8.2359 20.4394 8.10457 19.9977 8.09619C19.556 8.10457 18.2583 8.2359 16.8394 9.39266C15.088 10.8199 14.62 12.797 14.4046 13.3553C14.2486 13.7593 13.8732 14.7753 13.6337 15.5733C13.8977 15.3715 14.4234 15.0111 15.0423 14.8177C14.9583 14.63 14.7857 14.1399 14.9052 13.4877C15.06 12.6461 15.6406 11.4335 16.4703 10.5092C17.2686 9.61843 18.8886 8.9741 19.9983 8.9484C21.108 8.9741 22.728 9.61899 23.5263 10.5092C24.3554 11.4335 24.936 12.6461 25.0909 13.4877C25.2109 14.1399 25.0383 14.63 24.9537 14.8177C25.572 15.0116 26.0977 15.371 26.3617 15.5733Z" fill="url(#paint9_linear_146_780)"/>
101
+ <path d="M25.0914 13.4878C24.9366 12.6462 24.356 11.4336 23.5263 10.5093C22.728 9.61852 21.108 8.97419 19.9983 8.94849V14.2573C19.9406 14.853 19.8211 15.2554 19.7211 16.135C19.584 17.3504 19.664 19.9718 19.664 20.8235C19.6628 21.2986 19.7774 21.7672 19.9983 22.1904V22.1982C20.3589 22.1574 20.8571 21.7176 20.9629 21.5555C21.0686 21.3929 21.0749 21.2353 21.1171 21.2353C21.1594 21.2353 21.5629 21.3555 21.772 21.3231C21.9811 21.2912 22.192 21.1096 22.2634 21.014C22.3354 20.9179 22.3274 20.8352 22.1337 20.5838C21.9406 20.3323 21.6909 20.254 21.4514 20.4222C21.2131 20.5899 20.9371 20.686 20.9371 20.686C20.9371 20.686 20.792 20.6681 20.792 19.684C20.792 18.8363 20.7949 17.7617 20.796 16.7653V16.2903C20.796 15.1715 21.1309 14.8251 21.5114 14.734C21.8926 14.6418 23.1314 14.6122 24.3057 14.691C24.5274 14.7055 24.7457 14.7524 24.9543 14.8173C25.0383 14.63 25.2109 14.14 25.0914 13.4878Z" fill="#FDFDFD"/>
102
+ <path d="M15.4817 30.7549C15.4657 31.4897 15.4857 31.8345 15.6137 32.2179C15.12 31.4551 14.832 27.2639 14.9697 26.2698C14.9931 26.0982 15.0474 25.9345 15.124 25.7769C15.4897 25.0253 16.36 24.457 16.7526 24.1915C17.2269 23.8713 18.0326 23.3097 18.748 23.3097C19.4623 23.3097 19.9983 23.6942 19.9983 23.6942V24.2988C19.9983 24.2988 19.6337 23.9322 18.7783 23.8713C17.9709 23.8137 17.1189 24.4201 16.5743 25.1605C16.5423 25.2035 16.5114 25.2483 16.4811 25.293C15.944 26.0921 15.832 26.794 15.7817 27.6724C15.7326 28.5386 15.6966 29.2662 15.696 29.2863C15.696 29.2863 15.5006 29.8882 15.4817 30.7549Z" fill="#162653"/>
103
+ <path d="M21.2171 23.8718C20.3623 23.9333 19.9977 24.2993 19.9977 24.2993C19.9977 24.2993 19.6331 23.9327 18.7777 23.8718C17.9703 23.8143 17.1183 24.4206 16.5737 25.161C16.676 25.2817 16.9554 25.5254 17.5451 25.5438C18.3194 25.5673 19.0588 25.1996 19.0811 25.189L19.0817 25.1884C19.0817 25.1884 19.4663 25.4986 19.9977 25.5405C20.3303 25.5078 20.6473 25.386 20.9137 25.1884C20.9366 25.1996 21.676 25.5673 22.4508 25.5438C23.0394 25.5254 23.3194 25.2817 23.4217 25.161C22.8771 24.4206 22.0251 23.8143 21.2171 23.8718Z" fill="#FEFEFE"/>
104
+ <path d="M20.6817 26.4536C20.5708 26.3346 20.3691 26.1619 19.9994 26.1256C19.6291 26.1619 19.428 26.3346 19.3171 26.4536C19.2257 26.5514 19.1491 26.6163 19.0428 26.7263H20.9571C20.8497 26.6163 20.7731 26.5514 20.6817 26.4536Z" fill="url(#paint10_linear_146_780)"/>
105
+ <path d="M19.9983 35.6725C20.1714 35.6742 20.3754 35.7289 20.7406 35.8664C21.3634 36.1011 21.8491 36.2548 21.9989 36.3C21.5463 37.0137 20.9931 37.3903 20.9931 37.3903C20.9931 37.3903 20.716 37.653 20.2446 37.6965H20.2429C20.1615 37.704 20.0797 37.7044 19.9983 37.6977C19.9126 37.7044 19.8303 37.7033 19.7537 37.6965H19.7514C19.2806 37.653 19.0034 37.3903 19.0034 37.3903C19.0034 37.3903 18.4503 37.0137 17.9977 36.3006C18.4215 36.1681 18.8411 36.0233 19.256 35.8664C19.6206 35.7289 19.8246 35.6742 19.9983 35.6725Z" fill="#4F00EC"/>
106
+ <path d="M19.8474 6.28235V6.71432C19.8474 6.71432 18.4989 6.96747 16.6817 8.18514C15.3229 9.09547 13.5823 10.2556 11.596 10.9329C12.3069 10.5702 13.0154 10.0756 13.9189 9.38382C14.8229 8.69311 15.4177 8.11138 16.8132 7.19658C18.0463 6.38741 19.5217 6.29297 19.8474 6.28235Z" fill="#FF8701"/>
107
+ <path d="M15.6229 7.0484C15.1949 7.38531 14.7893 7.74854 14.4086 8.13587C14.7354 7.69999 15.1154 7.30434 15.5177 6.93049C15.9232 6.55735 16.3611 6.2193 16.8263 5.92014C17.0606 5.77149 17.3023 5.63234 17.5526 5.50772C17.804 5.3859 18.0611 5.27469 18.3263 5.18025C18.3926 5.15678 18.4606 5.13555 18.5274 5.11487C18.5617 5.10425 18.5943 5.09252 18.6286 5.08302L18.7314 5.05619C18.8 5.03943 18.8674 5.01819 18.9371 5.00422L19.1451 4.95952C19.2149 4.94555 19.2851 4.93716 19.3554 4.92599L19.4611 4.91034C19.496 4.90587 19.5314 4.90308 19.5669 4.89917C19.6377 4.89358 19.708 4.88519 19.7794 4.88072L19.8469 4.87793V5.19646L19.7989 5.19814L19.6 5.2149C19.5674 5.21825 19.5337 5.22049 19.5006 5.22496L19.4023 5.23893C19.3366 5.24955 19.2697 5.25625 19.2046 5.26967C18.9417 5.31549 18.6834 5.3859 18.4274 5.46525C18.1731 5.54908 17.9234 5.64799 17.6783 5.75919C17.5566 5.81787 17.4354 5.87543 17.3166 5.93802C17.1954 5.99781 17.0789 6.06543 16.9617 6.13137C16.7269 6.26605 16.5006 6.41414 16.2766 6.56558C16.052 6.71702 15.8354 6.87964 15.6229 7.0484Z" fill="#15134A"/>
108
+ <path d="M21.3331 27.1454C21.2731 27.0806 21.2034 27.0001 21.1143 26.8984C21.063 26.8394 21.01 26.7818 20.9554 26.7257H19.04C18.9853 26.782 18.9321 26.8398 18.8806 26.8989C18.792 27.0001 18.7223 27.0806 18.6623 27.1454C18.6623 27.1454 18.5114 28.3105 18.6651 28.9694C18.8194 29.6288 19.2548 30.1178 19.5646 30.809C19.6322 30.9613 19.6883 31.1182 19.7326 31.2784C19.8926 31.8311 19.9291 32.3536 19.9971 32.4531C20.0657 32.3536 20.1028 31.8317 20.2611 31.279C20.2743 31.2332 20.2886 31.1879 20.3028 31.1426C20.3394 31.0303 20.3811 30.918 20.4297 30.8085C20.7394 30.1178 21.1743 29.6282 21.3291 28.9688C21.484 28.3105 21.3331 27.1454 21.3331 27.1454Z" fill="#FFFDFE"/>
109
+ <path d="M22.2829 28.6928C22.108 27.9541 21.6526 27.4109 21.5371 27.3315C21.4626 27.2773 21.3946 27.2151 21.3343 27.146C21.3343 27.146 21.4851 28.3106 21.3309 28.97C21.1766 29.6288 20.7412 30.1184 20.432 30.8091C20.3642 30.9617 20.3079 31.119 20.2634 31.2796C20.1046 31.8323 20.0669 32.3542 19.9994 32.4537C19.9309 32.3542 19.8937 31.8312 19.7349 31.2785C19.6904 31.1183 19.6343 30.9614 19.5669 30.8091C19.2572 30.1189 18.8223 29.6294 18.6674 28.9706C18.5132 28.3111 18.664 27.1466 18.664 27.1466C18.5874 27.2298 18.5263 27.2874 18.4611 27.3321C18.3469 27.4114 17.8903 27.9546 17.7154 28.6928C17.6702 28.8838 17.6601 29.0812 17.6857 29.2757C17.7274 29.6026 17.8594 29.9088 18.0092 30.2151C18.0823 30.3659 18.16 30.5168 18.2332 30.6699C18.504 31.2416 19.7269 33.1852 19.9989 33.6172C20.2714 33.1852 21.4943 31.2416 21.7652 30.6699C21.8383 30.5168 21.916 30.3659 21.9897 30.2151C22.1389 29.9094 22.2714 29.6031 22.3132 29.2762C22.3372 29.0896 22.3309 28.8962 22.2829 28.6928Z" fill="url(#paint11_linear_146_780)"/>
110
+ <path d="M14.6812 15.6991C14.6983 15.7639 14.7669 15.7734 14.9166 15.7181L14.9269 15.8276C14.848 15.8276 14.8269 15.9097 14.876 15.9824C14.8937 16.0086 14.9394 16.0662 15.0063 16.1394L13.4532 16.2797C13.488 16.0913 13.5537 15.8449 13.6349 15.5733C13.8989 15.3716 14.4246 15.0111 15.0434 14.8183C15.2514 14.753 15.4697 14.7066 15.692 14.6921C16.8657 14.6127 18.1052 14.6429 18.4863 14.7351C18.8669 14.8262 19.2006 15.1732 19.2006 16.292C19.2006 16.4468 19.2006 16.6055 19.2017 16.7664C19.0314 16.7502 18.7389 16.8083 18.5794 16.8625C18.5194 16.7178 18.344 16.5775 18.1337 16.4032C17.9497 16.2495 17.7377 16.069 17.5554 15.8365C17.1497 15.3179 16.5926 15.0586 16.2274 15.0402C15.8617 15.0218 15.6469 15.0972 15.1972 15.3375C14.7469 15.5778 14.66 15.6169 14.6812 15.6991Z" fill="url(#paint12_radial_146_780)"/>
111
+ <path d="M15.896 30.4866C16.0629 31.2611 18.7046 33.7261 19.104 34.0374C19.504 34.3492 19.4103 34.5744 19.104 34.6353C18.8457 34.6867 17.4589 34.7951 17.0354 34.827C16.8187 34.475 16.6162 34.1149 16.4286 33.7473C16.1183 33.1438 15.8823 32.7482 15.6943 32.4302V32.4285C15.6652 32.3592 15.6385 32.2889 15.6143 32.2178C15.4869 31.8345 15.4663 31.4897 15.4829 30.7548C15.5011 29.8887 15.6954 29.2874 15.6954 29.2874C15.748 29.1845 15.8143 29.0638 15.8954 28.9314C15.8874 28.9711 15.7331 29.7322 15.8954 30.4866H15.896Z" fill="#250EF0"/>
112
+ <path d="M11.4149 16.0986C11.4286 16.5848 11.3949 17.9389 11.3503 19.0822C11.2749 20.9979 11.144 21.8037 10.7634 23.3047C10.3823 24.8051 9.48972 26.2849 8.91772 26.7856C8.3463 27.2857 8.08458 27.5327 8.08458 27.5327C11.9526 26.8918 12.8046 23.2678 12.8046 21.3365C12.8046 19.8014 12.5149 18.2602 12.5983 16.4412C12.6194 15.9729 12.6663 15.4856 12.7486 14.9754C13.1486 12.5054 14.82 10.3148 14.8457 10.2813C14.8309 10.2891 14.3314 10.5736 12.8377 11.1726L12.7652 11.2017C12.1652 11.4341 11.5652 11.5694 11.0623 11.6487C10.3137 11.7666 9.77944 11.7588 9.77944 11.7588C9.77944 11.7588 9.7143 12.0651 9.31087 14.0053C9.11544 14.948 8.93772 16.1942 8.67772 17.5577L4.76915 12.0651L4.62515 11.8516C4.83054 11.7314 4.99039 11.5492 5.08058 11.3324H9.6143C9.54458 11.3939 9.50744 11.4246 9.50744 11.4246C10.219 11.332 10.9188 11.1672 11.5954 10.9329C13.5817 10.2556 15.3229 9.09435 16.6812 8.18459C18.4983 6.96691 19.8469 6.71376 19.8469 6.71376V5.196L19.9983 5.19153L19.9989 8.09629C19.5572 8.10412 18.26 8.23544 16.8412 9.3922C15.0897 10.82 14.6212 12.7966 14.4057 13.3554C14.2497 13.7589 13.8743 14.7748 13.6354 15.5728C13.5537 15.8444 13.4886 16.0908 13.4537 16.2791C13.4486 16.3032 13.4452 16.3261 13.4412 16.3479C13.4076 16.578 13.4024 16.8112 13.4257 17.0425C13.472 17.5667 13.6303 18.0847 13.7874 18.3937C14.0172 18.8425 14.9017 20.2792 15.3749 21.0023C15.4834 21.1689 15.5794 21.3136 15.6617 21.441C15.8572 21.7444 15.9789 21.9557 16.0326 22.1507C16.0543 22.2317 16.0646 22.3089 16.0634 22.3893C16.0634 22.3893 16.3977 22.0708 16.7492 21.8551C16.8154 21.8137 16.8829 21.7774 16.9486 21.7461C17.3606 21.5539 17.4172 21.4879 17.3983 21.4488C17.3794 21.4097 17.0914 21.2158 17.1777 20.8565C17.2646 20.4966 17.8006 19.5198 18.6012 19.6885C18.6012 19.6885 18.6732 17.1839 18.592 16.8978C18.5886 16.8856 18.5844 16.8736 18.5794 16.862C18.7389 16.8078 19.0314 16.7502 19.2012 16.7659C19.2023 17.7623 19.2057 18.8369 19.2057 19.6846C19.2057 20.6681 19.0606 20.6866 19.0606 20.6866C19.0606 20.6866 18.784 20.5905 18.5457 20.4228C18.3069 20.2552 18.0572 20.3323 17.8634 20.5849C17.6703 20.8364 17.6623 20.9191 17.7343 21.0152C17.8057 21.1102 18.016 21.2918 18.2252 21.3236C18.4343 21.3566 18.8377 21.2359 18.8806 21.2359C18.9223 21.2359 18.9292 21.3935 19.0349 21.5561C19.14 21.7182 19.6383 22.158 19.9989 22.1988V22.5899C19.9888 22.5904 19.9787 22.5904 19.9686 22.5899C19.5566 22.581 19.116 22.22 18.8497 21.9769C18.5823 21.7344 18.208 21.6204 17.9366 21.6886C17.9366 21.6886 16.8034 22.0591 15.8857 22.8604C14.968 23.6606 14.6817 24.1921 14.6817 24.1921C14.6817 24.1921 15.6046 21.8674 15.4457 21.8171C15.2869 21.7668 14.0034 22.5491 13.5543 23.7165C13.1046 24.8834 13.2023 27.2997 13.5543 28.6453C13.9052 29.9904 14.6823 31.0986 15.1743 32.0363C15.5133 32.6734 15.8631 33.3049 16.2234 33.9307L12.3686 32.1006C12.0486 29.8815 12.0737 26.8309 12.0737 26.8309C12.0737 26.8309 11.2543 27.3807 10.432 27.7579C10.3292 27.8049 10.2274 27.849 10.1263 27.8898C9.76017 28.0301 9.38055 28.134 8.99315 28.2C8.51544 28.2849 8.15887 28.3022 8.15887 28.3022C8.15887 28.3022 8.4703 29.2656 8.8623 30.4364L4.99372 28.5995C5.10172 28.381 5.13315 28.1296 5.07658 27.8881C7.05715 27.839 9.20115 26.614 10.0137 24.6319C10.8846 22.5084 11.1126 20.2965 11.2309 18.9486" fill="url(#paint13_radial_146_780)"/>
113
+ <path d="M17.8617 20.5849C18.0554 20.3328 18.3051 20.2552 18.544 20.4228C18.7823 20.5905 19.0589 20.6871 19.0589 20.6871C19.0589 20.6871 19.204 20.6687 19.204 19.6846C19.204 18.8369 19.2006 17.7628 19.2 16.7659L19.1994 16.2914C19.1994 15.1727 18.8651 14.8262 18.4846 14.7345C18.1034 14.6429 16.864 14.6127 15.6903 14.6921C15.4697 14.7084 15.252 14.7506 15.0417 14.8178C14.9577 14.6295 14.7851 14.14 14.9046 13.4878C15.0594 12.6462 15.64 11.4336 16.4691 10.5093C17.268 9.61852 18.8874 8.97419 19.9977 8.94849V14.2573C19.9394 14.853 19.8206 15.2554 19.7206 16.135C19.5834 17.3504 19.6634 19.9718 19.6634 20.8235C19.6622 21.2986 19.7768 21.7672 19.9977 22.1904V22.1982C19.6366 22.1574 19.1389 21.7176 19.0331 21.5555C18.9274 21.3929 18.9206 21.2353 18.8789 21.2353C18.836 21.2353 18.4331 21.3555 18.2234 21.3231C18.0143 21.2912 17.804 21.1096 17.732 21.014C17.6606 20.919 17.668 20.8358 17.8617 20.5849Z" fill="#DDD3C0"/>
114
+ <path d="M19.0829 37.6843C17.316 37.7865 15.7417 37.4518 14.424 36.8483C15.9278 37.3222 17.4888 37.6003 19.0669 37.6753L19.0829 37.6843Z" fill="url(#paint14_linear_146_780)"/>
115
+ <path d="M11.1743 31.8451L12.42 32.4363C12.4766 32.7783 12.544 33.0941 12.6217 33.3662C13.1943 35.3646 16.0549 36.9432 17.9114 36.6443C18.2571 37.0723 18.6303 37.4412 18.9909 37.6222C18.9909 37.6222 16.2806 37.4417 14.608 36.4291C12.9343 35.4165 11.6731 33.9273 11.2611 32.2195C11.2326 32.0999 11.2029 31.9747 11.1743 31.8451Z" fill="url(#paint15_linear_146_780)"/>
116
+ <path d="M14.9166 15.718C14.768 15.7734 14.6983 15.7639 14.6811 15.699C14.6606 15.6163 14.7474 15.5772 15.1966 15.3369C15.6457 15.0966 15.8611 15.0218 16.2269 15.0396C16.592 15.0581 17.1491 15.3174 17.5549 15.8365C17.7377 16.069 17.9491 16.2489 18.1337 16.4032L18.048 16.4048C18.0297 16.3881 17.9691 16.3747 17.8154 16.3713C17.8006 16.3601 17.7863 16.3512 17.772 16.3417C17.6131 16.2355 17.3109 16.2338 17.0537 16.4032C16.796 16.5725 16.1754 16.9245 15.7469 16.7234C15.4446 16.5814 15.1657 16.3149 15.0063 16.1388C14.9602 16.0888 14.9167 16.0366 14.876 15.9824C14.8263 15.9086 14.848 15.827 14.9263 15.8265C14.944 15.8265 14.9646 15.8309 14.988 15.8399C15.1149 15.8902 15.5286 16.4188 16.1046 16.3847C16.6806 16.3506 17.1046 15.8382 17.1046 15.8192C17.1046 15.8013 16.6297 15.4537 16.236 15.3822C15.8417 15.3112 15.2943 15.5448 15.0509 15.6594C15.0069 15.6807 14.9621 15.7003 14.9166 15.718Z" fill="url(#paint16_linear_146_780)"/>
117
+ <path d="M18.1349 16.4026C18.344 16.5764 18.5194 16.7172 18.58 16.8619C18.5852 16.8731 18.5892 16.8859 18.5926 16.8977C18.6737 17.1844 18.6017 19.689 18.6017 19.689C17.8017 19.5197 17.2646 20.4971 17.1789 20.8564C17.092 21.2157 17.38 21.4096 17.3989 21.4487C17.4172 21.4879 17.3612 21.5538 16.9492 21.746C16.8834 21.7768 16.8166 21.8136 16.7497 21.855C16.7652 21.6577 16.804 21.2135 16.8692 20.8866C16.9554 20.454 17.0143 20.074 17.3663 19.575C17.7172 19.076 18.0257 18.7926 18.148 18.3484C18.2692 17.9047 18.2069 16.7356 18.1994 16.7054C18.1926 16.6792 17.9754 16.4858 17.8166 16.3718C17.9703 16.3746 18.0309 16.3886 18.048 16.4054L18.1349 16.4026Z" fill="url(#paint17_linear_146_780)"/>
118
+ <path d="M18.1977 16.7055C18.2051 16.7357 18.268 17.9048 18.1463 18.3485C18.0251 18.7922 17.7154 19.0755 17.3646 19.5745C17.0131 20.0741 16.9543 20.4536 16.8674 20.8861C16.8023 21.213 16.7634 21.6573 16.7486 21.8545C16.3966 22.0702 16.0629 22.3888 16.0629 22.3888C16.0641 22.3084 16.0537 22.2282 16.032 22.1507C16.0994 22.0596 16.1886 21.8976 16.1566 21.7053C16.1063 21.4064 15.9314 20.4966 15.1011 18.9654C14.2709 17.4342 13.8211 16.4574 13.8211 16.4574C13.8211 16.4574 14.9703 16.8877 15.4983 17.1073C16.0257 17.3275 16.4069 17.2141 16.8126 16.9061C17.2183 16.5977 17.4269 16.363 17.816 16.3708C17.9737 16.4848 18.1914 16.6781 18.1977 16.7055Z" fill="#C8C090"/>
119
+ <path d="M20.8937 34.0379C21.2932 33.7261 23.9343 31.2611 24.1017 30.4866C24.264 29.7322 24.1103 28.9711 24.1017 28.932C23.969 28.7126 23.8208 28.502 23.6583 28.3027C23.58 28.2077 23.5029 28.1122 23.4252 28.0155L23.2474 27.7976C22.8309 27.2907 22.3703 26.7604 21.6869 26.1602C21.1154 25.6601 20.9554 25.351 20.9154 25.189H20.9143C20.9143 25.189 20.5297 25.4991 19.9989 25.541C19.4674 25.4991 19.0829 25.189 19.0829 25.189C19.0429 25.351 18.8812 25.6595 18.3109 26.1608C17.6269 26.7604 17.1663 27.2907 16.7497 27.7981C16.6903 27.8708 16.6309 27.9434 16.5726 28.0161C16.4943 28.1111 16.4172 28.2077 16.3389 28.3027C16.1764 28.502 16.0282 28.7121 15.8954 28.9314C15.8874 28.9716 15.7332 29.7316 15.8954 30.4861C16.0623 31.2611 18.704 33.7261 19.1034 34.0374C19.5034 34.3492 19.4097 34.5744 19.1034 34.6353C18.8452 34.6867 17.4589 34.7951 17.0354 34.827C17.3863 35.3987 17.6977 35.8245 17.9926 36.2917L17.9977 36.3001C18.4217 36.1676 18.8415 36.0228 19.2566 35.8658C19.6217 35.7284 19.8257 35.6742 19.9989 35.6725C20.1714 35.6736 20.376 35.7284 20.7406 35.8658C21.364 36.1006 21.8492 36.2542 21.9994 36.3001L22.0052 36.2917C22.2994 35.8245 22.6109 35.3987 22.9617 34.8276C22.5389 34.7951 21.152 34.6867 20.8932 34.6353C20.5874 34.5738 20.4937 34.3492 20.8932 34.0374L20.8937 34.0379ZM19.9989 33.6166C19.7263 33.1846 18.504 31.241 18.2332 30.6693C18.16 30.5162 18.0817 30.3648 18.0086 30.2145C17.8589 29.9088 17.7263 29.6026 17.6852 29.2756C17.659 29.0809 17.6688 28.883 17.7143 28.6917C17.8892 27.9535 18.3446 27.4103 18.46 27.3309C18.5252 27.2862 18.5863 27.2281 18.6629 27.1454C18.7229 27.0806 18.7926 27.0001 18.8817 26.8978C18.9429 26.828 18.9949 26.7727 19.0412 26.7252C19.148 26.6162 19.224 26.5503 19.3154 26.453C19.4263 26.334 19.6286 26.1613 19.9983 26.125C20.368 26.1613 20.5697 26.334 20.6806 26.453C20.772 26.5508 20.848 26.6156 20.9549 26.7252C21.0012 26.7727 21.0532 26.8286 21.1149 26.8984C21.2034 27.0001 21.2726 27.0806 21.3332 27.1454C21.4097 27.2292 21.4709 27.2862 21.536 27.3309C21.6509 27.4103 22.1074 27.9535 22.2817 28.6917C22.3297 28.8962 22.3354 29.0884 22.312 29.2745C22.2703 29.6014 22.1377 29.9077 21.9886 30.2139C21.9149 30.3648 21.8372 30.5157 21.764 30.6688C21.4932 31.2405 20.2703 33.1846 19.9983 33.616L19.9989 33.6166Z" fill="#252842"/>
120
+ <path d="M17.9114 36.6443C16.0554 36.9433 13.1943 35.3646 12.6223 33.3663C12.5376 33.0601 12.4698 32.7497 12.4194 32.4364L16.464 34.3565C16.5817 34.5873 17.1869 35.7463 17.9114 36.6443Z" fill="#24254B"/>
121
+ <path d="M14.4251 36.8477H14.424C12.8628 36.1324 11.6606 35.0388 10.924 33.8452C10.8945 33.7978 10.8659 33.75 10.8383 33.7016C10.3914 32.9343 10.0308 32.0296 9.75027 31.1678L11.176 31.8451C11.2051 31.9748 11.2343 32.1005 11.2628 32.2196C11.6748 33.9279 12.936 35.4166 14.6097 36.4292C16.2823 37.4418 18.9926 37.6217 18.9926 37.6217L19.068 37.6748C19.0103 37.672 18.952 37.6692 18.8948 37.6653C17.3755 37.5791 15.8736 37.3043 14.4251 36.8477Z" fill="url(#paint18_linear_146_780)"/>
122
+ <path d="M17.4114 1.72839L16.9388 2.40568C16.8068 2.42692 16.676 2.45039 16.5446 2.47498L17.1743 1.5708L17.4114 1.72839Z" fill="#ECEDF6"/>
123
+ <path d="M16.9389 2.40576L15.0646 5.09594C14.776 5.29823 14.5109 5.51673 14.2657 5.74641L16.5446 2.47506C16.676 2.44991 16.8069 2.427 16.9389 2.40576Z" fill="#FFFFFB"/>
124
+ <path d="M16.2377 15.3828C16.6309 15.4543 17.1063 15.8019 17.1063 15.8198C17.1063 15.8382 16.6823 16.3506 16.1063 16.3853C15.5303 16.4194 15.1154 15.8913 14.9891 15.8404C14.9696 15.8324 14.9486 15.828 14.9274 15.8276L14.9171 15.7181C14.9571 15.7035 15.0017 15.6845 15.0526 15.6599C15.2966 15.5454 15.844 15.3123 16.2377 15.3828Z" fill="#071C50"/>
125
+ <path d="M24.3011 29.2868C24.3 29.2667 24.264 28.5397 24.2154 27.6729C24.1646 26.7945 24.0526 26.0931 23.516 25.2935C23.4861 25.2486 23.455 25.2044 23.4229 25.161C23.32 25.2823 23.0411 25.5254 22.4514 25.5438C21.6771 25.5673 20.9372 25.1996 20.9154 25.189C20.9554 25.3505 21.116 25.6589 21.6869 26.1602C22.3703 26.7598 22.8314 27.2901 23.2474 27.7975C23.3074 27.8702 23.3669 27.9428 23.4246 28.0155C23.5029 28.1116 23.58 28.2072 23.6583 28.3022C23.8377 28.5207 23.9851 28.738 24.1023 28.9308C24.1823 29.0644 24.2486 29.1845 24.3011 29.2868Z" fill="#F7B41E"/>
126
+ <path d="M17.5463 25.5438C16.9566 25.5254 16.6777 25.2823 16.5748 25.161C16.5428 25.2046 16.512 25.2487 16.4817 25.2935C15.9446 26.0926 15.8326 26.7945 15.7823 27.6729C15.7331 28.5391 15.6971 29.2667 15.6966 29.2868C15.7491 29.1845 15.8148 29.0633 15.896 28.9314C16.0289 28.7118 16.1773 28.5016 16.34 28.3022L16.5731 28.0155C16.6314 27.9428 16.6908 27.8702 16.7503 27.7975C17.1674 27.2901 17.628 26.7598 18.3114 26.1602C18.8823 25.6595 19.0428 25.3505 19.0828 25.189C19.06 25.2001 18.3211 25.5678 17.5463 25.5438Z" fill="url(#paint19_linear_146_780)"/>
127
+ <path d="M16.5943 34.1066L16.4697 34.3581L16.4657 34.3564C16.4585 34.3429 16.4515 34.3293 16.4446 34.3156L16.2234 33.9301L16.5943 34.1066Z" fill="#FDFDFD"/>
128
+ <path d="M16.544 2.47553L14.2651 5.74633C14.1131 5.88771 13.9691 6.03356 13.8314 6.18221L4.98171 10.3354C4.9345 10.2639 4.87846 10.1984 4.81485 10.1404C5.62629 8.94078 6.58336 7.84176 7.66514 6.86733C10.1473 4.62115 13.223 3.10015 16.544 2.47553Z" fill="#272742"/>
129
+ <path d="M16.2228 33.9307L16.444 34.3163L16.4651 34.3571L12.4206 32.4369C12.402 32.3254 12.3846 32.2136 12.3686 32.1016L16.2228 33.9307ZM17.9354 21.6891C17.9354 21.6891 18.676 22.1099 18.7508 22.1652C18.8257 22.22 18.9006 22.3116 18.6383 22.4441C18.3766 22.5771 16.1286 24.0686 15.5057 25.0661C15.3651 25.2918 15.2331 25.5282 15.1143 25.7724C14.708 26.6106 14.4571 27.5439 14.5366 28.4615C14.6394 29.6467 15.028 31.0058 15.2577 31.5875C15.372 31.8764 15.5091 32.1145 15.6943 32.4286V32.4297C15.8817 32.7482 16.1177 33.1433 16.4286 33.7474C16.4914 33.8692 16.5531 33.986 16.6131 34.0966L16.5943 34.1067L16.2228 33.9307C15.8626 33.3048 15.5129 32.6733 15.1737 32.0363C14.6823 31.098 13.9051 29.991 13.5537 28.6448C13.2023 27.2997 13.104 24.8833 13.5537 23.7159C14.0034 22.5491 15.2863 21.7668 15.4451 21.8171C15.6046 21.8674 14.6817 24.1921 14.6817 24.1921C14.6817 24.1921 14.9674 23.6612 15.8857 22.8598C16.8023 22.0596 17.9354 21.6891 17.9354 21.6891Z" fill="#FDFDFD"/>
130
+ <path d="M16.8114 16.9066C17.2171 16.5981 17.4257 16.3634 17.8149 16.3713C17.8 16.3601 17.7857 16.3511 17.7714 16.3411C17.612 16.236 17.3103 16.2332 17.0531 16.4026C16.7954 16.5724 16.1749 16.9245 15.7463 16.7233C15.4434 16.5808 15.1651 16.3148 15.0057 16.1388L13.452 16.2791L13.4406 16.3478C13.4051 16.568 13.4034 16.806 13.4246 17.0424C13.4709 17.5666 13.6291 18.0846 13.7863 18.3936C14.016 18.8424 14.9006 20.2786 15.3737 21.0022C15.4823 21.1682 15.5783 21.3129 15.6606 21.4409C15.856 21.7444 15.9777 21.9556 16.0314 22.1506C16.0994 22.0601 16.1886 21.898 16.156 21.7058C16.1057 21.4063 15.9309 20.4971 15.1011 18.9659C14.2703 17.4341 13.8211 16.4579 13.8211 16.4579C13.8211 16.4579 14.9697 16.8882 15.4977 17.1078C16.0246 17.328 16.4051 17.2151 16.8114 16.9066Z" fill="#05B5CC"/>
131
+ <path d="M24.4903 25.066C23.8674 24.0685 21.62 22.577 21.3577 22.444C21.0954 22.3116 21.1703 22.2205 21.2451 22.1646C21.32 22.1098 22.0606 21.689 22.0606 21.689C21.7891 21.6203 21.4143 21.7348 21.1474 21.9774C20.8806 22.2199 20.44 22.5809 20.028 22.5904H19.9674C19.5554 22.5815 19.1149 22.2199 18.848 21.9774C18.5806 21.7348 18.2063 21.6203 17.9349 21.689C17.9349 21.689 18.6754 22.1098 18.7503 22.1651C18.8251 22.2199 18.9 22.3116 18.6377 22.444C18.3754 22.577 16.128 24.0685 15.5051 25.066C15.3622 25.2947 15.2316 25.5304 15.1137 25.7723L15.1234 25.7768C15.4891 25.0252 16.3594 24.4569 16.7526 24.1914C17.2269 23.8712 18.0326 23.3096 18.7474 23.3096C19.4629 23.3096 19.9983 23.6941 19.9983 23.6941C19.9983 23.6941 20.5343 23.3096 21.2486 23.3096C21.9634 23.3096 22.7691 23.8712 23.2434 24.1914C23.6366 24.4569 24.5063 25.0252 24.8726 25.7768L24.8823 25.7723C24.7629 25.5281 24.6309 25.2918 24.4903 25.066Z" fill="url(#paint20_linear_146_780)"/>
132
+ <path d="M14.9709 26.2702C14.8337 27.2638 15.1217 31.455 15.6149 32.2178C15.6377 32.286 15.664 32.3558 15.6949 32.4285C15.5091 32.1139 15.372 31.8758 15.2577 31.5875C15.0291 31.0063 14.6406 29.6472 14.5371 28.462C14.4571 27.5444 14.7086 26.61 15.1149 25.7723L15.1246 25.7768C15.0473 25.9323 14.9952 26.0986 14.9703 26.2697L14.9709 26.2702Z" fill="url(#paint21_linear_146_780)"/>
133
+ <path d="M15.0657 5.09595L14.2189 6.31083L13.3817 6.70368C13.5246 6.52709 13.6743 6.35274 13.8331 6.18286L14.0257 6.09233L14.2669 5.74642C14.5126 5.5173 14.7771 5.29824 15.0657 5.09595Z" fill="#FEFEFE"/>
134
+ <path d="M12.836 11.1725C14.3297 10.5735 14.8291 10.2896 14.8446 10.2806C14.8183 10.3142 13.1469 12.5059 12.7474 14.9753C12.669 15.4607 12.6186 15.9501 12.5966 16.4411C12.2417 16.5506 11.8194 16.6054 11.4109 16.6289C11.4131 16.3031 11.4109 16.136 11.4109 16.136C11.4109 16.136 11.4857 14.402 11.9109 13.072C12.2103 12.1331 12.5754 11.4955 12.764 11.201L12.836 11.1725Z" fill="#8E485F"/>
135
+ <path d="M14.2669 5.74634L14.0257 6.09169L13.8326 6.18222C13.9703 6.03357 14.1149 5.88716 14.2669 5.74634Z" fill="#FEFEFE"/>
136
+ <path d="M5.10513 10.5874L13.3806 6.70361C12.984 7.1937 12.6377 7.70167 12.3063 8.19344C11.6141 9.22617 10.8128 10.1848 9.91542 11.0535H5.15256C5.17191 10.8966 5.15572 10.7375 5.10513 10.5874Z" fill="#272742"/>
137
+ <path d="M11.0629 11.6487C11.5657 11.5699 12.1651 11.4347 12.7657 11.2017C12.5766 11.4956 12.2114 12.1338 11.912 13.072C11.4869 14.402 11.4126 16.1361 11.4126 16.1361C11.4126 16.1361 11.4046 16.3261 11.388 16.6306C10.82 16.6625 10.284 16.6351 9.99771 16.6139C10.2606 14.0757 10.9017 12.1137 11.0629 11.6487Z" fill="#DD5A79"/>
138
+ <path d="M12.5983 16.4406C12.5149 18.2601 12.8051 19.8013 12.8051 21.3364C12.8051 23.2683 11.9526 26.8922 8.08514 27.5326C8.08514 27.5326 8.34686 27.2856 8.91829 26.7855C9.48972 26.2848 10.3829 24.805 10.7634 23.3046C11.1446 21.8036 11.2754 20.9978 11.3503 19.0821C11.3949 17.9388 11.4086 17.1111 11.4126 16.6289C11.8206 16.6054 12.2429 16.5501 12.5983 16.4406Z" fill="#2B66AB"/>
139
+ <path d="M12.4212 32.4364L11.1754 31.8457C11.1509 31.7329 11.1252 31.6177 11.1006 31.4993L12.3692 32.1006C12.3852 32.2151 12.4034 32.3274 12.4212 32.4364Z" fill="#FDFDFD"/>
140
+ <path d="M12.3686 32.1004L11.1 31.4986C10.8051 30.0993 10.5228 28.3446 10.4308 27.7584C11.2537 27.3812 12.0731 26.8313 12.0731 26.8313C12.0731 26.8313 12.048 29.8808 12.3686 32.1004Z" fill="#2B21EB"/>
141
+ <path d="M11.176 31.8457L9.74973 31.1684C9.70916 31.0455 9.6703 30.9225 9.63373 30.8024L11.1006 31.4987L11.176 31.8457Z" fill="#FDFDFD"/>
142
+ <path d="M9.77942 11.7588C9.77942 11.7588 10.3131 11.7666 11.0623 11.6487C10.9011 12.1136 10.26 14.0757 9.99714 16.6138L9.99485 16.6418C9.69485 19.57 9.16056 21.3828 8.76742 22.6452C8.39885 23.8299 6.84285 26.6905 4.41656 27.1303C4.32809 27.095 4.23532 27.0709 4.14056 27.0588V26.6201C4.88799 25.9557 6.59371 24.2719 7.45599 22.0596C7.90228 20.9145 8.22285 19.7142 8.47256 18.5624L8.72971 18.9525L9.29199 18.4216L8.67714 17.5582C8.93771 16.1947 9.11485 14.9485 9.31142 14.0058C9.71371 12.065 9.77942 11.7588 9.77942 11.7588Z" fill="#FEFCFD"/>
143
+ <path d="M10.8377 33.7015C10.8652 33.7495 10.8943 33.7976 10.9234 33.8451C10.7154 33.9926 10.2772 34.2994 10.2492 34.2871L10.152 34.0435C9.85716 33.3371 9.39315 32.0077 8.9863 30.8068L9.74916 31.1683C10.0303 32.0289 10.3909 32.9342 10.8377 33.7015Z" fill="#FFE3B4"/>
144
+ <path d="M9.99829 16.6138C10.284 16.6344 10.8206 16.6624 11.3886 16.6305C11.36 17.1737 11.3069 18.0846 11.2314 18.948C11.1131 20.2964 10.8851 22.5082 10.0143 24.6318C9.20057 26.6139 7.05657 27.8389 5.07657 27.888C5.03691 27.7193 4.95628 27.5624 4.8415 27.4306C4.72671 27.2988 4.58116 27.196 4.41714 27.1308C6.84343 26.6905 8.39943 23.8304 8.768 22.6457C9.16172 21.3828 9.69543 19.5705 9.99543 16.6417C9.99543 16.6322 9.99714 16.6227 9.99829 16.6138Z" fill="url(#paint22_linear_146_780)"/>
145
+ <path d="M10.432 27.7584C10.5234 28.3446 10.8057 30.0999 11.1006 31.4986L9.63428 30.8023C9.37379 29.9467 9.15978 29.0782 8.99313 28.2005C9.3377 28.139 9.74456 28.0417 10.1263 27.8897C10.2268 27.8495 10.3291 27.8054 10.432 27.7584Z" fill="#3858D6"/>
146
+ <path d="M8.98571 30.8062C9.39199 32.0077 9.85599 33.3371 10.1509 34.0429L10.248 34.2871C10.248 34.2871 8.02228 33.3695 6.79771 32.1496C6.75819 32.1091 6.71895 32.0683 6.67999 32.0273L6.66914 32.0161C5.82442 31.1296 5.07514 30.1605 4.43314 29.1242C4.58835 29.0597 4.72622 28.961 4.83599 28.8358L8.98571 30.8062Z" fill="#15134A"/>
147
+ <path d="M10.0171 11.0536V11.333H9.61371C9.68399 11.2704 9.78742 11.1765 9.91657 11.0536H10.0171Z" fill="#FEFEFE"/>
148
+ <path d="M5.15371 11.0536H9.91657C9.78742 11.1765 9.68457 11.2699 9.61371 11.333H5.08057C5.11885 11.2419 5.14342 11.1475 5.15371 11.0536Z" fill="#FF7F16"/>
149
+ <path d="M9.74858 31.1673L8.9863 30.8057L8.86172 30.4358L9.63315 30.8018C9.6703 30.9231 9.70915 31.0449 9.74915 31.1673H9.74858Z" fill="#FDFDFD"/>
150
+ <path d="M11.5943 10.9328C10.9178 11.1671 10.2182 11.3319 9.50687 11.4246C9.50687 11.4246 9.54401 11.3938 9.61315 11.3324H10.0166V11.0529H9.91601C10.436 10.5562 11.3777 9.57486 12.3074 8.19345C12.6389 7.70168 12.9846 7.19315 13.3812 6.70362L14.2183 6.31077L15.0652 5.09533C16.1966 4.3018 17.6966 3.74577 19.8469 3.70386V4.87739L19.7794 4.87962C19.708 4.88409 19.6377 4.89248 19.5669 4.89806C19.5314 4.90198 19.496 4.90477 19.4612 4.90924L19.3554 4.92545C19.2852 4.93662 19.2143 4.94445 19.1452 4.95897L18.9372 5.00368C18.8674 5.01765 18.8 5.03833 18.7314 5.05565L18.6286 5.08248C18.5943 5.09198 18.5612 5.10315 18.5274 5.11377C18.4606 5.135 18.3926 5.15624 18.3263 5.17915C18.0612 5.27415 17.8034 5.38536 17.5526 5.50718C17.3017 5.63124 17.0612 5.77039 16.8263 5.91959C16.3611 6.21861 15.9233 6.55647 15.5177 6.92939C15.1154 7.30324 14.7349 7.69889 14.4086 8.13477C14.789 7.74733 15.1944 7.3841 15.6223 7.0473C15.8349 6.87853 16.052 6.71648 16.276 6.56448C16.5 6.41248 16.7263 6.26495 16.9606 6.13027C17.0783 6.06433 17.1949 5.99615 17.316 5.93692C17.6722 5.74901 18.044 5.59086 18.4274 5.46415C18.6829 5.3848 18.9417 5.31327 19.204 5.26856C19.2692 5.25515 19.3354 5.24789 19.4017 5.23783L19.5 5.2233C19.5332 5.21883 19.5663 5.21715 19.5994 5.2138C19.6663 5.20821 19.732 5.2015 19.7983 5.19703L19.8463 5.19536V6.28115C19.5212 6.29233 18.0452 6.38621 16.812 7.19539C15.4166 8.11074 14.8217 8.69192 13.9183 9.38318C13.0143 10.075 12.3052 10.5696 11.5943 10.9328Z" fill="#FEFEFE"/>
151
+ <path d="M8.67772 17.5576L9.29257 18.421L8.73029 18.9519L8.47314 18.5624C8.54743 18.2226 8.61486 17.8862 8.67772 17.5576Z" fill="#FEFCFD"/>
152
+ <path d="M8.99199 28.2C9.07427 28.6381 9.28227 29.6562 9.63313 30.8024L8.8617 30.4364C8.46913 29.2656 8.15884 28.3022 8.15884 28.3022C8.15884 28.3022 8.51427 28.2855 8.99199 28.2Z" fill="#FFE3B4"/>
153
+ <path d="M8.98744 30.8062L4.83716 28.8358C4.90002 28.7637 4.95316 28.6844 4.9943 28.6L8.86287 30.4363L8.98744 30.8062Z" fill="#FDFDFD"/>
154
+ <path d="M6.10685 6.91267C6.53142 6.85399 7.09142 6.81208 7.6657 6.86796C6.58393 7.84239 5.62686 8.94141 4.81542 10.141C4.68739 10.0224 4.53217 9.93556 4.36275 9.88773C4.19333 9.83989 4.01466 9.83246 3.84171 9.86605C4.00456 9.59446 4.22571 9.27593 4.46799 8.9479C5.06399 8.1432 5.79028 7.28317 6.10685 6.91267Z" fill="#E03528"/>
155
+ <path d="M6.79886 32.1503C8.024 33.3696 10.2497 34.2872 10.2497 34.2872L10.592 35.1411C9.19596 34.3153 7.9201 33.3093 6.79886 32.1503Z" fill="#069EBF"/>
156
+ <path d="M5.72515 6.97358C5.83372 6.9529 5.96229 6.93167 6.10629 6.91211C5.79029 7.28205 5.064 8.1432 4.468 8.9479L4.18286 8.82329C4.65702 8.17587 5.17212 7.5581 5.72515 6.97358Z" fill="#FF5B32"/>
157
+ <path d="M4.608 9.98948C4.84368 10.1217 5.02082 10.3348 5.10514 10.5874C5.18297 10.8201 5.17782 11.0718 5.09054 11.3013C5.00325 11.5307 4.83899 11.7245 4.62457 11.8509L4.48743 11.6481L4.13143 11.9772L4.14743 12.0012C4.04937 12.0104 3.95047 12.0059 3.85371 11.9878C3.72967 11.9661 3.61051 11.9232 3.50171 11.861C3.37593 11.7903 3.26572 11.6959 3.17744 11.5833C3.08917 11.4707 3.02459 11.3421 2.98743 11.2049C2.94083 11.0378 2.93651 10.8621 2.97486 10.693V10.6919C2.99886 10.5857 3.04 10.4824 3.09714 10.3857V10.3846C3.19501 10.2206 3.33494 10.0844 3.50311 9.98957C3.67128 9.8947 3.86186 9.84439 4.056 9.84363C4.24857 9.84475 4.44 9.89448 4.608 9.98948ZM3.70628 11.5162C3.73143 11.5302 3.75714 11.543 3.78343 11.5531L3.81657 11.5659C3.82876 11.5706 3.84115 11.5747 3.85371 11.5782H3.85543C3.86686 11.5821 3.87828 11.5849 3.88971 11.5877C3.90302 11.5914 3.91658 11.5942 3.93028 11.5961C3.9405 11.598 3.95079 11.5995 3.96114 11.6006L3.98228 11.6028C4.02104 11.6088 4.06046 11.6096 4.09943 11.605C4.11314 11.6039 4.12686 11.6034 4.14 11.6011L4.17257 11.5967H4.17543C4.18347 11.5952 4.19147 11.5935 4.19943 11.5916C4.20628 11.5905 4.21314 11.5894 4.22 11.5872C4.22343 11.5872 4.22686 11.586 4.23028 11.5849L4.24057 11.5827C4.27635 11.5731 4.31132 11.5607 4.34514 11.5458L4.37143 11.533C4.40264 11.5185 4.43231 11.5011 4.46 11.481L4.46457 11.4776C4.4722 11.4725 4.47946 11.4669 4.48628 11.4609C4.52125 11.4361 4.55275 11.407 4.58 11.3742C4.58681 11.3674 4.59311 11.3602 4.59886 11.3525L4.616 11.3318C4.63143 11.3111 4.64628 11.2887 4.66 11.2664C4.66571 11.2552 4.672 11.2446 4.67714 11.2334C4.6906 11.2082 4.70206 11.1821 4.71143 11.1552L4.71943 11.1345C4.72318 11.1249 4.72623 11.115 4.72857 11.1049L4.73314 11.0881C4.73486 11.0814 4.73714 11.0753 4.73771 11.0686L4.74114 11.0524C4.74526 11.0313 4.74831 11.01 4.75028 10.9887C4.752 10.9775 4.75257 10.968 4.75314 10.9579L4.75371 10.9244C4.75372 10.8969 4.752 10.8695 4.74857 10.8422C4.748 10.835 4.74743 10.8283 4.74514 10.821C4.74322 10.8009 4.73919 10.7811 4.73314 10.7618V10.7607L4.72743 10.74C4.72108 10.7155 4.71267 10.6916 4.70228 10.6685L4.68743 10.6355C4.67494 10.6084 4.66003 10.5824 4.64286 10.5578C4.62729 10.5317 4.6089 10.5074 4.588 10.4852L4.57428 10.4701L4.55314 10.4477C4.54294 10.4372 4.53227 10.4271 4.52114 10.4175L4.51657 10.4136C4.49273 10.3926 4.46712 10.3735 4.44 10.3566C4.36214 10.3095 4.27556 10.2779 4.1852 10.2635C4.09483 10.2491 4.00245 10.2522 3.91334 10.2728C3.82422 10.2933 3.74011 10.3308 3.6658 10.3831C3.5915 10.4354 3.52846 10.5015 3.48028 10.5776C3.43211 10.6538 3.39974 10.7385 3.38502 10.8268C3.37031 10.9152 3.37353 11.0055 3.39452 11.0927C3.41551 11.1798 3.45384 11.2621 3.50733 11.3348C3.56083 11.4074 3.62843 11.4691 3.70628 11.5162Z" fill="#FEFCFD"/>
158
+ <path d="M4.41599 27.1308C4.57957 27.1966 4.7247 27.2996 4.83931 27.4313C4.95391 27.563 5.03467 27.7196 5.07485 27.888C5.12718 28.1137 5.10446 28.3497 5.01 28.5618C4.91554 28.7739 4.75427 28.951 4.54971 29.0672C4.38534 29.1606 4.19902 29.2107 4.00893 29.2126C3.81884 29.2146 3.63148 29.1683 3.46514 29.0783C3.28811 28.9826 3.14067 28.8416 3.03828 28.671C2.94455 28.5133 2.89378 28.3347 2.89085 28.1524C2.88534 27.8859 2.98061 27.6268 3.15841 27.4247C3.3362 27.2227 3.584 27.092 3.85428 27.0576L3.89142 27.0537C4.07007 27.038 4.24996 27.0645 4.41599 27.1308ZM3.58228 27.5824L3.58171 27.5835C3.57042 27.5911 3.55955 27.5993 3.54914 27.6081C3.53715 27.6173 3.5257 27.6272 3.51485 27.6377C3.50257 27.6484 3.49111 27.66 3.48057 27.6723C3.45581 27.6988 3.43326 27.7272 3.41314 27.7573L3.41257 27.7584C3.39626 27.7823 3.38175 27.8073 3.36914 27.8333L3.36742 27.8366L3.35028 27.8741C3.34514 27.888 3.33942 27.9015 3.33542 27.9154C3.33104 27.9275 3.32723 27.9398 3.32399 27.9523L3.32114 27.9635C3.3175 27.9754 3.31482 27.9875 3.31314 27.9998C3.2929 28.1007 3.29622 28.2054 3.32285 28.3049C3.33932 28.3634 3.36292 28.4196 3.39314 28.4726C3.45737 28.5816 3.55124 28.671 3.66432 28.731C3.7774 28.791 3.90526 28.8191 4.03371 28.8123L4.05428 28.8112C4.06807 28.8102 4.08181 28.8086 4.09542 28.8062C4.10654 28.8047 4.1176 28.8029 4.12857 28.8006L4.13199 28.8C4.14628 28.7978 4.15942 28.7945 4.17314 28.7917L4.17885 28.79C4.18966 28.7873 4.20033 28.7841 4.21085 28.7805L4.22228 28.7766L4.26171 28.7626C4.27632 28.757 4.29062 28.7507 4.30457 28.7436C4.33081 28.7316 4.35603 28.7176 4.37999 28.7017L4.39142 28.6944L4.42285 28.6721L4.42399 28.6704L4.44628 28.6531V28.6514C4.45778 28.643 4.46849 28.6337 4.47828 28.6235C4.52739 28.5775 4.56936 28.5248 4.60285 28.467C4.60895 28.4569 4.61466 28.4467 4.61999 28.4362L4.62514 28.4251C4.62628 28.424 4.62628 28.4217 4.62742 28.42C4.63257 28.4089 4.63771 28.3988 4.64171 28.3871C4.652 28.3643 4.66041 28.3408 4.66685 28.3167L4.67485 28.287C4.67622 28.2829 4.67718 28.2786 4.67771 28.2742L4.68171 28.2541L4.68571 28.2312C4.68742 28.2245 4.68742 28.2172 4.68857 28.2105C4.69455 28.1623 4.69513 28.1135 4.69028 28.0652L4.68971 28.0579L4.68742 28.0378C4.68254 27.9894 4.67041 27.9419 4.65142 27.897C4.64734 27.8852 4.64257 27.8736 4.63714 27.8623L4.63657 27.8607C4.60467 27.7876 4.55978 27.7206 4.50399 27.6628L4.49371 27.6517L4.48285 27.6416C4.46106 27.6199 4.43735 27.6 4.41199 27.5824C4.38743 27.5645 4.36165 27.5482 4.33485 27.5337L4.33142 27.5321C4.32514 27.5282 4.31828 27.5248 4.31142 27.522C4.2945 27.513 4.27693 27.5051 4.25885 27.4985C4.24457 27.493 4.23142 27.4874 4.21657 27.4835C4.21599 27.4835 4.21542 27.4835 4.21485 27.4823C4.20415 27.4787 4.19328 27.4755 4.18228 27.4728L4.16457 27.4684C4.15609 27.4661 4.14751 27.4642 4.13885 27.4628C4.12907 27.4605 4.11914 27.4588 4.10914 27.4577C4.10571 27.4566 4.10285 27.4566 4.09942 27.4566C4.08005 27.4526 4.06035 27.4504 4.04057 27.4499C4.02571 27.4488 4.01085 27.4488 3.99599 27.4488C3.97596 27.4486 3.95593 27.4496 3.93599 27.4516L3.91828 27.4527L3.89314 27.4566C3.88914 27.4566 3.88514 27.4566 3.88114 27.4583C3.87208 27.4591 3.8631 27.4606 3.85428 27.4628L3.85314 27.4633C3.84406 27.4646 3.83508 27.4664 3.82628 27.4689C3.81572 27.4707 3.80538 27.4735 3.79542 27.4773C3.78742 27.479 3.78057 27.4818 3.77428 27.484C3.74509 27.4926 3.71678 27.5038 3.68971 27.5175C3.6512 27.5345 3.61509 27.5563 3.58228 27.5824Z" fill="#FDFDFD"/>
159
+ <path d="M4.9823 10.3354L13.832 6.18225C13.6737 6.35269 13.524 6.52705 13.3812 6.70363L5.10573 10.5875C5.07567 10.4988 5.0342 10.4138 4.9823 10.3354Z" fill="#FFF3BF"/>
160
+ <path d="M4.60914 10.5103C4.6287 10.534 4.64592 10.5594 4.66057 10.5863C4.67085 10.6025 4.67885 10.6187 4.68743 10.6355C4.70409 10.669 4.71748 10.704 4.72743 10.74L4.73314 10.7607V10.7623L4.74114 10.7959C4.74285 10.8043 4.74457 10.8126 4.74514 10.821C4.74945 10.8411 4.75194 10.8614 4.75257 10.8819C4.75365 10.8962 4.75403 10.9106 4.75371 10.925C4.75371 10.9361 4.75371 10.9468 4.75257 10.9585C4.75113 10.99 4.74731 11.0214 4.74114 11.0524C4.74 11.058 4.73943 11.0635 4.73771 11.0686C4.73541 11.0809 4.73235 11.093 4.72857 11.1049C4.72624 11.115 4.72318 11.1249 4.71943 11.1345C4.71771 11.1423 4.71485 11.149 4.712 11.1558C4.70277 11.1827 4.6913 11.2089 4.67771 11.234C4.65223 11.2851 4.61953 11.3326 4.58057 11.3748C4.56057 11.3972 4.53885 11.4184 4.516 11.438C4.51028 11.4435 4.50457 11.448 4.49828 11.4525L4.48685 11.4614L4.464 11.4782C4.4352 11.5 4.40395 11.5186 4.37085 11.5335L4.34514 11.5458C4.31132 11.5607 4.27635 11.5731 4.24057 11.5827L4.23028 11.5849C4.22695 11.586 4.2235 11.5868 4.22 11.5872L4.19943 11.5922C4.19151 11.5941 4.1835 11.5956 4.17543 11.5967H4.17257L4.14 11.6017C4.12668 11.603 4.11335 11.6041 4.1 11.605C4.08514 11.6067 4.07143 11.6067 4.056 11.6067C4.04457 11.6067 4.03314 11.6067 4.02171 11.6056L3.99771 11.6045C3.992 11.6045 3.98685 11.6034 3.98228 11.6028C3.965 11.6017 3.94782 11.5995 3.93085 11.5961C3.90525 11.5922 3.88002 11.5862 3.85543 11.5782H3.85428C3.83015 11.5713 3.80648 11.5629 3.78343 11.5531C3.66694 11.5051 3.56602 11.427 3.49146 11.3271C3.41691 11.2273 3.37153 11.1095 3.3602 10.9864C3.34886 10.8633 3.372 10.7395 3.42713 10.6283C3.48226 10.517 3.5673 10.4225 3.67314 10.355C3.80093 10.2729 3.95278 10.2342 4.10528 10.2448C4.25779 10.2554 4.4025 10.3147 4.51714 10.4136L4.52171 10.4175L4.55371 10.4477C4.56112 10.4548 4.56818 10.4623 4.57485 10.4701L4.58857 10.4852L4.60914 10.5103Z" fill="#1E205D"/>
161
+ <path d="M4.73717 11.07L4.74017 11.053C4.73922 11.0587 4.73802 11.0644 4.73657 11.07H4.73717Z" fill="#1E205D"/>
162
+ <path d="M4.48744 11.6487L4.62458 11.8515C4.48173 11.9354 4.3183 11.989 4.14801 12.0024L4.13144 11.9784L4.48744 11.6487Z" fill="#FEFCFD"/>
163
+ <path d="M4.44856 28.6515C4.44137 28.658 4.43395 28.6643 4.4263 28.6703L4.44856 28.6515Z" fill="#22245C"/>
164
+ <path d="M3.83144 8.67017L4.18401 8.82328C3.8729 9.24699 3.58007 9.68325 3.3063 10.1309C3.22516 10.2036 3.15487 10.2891 3.0983 10.3846V10.3858C3.04116 10.4824 2.99944 10.5864 2.97601 10.692V10.6931C1.40275 13.4716 0.572317 16.5935 0.561729 19.7695C0.457284 19.6785 0.331774 19.6137 0.196014 19.5806C0.24824 15.6676 1.51571 11.8625 3.8303 8.67017H3.83144Z" fill="#06C6FC"/>
165
+ <path d="M4.14742 12.0018C4.31714 11.9884 4.48056 11.9359 4.62399 11.851L4.76799 12.0644L8.67656 17.5571C8.61262 17.893 8.54462 18.2281 8.47256 18.5624L4.14742 12.0018Z" fill="#FF5359"/>
166
+ <path d="M7.45599 22.0596C6.59314 24.272 4.88742 25.9557 4.14056 26.6201V12.0036C4.14285 12.0036 4.14514 12.0036 4.14799 12.0024L8.47314 18.563C8.22342 19.7153 7.90285 20.9157 7.45599 22.0601V22.0596Z" fill="#15134A"/>
167
+ <path d="M4.14114 26.6201V27.0588C4.0587 27.0484 3.97535 27.0469 3.89257 27.0543L3.85486 27.0146V26.8649C3.91829 26.8135 4.016 26.7308 4.14114 26.6201Z" fill="#FEFCFD"/>
168
+ <path d="M4.11142 27.4584C4.12138 27.4601 4.13192 27.4613 4.14188 27.4643C4.13178 27.462 4.12162 27.4601 4.11142 27.4584Z" fill="#22245C"/>
169
+ <path d="M4.05486 12.0063C4.08343 12.0063 4.112 12.0052 4.14057 12.003V26.6201C4.016 26.7308 3.91772 26.8135 3.85486 26.8655V11.989C3.92057 12.0002 3.988 12.0063 4.05486 12.0063Z" fill="#F89120"/>
170
+ <path d="M3.99999 28.8129C3.89682 28.8134 3.79482 28.7915 3.70138 28.7487C3.60794 28.7059 3.52541 28.6434 3.45977 28.5655C3.39412 28.4877 3.34701 28.3965 3.32185 28.2987C3.29668 28.2009 3.29409 28.0988 3.31427 27.9998L3.32284 27.9624L3.3257 27.9512L3.33713 27.9149C3.34594 27.8879 3.35663 27.8616 3.36913 27.8361L3.37084 27.8327C3.3839 27.8068 3.39839 27.7816 3.41427 27.7573L3.41484 27.7567C3.42284 27.7444 3.43199 27.7321 3.44113 27.7198C3.44856 27.7103 3.45541 27.7014 3.46399 27.6919C3.46958 27.6848 3.47569 27.678 3.48227 27.6718L3.49427 27.6584C3.50153 27.6509 3.50916 27.6438 3.51713 27.6371L3.52056 27.6332C3.54025 27.615 3.56126 27.5982 3.58341 27.5829C3.58341 27.5818 3.58341 27.5818 3.58399 27.5824V27.5818L3.58627 27.5801C3.59598 27.5729 3.60609 27.5662 3.61656 27.56C3.62744 27.5526 3.63869 27.5457 3.65027 27.5393C3.66456 27.5315 3.67884 27.5237 3.69313 27.517C3.73612 27.4946 3.78209 27.4783 3.8297 27.4684C3.8383 27.4658 3.84709 27.464 3.85599 27.4628H3.8577L3.88399 27.4577C3.92172 27.4499 3.9603 27.4467 3.99884 27.4482C4.02615 27.4482 4.05343 27.4497 4.08056 27.4527L4.10227 27.4561C4.1242 27.4588 4.14595 27.4627 4.16742 27.4678L4.18456 27.4723C4.19599 27.4751 4.20741 27.4784 4.2177 27.4823L4.21941 27.4829C4.24379 27.4908 4.26765 27.5001 4.29084 27.5108L4.31427 27.5215C4.32113 27.5248 4.32799 27.5276 4.33427 27.5315L4.3377 27.5326C4.36494 27.5464 4.39077 27.5632 4.41484 27.5818C4.44045 27.5994 4.46435 27.6192 4.48627 27.641C4.4897 27.645 4.4937 27.6477 4.49656 27.6517L4.50684 27.6623C4.56299 27.7198 4.60792 27.7868 4.63942 27.8601L4.63999 27.8618C4.64543 27.873 4.6502 27.8846 4.65427 27.8964C4.65827 27.9048 4.66056 27.9132 4.66341 27.9221C4.67262 27.9472 4.67951 27.973 4.68399 27.9992C4.68854 28.0208 4.69178 28.0427 4.6937 28.0646L4.69541 28.0931C4.6977 28.1322 4.69656 28.1714 4.69141 28.2105L4.68913 28.2306L4.68456 28.253C4.68365 28.2599 4.68232 28.2668 4.68056 28.2736C4.67329 28.3127 4.6614 28.3507 4.64513 28.3871L4.63027 28.4195L4.62799 28.4251C4.62684 28.429 4.62456 28.4323 4.62227 28.4362C4.61768 28.4467 4.61233 28.4567 4.60627 28.4664C4.60073 28.4771 4.59386 28.4874 4.58684 28.4972C4.5626 28.5352 4.53425 28.5706 4.50227 28.6028C4.49599 28.6089 4.48913 28.6167 4.48113 28.6229L4.47541 28.6285L4.44913 28.6508L4.42742 28.6687L4.4257 28.6698L4.3937 28.6927L4.38341 28.6995L4.34799 28.7207C4.33493 28.7281 4.32159 28.735 4.30799 28.7414L4.3057 28.7425C4.27641 28.7573 4.24581 28.7694 4.21427 28.7788C4.20173 28.7832 4.18895 28.787 4.17599 28.79C4.16237 28.7932 4.14865 28.796 4.13484 28.7984C4.13427 28.7995 4.13313 28.7995 4.13199 28.7995C4.12064 28.8018 4.10921 28.8037 4.0977 28.8051L4.05713 28.8095C4.03821 28.8122 4.0191 28.8133 3.99999 28.8129Z" fill="#22245C"/>
171
+ <path d="M3.89058 11.5882C3.87887 11.5853 3.86657 11.5824 3.85544 11.5782L3.89058 11.5882Z" fill="#1E205D"/>
172
+ <path d="M3.85486 27.0146L3.892 27.0538L3.85486 27.0582V27.0146Z" fill="#FEFCFD"/>
173
+ <path d="M3.73886 11.9611C2.4681 14.4323 1.80905 17.161 1.81486 19.9271C1.80989 22.4399 2.35343 24.9249 3.40914 27.2158C3.54462 27.1327 3.69685 27.0791 3.85543 27.0588V11.989C3.81607 11.9818 3.77715 11.9725 3.73886 11.9611Z" fill="#272742"/>
174
+ <path d="M3.82799 27.4701L3.80342 27.4762C3.81143 27.4735 3.81964 27.4715 3.82799 27.4701Z" fill="#22245C"/>
175
+ <path d="M3.46628 29.0784C3.61343 29.1572 3.77699 29.2023 3.9446 29.2103C4.1122 29.2182 4.27945 29.1888 4.43371 29.1242C5.19324 30.3502 6.10218 31.4816 7.14056 32.4933C8.17757 33.5087 9.33648 34.3976 10.592 35.1405L10.7148 35.4439C10.116 35.9804 7.93085 34.6867 6.62342 33.226C6.31146 32.8754 6.00925 32.5167 5.71714 32.1502L5.71542 32.1485C4.73199 30.9214 3.89428 29.7054 3.89428 29.7054L3.46628 29.0784Z" fill="#069EBF"/>
176
+ <path d="M5.71486 32.148C4.78051 31.1168 3.93101 30.0149 3.17429 28.8527C3.25797 28.9432 3.35645 29.0195 3.46571 29.0784L3.89429 29.7049C3.89429 29.7049 4.73143 30.9209 5.71429 32.148H5.71486Z" fill="#069EBF"/>
177
+ <path d="M3.30573 10.1315C3.57939 9.68375 3.87222 9.24749 4.18344 8.82385L4.46858 8.94791C4.24549 9.24431 4.03632 9.55049 3.84173 9.8655C3.64173 9.90406 3.45544 9.99738 3.30573 10.1321V10.1315Z" fill="#FF5B32"/>
178
+ <path d="M0.562286 19.77C0.572525 16.5941 1.40256 13.4722 2.97543 10.6936C2.9248 10.9179 2.94871 11.1521 3.04368 11.3622C3.13865 11.5723 3.29972 11.7472 3.50343 11.8615C3.57771 11.904 3.65714 11.937 3.73886 11.961C2.46802 14.4324 1.80896 17.1613 1.81486 19.9276C1.80981 22.4406 2.35335 24.9258 3.40914 27.2169C3.172 27.3622 3.00229 27.5857 2.92971 27.8523C2.90229 27.9523 2.88971 28.0535 2.89257 28.154C2.48114 27.4533 1.86 26.3446 1.34571 25.1995V25.1984L1.34457 25.1968C0.936155 23.8354 0.685815 22.4334 0.598286 21.0173" fill="#ECE8E7"/>
179
+ <path d="M1.384 25.3253C1.50857 25.7031 1.944 26.8844 2.96915 28.5302C3.01713 28.6487 3.08641 28.7579 3.17372 28.8526C3.93075 30.0146 4.78024 31.1165 5.71429 32.148L5.716 32.1497C6.01086 32.5185 6.31943 32.8873 6.62172 33.2254C7.92972 34.6856 10.1149 35.9798 10.7137 35.4428C10.7349 35.4942 10.752 35.5367 10.7651 35.5669C10.8794 35.8429 10.8383 35.986 10.5794 36.2179C10.5074 36.2792 10.417 36.3161 10.3217 36.323C6.06915 33.9284 2.82629 30.0043 1.384 25.3253Z" fill="#03B9FF"/>
180
+ <path d="M0.54286 22.9431C0.697146 23.6344 0.996003 24.4234 1.34343 25.1963L1.344 25.1974L1.34457 25.1985C1.34754 25.2094 1.35078 25.2202 1.35429 25.2309L1.35715 25.2404C1.36186 25.2576 1.3672 25.2745 1.37315 25.2913L1.37829 25.3081C1.37943 25.3136 1.38172 25.3192 1.384 25.3248C2.82629 30.005 6.06972 33.9285 10.3223 36.3236C10.0234 36.3566 9.57772 36.2062 9.03086 35.9732H9.02972L9.02857 35.9721C7.9375 35.261 6.92111 34.446 5.99429 33.539C3.05159 30.6715 1.10994 26.9685 0.446289 22.9582L0.54286 22.9431Z" fill="#0165FE"/>
181
+ <path d="M2.97027 28.5307C1.94513 26.885 1.51027 25.7031 1.38513 25.3259L1.37942 25.3086L1.37427 25.2918L1.36913 25.275C1.36542 25.2637 1.36199 25.2524 1.35885 25.2409C1.35713 25.2376 1.35656 25.2342 1.35599 25.2314L1.34913 25.2108L1.3457 25.1996C1.85999 26.3441 2.48113 27.4528 2.89256 28.1535C2.89485 28.2821 2.92113 28.4095 2.97027 28.5307Z" fill="#ECE8E7"/>
182
+ <path d="M1.34458 25.1962C0.996581 24.4234 0.697724 23.6343 0.54401 22.9431L0.446867 22.9576C0.352219 22.3835 0.284339 21.8054 0.243439 21.2252C0.378296 21.1839 0.50001 21.1118 0.597724 21.0162C0.687439 22.4586 0.942867 23.8579 1.34458 25.1962Z" fill="#0165FE"/>
183
+ <path d="M0.564575 20.1735C0.562689 20.0669 0.561737 19.9604 0.561718 19.8538V19.77C0.458861 19.6795 0.333718 19.6141 0.196004 19.5806C0.193536 19.7514 0.193536 19.9222 0.196004 20.093C0.200004 20.4719 0.216004 20.8497 0.242861 21.2257C0.37829 21.1838 0.500004 21.1117 0.597718 21.0162C0.580575 20.7368 0.569147 20.4562 0.564575 20.174V20.1735Z" fill="#06C6FC"/>
184
+ </g>
185
+ <defs>
186
+ <linearGradient id="paint0_linear_146_780" x1="21.0069" y1="34.7337" x2="28.8229" y2="34.7337" gradientUnits="userSpaceOnUse">
187
+ <stop stop-color="#9D21A4"/>
188
+ <stop offset="0.52" stop-color="#F51C90"/>
189
+ <stop offset="1" stop-color="#9801CA"/>
190
+ </linearGradient>
191
+ <linearGradient id="paint1_linear_146_780" x1="23.5937" y1="11.1603" x2="32.6097" y2="27.1402" gradientUnits="userSpaceOnUse">
192
+ <stop stop-color="#FF7300"/>
193
+ <stop offset="0.681" stop-color="#FFB933"/>
194
+ <stop offset="1" stop-color="#FFDB4C"/>
195
+ </linearGradient>
196
+ <radialGradient id="paint2_radial_146_780" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.832 15.209) scale(5.86617 5.73275)">
197
+ <stop stop-color="#202646"/>
198
+ <stop offset="0.349" stop-color="#0025C6"/>
199
+ <stop offset="0.833" stop-color="#182948"/>
200
+ </radialGradient>
201
+ <linearGradient id="paint3_linear_146_780" x1="17.188" y1="24.3586" x2="22.6563" y2="18.7629" gradientUnits="userSpaceOnUse">
202
+ <stop stop-color="#F1D003"/>
203
+ <stop offset="0.561" stop-color="#EB583F"/>
204
+ <stop offset="0.923" stop-color="#E4D494"/>
205
+ </linearGradient>
206
+ <linearGradient id="paint4_linear_146_780" x1="26.1114" y1="20.0534" x2="22.351" y2="16.2053" gradientUnits="userSpaceOnUse">
207
+ <stop stop-color="#FBB03B"/>
208
+ <stop offset="0.168" stop-color="#F3BC58"/>
209
+ <stop offset="0.441" stop-color="#E8CD82"/>
210
+ <stop offset="0.581" stop-color="#E4D492"/>
211
+ <stop offset="1" stop-color="#E4D494"/>
212
+ </linearGradient>
213
+ <linearGradient id="paint5_linear_146_780" x1="23.6091" y1="16.748" x2="23.6091" y2="14.635" gradientUnits="userSpaceOnUse">
214
+ <stop stop-color="#C7B299"/>
215
+ <stop offset="0.723" stop-color="#F89B23"/>
216
+ </linearGradient>
217
+ <radialGradient id="paint6_radial_146_780" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8331 15.209) scale(5.86617 5.73275)">
218
+ <stop stop-color="#202646"/>
219
+ <stop offset="0.349" stop-color="#0025C6"/>
220
+ <stop offset="0.833" stop-color="#182948"/>
221
+ </radialGradient>
222
+ <linearGradient id="paint7_linear_146_780" x1="20.9303" y1="34.4213" x2="30.2486" y2="34.4213" gradientUnits="userSpaceOnUse">
223
+ <stop stop-color="#9800CE"/>
224
+ <stop offset="0.479" stop-color="#FF288B"/>
225
+ <stop offset="1" stop-color="#F84690"/>
226
+ </linearGradient>
227
+ <linearGradient id="paint8_linear_146_780" x1="20.9154" y1="37.2752" x2="25.5743" y2="37.2752" gradientUnits="userSpaceOnUse">
228
+ <stop stop-color="#F84690"/>
229
+ <stop offset="0.52" stop-color="#FF288B"/>
230
+ <stop offset="1" stop-color="#9800CE"/>
231
+ </linearGradient>
232
+ <linearGradient id="paint9_linear_146_780" x1="19.9977" y1="8.09619" x2="19.9977" y2="15.5733" gradientUnits="userSpaceOnUse">
233
+ <stop stop-color="#FF7300"/>
234
+ <stop offset="0.958" stop-color="#F7AA46"/>
235
+ <stop offset="1" stop-color="#F7AD49"/>
236
+ </linearGradient>
237
+ <linearGradient id="paint10_linear_146_780" x1="17.5903" y1="26.4257" x2="22.732" y2="26.4257" gradientUnits="userSpaceOnUse">
238
+ <stop stop-color="#FF7300"/>
239
+ <stop offset="0.681" stop-color="#FFB933"/>
240
+ <stop offset="1" stop-color="#FFDB4C"/>
241
+ </linearGradient>
242
+ <linearGradient id="paint11_linear_146_780" x1="17.5903" y1="30.381" x2="22.732" y2="30.381" gradientUnits="userSpaceOnUse">
243
+ <stop stop-color="#FF7300"/>
244
+ <stop offset="0.681" stop-color="#FFB933"/>
245
+ <stop offset="1" stop-color="#FFDB4C"/>
246
+ </linearGradient>
247
+ <radialGradient id="paint12_radial_146_780" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.3292 15.6482) scale(4.57974 4.47559)">
248
+ <stop stop-color="#202646"/>
249
+ <stop offset="0.349" stop-color="#0025C6"/>
250
+ <stop offset="0.833" stop-color="#182948"/>
251
+ </radialGradient>
252
+ <radialGradient id="paint13_radial_146_780" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.3309 15.6482) scale(4.57974 4.4756)">
253
+ <stop stop-color="#202646"/>
254
+ <stop offset="0.349" stop-color="#0025C6"/>
255
+ <stop offset="0.833" stop-color="#182948"/>
256
+ </radialGradient>
257
+ <linearGradient id="paint14_linear_146_780" x1="14.424" y1="37.2752" x2="19.0829" y2="37.2752" gradientUnits="userSpaceOnUse">
258
+ <stop stop-color="#F84690"/>
259
+ <stop offset="0.52" stop-color="#FF288B"/>
260
+ <stop offset="1" stop-color="#9800CE"/>
261
+ </linearGradient>
262
+ <linearGradient id="paint15_linear_146_780" x1="11.1743" y1="34.7337" x2="18.9903" y2="34.7337" gradientUnits="userSpaceOnUse">
263
+ <stop stop-color="#9D21A4"/>
264
+ <stop offset="0.52" stop-color="#F51C90"/>
265
+ <stop offset="1" stop-color="#9801CA"/>
266
+ </linearGradient>
267
+ <linearGradient id="paint16_linear_146_780" x1="13.5194" y1="14.4953" x2="19.2449" y2="17.6999" gradientUnits="userSpaceOnUse">
268
+ <stop stop-color="#F1D003"/>
269
+ <stop offset="0.561" stop-color="#EB583F"/>
270
+ <stop offset="0.923" stop-color="#848D73"/>
271
+ </linearGradient>
272
+ <linearGradient id="paint17_linear_146_780" x1="22.692" y1="5.99391" x2="17.3501" y2="21.0123" gradientUnits="userSpaceOnUse">
273
+ <stop stop-color="#F1D003"/>
274
+ <stop offset="0.609" stop-color="#E65B42"/>
275
+ <stop offset="1" stop-color="#818E93"/>
276
+ </linearGradient>
277
+ <linearGradient id="paint18_linear_146_780" x1="9.7497" y1="34.4213" x2="19.068" y2="34.4213" gradientUnits="userSpaceOnUse">
278
+ <stop stop-color="#F84690"/>
279
+ <stop offset="0.52" stop-color="#FF288B"/>
280
+ <stop offset="1" stop-color="#9800CE"/>
281
+ </linearGradient>
282
+ <linearGradient id="paint19_linear_146_780" x1="15.696" y1="27.2242" x2="19.0828" y2="27.2242" gradientUnits="userSpaceOnUse">
283
+ <stop stop-color="#FF8F01"/>
284
+ <stop offset="0.561" stop-color="#FF9800"/>
285
+ <stop offset="1" stop-color="#FFAF00"/>
286
+ </linearGradient>
287
+ <linearGradient id="paint20_linear_146_780" x1="15.1131" y1="23.7231" x2="24.8817" y2="23.7231" gradientUnits="userSpaceOnUse">
288
+ <stop stop-color="#FF7300"/>
289
+ <stop offset="0.681" stop-color="#FFB933"/>
290
+ <stop offset="1" stop-color="#FFDB4C"/>
291
+ </linearGradient>
292
+ <linearGradient id="paint21_linear_146_780" x1="14.1623" y1="29.1007" x2="22.1983" y2="29.1007" gradientUnits="userSpaceOnUse">
293
+ <stop stop-color="#FF8F01"/>
294
+ <stop offset="0.561" stop-color="#FF9800"/>
295
+ <stop offset="1" stop-color="#FFAF00"/>
296
+ </linearGradient>
297
+ <linearGradient id="paint22_linear_146_780" x1="6.01657" y1="27.422" x2="10.3152" y2="19.8038" gradientUnits="userSpaceOnUse">
298
+ <stop stop-color="#009BB6"/>
299
+ <stop offset="0.561" stop-color="#2D6DB2"/>
300
+ <stop offset="0.923" stop-color="#585CA4"/>
301
+ </linearGradient>
302
+ <clipPath id="clip0_146_780">
303
+ <rect width="40" height="38" fill="white"/>
304
+ </clipPath>
305
+ </defs>
306
+ </svg>