tsparticles 1.34.1 → 1.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4007) hide show
  1. package/167.js +1775 -0
  2. package/Core/Canvas.d.ts +0 -1
  3. package/Core/Canvas.js +37 -56
  4. package/Core/Container.js +66 -81
  5. package/Core/Interfaces/IParticle.d.ts +11 -15
  6. package/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
  7. package/Core/Interfaces/IParticleRetinaProps.js +2 -0
  8. package/Core/Interfaces/IParticleRoll.d.ts +9 -0
  9. package/Core/Interfaces/IParticleRoll.js +2 -0
  10. package/Core/Interfaces/IParticleUpdater.d.ts +3 -0
  11. package/Core/Interfaces/IParticleWobble.d.ts +4 -0
  12. package/Core/Interfaces/IParticleWobble.js +2 -0
  13. package/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
  14. package/Core/Interfaces/IParticlesFrequencies.js +2 -0
  15. package/Core/Interfaces/index.d.ts +3 -2
  16. package/Core/Interfaces/index.js +3 -2
  17. package/Core/Loader.js +66 -83
  18. package/Core/Particle/Mover.js +14 -13
  19. package/Core/Particle/Vector.js +2 -2
  20. package/Core/Particle.d.ts +16 -28
  21. package/Core/Particle.js +76 -280
  22. package/Core/Particles.d.ts +2 -3
  23. package/Core/Particles.js +16 -14
  24. package/Core/Retina.js +12 -14
  25. package/Enums/Modes/RollMode.d.ts +5 -0
  26. package/Enums/Modes/RollMode.js +9 -0
  27. package/Enums/Modes/index.d.ts +1 -0
  28. package/Enums/Modes/index.js +1 -0
  29. package/Interactions/External/Attract/Attractor.js +5 -5
  30. package/Interactions/External/Bounce/Bouncer.js +7 -7
  31. package/Interactions/External/Bubble/Bubbler.js +21 -20
  32. package/Interactions/External/Connect/Connector.js +1 -1
  33. package/Interactions/External/Grab/Grabber.js +4 -4
  34. package/Interactions/External/Repulse/Repulser.js +8 -8
  35. package/Interactions/External/Trail/TrailMaker.js +2 -2
  36. package/Interactions/Particles/Attract/Attractor.js +2 -2
  37. package/Interactions/Particles/Collisions/Collider.js +4 -4
  38. package/Interactions/Particles/Links/LinkInstance.js +11 -11
  39. package/Interactions/Particles/Links/Linker.js +6 -6
  40. package/Interactions/Particles/Links/index.js +1 -1
  41. package/Options/Classes/AnimatableColor.d.ts +2 -2
  42. package/Options/Classes/AnimatableColor.js +8 -2
  43. package/Options/Classes/AnimatableGradient.js +1 -1
  44. package/Options/Classes/ColorAnimation.js +1 -1
  45. package/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
  46. package/Options/Classes/Interactivity/Modes/Trail.js +1 -1
  47. package/Options/Classes/ManualParticle.js +1 -1
  48. package/Options/Classes/Options.d.ts +4 -1
  49. package/Options/Classes/Options.js +25 -12
  50. package/Options/Classes/OptionsColor.d.ts +1 -1
  51. package/Options/Classes/OptionsColor.js +2 -1
  52. package/Options/Classes/Particles/Destroy/Split.js +1 -1
  53. package/Options/Classes/Particles/Move/Move.js +3 -3
  54. package/Options/Classes/Particles/Move/Path/Path.js +1 -1
  55. package/Options/Classes/Particles/Move/Spin.js +2 -2
  56. package/Options/Classes/Particles/Opacity/Opacity.js +1 -1
  57. package/Options/Classes/Particles/ParticlesOptions.js +2 -2
  58. package/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
  59. package/Options/Classes/Particles/Roll/Roll.js +6 -1
  60. package/Options/Classes/Particles/Shape/Shape.js +5 -5
  61. package/Options/Classes/Particles/Size/Size.js +1 -1
  62. package/Options/Classes/Particles/Wobble/Wobble.js +2 -2
  63. package/Options/Classes/Responsive.js +1 -1
  64. package/Options/Classes/Theme/Theme.js +1 -1
  65. package/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
  66. package/Options/Classes/Theme/ThemeDefault.js +7 -3
  67. package/Options/Classes/ValueWithRandom.js +1 -1
  68. package/Options/Interfaces/IOptions.d.ts +3 -3
  69. package/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
  70. package/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
  71. package/Plugins/Absorbers/AbsorberInstance.js +9 -8
  72. package/Plugins/Absorbers/Absorbers.js +2 -2
  73. package/Plugins/Absorbers/plugin.js +1 -1
  74. package/Plugins/Emitters/EmitterInstance.js +10 -10
  75. package/Plugins/Emitters/Emitters.js +3 -3
  76. package/Plugins/Emitters/Options/Classes/Emitter.js +1 -1
  77. package/Plugins/Emitters/Options/Classes/EmitterRate.js +2 -2
  78. package/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
  79. package/Plugins/Emitters/plugin.js +1 -1
  80. package/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
  81. package/Plugins/PolygonMask/Options/Classes/DrawStroke.js +1 -1
  82. package/Plugins/PolygonMask/Options/Classes/PolygonMask.js +1 -1
  83. package/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
  84. package/Plugins/PolygonMask/PolygonMaskInstance.js +53 -178
  85. package/Plugins/PolygonMask/pathseg.d.ts +0 -0
  86. package/Plugins/PolygonMask/pathseg.js +1532 -0
  87. package/Plugins/PolygonMask/plugin.d.ts +1 -1
  88. package/Plugins/PolygonMask/plugin.js +23 -1
  89. package/Plugins/PolygonMask/types.d.ts +8 -0
  90. package/Plugins/PolygonMask/types.js +2 -0
  91. package/Plugins/PolygonMask/utils.d.ts +11 -0
  92. package/Plugins/PolygonMask/utils.js +121 -0
  93. package/README.md +0 -6
  94. package/Shapes/Image/ImageDrawer.js +68 -83
  95. package/Shapes/Image/Utils.js +19 -30
  96. package/Shapes/Text/TextDrawer.js +15 -26
  97. package/Updaters/Angle/AngleUpdater.d.ts +4 -0
  98. package/Updaters/Angle/AngleUpdater.js +46 -10
  99. package/Updaters/Angle/index.js +1 -1
  100. package/Updaters/Color/ColorUpdater.d.ts +4 -0
  101. package/Updaters/Color/ColorUpdater.js +10 -1
  102. package/Updaters/Color/index.js +1 -1
  103. package/Updaters/Life/LifeUpdater.d.ts +1 -0
  104. package/Updaters/Life/LifeUpdater.js +7 -5
  105. package/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
  106. package/Updaters/Opacity/OpacityUpdater.js +46 -1
  107. package/Updaters/Opacity/index.js +1 -1
  108. package/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
  109. package/Updaters/OutModes/OutOfCanvasUpdater.js +9 -7
  110. package/Updaters/OutModes/Utils.js +2 -2
  111. package/Updaters/Roll/RollUpdater.d.ts +1 -0
  112. package/Updaters/Roll/RollUpdater.js +42 -6
  113. package/Updaters/Size/SizeUpdater.d.ts +1 -0
  114. package/Updaters/Size/SizeUpdater.js +3 -1
  115. package/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
  116. package/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
  117. package/Updaters/StrokeColor/index.js +1 -1
  118. package/Updaters/Tilt/TiltUpdater.d.ts +4 -0
  119. package/Updaters/Tilt/TiltUpdater.js +37 -0
  120. package/Updaters/Tilt/index.js +1 -1
  121. package/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
  122. package/Updaters/Wobble/WobbleUpdater.js +31 -11
  123. package/Updaters/Wobble/index.js +1 -1
  124. package/Utils/CanvasUtils.d.ts +2 -0
  125. package/Utils/CanvasUtils.js +36 -24
  126. package/Utils/Circle.js +1 -1
  127. package/Utils/ColorUtils.js +7 -7
  128. package/Utils/EventListeners.d.ts +2 -0
  129. package/Utils/EventListeners.js +16 -1
  130. package/Utils/NumberUtils.js +4 -4
  131. package/Utils/QuadTree.js +1 -1
  132. package/Utils/Utils.d.ts +1 -27
  133. package/Utils/Utils.js +11 -22
  134. package/browser/Core/Canvas.d.ts +0 -1
  135. package/browser/Core/Canvas.js +17 -36
  136. package/browser/Core/Container.js +64 -79
  137. package/browser/Core/Interfaces/IParticle.d.ts +11 -15
  138. package/browser/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
  139. package/browser/Core/Interfaces/IParticleRetinaProps.js +1 -0
  140. package/browser/Core/Interfaces/IParticleRoll.d.ts +9 -0
  141. package/browser/Core/Interfaces/IParticleRoll.js +1 -0
  142. package/browser/Core/Interfaces/IParticleUpdater.d.ts +3 -0
  143. package/browser/Core/Interfaces/IParticleWobble.d.ts +4 -0
  144. package/browser/Core/Interfaces/IParticleWobble.js +1 -0
  145. package/browser/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
  146. package/browser/Core/Interfaces/IParticlesFrequencies.js +1 -0
  147. package/browser/Core/Interfaces/index.d.ts +3 -2
  148. package/browser/Core/Interfaces/index.js +3 -2
  149. package/browser/Core/Loader.js +66 -83
  150. package/browser/Core/Particle/Mover.js +8 -7
  151. package/browser/Core/Particle/Vector.js +2 -2
  152. package/browser/Core/Particle.d.ts +16 -28
  153. package/browser/Core/Particle.js +60 -264
  154. package/browser/Core/Particles.d.ts +2 -3
  155. package/browser/Core/Particles.js +11 -9
  156. package/browser/Core/Retina.js +10 -12
  157. package/browser/Enums/Modes/RollMode.d.ts +5 -0
  158. package/browser/Enums/Modes/RollMode.js +6 -0
  159. package/browser/Enums/Modes/index.d.ts +1 -0
  160. package/browser/Enums/Modes/index.js +1 -0
  161. package/browser/Interactions/External/Bounce/Bouncer.js +1 -1
  162. package/browser/Interactions/External/Bubble/Bubbler.js +4 -3
  163. package/browser/Interactions/External/Repulse/Repulser.js +1 -1
  164. package/browser/Interactions/Particles/Attract/Attractor.js +1 -1
  165. package/browser/Interactions/Particles/Links/LinkInstance.js +2 -2
  166. package/browser/Interactions/Particles/Links/Linker.js +1 -1
  167. package/browser/Options/Classes/AnimatableColor.d.ts +2 -2
  168. package/browser/Options/Classes/AnimatableColor.js +8 -2
  169. package/browser/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
  170. package/browser/Options/Classes/Options.d.ts +4 -1
  171. package/browser/Options/Classes/Options.js +25 -12
  172. package/browser/Options/Classes/OptionsColor.d.ts +1 -1
  173. package/browser/Options/Classes/OptionsColor.js +2 -1
  174. package/browser/Options/Classes/Particles/ParticlesOptions.js +1 -1
  175. package/browser/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
  176. package/browser/Options/Classes/Particles/Roll/Roll.js +5 -0
  177. package/browser/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
  178. package/browser/Options/Classes/Theme/ThemeDefault.js +6 -2
  179. package/browser/Options/Interfaces/IOptions.d.ts +3 -3
  180. package/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
  181. package/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
  182. package/browser/Plugins/Absorbers/AbsorberInstance.js +2 -1
  183. package/browser/Plugins/Emitters/EmitterInstance.js +1 -1
  184. package/browser/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
  185. package/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
  186. package/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
  187. package/browser/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
  188. package/browser/Plugins/PolygonMask/pathseg.d.ts +0 -0
  189. package/browser/Plugins/PolygonMask/pathseg.js +1532 -0
  190. package/browser/Plugins/PolygonMask/plugin.d.ts +1 -1
  191. package/browser/Plugins/PolygonMask/plugin.js +4 -1
  192. package/browser/Plugins/PolygonMask/types.d.ts +8 -0
  193. package/browser/Plugins/PolygonMask/types.js +1 -0
  194. package/browser/Plugins/PolygonMask/utils.d.ts +11 -0
  195. package/browser/Plugins/PolygonMask/utils.js +113 -0
  196. package/browser/Shapes/Image/ImageDrawer.js +67 -82
  197. package/browser/Shapes/Image/Utils.js +17 -28
  198. package/browser/Shapes/Text/TextDrawer.js +14 -25
  199. package/browser/Updaters/Angle/AngleUpdater.d.ts +4 -0
  200. package/browser/Updaters/Angle/AngleUpdater.js +47 -11
  201. package/browser/Updaters/Angle/index.js +1 -1
  202. package/browser/Updaters/Color/ColorUpdater.d.ts +4 -0
  203. package/browser/Updaters/Color/ColorUpdater.js +10 -1
  204. package/browser/Updaters/Color/index.js +1 -1
  205. package/browser/Updaters/Life/LifeUpdater.d.ts +1 -0
  206. package/browser/Updaters/Life/LifeUpdater.js +2 -0
  207. package/browser/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
  208. package/browser/Updaters/Opacity/OpacityUpdater.js +47 -2
  209. package/browser/Updaters/Opacity/index.js +1 -1
  210. package/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
  211. package/browser/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
  212. package/browser/Updaters/Roll/RollUpdater.d.ts +1 -0
  213. package/browser/Updaters/Roll/RollUpdater.js +42 -6
  214. package/browser/Updaters/Size/SizeUpdater.d.ts +1 -0
  215. package/browser/Updaters/Size/SizeUpdater.js +2 -0
  216. package/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
  217. package/browser/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
  218. package/browser/Updaters/StrokeColor/index.js +1 -1
  219. package/browser/Updaters/Tilt/TiltUpdater.d.ts +4 -0
  220. package/browser/Updaters/Tilt/TiltUpdater.js +38 -1
  221. package/browser/Updaters/Tilt/index.js +1 -1
  222. package/browser/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
  223. package/browser/Updaters/Wobble/WobbleUpdater.js +31 -11
  224. package/browser/Updaters/Wobble/index.js +1 -1
  225. package/browser/Utils/CanvasUtils.d.ts +2 -0
  226. package/browser/Utils/CanvasUtils.js +19 -8
  227. package/browser/Utils/EventListeners.d.ts +2 -0
  228. package/browser/Utils/EventListeners.js +15 -0
  229. package/browser/Utils/NumberUtils.js +4 -4
  230. package/browser/Utils/Utils.d.ts +1 -27
  231. package/browser/Utils/Utils.js +6 -17
  232. package/browser/index.d.ts +5 -5
  233. package/browser/index.js +5 -5
  234. package/browser/index.slim.d.ts +5 -5
  235. package/browser/index.slim.js +5 -5
  236. package/browser/main.js +8 -25
  237. package/esm/Core/Canvas.d.ts +0 -1
  238. package/esm/Core/Canvas.js +17 -36
  239. package/esm/Core/Container.js +64 -79
  240. package/esm/Core/Interfaces/IParticle.d.ts +11 -15
  241. package/esm/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
  242. package/esm/Core/Interfaces/IParticleRetinaProps.js +1 -0
  243. package/esm/Core/Interfaces/IParticleRoll.d.ts +9 -0
  244. package/esm/Core/Interfaces/IParticleRoll.js +1 -0
  245. package/esm/Core/Interfaces/IParticleUpdater.d.ts +3 -0
  246. package/esm/Core/Interfaces/IParticleWobble.d.ts +4 -0
  247. package/esm/Core/Interfaces/IParticleWobble.js +1 -0
  248. package/esm/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
  249. package/esm/Core/Interfaces/IParticlesFrequencies.js +1 -0
  250. package/esm/Core/Interfaces/index.d.ts +3 -2
  251. package/esm/Core/Interfaces/index.js +3 -2
  252. package/esm/Core/Loader.js +66 -83
  253. package/esm/Core/Particle/Mover.js +8 -7
  254. package/esm/Core/Particle/Vector.js +2 -2
  255. package/esm/Core/Particle.d.ts +16 -28
  256. package/esm/Core/Particle.js +60 -264
  257. package/esm/Core/Particles.d.ts +2 -3
  258. package/esm/Core/Particles.js +11 -9
  259. package/esm/Core/Retina.js +10 -12
  260. package/esm/Enums/Modes/RollMode.d.ts +5 -0
  261. package/esm/Enums/Modes/RollMode.js +6 -0
  262. package/esm/Enums/Modes/index.d.ts +1 -0
  263. package/esm/Enums/Modes/index.js +1 -0
  264. package/esm/Interactions/External/Bounce/Bouncer.js +1 -1
  265. package/esm/Interactions/External/Bubble/Bubbler.js +4 -3
  266. package/esm/Interactions/External/Repulse/Repulser.js +1 -1
  267. package/esm/Interactions/Particles/Attract/Attractor.js +1 -1
  268. package/esm/Interactions/Particles/Links/LinkInstance.js +2 -2
  269. package/esm/Interactions/Particles/Links/Linker.js +1 -1
  270. package/esm/Options/Classes/AnimatableColor.d.ts +2 -2
  271. package/esm/Options/Classes/AnimatableColor.js +8 -2
  272. package/esm/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
  273. package/esm/Options/Classes/Options.d.ts +4 -1
  274. package/esm/Options/Classes/Options.js +25 -12
  275. package/esm/Options/Classes/OptionsColor.d.ts +1 -1
  276. package/esm/Options/Classes/OptionsColor.js +2 -1
  277. package/esm/Options/Classes/Particles/ParticlesOptions.js +1 -1
  278. package/esm/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
  279. package/esm/Options/Classes/Particles/Roll/Roll.js +5 -0
  280. package/esm/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
  281. package/esm/Options/Classes/Theme/ThemeDefault.js +6 -2
  282. package/esm/Options/Interfaces/IOptions.d.ts +3 -3
  283. package/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
  284. package/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
  285. package/esm/Plugins/Absorbers/AbsorberInstance.js +2 -1
  286. package/esm/Plugins/Emitters/EmitterInstance.js +1 -1
  287. package/esm/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
  288. package/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
  289. package/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
  290. package/esm/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
  291. package/esm/Plugins/PolygonMask/pathseg.d.ts +0 -0
  292. package/esm/Plugins/PolygonMask/pathseg.js +1532 -0
  293. package/esm/Plugins/PolygonMask/plugin.d.ts +1 -1
  294. package/esm/Plugins/PolygonMask/plugin.js +4 -1
  295. package/esm/Plugins/PolygonMask/types.d.ts +8 -0
  296. package/esm/Plugins/PolygonMask/types.js +1 -0
  297. package/esm/Plugins/PolygonMask/utils.d.ts +11 -0
  298. package/esm/Plugins/PolygonMask/utils.js +113 -0
  299. package/esm/Shapes/Image/ImageDrawer.js +67 -82
  300. package/esm/Shapes/Image/Utils.js +17 -28
  301. package/esm/Shapes/Text/TextDrawer.js +14 -25
  302. package/esm/Updaters/Angle/AngleUpdater.d.ts +4 -0
  303. package/esm/Updaters/Angle/AngleUpdater.js +47 -11
  304. package/esm/Updaters/Angle/index.js +1 -1
  305. package/esm/Updaters/Color/ColorUpdater.d.ts +4 -0
  306. package/esm/Updaters/Color/ColorUpdater.js +10 -1
  307. package/esm/Updaters/Color/index.js +1 -1
  308. package/esm/Updaters/Life/LifeUpdater.d.ts +1 -0
  309. package/esm/Updaters/Life/LifeUpdater.js +2 -0
  310. package/esm/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
  311. package/esm/Updaters/Opacity/OpacityUpdater.js +47 -2
  312. package/esm/Updaters/Opacity/index.js +1 -1
  313. package/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
  314. package/esm/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
  315. package/esm/Updaters/Roll/RollUpdater.d.ts +1 -0
  316. package/esm/Updaters/Roll/RollUpdater.js +42 -6
  317. package/esm/Updaters/Size/SizeUpdater.d.ts +1 -0
  318. package/esm/Updaters/Size/SizeUpdater.js +2 -0
  319. package/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
  320. package/esm/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
  321. package/esm/Updaters/StrokeColor/index.js +1 -1
  322. package/esm/Updaters/Tilt/TiltUpdater.d.ts +4 -0
  323. package/esm/Updaters/Tilt/TiltUpdater.js +38 -1
  324. package/esm/Updaters/Tilt/index.js +1 -1
  325. package/esm/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
  326. package/esm/Updaters/Wobble/WobbleUpdater.js +31 -11
  327. package/esm/Updaters/Wobble/index.js +1 -1
  328. package/esm/Utils/CanvasUtils.d.ts +2 -0
  329. package/esm/Utils/CanvasUtils.js +19 -8
  330. package/esm/Utils/EventListeners.d.ts +2 -0
  331. package/esm/Utils/EventListeners.js +15 -0
  332. package/esm/Utils/NumberUtils.js +4 -4
  333. package/esm/Utils/Utils.d.ts +1 -27
  334. package/esm/Utils/Utils.js +6 -17
  335. package/esm/index.d.ts +5 -5
  336. package/esm/index.js +5 -5
  337. package/esm/index.slim.d.ts +5 -5
  338. package/esm/index.slim.js +5 -5
  339. package/esm/main.js +8 -25
  340. package/full.js +4 -4
  341. package/index.d.ts +5 -5
  342. package/index.js +7 -23
  343. package/index.slim.d.ts +5 -5
  344. package/index.slim.js +7 -23
  345. package/main.js +8 -25
  346. package/package.json +1 -4
  347. package/report.html +2 -2
  348. package/report.slim.html +2 -2
  349. package/slim.js +27 -27
  350. package/tsparticles.js +1139 -1132
  351. package/tsparticles.min.js +2 -2
  352. package/tsparticles.slim.js +830 -1035
  353. package/tsparticles.slim.min.js +2 -2
  354. package/ts3.4/Core/Canvas.d.ts +0 -36
  355. package/ts3.4/Core/Container.d.ts +0 -64
  356. package/ts3.4/Core/ExternalInteractorBase.d.ts +0 -12
  357. package/ts3.4/Core/FrameManager.d.ts +0 -6
  358. package/ts3.4/Core/InteractionManager.d.ts +0 -11
  359. package/ts3.4/Core/Interfaces/Colors.d.ts +0 -33
  360. package/ts3.4/Core/Interfaces/Gradients.d.ts +0 -21
  361. package/ts3.4/Core/Interfaces/IAttract.d.ts +0 -7
  362. package/ts3.4/Core/Interfaces/IBounds.d.ts +0 -6
  363. package/ts3.4/Core/Interfaces/IBubble.d.ts +0 -4
  364. package/ts3.4/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  365. package/ts3.4/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  366. package/ts3.4/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  367. package/ts3.4/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  368. package/ts3.4/Core/Interfaces/ICoordinates.d.ts +0 -7
  369. package/ts3.4/Core/Interfaces/IDelta.d.ts +0 -4
  370. package/ts3.4/Core/Interfaces/IDimension.d.ts +0 -4
  371. package/ts3.4/Core/Interfaces/IDistance.d.ts +0 -4
  372. package/ts3.4/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  373. package/ts3.4/Core/Interfaces/IInteractor.d.ts +0 -6
  374. package/ts3.4/Core/Interfaces/IMouseData.d.ts +0 -9
  375. package/ts3.4/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  376. package/ts3.4/Core/Interfaces/IParticle.d.ts +0 -59
  377. package/ts3.4/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  378. package/ts3.4/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  379. package/ts3.4/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  380. package/ts3.4/Core/Interfaces/IParticleLife.d.ts +0 -7
  381. package/ts3.4/Core/Interfaces/IParticleLoops.d.ts +0 -4
  382. package/ts3.4/Core/Interfaces/IParticleSpin.d.ts +0 -9
  383. package/ts3.4/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  384. package/ts3.4/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  385. package/ts3.4/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  386. package/ts3.4/Core/Interfaces/IPlugin.d.ts +0 -11
  387. package/ts3.4/Core/Interfaces/IRangeValue.d.ts +0 -4
  388. package/ts3.4/Core/Interfaces/IRectSideResult.d.ts +0 -5
  389. package/ts3.4/Core/Interfaces/IRepulse.d.ts +0 -7
  390. package/ts3.4/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  391. package/ts3.4/Core/Interfaces/IShapeValues.d.ts +0 -8
  392. package/ts3.4/Core/Interfaces/index.d.ts +0 -33
  393. package/ts3.4/Core/Loader.d.ts +0 -14
  394. package/ts3.4/Core/Particle/Mover.d.ts +0 -13
  395. package/ts3.4/Core/Particle/Vector.d.ts +0 -27
  396. package/ts3.4/Core/Particle/Vector3d.d.ts +0 -18
  397. package/ts3.4/Core/Particle.d.ts +0 -84
  398. package/ts3.4/Core/Particles.d.ts +0 -45
  399. package/ts3.4/Core/ParticlesInteractorBase.d.ts +0 -12
  400. package/ts3.4/Core/Retina.d.ts +0 -26
  401. package/ts3.4/Enums/AnimationStatus.d.ts +0 -4
  402. package/ts3.4/Enums/Directions/MoveDirection.d.ts +0 -12
  403. package/ts3.4/Enums/Directions/OutModeDirection.d.ts +0 -6
  404. package/ts3.4/Enums/Directions/RotateDirection.d.ts +0 -6
  405. package/ts3.4/Enums/Directions/TiltDirection.d.ts +0 -6
  406. package/ts3.4/Enums/Directions/index.d.ts +0 -4
  407. package/ts3.4/Enums/InteractivityDetect.d.ts +0 -5
  408. package/ts3.4/Enums/Modes/ClickMode.d.ts +0 -9
  409. package/ts3.4/Enums/Modes/CollisionMode.d.ts +0 -5
  410. package/ts3.4/Enums/Modes/DestroyMode.d.ts +0 -4
  411. package/ts3.4/Enums/Modes/DivMode.d.ts +0 -5
  412. package/ts3.4/Enums/Modes/HoverMode.d.ts +0 -11
  413. package/ts3.4/Enums/Modes/OutMode.d.ts +0 -10
  414. package/ts3.4/Enums/Modes/SizeMode.d.ts +0 -4
  415. package/ts3.4/Enums/Modes/ThemeMode.d.ts +0 -5
  416. package/ts3.4/Enums/Modes/index.d.ts +0 -8
  417. package/ts3.4/Enums/Types/AlterType.d.ts +0 -4
  418. package/ts3.4/Enums/Types/DestroyType.d.ts +0 -5
  419. package/ts3.4/Enums/Types/DivType.d.ts +0 -4
  420. package/ts3.4/Enums/Types/EasingType.d.ts +0 -10
  421. package/ts3.4/Enums/Types/GradientType.d.ts +0 -5
  422. package/ts3.4/Enums/Types/InteractorType.d.ts +0 -4
  423. package/ts3.4/Enums/Types/OrbitType.d.ts +0 -4
  424. package/ts3.4/Enums/Types/ShapeType.d.ts +0 -13
  425. package/ts3.4/Enums/Types/StartValueType.d.ts +0 -5
  426. package/ts3.4/Enums/Types/index.d.ts +0 -9
  427. package/ts3.4/Enums/index.d.ts +0 -5
  428. package/ts3.4/Interactions/External/Attract/Attractor.d.ts +0 -11
  429. package/ts3.4/Interactions/External/Attract/index.d.ts +0 -2
  430. package/ts3.4/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  431. package/ts3.4/Interactions/External/Bounce/index.d.ts +0 -2
  432. package/ts3.4/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  433. package/ts3.4/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  434. package/ts3.4/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  435. package/ts3.4/Interactions/External/Bubble/index.d.ts +0 -2
  436. package/ts3.4/Interactions/External/Connect/Connector.d.ts +0 -8
  437. package/ts3.4/Interactions/External/Connect/index.d.ts +0 -2
  438. package/ts3.4/Interactions/External/Grab/Grabber.d.ts +0 -8
  439. package/ts3.4/Interactions/External/Grab/index.d.ts +0 -2
  440. package/ts3.4/Interactions/External/Repulse/Repulser.d.ts +0 -12
  441. package/ts3.4/Interactions/External/Repulse/index.d.ts +0 -2
  442. package/ts3.4/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  443. package/ts3.4/Interactions/External/Trail/index.d.ts +0 -2
  444. package/ts3.4/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  445. package/ts3.4/Interactions/Particles/Attract/index.d.ts +0 -2
  446. package/ts3.4/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  447. package/ts3.4/Interactions/Particles/Collisions/index.d.ts +0 -2
  448. package/ts3.4/Interactions/Particles/Links/ILink.d.ts +0 -9
  449. package/ts3.4/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  450. package/ts3.4/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  451. package/ts3.4/Interactions/Particles/Links/Linker.d.ts +0 -11
  452. package/ts3.4/Interactions/Particles/Links/index.d.ts +0 -3
  453. package/ts3.4/Interactions/Particles/Links/plugin.d.ts +0 -2
  454. package/ts3.4/Options/Classes/AnimatableColor.d.ts +0 -11
  455. package/ts3.4/Options/Classes/AnimatableGradient.d.ts +0 -53
  456. package/ts3.4/Options/Classes/AnimationOptions.d.ts +0 -11
  457. package/ts3.4/Options/Classes/Background/Background.d.ts +0 -14
  458. package/ts3.4/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  459. package/ts3.4/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  460. package/ts3.4/Options/Classes/ColorAnimation.d.ts +0 -12
  461. package/ts3.4/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  462. package/ts3.4/Options/Classes/HslAnimation.d.ts +0 -11
  463. package/ts3.4/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  464. package/ts3.4/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
  465. package/ts3.4/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
  466. package/ts3.4/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  467. package/ts3.4/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  468. package/ts3.4/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
  469. package/ts3.4/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  470. package/ts3.4/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  471. package/ts3.4/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  472. package/ts3.4/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  473. package/ts3.4/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
  474. package/ts3.4/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
  475. package/ts3.4/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  476. package/ts3.4/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
  477. package/ts3.4/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  478. package/ts3.4/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  479. package/ts3.4/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  480. package/ts3.4/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  481. package/ts3.4/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  482. package/ts3.4/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  483. package/ts3.4/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
  484. package/ts3.4/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
  485. package/ts3.4/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  486. package/ts3.4/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  487. package/ts3.4/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
  488. package/ts3.4/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
  489. package/ts3.4/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  490. package/ts3.4/Options/Classes/ManualParticle.d.ts +0 -10
  491. package/ts3.4/Options/Classes/Motion/Motion.d.ts +0 -10
  492. package/ts3.4/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  493. package/ts3.4/Options/Classes/Options.d.ts +0 -40
  494. package/ts3.4/Options/Classes/OptionsColor.d.ts +0 -10
  495. package/ts3.4/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  496. package/ts3.4/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  497. package/ts3.4/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  498. package/ts3.4/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  499. package/ts3.4/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  500. package/ts3.4/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  501. package/ts3.4/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  502. package/ts3.4/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  503. package/ts3.4/Options/Classes/Particles/Life/Life.d.ts +0 -12
  504. package/ts3.4/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  505. package/ts3.4/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  506. package/ts3.4/Options/Classes/Particles/Links/Links.d.ts +0 -22
  507. package/ts3.4/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  508. package/ts3.4/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  509. package/ts3.4/Options/Classes/Particles/Move/Attract.d.ts +0 -13
  510. package/ts3.4/Options/Classes/Particles/Move/Move.d.ts +0 -39
  511. package/ts3.4/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  512. package/ts3.4/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  513. package/ts3.4/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  514. package/ts3.4/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  515. package/ts3.4/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  516. package/ts3.4/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  517. package/ts3.4/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  518. package/ts3.4/Options/Classes/Particles/Number/Density.d.ts +0 -11
  519. package/ts3.4/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
  520. package/ts3.4/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
  521. package/ts3.4/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
  522. package/ts3.4/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  523. package/ts3.4/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  524. package/ts3.4/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
  525. package/ts3.4/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  526. package/ts3.4/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  527. package/ts3.4/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  528. package/ts3.4/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  529. package/ts3.4/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  530. package/ts3.4/Options/Classes/Particles/Shadow.d.ts +0 -13
  531. package/ts3.4/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
  532. package/ts3.4/Options/Classes/Particles/Size/Size.d.ts +0 -11
  533. package/ts3.4/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
  534. package/ts3.4/Options/Classes/Particles/Stroke.d.ts +0 -11
  535. package/ts3.4/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  536. package/ts3.4/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  537. package/ts3.4/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  538. package/ts3.4/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  539. package/ts3.4/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  540. package/ts3.4/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  541. package/ts3.4/Options/Classes/Random.d.ts +0 -9
  542. package/ts3.4/Options/Classes/Responsive.d.ts +0 -10
  543. package/ts3.4/Options/Classes/Theme/Theme.d.ts +0 -12
  544. package/ts3.4/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  545. package/ts3.4/Options/Classes/ValueWithRandom.d.ts +0 -10
  546. package/ts3.4/Options/Interfaces/Background/IBackground.d.ts +0 -9
  547. package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  548. package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  549. package/ts3.4/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  550. package/ts3.4/Options/Interfaces/IAnimatable.d.ts +0 -4
  551. package/ts3.4/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  552. package/ts3.4/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  553. package/ts3.4/Options/Interfaces/IAnimation.d.ts +0 -6
  554. package/ts3.4/Options/Interfaces/IColorAnimation.d.ts +0 -5
  555. package/ts3.4/Options/Interfaces/IHslAnimation.d.ts +0 -6
  556. package/ts3.4/Options/Interfaces/IManualParticle.d.ts +0 -7
  557. package/ts3.4/Options/Interfaces/IOptionLoader.d.ts +0 -4
  558. package/ts3.4/Options/Interfaces/IOptions.d.ts +0 -33
  559. package/ts3.4/Options/Interfaces/IOptionsColor.d.ts +0 -2
  560. package/ts3.4/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  561. package/ts3.4/Options/Interfaces/IRandom.d.ts +0 -4
  562. package/ts3.4/Options/Interfaces/IResponsive.d.ts +0 -6
  563. package/ts3.4/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  564. package/ts3.4/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  565. package/ts3.4/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  566. package/ts3.4/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  567. package/ts3.4/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  568. package/ts3.4/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  569. package/ts3.4/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  570. package/ts3.4/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  571. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  572. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  573. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  574. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  575. package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  576. package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  577. package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  578. package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  579. package/ts3.4/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  580. package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  581. package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  582. package/ts3.4/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  583. package/ts3.4/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  584. package/ts3.4/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  585. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  586. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  587. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  588. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  589. package/ts3.4/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  590. package/ts3.4/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  591. package/ts3.4/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  592. package/ts3.4/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  593. package/ts3.4/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  594. package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  595. package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  596. package/ts3.4/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  597. package/ts3.4/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  598. package/ts3.4/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  599. package/ts3.4/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  600. package/ts3.4/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  601. package/ts3.4/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  602. package/ts3.4/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  603. package/ts3.4/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  604. package/ts3.4/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  605. package/ts3.4/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  606. package/ts3.4/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  607. package/ts3.4/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  608. package/ts3.4/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  609. package/ts3.4/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  610. package/ts3.4/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  611. package/ts3.4/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  612. package/ts3.4/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  613. package/ts3.4/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  614. package/ts3.4/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  615. package/ts3.4/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  616. package/ts3.4/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  617. package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  618. package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  619. package/ts3.4/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  620. package/ts3.4/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  621. package/ts3.4/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  622. package/ts3.4/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  623. package/ts3.4/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  624. package/ts3.4/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  625. package/ts3.4/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  626. package/ts3.4/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  627. package/ts3.4/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  628. package/ts3.4/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  629. package/ts3.4/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  630. package/ts3.4/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  631. package/ts3.4/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  632. package/ts3.4/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  633. package/ts3.4/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  634. package/ts3.4/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  635. package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  636. package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  637. package/ts3.4/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  638. package/ts3.4/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  639. package/ts3.4/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  640. package/ts3.4/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  641. package/ts3.4/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  642. package/ts3.4/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  643. package/ts3.4/Plugins/Absorbers/Absorbers.d.ts +0 -25
  644. package/ts3.4/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  645. package/ts3.4/Plugins/Absorbers/Enums/index.d.ts +0 -1
  646. package/ts3.4/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  647. package/ts3.4/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  648. package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  649. package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  650. package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  651. package/ts3.4/Plugins/Absorbers/plugin.d.ts +0 -2
  652. package/ts3.4/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  653. package/ts3.4/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  654. package/ts3.4/Plugins/Emitters/Emitters.d.ts +0 -24
  655. package/ts3.4/Plugins/Emitters/EmittersMain.d.ts +0 -5
  656. package/ts3.4/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  657. package/ts3.4/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  658. package/ts3.4/Plugins/Emitters/Enums/index.d.ts +0 -2
  659. package/ts3.4/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  660. package/ts3.4/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  661. package/ts3.4/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  662. package/ts3.4/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  663. package/ts3.4/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  664. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  665. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  666. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  667. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  668. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  669. package/ts3.4/Plugins/Emitters/ShapeManager.d.ts +0 -6
  670. package/ts3.4/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  671. package/ts3.4/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  672. package/ts3.4/Plugins/Emitters/plugin.d.ts +0 -3
  673. package/ts3.4/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  674. package/ts3.4/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  675. package/ts3.4/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  676. package/ts3.4/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  677. package/ts3.4/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  678. package/ts3.4/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
  679. package/ts3.4/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  680. package/ts3.4/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  681. package/ts3.4/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  682. package/ts3.4/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  683. package/ts3.4/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
  684. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  685. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  686. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  687. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  688. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  689. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  690. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  691. package/ts3.4/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  692. package/ts3.4/Plugins/PolygonMask/plugin.d.ts +0 -2
  693. package/ts3.4/Shapes/Circle/CircleDrawer.d.ts +0 -5
  694. package/ts3.4/Shapes/Circle/index.d.ts +0 -2
  695. package/ts3.4/Shapes/Image/ImageDrawer.d.ts +0 -22
  696. package/ts3.4/Shapes/Image/Utils.d.ts +0 -25
  697. package/ts3.4/Shapes/Image/index.d.ts +0 -2
  698. package/ts3.4/Shapes/Line/LineDrawer.d.ts +0 -5
  699. package/ts3.4/Shapes/Line/index.d.ts +0 -2
  700. package/ts3.4/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  701. package/ts3.4/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  702. package/ts3.4/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  703. package/ts3.4/Shapes/Polygon/index.d.ts +0 -4
  704. package/ts3.4/Shapes/Square/SquareDrawer.d.ts +0 -5
  705. package/ts3.4/Shapes/Square/index.d.ts +0 -2
  706. package/ts3.4/Shapes/Star/StarDrawer.d.ts +0 -5
  707. package/ts3.4/Shapes/Star/index.d.ts +0 -2
  708. package/ts3.4/Shapes/Text/TextDrawer.d.ts +0 -8
  709. package/ts3.4/Shapes/Text/index.d.ts +0 -2
  710. package/ts3.4/Types/ParticlesGroups.d.ts +0 -4
  711. package/ts3.4/Types/PathOptions.d.ts +0 -3
  712. package/ts3.4/Types/RangeValue.d.ts +0 -2
  713. package/ts3.4/Types/RecursivePartial.d.ts +0 -3
  714. package/ts3.4/Types/ShapeData.d.ts +0 -5
  715. package/ts3.4/Types/ShapeDrawerFunctions.d.ts +0 -11
  716. package/ts3.4/Types/SingleOrMultiple.d.ts +0 -1
  717. package/ts3.4/Types/index.d.ts +0 -6
  718. package/ts3.4/Updaters/Angle/AngleUpdater.d.ts +0 -6
  719. package/ts3.4/Updaters/Angle/index.d.ts +0 -2
  720. package/ts3.4/Updaters/Color/ColorUpdater.d.ts +0 -6
  721. package/ts3.4/Updaters/Color/index.d.ts +0 -2
  722. package/ts3.4/Updaters/Life/LifeUpdater.d.ts +0 -9
  723. package/ts3.4/Updaters/Life/index.d.ts +0 -2
  724. package/ts3.4/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  725. package/ts3.4/Updaters/Opacity/index.d.ts +0 -2
  726. package/ts3.4/Updaters/OutModes/IBounceData.d.ts +0 -12
  727. package/ts3.4/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  728. package/ts3.4/Updaters/OutModes/Utils.d.ts +0 -3
  729. package/ts3.4/Updaters/OutModes/index.d.ts +0 -2
  730. package/ts3.4/Updaters/Roll/RollUpdater.d.ts +0 -6
  731. package/ts3.4/Updaters/Roll/index.d.ts +0 -2
  732. package/ts3.4/Updaters/Size/SizeUpdater.d.ts +0 -6
  733. package/ts3.4/Updaters/Size/index.d.ts +0 -2
  734. package/ts3.4/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  735. package/ts3.4/Updaters/StrokeColor/index.d.ts +0 -2
  736. package/ts3.4/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  737. package/ts3.4/Updaters/Tilt/index.d.ts +0 -2
  738. package/ts3.4/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  739. package/ts3.4/Updaters/Wobble/index.d.ts +0 -2
  740. package/ts3.4/Utils/CanvasUtils.d.ts +0 -18
  741. package/ts3.4/Utils/Circle.d.ts +0 -8
  742. package/ts3.4/Utils/CircleWarp.d.ts +0 -10
  743. package/ts3.4/Utils/ColorUtils.d.ts +0 -26
  744. package/ts3.4/Utils/Constants.d.ts +0 -18
  745. package/ts3.4/Utils/EventListeners.d.ts +0 -30
  746. package/ts3.4/Utils/NumberUtils.d.ts +0 -23
  747. package/ts3.4/Utils/Plugins.d.ts +0 -22
  748. package/ts3.4/Utils/Point.d.ts +0 -7
  749. package/ts3.4/Utils/QuadTree.d.ts +0 -23
  750. package/ts3.4/Utils/Range.d.ts +0 -7
  751. package/ts3.4/Utils/Rectangle.d.ts +0 -9
  752. package/ts3.4/Utils/Utils.d.ts +0 -65
  753. package/ts3.4/Utils/index.d.ts +0 -13
  754. package/ts3.4/browser/Core/Canvas.d.ts +0 -36
  755. package/ts3.4/browser/Core/Container.d.ts +0 -64
  756. package/ts3.4/browser/Core/ExternalInteractorBase.d.ts +0 -12
  757. package/ts3.4/browser/Core/FrameManager.d.ts +0 -6
  758. package/ts3.4/browser/Core/InteractionManager.d.ts +0 -11
  759. package/ts3.4/browser/Core/Interfaces/Colors.d.ts +0 -33
  760. package/ts3.4/browser/Core/Interfaces/Gradients.d.ts +0 -21
  761. package/ts3.4/browser/Core/Interfaces/IAttract.d.ts +0 -7
  762. package/ts3.4/browser/Core/Interfaces/IBounds.d.ts +0 -6
  763. package/ts3.4/browser/Core/Interfaces/IBubble.d.ts +0 -4
  764. package/ts3.4/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  765. package/ts3.4/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  766. package/ts3.4/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  767. package/ts3.4/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  768. package/ts3.4/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
  769. package/ts3.4/browser/Core/Interfaces/IDelta.d.ts +0 -4
  770. package/ts3.4/browser/Core/Interfaces/IDimension.d.ts +0 -4
  771. package/ts3.4/browser/Core/Interfaces/IDistance.d.ts +0 -4
  772. package/ts3.4/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  773. package/ts3.4/browser/Core/Interfaces/IInteractor.d.ts +0 -6
  774. package/ts3.4/browser/Core/Interfaces/IMouseData.d.ts +0 -9
  775. package/ts3.4/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  776. package/ts3.4/browser/Core/Interfaces/IParticle.d.ts +0 -59
  777. package/ts3.4/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  778. package/ts3.4/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  779. package/ts3.4/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  780. package/ts3.4/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
  781. package/ts3.4/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
  782. package/ts3.4/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
  783. package/ts3.4/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  784. package/ts3.4/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  785. package/ts3.4/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  786. package/ts3.4/browser/Core/Interfaces/IPlugin.d.ts +0 -11
  787. package/ts3.4/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
  788. package/ts3.4/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
  789. package/ts3.4/browser/Core/Interfaces/IRepulse.d.ts +0 -7
  790. package/ts3.4/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  791. package/ts3.4/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
  792. package/ts3.4/browser/Core/Interfaces/index.d.ts +0 -33
  793. package/ts3.4/browser/Core/Loader.d.ts +0 -14
  794. package/ts3.4/browser/Core/Particle/Mover.d.ts +0 -13
  795. package/ts3.4/browser/Core/Particle/Vector.d.ts +0 -27
  796. package/ts3.4/browser/Core/Particle/Vector3d.d.ts +0 -18
  797. package/ts3.4/browser/Core/Particle.d.ts +0 -84
  798. package/ts3.4/browser/Core/Particles.d.ts +0 -45
  799. package/ts3.4/browser/Core/ParticlesInteractorBase.d.ts +0 -12
  800. package/ts3.4/browser/Core/Retina.d.ts +0 -26
  801. package/ts3.4/browser/Enums/AnimationStatus.d.ts +0 -4
  802. package/ts3.4/browser/Enums/Directions/MoveDirection.d.ts +0 -12
  803. package/ts3.4/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
  804. package/ts3.4/browser/Enums/Directions/RotateDirection.d.ts +0 -6
  805. package/ts3.4/browser/Enums/Directions/TiltDirection.d.ts +0 -6
  806. package/ts3.4/browser/Enums/Directions/index.d.ts +0 -4
  807. package/ts3.4/browser/Enums/InteractivityDetect.d.ts +0 -5
  808. package/ts3.4/browser/Enums/Modes/ClickMode.d.ts +0 -9
  809. package/ts3.4/browser/Enums/Modes/CollisionMode.d.ts +0 -5
  810. package/ts3.4/browser/Enums/Modes/DestroyMode.d.ts +0 -4
  811. package/ts3.4/browser/Enums/Modes/DivMode.d.ts +0 -5
  812. package/ts3.4/browser/Enums/Modes/HoverMode.d.ts +0 -11
  813. package/ts3.4/browser/Enums/Modes/OutMode.d.ts +0 -10
  814. package/ts3.4/browser/Enums/Modes/SizeMode.d.ts +0 -4
  815. package/ts3.4/browser/Enums/Modes/ThemeMode.d.ts +0 -5
  816. package/ts3.4/browser/Enums/Modes/index.d.ts +0 -8
  817. package/ts3.4/browser/Enums/Types/AlterType.d.ts +0 -4
  818. package/ts3.4/browser/Enums/Types/DestroyType.d.ts +0 -5
  819. package/ts3.4/browser/Enums/Types/DivType.d.ts +0 -4
  820. package/ts3.4/browser/Enums/Types/EasingType.d.ts +0 -10
  821. package/ts3.4/browser/Enums/Types/GradientType.d.ts +0 -5
  822. package/ts3.4/browser/Enums/Types/InteractorType.d.ts +0 -4
  823. package/ts3.4/browser/Enums/Types/OrbitType.d.ts +0 -4
  824. package/ts3.4/browser/Enums/Types/ShapeType.d.ts +0 -13
  825. package/ts3.4/browser/Enums/Types/StartValueType.d.ts +0 -5
  826. package/ts3.4/browser/Enums/Types/index.d.ts +0 -9
  827. package/ts3.4/browser/Enums/index.d.ts +0 -5
  828. package/ts3.4/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
  829. package/ts3.4/browser/Interactions/External/Attract/index.d.ts +0 -2
  830. package/ts3.4/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  831. package/ts3.4/browser/Interactions/External/Bounce/index.d.ts +0 -2
  832. package/ts3.4/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  833. package/ts3.4/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  834. package/ts3.4/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  835. package/ts3.4/browser/Interactions/External/Bubble/index.d.ts +0 -2
  836. package/ts3.4/browser/Interactions/External/Connect/Connector.d.ts +0 -8
  837. package/ts3.4/browser/Interactions/External/Connect/index.d.ts +0 -2
  838. package/ts3.4/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
  839. package/ts3.4/browser/Interactions/External/Grab/index.d.ts +0 -2
  840. package/ts3.4/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
  841. package/ts3.4/browser/Interactions/External/Repulse/index.d.ts +0 -2
  842. package/ts3.4/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  843. package/ts3.4/browser/Interactions/External/Trail/index.d.ts +0 -2
  844. package/ts3.4/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  845. package/ts3.4/browser/Interactions/Particles/Attract/index.d.ts +0 -2
  846. package/ts3.4/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  847. package/ts3.4/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
  848. package/ts3.4/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
  849. package/ts3.4/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  850. package/ts3.4/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  851. package/ts3.4/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
  852. package/ts3.4/browser/Interactions/Particles/Links/index.d.ts +0 -3
  853. package/ts3.4/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
  854. package/ts3.4/browser/Options/Classes/AnimatableColor.d.ts +0 -11
  855. package/ts3.4/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
  856. package/ts3.4/browser/Options/Classes/AnimationOptions.d.ts +0 -11
  857. package/ts3.4/browser/Options/Classes/Background/Background.d.ts +0 -14
  858. package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  859. package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  860. package/ts3.4/browser/Options/Classes/ColorAnimation.d.ts +0 -12
  861. package/ts3.4/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  862. package/ts3.4/browser/Options/Classes/HslAnimation.d.ts +0 -11
  863. package/ts3.4/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  864. package/ts3.4/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
  865. package/ts3.4/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
  866. package/ts3.4/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  867. package/ts3.4/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  868. package/ts3.4/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
  869. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  870. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  871. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  872. package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  873. package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
  874. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
  875. package/ts3.4/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  876. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
  877. package/ts3.4/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  878. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  879. package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  880. package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  881. package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  882. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  883. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
  884. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
  885. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  886. package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  887. package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
  888. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
  889. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  890. package/ts3.4/browser/Options/Classes/ManualParticle.d.ts +0 -10
  891. package/ts3.4/browser/Options/Classes/Motion/Motion.d.ts +0 -10
  892. package/ts3.4/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  893. package/ts3.4/browser/Options/Classes/Options.d.ts +0 -40
  894. package/ts3.4/browser/Options/Classes/OptionsColor.d.ts +0 -10
  895. package/ts3.4/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  896. package/ts3.4/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  897. package/ts3.4/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  898. package/ts3.4/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  899. package/ts3.4/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  900. package/ts3.4/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  901. package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  902. package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  903. package/ts3.4/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
  904. package/ts3.4/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  905. package/ts3.4/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  906. package/ts3.4/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
  907. package/ts3.4/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  908. package/ts3.4/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  909. package/ts3.4/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -13
  910. package/ts3.4/browser/Options/Classes/Particles/Move/Move.d.ts +0 -39
  911. package/ts3.4/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  912. package/ts3.4/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  913. package/ts3.4/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  914. package/ts3.4/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  915. package/ts3.4/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  916. package/ts3.4/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  917. package/ts3.4/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  918. package/ts3.4/browser/Options/Classes/Particles/Number/Density.d.ts +0 -11
  919. package/ts3.4/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
  920. package/ts3.4/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
  921. package/ts3.4/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
  922. package/ts3.4/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  923. package/ts3.4/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  924. package/ts3.4/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
  925. package/ts3.4/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  926. package/ts3.4/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  927. package/ts3.4/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  928. package/ts3.4/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  929. package/ts3.4/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  930. package/ts3.4/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
  931. package/ts3.4/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
  932. package/ts3.4/browser/Options/Classes/Particles/Size/Size.d.ts +0 -11
  933. package/ts3.4/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
  934. package/ts3.4/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
  935. package/ts3.4/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  936. package/ts3.4/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  937. package/ts3.4/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  938. package/ts3.4/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  939. package/ts3.4/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  940. package/ts3.4/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  941. package/ts3.4/browser/Options/Classes/Random.d.ts +0 -9
  942. package/ts3.4/browser/Options/Classes/Responsive.d.ts +0 -10
  943. package/ts3.4/browser/Options/Classes/Theme/Theme.d.ts +0 -12
  944. package/ts3.4/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  945. package/ts3.4/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
  946. package/ts3.4/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
  947. package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  948. package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  949. package/ts3.4/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  950. package/ts3.4/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
  951. package/ts3.4/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  952. package/ts3.4/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  953. package/ts3.4/browser/Options/Interfaces/IAnimation.d.ts +0 -6
  954. package/ts3.4/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
  955. package/ts3.4/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
  956. package/ts3.4/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
  957. package/ts3.4/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
  958. package/ts3.4/browser/Options/Interfaces/IOptions.d.ts +0 -33
  959. package/ts3.4/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
  960. package/ts3.4/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  961. package/ts3.4/browser/Options/Interfaces/IRandom.d.ts +0 -4
  962. package/ts3.4/browser/Options/Interfaces/IResponsive.d.ts +0 -6
  963. package/ts3.4/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  964. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  965. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  966. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  967. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  968. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  969. package/ts3.4/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  970. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  971. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  972. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  973. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  974. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  975. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  976. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  977. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  978. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  979. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  980. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  981. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  982. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  983. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  984. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  985. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  986. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  987. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  988. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  989. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  990. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  991. package/ts3.4/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  992. package/ts3.4/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  993. package/ts3.4/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  994. package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  995. package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  996. package/ts3.4/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  997. package/ts3.4/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  998. package/ts3.4/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  999. package/ts3.4/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  1000. package/ts3.4/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  1001. package/ts3.4/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  1002. package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  1003. package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  1004. package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  1005. package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  1006. package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  1007. package/ts3.4/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  1008. package/ts3.4/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  1009. package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  1010. package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  1011. package/ts3.4/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  1012. package/ts3.4/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  1013. package/ts3.4/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  1014. package/ts3.4/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  1015. package/ts3.4/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  1016. package/ts3.4/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  1017. package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  1018. package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  1019. package/ts3.4/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  1020. package/ts3.4/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  1021. package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  1022. package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  1023. package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  1024. package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  1025. package/ts3.4/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  1026. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  1027. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  1028. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  1029. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  1030. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  1031. package/ts3.4/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  1032. package/ts3.4/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  1033. package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  1034. package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  1035. package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  1036. package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  1037. package/ts3.4/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  1038. package/ts3.4/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  1039. package/ts3.4/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  1040. package/ts3.4/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  1041. package/ts3.4/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  1042. package/ts3.4/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  1043. package/ts3.4/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
  1044. package/ts3.4/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  1045. package/ts3.4/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
  1046. package/ts3.4/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  1047. package/ts3.4/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  1048. package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  1049. package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  1050. package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  1051. package/ts3.4/browser/Plugins/Absorbers/plugin.d.ts +0 -2
  1052. package/ts3.4/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  1053. package/ts3.4/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  1054. package/ts3.4/browser/Plugins/Emitters/Emitters.d.ts +0 -24
  1055. package/ts3.4/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
  1056. package/ts3.4/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  1057. package/ts3.4/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  1058. package/ts3.4/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
  1059. package/ts3.4/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  1060. package/ts3.4/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  1061. package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  1062. package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  1063. package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  1064. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  1065. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  1066. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  1067. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  1068. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  1069. package/ts3.4/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
  1070. package/ts3.4/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  1071. package/ts3.4/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  1072. package/ts3.4/browser/Plugins/Emitters/plugin.d.ts +0 -3
  1073. package/ts3.4/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  1074. package/ts3.4/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  1075. package/ts3.4/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  1076. package/ts3.4/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  1077. package/ts3.4/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  1078. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
  1079. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  1080. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  1081. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  1082. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  1083. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
  1084. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  1085. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  1086. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  1087. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  1088. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  1089. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  1090. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  1091. package/ts3.4/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  1092. package/ts3.4/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
  1093. package/ts3.4/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
  1094. package/ts3.4/browser/Shapes/Circle/index.d.ts +0 -2
  1095. package/ts3.4/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
  1096. package/ts3.4/browser/Shapes/Image/Utils.d.ts +0 -25
  1097. package/ts3.4/browser/Shapes/Image/index.d.ts +0 -2
  1098. package/ts3.4/browser/Shapes/Line/LineDrawer.d.ts +0 -5
  1099. package/ts3.4/browser/Shapes/Line/index.d.ts +0 -2
  1100. package/ts3.4/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  1101. package/ts3.4/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  1102. package/ts3.4/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  1103. package/ts3.4/browser/Shapes/Polygon/index.d.ts +0 -4
  1104. package/ts3.4/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
  1105. package/ts3.4/browser/Shapes/Square/index.d.ts +0 -2
  1106. package/ts3.4/browser/Shapes/Star/StarDrawer.d.ts +0 -5
  1107. package/ts3.4/browser/Shapes/Star/index.d.ts +0 -2
  1108. package/ts3.4/browser/Shapes/Text/TextDrawer.d.ts +0 -8
  1109. package/ts3.4/browser/Shapes/Text/index.d.ts +0 -2
  1110. package/ts3.4/browser/Types/ParticlesGroups.d.ts +0 -4
  1111. package/ts3.4/browser/Types/PathOptions.d.ts +0 -3
  1112. package/ts3.4/browser/Types/RangeValue.d.ts +0 -2
  1113. package/ts3.4/browser/Types/RecursivePartial.d.ts +0 -3
  1114. package/ts3.4/browser/Types/ShapeData.d.ts +0 -5
  1115. package/ts3.4/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
  1116. package/ts3.4/browser/Types/SingleOrMultiple.d.ts +0 -1
  1117. package/ts3.4/browser/Types/index.d.ts +0 -6
  1118. package/ts3.4/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
  1119. package/ts3.4/browser/Updaters/Angle/index.d.ts +0 -2
  1120. package/ts3.4/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
  1121. package/ts3.4/browser/Updaters/Color/index.d.ts +0 -2
  1122. package/ts3.4/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
  1123. package/ts3.4/browser/Updaters/Life/index.d.ts +0 -2
  1124. package/ts3.4/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  1125. package/ts3.4/browser/Updaters/Opacity/index.d.ts +0 -2
  1126. package/ts3.4/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
  1127. package/ts3.4/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  1128. package/ts3.4/browser/Updaters/OutModes/Utils.d.ts +0 -3
  1129. package/ts3.4/browser/Updaters/OutModes/index.d.ts +0 -2
  1130. package/ts3.4/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
  1131. package/ts3.4/browser/Updaters/Roll/index.d.ts +0 -2
  1132. package/ts3.4/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
  1133. package/ts3.4/browser/Updaters/Size/index.d.ts +0 -2
  1134. package/ts3.4/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  1135. package/ts3.4/browser/Updaters/StrokeColor/index.d.ts +0 -2
  1136. package/ts3.4/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  1137. package/ts3.4/browser/Updaters/Tilt/index.d.ts +0 -2
  1138. package/ts3.4/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  1139. package/ts3.4/browser/Updaters/Wobble/index.d.ts +0 -2
  1140. package/ts3.4/browser/Utils/CanvasUtils.d.ts +0 -18
  1141. package/ts3.4/browser/Utils/Circle.d.ts +0 -8
  1142. package/ts3.4/browser/Utils/CircleWarp.d.ts +0 -10
  1143. package/ts3.4/browser/Utils/ColorUtils.d.ts +0 -26
  1144. package/ts3.4/browser/Utils/Constants.d.ts +0 -18
  1145. package/ts3.4/browser/Utils/EventListeners.d.ts +0 -30
  1146. package/ts3.4/browser/Utils/NumberUtils.d.ts +0 -23
  1147. package/ts3.4/browser/Utils/Plugins.d.ts +0 -22
  1148. package/ts3.4/browser/Utils/Point.d.ts +0 -7
  1149. package/ts3.4/browser/Utils/QuadTree.d.ts +0 -23
  1150. package/ts3.4/browser/Utils/Range.d.ts +0 -7
  1151. package/ts3.4/browser/Utils/Rectangle.d.ts +0 -9
  1152. package/ts3.4/browser/Utils/Utils.d.ts +0 -65
  1153. package/ts3.4/browser/Utils/index.d.ts +0 -13
  1154. package/ts3.4/browser/full.d.ts +0 -2
  1155. package/ts3.4/browser/index.d.ts +0 -31
  1156. package/ts3.4/browser/index.slim.d.ts +0 -25
  1157. package/ts3.4/browser/main.d.ts +0 -24
  1158. package/ts3.4/browser/pjs.d.ts +0 -14
  1159. package/ts3.4/browser/slim.d.ts +0 -2
  1160. package/ts3.4/esm/Core/Canvas.d.ts +0 -36
  1161. package/ts3.4/esm/Core/Container.d.ts +0 -64
  1162. package/ts3.4/esm/Core/ExternalInteractorBase.d.ts +0 -12
  1163. package/ts3.4/esm/Core/FrameManager.d.ts +0 -6
  1164. package/ts3.4/esm/Core/InteractionManager.d.ts +0 -11
  1165. package/ts3.4/esm/Core/Interfaces/Colors.d.ts +0 -33
  1166. package/ts3.4/esm/Core/Interfaces/Gradients.d.ts +0 -21
  1167. package/ts3.4/esm/Core/Interfaces/IAttract.d.ts +0 -7
  1168. package/ts3.4/esm/Core/Interfaces/IBounds.d.ts +0 -6
  1169. package/ts3.4/esm/Core/Interfaces/IBubble.d.ts +0 -4
  1170. package/ts3.4/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  1171. package/ts3.4/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  1172. package/ts3.4/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  1173. package/ts3.4/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  1174. package/ts3.4/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
  1175. package/ts3.4/esm/Core/Interfaces/IDelta.d.ts +0 -4
  1176. package/ts3.4/esm/Core/Interfaces/IDimension.d.ts +0 -4
  1177. package/ts3.4/esm/Core/Interfaces/IDistance.d.ts +0 -4
  1178. package/ts3.4/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  1179. package/ts3.4/esm/Core/Interfaces/IInteractor.d.ts +0 -6
  1180. package/ts3.4/esm/Core/Interfaces/IMouseData.d.ts +0 -9
  1181. package/ts3.4/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  1182. package/ts3.4/esm/Core/Interfaces/IParticle.d.ts +0 -59
  1183. package/ts3.4/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  1184. package/ts3.4/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  1185. package/ts3.4/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  1186. package/ts3.4/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
  1187. package/ts3.4/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
  1188. package/ts3.4/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
  1189. package/ts3.4/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  1190. package/ts3.4/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  1191. package/ts3.4/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  1192. package/ts3.4/esm/Core/Interfaces/IPlugin.d.ts +0 -11
  1193. package/ts3.4/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
  1194. package/ts3.4/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
  1195. package/ts3.4/esm/Core/Interfaces/IRepulse.d.ts +0 -7
  1196. package/ts3.4/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  1197. package/ts3.4/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
  1198. package/ts3.4/esm/Core/Interfaces/index.d.ts +0 -33
  1199. package/ts3.4/esm/Core/Loader.d.ts +0 -14
  1200. package/ts3.4/esm/Core/Particle/Mover.d.ts +0 -13
  1201. package/ts3.4/esm/Core/Particle/Vector.d.ts +0 -27
  1202. package/ts3.4/esm/Core/Particle/Vector3d.d.ts +0 -18
  1203. package/ts3.4/esm/Core/Particle.d.ts +0 -84
  1204. package/ts3.4/esm/Core/Particles.d.ts +0 -45
  1205. package/ts3.4/esm/Core/ParticlesInteractorBase.d.ts +0 -12
  1206. package/ts3.4/esm/Core/Retina.d.ts +0 -26
  1207. package/ts3.4/esm/Enums/AnimationStatus.d.ts +0 -4
  1208. package/ts3.4/esm/Enums/Directions/MoveDirection.d.ts +0 -12
  1209. package/ts3.4/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
  1210. package/ts3.4/esm/Enums/Directions/RotateDirection.d.ts +0 -6
  1211. package/ts3.4/esm/Enums/Directions/TiltDirection.d.ts +0 -6
  1212. package/ts3.4/esm/Enums/Directions/index.d.ts +0 -4
  1213. package/ts3.4/esm/Enums/InteractivityDetect.d.ts +0 -5
  1214. package/ts3.4/esm/Enums/Modes/ClickMode.d.ts +0 -9
  1215. package/ts3.4/esm/Enums/Modes/CollisionMode.d.ts +0 -5
  1216. package/ts3.4/esm/Enums/Modes/DestroyMode.d.ts +0 -4
  1217. package/ts3.4/esm/Enums/Modes/DivMode.d.ts +0 -5
  1218. package/ts3.4/esm/Enums/Modes/HoverMode.d.ts +0 -11
  1219. package/ts3.4/esm/Enums/Modes/OutMode.d.ts +0 -10
  1220. package/ts3.4/esm/Enums/Modes/SizeMode.d.ts +0 -4
  1221. package/ts3.4/esm/Enums/Modes/ThemeMode.d.ts +0 -5
  1222. package/ts3.4/esm/Enums/Modes/index.d.ts +0 -8
  1223. package/ts3.4/esm/Enums/Types/AlterType.d.ts +0 -4
  1224. package/ts3.4/esm/Enums/Types/DestroyType.d.ts +0 -5
  1225. package/ts3.4/esm/Enums/Types/DivType.d.ts +0 -4
  1226. package/ts3.4/esm/Enums/Types/EasingType.d.ts +0 -10
  1227. package/ts3.4/esm/Enums/Types/GradientType.d.ts +0 -5
  1228. package/ts3.4/esm/Enums/Types/InteractorType.d.ts +0 -4
  1229. package/ts3.4/esm/Enums/Types/OrbitType.d.ts +0 -4
  1230. package/ts3.4/esm/Enums/Types/ShapeType.d.ts +0 -13
  1231. package/ts3.4/esm/Enums/Types/StartValueType.d.ts +0 -5
  1232. package/ts3.4/esm/Enums/Types/index.d.ts +0 -9
  1233. package/ts3.4/esm/Enums/index.d.ts +0 -5
  1234. package/ts3.4/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
  1235. package/ts3.4/esm/Interactions/External/Attract/index.d.ts +0 -2
  1236. package/ts3.4/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  1237. package/ts3.4/esm/Interactions/External/Bounce/index.d.ts +0 -2
  1238. package/ts3.4/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  1239. package/ts3.4/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  1240. package/ts3.4/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  1241. package/ts3.4/esm/Interactions/External/Bubble/index.d.ts +0 -2
  1242. package/ts3.4/esm/Interactions/External/Connect/Connector.d.ts +0 -8
  1243. package/ts3.4/esm/Interactions/External/Connect/index.d.ts +0 -2
  1244. package/ts3.4/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
  1245. package/ts3.4/esm/Interactions/External/Grab/index.d.ts +0 -2
  1246. package/ts3.4/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
  1247. package/ts3.4/esm/Interactions/External/Repulse/index.d.ts +0 -2
  1248. package/ts3.4/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  1249. package/ts3.4/esm/Interactions/External/Trail/index.d.ts +0 -2
  1250. package/ts3.4/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  1251. package/ts3.4/esm/Interactions/Particles/Attract/index.d.ts +0 -2
  1252. package/ts3.4/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  1253. package/ts3.4/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
  1254. package/ts3.4/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
  1255. package/ts3.4/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  1256. package/ts3.4/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  1257. package/ts3.4/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
  1258. package/ts3.4/esm/Interactions/Particles/Links/index.d.ts +0 -3
  1259. package/ts3.4/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
  1260. package/ts3.4/esm/Options/Classes/AnimatableColor.d.ts +0 -11
  1261. package/ts3.4/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
  1262. package/ts3.4/esm/Options/Classes/AnimationOptions.d.ts +0 -11
  1263. package/ts3.4/esm/Options/Classes/Background/Background.d.ts +0 -14
  1264. package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  1265. package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  1266. package/ts3.4/esm/Options/Classes/ColorAnimation.d.ts +0 -12
  1267. package/ts3.4/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  1268. package/ts3.4/esm/Options/Classes/HslAnimation.d.ts +0 -11
  1269. package/ts3.4/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  1270. package/ts3.4/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
  1271. package/ts3.4/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
  1272. package/ts3.4/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  1273. package/ts3.4/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  1274. package/ts3.4/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
  1275. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  1276. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  1277. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  1278. package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  1279. package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
  1280. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
  1281. package/ts3.4/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  1282. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
  1283. package/ts3.4/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  1284. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  1285. package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  1286. package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  1287. package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  1288. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  1289. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
  1290. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
  1291. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  1292. package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  1293. package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
  1294. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
  1295. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  1296. package/ts3.4/esm/Options/Classes/ManualParticle.d.ts +0 -10
  1297. package/ts3.4/esm/Options/Classes/Motion/Motion.d.ts +0 -10
  1298. package/ts3.4/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  1299. package/ts3.4/esm/Options/Classes/Options.d.ts +0 -40
  1300. package/ts3.4/esm/Options/Classes/OptionsColor.d.ts +0 -10
  1301. package/ts3.4/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  1302. package/ts3.4/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  1303. package/ts3.4/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  1304. package/ts3.4/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  1305. package/ts3.4/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  1306. package/ts3.4/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  1307. package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  1308. package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  1309. package/ts3.4/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
  1310. package/ts3.4/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  1311. package/ts3.4/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  1312. package/ts3.4/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
  1313. package/ts3.4/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  1314. package/ts3.4/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  1315. package/ts3.4/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -13
  1316. package/ts3.4/esm/Options/Classes/Particles/Move/Move.d.ts +0 -39
  1317. package/ts3.4/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  1318. package/ts3.4/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  1319. package/ts3.4/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  1320. package/ts3.4/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  1321. package/ts3.4/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  1322. package/ts3.4/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  1323. package/ts3.4/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  1324. package/ts3.4/esm/Options/Classes/Particles/Number/Density.d.ts +0 -11
  1325. package/ts3.4/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
  1326. package/ts3.4/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
  1327. package/ts3.4/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
  1328. package/ts3.4/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  1329. package/ts3.4/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  1330. package/ts3.4/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
  1331. package/ts3.4/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  1332. package/ts3.4/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  1333. package/ts3.4/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  1334. package/ts3.4/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  1335. package/ts3.4/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  1336. package/ts3.4/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
  1337. package/ts3.4/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
  1338. package/ts3.4/esm/Options/Classes/Particles/Size/Size.d.ts +0 -11
  1339. package/ts3.4/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
  1340. package/ts3.4/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
  1341. package/ts3.4/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  1342. package/ts3.4/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  1343. package/ts3.4/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  1344. package/ts3.4/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  1345. package/ts3.4/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  1346. package/ts3.4/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  1347. package/ts3.4/esm/Options/Classes/Random.d.ts +0 -9
  1348. package/ts3.4/esm/Options/Classes/Responsive.d.ts +0 -10
  1349. package/ts3.4/esm/Options/Classes/Theme/Theme.d.ts +0 -12
  1350. package/ts3.4/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  1351. package/ts3.4/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
  1352. package/ts3.4/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
  1353. package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  1354. package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  1355. package/ts3.4/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  1356. package/ts3.4/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
  1357. package/ts3.4/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  1358. package/ts3.4/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  1359. package/ts3.4/esm/Options/Interfaces/IAnimation.d.ts +0 -6
  1360. package/ts3.4/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
  1361. package/ts3.4/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
  1362. package/ts3.4/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
  1363. package/ts3.4/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
  1364. package/ts3.4/esm/Options/Interfaces/IOptions.d.ts +0 -33
  1365. package/ts3.4/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
  1366. package/ts3.4/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  1367. package/ts3.4/esm/Options/Interfaces/IRandom.d.ts +0 -4
  1368. package/ts3.4/esm/Options/Interfaces/IResponsive.d.ts +0 -6
  1369. package/ts3.4/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  1370. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  1371. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  1372. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  1373. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  1374. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  1375. package/ts3.4/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  1376. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  1377. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  1378. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  1379. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  1380. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  1381. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  1382. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  1383. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  1384. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  1385. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  1386. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  1387. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  1388. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  1389. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  1390. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  1391. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  1392. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  1393. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  1394. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  1395. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  1396. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  1397. package/ts3.4/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  1398. package/ts3.4/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  1399. package/ts3.4/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  1400. package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  1401. package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  1402. package/ts3.4/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  1403. package/ts3.4/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  1404. package/ts3.4/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  1405. package/ts3.4/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  1406. package/ts3.4/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  1407. package/ts3.4/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  1408. package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  1409. package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  1410. package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  1411. package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  1412. package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  1413. package/ts3.4/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  1414. package/ts3.4/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  1415. package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  1416. package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  1417. package/ts3.4/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  1418. package/ts3.4/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  1419. package/ts3.4/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  1420. package/ts3.4/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  1421. package/ts3.4/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  1422. package/ts3.4/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  1423. package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  1424. package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  1425. package/ts3.4/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  1426. package/ts3.4/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  1427. package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  1428. package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  1429. package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  1430. package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  1431. package/ts3.4/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  1432. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  1433. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  1434. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  1435. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  1436. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  1437. package/ts3.4/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  1438. package/ts3.4/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  1439. package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  1440. package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  1441. package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  1442. package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  1443. package/ts3.4/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  1444. package/ts3.4/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  1445. package/ts3.4/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  1446. package/ts3.4/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  1447. package/ts3.4/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  1448. package/ts3.4/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  1449. package/ts3.4/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
  1450. package/ts3.4/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  1451. package/ts3.4/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
  1452. package/ts3.4/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  1453. package/ts3.4/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  1454. package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  1455. package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  1456. package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  1457. package/ts3.4/esm/Plugins/Absorbers/plugin.d.ts +0 -2
  1458. package/ts3.4/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  1459. package/ts3.4/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  1460. package/ts3.4/esm/Plugins/Emitters/Emitters.d.ts +0 -24
  1461. package/ts3.4/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
  1462. package/ts3.4/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  1463. package/ts3.4/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  1464. package/ts3.4/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
  1465. package/ts3.4/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  1466. package/ts3.4/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  1467. package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  1468. package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  1469. package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  1470. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  1471. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  1472. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  1473. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  1474. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  1475. package/ts3.4/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
  1476. package/ts3.4/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  1477. package/ts3.4/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  1478. package/ts3.4/esm/Plugins/Emitters/plugin.d.ts +0 -3
  1479. package/ts3.4/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  1480. package/ts3.4/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  1481. package/ts3.4/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  1482. package/ts3.4/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  1483. package/ts3.4/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  1484. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
  1485. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  1486. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  1487. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  1488. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  1489. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
  1490. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  1491. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  1492. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  1493. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  1494. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  1495. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  1496. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  1497. package/ts3.4/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  1498. package/ts3.4/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
  1499. package/ts3.4/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
  1500. package/ts3.4/esm/Shapes/Circle/index.d.ts +0 -2
  1501. package/ts3.4/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
  1502. package/ts3.4/esm/Shapes/Image/Utils.d.ts +0 -25
  1503. package/ts3.4/esm/Shapes/Image/index.d.ts +0 -2
  1504. package/ts3.4/esm/Shapes/Line/LineDrawer.d.ts +0 -5
  1505. package/ts3.4/esm/Shapes/Line/index.d.ts +0 -2
  1506. package/ts3.4/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  1507. package/ts3.4/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  1508. package/ts3.4/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  1509. package/ts3.4/esm/Shapes/Polygon/index.d.ts +0 -4
  1510. package/ts3.4/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
  1511. package/ts3.4/esm/Shapes/Square/index.d.ts +0 -2
  1512. package/ts3.4/esm/Shapes/Star/StarDrawer.d.ts +0 -5
  1513. package/ts3.4/esm/Shapes/Star/index.d.ts +0 -2
  1514. package/ts3.4/esm/Shapes/Text/TextDrawer.d.ts +0 -8
  1515. package/ts3.4/esm/Shapes/Text/index.d.ts +0 -2
  1516. package/ts3.4/esm/Types/ParticlesGroups.d.ts +0 -4
  1517. package/ts3.4/esm/Types/PathOptions.d.ts +0 -3
  1518. package/ts3.4/esm/Types/RangeValue.d.ts +0 -2
  1519. package/ts3.4/esm/Types/RecursivePartial.d.ts +0 -3
  1520. package/ts3.4/esm/Types/ShapeData.d.ts +0 -5
  1521. package/ts3.4/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
  1522. package/ts3.4/esm/Types/SingleOrMultiple.d.ts +0 -1
  1523. package/ts3.4/esm/Types/index.d.ts +0 -6
  1524. package/ts3.4/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
  1525. package/ts3.4/esm/Updaters/Angle/index.d.ts +0 -2
  1526. package/ts3.4/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
  1527. package/ts3.4/esm/Updaters/Color/index.d.ts +0 -2
  1528. package/ts3.4/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
  1529. package/ts3.4/esm/Updaters/Life/index.d.ts +0 -2
  1530. package/ts3.4/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  1531. package/ts3.4/esm/Updaters/Opacity/index.d.ts +0 -2
  1532. package/ts3.4/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
  1533. package/ts3.4/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  1534. package/ts3.4/esm/Updaters/OutModes/Utils.d.ts +0 -3
  1535. package/ts3.4/esm/Updaters/OutModes/index.d.ts +0 -2
  1536. package/ts3.4/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
  1537. package/ts3.4/esm/Updaters/Roll/index.d.ts +0 -2
  1538. package/ts3.4/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
  1539. package/ts3.4/esm/Updaters/Size/index.d.ts +0 -2
  1540. package/ts3.4/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  1541. package/ts3.4/esm/Updaters/StrokeColor/index.d.ts +0 -2
  1542. package/ts3.4/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  1543. package/ts3.4/esm/Updaters/Tilt/index.d.ts +0 -2
  1544. package/ts3.4/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  1545. package/ts3.4/esm/Updaters/Wobble/index.d.ts +0 -2
  1546. package/ts3.4/esm/Utils/CanvasUtils.d.ts +0 -18
  1547. package/ts3.4/esm/Utils/Circle.d.ts +0 -8
  1548. package/ts3.4/esm/Utils/CircleWarp.d.ts +0 -10
  1549. package/ts3.4/esm/Utils/ColorUtils.d.ts +0 -26
  1550. package/ts3.4/esm/Utils/Constants.d.ts +0 -18
  1551. package/ts3.4/esm/Utils/EventListeners.d.ts +0 -30
  1552. package/ts3.4/esm/Utils/NumberUtils.d.ts +0 -23
  1553. package/ts3.4/esm/Utils/Plugins.d.ts +0 -22
  1554. package/ts3.4/esm/Utils/Point.d.ts +0 -7
  1555. package/ts3.4/esm/Utils/QuadTree.d.ts +0 -23
  1556. package/ts3.4/esm/Utils/Range.d.ts +0 -7
  1557. package/ts3.4/esm/Utils/Rectangle.d.ts +0 -9
  1558. package/ts3.4/esm/Utils/Utils.d.ts +0 -65
  1559. package/ts3.4/esm/Utils/index.d.ts +0 -13
  1560. package/ts3.4/esm/full.d.ts +0 -2
  1561. package/ts3.4/esm/index.d.ts +0 -31
  1562. package/ts3.4/esm/index.slim.d.ts +0 -25
  1563. package/ts3.4/esm/main.d.ts +0 -24
  1564. package/ts3.4/esm/pjs.d.ts +0 -14
  1565. package/ts3.4/esm/slim.d.ts +0 -2
  1566. package/ts3.4/full.d.ts +0 -2
  1567. package/ts3.4/index.d.ts +0 -31
  1568. package/ts3.4/index.slim.d.ts +0 -25
  1569. package/ts3.4/main.d.ts +0 -24
  1570. package/ts3.4/pjs.d.ts +0 -14
  1571. package/ts3.4/slim.d.ts +0 -2
  1572. package/ts3.8/Core/Canvas.d.ts +0 -36
  1573. package/ts3.8/Core/Container.d.ts +0 -64
  1574. package/ts3.8/Core/ExternalInteractorBase.d.ts +0 -12
  1575. package/ts3.8/Core/FrameManager.d.ts +0 -6
  1576. package/ts3.8/Core/InteractionManager.d.ts +0 -11
  1577. package/ts3.8/Core/Interfaces/Colors.d.ts +0 -33
  1578. package/ts3.8/Core/Interfaces/Gradients.d.ts +0 -21
  1579. package/ts3.8/Core/Interfaces/IAttract.d.ts +0 -7
  1580. package/ts3.8/Core/Interfaces/IBounds.d.ts +0 -6
  1581. package/ts3.8/Core/Interfaces/IBubble.d.ts +0 -4
  1582. package/ts3.8/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  1583. package/ts3.8/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  1584. package/ts3.8/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  1585. package/ts3.8/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  1586. package/ts3.8/Core/Interfaces/ICoordinates.d.ts +0 -7
  1587. package/ts3.8/Core/Interfaces/IDelta.d.ts +0 -4
  1588. package/ts3.8/Core/Interfaces/IDimension.d.ts +0 -4
  1589. package/ts3.8/Core/Interfaces/IDistance.d.ts +0 -4
  1590. package/ts3.8/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  1591. package/ts3.8/Core/Interfaces/IInteractor.d.ts +0 -6
  1592. package/ts3.8/Core/Interfaces/IMouseData.d.ts +0 -9
  1593. package/ts3.8/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  1594. package/ts3.8/Core/Interfaces/IParticle.d.ts +0 -59
  1595. package/ts3.8/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  1596. package/ts3.8/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  1597. package/ts3.8/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  1598. package/ts3.8/Core/Interfaces/IParticleLife.d.ts +0 -7
  1599. package/ts3.8/Core/Interfaces/IParticleLoops.d.ts +0 -4
  1600. package/ts3.8/Core/Interfaces/IParticleSpin.d.ts +0 -9
  1601. package/ts3.8/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  1602. package/ts3.8/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  1603. package/ts3.8/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  1604. package/ts3.8/Core/Interfaces/IPlugin.d.ts +0 -11
  1605. package/ts3.8/Core/Interfaces/IRangeValue.d.ts +0 -4
  1606. package/ts3.8/Core/Interfaces/IRectSideResult.d.ts +0 -5
  1607. package/ts3.8/Core/Interfaces/IRepulse.d.ts +0 -7
  1608. package/ts3.8/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  1609. package/ts3.8/Core/Interfaces/IShapeValues.d.ts +0 -8
  1610. package/ts3.8/Core/Interfaces/index.d.ts +0 -33
  1611. package/ts3.8/Core/Loader.d.ts +0 -14
  1612. package/ts3.8/Core/Particle/Mover.d.ts +0 -13
  1613. package/ts3.8/Core/Particle/Vector.d.ts +0 -29
  1614. package/ts3.8/Core/Particle/Vector3d.d.ts +0 -18
  1615. package/ts3.8/Core/Particle.d.ts +0 -84
  1616. package/ts3.8/Core/Particles.d.ts +0 -45
  1617. package/ts3.8/Core/ParticlesInteractorBase.d.ts +0 -12
  1618. package/ts3.8/Core/Retina.d.ts +0 -26
  1619. package/ts3.8/Enums/AnimationStatus.d.ts +0 -4
  1620. package/ts3.8/Enums/Directions/MoveDirection.d.ts +0 -12
  1621. package/ts3.8/Enums/Directions/OutModeDirection.d.ts +0 -6
  1622. package/ts3.8/Enums/Directions/RotateDirection.d.ts +0 -6
  1623. package/ts3.8/Enums/Directions/TiltDirection.d.ts +0 -6
  1624. package/ts3.8/Enums/Directions/index.d.ts +0 -4
  1625. package/ts3.8/Enums/InteractivityDetect.d.ts +0 -5
  1626. package/ts3.8/Enums/Modes/ClickMode.d.ts +0 -9
  1627. package/ts3.8/Enums/Modes/CollisionMode.d.ts +0 -5
  1628. package/ts3.8/Enums/Modes/DestroyMode.d.ts +0 -4
  1629. package/ts3.8/Enums/Modes/DivMode.d.ts +0 -5
  1630. package/ts3.8/Enums/Modes/HoverMode.d.ts +0 -11
  1631. package/ts3.8/Enums/Modes/OutMode.d.ts +0 -10
  1632. package/ts3.8/Enums/Modes/SizeMode.d.ts +0 -4
  1633. package/ts3.8/Enums/Modes/ThemeMode.d.ts +0 -5
  1634. package/ts3.8/Enums/Modes/index.d.ts +0 -8
  1635. package/ts3.8/Enums/Types/AlterType.d.ts +0 -4
  1636. package/ts3.8/Enums/Types/DestroyType.d.ts +0 -5
  1637. package/ts3.8/Enums/Types/DivType.d.ts +0 -4
  1638. package/ts3.8/Enums/Types/EasingType.d.ts +0 -10
  1639. package/ts3.8/Enums/Types/GradientType.d.ts +0 -5
  1640. package/ts3.8/Enums/Types/InteractorType.d.ts +0 -4
  1641. package/ts3.8/Enums/Types/OrbitType.d.ts +0 -4
  1642. package/ts3.8/Enums/Types/ShapeType.d.ts +0 -13
  1643. package/ts3.8/Enums/Types/StartValueType.d.ts +0 -5
  1644. package/ts3.8/Enums/Types/index.d.ts +0 -9
  1645. package/ts3.8/Enums/index.d.ts +0 -5
  1646. package/ts3.8/Interactions/External/Attract/Attractor.d.ts +0 -11
  1647. package/ts3.8/Interactions/External/Attract/index.d.ts +0 -2
  1648. package/ts3.8/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  1649. package/ts3.8/Interactions/External/Bounce/index.d.ts +0 -2
  1650. package/ts3.8/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  1651. package/ts3.8/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  1652. package/ts3.8/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  1653. package/ts3.8/Interactions/External/Bubble/index.d.ts +0 -2
  1654. package/ts3.8/Interactions/External/Connect/Connector.d.ts +0 -8
  1655. package/ts3.8/Interactions/External/Connect/index.d.ts +0 -2
  1656. package/ts3.8/Interactions/External/Grab/Grabber.d.ts +0 -8
  1657. package/ts3.8/Interactions/External/Grab/index.d.ts +0 -2
  1658. package/ts3.8/Interactions/External/Repulse/Repulser.d.ts +0 -12
  1659. package/ts3.8/Interactions/External/Repulse/index.d.ts +0 -2
  1660. package/ts3.8/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  1661. package/ts3.8/Interactions/External/Trail/index.d.ts +0 -2
  1662. package/ts3.8/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  1663. package/ts3.8/Interactions/Particles/Attract/index.d.ts +0 -2
  1664. package/ts3.8/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  1665. package/ts3.8/Interactions/Particles/Collisions/index.d.ts +0 -2
  1666. package/ts3.8/Interactions/Particles/Links/ILink.d.ts +0 -9
  1667. package/ts3.8/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  1668. package/ts3.8/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  1669. package/ts3.8/Interactions/Particles/Links/Linker.d.ts +0 -11
  1670. package/ts3.8/Interactions/Particles/Links/index.d.ts +0 -3
  1671. package/ts3.8/Interactions/Particles/Links/plugin.d.ts +0 -2
  1672. package/ts3.8/Options/Classes/AnimatableColor.d.ts +0 -11
  1673. package/ts3.8/Options/Classes/AnimatableGradient.d.ts +0 -53
  1674. package/ts3.8/Options/Classes/AnimationOptions.d.ts +0 -11
  1675. package/ts3.8/Options/Classes/Background/Background.d.ts +0 -14
  1676. package/ts3.8/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  1677. package/ts3.8/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  1678. package/ts3.8/Options/Classes/ColorAnimation.d.ts +0 -12
  1679. package/ts3.8/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  1680. package/ts3.8/Options/Classes/HslAnimation.d.ts +0 -11
  1681. package/ts3.8/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  1682. package/ts3.8/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  1683. package/ts3.8/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  1684. package/ts3.8/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  1685. package/ts3.8/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  1686. package/ts3.8/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  1687. package/ts3.8/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  1688. package/ts3.8/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  1689. package/ts3.8/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  1690. package/ts3.8/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  1691. package/ts3.8/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  1692. package/ts3.8/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  1693. package/ts3.8/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  1694. package/ts3.8/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  1695. package/ts3.8/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  1696. package/ts3.8/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  1697. package/ts3.8/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  1698. package/ts3.8/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  1699. package/ts3.8/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  1700. package/ts3.8/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  1701. package/ts3.8/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  1702. package/ts3.8/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  1703. package/ts3.8/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  1704. package/ts3.8/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  1705. package/ts3.8/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  1706. package/ts3.8/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  1707. package/ts3.8/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  1708. package/ts3.8/Options/Classes/ManualParticle.d.ts +0 -10
  1709. package/ts3.8/Options/Classes/Motion/Motion.d.ts +0 -10
  1710. package/ts3.8/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  1711. package/ts3.8/Options/Classes/Options.d.ts +0 -43
  1712. package/ts3.8/Options/Classes/OptionsColor.d.ts +0 -10
  1713. package/ts3.8/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  1714. package/ts3.8/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  1715. package/ts3.8/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  1716. package/ts3.8/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  1717. package/ts3.8/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  1718. package/ts3.8/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  1719. package/ts3.8/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  1720. package/ts3.8/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  1721. package/ts3.8/Options/Classes/Particles/Life/Life.d.ts +0 -12
  1722. package/ts3.8/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  1723. package/ts3.8/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  1724. package/ts3.8/Options/Classes/Particles/Links/Links.d.ts +0 -22
  1725. package/ts3.8/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  1726. package/ts3.8/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  1727. package/ts3.8/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  1728. package/ts3.8/Options/Classes/Particles/Move/Move.d.ts +0 -44
  1729. package/ts3.8/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  1730. package/ts3.8/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  1731. package/ts3.8/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  1732. package/ts3.8/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  1733. package/ts3.8/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  1734. package/ts3.8/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  1735. package/ts3.8/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  1736. package/ts3.8/Options/Classes/Particles/Number/Density.d.ts +0 -12
  1737. package/ts3.8/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  1738. package/ts3.8/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  1739. package/ts3.8/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  1740. package/ts3.8/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  1741. package/ts3.8/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  1742. package/ts3.8/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  1743. package/ts3.8/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  1744. package/ts3.8/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  1745. package/ts3.8/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  1746. package/ts3.8/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  1747. package/ts3.8/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  1748. package/ts3.8/Options/Classes/Particles/Shadow.d.ts +0 -13
  1749. package/ts3.8/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  1750. package/ts3.8/Options/Classes/Particles/Size/Size.d.ts +0 -12
  1751. package/ts3.8/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  1752. package/ts3.8/Options/Classes/Particles/Stroke.d.ts +0 -11
  1753. package/ts3.8/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  1754. package/ts3.8/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  1755. package/ts3.8/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  1756. package/ts3.8/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  1757. package/ts3.8/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  1758. package/ts3.8/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  1759. package/ts3.8/Options/Classes/Random.d.ts +0 -9
  1760. package/ts3.8/Options/Classes/Responsive.d.ts +0 -10
  1761. package/ts3.8/Options/Classes/Theme/Theme.d.ts +0 -12
  1762. package/ts3.8/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  1763. package/ts3.8/Options/Classes/ValueWithRandom.d.ts +0 -10
  1764. package/ts3.8/Options/Interfaces/Background/IBackground.d.ts +0 -9
  1765. package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  1766. package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  1767. package/ts3.8/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  1768. package/ts3.8/Options/Interfaces/IAnimatable.d.ts +0 -4
  1769. package/ts3.8/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  1770. package/ts3.8/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  1771. package/ts3.8/Options/Interfaces/IAnimation.d.ts +0 -6
  1772. package/ts3.8/Options/Interfaces/IColorAnimation.d.ts +0 -5
  1773. package/ts3.8/Options/Interfaces/IHslAnimation.d.ts +0 -6
  1774. package/ts3.8/Options/Interfaces/IManualParticle.d.ts +0 -7
  1775. package/ts3.8/Options/Interfaces/IOptionLoader.d.ts +0 -4
  1776. package/ts3.8/Options/Interfaces/IOptions.d.ts +0 -33
  1777. package/ts3.8/Options/Interfaces/IOptionsColor.d.ts +0 -2
  1778. package/ts3.8/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  1779. package/ts3.8/Options/Interfaces/IRandom.d.ts +0 -4
  1780. package/ts3.8/Options/Interfaces/IResponsive.d.ts +0 -6
  1781. package/ts3.8/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  1782. package/ts3.8/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  1783. package/ts3.8/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  1784. package/ts3.8/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  1785. package/ts3.8/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  1786. package/ts3.8/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  1787. package/ts3.8/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  1788. package/ts3.8/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  1789. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  1790. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  1791. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  1792. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  1793. package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  1794. package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  1795. package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  1796. package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  1797. package/ts3.8/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  1798. package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  1799. package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  1800. package/ts3.8/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  1801. package/ts3.8/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  1802. package/ts3.8/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  1803. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  1804. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  1805. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  1806. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  1807. package/ts3.8/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  1808. package/ts3.8/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  1809. package/ts3.8/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  1810. package/ts3.8/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  1811. package/ts3.8/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  1812. package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  1813. package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  1814. package/ts3.8/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  1815. package/ts3.8/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  1816. package/ts3.8/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  1817. package/ts3.8/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  1818. package/ts3.8/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  1819. package/ts3.8/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  1820. package/ts3.8/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  1821. package/ts3.8/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  1822. package/ts3.8/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  1823. package/ts3.8/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  1824. package/ts3.8/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  1825. package/ts3.8/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  1826. package/ts3.8/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  1827. package/ts3.8/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  1828. package/ts3.8/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  1829. package/ts3.8/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  1830. package/ts3.8/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  1831. package/ts3.8/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  1832. package/ts3.8/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  1833. package/ts3.8/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  1834. package/ts3.8/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  1835. package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  1836. package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  1837. package/ts3.8/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  1838. package/ts3.8/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  1839. package/ts3.8/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  1840. package/ts3.8/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  1841. package/ts3.8/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  1842. package/ts3.8/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  1843. package/ts3.8/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  1844. package/ts3.8/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  1845. package/ts3.8/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  1846. package/ts3.8/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  1847. package/ts3.8/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  1848. package/ts3.8/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  1849. package/ts3.8/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  1850. package/ts3.8/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  1851. package/ts3.8/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  1852. package/ts3.8/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  1853. package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  1854. package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  1855. package/ts3.8/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  1856. package/ts3.8/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  1857. package/ts3.8/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  1858. package/ts3.8/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  1859. package/ts3.8/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  1860. package/ts3.8/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  1861. package/ts3.8/Plugins/Absorbers/Absorbers.d.ts +0 -25
  1862. package/ts3.8/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  1863. package/ts3.8/Plugins/Absorbers/Enums/index.d.ts +0 -1
  1864. package/ts3.8/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  1865. package/ts3.8/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  1866. package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  1867. package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  1868. package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  1869. package/ts3.8/Plugins/Absorbers/plugin.d.ts +0 -2
  1870. package/ts3.8/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  1871. package/ts3.8/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  1872. package/ts3.8/Plugins/Emitters/Emitters.d.ts +0 -24
  1873. package/ts3.8/Plugins/Emitters/EmittersMain.d.ts +0 -5
  1874. package/ts3.8/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  1875. package/ts3.8/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  1876. package/ts3.8/Plugins/Emitters/Enums/index.d.ts +0 -2
  1877. package/ts3.8/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  1878. package/ts3.8/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  1879. package/ts3.8/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  1880. package/ts3.8/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  1881. package/ts3.8/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  1882. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  1883. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  1884. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  1885. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  1886. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  1887. package/ts3.8/Plugins/Emitters/ShapeManager.d.ts +0 -6
  1888. package/ts3.8/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  1889. package/ts3.8/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  1890. package/ts3.8/Plugins/Emitters/plugin.d.ts +0 -3
  1891. package/ts3.8/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  1892. package/ts3.8/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  1893. package/ts3.8/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  1894. package/ts3.8/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  1895. package/ts3.8/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  1896. package/ts3.8/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  1897. package/ts3.8/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  1898. package/ts3.8/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  1899. package/ts3.8/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  1900. package/ts3.8/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  1901. package/ts3.8/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  1902. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  1903. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  1904. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  1905. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  1906. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  1907. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  1908. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  1909. package/ts3.8/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  1910. package/ts3.8/Plugins/PolygonMask/plugin.d.ts +0 -2
  1911. package/ts3.8/Shapes/Circle/CircleDrawer.d.ts +0 -5
  1912. package/ts3.8/Shapes/Circle/index.d.ts +0 -2
  1913. package/ts3.8/Shapes/Image/ImageDrawer.d.ts +0 -22
  1914. package/ts3.8/Shapes/Image/Utils.d.ts +0 -25
  1915. package/ts3.8/Shapes/Image/index.d.ts +0 -2
  1916. package/ts3.8/Shapes/Line/LineDrawer.d.ts +0 -5
  1917. package/ts3.8/Shapes/Line/index.d.ts +0 -2
  1918. package/ts3.8/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  1919. package/ts3.8/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  1920. package/ts3.8/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  1921. package/ts3.8/Shapes/Polygon/index.d.ts +0 -4
  1922. package/ts3.8/Shapes/Square/SquareDrawer.d.ts +0 -5
  1923. package/ts3.8/Shapes/Square/index.d.ts +0 -2
  1924. package/ts3.8/Shapes/Star/StarDrawer.d.ts +0 -5
  1925. package/ts3.8/Shapes/Star/index.d.ts +0 -2
  1926. package/ts3.8/Shapes/Text/TextDrawer.d.ts +0 -8
  1927. package/ts3.8/Shapes/Text/index.d.ts +0 -2
  1928. package/ts3.8/Types/ParticlesGroups.d.ts +0 -4
  1929. package/ts3.8/Types/PathOptions.d.ts +0 -3
  1930. package/ts3.8/Types/RangeValue.d.ts +0 -2
  1931. package/ts3.8/Types/RecursivePartial.d.ts +0 -3
  1932. package/ts3.8/Types/ShapeData.d.ts +0 -5
  1933. package/ts3.8/Types/ShapeDrawerFunctions.d.ts +0 -11
  1934. package/ts3.8/Types/SingleOrMultiple.d.ts +0 -1
  1935. package/ts3.8/Types/index.d.ts +0 -6
  1936. package/ts3.8/Updaters/Angle/AngleUpdater.d.ts +0 -6
  1937. package/ts3.8/Updaters/Angle/index.d.ts +0 -2
  1938. package/ts3.8/Updaters/Color/ColorUpdater.d.ts +0 -6
  1939. package/ts3.8/Updaters/Color/index.d.ts +0 -2
  1940. package/ts3.8/Updaters/Life/LifeUpdater.d.ts +0 -9
  1941. package/ts3.8/Updaters/Life/index.d.ts +0 -2
  1942. package/ts3.8/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  1943. package/ts3.8/Updaters/Opacity/index.d.ts +0 -2
  1944. package/ts3.8/Updaters/OutModes/IBounceData.d.ts +0 -12
  1945. package/ts3.8/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  1946. package/ts3.8/Updaters/OutModes/Utils.d.ts +0 -3
  1947. package/ts3.8/Updaters/OutModes/index.d.ts +0 -2
  1948. package/ts3.8/Updaters/Roll/RollUpdater.d.ts +0 -6
  1949. package/ts3.8/Updaters/Roll/index.d.ts +0 -2
  1950. package/ts3.8/Updaters/Size/SizeUpdater.d.ts +0 -6
  1951. package/ts3.8/Updaters/Size/index.d.ts +0 -2
  1952. package/ts3.8/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  1953. package/ts3.8/Updaters/StrokeColor/index.d.ts +0 -2
  1954. package/ts3.8/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  1955. package/ts3.8/Updaters/Tilt/index.d.ts +0 -2
  1956. package/ts3.8/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  1957. package/ts3.8/Updaters/Wobble/index.d.ts +0 -2
  1958. package/ts3.8/Utils/CanvasUtils.d.ts +0 -18
  1959. package/ts3.8/Utils/Circle.d.ts +0 -8
  1960. package/ts3.8/Utils/CircleWarp.d.ts +0 -10
  1961. package/ts3.8/Utils/ColorUtils.d.ts +0 -26
  1962. package/ts3.8/Utils/Constants.d.ts +0 -18
  1963. package/ts3.8/Utils/EventListeners.d.ts +0 -30
  1964. package/ts3.8/Utils/NumberUtils.d.ts +0 -23
  1965. package/ts3.8/Utils/Plugins.d.ts +0 -22
  1966. package/ts3.8/Utils/Point.d.ts +0 -7
  1967. package/ts3.8/Utils/QuadTree.d.ts +0 -23
  1968. package/ts3.8/Utils/Range.d.ts +0 -7
  1969. package/ts3.8/Utils/Rectangle.d.ts +0 -9
  1970. package/ts3.8/Utils/Utils.d.ts +0 -65
  1971. package/ts3.8/Utils/index.d.ts +0 -13
  1972. package/ts3.8/browser/Core/Canvas.d.ts +0 -36
  1973. package/ts3.8/browser/Core/Container.d.ts +0 -64
  1974. package/ts3.8/browser/Core/ExternalInteractorBase.d.ts +0 -12
  1975. package/ts3.8/browser/Core/FrameManager.d.ts +0 -6
  1976. package/ts3.8/browser/Core/InteractionManager.d.ts +0 -11
  1977. package/ts3.8/browser/Core/Interfaces/Colors.d.ts +0 -33
  1978. package/ts3.8/browser/Core/Interfaces/Gradients.d.ts +0 -21
  1979. package/ts3.8/browser/Core/Interfaces/IAttract.d.ts +0 -7
  1980. package/ts3.8/browser/Core/Interfaces/IBounds.d.ts +0 -6
  1981. package/ts3.8/browser/Core/Interfaces/IBubble.d.ts +0 -4
  1982. package/ts3.8/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  1983. package/ts3.8/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  1984. package/ts3.8/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  1985. package/ts3.8/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  1986. package/ts3.8/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
  1987. package/ts3.8/browser/Core/Interfaces/IDelta.d.ts +0 -4
  1988. package/ts3.8/browser/Core/Interfaces/IDimension.d.ts +0 -4
  1989. package/ts3.8/browser/Core/Interfaces/IDistance.d.ts +0 -4
  1990. package/ts3.8/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  1991. package/ts3.8/browser/Core/Interfaces/IInteractor.d.ts +0 -6
  1992. package/ts3.8/browser/Core/Interfaces/IMouseData.d.ts +0 -9
  1993. package/ts3.8/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  1994. package/ts3.8/browser/Core/Interfaces/IParticle.d.ts +0 -59
  1995. package/ts3.8/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  1996. package/ts3.8/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  1997. package/ts3.8/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  1998. package/ts3.8/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
  1999. package/ts3.8/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
  2000. package/ts3.8/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
  2001. package/ts3.8/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  2002. package/ts3.8/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  2003. package/ts3.8/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  2004. package/ts3.8/browser/Core/Interfaces/IPlugin.d.ts +0 -11
  2005. package/ts3.8/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
  2006. package/ts3.8/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
  2007. package/ts3.8/browser/Core/Interfaces/IRepulse.d.ts +0 -7
  2008. package/ts3.8/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  2009. package/ts3.8/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
  2010. package/ts3.8/browser/Core/Interfaces/index.d.ts +0 -33
  2011. package/ts3.8/browser/Core/Loader.d.ts +0 -14
  2012. package/ts3.8/browser/Core/Particle/Mover.d.ts +0 -13
  2013. package/ts3.8/browser/Core/Particle/Vector.d.ts +0 -29
  2014. package/ts3.8/browser/Core/Particle/Vector3d.d.ts +0 -18
  2015. package/ts3.8/browser/Core/Particle.d.ts +0 -84
  2016. package/ts3.8/browser/Core/Particles.d.ts +0 -45
  2017. package/ts3.8/browser/Core/ParticlesInteractorBase.d.ts +0 -12
  2018. package/ts3.8/browser/Core/Retina.d.ts +0 -26
  2019. package/ts3.8/browser/Enums/AnimationStatus.d.ts +0 -4
  2020. package/ts3.8/browser/Enums/Directions/MoveDirection.d.ts +0 -12
  2021. package/ts3.8/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
  2022. package/ts3.8/browser/Enums/Directions/RotateDirection.d.ts +0 -6
  2023. package/ts3.8/browser/Enums/Directions/TiltDirection.d.ts +0 -6
  2024. package/ts3.8/browser/Enums/Directions/index.d.ts +0 -4
  2025. package/ts3.8/browser/Enums/InteractivityDetect.d.ts +0 -5
  2026. package/ts3.8/browser/Enums/Modes/ClickMode.d.ts +0 -9
  2027. package/ts3.8/browser/Enums/Modes/CollisionMode.d.ts +0 -5
  2028. package/ts3.8/browser/Enums/Modes/DestroyMode.d.ts +0 -4
  2029. package/ts3.8/browser/Enums/Modes/DivMode.d.ts +0 -5
  2030. package/ts3.8/browser/Enums/Modes/HoverMode.d.ts +0 -11
  2031. package/ts3.8/browser/Enums/Modes/OutMode.d.ts +0 -10
  2032. package/ts3.8/browser/Enums/Modes/SizeMode.d.ts +0 -4
  2033. package/ts3.8/browser/Enums/Modes/ThemeMode.d.ts +0 -5
  2034. package/ts3.8/browser/Enums/Modes/index.d.ts +0 -8
  2035. package/ts3.8/browser/Enums/Types/AlterType.d.ts +0 -4
  2036. package/ts3.8/browser/Enums/Types/DestroyType.d.ts +0 -5
  2037. package/ts3.8/browser/Enums/Types/DivType.d.ts +0 -4
  2038. package/ts3.8/browser/Enums/Types/EasingType.d.ts +0 -10
  2039. package/ts3.8/browser/Enums/Types/GradientType.d.ts +0 -5
  2040. package/ts3.8/browser/Enums/Types/InteractorType.d.ts +0 -4
  2041. package/ts3.8/browser/Enums/Types/OrbitType.d.ts +0 -4
  2042. package/ts3.8/browser/Enums/Types/ShapeType.d.ts +0 -13
  2043. package/ts3.8/browser/Enums/Types/StartValueType.d.ts +0 -5
  2044. package/ts3.8/browser/Enums/Types/index.d.ts +0 -9
  2045. package/ts3.8/browser/Enums/index.d.ts +0 -5
  2046. package/ts3.8/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
  2047. package/ts3.8/browser/Interactions/External/Attract/index.d.ts +0 -2
  2048. package/ts3.8/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  2049. package/ts3.8/browser/Interactions/External/Bounce/index.d.ts +0 -2
  2050. package/ts3.8/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  2051. package/ts3.8/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  2052. package/ts3.8/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  2053. package/ts3.8/browser/Interactions/External/Bubble/index.d.ts +0 -2
  2054. package/ts3.8/browser/Interactions/External/Connect/Connector.d.ts +0 -8
  2055. package/ts3.8/browser/Interactions/External/Connect/index.d.ts +0 -2
  2056. package/ts3.8/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
  2057. package/ts3.8/browser/Interactions/External/Grab/index.d.ts +0 -2
  2058. package/ts3.8/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
  2059. package/ts3.8/browser/Interactions/External/Repulse/index.d.ts +0 -2
  2060. package/ts3.8/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  2061. package/ts3.8/browser/Interactions/External/Trail/index.d.ts +0 -2
  2062. package/ts3.8/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  2063. package/ts3.8/browser/Interactions/Particles/Attract/index.d.ts +0 -2
  2064. package/ts3.8/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  2065. package/ts3.8/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
  2066. package/ts3.8/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
  2067. package/ts3.8/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  2068. package/ts3.8/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  2069. package/ts3.8/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
  2070. package/ts3.8/browser/Interactions/Particles/Links/index.d.ts +0 -3
  2071. package/ts3.8/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
  2072. package/ts3.8/browser/Options/Classes/AnimatableColor.d.ts +0 -11
  2073. package/ts3.8/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
  2074. package/ts3.8/browser/Options/Classes/AnimationOptions.d.ts +0 -11
  2075. package/ts3.8/browser/Options/Classes/Background/Background.d.ts +0 -14
  2076. package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  2077. package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  2078. package/ts3.8/browser/Options/Classes/ColorAnimation.d.ts +0 -12
  2079. package/ts3.8/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  2080. package/ts3.8/browser/Options/Classes/HslAnimation.d.ts +0 -11
  2081. package/ts3.8/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  2082. package/ts3.8/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  2083. package/ts3.8/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  2084. package/ts3.8/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  2085. package/ts3.8/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  2086. package/ts3.8/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  2087. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  2088. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  2089. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  2090. package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  2091. package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  2092. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  2093. package/ts3.8/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  2094. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  2095. package/ts3.8/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  2096. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  2097. package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  2098. package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  2099. package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  2100. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  2101. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  2102. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  2103. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  2104. package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  2105. package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  2106. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  2107. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  2108. package/ts3.8/browser/Options/Classes/ManualParticle.d.ts +0 -10
  2109. package/ts3.8/browser/Options/Classes/Motion/Motion.d.ts +0 -10
  2110. package/ts3.8/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  2111. package/ts3.8/browser/Options/Classes/Options.d.ts +0 -43
  2112. package/ts3.8/browser/Options/Classes/OptionsColor.d.ts +0 -10
  2113. package/ts3.8/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  2114. package/ts3.8/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  2115. package/ts3.8/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  2116. package/ts3.8/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  2117. package/ts3.8/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  2118. package/ts3.8/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  2119. package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  2120. package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  2121. package/ts3.8/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
  2122. package/ts3.8/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  2123. package/ts3.8/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  2124. package/ts3.8/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
  2125. package/ts3.8/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  2126. package/ts3.8/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  2127. package/ts3.8/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  2128. package/ts3.8/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
  2129. package/ts3.8/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  2130. package/ts3.8/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  2131. package/ts3.8/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  2132. package/ts3.8/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  2133. package/ts3.8/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  2134. package/ts3.8/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  2135. package/ts3.8/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  2136. package/ts3.8/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
  2137. package/ts3.8/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  2138. package/ts3.8/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  2139. package/ts3.8/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  2140. package/ts3.8/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  2141. package/ts3.8/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  2142. package/ts3.8/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  2143. package/ts3.8/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  2144. package/ts3.8/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  2145. package/ts3.8/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  2146. package/ts3.8/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  2147. package/ts3.8/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  2148. package/ts3.8/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
  2149. package/ts3.8/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  2150. package/ts3.8/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
  2151. package/ts3.8/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  2152. package/ts3.8/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
  2153. package/ts3.8/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  2154. package/ts3.8/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  2155. package/ts3.8/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  2156. package/ts3.8/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  2157. package/ts3.8/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  2158. package/ts3.8/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  2159. package/ts3.8/browser/Options/Classes/Random.d.ts +0 -9
  2160. package/ts3.8/browser/Options/Classes/Responsive.d.ts +0 -10
  2161. package/ts3.8/browser/Options/Classes/Theme/Theme.d.ts +0 -12
  2162. package/ts3.8/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  2163. package/ts3.8/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
  2164. package/ts3.8/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
  2165. package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  2166. package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  2167. package/ts3.8/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  2168. package/ts3.8/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
  2169. package/ts3.8/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  2170. package/ts3.8/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  2171. package/ts3.8/browser/Options/Interfaces/IAnimation.d.ts +0 -6
  2172. package/ts3.8/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
  2173. package/ts3.8/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
  2174. package/ts3.8/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
  2175. package/ts3.8/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
  2176. package/ts3.8/browser/Options/Interfaces/IOptions.d.ts +0 -33
  2177. package/ts3.8/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
  2178. package/ts3.8/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  2179. package/ts3.8/browser/Options/Interfaces/IRandom.d.ts +0 -4
  2180. package/ts3.8/browser/Options/Interfaces/IResponsive.d.ts +0 -6
  2181. package/ts3.8/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  2182. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  2183. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  2184. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  2185. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  2186. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  2187. package/ts3.8/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  2188. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  2189. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  2190. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  2191. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  2192. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  2193. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  2194. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  2195. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  2196. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  2197. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  2198. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  2199. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  2200. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  2201. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  2202. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  2203. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  2204. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  2205. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  2206. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  2207. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  2208. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  2209. package/ts3.8/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  2210. package/ts3.8/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  2211. package/ts3.8/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  2212. package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  2213. package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  2214. package/ts3.8/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  2215. package/ts3.8/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  2216. package/ts3.8/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  2217. package/ts3.8/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  2218. package/ts3.8/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  2219. package/ts3.8/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  2220. package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  2221. package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  2222. package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  2223. package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  2224. package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  2225. package/ts3.8/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  2226. package/ts3.8/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  2227. package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  2228. package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  2229. package/ts3.8/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  2230. package/ts3.8/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  2231. package/ts3.8/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  2232. package/ts3.8/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  2233. package/ts3.8/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  2234. package/ts3.8/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  2235. package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  2236. package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  2237. package/ts3.8/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  2238. package/ts3.8/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  2239. package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  2240. package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  2241. package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  2242. package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  2243. package/ts3.8/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  2244. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  2245. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  2246. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  2247. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  2248. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  2249. package/ts3.8/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  2250. package/ts3.8/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  2251. package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  2252. package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  2253. package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  2254. package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  2255. package/ts3.8/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  2256. package/ts3.8/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  2257. package/ts3.8/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  2258. package/ts3.8/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  2259. package/ts3.8/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  2260. package/ts3.8/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  2261. package/ts3.8/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
  2262. package/ts3.8/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  2263. package/ts3.8/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
  2264. package/ts3.8/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  2265. package/ts3.8/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  2266. package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  2267. package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  2268. package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  2269. package/ts3.8/browser/Plugins/Absorbers/plugin.d.ts +0 -2
  2270. package/ts3.8/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  2271. package/ts3.8/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  2272. package/ts3.8/browser/Plugins/Emitters/Emitters.d.ts +0 -24
  2273. package/ts3.8/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
  2274. package/ts3.8/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  2275. package/ts3.8/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  2276. package/ts3.8/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
  2277. package/ts3.8/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  2278. package/ts3.8/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  2279. package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  2280. package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  2281. package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  2282. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  2283. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  2284. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  2285. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  2286. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  2287. package/ts3.8/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
  2288. package/ts3.8/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  2289. package/ts3.8/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  2290. package/ts3.8/browser/Plugins/Emitters/plugin.d.ts +0 -3
  2291. package/ts3.8/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  2292. package/ts3.8/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  2293. package/ts3.8/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  2294. package/ts3.8/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  2295. package/ts3.8/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  2296. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  2297. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  2298. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  2299. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  2300. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  2301. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  2302. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  2303. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  2304. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  2305. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  2306. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  2307. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  2308. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  2309. package/ts3.8/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  2310. package/ts3.8/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
  2311. package/ts3.8/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
  2312. package/ts3.8/browser/Shapes/Circle/index.d.ts +0 -2
  2313. package/ts3.8/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
  2314. package/ts3.8/browser/Shapes/Image/Utils.d.ts +0 -25
  2315. package/ts3.8/browser/Shapes/Image/index.d.ts +0 -2
  2316. package/ts3.8/browser/Shapes/Line/LineDrawer.d.ts +0 -5
  2317. package/ts3.8/browser/Shapes/Line/index.d.ts +0 -2
  2318. package/ts3.8/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  2319. package/ts3.8/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  2320. package/ts3.8/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  2321. package/ts3.8/browser/Shapes/Polygon/index.d.ts +0 -4
  2322. package/ts3.8/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
  2323. package/ts3.8/browser/Shapes/Square/index.d.ts +0 -2
  2324. package/ts3.8/browser/Shapes/Star/StarDrawer.d.ts +0 -5
  2325. package/ts3.8/browser/Shapes/Star/index.d.ts +0 -2
  2326. package/ts3.8/browser/Shapes/Text/TextDrawer.d.ts +0 -8
  2327. package/ts3.8/browser/Shapes/Text/index.d.ts +0 -2
  2328. package/ts3.8/browser/Types/ParticlesGroups.d.ts +0 -4
  2329. package/ts3.8/browser/Types/PathOptions.d.ts +0 -3
  2330. package/ts3.8/browser/Types/RangeValue.d.ts +0 -2
  2331. package/ts3.8/browser/Types/RecursivePartial.d.ts +0 -3
  2332. package/ts3.8/browser/Types/ShapeData.d.ts +0 -5
  2333. package/ts3.8/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
  2334. package/ts3.8/browser/Types/SingleOrMultiple.d.ts +0 -1
  2335. package/ts3.8/browser/Types/index.d.ts +0 -6
  2336. package/ts3.8/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
  2337. package/ts3.8/browser/Updaters/Angle/index.d.ts +0 -2
  2338. package/ts3.8/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
  2339. package/ts3.8/browser/Updaters/Color/index.d.ts +0 -2
  2340. package/ts3.8/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
  2341. package/ts3.8/browser/Updaters/Life/index.d.ts +0 -2
  2342. package/ts3.8/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  2343. package/ts3.8/browser/Updaters/Opacity/index.d.ts +0 -2
  2344. package/ts3.8/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
  2345. package/ts3.8/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  2346. package/ts3.8/browser/Updaters/OutModes/Utils.d.ts +0 -3
  2347. package/ts3.8/browser/Updaters/OutModes/index.d.ts +0 -2
  2348. package/ts3.8/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
  2349. package/ts3.8/browser/Updaters/Roll/index.d.ts +0 -2
  2350. package/ts3.8/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
  2351. package/ts3.8/browser/Updaters/Size/index.d.ts +0 -2
  2352. package/ts3.8/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  2353. package/ts3.8/browser/Updaters/StrokeColor/index.d.ts +0 -2
  2354. package/ts3.8/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  2355. package/ts3.8/browser/Updaters/Tilt/index.d.ts +0 -2
  2356. package/ts3.8/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  2357. package/ts3.8/browser/Updaters/Wobble/index.d.ts +0 -2
  2358. package/ts3.8/browser/Utils/CanvasUtils.d.ts +0 -18
  2359. package/ts3.8/browser/Utils/Circle.d.ts +0 -8
  2360. package/ts3.8/browser/Utils/CircleWarp.d.ts +0 -10
  2361. package/ts3.8/browser/Utils/ColorUtils.d.ts +0 -26
  2362. package/ts3.8/browser/Utils/Constants.d.ts +0 -18
  2363. package/ts3.8/browser/Utils/EventListeners.d.ts +0 -30
  2364. package/ts3.8/browser/Utils/NumberUtils.d.ts +0 -23
  2365. package/ts3.8/browser/Utils/Plugins.d.ts +0 -22
  2366. package/ts3.8/browser/Utils/Point.d.ts +0 -7
  2367. package/ts3.8/browser/Utils/QuadTree.d.ts +0 -23
  2368. package/ts3.8/browser/Utils/Range.d.ts +0 -7
  2369. package/ts3.8/browser/Utils/Rectangle.d.ts +0 -9
  2370. package/ts3.8/browser/Utils/Utils.d.ts +0 -65
  2371. package/ts3.8/browser/Utils/index.d.ts +0 -13
  2372. package/ts3.8/browser/full.d.ts +0 -2
  2373. package/ts3.8/browser/index.d.ts +0 -31
  2374. package/ts3.8/browser/index.slim.d.ts +0 -25
  2375. package/ts3.8/browser/main.d.ts +0 -24
  2376. package/ts3.8/browser/pjs.d.ts +0 -14
  2377. package/ts3.8/browser/slim.d.ts +0 -2
  2378. package/ts3.8/esm/Core/Canvas.d.ts +0 -36
  2379. package/ts3.8/esm/Core/Container.d.ts +0 -64
  2380. package/ts3.8/esm/Core/ExternalInteractorBase.d.ts +0 -12
  2381. package/ts3.8/esm/Core/FrameManager.d.ts +0 -6
  2382. package/ts3.8/esm/Core/InteractionManager.d.ts +0 -11
  2383. package/ts3.8/esm/Core/Interfaces/Colors.d.ts +0 -33
  2384. package/ts3.8/esm/Core/Interfaces/Gradients.d.ts +0 -21
  2385. package/ts3.8/esm/Core/Interfaces/IAttract.d.ts +0 -7
  2386. package/ts3.8/esm/Core/Interfaces/IBounds.d.ts +0 -6
  2387. package/ts3.8/esm/Core/Interfaces/IBubble.d.ts +0 -4
  2388. package/ts3.8/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  2389. package/ts3.8/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  2390. package/ts3.8/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  2391. package/ts3.8/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  2392. package/ts3.8/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
  2393. package/ts3.8/esm/Core/Interfaces/IDelta.d.ts +0 -4
  2394. package/ts3.8/esm/Core/Interfaces/IDimension.d.ts +0 -4
  2395. package/ts3.8/esm/Core/Interfaces/IDistance.d.ts +0 -4
  2396. package/ts3.8/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  2397. package/ts3.8/esm/Core/Interfaces/IInteractor.d.ts +0 -6
  2398. package/ts3.8/esm/Core/Interfaces/IMouseData.d.ts +0 -9
  2399. package/ts3.8/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  2400. package/ts3.8/esm/Core/Interfaces/IParticle.d.ts +0 -59
  2401. package/ts3.8/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  2402. package/ts3.8/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  2403. package/ts3.8/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  2404. package/ts3.8/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
  2405. package/ts3.8/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
  2406. package/ts3.8/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
  2407. package/ts3.8/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  2408. package/ts3.8/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  2409. package/ts3.8/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  2410. package/ts3.8/esm/Core/Interfaces/IPlugin.d.ts +0 -11
  2411. package/ts3.8/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
  2412. package/ts3.8/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
  2413. package/ts3.8/esm/Core/Interfaces/IRepulse.d.ts +0 -7
  2414. package/ts3.8/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  2415. package/ts3.8/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
  2416. package/ts3.8/esm/Core/Interfaces/index.d.ts +0 -33
  2417. package/ts3.8/esm/Core/Loader.d.ts +0 -14
  2418. package/ts3.8/esm/Core/Particle/Mover.d.ts +0 -13
  2419. package/ts3.8/esm/Core/Particle/Vector.d.ts +0 -29
  2420. package/ts3.8/esm/Core/Particle/Vector3d.d.ts +0 -18
  2421. package/ts3.8/esm/Core/Particle.d.ts +0 -84
  2422. package/ts3.8/esm/Core/Particles.d.ts +0 -45
  2423. package/ts3.8/esm/Core/ParticlesInteractorBase.d.ts +0 -12
  2424. package/ts3.8/esm/Core/Retina.d.ts +0 -26
  2425. package/ts3.8/esm/Enums/AnimationStatus.d.ts +0 -4
  2426. package/ts3.8/esm/Enums/Directions/MoveDirection.d.ts +0 -12
  2427. package/ts3.8/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
  2428. package/ts3.8/esm/Enums/Directions/RotateDirection.d.ts +0 -6
  2429. package/ts3.8/esm/Enums/Directions/TiltDirection.d.ts +0 -6
  2430. package/ts3.8/esm/Enums/Directions/index.d.ts +0 -4
  2431. package/ts3.8/esm/Enums/InteractivityDetect.d.ts +0 -5
  2432. package/ts3.8/esm/Enums/Modes/ClickMode.d.ts +0 -9
  2433. package/ts3.8/esm/Enums/Modes/CollisionMode.d.ts +0 -5
  2434. package/ts3.8/esm/Enums/Modes/DestroyMode.d.ts +0 -4
  2435. package/ts3.8/esm/Enums/Modes/DivMode.d.ts +0 -5
  2436. package/ts3.8/esm/Enums/Modes/HoverMode.d.ts +0 -11
  2437. package/ts3.8/esm/Enums/Modes/OutMode.d.ts +0 -10
  2438. package/ts3.8/esm/Enums/Modes/SizeMode.d.ts +0 -4
  2439. package/ts3.8/esm/Enums/Modes/ThemeMode.d.ts +0 -5
  2440. package/ts3.8/esm/Enums/Modes/index.d.ts +0 -8
  2441. package/ts3.8/esm/Enums/Types/AlterType.d.ts +0 -4
  2442. package/ts3.8/esm/Enums/Types/DestroyType.d.ts +0 -5
  2443. package/ts3.8/esm/Enums/Types/DivType.d.ts +0 -4
  2444. package/ts3.8/esm/Enums/Types/EasingType.d.ts +0 -10
  2445. package/ts3.8/esm/Enums/Types/GradientType.d.ts +0 -5
  2446. package/ts3.8/esm/Enums/Types/InteractorType.d.ts +0 -4
  2447. package/ts3.8/esm/Enums/Types/OrbitType.d.ts +0 -4
  2448. package/ts3.8/esm/Enums/Types/ShapeType.d.ts +0 -13
  2449. package/ts3.8/esm/Enums/Types/StartValueType.d.ts +0 -5
  2450. package/ts3.8/esm/Enums/Types/index.d.ts +0 -9
  2451. package/ts3.8/esm/Enums/index.d.ts +0 -5
  2452. package/ts3.8/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
  2453. package/ts3.8/esm/Interactions/External/Attract/index.d.ts +0 -2
  2454. package/ts3.8/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  2455. package/ts3.8/esm/Interactions/External/Bounce/index.d.ts +0 -2
  2456. package/ts3.8/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  2457. package/ts3.8/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  2458. package/ts3.8/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  2459. package/ts3.8/esm/Interactions/External/Bubble/index.d.ts +0 -2
  2460. package/ts3.8/esm/Interactions/External/Connect/Connector.d.ts +0 -8
  2461. package/ts3.8/esm/Interactions/External/Connect/index.d.ts +0 -2
  2462. package/ts3.8/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
  2463. package/ts3.8/esm/Interactions/External/Grab/index.d.ts +0 -2
  2464. package/ts3.8/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
  2465. package/ts3.8/esm/Interactions/External/Repulse/index.d.ts +0 -2
  2466. package/ts3.8/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  2467. package/ts3.8/esm/Interactions/External/Trail/index.d.ts +0 -2
  2468. package/ts3.8/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  2469. package/ts3.8/esm/Interactions/Particles/Attract/index.d.ts +0 -2
  2470. package/ts3.8/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  2471. package/ts3.8/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
  2472. package/ts3.8/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
  2473. package/ts3.8/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  2474. package/ts3.8/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  2475. package/ts3.8/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
  2476. package/ts3.8/esm/Interactions/Particles/Links/index.d.ts +0 -3
  2477. package/ts3.8/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
  2478. package/ts3.8/esm/Options/Classes/AnimatableColor.d.ts +0 -11
  2479. package/ts3.8/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
  2480. package/ts3.8/esm/Options/Classes/AnimationOptions.d.ts +0 -11
  2481. package/ts3.8/esm/Options/Classes/Background/Background.d.ts +0 -14
  2482. package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  2483. package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  2484. package/ts3.8/esm/Options/Classes/ColorAnimation.d.ts +0 -12
  2485. package/ts3.8/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  2486. package/ts3.8/esm/Options/Classes/HslAnimation.d.ts +0 -11
  2487. package/ts3.8/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  2488. package/ts3.8/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  2489. package/ts3.8/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  2490. package/ts3.8/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  2491. package/ts3.8/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  2492. package/ts3.8/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  2493. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  2494. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  2495. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  2496. package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  2497. package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  2498. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  2499. package/ts3.8/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  2500. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  2501. package/ts3.8/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  2502. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  2503. package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  2504. package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  2505. package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  2506. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  2507. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  2508. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  2509. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  2510. package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  2511. package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  2512. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  2513. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  2514. package/ts3.8/esm/Options/Classes/ManualParticle.d.ts +0 -10
  2515. package/ts3.8/esm/Options/Classes/Motion/Motion.d.ts +0 -10
  2516. package/ts3.8/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  2517. package/ts3.8/esm/Options/Classes/Options.d.ts +0 -43
  2518. package/ts3.8/esm/Options/Classes/OptionsColor.d.ts +0 -10
  2519. package/ts3.8/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  2520. package/ts3.8/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  2521. package/ts3.8/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  2522. package/ts3.8/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  2523. package/ts3.8/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  2524. package/ts3.8/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  2525. package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  2526. package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  2527. package/ts3.8/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
  2528. package/ts3.8/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  2529. package/ts3.8/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  2530. package/ts3.8/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
  2531. package/ts3.8/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  2532. package/ts3.8/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  2533. package/ts3.8/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  2534. package/ts3.8/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
  2535. package/ts3.8/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  2536. package/ts3.8/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  2537. package/ts3.8/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  2538. package/ts3.8/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  2539. package/ts3.8/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  2540. package/ts3.8/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  2541. package/ts3.8/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  2542. package/ts3.8/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
  2543. package/ts3.8/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  2544. package/ts3.8/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  2545. package/ts3.8/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  2546. package/ts3.8/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  2547. package/ts3.8/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  2548. package/ts3.8/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  2549. package/ts3.8/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  2550. package/ts3.8/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  2551. package/ts3.8/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  2552. package/ts3.8/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  2553. package/ts3.8/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  2554. package/ts3.8/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
  2555. package/ts3.8/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  2556. package/ts3.8/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
  2557. package/ts3.8/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  2558. package/ts3.8/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
  2559. package/ts3.8/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  2560. package/ts3.8/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  2561. package/ts3.8/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  2562. package/ts3.8/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  2563. package/ts3.8/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  2564. package/ts3.8/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  2565. package/ts3.8/esm/Options/Classes/Random.d.ts +0 -9
  2566. package/ts3.8/esm/Options/Classes/Responsive.d.ts +0 -10
  2567. package/ts3.8/esm/Options/Classes/Theme/Theme.d.ts +0 -12
  2568. package/ts3.8/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  2569. package/ts3.8/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
  2570. package/ts3.8/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
  2571. package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  2572. package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  2573. package/ts3.8/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  2574. package/ts3.8/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
  2575. package/ts3.8/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  2576. package/ts3.8/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  2577. package/ts3.8/esm/Options/Interfaces/IAnimation.d.ts +0 -6
  2578. package/ts3.8/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
  2579. package/ts3.8/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
  2580. package/ts3.8/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
  2581. package/ts3.8/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
  2582. package/ts3.8/esm/Options/Interfaces/IOptions.d.ts +0 -33
  2583. package/ts3.8/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
  2584. package/ts3.8/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  2585. package/ts3.8/esm/Options/Interfaces/IRandom.d.ts +0 -4
  2586. package/ts3.8/esm/Options/Interfaces/IResponsive.d.ts +0 -6
  2587. package/ts3.8/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  2588. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  2589. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  2590. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  2591. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  2592. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  2593. package/ts3.8/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  2594. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  2595. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  2596. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  2597. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  2598. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  2599. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  2600. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  2601. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  2602. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  2603. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  2604. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  2605. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  2606. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  2607. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  2608. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  2609. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  2610. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  2611. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  2612. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  2613. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  2614. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  2615. package/ts3.8/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  2616. package/ts3.8/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  2617. package/ts3.8/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  2618. package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  2619. package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  2620. package/ts3.8/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  2621. package/ts3.8/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  2622. package/ts3.8/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  2623. package/ts3.8/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  2624. package/ts3.8/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  2625. package/ts3.8/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  2626. package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  2627. package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  2628. package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  2629. package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  2630. package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  2631. package/ts3.8/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  2632. package/ts3.8/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  2633. package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  2634. package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  2635. package/ts3.8/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  2636. package/ts3.8/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  2637. package/ts3.8/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  2638. package/ts3.8/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  2639. package/ts3.8/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  2640. package/ts3.8/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  2641. package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  2642. package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  2643. package/ts3.8/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  2644. package/ts3.8/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  2645. package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  2646. package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  2647. package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  2648. package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  2649. package/ts3.8/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  2650. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  2651. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  2652. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  2653. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  2654. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  2655. package/ts3.8/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  2656. package/ts3.8/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  2657. package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  2658. package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  2659. package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  2660. package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  2661. package/ts3.8/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  2662. package/ts3.8/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  2663. package/ts3.8/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  2664. package/ts3.8/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  2665. package/ts3.8/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  2666. package/ts3.8/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  2667. package/ts3.8/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
  2668. package/ts3.8/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  2669. package/ts3.8/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
  2670. package/ts3.8/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  2671. package/ts3.8/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  2672. package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  2673. package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  2674. package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  2675. package/ts3.8/esm/Plugins/Absorbers/plugin.d.ts +0 -2
  2676. package/ts3.8/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  2677. package/ts3.8/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  2678. package/ts3.8/esm/Plugins/Emitters/Emitters.d.ts +0 -24
  2679. package/ts3.8/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
  2680. package/ts3.8/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  2681. package/ts3.8/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  2682. package/ts3.8/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
  2683. package/ts3.8/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  2684. package/ts3.8/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  2685. package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  2686. package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  2687. package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  2688. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  2689. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  2690. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  2691. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  2692. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  2693. package/ts3.8/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
  2694. package/ts3.8/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  2695. package/ts3.8/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  2696. package/ts3.8/esm/Plugins/Emitters/plugin.d.ts +0 -3
  2697. package/ts3.8/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  2698. package/ts3.8/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  2699. package/ts3.8/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  2700. package/ts3.8/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  2701. package/ts3.8/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  2702. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  2703. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  2704. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  2705. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  2706. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  2707. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  2708. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  2709. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  2710. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  2711. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  2712. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  2713. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  2714. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  2715. package/ts3.8/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  2716. package/ts3.8/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
  2717. package/ts3.8/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
  2718. package/ts3.8/esm/Shapes/Circle/index.d.ts +0 -2
  2719. package/ts3.8/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
  2720. package/ts3.8/esm/Shapes/Image/Utils.d.ts +0 -25
  2721. package/ts3.8/esm/Shapes/Image/index.d.ts +0 -2
  2722. package/ts3.8/esm/Shapes/Line/LineDrawer.d.ts +0 -5
  2723. package/ts3.8/esm/Shapes/Line/index.d.ts +0 -2
  2724. package/ts3.8/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  2725. package/ts3.8/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  2726. package/ts3.8/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  2727. package/ts3.8/esm/Shapes/Polygon/index.d.ts +0 -4
  2728. package/ts3.8/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
  2729. package/ts3.8/esm/Shapes/Square/index.d.ts +0 -2
  2730. package/ts3.8/esm/Shapes/Star/StarDrawer.d.ts +0 -5
  2731. package/ts3.8/esm/Shapes/Star/index.d.ts +0 -2
  2732. package/ts3.8/esm/Shapes/Text/TextDrawer.d.ts +0 -8
  2733. package/ts3.8/esm/Shapes/Text/index.d.ts +0 -2
  2734. package/ts3.8/esm/Types/ParticlesGroups.d.ts +0 -4
  2735. package/ts3.8/esm/Types/PathOptions.d.ts +0 -3
  2736. package/ts3.8/esm/Types/RangeValue.d.ts +0 -2
  2737. package/ts3.8/esm/Types/RecursivePartial.d.ts +0 -3
  2738. package/ts3.8/esm/Types/ShapeData.d.ts +0 -5
  2739. package/ts3.8/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
  2740. package/ts3.8/esm/Types/SingleOrMultiple.d.ts +0 -1
  2741. package/ts3.8/esm/Types/index.d.ts +0 -6
  2742. package/ts3.8/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
  2743. package/ts3.8/esm/Updaters/Angle/index.d.ts +0 -2
  2744. package/ts3.8/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
  2745. package/ts3.8/esm/Updaters/Color/index.d.ts +0 -2
  2746. package/ts3.8/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
  2747. package/ts3.8/esm/Updaters/Life/index.d.ts +0 -2
  2748. package/ts3.8/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  2749. package/ts3.8/esm/Updaters/Opacity/index.d.ts +0 -2
  2750. package/ts3.8/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
  2751. package/ts3.8/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  2752. package/ts3.8/esm/Updaters/OutModes/Utils.d.ts +0 -3
  2753. package/ts3.8/esm/Updaters/OutModes/index.d.ts +0 -2
  2754. package/ts3.8/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
  2755. package/ts3.8/esm/Updaters/Roll/index.d.ts +0 -2
  2756. package/ts3.8/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
  2757. package/ts3.8/esm/Updaters/Size/index.d.ts +0 -2
  2758. package/ts3.8/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  2759. package/ts3.8/esm/Updaters/StrokeColor/index.d.ts +0 -2
  2760. package/ts3.8/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  2761. package/ts3.8/esm/Updaters/Tilt/index.d.ts +0 -2
  2762. package/ts3.8/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  2763. package/ts3.8/esm/Updaters/Wobble/index.d.ts +0 -2
  2764. package/ts3.8/esm/Utils/CanvasUtils.d.ts +0 -18
  2765. package/ts3.8/esm/Utils/Circle.d.ts +0 -8
  2766. package/ts3.8/esm/Utils/CircleWarp.d.ts +0 -10
  2767. package/ts3.8/esm/Utils/ColorUtils.d.ts +0 -26
  2768. package/ts3.8/esm/Utils/Constants.d.ts +0 -18
  2769. package/ts3.8/esm/Utils/EventListeners.d.ts +0 -30
  2770. package/ts3.8/esm/Utils/NumberUtils.d.ts +0 -23
  2771. package/ts3.8/esm/Utils/Plugins.d.ts +0 -22
  2772. package/ts3.8/esm/Utils/Point.d.ts +0 -7
  2773. package/ts3.8/esm/Utils/QuadTree.d.ts +0 -23
  2774. package/ts3.8/esm/Utils/Range.d.ts +0 -7
  2775. package/ts3.8/esm/Utils/Rectangle.d.ts +0 -9
  2776. package/ts3.8/esm/Utils/Utils.d.ts +0 -65
  2777. package/ts3.8/esm/Utils/index.d.ts +0 -13
  2778. package/ts3.8/esm/full.d.ts +0 -2
  2779. package/ts3.8/esm/index.d.ts +0 -31
  2780. package/ts3.8/esm/index.slim.d.ts +0 -25
  2781. package/ts3.8/esm/main.d.ts +0 -24
  2782. package/ts3.8/esm/pjs.d.ts +0 -14
  2783. package/ts3.8/esm/slim.d.ts +0 -2
  2784. package/ts3.8/full.d.ts +0 -2
  2785. package/ts3.8/index.d.ts +0 -31
  2786. package/ts3.8/index.slim.d.ts +0 -25
  2787. package/ts3.8/main.d.ts +0 -24
  2788. package/ts3.8/pjs.d.ts +0 -14
  2789. package/ts3.8/slim.d.ts +0 -2
  2790. package/ts4.0/Core/Canvas.d.ts +0 -36
  2791. package/ts4.0/Core/Container.d.ts +0 -64
  2792. package/ts4.0/Core/ExternalInteractorBase.d.ts +0 -12
  2793. package/ts4.0/Core/FrameManager.d.ts +0 -6
  2794. package/ts4.0/Core/InteractionManager.d.ts +0 -11
  2795. package/ts4.0/Core/Interfaces/Colors.d.ts +0 -33
  2796. package/ts4.0/Core/Interfaces/Gradients.d.ts +0 -21
  2797. package/ts4.0/Core/Interfaces/IAttract.d.ts +0 -7
  2798. package/ts4.0/Core/Interfaces/IBounds.d.ts +0 -6
  2799. package/ts4.0/Core/Interfaces/IBubble.d.ts +0 -4
  2800. package/ts4.0/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  2801. package/ts4.0/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  2802. package/ts4.0/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  2803. package/ts4.0/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  2804. package/ts4.0/Core/Interfaces/ICoordinates.d.ts +0 -7
  2805. package/ts4.0/Core/Interfaces/IDelta.d.ts +0 -4
  2806. package/ts4.0/Core/Interfaces/IDimension.d.ts +0 -4
  2807. package/ts4.0/Core/Interfaces/IDistance.d.ts +0 -4
  2808. package/ts4.0/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  2809. package/ts4.0/Core/Interfaces/IInteractor.d.ts +0 -6
  2810. package/ts4.0/Core/Interfaces/IMouseData.d.ts +0 -9
  2811. package/ts4.0/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  2812. package/ts4.0/Core/Interfaces/IParticle.d.ts +0 -59
  2813. package/ts4.0/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  2814. package/ts4.0/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  2815. package/ts4.0/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  2816. package/ts4.0/Core/Interfaces/IParticleLife.d.ts +0 -7
  2817. package/ts4.0/Core/Interfaces/IParticleLoops.d.ts +0 -4
  2818. package/ts4.0/Core/Interfaces/IParticleSpin.d.ts +0 -9
  2819. package/ts4.0/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  2820. package/ts4.0/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  2821. package/ts4.0/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  2822. package/ts4.0/Core/Interfaces/IPlugin.d.ts +0 -11
  2823. package/ts4.0/Core/Interfaces/IRangeValue.d.ts +0 -4
  2824. package/ts4.0/Core/Interfaces/IRectSideResult.d.ts +0 -5
  2825. package/ts4.0/Core/Interfaces/IRepulse.d.ts +0 -7
  2826. package/ts4.0/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  2827. package/ts4.0/Core/Interfaces/IShapeValues.d.ts +0 -8
  2828. package/ts4.0/Core/Interfaces/index.d.ts +0 -33
  2829. package/ts4.0/Core/Loader.d.ts +0 -14
  2830. package/ts4.0/Core/Particle/Mover.d.ts +0 -13
  2831. package/ts4.0/Core/Particle/Vector.d.ts +0 -29
  2832. package/ts4.0/Core/Particle/Vector3d.d.ts +0 -18
  2833. package/ts4.0/Core/Particle.d.ts +0 -84
  2834. package/ts4.0/Core/Particles.d.ts +0 -45
  2835. package/ts4.0/Core/ParticlesInteractorBase.d.ts +0 -12
  2836. package/ts4.0/Core/Retina.d.ts +0 -26
  2837. package/ts4.0/Enums/AnimationStatus.d.ts +0 -4
  2838. package/ts4.0/Enums/Directions/MoveDirection.d.ts +0 -12
  2839. package/ts4.0/Enums/Directions/OutModeDirection.d.ts +0 -6
  2840. package/ts4.0/Enums/Directions/RotateDirection.d.ts +0 -6
  2841. package/ts4.0/Enums/Directions/TiltDirection.d.ts +0 -6
  2842. package/ts4.0/Enums/Directions/index.d.ts +0 -4
  2843. package/ts4.0/Enums/InteractivityDetect.d.ts +0 -5
  2844. package/ts4.0/Enums/Modes/ClickMode.d.ts +0 -9
  2845. package/ts4.0/Enums/Modes/CollisionMode.d.ts +0 -5
  2846. package/ts4.0/Enums/Modes/DestroyMode.d.ts +0 -4
  2847. package/ts4.0/Enums/Modes/DivMode.d.ts +0 -5
  2848. package/ts4.0/Enums/Modes/HoverMode.d.ts +0 -11
  2849. package/ts4.0/Enums/Modes/OutMode.d.ts +0 -10
  2850. package/ts4.0/Enums/Modes/SizeMode.d.ts +0 -4
  2851. package/ts4.0/Enums/Modes/ThemeMode.d.ts +0 -5
  2852. package/ts4.0/Enums/Modes/index.d.ts +0 -8
  2853. package/ts4.0/Enums/Types/AlterType.d.ts +0 -4
  2854. package/ts4.0/Enums/Types/DestroyType.d.ts +0 -5
  2855. package/ts4.0/Enums/Types/DivType.d.ts +0 -4
  2856. package/ts4.0/Enums/Types/EasingType.d.ts +0 -10
  2857. package/ts4.0/Enums/Types/GradientType.d.ts +0 -5
  2858. package/ts4.0/Enums/Types/InteractorType.d.ts +0 -4
  2859. package/ts4.0/Enums/Types/OrbitType.d.ts +0 -4
  2860. package/ts4.0/Enums/Types/ShapeType.d.ts +0 -13
  2861. package/ts4.0/Enums/Types/StartValueType.d.ts +0 -5
  2862. package/ts4.0/Enums/Types/index.d.ts +0 -9
  2863. package/ts4.0/Enums/index.d.ts +0 -5
  2864. package/ts4.0/Interactions/External/Attract/Attractor.d.ts +0 -11
  2865. package/ts4.0/Interactions/External/Attract/index.d.ts +0 -2
  2866. package/ts4.0/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  2867. package/ts4.0/Interactions/External/Bounce/index.d.ts +0 -2
  2868. package/ts4.0/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  2869. package/ts4.0/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  2870. package/ts4.0/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  2871. package/ts4.0/Interactions/External/Bubble/index.d.ts +0 -2
  2872. package/ts4.0/Interactions/External/Connect/Connector.d.ts +0 -8
  2873. package/ts4.0/Interactions/External/Connect/index.d.ts +0 -2
  2874. package/ts4.0/Interactions/External/Grab/Grabber.d.ts +0 -8
  2875. package/ts4.0/Interactions/External/Grab/index.d.ts +0 -2
  2876. package/ts4.0/Interactions/External/Repulse/Repulser.d.ts +0 -12
  2877. package/ts4.0/Interactions/External/Repulse/index.d.ts +0 -2
  2878. package/ts4.0/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  2879. package/ts4.0/Interactions/External/Trail/index.d.ts +0 -2
  2880. package/ts4.0/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  2881. package/ts4.0/Interactions/Particles/Attract/index.d.ts +0 -2
  2882. package/ts4.0/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  2883. package/ts4.0/Interactions/Particles/Collisions/index.d.ts +0 -2
  2884. package/ts4.0/Interactions/Particles/Links/ILink.d.ts +0 -9
  2885. package/ts4.0/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  2886. package/ts4.0/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  2887. package/ts4.0/Interactions/Particles/Links/Linker.d.ts +0 -11
  2888. package/ts4.0/Interactions/Particles/Links/index.d.ts +0 -3
  2889. package/ts4.0/Interactions/Particles/Links/plugin.d.ts +0 -2
  2890. package/ts4.0/Options/Classes/AnimatableColor.d.ts +0 -11
  2891. package/ts4.0/Options/Classes/AnimatableGradient.d.ts +0 -53
  2892. package/ts4.0/Options/Classes/AnimationOptions.d.ts +0 -11
  2893. package/ts4.0/Options/Classes/Background/Background.d.ts +0 -14
  2894. package/ts4.0/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  2895. package/ts4.0/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  2896. package/ts4.0/Options/Classes/ColorAnimation.d.ts +0 -12
  2897. package/ts4.0/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  2898. package/ts4.0/Options/Classes/HslAnimation.d.ts +0 -11
  2899. package/ts4.0/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  2900. package/ts4.0/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  2901. package/ts4.0/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  2902. package/ts4.0/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  2903. package/ts4.0/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  2904. package/ts4.0/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  2905. package/ts4.0/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  2906. package/ts4.0/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  2907. package/ts4.0/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  2908. package/ts4.0/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  2909. package/ts4.0/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  2910. package/ts4.0/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  2911. package/ts4.0/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  2912. package/ts4.0/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  2913. package/ts4.0/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  2914. package/ts4.0/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  2915. package/ts4.0/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  2916. package/ts4.0/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  2917. package/ts4.0/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  2918. package/ts4.0/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  2919. package/ts4.0/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  2920. package/ts4.0/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  2921. package/ts4.0/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  2922. package/ts4.0/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  2923. package/ts4.0/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  2924. package/ts4.0/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  2925. package/ts4.0/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  2926. package/ts4.0/Options/Classes/ManualParticle.d.ts +0 -10
  2927. package/ts4.0/Options/Classes/Motion/Motion.d.ts +0 -10
  2928. package/ts4.0/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  2929. package/ts4.0/Options/Classes/Options.d.ts +0 -43
  2930. package/ts4.0/Options/Classes/OptionsColor.d.ts +0 -10
  2931. package/ts4.0/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  2932. package/ts4.0/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  2933. package/ts4.0/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  2934. package/ts4.0/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  2935. package/ts4.0/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  2936. package/ts4.0/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  2937. package/ts4.0/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  2938. package/ts4.0/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  2939. package/ts4.0/Options/Classes/Particles/Life/Life.d.ts +0 -12
  2940. package/ts4.0/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  2941. package/ts4.0/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  2942. package/ts4.0/Options/Classes/Particles/Links/Links.d.ts +0 -22
  2943. package/ts4.0/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  2944. package/ts4.0/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  2945. package/ts4.0/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  2946. package/ts4.0/Options/Classes/Particles/Move/Move.d.ts +0 -44
  2947. package/ts4.0/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  2948. package/ts4.0/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  2949. package/ts4.0/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  2950. package/ts4.0/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  2951. package/ts4.0/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  2952. package/ts4.0/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  2953. package/ts4.0/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  2954. package/ts4.0/Options/Classes/Particles/Number/Density.d.ts +0 -12
  2955. package/ts4.0/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  2956. package/ts4.0/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  2957. package/ts4.0/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  2958. package/ts4.0/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  2959. package/ts4.0/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  2960. package/ts4.0/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  2961. package/ts4.0/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  2962. package/ts4.0/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  2963. package/ts4.0/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  2964. package/ts4.0/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  2965. package/ts4.0/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  2966. package/ts4.0/Options/Classes/Particles/Shadow.d.ts +0 -13
  2967. package/ts4.0/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  2968. package/ts4.0/Options/Classes/Particles/Size/Size.d.ts +0 -12
  2969. package/ts4.0/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  2970. package/ts4.0/Options/Classes/Particles/Stroke.d.ts +0 -11
  2971. package/ts4.0/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  2972. package/ts4.0/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  2973. package/ts4.0/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  2974. package/ts4.0/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  2975. package/ts4.0/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  2976. package/ts4.0/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  2977. package/ts4.0/Options/Classes/Random.d.ts +0 -9
  2978. package/ts4.0/Options/Classes/Responsive.d.ts +0 -10
  2979. package/ts4.0/Options/Classes/Theme/Theme.d.ts +0 -12
  2980. package/ts4.0/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  2981. package/ts4.0/Options/Classes/ValueWithRandom.d.ts +0 -10
  2982. package/ts4.0/Options/Interfaces/Background/IBackground.d.ts +0 -9
  2983. package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  2984. package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  2985. package/ts4.0/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  2986. package/ts4.0/Options/Interfaces/IAnimatable.d.ts +0 -4
  2987. package/ts4.0/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  2988. package/ts4.0/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  2989. package/ts4.0/Options/Interfaces/IAnimation.d.ts +0 -6
  2990. package/ts4.0/Options/Interfaces/IColorAnimation.d.ts +0 -5
  2991. package/ts4.0/Options/Interfaces/IHslAnimation.d.ts +0 -6
  2992. package/ts4.0/Options/Interfaces/IManualParticle.d.ts +0 -7
  2993. package/ts4.0/Options/Interfaces/IOptionLoader.d.ts +0 -4
  2994. package/ts4.0/Options/Interfaces/IOptions.d.ts +0 -33
  2995. package/ts4.0/Options/Interfaces/IOptionsColor.d.ts +0 -2
  2996. package/ts4.0/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  2997. package/ts4.0/Options/Interfaces/IRandom.d.ts +0 -4
  2998. package/ts4.0/Options/Interfaces/IResponsive.d.ts +0 -6
  2999. package/ts4.0/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  3000. package/ts4.0/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  3001. package/ts4.0/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  3002. package/ts4.0/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  3003. package/ts4.0/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  3004. package/ts4.0/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  3005. package/ts4.0/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  3006. package/ts4.0/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  3007. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  3008. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  3009. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  3010. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  3011. package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  3012. package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  3013. package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  3014. package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  3015. package/ts4.0/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  3016. package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  3017. package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  3018. package/ts4.0/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  3019. package/ts4.0/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  3020. package/ts4.0/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  3021. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  3022. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  3023. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  3024. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  3025. package/ts4.0/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  3026. package/ts4.0/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  3027. package/ts4.0/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  3028. package/ts4.0/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  3029. package/ts4.0/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  3030. package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  3031. package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  3032. package/ts4.0/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  3033. package/ts4.0/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  3034. package/ts4.0/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  3035. package/ts4.0/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  3036. package/ts4.0/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  3037. package/ts4.0/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  3038. package/ts4.0/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  3039. package/ts4.0/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  3040. package/ts4.0/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  3041. package/ts4.0/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  3042. package/ts4.0/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  3043. package/ts4.0/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  3044. package/ts4.0/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  3045. package/ts4.0/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  3046. package/ts4.0/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  3047. package/ts4.0/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  3048. package/ts4.0/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  3049. package/ts4.0/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  3050. package/ts4.0/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  3051. package/ts4.0/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  3052. package/ts4.0/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  3053. package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  3054. package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  3055. package/ts4.0/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  3056. package/ts4.0/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  3057. package/ts4.0/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  3058. package/ts4.0/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  3059. package/ts4.0/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  3060. package/ts4.0/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  3061. package/ts4.0/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  3062. package/ts4.0/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  3063. package/ts4.0/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  3064. package/ts4.0/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  3065. package/ts4.0/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  3066. package/ts4.0/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  3067. package/ts4.0/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  3068. package/ts4.0/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  3069. package/ts4.0/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  3070. package/ts4.0/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  3071. package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  3072. package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  3073. package/ts4.0/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  3074. package/ts4.0/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  3075. package/ts4.0/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  3076. package/ts4.0/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  3077. package/ts4.0/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  3078. package/ts4.0/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  3079. package/ts4.0/Plugins/Absorbers/Absorbers.d.ts +0 -25
  3080. package/ts4.0/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  3081. package/ts4.0/Plugins/Absorbers/Enums/index.d.ts +0 -1
  3082. package/ts4.0/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  3083. package/ts4.0/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  3084. package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  3085. package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  3086. package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  3087. package/ts4.0/Plugins/Absorbers/plugin.d.ts +0 -2
  3088. package/ts4.0/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  3089. package/ts4.0/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  3090. package/ts4.0/Plugins/Emitters/Emitters.d.ts +0 -24
  3091. package/ts4.0/Plugins/Emitters/EmittersMain.d.ts +0 -5
  3092. package/ts4.0/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  3093. package/ts4.0/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  3094. package/ts4.0/Plugins/Emitters/Enums/index.d.ts +0 -2
  3095. package/ts4.0/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  3096. package/ts4.0/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  3097. package/ts4.0/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  3098. package/ts4.0/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  3099. package/ts4.0/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  3100. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  3101. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  3102. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  3103. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  3104. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  3105. package/ts4.0/Plugins/Emitters/ShapeManager.d.ts +0 -6
  3106. package/ts4.0/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  3107. package/ts4.0/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  3108. package/ts4.0/Plugins/Emitters/plugin.d.ts +0 -3
  3109. package/ts4.0/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  3110. package/ts4.0/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  3111. package/ts4.0/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  3112. package/ts4.0/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  3113. package/ts4.0/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  3114. package/ts4.0/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  3115. package/ts4.0/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  3116. package/ts4.0/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  3117. package/ts4.0/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  3118. package/ts4.0/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  3119. package/ts4.0/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  3120. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  3121. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  3122. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  3123. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  3124. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  3125. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  3126. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  3127. package/ts4.0/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  3128. package/ts4.0/Plugins/PolygonMask/plugin.d.ts +0 -2
  3129. package/ts4.0/Shapes/Circle/CircleDrawer.d.ts +0 -5
  3130. package/ts4.0/Shapes/Circle/index.d.ts +0 -2
  3131. package/ts4.0/Shapes/Image/ImageDrawer.d.ts +0 -22
  3132. package/ts4.0/Shapes/Image/Utils.d.ts +0 -25
  3133. package/ts4.0/Shapes/Image/index.d.ts +0 -2
  3134. package/ts4.0/Shapes/Line/LineDrawer.d.ts +0 -5
  3135. package/ts4.0/Shapes/Line/index.d.ts +0 -2
  3136. package/ts4.0/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  3137. package/ts4.0/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  3138. package/ts4.0/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  3139. package/ts4.0/Shapes/Polygon/index.d.ts +0 -4
  3140. package/ts4.0/Shapes/Square/SquareDrawer.d.ts +0 -5
  3141. package/ts4.0/Shapes/Square/index.d.ts +0 -2
  3142. package/ts4.0/Shapes/Star/StarDrawer.d.ts +0 -5
  3143. package/ts4.0/Shapes/Star/index.d.ts +0 -2
  3144. package/ts4.0/Shapes/Text/TextDrawer.d.ts +0 -8
  3145. package/ts4.0/Shapes/Text/index.d.ts +0 -2
  3146. package/ts4.0/Types/ParticlesGroups.d.ts +0 -4
  3147. package/ts4.0/Types/PathOptions.d.ts +0 -3
  3148. package/ts4.0/Types/RangeValue.d.ts +0 -2
  3149. package/ts4.0/Types/RecursivePartial.d.ts +0 -3
  3150. package/ts4.0/Types/ShapeData.d.ts +0 -5
  3151. package/ts4.0/Types/ShapeDrawerFunctions.d.ts +0 -11
  3152. package/ts4.0/Types/SingleOrMultiple.d.ts +0 -1
  3153. package/ts4.0/Types/index.d.ts +0 -6
  3154. package/ts4.0/Updaters/Angle/AngleUpdater.d.ts +0 -6
  3155. package/ts4.0/Updaters/Angle/index.d.ts +0 -2
  3156. package/ts4.0/Updaters/Color/ColorUpdater.d.ts +0 -6
  3157. package/ts4.0/Updaters/Color/index.d.ts +0 -2
  3158. package/ts4.0/Updaters/Life/LifeUpdater.d.ts +0 -9
  3159. package/ts4.0/Updaters/Life/index.d.ts +0 -2
  3160. package/ts4.0/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  3161. package/ts4.0/Updaters/Opacity/index.d.ts +0 -2
  3162. package/ts4.0/Updaters/OutModes/IBounceData.d.ts +0 -12
  3163. package/ts4.0/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  3164. package/ts4.0/Updaters/OutModes/Utils.d.ts +0 -3
  3165. package/ts4.0/Updaters/OutModes/index.d.ts +0 -2
  3166. package/ts4.0/Updaters/Roll/RollUpdater.d.ts +0 -6
  3167. package/ts4.0/Updaters/Roll/index.d.ts +0 -2
  3168. package/ts4.0/Updaters/Size/SizeUpdater.d.ts +0 -6
  3169. package/ts4.0/Updaters/Size/index.d.ts +0 -2
  3170. package/ts4.0/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  3171. package/ts4.0/Updaters/StrokeColor/index.d.ts +0 -2
  3172. package/ts4.0/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  3173. package/ts4.0/Updaters/Tilt/index.d.ts +0 -2
  3174. package/ts4.0/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  3175. package/ts4.0/Updaters/Wobble/index.d.ts +0 -2
  3176. package/ts4.0/Utils/CanvasUtils.d.ts +0 -18
  3177. package/ts4.0/Utils/Circle.d.ts +0 -8
  3178. package/ts4.0/Utils/CircleWarp.d.ts +0 -10
  3179. package/ts4.0/Utils/ColorUtils.d.ts +0 -26
  3180. package/ts4.0/Utils/Constants.d.ts +0 -18
  3181. package/ts4.0/Utils/EventListeners.d.ts +0 -30
  3182. package/ts4.0/Utils/NumberUtils.d.ts +0 -23
  3183. package/ts4.0/Utils/Plugins.d.ts +0 -22
  3184. package/ts4.0/Utils/Point.d.ts +0 -7
  3185. package/ts4.0/Utils/QuadTree.d.ts +0 -23
  3186. package/ts4.0/Utils/Range.d.ts +0 -7
  3187. package/ts4.0/Utils/Rectangle.d.ts +0 -9
  3188. package/ts4.0/Utils/Utils.d.ts +0 -65
  3189. package/ts4.0/Utils/index.d.ts +0 -13
  3190. package/ts4.0/browser/Core/Canvas.d.ts +0 -36
  3191. package/ts4.0/browser/Core/Container.d.ts +0 -64
  3192. package/ts4.0/browser/Core/ExternalInteractorBase.d.ts +0 -12
  3193. package/ts4.0/browser/Core/FrameManager.d.ts +0 -6
  3194. package/ts4.0/browser/Core/InteractionManager.d.ts +0 -11
  3195. package/ts4.0/browser/Core/Interfaces/Colors.d.ts +0 -33
  3196. package/ts4.0/browser/Core/Interfaces/Gradients.d.ts +0 -21
  3197. package/ts4.0/browser/Core/Interfaces/IAttract.d.ts +0 -7
  3198. package/ts4.0/browser/Core/Interfaces/IBounds.d.ts +0 -6
  3199. package/ts4.0/browser/Core/Interfaces/IBubble.d.ts +0 -4
  3200. package/ts4.0/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  3201. package/ts4.0/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  3202. package/ts4.0/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  3203. package/ts4.0/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  3204. package/ts4.0/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
  3205. package/ts4.0/browser/Core/Interfaces/IDelta.d.ts +0 -4
  3206. package/ts4.0/browser/Core/Interfaces/IDimension.d.ts +0 -4
  3207. package/ts4.0/browser/Core/Interfaces/IDistance.d.ts +0 -4
  3208. package/ts4.0/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  3209. package/ts4.0/browser/Core/Interfaces/IInteractor.d.ts +0 -6
  3210. package/ts4.0/browser/Core/Interfaces/IMouseData.d.ts +0 -9
  3211. package/ts4.0/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  3212. package/ts4.0/browser/Core/Interfaces/IParticle.d.ts +0 -59
  3213. package/ts4.0/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  3214. package/ts4.0/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  3215. package/ts4.0/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  3216. package/ts4.0/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
  3217. package/ts4.0/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
  3218. package/ts4.0/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
  3219. package/ts4.0/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  3220. package/ts4.0/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  3221. package/ts4.0/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  3222. package/ts4.0/browser/Core/Interfaces/IPlugin.d.ts +0 -11
  3223. package/ts4.0/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
  3224. package/ts4.0/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
  3225. package/ts4.0/browser/Core/Interfaces/IRepulse.d.ts +0 -7
  3226. package/ts4.0/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  3227. package/ts4.0/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
  3228. package/ts4.0/browser/Core/Interfaces/index.d.ts +0 -33
  3229. package/ts4.0/browser/Core/Loader.d.ts +0 -14
  3230. package/ts4.0/browser/Core/Particle/Mover.d.ts +0 -13
  3231. package/ts4.0/browser/Core/Particle/Vector.d.ts +0 -29
  3232. package/ts4.0/browser/Core/Particle/Vector3d.d.ts +0 -18
  3233. package/ts4.0/browser/Core/Particle.d.ts +0 -84
  3234. package/ts4.0/browser/Core/Particles.d.ts +0 -45
  3235. package/ts4.0/browser/Core/ParticlesInteractorBase.d.ts +0 -12
  3236. package/ts4.0/browser/Core/Retina.d.ts +0 -26
  3237. package/ts4.0/browser/Enums/AnimationStatus.d.ts +0 -4
  3238. package/ts4.0/browser/Enums/Directions/MoveDirection.d.ts +0 -12
  3239. package/ts4.0/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
  3240. package/ts4.0/browser/Enums/Directions/RotateDirection.d.ts +0 -6
  3241. package/ts4.0/browser/Enums/Directions/TiltDirection.d.ts +0 -6
  3242. package/ts4.0/browser/Enums/Directions/index.d.ts +0 -4
  3243. package/ts4.0/browser/Enums/InteractivityDetect.d.ts +0 -5
  3244. package/ts4.0/browser/Enums/Modes/ClickMode.d.ts +0 -9
  3245. package/ts4.0/browser/Enums/Modes/CollisionMode.d.ts +0 -5
  3246. package/ts4.0/browser/Enums/Modes/DestroyMode.d.ts +0 -4
  3247. package/ts4.0/browser/Enums/Modes/DivMode.d.ts +0 -5
  3248. package/ts4.0/browser/Enums/Modes/HoverMode.d.ts +0 -11
  3249. package/ts4.0/browser/Enums/Modes/OutMode.d.ts +0 -10
  3250. package/ts4.0/browser/Enums/Modes/SizeMode.d.ts +0 -4
  3251. package/ts4.0/browser/Enums/Modes/ThemeMode.d.ts +0 -5
  3252. package/ts4.0/browser/Enums/Modes/index.d.ts +0 -8
  3253. package/ts4.0/browser/Enums/Types/AlterType.d.ts +0 -4
  3254. package/ts4.0/browser/Enums/Types/DestroyType.d.ts +0 -5
  3255. package/ts4.0/browser/Enums/Types/DivType.d.ts +0 -4
  3256. package/ts4.0/browser/Enums/Types/EasingType.d.ts +0 -10
  3257. package/ts4.0/browser/Enums/Types/GradientType.d.ts +0 -5
  3258. package/ts4.0/browser/Enums/Types/InteractorType.d.ts +0 -4
  3259. package/ts4.0/browser/Enums/Types/OrbitType.d.ts +0 -4
  3260. package/ts4.0/browser/Enums/Types/ShapeType.d.ts +0 -13
  3261. package/ts4.0/browser/Enums/Types/StartValueType.d.ts +0 -5
  3262. package/ts4.0/browser/Enums/Types/index.d.ts +0 -9
  3263. package/ts4.0/browser/Enums/index.d.ts +0 -5
  3264. package/ts4.0/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
  3265. package/ts4.0/browser/Interactions/External/Attract/index.d.ts +0 -2
  3266. package/ts4.0/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  3267. package/ts4.0/browser/Interactions/External/Bounce/index.d.ts +0 -2
  3268. package/ts4.0/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  3269. package/ts4.0/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  3270. package/ts4.0/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  3271. package/ts4.0/browser/Interactions/External/Bubble/index.d.ts +0 -2
  3272. package/ts4.0/browser/Interactions/External/Connect/Connector.d.ts +0 -8
  3273. package/ts4.0/browser/Interactions/External/Connect/index.d.ts +0 -2
  3274. package/ts4.0/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
  3275. package/ts4.0/browser/Interactions/External/Grab/index.d.ts +0 -2
  3276. package/ts4.0/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
  3277. package/ts4.0/browser/Interactions/External/Repulse/index.d.ts +0 -2
  3278. package/ts4.0/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  3279. package/ts4.0/browser/Interactions/External/Trail/index.d.ts +0 -2
  3280. package/ts4.0/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  3281. package/ts4.0/browser/Interactions/Particles/Attract/index.d.ts +0 -2
  3282. package/ts4.0/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  3283. package/ts4.0/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
  3284. package/ts4.0/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
  3285. package/ts4.0/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  3286. package/ts4.0/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  3287. package/ts4.0/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
  3288. package/ts4.0/browser/Interactions/Particles/Links/index.d.ts +0 -3
  3289. package/ts4.0/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
  3290. package/ts4.0/browser/Options/Classes/AnimatableColor.d.ts +0 -11
  3291. package/ts4.0/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
  3292. package/ts4.0/browser/Options/Classes/AnimationOptions.d.ts +0 -11
  3293. package/ts4.0/browser/Options/Classes/Background/Background.d.ts +0 -14
  3294. package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  3295. package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  3296. package/ts4.0/browser/Options/Classes/ColorAnimation.d.ts +0 -12
  3297. package/ts4.0/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  3298. package/ts4.0/browser/Options/Classes/HslAnimation.d.ts +0 -11
  3299. package/ts4.0/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  3300. package/ts4.0/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  3301. package/ts4.0/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  3302. package/ts4.0/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  3303. package/ts4.0/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  3304. package/ts4.0/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  3305. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  3306. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  3307. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  3308. package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  3309. package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  3310. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  3311. package/ts4.0/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  3312. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  3313. package/ts4.0/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  3314. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  3315. package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  3316. package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  3317. package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  3318. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  3319. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  3320. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  3321. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  3322. package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  3323. package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  3324. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  3325. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  3326. package/ts4.0/browser/Options/Classes/ManualParticle.d.ts +0 -10
  3327. package/ts4.0/browser/Options/Classes/Motion/Motion.d.ts +0 -10
  3328. package/ts4.0/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  3329. package/ts4.0/browser/Options/Classes/Options.d.ts +0 -43
  3330. package/ts4.0/browser/Options/Classes/OptionsColor.d.ts +0 -10
  3331. package/ts4.0/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  3332. package/ts4.0/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  3333. package/ts4.0/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  3334. package/ts4.0/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  3335. package/ts4.0/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  3336. package/ts4.0/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  3337. package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  3338. package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  3339. package/ts4.0/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
  3340. package/ts4.0/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  3341. package/ts4.0/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  3342. package/ts4.0/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
  3343. package/ts4.0/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  3344. package/ts4.0/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  3345. package/ts4.0/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  3346. package/ts4.0/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
  3347. package/ts4.0/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  3348. package/ts4.0/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  3349. package/ts4.0/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  3350. package/ts4.0/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  3351. package/ts4.0/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  3352. package/ts4.0/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  3353. package/ts4.0/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  3354. package/ts4.0/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
  3355. package/ts4.0/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  3356. package/ts4.0/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  3357. package/ts4.0/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  3358. package/ts4.0/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  3359. package/ts4.0/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  3360. package/ts4.0/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  3361. package/ts4.0/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  3362. package/ts4.0/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  3363. package/ts4.0/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  3364. package/ts4.0/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  3365. package/ts4.0/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  3366. package/ts4.0/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
  3367. package/ts4.0/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  3368. package/ts4.0/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
  3369. package/ts4.0/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  3370. package/ts4.0/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
  3371. package/ts4.0/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  3372. package/ts4.0/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  3373. package/ts4.0/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  3374. package/ts4.0/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  3375. package/ts4.0/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  3376. package/ts4.0/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  3377. package/ts4.0/browser/Options/Classes/Random.d.ts +0 -9
  3378. package/ts4.0/browser/Options/Classes/Responsive.d.ts +0 -10
  3379. package/ts4.0/browser/Options/Classes/Theme/Theme.d.ts +0 -12
  3380. package/ts4.0/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  3381. package/ts4.0/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
  3382. package/ts4.0/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
  3383. package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  3384. package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  3385. package/ts4.0/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  3386. package/ts4.0/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
  3387. package/ts4.0/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  3388. package/ts4.0/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  3389. package/ts4.0/browser/Options/Interfaces/IAnimation.d.ts +0 -6
  3390. package/ts4.0/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
  3391. package/ts4.0/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
  3392. package/ts4.0/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
  3393. package/ts4.0/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
  3394. package/ts4.0/browser/Options/Interfaces/IOptions.d.ts +0 -33
  3395. package/ts4.0/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
  3396. package/ts4.0/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  3397. package/ts4.0/browser/Options/Interfaces/IRandom.d.ts +0 -4
  3398. package/ts4.0/browser/Options/Interfaces/IResponsive.d.ts +0 -6
  3399. package/ts4.0/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  3400. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  3401. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  3402. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  3403. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  3404. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  3405. package/ts4.0/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  3406. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  3407. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  3408. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  3409. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  3410. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  3411. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  3412. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  3413. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  3414. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  3415. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  3416. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  3417. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  3418. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  3419. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  3420. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  3421. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  3422. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  3423. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  3424. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  3425. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  3426. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  3427. package/ts4.0/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  3428. package/ts4.0/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  3429. package/ts4.0/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  3430. package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  3431. package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  3432. package/ts4.0/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  3433. package/ts4.0/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  3434. package/ts4.0/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  3435. package/ts4.0/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  3436. package/ts4.0/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  3437. package/ts4.0/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  3438. package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  3439. package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  3440. package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  3441. package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  3442. package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  3443. package/ts4.0/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  3444. package/ts4.0/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  3445. package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  3446. package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  3447. package/ts4.0/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  3448. package/ts4.0/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  3449. package/ts4.0/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  3450. package/ts4.0/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  3451. package/ts4.0/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  3452. package/ts4.0/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  3453. package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  3454. package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  3455. package/ts4.0/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  3456. package/ts4.0/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  3457. package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  3458. package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  3459. package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  3460. package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  3461. package/ts4.0/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  3462. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  3463. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  3464. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  3465. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  3466. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  3467. package/ts4.0/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  3468. package/ts4.0/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  3469. package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  3470. package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  3471. package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  3472. package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  3473. package/ts4.0/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  3474. package/ts4.0/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  3475. package/ts4.0/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  3476. package/ts4.0/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  3477. package/ts4.0/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  3478. package/ts4.0/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  3479. package/ts4.0/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
  3480. package/ts4.0/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  3481. package/ts4.0/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
  3482. package/ts4.0/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  3483. package/ts4.0/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  3484. package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  3485. package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  3486. package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  3487. package/ts4.0/browser/Plugins/Absorbers/plugin.d.ts +0 -2
  3488. package/ts4.0/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  3489. package/ts4.0/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  3490. package/ts4.0/browser/Plugins/Emitters/Emitters.d.ts +0 -24
  3491. package/ts4.0/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
  3492. package/ts4.0/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  3493. package/ts4.0/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  3494. package/ts4.0/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
  3495. package/ts4.0/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  3496. package/ts4.0/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  3497. package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  3498. package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  3499. package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  3500. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  3501. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  3502. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  3503. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  3504. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  3505. package/ts4.0/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
  3506. package/ts4.0/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  3507. package/ts4.0/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  3508. package/ts4.0/browser/Plugins/Emitters/plugin.d.ts +0 -3
  3509. package/ts4.0/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  3510. package/ts4.0/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  3511. package/ts4.0/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  3512. package/ts4.0/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  3513. package/ts4.0/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  3514. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  3515. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  3516. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  3517. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  3518. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  3519. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  3520. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  3521. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  3522. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  3523. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  3524. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  3525. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  3526. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  3527. package/ts4.0/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  3528. package/ts4.0/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
  3529. package/ts4.0/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
  3530. package/ts4.0/browser/Shapes/Circle/index.d.ts +0 -2
  3531. package/ts4.0/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
  3532. package/ts4.0/browser/Shapes/Image/Utils.d.ts +0 -25
  3533. package/ts4.0/browser/Shapes/Image/index.d.ts +0 -2
  3534. package/ts4.0/browser/Shapes/Line/LineDrawer.d.ts +0 -5
  3535. package/ts4.0/browser/Shapes/Line/index.d.ts +0 -2
  3536. package/ts4.0/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  3537. package/ts4.0/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  3538. package/ts4.0/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  3539. package/ts4.0/browser/Shapes/Polygon/index.d.ts +0 -4
  3540. package/ts4.0/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
  3541. package/ts4.0/browser/Shapes/Square/index.d.ts +0 -2
  3542. package/ts4.0/browser/Shapes/Star/StarDrawer.d.ts +0 -5
  3543. package/ts4.0/browser/Shapes/Star/index.d.ts +0 -2
  3544. package/ts4.0/browser/Shapes/Text/TextDrawer.d.ts +0 -8
  3545. package/ts4.0/browser/Shapes/Text/index.d.ts +0 -2
  3546. package/ts4.0/browser/Types/ParticlesGroups.d.ts +0 -4
  3547. package/ts4.0/browser/Types/PathOptions.d.ts +0 -3
  3548. package/ts4.0/browser/Types/RangeValue.d.ts +0 -2
  3549. package/ts4.0/browser/Types/RecursivePartial.d.ts +0 -3
  3550. package/ts4.0/browser/Types/ShapeData.d.ts +0 -5
  3551. package/ts4.0/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
  3552. package/ts4.0/browser/Types/SingleOrMultiple.d.ts +0 -1
  3553. package/ts4.0/browser/Types/index.d.ts +0 -6
  3554. package/ts4.0/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
  3555. package/ts4.0/browser/Updaters/Angle/index.d.ts +0 -2
  3556. package/ts4.0/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
  3557. package/ts4.0/browser/Updaters/Color/index.d.ts +0 -2
  3558. package/ts4.0/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
  3559. package/ts4.0/browser/Updaters/Life/index.d.ts +0 -2
  3560. package/ts4.0/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  3561. package/ts4.0/browser/Updaters/Opacity/index.d.ts +0 -2
  3562. package/ts4.0/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
  3563. package/ts4.0/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  3564. package/ts4.0/browser/Updaters/OutModes/Utils.d.ts +0 -3
  3565. package/ts4.0/browser/Updaters/OutModes/index.d.ts +0 -2
  3566. package/ts4.0/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
  3567. package/ts4.0/browser/Updaters/Roll/index.d.ts +0 -2
  3568. package/ts4.0/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
  3569. package/ts4.0/browser/Updaters/Size/index.d.ts +0 -2
  3570. package/ts4.0/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  3571. package/ts4.0/browser/Updaters/StrokeColor/index.d.ts +0 -2
  3572. package/ts4.0/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  3573. package/ts4.0/browser/Updaters/Tilt/index.d.ts +0 -2
  3574. package/ts4.0/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  3575. package/ts4.0/browser/Updaters/Wobble/index.d.ts +0 -2
  3576. package/ts4.0/browser/Utils/CanvasUtils.d.ts +0 -18
  3577. package/ts4.0/browser/Utils/Circle.d.ts +0 -8
  3578. package/ts4.0/browser/Utils/CircleWarp.d.ts +0 -10
  3579. package/ts4.0/browser/Utils/ColorUtils.d.ts +0 -26
  3580. package/ts4.0/browser/Utils/Constants.d.ts +0 -18
  3581. package/ts4.0/browser/Utils/EventListeners.d.ts +0 -30
  3582. package/ts4.0/browser/Utils/NumberUtils.d.ts +0 -23
  3583. package/ts4.0/browser/Utils/Plugins.d.ts +0 -22
  3584. package/ts4.0/browser/Utils/Point.d.ts +0 -7
  3585. package/ts4.0/browser/Utils/QuadTree.d.ts +0 -23
  3586. package/ts4.0/browser/Utils/Range.d.ts +0 -7
  3587. package/ts4.0/browser/Utils/Rectangle.d.ts +0 -9
  3588. package/ts4.0/browser/Utils/Utils.d.ts +0 -65
  3589. package/ts4.0/browser/Utils/index.d.ts +0 -13
  3590. package/ts4.0/browser/full.d.ts +0 -2
  3591. package/ts4.0/browser/index.d.ts +0 -31
  3592. package/ts4.0/browser/index.slim.d.ts +0 -25
  3593. package/ts4.0/browser/main.d.ts +0 -24
  3594. package/ts4.0/browser/pjs.d.ts +0 -14
  3595. package/ts4.0/browser/slim.d.ts +0 -2
  3596. package/ts4.0/esm/Core/Canvas.d.ts +0 -36
  3597. package/ts4.0/esm/Core/Container.d.ts +0 -64
  3598. package/ts4.0/esm/Core/ExternalInteractorBase.d.ts +0 -12
  3599. package/ts4.0/esm/Core/FrameManager.d.ts +0 -6
  3600. package/ts4.0/esm/Core/InteractionManager.d.ts +0 -11
  3601. package/ts4.0/esm/Core/Interfaces/Colors.d.ts +0 -33
  3602. package/ts4.0/esm/Core/Interfaces/Gradients.d.ts +0 -21
  3603. package/ts4.0/esm/Core/Interfaces/IAttract.d.ts +0 -7
  3604. package/ts4.0/esm/Core/Interfaces/IBounds.d.ts +0 -6
  3605. package/ts4.0/esm/Core/Interfaces/IBubble.d.ts +0 -4
  3606. package/ts4.0/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  3607. package/ts4.0/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  3608. package/ts4.0/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  3609. package/ts4.0/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  3610. package/ts4.0/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
  3611. package/ts4.0/esm/Core/Interfaces/IDelta.d.ts +0 -4
  3612. package/ts4.0/esm/Core/Interfaces/IDimension.d.ts +0 -4
  3613. package/ts4.0/esm/Core/Interfaces/IDistance.d.ts +0 -4
  3614. package/ts4.0/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  3615. package/ts4.0/esm/Core/Interfaces/IInteractor.d.ts +0 -6
  3616. package/ts4.0/esm/Core/Interfaces/IMouseData.d.ts +0 -9
  3617. package/ts4.0/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  3618. package/ts4.0/esm/Core/Interfaces/IParticle.d.ts +0 -59
  3619. package/ts4.0/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  3620. package/ts4.0/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  3621. package/ts4.0/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  3622. package/ts4.0/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
  3623. package/ts4.0/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
  3624. package/ts4.0/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
  3625. package/ts4.0/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  3626. package/ts4.0/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  3627. package/ts4.0/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  3628. package/ts4.0/esm/Core/Interfaces/IPlugin.d.ts +0 -11
  3629. package/ts4.0/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
  3630. package/ts4.0/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
  3631. package/ts4.0/esm/Core/Interfaces/IRepulse.d.ts +0 -7
  3632. package/ts4.0/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  3633. package/ts4.0/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
  3634. package/ts4.0/esm/Core/Interfaces/index.d.ts +0 -33
  3635. package/ts4.0/esm/Core/Loader.d.ts +0 -14
  3636. package/ts4.0/esm/Core/Particle/Mover.d.ts +0 -13
  3637. package/ts4.0/esm/Core/Particle/Vector.d.ts +0 -29
  3638. package/ts4.0/esm/Core/Particle/Vector3d.d.ts +0 -18
  3639. package/ts4.0/esm/Core/Particle.d.ts +0 -84
  3640. package/ts4.0/esm/Core/Particles.d.ts +0 -45
  3641. package/ts4.0/esm/Core/ParticlesInteractorBase.d.ts +0 -12
  3642. package/ts4.0/esm/Core/Retina.d.ts +0 -26
  3643. package/ts4.0/esm/Enums/AnimationStatus.d.ts +0 -4
  3644. package/ts4.0/esm/Enums/Directions/MoveDirection.d.ts +0 -12
  3645. package/ts4.0/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
  3646. package/ts4.0/esm/Enums/Directions/RotateDirection.d.ts +0 -6
  3647. package/ts4.0/esm/Enums/Directions/TiltDirection.d.ts +0 -6
  3648. package/ts4.0/esm/Enums/Directions/index.d.ts +0 -4
  3649. package/ts4.0/esm/Enums/InteractivityDetect.d.ts +0 -5
  3650. package/ts4.0/esm/Enums/Modes/ClickMode.d.ts +0 -9
  3651. package/ts4.0/esm/Enums/Modes/CollisionMode.d.ts +0 -5
  3652. package/ts4.0/esm/Enums/Modes/DestroyMode.d.ts +0 -4
  3653. package/ts4.0/esm/Enums/Modes/DivMode.d.ts +0 -5
  3654. package/ts4.0/esm/Enums/Modes/HoverMode.d.ts +0 -11
  3655. package/ts4.0/esm/Enums/Modes/OutMode.d.ts +0 -10
  3656. package/ts4.0/esm/Enums/Modes/SizeMode.d.ts +0 -4
  3657. package/ts4.0/esm/Enums/Modes/ThemeMode.d.ts +0 -5
  3658. package/ts4.0/esm/Enums/Modes/index.d.ts +0 -8
  3659. package/ts4.0/esm/Enums/Types/AlterType.d.ts +0 -4
  3660. package/ts4.0/esm/Enums/Types/DestroyType.d.ts +0 -5
  3661. package/ts4.0/esm/Enums/Types/DivType.d.ts +0 -4
  3662. package/ts4.0/esm/Enums/Types/EasingType.d.ts +0 -10
  3663. package/ts4.0/esm/Enums/Types/GradientType.d.ts +0 -5
  3664. package/ts4.0/esm/Enums/Types/InteractorType.d.ts +0 -4
  3665. package/ts4.0/esm/Enums/Types/OrbitType.d.ts +0 -4
  3666. package/ts4.0/esm/Enums/Types/ShapeType.d.ts +0 -13
  3667. package/ts4.0/esm/Enums/Types/StartValueType.d.ts +0 -5
  3668. package/ts4.0/esm/Enums/Types/index.d.ts +0 -9
  3669. package/ts4.0/esm/Enums/index.d.ts +0 -5
  3670. package/ts4.0/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
  3671. package/ts4.0/esm/Interactions/External/Attract/index.d.ts +0 -2
  3672. package/ts4.0/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  3673. package/ts4.0/esm/Interactions/External/Bounce/index.d.ts +0 -2
  3674. package/ts4.0/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  3675. package/ts4.0/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  3676. package/ts4.0/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  3677. package/ts4.0/esm/Interactions/External/Bubble/index.d.ts +0 -2
  3678. package/ts4.0/esm/Interactions/External/Connect/Connector.d.ts +0 -8
  3679. package/ts4.0/esm/Interactions/External/Connect/index.d.ts +0 -2
  3680. package/ts4.0/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
  3681. package/ts4.0/esm/Interactions/External/Grab/index.d.ts +0 -2
  3682. package/ts4.0/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
  3683. package/ts4.0/esm/Interactions/External/Repulse/index.d.ts +0 -2
  3684. package/ts4.0/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  3685. package/ts4.0/esm/Interactions/External/Trail/index.d.ts +0 -2
  3686. package/ts4.0/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  3687. package/ts4.0/esm/Interactions/Particles/Attract/index.d.ts +0 -2
  3688. package/ts4.0/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  3689. package/ts4.0/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
  3690. package/ts4.0/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
  3691. package/ts4.0/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  3692. package/ts4.0/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  3693. package/ts4.0/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
  3694. package/ts4.0/esm/Interactions/Particles/Links/index.d.ts +0 -3
  3695. package/ts4.0/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
  3696. package/ts4.0/esm/Options/Classes/AnimatableColor.d.ts +0 -11
  3697. package/ts4.0/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
  3698. package/ts4.0/esm/Options/Classes/AnimationOptions.d.ts +0 -11
  3699. package/ts4.0/esm/Options/Classes/Background/Background.d.ts +0 -14
  3700. package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  3701. package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  3702. package/ts4.0/esm/Options/Classes/ColorAnimation.d.ts +0 -12
  3703. package/ts4.0/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  3704. package/ts4.0/esm/Options/Classes/HslAnimation.d.ts +0 -11
  3705. package/ts4.0/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  3706. package/ts4.0/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  3707. package/ts4.0/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  3708. package/ts4.0/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  3709. package/ts4.0/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  3710. package/ts4.0/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  3711. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  3712. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  3713. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  3714. package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  3715. package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  3716. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  3717. package/ts4.0/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  3718. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  3719. package/ts4.0/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  3720. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  3721. package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  3722. package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  3723. package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  3724. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  3725. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  3726. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  3727. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  3728. package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  3729. package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  3730. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  3731. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  3732. package/ts4.0/esm/Options/Classes/ManualParticle.d.ts +0 -10
  3733. package/ts4.0/esm/Options/Classes/Motion/Motion.d.ts +0 -10
  3734. package/ts4.0/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  3735. package/ts4.0/esm/Options/Classes/Options.d.ts +0 -43
  3736. package/ts4.0/esm/Options/Classes/OptionsColor.d.ts +0 -10
  3737. package/ts4.0/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  3738. package/ts4.0/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  3739. package/ts4.0/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  3740. package/ts4.0/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  3741. package/ts4.0/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  3742. package/ts4.0/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  3743. package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  3744. package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  3745. package/ts4.0/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
  3746. package/ts4.0/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  3747. package/ts4.0/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  3748. package/ts4.0/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
  3749. package/ts4.0/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  3750. package/ts4.0/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  3751. package/ts4.0/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  3752. package/ts4.0/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
  3753. package/ts4.0/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  3754. package/ts4.0/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  3755. package/ts4.0/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  3756. package/ts4.0/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  3757. package/ts4.0/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  3758. package/ts4.0/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  3759. package/ts4.0/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  3760. package/ts4.0/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
  3761. package/ts4.0/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  3762. package/ts4.0/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  3763. package/ts4.0/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  3764. package/ts4.0/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  3765. package/ts4.0/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  3766. package/ts4.0/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  3767. package/ts4.0/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  3768. package/ts4.0/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  3769. package/ts4.0/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  3770. package/ts4.0/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  3771. package/ts4.0/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  3772. package/ts4.0/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
  3773. package/ts4.0/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  3774. package/ts4.0/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
  3775. package/ts4.0/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  3776. package/ts4.0/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
  3777. package/ts4.0/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  3778. package/ts4.0/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  3779. package/ts4.0/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  3780. package/ts4.0/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  3781. package/ts4.0/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  3782. package/ts4.0/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  3783. package/ts4.0/esm/Options/Classes/Random.d.ts +0 -9
  3784. package/ts4.0/esm/Options/Classes/Responsive.d.ts +0 -10
  3785. package/ts4.0/esm/Options/Classes/Theme/Theme.d.ts +0 -12
  3786. package/ts4.0/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  3787. package/ts4.0/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
  3788. package/ts4.0/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
  3789. package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  3790. package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  3791. package/ts4.0/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  3792. package/ts4.0/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
  3793. package/ts4.0/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  3794. package/ts4.0/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  3795. package/ts4.0/esm/Options/Interfaces/IAnimation.d.ts +0 -6
  3796. package/ts4.0/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
  3797. package/ts4.0/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
  3798. package/ts4.0/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
  3799. package/ts4.0/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
  3800. package/ts4.0/esm/Options/Interfaces/IOptions.d.ts +0 -33
  3801. package/ts4.0/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
  3802. package/ts4.0/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  3803. package/ts4.0/esm/Options/Interfaces/IRandom.d.ts +0 -4
  3804. package/ts4.0/esm/Options/Interfaces/IResponsive.d.ts +0 -6
  3805. package/ts4.0/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  3806. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  3807. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  3808. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  3809. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  3810. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  3811. package/ts4.0/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  3812. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  3813. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  3814. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  3815. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  3816. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  3817. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  3818. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  3819. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  3820. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  3821. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  3822. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  3823. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  3824. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  3825. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  3826. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  3827. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  3828. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  3829. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  3830. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  3831. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  3832. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  3833. package/ts4.0/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  3834. package/ts4.0/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  3835. package/ts4.0/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  3836. package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  3837. package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  3838. package/ts4.0/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  3839. package/ts4.0/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  3840. package/ts4.0/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  3841. package/ts4.0/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  3842. package/ts4.0/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  3843. package/ts4.0/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  3844. package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  3845. package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  3846. package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  3847. package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  3848. package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  3849. package/ts4.0/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  3850. package/ts4.0/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  3851. package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  3852. package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  3853. package/ts4.0/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  3854. package/ts4.0/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  3855. package/ts4.0/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  3856. package/ts4.0/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  3857. package/ts4.0/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  3858. package/ts4.0/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  3859. package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  3860. package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  3861. package/ts4.0/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  3862. package/ts4.0/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  3863. package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  3864. package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  3865. package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  3866. package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  3867. package/ts4.0/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  3868. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  3869. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  3870. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  3871. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  3872. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  3873. package/ts4.0/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  3874. package/ts4.0/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  3875. package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  3876. package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  3877. package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  3878. package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  3879. package/ts4.0/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  3880. package/ts4.0/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  3881. package/ts4.0/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  3882. package/ts4.0/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  3883. package/ts4.0/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  3884. package/ts4.0/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  3885. package/ts4.0/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
  3886. package/ts4.0/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  3887. package/ts4.0/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
  3888. package/ts4.0/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  3889. package/ts4.0/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  3890. package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  3891. package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  3892. package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  3893. package/ts4.0/esm/Plugins/Absorbers/plugin.d.ts +0 -2
  3894. package/ts4.0/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  3895. package/ts4.0/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  3896. package/ts4.0/esm/Plugins/Emitters/Emitters.d.ts +0 -24
  3897. package/ts4.0/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
  3898. package/ts4.0/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  3899. package/ts4.0/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  3900. package/ts4.0/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
  3901. package/ts4.0/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  3902. package/ts4.0/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  3903. package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  3904. package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  3905. package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  3906. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  3907. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  3908. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  3909. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  3910. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  3911. package/ts4.0/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
  3912. package/ts4.0/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  3913. package/ts4.0/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  3914. package/ts4.0/esm/Plugins/Emitters/plugin.d.ts +0 -3
  3915. package/ts4.0/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  3916. package/ts4.0/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  3917. package/ts4.0/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  3918. package/ts4.0/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  3919. package/ts4.0/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  3920. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  3921. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  3922. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  3923. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  3924. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  3925. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  3926. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  3927. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  3928. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  3929. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  3930. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  3931. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  3932. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  3933. package/ts4.0/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  3934. package/ts4.0/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
  3935. package/ts4.0/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
  3936. package/ts4.0/esm/Shapes/Circle/index.d.ts +0 -2
  3937. package/ts4.0/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
  3938. package/ts4.0/esm/Shapes/Image/Utils.d.ts +0 -25
  3939. package/ts4.0/esm/Shapes/Image/index.d.ts +0 -2
  3940. package/ts4.0/esm/Shapes/Line/LineDrawer.d.ts +0 -5
  3941. package/ts4.0/esm/Shapes/Line/index.d.ts +0 -2
  3942. package/ts4.0/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  3943. package/ts4.0/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  3944. package/ts4.0/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  3945. package/ts4.0/esm/Shapes/Polygon/index.d.ts +0 -4
  3946. package/ts4.0/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
  3947. package/ts4.0/esm/Shapes/Square/index.d.ts +0 -2
  3948. package/ts4.0/esm/Shapes/Star/StarDrawer.d.ts +0 -5
  3949. package/ts4.0/esm/Shapes/Star/index.d.ts +0 -2
  3950. package/ts4.0/esm/Shapes/Text/TextDrawer.d.ts +0 -8
  3951. package/ts4.0/esm/Shapes/Text/index.d.ts +0 -2
  3952. package/ts4.0/esm/Types/ParticlesGroups.d.ts +0 -4
  3953. package/ts4.0/esm/Types/PathOptions.d.ts +0 -3
  3954. package/ts4.0/esm/Types/RangeValue.d.ts +0 -2
  3955. package/ts4.0/esm/Types/RecursivePartial.d.ts +0 -3
  3956. package/ts4.0/esm/Types/ShapeData.d.ts +0 -5
  3957. package/ts4.0/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
  3958. package/ts4.0/esm/Types/SingleOrMultiple.d.ts +0 -1
  3959. package/ts4.0/esm/Types/index.d.ts +0 -6
  3960. package/ts4.0/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
  3961. package/ts4.0/esm/Updaters/Angle/index.d.ts +0 -2
  3962. package/ts4.0/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
  3963. package/ts4.0/esm/Updaters/Color/index.d.ts +0 -2
  3964. package/ts4.0/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
  3965. package/ts4.0/esm/Updaters/Life/index.d.ts +0 -2
  3966. package/ts4.0/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  3967. package/ts4.0/esm/Updaters/Opacity/index.d.ts +0 -2
  3968. package/ts4.0/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
  3969. package/ts4.0/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  3970. package/ts4.0/esm/Updaters/OutModes/Utils.d.ts +0 -3
  3971. package/ts4.0/esm/Updaters/OutModes/index.d.ts +0 -2
  3972. package/ts4.0/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
  3973. package/ts4.0/esm/Updaters/Roll/index.d.ts +0 -2
  3974. package/ts4.0/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
  3975. package/ts4.0/esm/Updaters/Size/index.d.ts +0 -2
  3976. package/ts4.0/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  3977. package/ts4.0/esm/Updaters/StrokeColor/index.d.ts +0 -2
  3978. package/ts4.0/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  3979. package/ts4.0/esm/Updaters/Tilt/index.d.ts +0 -2
  3980. package/ts4.0/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  3981. package/ts4.0/esm/Updaters/Wobble/index.d.ts +0 -2
  3982. package/ts4.0/esm/Utils/CanvasUtils.d.ts +0 -18
  3983. package/ts4.0/esm/Utils/Circle.d.ts +0 -8
  3984. package/ts4.0/esm/Utils/CircleWarp.d.ts +0 -10
  3985. package/ts4.0/esm/Utils/ColorUtils.d.ts +0 -26
  3986. package/ts4.0/esm/Utils/Constants.d.ts +0 -18
  3987. package/ts4.0/esm/Utils/EventListeners.d.ts +0 -30
  3988. package/ts4.0/esm/Utils/NumberUtils.d.ts +0 -23
  3989. package/ts4.0/esm/Utils/Plugins.d.ts +0 -22
  3990. package/ts4.0/esm/Utils/Point.d.ts +0 -7
  3991. package/ts4.0/esm/Utils/QuadTree.d.ts +0 -23
  3992. package/ts4.0/esm/Utils/Range.d.ts +0 -7
  3993. package/ts4.0/esm/Utils/Rectangle.d.ts +0 -9
  3994. package/ts4.0/esm/Utils/Utils.d.ts +0 -65
  3995. package/ts4.0/esm/Utils/index.d.ts +0 -13
  3996. package/ts4.0/esm/full.d.ts +0 -2
  3997. package/ts4.0/esm/index.d.ts +0 -31
  3998. package/ts4.0/esm/index.slim.d.ts +0 -25
  3999. package/ts4.0/esm/main.d.ts +0 -24
  4000. package/ts4.0/esm/pjs.d.ts +0 -14
  4001. package/ts4.0/esm/slim.d.ts +0 -2
  4002. package/ts4.0/full.d.ts +0 -2
  4003. package/ts4.0/index.d.ts +0 -31
  4004. package/ts4.0/index.slim.d.ts +0 -25
  4005. package/ts4.0/main.d.ts +0 -24
  4006. package/ts4.0/pjs.d.ts +0 -14
  4007. package/ts4.0/slim.d.ts +0 -2
@@ -1,2 +1,2 @@
1
- /*! tsParticles v1.34.1 by Matteo Bruni */
2
- !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var i=e();for(var o in i)("object"==typeof exports?exports:t)[o]=i[o]}}(this,(function(){return(()=>{"use strict";var t={d:(e,i)=>{for(var o in i)t.o(i,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:i[o]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r:t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}},e={};t.r(e),t.d(e,{AlterType:()=>g,AnimationStatus:()=>b,CanvasUtils:()=>n,Circle:()=>te,CircleWarp:()=>ie,ClickMode:()=>d,CollisionMode:()=>p,ColorUtils:()=>s,Constants:()=>ht,Container:()=>fo,DestroyMode:()=>h,DestroyType:()=>w,DivMode:()=>u,DivType:()=>P,EasingType:()=>C,ExternalInteractorBase:()=>ns,GradientType:()=>x,HoverMode:()=>v,InteractivityDetect:()=>S,InteractorType:()=>k,Main:()=>zo,MoveDirection:()=>a,NumberUtils:()=>i,OrbitType:()=>O,OutMode:()=>f,OutModeDirection:()=>l,Particle:()=>Mi,ParticlesInteractorBase:()=>fs,Point:()=>pe,Rectangle:()=>ee,RotateDirection:()=>r,ShapeType:()=>M,SizeMode:()=>y,StartValueType:()=>z,ThemeMode:()=>m,TiltDirection:()=>c,Utils:()=>o,Vector:()=>R,loadSlim:()=>zs,pJSDom:()=>Os,particlesJS:()=>Cs,tsParticles:()=>Ps});var i={};t.r(i),t.d(i,{calcEasing:()=>$,clamp:()=>T,collisionVelocity:()=>W,getDistance:()=>V,getDistances:()=>H,getParticleBaseVelocity:()=>_,getParticleDirectionAngle:()=>B,getRangeMax:()=>F,getRangeMin:()=>D,getRangeValue:()=>A,getValue:()=>q,mix:()=>I,randomInRange:()=>E,setRangeValue:()=>L});var o={};t.r(o),t.d(o,{animate:()=>J,areBoundsInside:()=>et,arrayRandomIndex:()=>Z,calculateBounds:()=>it,cancelAnimation:()=>X,circleBounce:()=>ct,circleBounceDataFromParticle:()=>lt,deepExtend:()=>ot,divMode:()=>rt,divModeExecute:()=>nt,isDivModeEnabled:()=>st,isInArray:()=>Y,isPointInside:()=>tt,isSsr:()=>N,itemFromArray:()=>K,loadFont:()=>Q,rectBounce:()=>dt,singleDivModeExecute:()=>at});var s={};t.r(s),t.d(s,{colorMix:()=>At,colorToHsl:()=>ft,colorToRgb:()=>pt,getHslAnimationFromHsl:()=>qt,getHslFromAnimation:()=>Lt,getLinkColor:()=>Dt,getLinkRandomColor:()=>Ft,getRandomRgbColor:()=>Rt,getStyleFromHsl:()=>It,getStyleFromHsv:()=>Et,getStyleFromRgb:()=>Tt,hslToHsv:()=>xt,hslToRgb:()=>gt,hslaToHsva:()=>kt,hslaToRgba:()=>wt,hsvToHsl:()=>Mt,hsvToRgb:()=>Pt,hsvaToHsla:()=>zt,hsvaToRgba:()=>Ct,rgbToHsl:()=>yt,rgbToHsv:()=>Ot,rgbaToHsva:()=>St,stringToAlpha:()=>mt,stringToRgb:()=>bt});var n={};t.r(n),t.d(n,{clear:()=>_t,drawConnectLine:()=>Ut,drawEllipse:()=>Zt,drawGrabLine:()=>Gt,drawLinkLine:()=>Wt,drawLinkTriangle:()=>$t,drawParticle:()=>Nt,drawParticlePlugin:()=>Qt,drawPlugin:()=>Yt,drawShape:()=>Jt,drawShapeAfterEffect:()=>Xt,gradient:()=>jt,paintBase:()=>Bt});var a,r,l,c,d,h,u,v,p,f,y,m,b,g,w,x,k,M,z,P,C,O,S;!function(t){t.bottom="bottom",t.bottomLeft="bottom-left",t.bottomRight="bottom-right",t.left="left",t.none="none",t.right="right",t.top="top",t.topLeft="top-left",t.topRight="top-right"}(a||(a={})),function(t){t.clockwise="clockwise",t.counterClockwise="counter-clockwise",t.random="random"}(r||(r={})),function(t){t.bottom="bottom",t.left="left",t.right="right",t.top="top"}(l||(l={})),function(t){t.clockwise="clockwise",t.counterClockwise="counter-clockwise",t.random="random"}(c||(c={})),function(t){t.attract="attract",t.bubble="bubble",t.push="push",t.remove="remove",t.repulse="repulse",t.pause="pause",t.trail="trail"}(d||(d={})),function(t){t.none="none",t.split="split"}(h||(h={})),function(t){t.bounce="bounce",t.bubble="bubble",t.repulse="repulse"}(u||(u={})),function(t){t.attract="attract",t.bounce="bounce",t.bubble="bubble",t.connect="connect",t.grab="grab",t.light="light",t.repulse="repulse",t.slow="slow",t.trail="trail"}(v||(v={})),function(t){t.absorb="absorb",t.bounce="bounce",t.destroy="destroy"}(p||(p={})),function(t){t.bounce="bounce",t.bounceHorizontal="bounce-horizontal",t.bounceVertical="bounce-vertical",t.none="none",t.out="out",t.destroy="destroy",t.split="split"}(f||(f={})),function(t){t.precise="precise",t.percent="percent"}(y||(y={})),function(t){t.any="any",t.dark="dark",t.light="light"}(m||(m={})),function(t){t[t.increasing=0]="increasing",t[t.decreasing=1]="decreasing"}(b||(b={})),function(t){t.darken="darken",t.enlighten="enlighten"}(g||(g={})),function(t){t.none="none",t.max="max",t.min="min"}(w||(w={})),function(t){t.linear="linear",t.radial="radial",t.random="random"}(x||(x={})),function(t){t[t.External=0]="External",t[t.Particles=1]="Particles"}(k||(k={})),function(t){t.char="char",t.character="character",t.circle="circle",t.edge="edge",t.image="image",t.images="images",t.line="line",t.polygon="polygon",t.square="square",t.star="star",t.triangle="triangle"}(M||(M={})),function(t){t.max="max",t.min="min",t.random="random"}(z||(z={})),function(t){t.circle="circle",t.rectangle="rectangle"}(P||(P={})),function(t){t.easeOutBack="ease-out-back",t.easeOutCirc="ease-out-circ",t.easeOutCubic="ease-out-cubic",t.easeOutQuad="ease-out-quad",t.easeOutQuart="ease-out-quart",t.easeOutQuint="ease-out-quint",t.easeOutExpo="ease-out-expo",t.easeOutSine="ease-out-sine"}(C||(C={})),function(t){t.front="front",t.back="back"}(O||(O={})),function(t){t.canvas="canvas",t.parent="parent",t.window="window"}(S||(S={}));class R{constructor(t,e){let i,o;if(void 0===e){if("number"==typeof t)throw new Error("tsParticles - Vector not initialized correctly");const e=t;[i,o]=[e.x,e.y]}else[i,o]=[t,e];this.x=i,this.y=o}static clone(t){return R.create(t.x,t.y)}static create(t,e){return new R(t,e)}static get origin(){return R.create(0,0)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this.updateFromAngle(t,this.length)}get length(){return Math.sqrt(Math.pow(this.x,2)+Math.pow(this.y,2))}set length(t){this.updateFromAngle(this.angle,t)}add(t){return R.create(this.x+t.x,this.y+t.y)}addTo(t){this.x+=t.x,this.y+=t.y}sub(t){return R.create(this.x-t.x,this.y-t.y)}subFrom(t){this.x-=t.x,this.y-=t.y}mult(t){return R.create(this.x*t,this.y*t)}multTo(t){this.x*=t,this.y*=t}div(t){return R.create(this.x/t,this.y/t)}divTo(t){this.x/=t,this.y/=t}distanceTo(t){return this.sub(t).length}getLengthSq(){return Math.pow(this.x,2)+Math.pow(this.y,2)}distanceToSq(t){return this.sub(t).getLengthSq()}manhattanDistanceTo(t){return Math.abs(t.x-this.x)+Math.abs(t.y-this.y)}copy(){return R.clone(this)}setTo(t){this.x=t.x,this.y=t.y}rotate(t){return R.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t))}updateFromAngle(t,e){this.x=Math.cos(t)*e,this.y=Math.sin(t)*e}}function T(t,e,i){return Math.min(Math.max(t,e),i)}function I(t,e,i,o){return Math.floor((t*i+e*o)/(i+o))}function E(t){const e=F(t);let i=D(t);return e===i&&(i=0),Math.random()*(e-i)+i}function A(t){return"number"==typeof t?t:E(t)}function D(t){return"number"==typeof t?t:t.min}function F(t){return"number"==typeof t?t:t.max}function L(t,e){if(t===e||void 0===e&&"number"==typeof t)return t;const i=D(t),o=F(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(o,e)}:L(i,o)}function q(t){const e=t.random,{enable:i,minimumValue:o}="boolean"==typeof e?{enable:e,minimumValue:0}:e;return A(i?L(t.value,o):t.value)}function H(t,e){const i=t.x-e.x,o=t.y-e.y;return{dx:i,dy:o,distance:Math.sqrt(i*i+o*o)}}function V(t,e){return H(t,e).distance}function B(t){if("number"==typeof t)return t*Math.PI/180;switch(t){case a.top:return-Math.PI/2;case a.topRight:return-Math.PI/4;case a.right:return 0;case a.bottomRight:return Math.PI/4;case a.bottom:return Math.PI/2;case a.bottomLeft:return 3*Math.PI/4;case a.left:return Math.PI;case a.topLeft:return-3*Math.PI/4;case a.none:default:return Math.random()*Math.PI*2}}function _(t){const e=R.origin;return e.length=1,e.angle=t,e}function W(t,e,i,o){return R.create(t.x*(i-o)/(i+o)+2*e.x*o/(i+o),t.y)}function $(t,e){switch(e){case C.easeOutQuad:return 1-Math.pow(1-t,2);case C.easeOutCubic:return 1-Math.pow(1-t,3);case C.easeOutQuart:return 1-Math.pow(1-t,4);case C.easeOutQuint:return 1-Math.pow(1-t,5);case C.easeOutExpo:return 1===t?1:1-Math.pow(2,-10*t);case C.easeOutSine:return Math.sin(t*Math.PI/2);case C.easeOutBack:{const e=1.70158;return 1+(e+1)*Math.pow(t-1,3)+e*Math.pow(t-1,2)}case C.easeOutCirc:return Math.sqrt(1-Math.pow(t-1,2));default:return t}}var U=function(t,e,i,o){return new(i||(i=Promise))((function(s,n){function a(t){try{l(o.next(t))}catch(t){n(t)}}function r(t){try{l(o.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?s(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(a,r)}l((o=o.apply(t,e||[])).next())}))};function j(t,e,i,o,s,n){const a={bounced:!1};return e.min>=o.min&&e.min<=o.max&&e.max>=o.min&&e.max<=o.max&&(t.max>=i.min&&t.max<=(i.max+i.min)/2&&s>0||t.min<=i.max&&t.min>(i.max+i.min)/2&&s<0)&&(a.velocity=s*-n,a.bounced=!0),a}function G(t,e){if(e instanceof Array){for(const i of e)if(t.matches(i))return!0;return!1}return t.matches(e)}function N(){return"undefined"==typeof window||!window}function J(){return N()?t=>setTimeout(t):t=>(window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||window.setTimeout)(t)}function X(){return N()?t=>clearTimeout(t):t=>(window.cancelAnimationFrame||window.webkitCancelRequestAnimationFrame||window.mozCancelRequestAnimationFrame||window.oCancelRequestAnimationFrame||window.msCancelRequestAnimationFrame||window.clearTimeout)(t)}function Y(t,e){return t===e||e instanceof Array&&e.indexOf(t)>-1}function Q(t){var e,i;return U(this,void 0,void 0,(function*(){try{yield document.fonts.load(`${null!==(e=t.weight)&&void 0!==e?e:"400"} 36px '${null!==(i=t.font)&&void 0!==i?i:"Verdana"}'`)}catch(t){}}))}function Z(t){return Math.floor(Math.random()*t.length)}function K(t,e,i=!0){return t[void 0!==e&&i?e%t.length:Z(t)]}function tt(t,e,i,o){return et(it(t,null!=i?i:0),e,o)}function et(t,e,i){let o=!0;return i&&i!==l.bottom||(o=t.top<e.height),!o||i&&i!==l.left||(o=t.right>0),!o||i&&i!==l.right||(o=t.left<e.width),!o||i&&i!==l.top||(o=t.bottom>0),o}function it(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function ot(t,...e){for(const i of e){if(null==i)continue;if("object"!=typeof i){t=i;continue}const e=Array.isArray(i);!e||"object"==typeof t&&t&&Array.isArray(t)?e||"object"==typeof t&&t&&!Array.isArray(t)||(t={}):t=[];for(const e in i){if("__proto__"===e)continue;const o=i[e],s="object"==typeof o,n=t;n[e]=s&&Array.isArray(o)?o.map((t=>ot(n[e],t))):ot(n[e],o)}}return t}function st(t,e){return e instanceof Array?!!e.find((e=>e.enable&&Y(t,e.mode))):Y(t,e.mode)}function nt(t,e,i){if(e instanceof Array)for(const o of e){const e=o.mode;o.enable&&Y(t,e)&&at(o,i)}else{const o=e.mode;e.enable&&Y(t,o)&&at(e,i)}}function at(t,e){const i=t.selectors;if(i instanceof Array)for(const o of i)e(o,t);else e(i,t)}function rt(t,e){if(e&&t)return t instanceof Array?t.find((t=>G(e,t.selectors))):G(e,t.selectors)?t:void 0}function lt(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:R.create(q(t.options.bounce.horizontal),q(t.options.bounce.vertical))}}function ct(t,e){const i=t.velocity.x,o=t.velocity.y,s=t.position,n=e.position;if(i*(n.x-s.x)+o*(n.y-s.y)>=0){const i=-Math.atan2(n.y-s.y,n.x-s.x),o=t.mass,a=e.mass,r=t.velocity.rotate(i),l=e.velocity.rotate(i),c=W(r,l,o,a),d=W(l,r,o,a),h=c.rotate(-i),u=d.rotate(-i);t.velocity.x=h.x*t.factor.x,t.velocity.y=h.y*t.factor.y,e.velocity.x=u.x*e.factor.x,e.velocity.y=u.y*e.factor.y}}function dt(t,e){const i=it(t.getPosition(),t.getRadius()),o=j({min:i.left,max:i.right},{min:i.top,max:i.bottom},{min:e.left,max:e.right},{min:e.top,max:e.bottom},t.velocity.x,q(t.options.bounce.horizontal));o.bounced&&(void 0!==o.velocity&&(t.velocity.x=o.velocity),void 0!==o.position&&(t.position.x=o.position));const s=j({min:i.top,max:i.bottom},{min:i.left,max:i.right},{min:e.top,max:e.bottom},{min:e.left,max:e.right},t.velocity.y,q(t.options.bounce.vertical));s.bounced&&(void 0!==s.velocity&&(t.velocity.y=s.velocity),void 0!==s.position&&(t.position.y=s.position))}class ht{}function ut(t,e,i){let o=i;return o<0&&(o+=1),o>1&&(o-=1),o<1/6?t+6*(e-t)*o:o<.5?e:o<2/3?t+(e-t)*(2/3-o)*6:t}function vt(t){if(t.startsWith("rgb")){const e=/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([\d.]+)\s*)?\)/i.exec(t);return e?{a:e.length>4?parseFloat(e[5]):1,b:parseInt(e[3],10),g:parseInt(e[2],10),r:parseInt(e[1],10)}:void 0}if(t.startsWith("hsl")){const e=/hsla?\(\s*(\d+)\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([\d.]+)\s*)?\)/i.exec(t);return e?wt({a:e.length>4?parseFloat(e[5]):1,h:parseInt(e[1],10),l:parseInt(e[3],10),s:parseInt(e[2],10)}):void 0}if(t.startsWith("hsv")){const e=/hsva?\(\s*(\d+)°\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([\d.]+)\s*)?\)/i.exec(t);return e?Ct({a:e.length>4?parseFloat(e[5]):1,h:parseInt(e[1],10),s:parseInt(e[2],10),v:parseInt(e[3],10)}):void 0}{const e=/^#?([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,i=t.replace(e,((t,e,i,o,s)=>e+e+i+i+o+o+(void 0!==s?s+s:""))),o=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i.exec(i);return o?{a:void 0!==o[4]?parseInt(o[4],16)/255:1,b:parseInt(o[3],16),g:parseInt(o[2],16),r:parseInt(o[1],16)}:void 0}}function pt(t,e,i=!0){var o,s,n;if(void 0===t)return;const a="string"==typeof t?{value:t}:t;let r;if("string"==typeof a.value)r=a.value===ht.randomColorValue?Rt():bt(a.value);else if(a.value instanceof Array){r=pt({value:K(a.value,e,i)})}else{const t=a.value,e=null!==(o=t.rgb)&&void 0!==o?o:a.value;if(void 0!==e.r)r=e;else{const e=null!==(s=t.hsl)&&void 0!==s?s:a.value;if(void 0!==e.h&&void 0!==e.l)r=gt(e);else{const e=null!==(n=t.hsv)&&void 0!==n?n:a.value;void 0!==e.h&&void 0!==e.v&&(r=Pt(e))}}}return r}function ft(t,e,i=!0){const o=pt(t,e,i);return void 0!==o?yt(o):void 0}function yt(t){const e=t.r/255,i=t.g/255,o=t.b/255,s=Math.max(e,i,o),n=Math.min(e,i,o),a={h:0,l:(s+n)/2,s:0};return s!=n&&(a.s=a.l<.5?(s-n)/(s+n):(s-n)/(2-s-n),a.h=e===s?(i-o)/(s-n):a.h=i===s?2+(o-e)/(s-n):4+(e-i)/(s-n)),a.l*=100,a.s*=100,a.h*=60,a.h<0&&(a.h+=360),a}function mt(t){var e;return null===(e=vt(t))||void 0===e?void 0:e.a}function bt(t){return vt(t)}function gt(t){const e={b:0,g:0,r:0},i={h:t.h/360,l:t.l/100,s:t.s/100};if(0===i.s)e.b=i.l,e.g=i.l,e.r=i.l;else{const t=i.l<.5?i.l*(1+i.s):i.l+i.s-i.l*i.s,o=2*i.l-t;e.r=ut(o,t,i.h+1/3),e.g=ut(o,t,i.h),e.b=ut(o,t,i.h-1/3)}return e.r=Math.floor(255*e.r),e.g=Math.floor(255*e.g),e.b=Math.floor(255*e.b),e}function wt(t){const e=gt(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function xt(t){const e=t.l/100,i=e+t.s/100*Math.min(e,1-e),o=i?2*(1-e/i):0;return{h:t.h,s:100*o,v:100*i}}function kt(t){const e=xt(t);return{a:t.a,h:e.h,s:e.s,v:e.v}}function Mt(t){const e=t.v/100,i=e*(1-t.s/100/2),o=0===i||1===i?0:(e-i)/Math.min(i,1-i);return{h:t.h,l:100*i,s:100*o}}function zt(t){const e=Mt(t);return{a:t.a,h:e.h,l:e.l,s:e.s}}function Pt(t){const e={b:0,g:0,r:0},i=t.h/60,o=t.s/100,s=t.v/100,n=s*o,a=n*(1-Math.abs(i%2-1));let r;if(i>=0&&i<=1?r={r:n,g:a,b:0}:i>1&&i<=2?r={r:a,g:n,b:0}:i>2&&i<=3?r={r:0,g:n,b:a}:i>3&&i<=4?r={r:0,g:a,b:n}:i>4&&i<=5?r={r:a,g:0,b:n}:i>5&&i<=6&&(r={r:n,g:0,b:a}),r){const t=s-n;e.r=Math.floor(255*(r.r+t)),e.g=Math.floor(255*(r.g+t)),e.b=Math.floor(255*(r.b+t))}return e}function Ct(t){const e=Pt(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function Ot(t){const e={r:t.r/255,g:t.g/255,b:t.b/255},i=Math.max(e.r,e.g,e.b),o=i-Math.min(e.r,e.g,e.b);let s=0;i===e.r?s=(e.g-e.b)/o*60:i===e.g?s=60*(2+(e.b-e.r)/o):i===e.b&&(s=60*(4+(e.r-e.g)/o));return{h:s,s:100*(i?o/i:0),v:100*i}}function St(t){const e=Ot(t);return{a:t.a,h:e.h,s:e.s,v:e.v}}function Rt(t){const e=null!=t?t:0;return{b:Math.floor(E(L(e,256))),g:Math.floor(E(L(e,256))),r:Math.floor(E(L(e,256)))}}function Tt(t,e){return`rgba(${t.r}, ${t.g}, ${t.b}, ${null!=e?e:1})`}function It(t,e){return`hsla(${t.h}, ${t.s}%, ${t.l}%, ${null!=e?e:1})`}function Et(t,e){return It(Mt(t),e)}function At(t,e,i,o){let s=t,n=e;return void 0===s.r&&(s=gt(t)),void 0===n.r&&(n=gt(e)),{b:I(s.b,n.b,i,o),g:I(s.g,n.g,i,o),r:I(s.r,n.r,i,o)}}function Dt(t,e,i){var o,s;if(i===ht.randomColorValue)return Rt();if("mid"!==i)return i;{const i=null!==(o=t.getFillColor())&&void 0!==o?o:t.getStrokeColor(),n=null!==(s=null==e?void 0:e.getFillColor())&&void 0!==s?s:null==e?void 0:e.getStrokeColor();if(i&&n&&e)return At(i,n,t.getRadius(),e.getRadius());{const t=null!=i?i:n;if(t)return gt(t)}}}function Ft(t,e,i){const o="string"==typeof t?t:t.value;return o===ht.randomColorValue?i?pt({value:o}):e?ht.randomColorValue:ht.midColorValue:pt({value:o})}function Lt(t){return void 0!==t?{h:t.h.value,s:t.s.value,l:t.l.value}:void 0}function qt(t,e,i){const o={h:{enable:!1,value:t.h},s:{enable:!1,value:t.s},l:{enable:!1,value:t.l}};return e&&(Ht(o.h,e.h,i),Ht(o.s,e.s,i),Ht(o.l,e.l,i)),o}function Ht(t,e,i){if(t.enable=e.enable,t.enable){if(t.velocity=e.speed/100*i,e.sync)return;t.status=b.increasing,t.velocity*=Math.random(),t.value&&(t.value*=Math.random())}else t.velocity=0}function Vt(t,e,i){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.closePath()}function Bt(t,e,i){t.save(),t.fillStyle=null!=i?i:"rgba(0,0,0,0)",t.fillRect(0,0,e.width,e.height),t.restore()}function _t(t,e){t.clearRect(0,0,e.width,e.height)}function Wt(t,e,i,o,s,n,a,r,l,c,d,h){let u=!1;if(V(i,o)<=s)Vt(t,i,o),u=!0;else if(a){let e,a;const r=H(i,{x:o.x-n.width,y:o.y});if(r.distance<=s){const t=i.y-r.dy/r.dx*i.x;e={x:0,y:t},a={x:n.width,y:t}}else{const t=H(i,{x:o.x,y:o.y-n.height});if(t.distance<=s){const o=-(i.y-t.dy/t.dx*i.x)/(t.dy/t.dx);e={x:o,y:0},a={x:o,y:n.height}}else{const t=H(i,{x:o.x-n.width,y:o.y-n.height});if(t.distance<=s){const o=i.y-t.dy/t.dx*i.x;e={x:-o/(t.dy/t.dx),y:o},a={x:e.x+n.width,y:e.y+n.height}}}}e&&a&&(Vt(t,i,e),Vt(t,o,a),u=!0)}if(u){if(t.lineWidth=e,r&&(t.globalCompositeOperation=l),t.strokeStyle=Tt(c,d),h.enable){const e=pt(h.color);e&&(t.shadowBlur=h.blur,t.shadowColor=Tt(e))}t.stroke()}}function $t(t,e,i,o,s,n,a,r){!function(t,e,i,o){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.lineTo(o.x,o.y),t.closePath()}(t,e,i,o),s&&(t.globalCompositeOperation=n),t.fillStyle=Tt(a,r),t.fill()}function Ut(t,e,i,o,s){t.save(),Vt(t,o,s),t.lineWidth=e,t.strokeStyle=i,t.stroke(),t.restore()}function jt(t,e,i,o){const s=Math.floor(i.getRadius()/e.getRadius()),n=e.getFillColor(),a=i.getFillColor();if(!n||!a)return;const r=e.getPosition(),l=i.getPosition(),c=At(n,a,e.getRadius(),i.getRadius()),d=t.createLinearGradient(r.x,r.y,l.x,l.y);return d.addColorStop(0,It(n,o)),d.addColorStop(s>1?1:s,Tt(c,o)),d.addColorStop(1,It(a,o)),d}function Gt(t,e,i,o,s,n){t.save(),Vt(t,i,o),t.strokeStyle=Tt(s,n),t.lineWidth=e,t.stroke(),t.restore()}function Nt(t,e,i,o,s,n,a,r,l,c,d,h){var u,v;const p=i.getPosition(),f=i.options.tilt,y=i.options.roll;e.save(),f.enable||y.enable?e.setTransform(y.enable?Math.cos(i.rollAngle):1,f.enable?Math.cos(i.tilt.value)*i.tilt.cosDirection:0,f.enable?Math.sin(i.tilt.value)*i.tilt.sinDirection:0,y.enable?Math.sin(i.rollAngle):1,p.x,p.y):e.translate(p.x,p.y),e.beginPath();const m=i.rotate.value+(i.options.rotate.path?i.velocity.angle:0);0!==m&&e.rotate(m),a&&(e.globalCompositeOperation=r);const b=i.shadowColor;if(d.enable&&b&&(e.shadowBlur=d.blur,e.shadowColor=Tt(b),e.shadowOffsetX=d.offset.x,e.shadowOffsetY=d.offset.y),h){const t=h.angle.value,i=h.type===x.radial?e.createRadialGradient(0,0,0,0,0,l):e.createLinearGradient(Math.cos(t)*-l,Math.sin(t)*-l,Math.cos(t)*l,Math.sin(t)*l);for(const t of h.colors)i.addColorStop(t.stop,It({h:t.value.h.value,s:t.value.s.value,l:t.value.l.value},null!==(v=null===(u=t.opacity)||void 0===u?void 0:u.value)&&void 0!==v?v:c));e.fillStyle=i}else s&&(e.fillStyle=s);const g=i.stroke;e.lineWidth=i.strokeWidth,n&&(e.strokeStyle=n),Jt(t,e,i,l,c,o),g.width>0&&e.stroke(),i.close&&e.closePath(),i.fill&&e.fill(),e.restore(),e.save(),f.enable?e.setTransform(1,Math.cos(i.tilt.value)*i.tilt.cosDirection,Math.sin(i.tilt.value)*i.tilt.sinDirection,1,p.x,p.y):e.translate(p.x,p.y),0!==m&&e.rotate(m),a&&(e.globalCompositeOperation=r),Xt(t,e,i,l,c,o),e.restore()}function Jt(t,e,i,o,s,n){if(!i.shape)return;const a=t.drawers.get(i.shape);a&&a.draw(e,i,o,s,n,t.retina.pixelRatio)}function Xt(t,e,i,o,s,n){if(!i.shape)return;const a=t.drawers.get(i.shape);(null==a?void 0:a.afterEffect)&&a.afterEffect(e,i,o,s,n,t.retina.pixelRatio)}function Yt(t,e,i){e.draw&&(t.save(),e.draw(t,i),t.restore())}function Qt(t,e,i,o){void 0!==e.drawParticle&&(t.save(),e.drawParticle(t,i,o),t.restore())}function Zt(t,e,i,o,s,n,a,r,l){const c=e.getPosition();if(i&&(t.strokeStyle=It(i,s)),0===n)return;t.lineWidth=n;const d=a*Math.PI/180;t.beginPath(),t.ellipse(c.x,c.y,o/2,2*o,d,r,l),t.stroke()}ht.canvasClass="tsparticles-canvas-el",ht.randomColorValue="random",ht.midColorValue="mid",ht.touchEndEvent="touchend",ht.mouseDownEvent="mousedown",ht.mouseUpEvent="mouseup",ht.mouseMoveEvent="mousemove",ht.touchStartEvent="touchstart",ht.touchMoveEvent="touchmove",ht.mouseLeaveEvent="mouseleave",ht.mouseOutEvent="mouseout",ht.touchCancelEvent="touchcancel",ht.resizeEvent="resize",ht.visibilityChangeEvent="visibilitychange",ht.noPolygonDataLoaded="No polygon data loaded.",ht.noPolygonFound="No polygon found, you need to specify SVG url in config.";class Kt{constructor(t,e){this.position={x:t,y:e}}}class te extends Kt{constructor(t,e,i){super(t,e),this.radius=i}contains(t){return V(t,this.position)<=this.radius}intersects(t){const e=t,i=t,o=this.position,s=t.position,n=Math.abs(s.x-o.x),a=Math.abs(s.y-o.y),r=this.radius;if(void 0!==i.radius){return r+i.radius>Math.sqrt(n*n+a+a)}if(void 0!==e.size){const t=e.size.width,i=e.size.height,o=Math.pow(n-t,2)+Math.pow(a-i,2);return!(n>r+t||a>r+i)&&(n<=t||a<=i||o<=r*r)}return!1}}class ee extends Kt{constructor(t,e,i,o){super(t,e),this.size={height:o,width:i}}contains(t){const e=this.size.width,i=this.size.height,o=this.position;return t.x>=o.x&&t.x<=o.x+e&&t.y>=o.y&&t.y<=o.y+i}intersects(t){const e=t,i=t,o=this.size.width,s=this.size.height,n=this.position,a=t.position;if(void 0!==i.radius)return i.intersects(this);if(void 0!==e.size){const t=e.size,i=t.width,r=t.height;return a.x<n.x+o&&a.x+i>n.x&&a.y<n.y+s&&a.y+r>n.y}return!1}}class ie extends te{constructor(t,e,i,o){super(t,e,i),this.canvasSize=o,this.canvasSize={height:o.height,width:o.width}}contains(t){if(super.contains(t))return!0;const e={x:t.x-this.canvasSize.width,y:t.y};if(super.contains(e))return!0;const i={x:t.x-this.canvasSize.width,y:t.y-this.canvasSize.height};if(super.contains(i))return!0;const o={x:t.x,y:t.y-this.canvasSize.height};return super.contains(o)}intersects(t){if(super.intersects(t))return!0;const e=t,i=t,o={x:t.position.x-this.canvasSize.width,y:t.position.y-this.canvasSize.height};if(void 0!==i.radius){const t=new te(o.x,o.y,2*i.radius);return super.intersects(t)}if(void 0!==e.size){const t=new ee(o.x,o.y,2*e.size.width,2*e.size.height);return super.intersects(t)}return!1}}function oe(t,e,i,o,s){if(o){let o={passive:!0};"boolean"==typeof s?o.capture=s:void 0!==s&&(o=s),t.addEventListener(e,i,o)}else{const o=s;t.removeEventListener(e,i,o)}}class se{constructor(t){this.container=t,this.canPush=!0,this.mouseMoveHandler=t=>this.mouseTouchMove(t),this.touchStartHandler=t=>this.mouseTouchMove(t),this.touchMoveHandler=t=>this.mouseTouchMove(t),this.touchEndHandler=()=>this.mouseTouchFinish(),this.mouseLeaveHandler=()=>this.mouseTouchFinish(),this.touchCancelHandler=()=>this.mouseTouchFinish(),this.touchEndClickHandler=t=>this.mouseTouchClick(t),this.mouseUpHandler=t=>this.mouseTouchClick(t),this.mouseDownHandler=()=>this.mouseDown(),this.visibilityChangeHandler=()=>this.handleVisibilityChange(),this.resizeHandler=()=>this.handleWindowResize()}addListeners(){this.manageListeners(!0)}removeListeners(){this.manageListeners(!1)}manageListeners(t){var e;const i=this.container,o=i.actualOptions,s=o.interactivity.detectsOn;let n=ht.mouseLeaveEvent;if(s===S.window)i.interactivity.element=window,n=ht.mouseOutEvent;else if(s===S.parent&&i.canvas.element){const t=i.canvas.element;i.interactivity.element=null!==(e=t.parentElement)&&void 0!==e?e:t.parentNode}else i.interactivity.element=i.canvas.element;const a=i.interactivity.element;if(!a)return;const r=a;(o.interactivity.events.onHover.enable||o.interactivity.events.onClick.enable)&&(oe(a,ht.mouseMoveEvent,this.mouseMoveHandler,t),oe(a,ht.touchStartEvent,this.touchStartHandler,t),oe(a,ht.touchMoveEvent,this.touchMoveHandler,t),o.interactivity.events.onClick.enable?(oe(a,ht.touchEndEvent,this.touchEndClickHandler,t),oe(a,ht.mouseUpEvent,this.mouseUpHandler,t),oe(a,ht.mouseDownEvent,this.mouseDownHandler,t)):oe(a,ht.touchEndEvent,this.touchEndHandler,t),oe(a,n,this.mouseLeaveHandler,t),oe(a,ht.touchCancelEvent,this.touchCancelHandler,t)),i.canvas.element&&(i.canvas.element.style.pointerEvents=r===i.canvas.element?"initial":"none"),o.interactivity.events.resize&&("undefined"!=typeof ResizeObserver?this.resizeObserver&&!t?(i.canvas.element&&this.resizeObserver.unobserve(i.canvas.element),this.resizeObserver.disconnect(),delete this.resizeObserver):!this.resizeObserver&&t&&i.canvas.element&&(this.resizeObserver=new ResizeObserver((t=>{t.find((t=>t.target===i.canvas.element))&&this.handleWindowResize()})),this.resizeObserver.observe(i.canvas.element)):oe(window,ht.resizeEvent,this.resizeHandler,t)),document&&oe(document,ht.visibilityChangeEvent,this.visibilityChangeHandler,t,!1)}handleWindowResize(){this.resizeTimeout&&(clearTimeout(this.resizeTimeout),delete this.resizeTimeout),this.resizeTimeout=setTimeout((()=>{var t;return null===(t=this.container.canvas)||void 0===t?void 0:t.windowResize()}),500)}handleVisibilityChange(){const t=this.container,e=t.actualOptions;this.mouseTouchFinish(),e.pauseOnBlur&&((null===document||void 0===document?void 0:document.hidden)?(t.pageHidden=!0,t.pause()):(t.pageHidden=!1,t.getAnimationStatus()?t.play(!0):t.draw(!0)))}mouseDown(){const t=this.container.interactivity;if(t){const e=t.mouse;e.clicking=!0,e.downPosition=e.position}}mouseTouchMove(t){var e,i,o,s,n,a,r;const l=this.container,c=l.actualOptions;if(void 0===(null===(e=l.interactivity)||void 0===e?void 0:e.element))return;let d;l.interactivity.mouse.inside=!0;const h=l.canvas.element;if(t.type.startsWith("mouse")){this.canPush=!0;const e=t;if(l.interactivity.element===window){if(h){const t=h.getBoundingClientRect();d={x:e.clientX-t.left,y:e.clientY-t.top}}}else if(c.interactivity.detectsOn===S.parent){const t=e.target,s=e.currentTarget,n=l.canvas.element;if(t&&s&&n){const i=t.getBoundingClientRect(),o=s.getBoundingClientRect(),a=n.getBoundingClientRect();d={x:e.offsetX+2*i.left-(o.left+a.left),y:e.offsetY+2*i.top-(o.top+a.top)}}else d={x:null!==(i=e.offsetX)&&void 0!==i?i:e.clientX,y:null!==(o=e.offsetY)&&void 0!==o?o:e.clientY}}else e.target===l.canvas.element&&(d={x:null!==(s=e.offsetX)&&void 0!==s?s:e.clientX,y:null!==(n=e.offsetY)&&void 0!==n?n:e.clientY})}else{this.canPush="touchmove"!==t.type;const e=t,i=e.touches[e.touches.length-1],o=null==h?void 0:h.getBoundingClientRect();d={x:i.clientX-(null!==(a=null==o?void 0:o.left)&&void 0!==a?a:0),y:i.clientY-(null!==(r=null==o?void 0:o.top)&&void 0!==r?r:0)}}const u=l.retina.pixelRatio;d&&(d.x*=u,d.y*=u),l.interactivity.mouse.position=d,l.interactivity.status=ht.mouseMoveEvent}mouseTouchFinish(){const t=this.container.interactivity;if(void 0===t)return;const e=t.mouse;delete e.position,delete e.clickPosition,delete e.downPosition,t.status=ht.mouseLeaveEvent,e.inside=!1,e.clicking=!1}mouseTouchClick(t){const e=this.container,i=e.actualOptions,o=e.interactivity.mouse;o.inside=!0;let s=!1;const n=o.position;if(void 0!==n&&i.interactivity.events.onClick.enable){for(const[,t]of e.plugins)if(void 0!==t.clickPositionValid&&(s=t.clickPositionValid(n),s))break;s||this.doMouseTouchClick(t),o.clicking=!1}}doMouseTouchClick(t){const e=this.container,i=e.actualOptions;if(this.canPush){const t=e.interactivity.mouse.position;if(!t)return;e.interactivity.mouse.clickPosition={x:t.x,y:t.y},e.interactivity.mouse.clickTime=(new Date).getTime();const o=i.interactivity.events.onClick;if(o.mode instanceof Array)for(const t of o.mode)this.handleClickMode(t);else this.handleClickMode(o.mode)}"touchend"===t.type&&setTimeout((()=>this.mouseTouchFinish()),500)}handleClickMode(t){const e=this.container,i=e.actualOptions,o=i.interactivity.modes.push.quantity,s=i.interactivity.modes.remove.quantity;switch(t){case d.push:if(o>0){const t=K([void 0,...i.interactivity.modes.push.groups]),s=void 0!==t?e.actualOptions.particles.groups[t]:void 0;e.particles.push(o,e.interactivity.mouse,s,t)}break;case d.remove:e.particles.removeQuantity(s);break;case d.bubble:e.bubble.clicking=!0;break;case d.repulse:e.repulse.clicking=!0,e.repulse.count=0;for(const t of e.repulse.particles)t.velocity.setTo(t.initialVelocity);e.repulse.particles=[],e.repulse.finish=!1,setTimeout((()=>{e.destroyed||(e.repulse.clicking=!1)}),1e3*i.interactivity.modes.repulse.duration);break;case d.attract:e.attract.clicking=!0,e.attract.count=0;for(const t of e.attract.particles)t.velocity.setTo(t.initialVelocity);e.attract.particles=[],e.attract.finish=!1,setTimeout((()=>{e.destroyed||(e.attract.clicking=!1)}),1e3*i.interactivity.modes.attract.duration);break;case d.pause:e.getAnimationStatus()?e.pause():e.play()}for(const[,i]of e.plugins)i.handleClickMode&&i.handleClickMode(t)}}const ne=[],ae=new Map,re=new Map,le=new Map,ce=new Map,de=new Map,he=new Map,ue=new Map;class ve{static getPlugin(t){return ne.find((e=>e.id===t))}static addPlugin(t){ve.getPlugin(t.id)||ne.push(t)}static getAvailablePlugins(t){const e=new Map;for(const i of ne)i.needsPlugin(t.actualOptions)&&e.set(i.id,i.getPlugin(t));return e}static loadOptions(t,e){for(const i of ne)i.loadOptions(t,e)}static getPreset(t){return de.get(t)}static addPreset(t,e,i=!1){!i&&ve.getPreset(t)||de.set(t,e)}static addShapeDrawer(t,e){ve.getShapeDrawer(t)||he.set(t,e)}static getShapeDrawer(t){return he.get(t)}static getSupportedShapes(){return he.keys()}static getPathGenerator(t){return ue.get(t)}static addPathGenerator(t,e){ve.getPathGenerator(t)||ue.set(t,e)}static getInteractors(t){let e=le.get(t);return e||(e=[...ae.values()].map((e=>e(t))),le.set(t,e)),e}static addInteractor(t,e){ae.set(t,e)}static getUpdaters(t){let e=ce.get(t);return e||(e=[...re.values()].map((e=>e(t))),ce.set(t,e)),e}static addParticleUpdater(t,e){re.set(t,e)}}class pe{constructor(t,e){this.position=t,this.particle=e}}class fe{constructor(t,e){this.rectangle=t,this.capacity=e,this.points=[],this.divided=!1}subdivide(){const t=this.rectangle.position.x,e=this.rectangle.position.y,i=this.rectangle.size.width,o=this.rectangle.size.height,s=this.capacity;this.northEast=new fe(new ee(t,e,i/2,o/2),s),this.northWest=new fe(new ee(t+i/2,e,i/2,o/2),s),this.southEast=new fe(new ee(t,e+o/2,i/2,o/2),s),this.southWest=new fe(new ee(t+i/2,e+o/2,i/2,o/2),s),this.divided=!0}insert(t){var e,i,o,s,n;return!!this.rectangle.contains(t.position)&&(this.points.length<this.capacity?(this.points.push(t),!0):(this.divided||this.subdivide(),null!==(n=(null===(e=this.northEast)||void 0===e?void 0:e.insert(t))||(null===(i=this.northWest)||void 0===i?void 0:i.insert(t))||(null===(o=this.southEast)||void 0===o?void 0:o.insert(t))||(null===(s=this.southWest)||void 0===s?void 0:s.insert(t)))&&void 0!==n&&n))}queryCircle(t,e){return this.query(new te(t.x,t.y,e))}queryCircleWarp(t,e,i){const o=i,s=i;return this.query(new ie(t.x,t.y,e,void 0!==o.canvas?o.canvas.size:s))}queryRectangle(t,e){return this.query(new ee(t.x,t.y,e.width,e.height))}query(t,e){var i,o,s,n;const a=null!=e?e:[];if(!t.intersects(this.rectangle))return[];for(const e of this.points)!t.contains(e.position)&&V(t.position,e.position)>e.particle.getRadius()||a.push(e.particle);return this.divided&&(null===(i=this.northEast)||void 0===i||i.query(t,a),null===(o=this.northWest)||void 0===o||o.query(t,a),null===(s=this.southEast)||void 0===s||s.query(t,a),null===(n=this.southWest)||void 0===n||n.query(t,a)),a}}class ye{constructor(t){this.container=t,this.size={height:0,width:0},this.context=null,this.generatedCanvas=!1}init(){this.resize(),this.initStyle(),this.initCover(),this.initTrail(),this.initBackground(),this.paint()}loadCanvas(t,e){var i;t.className||(t.className=ht.canvasClass),this.generatedCanvas&&(null===(i=this.element)||void 0===i||i.remove()),this.generatedCanvas=null!=e?e:this.generatedCanvas,this.element=t,this.originalStyle=ot({},this.element.style),this.size.height=t.offsetHeight,this.size.width=t.offsetWidth,this.context=this.element.getContext("2d"),this.container.retina.init(),this.initBackground()}destroy(){var t;this.generatedCanvas&&(null===(t=this.element)||void 0===t||t.remove()),this.draw((t=>{_t(t,this.size)}))}paint(){const t=this.container.actualOptions;this.draw((e=>{t.backgroundMask.enable&&t.backgroundMask.cover&&this.coverColor?(_t(e,this.size),this.paintBase(Tt(this.coverColor,this.coverColor.a))):this.paintBase()}))}clear(){const t=this.container.actualOptions,e=t.particles.move.trail;t.backgroundMask.enable?this.paint():e.enable&&e.length>0&&this.trailFillColor?this.paintBase(Tt(this.trailFillColor,1/e.length)):this.draw((t=>{_t(t,this.size)}))}windowResize(){var t;if(!this.element)return;const e=this.container;if(this.resize(),1!==(null===(t=this.resizeFactor)||void 0===t?void 0:t.width)||1!==this.resizeFactor.height){e.updateActualOptions(),e.particles.setDensity();for(const[,t]of e.plugins)void 0!==t.resize&&t.resize()}else delete this.resizeFactor}resize(){if(!this.element)return;const t=this.container,e=t.retina.pixelRatio,i=t.canvas.size,o=i.width,s=i.height;i.width=this.element.offsetWidth*e,i.height=this.element.offsetHeight*e,this.element.width=i.width,this.element.height=i.height,this.container.started&&(this.resizeFactor={width:i.width/o,height:i.height/s})}drawConnectLine(t,e){this.draw((i=>{var o;const s=this.lineStyle(t,e);if(!s)return;const n=t.getPosition(),a=e.getPosition();Ut(i,null!==(o=t.linksWidth)&&void 0!==o?o:this.container.retina.linksWidth,s,n,a)}))}drawGrabLine(t,e,i,o){const s=this.container;this.draw((n=>{var a;const r=t.getPosition();Gt(n,null!==(a=t.linksWidth)&&void 0!==a?a:s.retina.linksWidth,r,o,e,i)}))}drawParticle(t,e){var i,o,s;if(t.spawning||t.destroyed)return;const n=t.getFillColor(),a=null!==(i=t.getStrokeColor())&&void 0!==i?i:n;if(!n&&!a)return;let[r,l]=this.getPluginParticleColors(t);const c=t.options.twinkle.particles,d=c.enable&&Math.random()<c.frequency;if(!r||!l){const t=ft(c.color);r||(r=d&&void 0!==t?t:n||void 0),l||(l=d&&void 0!==t?t:a||void 0)}const h=this.container.actualOptions,u=t.options.zIndex,v=Math.pow(1-t.zIndexFactor,u.opacityRate),p=t.getRadius(),f=d?c.opacity:null!==(o=t.bubble.opacity)&&void 0!==o?o:t.opacity.value,y=null!==(s=t.stroke.opacity)&&void 0!==s?s:f,m=f*v,b=r?It(r,m):void 0;if(!b&&!l)return;const g=t.options.orbit;this.draw((i=>{const o=Math.pow(1-t.zIndexFactor,u.sizeRate),s=l?It(l,y*v):b;p<=0||(g.enable&&this.drawOrbit(t,O.back),Nt(this.container,i,t,e,b,s,h.backgroundMask.enable,h.backgroundMask.composite,p*o,m,t.options.shadow,t.gradient),g.enable&&this.drawOrbit(t,O.front))}))}drawOrbit(t,e){const i=this.container,o=t.options.orbit;let s,n;e===O.back?(s=Math.PI/2,n=3*Math.PI/2):e===O.front?(s=3*Math.PI/2,n=Math.PI/2):(s=0,n=2*Math.PI),this.draw((e=>{var a,r,l,c;Zt(e,t,null!==(a=t.orbitColor)&&void 0!==a?a:t.getFillColor(),null!==(l=null!==(r=t.orbitRadius)&&void 0!==r?r:i.retina.orbitRadius)&&void 0!==l?l:t.getRadius(),o.opacity,o.width,(null!==(c=t.orbitRotation)&&void 0!==c?c:0)*i.retina.pixelRatio,s,n)}))}drawPlugin(t,e){this.draw((i=>{Yt(i,t,e)}))}drawParticlePlugin(t,e,i){this.draw((o=>{Qt(o,t,e,i)}))}initBackground(){const t=this.container.actualOptions.background,e=this.element,i=null==e?void 0:e.style;if(i){if(t.color){const e=pt(t.color);i.backgroundColor=e?Tt(e,t.opacity):""}else i.backgroundColor="";i.backgroundImage=t.image||"",i.backgroundPosition=t.position||"",i.backgroundRepeat=t.repeat||"",i.backgroundSize=t.size||""}}draw(t){if(this.context)return t(this.context)}initCover(){const t=this.container.actualOptions.backgroundMask.cover,e=pt(t.color);e&&(this.coverColor={r:e.r,g:e.g,b:e.b,a:t.opacity})}initTrail(){const t=this.container.actualOptions,e=pt(t.particles.move.trail.fillColor);if(e){const i=t.particles.move.trail;this.trailFillColor={r:e.r,g:e.g,b:e.b,a:1/i.length}}}getPluginParticleColors(t){let e,i;for(const[,o]of this.container.plugins)if(!e&&o.particleFillColor&&(e=ft(o.particleFillColor(t))),!i&&o.particleStrokeColor&&(i=ft(o.particleStrokeColor(t))),e&&i)break;return[e,i]}initStyle(){const t=this.element,e=this.container.actualOptions;if(!t)return;const i=this.originalStyle;e.fullScreen.enable?(this.originalStyle=ot({},t.style),t.style.position="fixed",t.style.zIndex=e.fullScreen.zIndex.toString(10),t.style.top="0",t.style.left="0",t.style.width="100%",t.style.height="100%"):i&&(t.style.position=i.position,t.style.zIndex=i.zIndex,t.style.top=i.top,t.style.left=i.left,t.style.width=i.width,t.style.height=i.height)}paintBase(t){this.draw((e=>{Bt(e,this.size,t)}))}lineStyle(t,e){return this.draw((i=>{const o=this.container.actualOptions.interactivity.modes.connect;return jt(i,t,e,o.links.opacity)}))}}class me{constructor(){this.value="#fff"}static create(t,e){const i=null!=t?t:new me;return void 0!==e&&("string"==typeof e||e instanceof Array?i.load({value:e}):i.load(e)),i}load(t){void 0!==(null==t?void 0:t.value)&&(this.value=t.value)}}class be{constructor(){this.blur=5,this.color=new me,this.enable=!1,this.color.value="#00ff00"}load(t){void 0!==t&&(void 0!==t.blur&&(this.blur=t.blur),this.color=me.create(this.color,t.color),void 0!==t.enable&&(this.enable=t.enable))}}class ge{constructor(){this.enable=!1,this.frequency=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=me.create(this.color,t.color)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.frequency&&(this.frequency=t.frequency),void 0!==t.opacity&&(this.opacity=t.opacity))}}class we{constructor(){this.blink=!1,this.color=new me,this.consent=!1,this.distance=100,this.enable=!1,this.frequency=1,this.opacity=1,this.shadow=new be,this.triangles=new ge,this.width=1,this.warp=!1}load(t){void 0!==t&&(void 0!==t.id&&(this.id=t.id),void 0!==t.blink&&(this.blink=t.blink),this.color=me.create(this.color,t.color),void 0!==t.consent&&(this.consent=t.consent),void 0!==t.distance&&(this.distance=t.distance),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.frequency&&(this.frequency=t.frequency),void 0!==t.opacity&&(this.opacity=t.opacity),this.shadow.load(t.shadow),this.triangles.load(t.triangles),void 0!==t.width&&(this.width=t.width),void 0!==t.warp&&(this.warp=t.warp))}}class xe{constructor(){this.distance=200,this.enable=!1,this.rotate={x:3e3,y:3e3}}get rotateX(){return this.rotate.x}set rotateX(t){this.rotate.x=t}get rotateY(){return this.rotate.y}set rotateY(t){this.rotate.y=t}load(t){var e,i,o,s;if(!t)return;void 0!==t.distance&&(this.distance=t.distance),void 0!==t.enable&&(this.enable=t.enable);const n=null!==(i=null===(e=t.rotate)||void 0===e?void 0:e.x)&&void 0!==i?i:t.rotateX;void 0!==n&&(this.rotate.x=n);const a=null!==(s=null===(o=t.rotate)||void 0===o?void 0:o.y)&&void 0!==s?s:t.rotateY;void 0!==a&&(this.rotate.y=a)}}class ke{constructor(){this.enable=!1,this.length=10,this.fillColor=new me,this.fillColor.value="#000000"}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),this.fillColor=me.create(this.fillColor,t.fillColor),void 0!==t.length&&(this.length=t.length))}}class Me{constructor(){this.enable=!1,this.minimumValue=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.minimumValue&&(this.minimumValue=t.minimumValue))}}class ze{constructor(){this.random=new Me,this.value=0}load(t){t&&("boolean"==typeof t.random?this.random.enable=t.random:this.random.load(t.random),void 0!==t.value&&(this.value=L(t.value,this.random.enable?this.random.minimumValue:void 0)))}}class Pe extends ze{constructor(){super()}}class Ce{constructor(){this.clamp=!0,this.delay=new Pe,this.enable=!1,this.options={}}load(t){void 0!==t&&(void 0!==t.clamp&&(this.clamp=t.clamp),this.delay.load(t.delay),void 0!==t.enable&&(this.enable=t.enable),this.generator=t.generator,t.options&&(this.options=ot(this.options,t.options)))}}class Oe{constructor(){this.offset=0,this.value=90}load(t){void 0!==t&&(void 0!==t.offset&&(this.offset=t.offset),void 0!==t.value&&(this.value=t.value))}}class Se{constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=t.acceleration),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=t.maxSpeed))}}class Re{constructor(){this.default=f.out}load(t){var e,i,o,s;t&&(void 0!==t.default&&(this.default=t.default),this.bottom=null!==(e=t.bottom)&&void 0!==e?e:t.default,this.left=null!==(i=t.left)&&void 0!==i?i:t.default,this.right=null!==(o=t.right)&&void 0!==o?o:t.default,this.top=null!==(s=t.top)&&void 0!==s?s:t.default)}}class Te{constructor(){this.acceleration=0,this.enable=!1}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=L(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),this.position=t.position?ot({},t.position):void 0)}}class Ie{constructor(){this.angle=new Oe,this.attract=new xe,this.decay=0,this.distance={},this.direction=a.none,this.drift=0,this.enable=!1,this.gravity=new Se,this.path=new Ce,this.outModes=new Re,this.random=!1,this.size=!1,this.speed=2,this.spin=new Te,this.straight=!1,this.trail=new ke,this.vibrate=!1,this.warp=!1}get collisions(){return!1}set collisions(t){}get bounce(){return this.collisions}set bounce(t){this.collisions=t}get out_mode(){return this.outMode}set out_mode(t){this.outMode=t}get outMode(){return this.outModes.default}set outMode(t){this.outModes.default=t}get noise(){return this.path}set noise(t){this.path=t}load(t){var e,i,o;if(void 0===t)return;void 0!==t.angle&&("number"==typeof t.angle?this.angle.value=t.angle:this.angle.load(t.angle)),this.attract.load(t.attract),void 0!==t.decay&&(this.decay=t.decay),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance="number"==typeof t.distance?{horizontal:t.distance,vertical:t.distance}:ot({},t.distance)),void 0!==t.drift&&(this.drift=L(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const s=null!==(e=t.outMode)&&void 0!==e?e:t.out_mode;void 0===t.outModes&&void 0===s||("string"==typeof t.outModes||void 0===t.outModes&&void 0!==s?this.outModes.load({default:null!==(i=t.outModes)&&void 0!==i?i:s}):this.outModes.load(t.outModes)),this.path.load(null!==(o=t.path)&&void 0!==o?o:t.noise),void 0!==t.random&&(this.random=t.random),void 0!==t.size&&(this.size=t.size),void 0!==t.speed&&(this.speed=L(t.speed)),this.spin.load(t.spin),void 0!==t.straight&&(this.straight=t.straight),this.trail.load(t.trail),void 0!==t.vibrate&&(this.vibrate=t.vibrate),void 0!==t.warp&&(this.warp=t.warp)}}class Ee{constructor(){this.enable=!1,this.area=800,this.factor=1e3}get value_area(){return this.area}set value_area(t){this.area=t}load(t){var e;if(void 0===t)return;void 0!==t.enable&&(this.enable=t.enable);const i=null!==(e=t.area)&&void 0!==e?e:t.value_area;void 0!==i&&(this.area=i),void 0!==t.factor&&(this.factor=t.factor)}}class Ae{constructor(){this.density=new Ee,this.limit=0,this.value=100}get max(){return this.limit}set max(t){this.limit=t}load(t){var e;if(void 0===t)return;this.density.load(t.density);const i=null!==(e=t.limit)&&void 0!==e?e:t.max;void 0!==i&&(this.limit=i),void 0!==t.value&&(this.value=t.value)}}class De{constructor(){this.count=0,this.enable=!1,this.speed=1,this.sync=!1}load(t){t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class Fe extends De{constructor(){super(),this.destroy=w.none,this.enable=!1,this.speed=2,this.startValue=z.random,this.sync=!1}get opacity_min(){return this.minimumValue}set opacity_min(t){this.minimumValue=t}load(t){var e;void 0!==t&&(super.load(t),void 0!==t.destroy&&(this.destroy=t.destroy),void 0!==t.enable&&(this.enable=t.enable),this.minimumValue=null!==(e=t.minimumValue)&&void 0!==e?e:t.opacity_min,void 0!==t.speed&&(this.speed=t.speed),void 0!==t.startValue&&(this.startValue=t.startValue),void 0!==t.sync&&(this.sync=t.sync))}}class Le extends ze{constructor(){super(),this.animation=new Fe,this.random.minimumValue=.1,this.value=1}get anim(){return this.animation}set anim(t){this.animation=t}load(t){var e;if(!t)return;super.load(t);const i=null!==(e=t.animation)&&void 0!==e?e:t.anim;void 0!==i&&(this.animation.load(i),this.value=L(this.value,this.animation.enable?this.animation.minimumValue:void 0))}}class qe{constructor(){this.options={},this.type=M.circle}get image(){var t;return null!==(t=this.options[M.image])&&void 0!==t?t:this.options[M.images]}set image(t){this.options[M.image]=t,this.options[M.images]=t}get custom(){return this.options}set custom(t){this.options=t}get images(){return this.image}set images(t){this.image=t}get stroke(){return[]}set stroke(t){}get character(){var t;return null!==(t=this.options[M.character])&&void 0!==t?t:this.options[M.char]}set character(t){this.options[M.character]=t,this.options[M.char]=t}get polygon(){var t;return null!==(t=this.options[M.polygon])&&void 0!==t?t:this.options[M.star]}set polygon(t){this.options[M.polygon]=t,this.options[M.star]=t}load(t){var e,i,o;if(void 0===t)return;const s=null!==(e=t.options)&&void 0!==e?e:t.custom;if(void 0!==s)for(const t in s){const e=s[t];void 0!==e&&(this.options[t]=ot(null!==(i=this.options[t])&&void 0!==i?i:{},e))}this.loadShape(t.character,M.character,M.char,!0),this.loadShape(t.polygon,M.polygon,M.star,!1),this.loadShape(null!==(o=t.image)&&void 0!==o?o:t.images,M.image,M.images,!0),void 0!==t.type&&(this.type=t.type)}loadShape(t,e,i,o){var s,n,a,r;void 0!==t&&(t instanceof Array?(this.options[e]instanceof Array||(this.options[e]=[],this.options[i]&&!o||(this.options[i]=[])),this.options[e]=ot(null!==(s=this.options[e])&&void 0!==s?s:[],t),this.options[i]&&!o||(this.options[i]=ot(null!==(n=this.options[i])&&void 0!==n?n:[],t))):(this.options[e]instanceof Array&&(this.options[e]={},this.options[i]&&!o||(this.options[i]={})),this.options[e]=ot(null!==(a=this.options[e])&&void 0!==a?a:{},t),this.options[i]&&!o||(this.options[i]=ot(null!==(r=this.options[i])&&void 0!==r?r:{},t))))}}class He extends De{constructor(){super(),this.destroy=w.none,this.enable=!1,this.speed=5,this.startValue=z.random,this.sync=!1}get size_min(){return this.minimumValue}set size_min(t){this.minimumValue=t}load(t){var e;void 0!==t&&(super.load(t),void 0!==t.destroy&&(this.destroy=t.destroy),void 0!==t.enable&&(this.enable=t.enable),this.minimumValue=null!==(e=t.minimumValue)&&void 0!==e?e:t.size_min,void 0!==t.speed&&(this.speed=t.speed),void 0!==t.startValue&&(this.startValue=t.startValue),void 0!==t.sync&&(this.sync=t.sync))}}class Ve extends ze{constructor(){super(),this.animation=new He,this.random.minimumValue=1,this.value=3}get anim(){return this.animation}set anim(t){this.animation=t}load(t){var e;if(!t)return;super.load(t);const i=null!==(e=t.animation)&&void 0!==e?e:t.anim;void 0!==i&&(this.animation.load(i),this.value=L(this.value,this.animation.enable?this.animation.minimumValue:void 0))}}class Be{constructor(){this.enable=!1,this.speed=0,this.sync=!1}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class _e extends ze{constructor(){super(),this.animation=new Be,this.direction=r.clockwise,this.path=!1,this.value=0}load(t){t&&(super.load(t),void 0!==t.direction&&(this.direction=t.direction),this.animation.load(t.animation),void 0!==t.path&&(this.path=t.path))}}class We{constructor(){this.blur=0,this.color=new me,this.enable=!1,this.offset={x:0,y:0},this.color.value="#000000"}load(t){void 0!==t&&(void 0!==t.blur&&(this.blur=t.blur),this.color=me.create(this.color,t.color),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(void 0!==t.offset.x&&(this.offset.x=t.offset.x),void 0!==t.offset.y&&(this.offset.y=t.offset.y)))}}class $e{constructor(){this.count=0,this.enable=!1,this.offset=0,this.speed=1,this.sync=!0}load(t){void 0!==t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(this.offset=L(t.offset)),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class Ue{constructor(){this.h=new $e,this.s=new $e,this.l=new $e}load(t){t&&(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}class je extends me{constructor(){super(),this.animation=new Ue}static create(t,e){const i=null!=t?t:new je;return void 0!==e&&i.load("string"==typeof e?{value:e}:e),i}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&(void 0!==e.enable?this.animation.h.load(e):this.animation.load(t.animation))}}class Ge{constructor(){this.width=0}load(t){void 0!==t&&(void 0!==t.color&&(this.color=je.create(this.color,t.color)),void 0!==t.width&&(this.width=t.width),void 0!==t.opacity&&(this.opacity=t.opacity))}}class Ne extends ze{constructor(){super(),this.random.minimumValue=.1,this.value=1}}class Je{constructor(){this.horizontal=new Ne,this.vertical=new Ne}load(t){t&&(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}class Xe{constructor(){this.enable=!0,this.retries=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.retries&&(this.retries=t.retries))}}class Ye{constructor(){this.bounce=new Je,this.enable=!1,this.mode=p.bounce,this.overlap=new Xe}load(t){void 0!==t&&(this.bounce.load(t.bounce),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.overlap.load(t.overlap))}}class Qe{constructor(){this.enable=!1,this.frequency=.05,this.opacity=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=me.create(this.color,t.color)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.frequency&&(this.frequency=t.frequency),void 0!==t.opacity&&(this.opacity=t.opacity))}}class Ze{constructor(){this.lines=new Qe,this.particles=new Qe}load(t){void 0!==t&&(this.lines.load(t.lines),this.particles.load(t.particles))}}class Ke extends ze{constructor(){super(),this.sync=!1}load(t){t&&(super.load(t),void 0!==t.sync&&(this.sync=t.sync))}}class ti extends ze{constructor(){super(),this.random.minimumValue=1e-4,this.sync=!1}load(t){void 0!==t&&(super.load(t),void 0!==t.sync&&(this.sync=t.sync))}}class ei{constructor(){this.count=0,this.delay=new Ke,this.duration=new ti}load(t){void 0!==t&&(void 0!==t.count&&(this.count=t.count),this.delay.load(t.delay),this.duration.load(t.duration))}}class ii extends ze{constructor(){super(),this.value=3}}class oi extends ze{constructor(){super(),this.value={min:4,max:9}}}class si{constructor(){this.count=1,this.factor=new ii,this.rate=new oi,this.sizeOffset=!0}load(t){t&&(void 0!==t.count&&(this.count=t.count),this.factor.load(t.factor),this.rate.load(t.rate),void 0!==t.particles&&(this.particles=ot({},t.particles)),void 0!==t.sizeOffset&&(this.sizeOffset=t.sizeOffset))}}class ni{constructor(){this.mode=h.none,this.split=new si}load(t){t&&(void 0!==t.mode&&(this.mode=t.mode),this.split.load(t.split))}}class ai{constructor(){this.distance=5,this.enable=!1,this.speed=50}load(t){t&&(void 0!==t.distance&&(this.distance=L(t.distance)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=L(t.speed)))}}class ri{constructor(){this.enable=!1,this.speed=0,this.sync=!1}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class li extends ze{constructor(){super(),this.animation=new ri,this.direction=c.clockwise,this.enable=!1,this.value=0}load(t){t&&(super.load(t),this.animation.load(t.animation),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.enable&&(this.enable=t.enable))}}class ci{constructor(){this.enable=!1,this.value=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.value&&(this.value=t.value))}}class di{constructor(){this.darken=new ci,this.enable=!1,this.enlighten=new ci,this.speed=25}load(t){t&&(void 0!==t.backColor&&(this.backColor=me.create(this.backColor,t.backColor)),this.darken.load(t.darken),void 0!==t.enable&&(this.enable=t.enable),this.enlighten.load(t.enlighten),void 0!==t.speed&&(this.speed=L(t.speed)))}}class hi extends ze{constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),t&&(void 0!==t.opacityRate&&(this.opacityRate=t.opacityRate),void 0!==t.sizeRate&&(this.sizeRate=t.sizeRate),void 0!==t.velocityRate&&(this.velocityRate=t.velocityRate))}}class ui extends ze{constructor(){super(),this.value=45,this.random.enable=!1,this.random.minimumValue=0}load(t){void 0!==t&&super.load(t)}}class vi{constructor(){this.animation=new De,this.enable=!1,this.opacity=1,this.rotation=new ui,this.width=1}load(t){void 0!==t&&(this.animation.load(t.animation),this.rotation.load(t.rotation),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.opacity&&(this.opacity=t.opacity),void 0!==t.width&&(this.width=t.width),void 0!==t.radius&&(this.radius=t.radius),void 0!==t.color&&(this.color=me.create(this.color,t.color)))}}class pi extends ze{constructor(){super(),this.enabled=!1,this.distance=1,this.duration=1,this.factor=1,this.speed=1}load(t){super.load(t),t&&(void 0!==t.enabled&&(this.enabled=t.enabled),void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.factor&&(this.factor=t.factor),void 0!==t.speed&&(this.speed=t.speed))}}class fi{constructor(){this.angle=new yi,this.colors=[],this.type=x.random}load(t){t&&(this.angle.load(t.angle),void 0!==t.colors&&(this.colors=t.colors.map((t=>{const e=new bi;return e.load(t),e}))),void 0!==t.type&&(this.type=t.type))}}class yi{constructor(){this.value=0,this.animation=new gi,this.direction=r.clockwise}load(t){t&&(this.animation.load(t.animation),void 0!==t.value&&(this.value=t.value),void 0!==t.direction&&(this.direction=t.direction))}}class mi{constructor(){this.value=0,this.animation=new wi}load(t){t&&(this.animation.load(t.animation),void 0!==t.value&&(this.value=L(t.value)))}}class bi{constructor(){this.stop=0,this.value=new je}load(t){t&&(void 0!==t.stop&&(this.stop=t.stop),this.value=je.create(this.value,t.value),void 0!==t.opacity&&(this.opacity=new mi,"number"==typeof t.opacity?this.opacity.value=t.opacity:this.opacity.load(t.opacity)))}}class gi{constructor(){this.count=0,this.enable=!1,this.speed=0,this.sync=!1}load(t){t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class wi{constructor(){this.count=0,this.enable=!1,this.speed=0,this.sync=!1,this.startValue=z.random}load(t){t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync),void 0!==t.startValue&&(this.startValue=t.startValue))}}class xi{constructor(){this.bounce=new Je,this.collisions=new Ye,this.color=new je,this.destroy=new ni,this.gradient=[],this.groups={},this.life=new ei,this.links=new we,this.move=new Ie,this.number=new Ae,this.opacity=new Le,this.orbit=new vi,this.reduceDuplicates=!1,this.repulse=new pi,this.roll=new di,this.rotate=new _e,this.shadow=new We,this.shape=new qe,this.size=new Ve,this.stroke=new Ge,this.tilt=new li,this.twinkle=new Ze,this.wobble=new ai,this.zIndex=new hi}get line_linked(){return this.links}set line_linked(t){this.links=t}get lineLinked(){return this.links}set lineLinked(t){this.links=t}load(t){var e,i,o,s,n,a,r,l;if(void 0===t)return;this.bounce.load(t.bounce),this.color=je.create(this.color,t.color),this.destroy.load(t.destroy),this.life.load(t.life);const c=null!==(i=null!==(e=t.links)&&void 0!==e?e:t.lineLinked)&&void 0!==i?i:t.line_linked;if(void 0!==c&&this.links.load(c),void 0!==t.groups)for(const e in t.groups){const i=t.groups[e];void 0!==i&&(this.groups[e]=ot(null!==(o=this.groups[e])&&void 0!==o?o:{},i))}this.move.load(t.move),this.number.load(t.number),this.opacity.load(t.opacity),this.orbit.load(t.orbit),void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.repulse.load(t.repulse),this.roll.load(t.roll),this.rotate.load(t.rotate),this.shape.load(t.shape),this.size.load(t.size),this.shadow.load(t.shadow),this.tilt.load(t.tilt),this.twinkle.load(t.twinkle),this.wobble.load(t.wobble),this.zIndex.load(t.zIndex);const d=null!==(n=null===(s=t.move)||void 0===s?void 0:s.collisions)&&void 0!==n?n:null===(a=t.move)||void 0===a?void 0:a.bounce;void 0!==d&&(this.collisions.enable=d),this.collisions.load(t.collisions);const h=null!==(r=t.stroke)&&void 0!==r?r:null===(l=t.shape)||void 0===l?void 0:l.stroke;h&&(h instanceof Array?this.stroke=h.map((t=>{const e=new Ge;return e.load(t),e})):(this.stroke instanceof Array&&(this.stroke=new Ge),this.stroke.load(h)));const u=t.gradient;u&&(u instanceof Array?this.gradient=u.map((t=>{const e=new fi;return e.load(t),e})):(this.gradient instanceof Array&&(this.gradient=new fi),this.gradient.load(u)))}}class ki extends R{constructor(t,e,i){super(t,e),this.z=void 0===i?t.z:i}static clone(t){return ki.create(t.x,t.y,t.z)}static create(t,e,i){return new ki(t,e,i)}add(t){return t instanceof ki?ki.create(this.x+t.x,this.y+t.y,this.z+t.z):super.add(t)}addTo(t){super.addTo(t),t instanceof ki&&(this.z+=t.z)}sub(t){return t instanceof ki?ki.create(this.x-t.x,this.y-t.y,this.z-t.z):super.sub(t)}subFrom(t){super.subFrom(t),t instanceof ki&&(this.z-=t.z)}mult(t){return ki.create(this.x*t,this.y*t,this.z*t)}multTo(t){super.multTo(t),this.z*=t}div(t){return ki.create(this.x/t,this.y/t,this.z/t)}divTo(t){super.divTo(t),this.z/=t}copy(){return ki.clone(this)}setTo(t){super.setTo(t),t instanceof ki&&(this.z=t.z)}}class Mi{constructor(t,e,i,o,s){var n,a,l,d,h,u,v,p,f,y;this.id=t,this.container=e,this.group=s,this.fill=!0,this.close=!0,this.lastPathTime=0,this.destroyed=!1,this.unbreakable=!1,this.splitCount=0,this.misplaced=!1,this.maxDistance={};const m=e.retina.pixelRatio,w=e.actualOptions,x=new xi;x.load(w.particles);const k=x.shape.type,M=x.reduceDuplicates;if(this.shape=k instanceof Array?K(k,this.id,M):k,null==o?void 0:o.shape){if(o.shape.type){const t=o.shape.type;this.shape=t instanceof Array?K(t,this.id,M):t}const t=new qe;t.load(o.shape),this.shape&&(this.shapeData=this.loadShapeData(t,M))}else this.shapeData=this.loadShapeData(x.shape,M);void 0!==o&&x.load(o),void 0!==(null===(n=this.shapeData)||void 0===n?void 0:n.particles)&&x.load(null===(a=this.shapeData)||void 0===a?void 0:a.particles),this.fill=null!==(d=null===(l=this.shapeData)||void 0===l?void 0:l.fill)&&void 0!==d?d:this.fill,this.close=null!==(u=null===(h=this.shapeData)||void 0===h?void 0:h.close)&&void 0!==u?u:this.close,this.options=x;const P=A(this.options.zIndex.value);this.pathDelay=1e3*q(this.options.move.path.delay),this.wobbleDistance=0,e.retina.initParticle(this);const C=this.options.size,O=q(C)*e.retina.pixelRatio,S=C.value;this.size={enable:C.animation.enable,value:O,max:F(S)*m,min:D(S)*m,loops:0,maxLoops:C.animation.count};const I=C.animation;if(I.enable){switch(this.size.status=b.increasing,I.startValue){case z.min:this.size.value=this.size.min,this.size.status=b.increasing;break;case z.random:this.size.value=E(this.size)*m,this.size.status=Math.random()>=.5?b.increasing:b.decreasing;break;case z.max:default:this.size.value=this.size.max,this.size.status=b.decreasing}this.size.velocity=(null!==(v=this.sizeAnimationSpeed)&&void 0!==v?v:e.retina.sizeAnimationSpeed)/100*e.retina.reduceFactor,I.sync||(this.size.velocity*=Math.random())}this.direction=B(this.options.move.direction),this.bubble={inRange:!1},this.initialVelocity=this.calculateVelocity(),this.velocity=this.initialVelocity.copy();const L=this.options.rotate;this.rotate={enable:L.animation.enable,value:A(L.value)*Math.PI/180};let H=L.direction;if(H===r.random){H=Math.floor(2*Math.random())>0?r.counterClockwise:r.clockwise}switch(H){case r.counterClockwise:case"counterClockwise":this.rotate.status=b.decreasing;break;case r.clockwise:this.rotate.status=b.increasing}const _=this.options.rotate.animation;_.enable&&(this.rotate.velocity=_.speed/360*e.retina.reduceFactor,_.sync||(this.rotate.velocity*=Math.random()));const W=this.options.tilt;this.tilt={enable:W.enable,value:A(W.value)*Math.PI/180,sinDirection:Math.random()>=.5?1:-1,cosDirection:Math.random()>=.5?1:-1};let $=W.direction;if($===c.random){$=Math.floor(2*Math.random())>0?c.counterClockwise:c.clockwise}switch($){case c.counterClockwise:case"counterClockwise":this.tilt.status=b.decreasing;break;case c.clockwise:this.tilt.status=b.increasing}const U=this.options.tilt.animation;U.enable&&(this.tilt.velocity=U.speed/360*e.retina.reduceFactor,U.sync||(this.tilt.velocity*=Math.random()));const j=x.orbit;j.enable&&(this.orbitRotation=A(j.rotation.value),this.orbitColor=ft(j.color));const G=ft(this.options.color,this.id,M);G&&(this.color=qt(G,this.options.color.animation,e.retina.reduceFactor));const N=this.options.gradient instanceof Array?K(this.options.gradient):this.options.gradient;if(N){this.gradient={angle:{value:N.angle.value,enable:N.angle.animation.enable,velocity:N.angle.animation.speed/360*e.retina.reduceFactor},type:N.type,colors:[]};let t=N.angle.direction;if(t===r.random){t=Math.floor(2*Math.random())>0?r.counterClockwise:r.clockwise}switch(t){case r.counterClockwise:case"counterClockwise":this.gradient.angle.status=b.decreasing;break;case r.clockwise:this.gradient.angle.status=b.increasing}for(const t of N.colors){const i=ft(t.value,this.id,M);if(i){const o=qt(i,t.value.animation,e.retina.reduceFactor),s={stop:t.stop,value:o,opacity:t.opacity?{enable:t.opacity.animation.enable,max:F(t.opacity.value),min:D(t.opacity.value),status:b.increasing,value:A(t.opacity.value),velocity:t.opacity.animation.speed/100*e.retina.reduceFactor}:void 0};if(t.opacity&&s.opacity){const e=t.opacity.value;s.opacity.min=D(e),s.opacity.max=F(e);switch(t.opacity.animation.startValue){case z.min:s.opacity.value=s.opacity.min,s.opacity.status=b.increasing;break;case z.random:s.opacity.value=E(s.opacity),s.opacity.status=Math.random()>=.5?b.increasing:b.decreasing;break;case z.max:default:s.opacity.value=s.opacity.max,s.opacity.status=b.decreasing}}this.gradient.colors.push(s)}}}const J=this.options.roll;J.enable?(this.color&&(J.backColor?this.backColor=ft(J.backColor):J.darken.enable&&J.enlighten.enable?(this.alterType=Math.random()>=.5?g.darken:g.enlighten,this.alterValue=this.alterType===g.darken?J.darken.value:J.enlighten.value):J.darken.enable?(this.alterType=g.darken,this.alterValue=J.darken.value):J.enlighten.enable&&(this.alterType=g.enlighten,this.alterValue=J.enlighten.value)),this.rollAngle=Math.random()*Math.PI*2,this.rollSpeed=A(J.speed)/360):(this.rollAngle=0,this.rollSpeed=0);const X=this.options.wobble;X.enable?(this.wobbleAngle=Math.random()*Math.PI*2,this.wobbleSpeed=A(X.speed)/360):(this.wobbleAngle=0,this.wobbleSpeed=0),this.position=this.calcPosition(e,i,T(P,0,e.zLayers)),this.initialPosition=this.position.copy(),this.offset=R.origin;const Y=e.particles;Y.needsSort=Y.needsSort||Y.lastZIndex<this.position.z,Y.lastZIndex=this.position.z,this.zIndexFactor=this.position.z/e.zLayers;const Q=this.options.opacity;this.opacity={enable:Q.animation.enable,max:F(Q.value),min:D(Q.value),value:A(Q.value),loops:0,maxLoops:Q.animation.count};const Z=Q.animation;if(Z.enable){this.opacity.status=b.increasing;const t=Q.value;switch(this.opacity.min=D(t),this.opacity.max=F(t),Z.startValue){case z.min:this.opacity.value=this.opacity.min,this.opacity.status=b.increasing;break;case z.random:this.opacity.value=E(this.opacity),this.opacity.status=Math.random()>=.5?b.increasing:b.decreasing;break;case z.max:default:this.opacity.value=this.opacity.max,this.opacity.status=b.decreasing}this.opacity.velocity=Z.speed/100*e.retina.reduceFactor,Z.sync||(this.opacity.velocity*=Math.random())}this.sides=24;let tt=e.drawers.get(this.shape);tt||(tt=ve.getShapeDrawer(this.shape),tt&&e.drawers.set(this.shape,tt)),(null==tt?void 0:tt.loadShape)&&(null==tt||tt.loadShape(this));const et=null==tt?void 0:tt.getSidesCount;et&&(this.sides=et(this)),this.stroke=this.options.stroke instanceof Array?K(this.options.stroke,this.id,M):this.options.stroke,this.strokeWidth=this.stroke.width*e.retina.pixelRatio;const it=null!==(p=ft(this.stroke.color))&&void 0!==p?p:this.getFillColor();if(it&&(this.strokeColor=qt(it,null===(f=this.stroke.color)||void 0===f?void 0:f.animation,e.retina.reduceFactor)),this.life=this.loadLife(),this.spawning=this.life.delay>0,this.options.move.spin.enable){const t=null!==(y=this.options.move.spin.position)&&void 0!==y?y:{x:50,y:50},i={x:t.x/100*e.canvas.size.width,y:t.y/100*e.canvas.size.height},o=V(this.getPosition(),i);this.spin={center:i,direction:this.velocity.x>=0?r.clockwise:r.counterClockwise,angle:this.velocity.angle,radius:o,acceleration:A(this.options.move.spin.acceleration)}}this.shadowColor=pt(this.options.shadow.color),tt&&tt.particleInit&&tt.particleInit(e,this);for(const[,t]of e.plugins)t.particleCreated&&t.particleCreated(this)}isVisible(){return!this.destroyed&&!this.spawning&&this.isInsideCanvas()}isInsideCanvas(){const t=this.getRadius(),e=this.container.canvas.size;return this.position.x>=-t&&this.position.y>=-t&&this.position.y<=e.height+t&&this.position.x<=e.width+t}draw(t){const e=this.container;for(const[,i]of e.plugins)e.canvas.drawParticlePlugin(i,this,t);e.canvas.drawParticle(this,t)}getPosition(){return{x:this.position.x+this.offset.x,y:this.position.y+this.offset.y,z:this.position.z}}getRadius(){return this.bubble.radius||this.size.value}getMass(){const t=this.getRadius();return Math.pow(t,2)*Math.PI/2}getFillColor(){if(this.bubble.color)return this.bubble.color;const t=Lt(this.color);if(t&&(this.backColor||this.alterType&&void 0!==this.alterValue)){if(Math.floor(this.rollAngle/(Math.PI/2))%2){if(this.backColor)return this.backColor;if(this.alterType&&void 0!==this.alterValue)return{h:t.h,s:t.s,l:t.l+(this.alterType===g.darken?-1:1)*this.alterValue}}}return t}getStrokeColor(){var t,e;return null!==(e=null!==(t=this.bubble.color)&&void 0!==t?t:Lt(this.strokeColor))&&void 0!==e?e:this.getFillColor()}destroy(t){if(this.destroyed=!0,this.bubble.inRange=!1,this.unbreakable)return;this.destroyed=!0,this.bubble.inRange=!1;for(const[,e]of this.container.plugins)e.particleDestroyed&&e.particleDestroyed(this,t);if(t)return;this.options.destroy.mode===h.split&&this.split()}reset(){this.opacity.loops=0,this.size.loops=0}split(){const t=this.options.destroy.split;if(t.count>=0&&this.splitCount++>t.count)return;const e=A(t.rate.value);for(let t=0;t<e;t++)this.container.particles.addSplitParticle(this)}calcPosition(t,e,i,o=0){var s,n,a,r,l,c;for(const[,o]of t.plugins){const t=void 0!==o.particlePosition?o.particlePosition(e,this):void 0;if(void 0!==t)return ki.create(t.x,t.y,i)}const d=t.canvas.size,h=ki.create(null!==(s=null==e?void 0:e.x)&&void 0!==s?s:Math.random()*d.width,null!==(n=null==e?void 0:e.y)&&void 0!==n?n:Math.random()*d.height,i),u=this.getRadius(),v=this.options.move.outModes,p=e=>{(Y(e,f.bounce)||Y(e,f.bounceHorizontal))&&(h.x>t.canvas.size.width-2*u?h.x-=u:h.x<2*u&&(h.x+=u))},y=e=>{(Y(e,f.bounce)||Y(e,f.bounceVertical))&&(h.y>t.canvas.size.height-2*u?h.y-=u:h.y<2*u&&(h.y+=u))};return p(null!==(a=v.left)&&void 0!==a?a:v.default),p(null!==(r=v.right)&&void 0!==r?r:v.default),y(null!==(l=v.top)&&void 0!==l?l:v.default),y(null!==(c=v.bottom)&&void 0!==c?c:v.default),this.checkOverlap(h,o)?this.calcPosition(t,void 0,i,o+1):h}checkOverlap(t,e=0){const i=this.options.collisions,o=this.getRadius();if(!i.enable)return!1;const s=i.overlap;if(s.enable)return!1;const n=s.retries;if(n>=0&&e>n)throw new Error("Particle is overlapping and can't be placed");let a=!1;for(const e of this.container.particles.array)if(V(t,e.position)<o+e.getRadius()){a=!0;break}return a}calculateVelocity(){const t=_(this.direction).copy(),e=this.options.move,i=Math.PI/180*e.angle.value,o=Math.PI/180*e.angle.offset,s={left:o-i/2,right:o+i/2};return e.straight||(t.angle+=E(L(s.left,s.right))),e.random&&"number"==typeof e.speed&&(t.length*=Math.random()),t}loadShapeData(t,e){const i=t.options[this.shape];if(i)return ot({},i instanceof Array?K(i,this.id,e):i)}loadLife(){const t=this.container,e=this.options,i=e.life,o={delay:t.retina.reduceFactor?A(i.delay.value)*(i.delay.sync?1:Math.random())/t.retina.reduceFactor*1e3:0,delayTime:0,duration:t.retina.reduceFactor?A(i.duration.value)*(i.duration.sync?1:Math.random())/t.retina.reduceFactor*1e3:0,time:0,count:e.life.count};return o.duration<=0&&(o.duration=-1),o.count<=0&&(o.count=-1),o}}class zi{constructor(t){this.container=t;const e=ve.getInteractors(t);this.externalInteractors=[],this.particleInteractors=[];for(const t of e)switch(t.type){case k.External:this.externalInteractors.push(t);break;case k.Particles:this.particleInteractors.push(t)}}externalInteract(t){for(const e of this.externalInteractors)e.isEnabled()&&e.interact(t)}particlesInteract(t,e){for(const e of this.externalInteractors)e.reset(t);for(const i of this.particleInteractors)i.isEnabled(t)&&i.interact(t,e)}}class Pi{constructor(t){this.container=t}move(t,e){t.destroyed||(this.moveParticle(t,e),this.moveParallax(t))}moveParticle(t,e){var i,o,s;const n=t.options,a=n.move;if(!a.enable)return;const r=this.container,l=this.getProximitySpeedFactor(t),c=(null!==(i=t.moveSpeed)&&void 0!==i?i:t.moveSpeed=A(a.speed)*r.retina.pixelRatio)*r.retina.reduceFactor,d=null!==(o=t.moveDrift)&&void 0!==o?o:t.moveDrift=A(t.options.move.drift)*r.retina.pixelRatio,h=F(n.size.value)*r.retina.pixelRatio,u=c*((a.size?t.getRadius()/h:1)*l*(e.factor||1)/2);this.applyPath(t,e);const v=a.gravity,p=v.enable&&v.inverse?-1:1;v.enable&&u&&(t.velocity.y+=p*(v.acceleration*e.factor)/(60*u)),d&&u&&(t.velocity.x+=d*e.factor/(60*u));const f=1-t.options.move.decay;1!=f&&t.velocity.multTo(f);const y=t.velocity.mult(u),m=null!==(s=t.maxSpeed)&&void 0!==s?s:r.retina.maxSpeed;v.enable&&v.maxSpeed>0&&(!v.inverse&&y.y>=0&&y.y>=m||v.inverse&&y.y<=0&&y.y<=-m)&&(y.y=p*m,u&&(t.velocity.y=y.y/u));const b=t.options.zIndex,g=Math.pow(1-t.zIndexFactor,b.velocityRate);a.spin.enable?this.spin(t,u):(1!=g&&y.multTo(g),t.position.addTo(y),a.vibrate&&(t.position.x+=Math.sin(t.position.x*Math.cos(t.position.y)),t.position.y+=Math.cos(t.position.y*Math.sin(t.position.x)))),function(t){const e=t.initialPosition,{dx:i,dy:o}=H(e,t.position),s=Math.abs(i),n=Math.abs(o),a=t.maxDistance.horizontal,r=t.maxDistance.vertical;if(a||r)if((a&&s>=a||r&&n>=r)&&!t.misplaced)t.misplaced=!!a&&s>a||!!r&&n>r,a&&(t.velocity.x=t.velocity.y/2-t.velocity.x),r&&(t.velocity.y=t.velocity.x/2-t.velocity.y);else if((!a||s<a)&&(!r||n<r)&&t.misplaced)t.misplaced=!1;else if(t.misplaced){const i=t.position,o=t.velocity;a&&(i.x<e.x&&o.x<0||i.x>e.x&&o.x>0)&&(o.x*=-Math.random()),r&&(i.y<e.y&&o.y<0||i.y>e.y&&o.y>0)&&(o.y*=-Math.random())}}(t)}spin(t,e){const i=this.container;if(!t.spin)return;const o={x:t.spin.direction===r.clockwise?Math.cos:Math.sin,y:t.spin.direction===r.clockwise?Math.sin:Math.cos};t.position.x=t.spin.center.x+t.spin.radius*o.x(t.spin.angle),t.position.y=t.spin.center.y+t.spin.radius*o.y(t.spin.angle),t.spin.radius+=t.spin.acceleration;const s=Math.max(i.canvas.size.width,i.canvas.size.height);t.spin.radius>s/2?(t.spin.radius=s/2,t.spin.acceleration*=-1):t.spin.radius<0&&(t.spin.radius=0,t.spin.acceleration*=-1),t.spin.angle+=e/100*(1-t.spin.radius/s)}applyPath(t,e){const i=t.options.move.path;if(!i.enable)return;const o=this.container;if(t.lastPathTime<=t.pathDelay)return void(t.lastPathTime+=e.value);const s=o.pathGenerator.generate(t);t.velocity.addTo(s),i.clamp&&(t.velocity.x=T(t.velocity.x,-1,1),t.velocity.y=T(t.velocity.y,-1,1)),t.lastPathTime-=t.pathDelay}moveParallax(t){const e=this.container,i=e.actualOptions;if(N()||!i.interactivity.events.onHover.parallax.enable)return;const o=i.interactivity.events.onHover.parallax.force,s=e.interactivity.mouse.position;if(!s)return;const n=e.canvas.size.width/2,a=e.canvas.size.height/2,r=i.interactivity.events.onHover.parallax.smooth,l=t.getRadius()/o,c=(s.x-n)*l,d=(s.y-a)*l;t.offset.x+=(c-t.offset.x)/r,t.offset.y+=(d-t.offset.y)/r}getProximitySpeedFactor(t){const e=this.container,i=e.actualOptions;if(!Y(v.slow,i.interactivity.events.onHover.mode))return 1;const o=this.container.interactivity.mouse.position;if(!o)return 1;const s=V(o,t.getPosition()),n=e.retina.slowModeRadius;if(s>n)return 1;return(s/n||0)/i.interactivity.modes.slow.factor}}class Ci{constructor(t){this.container=t,this.nextId=0,this.array=[],this.zArray=[],this.mover=new Pi(t),this.limit=0,this.needsSort=!1,this.lastZIndex=0,this.linksFreq=new Map,this.trianglesFreq=new Map,this.interactionManager=new zi(t);const e=this.container.canvas.size;this.linksColors=new Map,this.quadTree=new fe(new ee(-e.width/4,-e.height/4,3*e.width/2,3*e.height/2),4),this.updaters=ve.getUpdaters(t)}get count(){return this.array.length}init(){var t;const e=this.container,i=e.actualOptions;this.lastZIndex=0,this.needsSort=!1,this.linksFreq=new Map,this.trianglesFreq=new Map;let o=!1;for(const[,t]of e.plugins)if(void 0!==t.particlesInitialization&&(o=t.particlesInitialization()),o)break;if(this.addManualParticles(),!o){for(const e in i.particles.groups){const o=i.particles.groups[e];for(let s=this.count,n=0;n<(null===(t=o.number)||void 0===t?void 0:t.value)&&s<i.particles.number.value;s++,n++)this.addParticle(void 0,o,e)}for(let t=this.count;t<i.particles.number.value;t++)this.addParticle()}e.pathGenerator.init(e)}redraw(){this.clear(),this.init(),this.draw({value:0,factor:0})}removeAt(t,e=1,i,o){if(!(t>=0&&t<=this.count))return;let s=0;for(let n=t;s<e&&n<this.count;n++){const t=this.array[n];if(!t||t.group!==i)continue;t.destroy(o),this.array.splice(n--,1);const e=this.zArray.indexOf(t);this.zArray.splice(e,1),s++}}remove(t,e,i){this.removeAt(this.array.indexOf(t),void 0,e,i)}update(t){const e=this.container,i=[];e.pathGenerator.update();for(const[,i]of e.plugins)void 0!==i.update&&i.update(t);for(const o of this.array){const s=e.canvas.resizeFactor;s&&(o.position.x*=s.width,o.position.y*=s.height),o.bubble.inRange=!1;for(const[,e]of this.container.plugins){if(o.destroyed)break;e.particleUpdate&&e.particleUpdate(o,t)}this.mover.move(o,t),o.destroyed?i.push(o):this.quadTree.insert(new pe(o.getPosition(),o))}for(const t of i)this.remove(t);this.interactionManager.externalInteract(t);for(const i of e.particles.array){for(const e of this.updaters)e.update(i,t);i.destroyed||i.spawning||this.interactionManager.particlesInteract(i,t)}delete e.canvas.resizeFactor}draw(t){const e=this.container;e.canvas.clear();const i=this.container.canvas.size;this.quadTree=new fe(new ee(-i.width/4,-i.height/4,3*i.width/2,3*i.height/2),4),this.update(t),this.needsSort&&(this.zArray.sort(((t,e)=>e.position.z-t.position.z||t.id-e.id)),this.lastZIndex=this.zArray[this.zArray.length-1].position.z,this.needsSort=!1);for(const[,i]of e.plugins)e.canvas.drawPlugin(i,t);for(const e of this.zArray)e.draw(t)}clear(){this.array=[],this.zArray=[]}push(t,e,i,o){this.pushing=!0;for(let s=0;s<t;s++)this.addParticle(null==e?void 0:e.position,i,o);this.pushing=!1}addParticle(t,e,i){const o=this.container,s=o.actualOptions.particles.number.limit*o.density;if(s>0){const t=this.count+1-s;t>0&&this.removeQuantity(t)}return this.pushParticle(t,e,i)}addSplitParticle(t){const e=t.options.destroy.split,i=new xi;i.load(t.options);const o=A(e.factor.value);i.color.load({value:{hsl:t.getFillColor()}}),"number"==typeof i.size.value?i.size.value/=o:(i.size.value.min/=o,i.size.value.max/=o),i.load(e.particles);const s=e.sizeOffset?L(-t.size.value,t.size.value):0,n={x:t.position.x+E(s),y:t.position.y+E(s)};return this.pushParticle(n,i,t.group,(e=>!(e.size.value<.5)&&(e.velocity.length=E(L(t.velocity.length,e.velocity.length)),e.splitCount=t.splitCount+1,e.unbreakable=!0,setTimeout((()=>{e.unbreakable=!1}),500),!0)))}removeQuantity(t,e){this.removeAt(0,t,e)}getLinkFrequency(t,e){const i=`${Math.min(t.id,e.id)}_${Math.max(t.id,e.id)}`;let o=this.linksFreq.get(i);return void 0===o&&(o=Math.random(),this.linksFreq.set(i,o)),o}getTriangleFrequency(t,e,i){let[o,s,n]=[t.id,e.id,i.id];o>s&&([s,o]=[o,s]),s>n&&([n,s]=[s,n]),o>n&&([n,o]=[o,n]);const a=`${o}_${s}_${n}`;let r=this.trianglesFreq.get(a);return void 0===r&&(r=Math.random(),this.trianglesFreq.set(a,r)),r}addManualParticles(){const t=this.container,e=t.actualOptions;for(const i of e.manualParticles){const e=i.position?{x:i.position.x*t.canvas.size.width/100,y:i.position.y*t.canvas.size.height/100}:void 0;this.addParticle(e,i.options)}}setDensity(){const t=this.container.actualOptions;for(const e in t.particles.groups)this.applyDensity(t.particles.groups[e],0,e);this.applyDensity(t.particles,t.manualParticles.length)}applyDensity(t,e,i){var o;if(!(null===(o=t.number.density)||void 0===o?void 0:o.enable))return;const s=t.number,n=this.initDensityFactor(s.density),a=s.value,r=s.limit>0?s.limit:a,l=Math.min(a,r)*n+e,c=Math.min(this.count,this.array.filter((t=>t.group===i)).length);this.limit=s.limit*n,c<l?this.push(Math.abs(l-c),void 0,t,i):c>l&&this.removeQuantity(c-l,i)}initDensityFactor(t){const e=this.container;if(!e.canvas.element||!t.enable)return 1;const i=e.canvas.element,o=e.retina.pixelRatio;return i.width*i.height/(t.factor*Math.pow(o,2)*t.area)}pushParticle(t,e,i,o){try{const s=new Mi(this.nextId,this.container,t,e,i);let n=!0;if(o&&(n=o(s)),!n)return;return this.array.push(s),this.zArray.push(s),this.nextId++,s}catch(t){return void console.warn(`error adding particle: ${t}`)}}}class Oi{constructor(t){this.container=t}init(){const t=this.container,e=t.actualOptions;this.pixelRatio=!e.detectRetina||N()?1:window.devicePixelRatio;const i=this.container.actualOptions.motion;if(i&&(i.disable||i.reduce.value))if(N()||"undefined"==typeof matchMedia||!matchMedia)this.reduceFactor=1;else{const e=matchMedia("(prefers-reduced-motion: reduce)");if(e){this.handleMotionChange(e);const i=()=>{this.handleMotionChange(e),t.refresh().catch((()=>{}))};void 0!==e.addEventListener?e.addEventListener("change",i):void 0!==e.addListener&&e.addListener(i)}}else this.reduceFactor=1;const o=this.pixelRatio;if(t.canvas.element){const e=t.canvas.element;t.canvas.size.width=e.offsetWidth*o,t.canvas.size.height=e.offsetHeight*o}const s=e.particles;this.attractDistance=s.move.attract.distance*o,this.linksDistance=s.links.distance*o,this.linksWidth=s.links.width*o,this.sizeAnimationSpeed=s.size.animation.speed*o,this.maxSpeed=s.move.gravity.maxSpeed*o,void 0!==s.orbit.radius&&(this.orbitRadius=s.orbit.radius*this.container.retina.pixelRatio);const n=e.interactivity.modes;this.connectModeDistance=n.connect.distance*o,this.connectModeRadius=n.connect.radius*o,this.grabModeDistance=n.grab.distance*o,this.repulseModeDistance=n.repulse.distance*o,this.bounceModeDistance=n.bounce.distance*o,this.attractModeDistance=n.attract.distance*o,this.slowModeRadius=n.slow.radius*o,this.bubbleModeDistance=n.bubble.distance*o,n.bubble.size&&(this.bubbleModeSize=n.bubble.size*o)}initParticle(t){const e=t.options,i=this.pixelRatio,o=e.move.distance,s=e.orbit;t.attractDistance=e.move.attract.distance*i,t.linksDistance=e.links.distance*i,t.linksWidth=e.links.width*i,t.moveDrift=A(e.move.drift)*i,t.moveSpeed=A(e.move.speed)*i,t.sizeAnimationSpeed=e.size.animation.speed*i,t.orbitRadius=void 0!==(null==s?void 0:s.radius)?s.radius*i:void 0,t.spin&&(t.spin.acceleration=A(e.move.spin.acceleration)*i);const n=t.maxDistance;n.horizontal=void 0!==o.horizontal?o.horizontal*i:void 0,n.vertical=void 0!==o.vertical?o.vertical*i:void 0,t.wobbleDistance=A(e.wobble.distance)*i,t.maxSpeed=e.move.gravity.maxSpeed*i}handleMotionChange(t){const e=this.container.actualOptions;if(t.matches){const t=e.motion;this.reduceFactor=t.disable?0:t.reduce.value?1/t.reduce.factor:1}else this.reduceFactor=1}}class Si{constructor(t){this.container=t}nextFrame(t){var e;try{const i=this.container;if(void 0!==i.lastFrameTime&&t<i.lastFrameTime+1e3/i.fpsLimit)return void i.draw(!1);null!==(e=i.lastFrameTime)&&void 0!==e||(i.lastFrameTime=t);const o=t-i.lastFrameTime,s={value:o,factor:60*o/1e3};if(i.lifeTime+=s.value,i.lastFrameTime=t,o>1e3)return void i.draw(!1);if(i.particles.draw(s),i.duration>0&&i.lifeTime>i.duration)return void i.destroy();i.getAnimationStatus()&&i.draw(!1)}catch(t){console.error("tsParticles error in animation loop",t)}}}class Ri{constructor(){this.enable=!1,this.mode=[]}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode))}}class Ti{constructor(){this.selectors=[],this.enable=!1,this.mode=[],this.type=P.circle}get elementId(){return this.ids}set elementId(t){this.ids=t}get el(){return this.elementId}set el(t){this.elementId=t}get ids(){return this.selectors instanceof Array?this.selectors.map((t=>t.replace("#",""))):this.selectors.replace("#","")}set ids(t){this.selectors=t instanceof Array?t.map((t=>`#${t}`)):`#${t}`}load(t){var e,i;if(void 0===t)return;const o=null!==(i=null!==(e=t.ids)&&void 0!==e?e:t.elementId)&&void 0!==i?i:t.el;void 0!==o&&(this.ids=o),void 0!==t.selectors&&(this.selectors=t.selectors),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.type&&(this.type=t.type)}}class Ii{constructor(){this.enable=!1,this.force=2,this.smooth=10}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.force&&(this.force=t.force),void 0!==t.smooth&&(this.smooth=t.smooth))}}class Ei{constructor(){this.enable=!1,this.mode=[],this.parallax=new Ii}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.parallax.load(t.parallax))}}class Ai{constructor(){this.onClick=new Ri,this.onDiv=new Ti,this.onHover=new Ei,this.resize=!0}get onclick(){return this.onClick}set onclick(t){this.onClick=t}get ondiv(){return this.onDiv}set ondiv(t){this.onDiv=t}get onhover(){return this.onHover}set onhover(t){this.onHover=t}load(t){var e,i,o;if(void 0===t)return;this.onClick.load(null!==(e=t.onClick)&&void 0!==e?e:t.onclick);const s=null!==(i=t.onDiv)&&void 0!==i?i:t.ondiv;void 0!==s&&(s instanceof Array?this.onDiv=s.map((t=>{const e=new Ti;return e.load(t),e})):(this.onDiv=new Ti,this.onDiv.load(s))),this.onHover.load(null!==(o=t.onHover)&&void 0!==o?o:t.onhover),void 0!==t.resize&&(this.resize=t.resize)}}class Di{constructor(){this.distance=200,this.duration=.4,this.mix=!1}load(t){void 0!==t&&(void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.mix&&(this.mix=t.mix),void 0!==t.opacity&&(this.opacity=t.opacity),void 0!==t.color&&(t.color instanceof Array?this.color=t.color.map((t=>me.create(void 0,t))):(this.color instanceof Array&&(this.color=new me),this.color=me.create(this.color,t.color))),void 0!==t.size&&(this.size=t.size))}}class Fi extends Di{constructor(){super(),this.selectors=[]}get ids(){return this.selectors instanceof Array?this.selectors.map((t=>t.replace("#",""))):this.selectors.replace("#","")}set ids(t){this.selectors=t instanceof Array?t.map((t=>`#${t}`)):`#${t}`}load(t){super.load(t),void 0!==t&&(void 0!==t.ids&&(this.ids=t.ids),void 0!==t.selectors&&(this.selectors=t.selectors))}}class Li extends Di{load(t){super.load(t),void 0!==t&&void 0!==t.divs&&(t.divs instanceof Array?this.divs=t.divs.map((t=>{const e=new Fi;return e.load(t),e})):((this.divs instanceof Array||!this.divs)&&(this.divs=new Fi),this.divs.load(t.divs)))}}class qi{constructor(){this.opacity=.5}load(t){void 0!==t&&void 0!==t.opacity&&(this.opacity=t.opacity)}}class Hi{constructor(){this.distance=80,this.links=new qi,this.radius=60}get line_linked(){return this.links}set line_linked(t){this.links=t}get lineLinked(){return this.links}set lineLinked(t){this.links=t}load(t){var e,i;void 0!==t&&(void 0!==t.distance&&(this.distance=t.distance),this.links.load(null!==(i=null!==(e=t.links)&&void 0!==e?e:t.lineLinked)&&void 0!==i?i:t.line_linked),void 0!==t.radius&&(this.radius=t.radius))}}class Vi{constructor(){this.blink=!1,this.consent=!1,this.opacity=1}load(t){void 0!==t&&(void 0!==t.blink&&(this.blink=t.blink),void 0!==t.color&&(this.color=me.create(this.color,t.color)),void 0!==t.consent&&(this.consent=t.consent),void 0!==t.opacity&&(this.opacity=t.opacity))}}class Bi{constructor(){this.distance=100,this.links=new Vi}get line_linked(){return this.links}set line_linked(t){this.links=t}get lineLinked(){return this.links}set lineLinked(t){this.links=t}load(t){var e,i;void 0!==t&&(void 0!==t.distance&&(this.distance=t.distance),this.links.load(null!==(i=null!==(e=t.links)&&void 0!==e?e:t.lineLinked)&&void 0!==i?i:t.line_linked))}}class _i{constructor(){this.quantity=2}get particles_nb(){return this.quantity}set particles_nb(t){this.quantity=t}load(t){var e;if(void 0===t)return;const i=null!==(e=t.quantity)&&void 0!==e?e:t.particles_nb;void 0!==i&&(this.quantity=i)}}class Wi{constructor(){this.default=!0,this.groups=[],this.quantity=4}get particles_nb(){return this.quantity}set particles_nb(t){this.quantity=t}load(t){var e;if(void 0===t)return;void 0!==t.default&&(this.default=t.default),void 0!==t.groups&&(this.groups=t.groups.map((t=>t))),this.groups.length||(this.default=!0);const i=null!==(e=t.quantity)&&void 0!==e?e:t.particles_nb;void 0!==i&&(this.quantity=i)}}class $i{constructor(){this.distance=200,this.duration=.4,this.factor=100,this.speed=1,this.maxSpeed=50,this.easing=C.easeOutQuad}load(t){t&&(void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.easing&&(this.easing=t.easing),void 0!==t.factor&&(this.factor=t.factor),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.maxSpeed&&(this.maxSpeed=t.maxSpeed))}}class Ui extends $i{constructor(){super(),this.selectors=[]}get ids(){return this.selectors instanceof Array?this.selectors.map((t=>t.replace("#",""))):this.selectors.replace("#","")}set ids(t){this.selectors=t instanceof Array?t.map((()=>`#${t}`)):`#${t}`}load(t){super.load(t),void 0!==t&&(void 0!==t.ids&&(this.ids=t.ids),void 0!==t.selectors&&(this.selectors=t.selectors))}}class ji extends $i{load(t){super.load(t),void 0!==(null==t?void 0:t.divs)&&(t.divs instanceof Array?this.divs=t.divs.map((t=>{const e=new Ui;return e.load(t),e})):((this.divs instanceof Array||!this.divs)&&(this.divs=new Ui),this.divs.load(t.divs)))}}class Gi{constructor(){this.factor=3,this.radius=200}get active(){return!1}set active(t){}load(t){void 0!==t&&(void 0!==t.factor&&(this.factor=t.factor),void 0!==t.radius&&(this.radius=t.radius))}}class Ni{constructor(){this.delay=1,this.pauseOnStop=!1,this.quantity=1}load(t){void 0!==t&&(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.quantity&&(this.quantity=t.quantity),void 0!==t.particles&&(this.particles=ot({},t.particles)),void 0!==t.pauseOnStop&&(this.pauseOnStop=t.pauseOnStop))}}class Ji{constructor(){this.distance=200,this.duration=.4,this.easing=C.easeOutQuad,this.factor=1,this.maxSpeed=50,this.speed=1}load(t){t&&(void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.easing&&(this.easing=t.easing),void 0!==t.factor&&(this.factor=t.factor),void 0!==t.maxSpeed&&(this.maxSpeed=t.maxSpeed),void 0!==t.speed&&(this.speed=t.speed))}}class Xi{constructor(){this.start=new me,this.stop=new me,this.start.value="#ffffff",this.stop.value="#000000"}load(t){void 0!==t&&(this.start=me.create(this.start,t.start),this.stop=me.create(this.stop,t.stop))}}class Yi{constructor(){this.gradient=new Xi,this.radius=1e3}load(t){void 0!==t&&(this.gradient.load(t.gradient),void 0!==t.radius&&(this.radius=t.radius))}}class Qi{constructor(){this.color=new me,this.color.value="#000000",this.length=2e3}load(t){void 0!==t&&(this.color=me.create(this.color,t.color),void 0!==t.length&&(this.length=t.length))}}class Zi{constructor(){this.area=new Yi,this.shadow=new Qi}load(t){void 0!==t&&(this.area.load(t.area),this.shadow.load(t.shadow))}}class Ki{constructor(){this.distance=200}load(t){t&&void 0!==t.distance&&(this.distance=t.distance)}}class to{constructor(){this.attract=new Ji,this.bounce=new Ki,this.bubble=new Li,this.connect=new Hi,this.grab=new Bi,this.light=new Zi,this.push=new Wi,this.remove=new _i,this.repulse=new ji,this.slow=new Gi,this.trail=new Ni}load(t){void 0!==t&&(this.attract.load(t.attract),this.bubble.load(t.bubble),this.connect.load(t.connect),this.grab.load(t.grab),this.light.load(t.light),this.push.load(t.push),this.remove.load(t.remove),this.repulse.load(t.repulse),this.slow.load(t.slow),this.trail.load(t.trail))}}class eo{constructor(){this.detectsOn=S.canvas,this.events=new Ai,this.modes=new to}get detect_on(){return this.detectsOn}set detect_on(t){this.detectsOn=t}load(t){var e,i,o;if(void 0===t)return;const s=null!==(e=t.detectsOn)&&void 0!==e?e:t.detect_on;void 0!==s&&(this.detectsOn=s),this.events.load(t.events),this.modes.load(t.modes),!0===(null===(o=null===(i=t.modes)||void 0===i?void 0:i.slow)||void 0===o?void 0:o.active)&&(this.events.onHover.mode instanceof Array?this.events.onHover.mode.indexOf(v.slow)<0&&this.events.onHover.mode.push(v.slow):this.events.onHover.mode!==v.slow&&(this.events.onHover.mode=[this.events.onHover.mode,v.slow]))}}class io{constructor(){this.color=new me,this.opacity=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=me.create(this.color,t.color)),void 0!==t.opacity&&(this.opacity=t.opacity))}}class oo{constructor(){this.composite="destination-out",this.cover=new io,this.enable=!1}load(t){if(void 0!==t){if(void 0!==t.composite&&(this.composite=t.composite),void 0!==t.cover){const e=t.cover,i="string"==typeof t.cover?{color:t.cover}:t.cover;this.cover.load(void 0!==e.color?e:{color:i})}void 0!==t.enable&&(this.enable=t.enable)}}}class so{constructor(){this.color=new me,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=me.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.position&&(this.position=t.position),void 0!==t.repeat&&(this.repeat=t.repeat),void 0!==t.size&&(this.size=t.size),void 0!==t.opacity&&(this.opacity=t.opacity))}}class no{constructor(){this.mode=m.any,this.value=!1}load(t){void 0!==t&&(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}class ao{constructor(){this.name="",this.default=new no}load(t){void 0!==t&&(void 0!==t.name&&(this.name=t.name),this.default.load(t.default),void 0!==t.options&&(this.options=ot({},t.options)))}}class ro{constructor(){this.enable=!1,this.zIndex=-1}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}class lo{constructor(){this.factor=4,this.value=!0}load(t){t&&(void 0!==t.factor&&(this.factor=t.factor),void 0!==t.value&&(this.value=t.value))}}class co{constructor(){this.disable=!1,this.reduce=new lo}load(t){t&&(void 0!==t.disable&&(this.disable=t.disable),this.reduce.load(t.reduce))}}class ho{load(t){var e,i;t&&(void 0!==t.position&&(this.position={x:null!==(e=t.position.x)&&void 0!==e?e:50,y:null!==(i=t.position.y)&&void 0!==i?i:50}),void 0!==t.options&&(this.options=ot({},t.options)))}}class uo{constructor(){this.maxWidth=1/0,this.options={}}load(t){t&&(void 0!==t.maxWidth&&(this.maxWidth=t.maxWidth),void 0!==t.options&&(this.options=ot({},t.options)))}}class vo{constructor(){this.autoPlay=!0,this.background=new so,this.backgroundMask=new oo,this.fullScreen=new ro,this.detectRetina=!0,this.duration=0,this.fpsLimit=60,this.interactivity=new eo,this.manualParticles=[],this.motion=new co,this.particles=new xi,this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.responsive=[],this.themes=[],this.zLayers=100}get fps_limit(){return this.fpsLimit}set fps_limit(t){this.fpsLimit=t}get retina_detect(){return this.detectRetina}set retina_detect(t){this.detectRetina=t}get backgroundMode(){return this.fullScreen}set backgroundMode(t){this.fullScreen.load(t)}load(t){var e,i,o;if(void 0===t)return;if(void 0!==t.preset)if(t.preset instanceof Array)for(const e of t.preset)this.importPreset(e);else this.importPreset(t.preset);void 0!==t.autoPlay&&(this.autoPlay=t.autoPlay);const s=null!==(e=t.detectRetina)&&void 0!==e?e:t.retina_detect;void 0!==s&&(this.detectRetina=s),void 0!==t.duration&&(this.duration=t.duration);const n=null!==(i=t.fpsLimit)&&void 0!==i?i:t.fps_limit;if(void 0!==n&&(this.fpsLimit=n),void 0!==t.pauseOnBlur&&(this.pauseOnBlur=t.pauseOnBlur),void 0!==t.pauseOnOutsideViewport&&(this.pauseOnOutsideViewport=t.pauseOnOutsideViewport),void 0!==t.zLayers&&(this.zLayers=t.zLayers),this.background.load(t.background),this.fullScreen.load(null!==(o=t.fullScreen)&&void 0!==o?o:t.backgroundMode),this.backgroundMask.load(t.backgroundMask),this.interactivity.load(t.interactivity),void 0!==t.manualParticles&&(this.manualParticles=t.manualParticles.map((t=>{const e=new ho;return e.load(t),e}))),this.motion.load(t.motion),this.particles.load(t.particles),ve.loadOptions(this,t),void 0!==t.responsive)for(const e of t.responsive){const t=new uo;t.load(e),this.responsive.push(t)}if(this.responsive.sort(((t,e)=>t.maxWidth-e.maxWidth)),void 0!==t.themes)for(const e of t.themes){const t=new ao;t.load(e),this.themes.push(t)}}setTheme(t){if(t){const e=this.themes.find((e=>e.name===t));e&&this.load(e.options)}else{const t="undefined"!=typeof matchMedia&&matchMedia("(prefers-color-scheme: dark)").matches;let e=this.themes.find((e=>e.default.value&&(e.default.mode===m.dark&&t||e.default.mode===m.light&&!t)));e||(e=this.themes.find((t=>t.default.value&&t.default.mode===m.any))),e&&this.load(e.options)}}importPreset(t){this.load(ve.getPreset(t))}setResponsive(t,e,i){var o;this.load(i),this.load(null===(o=this.responsive.find((i=>i.maxWidth*e>t)))||void 0===o?void 0:o.options)}}var po=function(t,e,i,o){return new(i||(i=Promise))((function(s,n){function a(t){try{l(o.next(t))}catch(t){n(t)}}function r(t){try{l(o.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?s(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(a,r)}l((o=o.apply(t,e||[])).next())}))};class fo{constructor(t,e,...i){this.id=t,this.fpsLimit=60,this.duration=0,this.lifeTime=0,this.firstStart=!0,this.started=!1,this.destroyed=!1,this.paused=!0,this.lastFrameTime=0,this.zLayers=100,this.pageHidden=!1,this._sourceOptions=e,this.retina=new Oi(this),this.canvas=new ye(this),this.particles=new Ci(this),this.drawer=new Si(this),this.pathGenerator={generate:()=>{const t=R.create(0,0);return t.length=Math.random(),t.angle=Math.random()*Math.PI*2,t},init:()=>{},update:()=>{}},this.interactivity={mouse:{clicking:!1,inside:!1}},this.bubble={},this.repulse={particles:[]},this.attract={particles:[]},this.plugins=new Map,this.drawers=new Map,this.density=1,this._options=new vo,this.actualOptions=new vo;for(const t of i)this._options.load(ve.getPreset(t));const o=ve.getSupportedShapes();for(const t of o){const e=ve.getShapeDrawer(t);e&&this.drawers.set(t,e)}this._options.load(this._sourceOptions),this.eventListeners=new se(this),"undefined"!=typeof IntersectionObserver&&IntersectionObserver&&(this.intersectionObserver=new IntersectionObserver((t=>this.intersectionManager(t))))}get options(){return this._options}get sourceOptions(){return this._sourceOptions}play(t){const e=this.paused||t;if(!this.firstStart||this.actualOptions.autoPlay){if(this.paused&&(this.paused=!1),e)for(const[,t]of this.plugins)t.play&&t.play();this.draw(e||!1)}else this.firstStart=!1}pause(){if(void 0!==this.drawAnimationFrame&&(X()(this.drawAnimationFrame),delete this.drawAnimationFrame),!this.paused){for(const[,t]of this.plugins)t.pause&&t.pause();this.pageHidden||(this.paused=!0)}}draw(t){let e=t;this.drawAnimationFrame=J()((t=>{e&&(this.lastFrameTime=void 0,e=!1),this.drawer.nextFrame(t)}))}getAnimationStatus(){return!this.paused&&!this.pageHidden}setNoise(t,e,i){this.setPath(t,e,i)}setPath(t,e,i){t&&("function"==typeof t?(this.pathGenerator.generate=t,e&&(this.pathGenerator.init=e),i&&(this.pathGenerator.update=i)):(t.generate&&(this.pathGenerator.generate=t.generate),t.init&&(this.pathGenerator.init=t.init),t.update&&(this.pathGenerator.update=t.update)))}destroy(){this.stop(),this.canvas.destroy();for(const[,t]of this.drawers)t.destroy&&t.destroy(this);for(const t of this.drawers.keys())this.drawers.delete(t);this.destroyed=!0}exportImg(t){this.exportImage(t)}exportImage(t,e,i){var o;return null===(o=this.canvas.element)||void 0===o?void 0:o.toBlob(t,null!=e?e:"image/png",i)}exportConfiguration(){return JSON.stringify(this.actualOptions,void 0,2)}refresh(){return this.stop(),this.start()}reset(){return this._options=new vo,this.refresh()}stop(){if(this.started){this.firstStart=!0,this.started=!1,this.eventListeners.removeListeners(),this.pause(),this.particles.clear(),this.canvas.clear(),this.interactivity.element instanceof HTMLElement&&this.intersectionObserver&&this.intersectionObserver.observe(this.interactivity.element);for(const[,t]of this.plugins)t.stop&&t.stop();for(const t of this.plugins.keys())this.plugins.delete(t);this.particles.linksColors=new Map,delete this.particles.grabLineColor,delete this.particles.linksColor}}loadTheme(t){return po(this,void 0,void 0,(function*(){this.currentTheme=t,yield this.refresh()}))}start(){return po(this,void 0,void 0,(function*(){if(!this.started){yield this.init(),this.started=!0,this.eventListeners.addListeners(),this.interactivity.element instanceof HTMLElement&&this.intersectionObserver&&this.intersectionObserver.observe(this.interactivity.element);for(const[,t]of this.plugins)void 0!==t.startAsync?yield t.startAsync():void 0!==t.start&&t.start();this.play()}}))}addClickHandler(t){const e=this.interactivity.element;if(!e)return;const i=(e,i,o)=>{if(this.destroyed)return;const s=this.retina.pixelRatio,n={x:i.x*s,y:i.y*s},a=this.particles.quadTree.queryCircle(n,o*s);t(e,a)};let o=!1,s=!1;e.addEventListener("click",(t=>{if(this.destroyed)return;const e=t,o={x:e.offsetX||e.clientX,y:e.offsetY||e.clientY};i(t,o,1)})),e.addEventListener("touchstart",(()=>{this.destroyed||(o=!0,s=!1)})),e.addEventListener("touchmove",(()=>{this.destroyed||(s=!0)})),e.addEventListener("touchend",(t=>{var e,n,a;if(!this.destroyed){if(o&&!s){const o=t;let s=o.touches[o.touches.length-1];if(!s&&(s=o.changedTouches[o.changedTouches.length-1],!s))return;const r=null===(e=this.canvas.element)||void 0===e?void 0:e.getBoundingClientRect(),l={x:s.clientX-(null!==(n=null==r?void 0:r.left)&&void 0!==n?n:0),y:s.clientY-(null!==(a=null==r?void 0:r.top)&&void 0!==a?a:0)};i(t,l,Math.max(s.radiusX,s.radiusY))}o=!1,s=!1}})),e.addEventListener("touchcancel",(()=>{this.destroyed||(o=!1,s=!1)}))}updateActualOptions(){this.actualOptions.setResponsive(this.canvas.size.width,this.retina.pixelRatio,this._options),this.actualOptions.setTheme(this.currentTheme)}init(){return po(this,void 0,void 0,(function*(){this.actualOptions=new vo,this.actualOptions.load(this._options),this.retina.init(),this.canvas.init(),this.updateActualOptions(),this.canvas.initBackground(),this.canvas.resize(),this.zLayers=this.actualOptions.zLayers,this.duration=A(this.actualOptions.duration),this.lifeTime=0,this.fpsLimit=this.actualOptions.fpsLimit>0?this.actualOptions.fpsLimit:60;const t=ve.getAvailablePlugins(this);for(const[e,i]of t)this.plugins.set(e,i);for(const[,t]of this.drawers)t.init&&(yield t.init(this));for(const[,t]of this.plugins)t.init?t.init(this.actualOptions):void 0!==t.initAsync&&(yield t.initAsync(this.actualOptions));const e=this.actualOptions.particles.move.path;if(e.generator){const t=ve.getPathGenerator(e.generator);t&&(t.init&&(this.pathGenerator.init=t.init),t.generate&&(this.pathGenerator.generate=t.generate),t.update&&(this.pathGenerator.update=t.update))}this.particles.init(),this.particles.setDensity();for(const[,t]of this.plugins)void 0!==t.particlesSetup&&t.particlesSetup()}))}intersectionManager(t){if(this.actualOptions.pauseOnOutsideViewport)for(const e of t)e.target===this.interactivity.element&&(e.isIntersecting?this.play():this.pause())}}var yo=function(t,e,i,o){return new(i||(i=Promise))((function(s,n){function a(t){try{l(o.next(t))}catch(t){n(t)}}function r(t){try{l(o.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?s(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(a,r)}l((o=o.apply(t,e||[])).next())}))};const mo=[];function bo(t){console.error(`Error tsParticles - fetch status: ${t}`),console.error("Error tsParticles - File config not found")}class go{static dom(){return mo}static domItem(t){const e=go.dom(),i=e[t];if(i&&!i.destroyed)return i;e.splice(t,1)}static load(t,e,i){return yo(this,void 0,void 0,(function*(){let o=document.getElementById(t);return o||(o=document.createElement("div"),o.id=t,document.append(o)),go.set(t,o,e,i)}))}static set(t,e,i,o){return yo(this,void 0,void 0,(function*(){const s=i instanceof Array?K(i,o):i,n=go.dom(),a=n.findIndex((e=>e.id===t));if(a>=0){const t=go.domItem(a);t&&!t.destroyed&&(t.destroy(),n.splice(a,1))}let r,l;if("canvas"===e.tagName.toLowerCase())r=e,l=!1;else{const t=e.getElementsByTagName("canvas");t.length?(r=t[0],r.className||(r.className=ht.canvasClass),l=!1):(l=!0,r=document.createElement("canvas"),r.className=ht.canvasClass,r.style.width="100%",r.style.height="100%",e.appendChild(r))}const c=new fo(t,s);return a>=0?n.splice(a,0,c):n.push(c),c.canvas.loadCanvas(r,l),yield c.start(),c}))}static loadJSON(t,e,i){return yo(this,void 0,void 0,(function*(){const o=e instanceof Array?K(e,i):e,s=yield fetch(o);if(s.ok)return go.load(t,yield s.json());bo(s.status)}))}static setJSON(t,e,i,o){return yo(this,void 0,void 0,(function*(){const s=i instanceof Array?K(i,o):i,n=yield fetch(s);if(n.ok){const i=yield n.json();return go.set(t,e,i)}bo(n.status)}))}static setOnClickHandler(t){const e=go.dom();if(0===e.length)throw new Error("Can only set click handlers after calling tsParticles.load() or tsParticles.loadJSON()");for(const i of e)i.addClickHandler(t)}}var wo,xo=function(t,e,i,o){return new(i||(i=Promise))((function(s,n){function a(t){try{l(o.next(t))}catch(t){n(t)}}function r(t){try{l(o.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?s(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(a,r)}l((o=o.apply(t,e||[])).next())}))},ko=function(t,e,i,o,s){if("m"===o)throw new TypeError("Private method is not writable");if("a"===o&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===o?s.call(t,i):s?s.value=i:e.set(t,i),i},Mo=function(t,e,i,o){if("a"===i&&!o)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?o:"a"===i?o.call(t):o?o.value:e.get(t)};class zo{constructor(){wo.set(this,void 0),ko(this,wo,!1,"f")}init(){Mo(this,wo,"f")||ko(this,wo,!0,"f")}loadFromArray(t,e,i){return xo(this,void 0,void 0,(function*(){return go.load(t,e,i)}))}load(t,e){return xo(this,void 0,void 0,(function*(){return go.load(t,e)}))}set(t,e,i){return xo(this,void 0,void 0,(function*(){return go.set(t,e,i)}))}loadJSON(t,e,i){return go.loadJSON(t,e,i)}setJSON(t,e,i,o){return xo(this,void 0,void 0,(function*(){return go.setJSON(t,e,i,o)}))}setOnClickHandler(t){go.setOnClickHandler(t)}dom(){return go.dom()}domItem(t){return go.domItem(t)}addShape(t,e,i,o,s){let n;n="function"==typeof e?{afterEffect:o,destroy:s,draw:e,init:i}:e,ve.addShapeDrawer(t,n)}addPreset(t,e,i=!1){ve.addPreset(t,e,i)}addPlugin(t){ve.addPlugin(t)}addPathGenerator(t,e){ve.addPathGenerator(t,e)}addInteractor(t,e){ve.addInteractor(t,e)}addParticleUpdater(t,e){ve.addParticleUpdater(t,e)}}wo=new WeakMap;class Po{getSidesCount(){return 12}draw(t,e,i){t.arc(0,0,i,0,2*Math.PI,!1)}}var Co=function(t,e,i,o){return new(i||(i=Promise))((function(s,n){function a(t){try{l(o.next(t))}catch(t){n(t)}}function r(t){try{l(o.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?s(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(a,r)}l((o=o.apply(t,e||[])).next())}))};function Oo(t){return new Promise(((e,i)=>{if(!t)return void i("Error tsParticles - No image.src");const o={source:t,type:t.substr(t.length-3)},s=new Image;s.addEventListener("load",(()=>{o.element=s,e(o)})),s.addEventListener("error",(()=>{i(`Error tsParticles - loading image: ${t}`)})),s.src=t}))}function So(t){return Co(this,void 0,void 0,(function*(){if(!t)throw new Error("Error tsParticles - No image.src");const e={source:t,type:t.substr(t.length-3)};if("svg"!==e.type)return Oo(t);const i=yield fetch(e.source);if(!i.ok)throw new Error("Error tsParticles - Image not found");return e.svgData=yield i.text(),e}))}var Ro,To=function(t,e,i,o){return new(i||(i=Promise))((function(s,n){function a(t){try{l(o.next(t))}catch(t){n(t)}}function r(t){try{l(o.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?s(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(a,r)}l((o=o.apply(t,e||[])).next())}))},Io=function(t,e,i,o,s){if("m"===o)throw new TypeError("Private method is not writable");if("a"===o&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===o?s.call(t,i):s?s.value=i:e.set(t,i),i},Eo=function(t,e,i,o){if("a"===i&&!o)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?o:"a"===i?o.call(t):o?o.value:e.get(t)};class Ao{constructor(){Ro.set(this,void 0),Io(this,Ro,[],"f")}getSidesCount(){return 12}getImages(t){const e=Eo(this,Ro,"f").find((e=>e.id===t.id));return e||(Eo(this,Ro,"f").push({id:t.id,images:[]}),this.getImages(t))}addImage(t,e){const i=this.getImages(t);null==i||i.images.push(e)}init(t){return To(this,void 0,void 0,(function*(){yield this.loadImagesFromParticlesOptions(t,t.actualOptions.particles),yield this.loadImagesFromParticlesOptions(t,t.actualOptions.interactivity.modes.trail.particles);for(const e of t.actualOptions.manualParticles)yield this.loadImagesFromParticlesOptions(t,e.options);const e=t.actualOptions;if(e.emitters)if(e.emitters instanceof Array)for(const i of e.emitters)yield this.loadImagesFromParticlesOptions(t,i.particles);else yield this.loadImagesFromParticlesOptions(t,e.emitters.particles);const i=e.interactivity.modes.emitters;if(i)if(i instanceof Array)for(const e of i)yield this.loadImagesFromParticlesOptions(t,e.particles);else yield this.loadImagesFromParticlesOptions(t,i.particles)}))}destroy(){Io(this,Ro,[],"f")}loadImagesFromParticlesOptions(t,e){var i,o,s;return To(this,void 0,void 0,(function*(){const n=null==e?void 0:e.shape;if(!(null==n?void 0:n.type)||!n.options||!Y(M.image,n.type)&&!Y(M.images,n.type))return;const a=Eo(this,Ro,"f").findIndex((e=>e.id===t.id));a>=0&&Eo(this,Ro,"f").splice(a,1);const r=null!==(i=n.options[M.images])&&void 0!==i?i:n.options[M.image];if(r instanceof Array)for(const e of r)yield this.loadImageShape(t,e);else yield this.loadImageShape(t,r);if(null==e?void 0:e.groups)for(const i in e.groups){const o=e.groups[i];yield this.loadImagesFromParticlesOptions(t,o)}(null===(s=null===(o=null==e?void 0:e.destroy)||void 0===o?void 0:o.split)||void 0===s?void 0:s.particles)&&(yield this.loadImagesFromParticlesOptions(t,null==e?void 0:e.destroy.split.particles))}))}loadImageShape(t,e){return To(this,void 0,void 0,(function*(){try{const i=e.replaceColor?So:Oo,o=yield i(e.src);o&&this.addImage(t,o)}catch(t){console.warn(`tsParticles error - ${e.src} not found`)}}))}draw(t,e,i,o){var s,n;if(!t)return;const a=e.image,r=null===(s=null==a?void 0:a.data)||void 0===s?void 0:s.element;if(!r)return;const l=null!==(n=null==a?void 0:a.ratio)&&void 0!==n?n:1,c={x:-i,y:-i};(null==a?void 0:a.data.svgData)&&(null==a?void 0:a.replaceColor)||(t.globalAlpha=o),t.drawImage(r,c.x,c.y,2*i,2*i/l),(null==a?void 0:a.data.svgData)&&(null==a?void 0:a.replaceColor)||(t.globalAlpha=1)}loadShape(t){var e,i,o,s,n;if("image"!==t.shape&&"images"!==t.shape)return;const a=this.getImages(t.container).images,r=t.shapeData,l=null!==(e=a.find((t=>t.source===r.src)))&&void 0!==e?e:a[0],c=t.getFillColor();let d;if(!l)return;if(void 0!==l.svgData&&r.replaceColor&&c){const e=function(t,e,i){const{svgData:o}=t;if(!o)return"";if(o.includes("fill")){const t=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d.]+%?\))|currentcolor/gi;return o.replace(t,(()=>It(e,i)))}const s=o.indexOf(">");return`${o.substring(0,s)} fill="${It(e,i)}"${o.substring(s)}`}(l,c,t.opacity.value),o=new Blob([e],{type:"image/svg+xml"}),s=URL||window.URL||window.webkitURL||window,n=s.createObjectURL(o),a=new Image;d={data:Object.assign(Object.assign({},l),{svgData:e}),ratio:r.width/r.height,replaceColor:null!==(i=r.replaceColor)&&void 0!==i?i:r.replace_color,source:r.src},a.addEventListener("load",(()=>{const e=t.image;e&&(e.loaded=!0,l.element=a),s.revokeObjectURL(n)})),a.addEventListener("error",(()=>{s.revokeObjectURL(n),Oo(r.src).then((e=>{const i=t.image;i&&(l.element=null==e?void 0:e.element,i.loaded=!0)}))})),a.src=n}else d={data:l,loaded:!0,ratio:r.width/r.height,replaceColor:null!==(o=r.replaceColor)&&void 0!==o?o:r.replace_color,source:r.src};d.ratio||(d.ratio=1);const h={image:d,fill:null!==(s=r.fill)&&void 0!==s?s:t.fill,close:null!==(n=r.close)&&void 0!==n?n:t.close};t.image=h.image,t.fill=h.fill,t.close=h.close}}Ro=new WeakMap;class Do{getSidesCount(){return 1}draw(t,e,i){t.moveTo(-i/2,0),t.lineTo(i/2,0)}}class Fo{getSidesCount(t){var e,i;const o=t.shapeData;return null!==(i=null!==(e=null==o?void 0:o.sides)&&void 0!==e?e:null==o?void 0:o.nb_sides)&&void 0!==i?i:5}draw(t,e,i){const o=this.getCenter(e,i),s=this.getSidesData(e,i),n=s.count.numerator*s.count.denominator,a=s.count.numerator/s.count.denominator,r=180*(a-2)/a,l=Math.PI-Math.PI*r/180;if(t){t.beginPath(),t.translate(o.x,o.y),t.moveTo(0,0);for(let e=0;e<n;e++)t.lineTo(s.length,0),t.translate(s.length,0),t.rotate(l)}}}class Lo extends Fo{getSidesData(t,e){var i,o;const s=t.shapeData,n=null!==(o=null!==(i=null==s?void 0:s.sides)&&void 0!==i?i:null==s?void 0:s.nb_sides)&&void 0!==o?o:5;return{count:{denominator:1,numerator:n},length:2.66*e/(n/3)}}getCenter(t,e){return{x:-e/(this.getSidesCount(t)/3.5),y:-e/.76}}}class qo extends Fo{getSidesCount(){return 3}getSidesData(t,e){return{count:{denominator:2,numerator:3},length:2*e}}getCenter(t,e){return{x:-e,y:e/1.66}}}function Ho(t){!function(t){t.addShape("polygon",new Lo)}(t),function(t){t.addShape("triangle",new qo)}(t)}const Vo=Math.sqrt(2);class Bo{getSidesCount(){return 4}draw(t,e,i){t.rect(-i/Vo,-i/Vo,2*i/Vo,2*i/Vo)}}class _o{getSidesCount(t){var e,i;const o=t.shapeData;return null!==(i=null!==(e=null==o?void 0:o.sides)&&void 0!==e?e:null==o?void 0:o.nb_sides)&&void 0!==i?i:5}draw(t,e,i){var o;const s=e.shapeData,n=this.getSidesCount(e),a=null!==(o=null==s?void 0:s.inset)&&void 0!==o?o:2;t.moveTo(0,0-i);for(let e=0;e<n;e++)t.rotate(Math.PI/n),t.lineTo(0,0-i*a),t.rotate(Math.PI/n),t.lineTo(0,0-i)}}var Wo=function(t,e,i,o){return new(i||(i=Promise))((function(s,n){function a(t){try{l(o.next(t))}catch(t){n(t)}}function r(t){try{l(o.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?s(t.value):(e=t.value,e instanceof i?e:new i((function(t){t(e)}))).then(a,r)}l((o=o.apply(t,e||[])).next())}))};const $o=["text","character","char"];class Uo{getSidesCount(){return 12}init(t){return Wo(this,void 0,void 0,(function*(){const e=t.actualOptions;if($o.find((t=>Y(t,e.particles.shape.type)))){const t=$o.map((t=>e.particles.shape.options[t])).find((t=>!!t));if(t instanceof Array){const e=[];for(const i of t)e.push(Q(i));yield Promise.allSettled(e)}else void 0!==t&&(yield Q(t))}}))}draw(t,e,i,o){var s,n,a;const r=e.shapeData;if(void 0===r)return;const l=r.value;if(void 0===l)return;const c=e;void 0===c.text&&(c.text=l instanceof Array?K(l,e.randomIndexData):l);const d=c.text,h=null!==(s=r.style)&&void 0!==s?s:"",u=null!==(n=r.weight)&&void 0!==n?n:"400",v=2*Math.round(i),p=null!==(a=r.font)&&void 0!==a?a:"Verdana",f=e.fill,y=d.length*i/2;t.font=`${h} ${u} ${v}px "${p}"`;const m={x:-y,y:i/2};t.globalAlpha=o,f?t.fillText(d,m.x,m.y):t.strokeText(d,m.x,m.y),t.globalAlpha=1}}class jo{isEnabled(t){const e=t.options.rotate,i=e.animation;return!t.destroyed&&!t.spawning&&!e.path&&i.enable}update(t,e){this.isEnabled(t)&&function(t,e){var i;const o=t.options.rotate.animation,s=(null!==(i=t.rotate.velocity)&&void 0!==i?i:0)*e.factor,n=2*Math.PI;if(o.enable)switch(t.rotate.status){case b.increasing:t.rotate.value+=s,t.rotate.value>n&&(t.rotate.value-=n);break;case b.decreasing:default:t.rotate.value-=s,t.rotate.value<0&&(t.rotate.value+=n)}}(t,e)}}function Go(t,e,i,o,s){var n;const a=e;if(!a||!i.enable)return;const r=E(i.offset),l=(null!==(n=e.velocity)&&void 0!==n?n:0)*t.factor+3.6*r;s&&a.status!==b.increasing?(a.value-=l,a.value<0&&(a.status=b.increasing,a.value+=a.value)):(a.value+=l,s&&a.value>o&&(a.status=b.decreasing,a.value-=a.value%o)),a.value>o&&(a.value%=o)}class No{isEnabled(t){var e,i,o;const s=t.options.color.animation;return!t.destroyed&&!t.spawning&&(void 0!==(null===(e=t.color)||void 0===e?void 0:e.h.value)&&s.h.enable||void 0!==(null===(i=t.color)||void 0===i?void 0:i.s.value)&&s.s.enable||void 0!==(null===(o=t.color)||void 0===o?void 0:o.l.value)&&s.l.enable)}update(t,e){!function(t,e){var i,o,s;const n=t.options.color.animation;void 0!==(null===(i=t.color)||void 0===i?void 0:i.h)&&Go(e,t.color.h,n.h,360,!1),void 0!==(null===(o=t.color)||void 0===o?void 0:o.s)&&Go(e,t.color.s,n.s,100,!0),void 0!==(null===(s=t.color)||void 0===s?void 0:s.l)&&Go(e,t.color.l,n.l,100,!0)}(t,e)}}class Jo{constructor(t){this.container=t}isEnabled(t){return!t.destroyed}update(t,e){if(!this.isEnabled(t))return;const i=t.life;let o=!1;if(t.spawning){if(i.delayTime+=e.value,!(i.delayTime>=t.life.delay))return;o=!0,t.spawning=!1,i.delayTime=0,i.time=0}if(-1===i.duration)return;if(t.spawning)return;if(o?i.time=0:i.time+=e.value,i.time<i.duration)return;if(i.time=0,t.life.count>0&&t.life.count--,0===t.life.count)return void t.destroy();const s=this.container.canvas.size,n=L(0,s.width),a=L(0,s.width);t.position.x=E(n),t.position.y=E(a),t.spawning=!0,i.delayTime=0,i.time=0,t.reset();const r=t.options.life;i.delay=1e3*A(r.delay.value),i.duration=1e3*A(r.duration.value)}}function Xo(t,e){var i,o,s,n,a;const r=t.opacity.min,l=t.opacity.max;if(!t.destroyed&&t.opacity.enable&&((null!==(i=t.opacity.maxLoops)&&void 0!==i?i:0)<=0||(null!==(o=t.opacity.loops)&&void 0!==o?o:0)<(null!==(s=t.opacity.maxLoops)&&void 0!==s?s:0))){switch(t.opacity.status){case b.increasing:t.opacity.value>=l?(t.opacity.status=b.decreasing,t.opacity.loops||(t.opacity.loops=0),t.opacity.loops++):t.opacity.value+=(null!==(n=t.opacity.velocity)&&void 0!==n?n:0)*e.factor;break;case b.decreasing:t.opacity.value<=r?(t.opacity.status=b.increasing,t.opacity.loops||(t.opacity.loops=0),t.opacity.loops++):t.opacity.value-=(null!==(a=t.opacity.velocity)&&void 0!==a?a:0)*e.factor}!function(t,e,i,o){switch(t.options.opacity.animation.destroy){case w.max:e>=o&&t.destroy();break;case w.min:e<=i&&t.destroy()}}(t,t.opacity.value,r,l),t.destroyed||(t.opacity.value=T(t.opacity.value,r,l))}}class Yo{isEnabled(t){var e,i,o;return!t.destroyed&&!t.spawning&&t.opacity.enable&&((null!==(e=t.opacity.maxLoops)&&void 0!==e?e:0)<=0||(null!==(i=t.opacity.loops)&&void 0!==i?i:0)<(null!==(o=t.opacity.maxLoops)&&void 0!==o?o:0))}update(t,e){this.isEnabled(t)&&Xo(t,e)}}function Qo(t,e){var i,o,s,n;const a=(null!==(i=t.size.velocity)&&void 0!==i?i:0)*e.factor,r=t.size.min,l=t.size.max;if(!t.destroyed&&t.size.enable&&((null!==(o=t.size.loops)&&void 0!==o?o:0)<=0||(null!==(s=t.size.loops)&&void 0!==s?s:0)<(null!==(n=t.size.maxLoops)&&void 0!==n?n:0))){switch(t.size.status){case b.increasing:t.size.value>=l?(t.size.status=b.decreasing,t.size.loops||(t.size.loops=0),t.size.loops++):t.size.value+=a;break;case b.decreasing:t.size.value<=r?(t.size.status=b.increasing,t.size.loops||(t.size.loops=0),t.size.loops++):t.size.value-=a}!function(t,e,i,o){switch(t.options.size.animation.destroy){case w.max:e>=o&&t.destroy();break;case w.min:e<=i&&t.destroy()}}(t,t.size.value,r,l),t.destroyed||(t.size.value=T(t.size.value,r,l))}}class Zo{isEnabled(t){var e,i,o;return!t.destroyed&&!t.spawning&&t.size.enable&&((null!==(e=t.size.loops)&&void 0!==e?e:0)<=0||(null!==(i=t.size.loops)&&void 0!==i?i:0)<(null!==(o=t.size.maxLoops)&&void 0!==o?o:0))}update(t,e){this.isEnabled(t)&&Qo(t,e)}}function Ko(t,e,i,o,s){var n;const a=e;if(!a||!a.enable)return;const r=E(i.offset),l=(null!==(n=e.velocity)&&void 0!==n?n:0)*t.factor+3.6*r;s&&a.status!==b.increasing?(a.value-=l,a.value<0&&(a.status=b.increasing,a.value+=a.value)):(a.value+=l,s&&a.value>o&&(a.status=b.decreasing,a.value-=a.value%o)),a.value>o&&(a.value%=o)}class ts{isEnabled(t){var e,i,o;const s=t.stroke.color;return!t.destroyed&&!t.spawning&&void 0!==s&&(void 0!==(null===(e=t.strokeColor)||void 0===e?void 0:e.h.value)&&s.animation.h.enable||void 0!==(null===(i=t.strokeColor)||void 0===i?void 0:i.s.value)&&s.animation.s.enable||void 0!==(null===(o=t.strokeColor)||void 0===o?void 0:o.l.value)&&s.animation.l.enable)}update(t,e){this.isEnabled(t)&&function(t,e){var i,o,s,n,a,r,l,c,d;if(!t.stroke.color)return;const h=t.stroke.color.animation,u=null!==(o=null===(i=t.strokeColor)||void 0===i?void 0:i.h)&&void 0!==o?o:null===(s=t.color)||void 0===s?void 0:s.h;u&&Ko(e,u,h.h,360,!1);const v=null!==(a=null===(n=t.strokeColor)||void 0===n?void 0:n.s)&&void 0!==a?a:null===(r=t.color)||void 0===r?void 0:r.s;v&&Ko(e,v,h.s,100,!0);const p=null!==(c=null===(l=t.strokeColor)||void 0===l?void 0:l.l)&&void 0!==c?c:null===(d=t.color)||void 0===d?void 0:d.l;p&&Ko(e,p,h.l,100,!0)}(t,e)}}class es{constructor(t){this.container=t}isEnabled(t){return!t.destroyed&&!t.spawning}update(t,e){var i,o,s,n;const a=t.options.move.outModes;this.updateOutMode(t,e,null!==(i=a.bottom)&&void 0!==i?i:a.default,l.bottom),this.updateOutMode(t,e,null!==(o=a.left)&&void 0!==o?o:a.default,l.left),this.updateOutMode(t,e,null!==(s=a.right)&&void 0!==s?s:a.default,l.right),this.updateOutMode(t,e,null!==(n=a.top)&&void 0!==n?n:a.default,l.top)}updateOutMode(t,e,i,o){switch(i){case f.bounce:case f.bounceVertical:case f.bounceHorizontal:case"bounceVertical":case"bounceHorizontal":case f.split:this.bounce(t,e,o,i);break;case f.destroy:this.destroy(t,o);break;case f.out:this.out(t,o);break;case f.none:default:this.none(t,o)}}destroy(t,e){const i=this.container;tt(t.position,i.canvas.size,t.getRadius(),e)||i.particles.remove(t,void 0,!0)}out(t,e){const i=this.container;if(tt(t.position,i.canvas.size,t.getRadius(),e))return;const o=t.options.move.warp,s=i.canvas.size,n={bottom:s.height+t.getRadius()+t.offset.y,left:-t.getRadius()-t.offset.x,right:s.width+t.getRadius()+t.offset.x,top:-t.getRadius()-t.offset.y},a=t.getRadius(),r=it(t.position,a);e===l.right&&r.left>s.width+t.offset.x?(t.position.x=n.left,t.initialPosition.x=t.position.x,o||(t.position.y=Math.random()*s.height,t.initialPosition.y=t.position.y)):e===l.left&&r.right<-t.offset.x&&(t.position.x=n.right,t.initialPosition.x=t.position.x,o||(t.position.y=Math.random()*s.height,t.initialPosition.y=t.position.y)),e===l.bottom&&r.top>s.height+t.offset.y?(o||(t.position.x=Math.random()*s.width,t.initialPosition.x=t.position.x),t.position.y=n.top,t.initialPosition.y=t.position.y):e===l.top&&r.bottom<-t.offset.y&&(o||(t.position.x=Math.random()*s.width,t.initialPosition.x=t.position.x),t.position.y=n.bottom,t.initialPosition.y=t.position.y)}bounce(t,e,i,o){const s=this.container;let n=!1;for(const[,o]of s.plugins)if(void 0!==o.particleBounce&&(n=o.particleBounce(t,e,i)),n)break;if(n)return;const a=t.getPosition(),r=t.offset,c=t.getRadius(),d=it(a,c),h=s.canvas.size;!function(t){if(t.outMode!==f.bounce&&t.outMode!==f.bounceHorizontal&&"bounceHorizontal"!==t.outMode&&t.outMode!==f.split)return;const e=t.particle.velocity.x;let i=!1;if(t.direction===l.right&&t.bounds.right>=t.canvasSize.width&&e>0||t.direction===l.left&&t.bounds.left<=0&&e<0){const e=A(t.particle.options.bounce.horizontal.value);t.particle.velocity.x*=-e,i=!0}if(!i)return;const o=t.offset.x+t.size;t.bounds.right>=t.canvasSize.width?t.particle.position.x=t.canvasSize.width-o:t.bounds.left<=0&&(t.particle.position.x=o),t.outMode===f.split&&t.particle.destroy()}({particle:t,outMode:o,direction:i,bounds:d,canvasSize:h,offset:r,size:c}),function(t){if(t.outMode===f.bounce||t.outMode===f.bounceVertical||"bounceVertical"===t.outMode||t.outMode===f.split){const e=t.particle.velocity.y;let i=!1;if(t.direction===l.bottom&&t.bounds.bottom>=t.canvasSize.height&&e>0||t.direction===l.top&&t.bounds.top<=0&&e<0){const e=A(t.particle.options.bounce.vertical.value);t.particle.velocity.y*=-e,i=!0}if(!i)return;const o=t.offset.y+t.size;t.bounds.bottom>=t.canvasSize.height?t.particle.position.y=t.canvasSize.height-o:t.bounds.top<=0&&(t.particle.position.y=o),t.outMode===f.split&&t.particle.destroy()}}({particle:t,outMode:o,direction:i,bounds:d,canvasSize:h,offset:r,size:c})}none(t,e){if(t.options.move.distance.horizontal&&(e===l.left||e===l.right)||t.options.move.distance.vertical&&(e===l.top||e===l.bottom))return;const i=t.options.move.gravity,o=this.container,s=o.canvas.size,n=t.getRadius();if(i.enable){const a=t.position;(!i.inverse&&a.y>s.height+n&&e===l.bottom||i.inverse&&a.y<-n&&e===l.top)&&o.particles.remove(t)}else{if(t.velocity.y>0&&t.position.y<=s.height+n||t.velocity.y<0&&t.position.y>=-n||t.velocity.x>0&&t.position.x<=s.width+n||t.velocity.x<0&&t.position.x>=-n)return;tt(t.position,o.canvas.size,n,e)||o.particles.remove(t)}}}class is{isEnabled(t){const e=t.options.roll;return!t.destroyed&&!t.spawning&&e.enable}update(t,e){this.isEnabled(t)&&function(t,e){const i=t.options.roll,o=t.rollSpeed*e.factor,s=2*Math.PI;i.enable&&(t.rollAngle+=o,t.rollAngle>s&&(t.rollAngle-=s))}(t,e)}}class os{isEnabled(t){const e=t.options.tilt.animation;return!t.destroyed&&!t.spawning&&e.enable}update(t,e){this.isEnabled(t)&&function(t,e){var i;const o=t.options.tilt.animation,s=(null!==(i=t.tilt.velocity)&&void 0!==i?i:0)*e.factor,n=2*Math.PI;if(o.enable)switch(t.tilt.status){case b.increasing:t.tilt.value+=s,t.tilt.value>n&&(t.tilt.value-=n);break;case b.decreasing:default:t.tilt.value-=s,t.tilt.value<0&&(t.tilt.value+=n)}}(t,e)}}class ss{isEnabled(t){const e=t.options.wobble;return!t.destroyed&&!t.spawning&&e.enable}update(t,e){this.isEnabled(t)&&function(t,e){const i=t.options.wobble,o=t.wobbleSpeed*e.factor,s=t.wobbleDistance*e.factor/(1e3/60),n=2*Math.PI;i.enable&&(t.wobbleAngle+=o,t.wobbleAngle>n&&(t.wobbleAngle-=n),t.position.x+=s*Math.cos(t.wobbleAngle),t.position.y+=s*Math.abs(Math.sin(t.wobbleAngle)))}(t,e)}}class ns{constructor(t){this.container=t,this.type=k.External}}class as extends ns{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events;if(!(i.position&&o.onHover.enable||i.clickPosition&&o.onClick.enable))return!1;const s=o.onHover.mode,n=o.onClick.mode;return Y(v.attract,s)||Y(d.attract,n)}reset(){}interact(){const t=this.container,e=t.actualOptions,i=t.interactivity.status===ht.mouseMoveEvent,o=e.interactivity.events,s=o.onHover.enable,n=o.onHover.mode,a=o.onClick.enable,r=o.onClick.mode;i&&s&&Y(v.attract,n)?this.hoverAttract():a&&Y(d.attract,r)&&this.clickAttract()}hoverAttract(){const t=this.container,e=t.interactivity.mouse.position;if(!e)return;const i=t.retina.attractModeDistance;this.processAttract(e,i,new te(e.x,e.y,i))}processAttract(t,e,i){const o=this.container,s=o.actualOptions.interactivity.modes.attract,n=o.particles.quadTree.query(i);for(const i of n){const{dx:o,dy:n,distance:a}=H(i.position,t),r=s.speed*s.factor,l=T($(1-a/e,s.easing)*r,0,s.maxSpeed),c=R.create(0===a?r:o/a*l,0===a?r:n/a*l);i.position.subFrom(c)}}clickAttract(){const t=this.container;if(t.attract.finish||(t.attract.count||(t.attract.count=0),t.attract.count++,t.attract.count===t.particles.count&&(t.attract.finish=!0)),t.attract.clicking){const e=t.interactivity.mouse.clickPosition;if(!e)return;const i=t.retina.attractModeDistance;this.processAttract(e,i,new te(e.x,e.y,i))}else!1===t.attract.clicking&&(t.attract.particles=[])}}class rs extends ns{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events,s=o.onDiv;return i.position&&o.onHover.enable&&Y(v.bounce,o.onHover.mode)||st(u.bounce,s)}interact(){const t=this.container,e=t.actualOptions.interactivity.events,i=t.interactivity.status===ht.mouseMoveEvent,o=e.onHover.enable,s=e.onHover.mode,n=e.onDiv;i&&o&&Y(v.bounce,s)?this.processMouseBounce():nt(u.bounce,n,((t,e)=>this.singleSelectorBounce(t,e)))}reset(){}processMouseBounce(){const t=this.container,e=10*t.retina.pixelRatio,i=t.interactivity.mouse.position,o=t.retina.bounceModeDistance;i&&this.processBounce(i,o,new te(i.x,i.y,o+e))}singleSelectorBounce(t,e){const i=this.container,o=document.querySelectorAll(t);o.length&&o.forEach((t=>{const o=t,s=i.retina.pixelRatio,n={x:(o.offsetLeft+o.offsetWidth/2)*s,y:(o.offsetTop+o.offsetHeight/2)*s},a=o.offsetWidth/2*s,r=10*s,l=e.type===P.circle?new te(n.x,n.y,a+r):new ee(o.offsetLeft*s-r,o.offsetTop*s-r,o.offsetWidth*s+2*r,o.offsetHeight*s+2*r);this.processBounce(n,a,l)}))}processBounce(t,e,i){const o=this.container.particles.quadTree.query(i);for(const s of o)i instanceof te?ct(lt(s),{position:t,radius:e,mass:Math.pow(e,2)*Math.PI/2,velocity:R.origin,factor:R.origin}):i instanceof ee&&dt(s,it(t,e))}}var ls;function cs(t,e,i,o){if(e>=i){return T(t+(e-i)*o,t,e)}if(e<i){return T(t-(i-e)*o,e,t)}}!function(t){t.color="color",t.opacity="opacity",t.size="size"}(ls||(ls={}));class ds extends ns{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events,s=o.onDiv,n=st(u.bubble,s);if(!(n||o.onHover.enable&&i.position||o.onClick.enable&&i.clickPosition))return!1;const a=o.onHover.mode,r=o.onClick.mode;return Y(v.bubble,a)||Y(d.bubble,r)||n}reset(t,e){t.bubble.inRange&&!e||(delete t.bubble.div,delete t.bubble.opacity,delete t.bubble.radius,delete t.bubble.color)}interact(){const t=this.container.actualOptions.interactivity.events,e=t.onHover,i=t.onClick,o=e.enable,s=e.mode,n=i.enable,a=i.mode,r=t.onDiv;o&&Y(v.bubble,s)?this.hoverBubble():n&&Y(d.bubble,a)?this.clickBubble():nt(u.bubble,r,((t,e)=>this.singleSelectorHover(t,e)))}singleSelectorHover(t,e){const i=this.container,o=document.querySelectorAll(t);o.length&&o.forEach((t=>{const o=t,s=i.retina.pixelRatio,n={x:(o.offsetLeft+o.offsetWidth/2)*s,y:(o.offsetTop+o.offsetHeight/2)*s},a=o.offsetWidth/2*s,r=e.type===P.circle?new te(n.x,n.y,a):new ee(o.offsetLeft*s,o.offsetTop*s,o.offsetWidth*s,o.offsetHeight*s),l=i.particles.quadTree.query(r);for(const t of l){if(!r.contains(t.getPosition()))continue;t.bubble.inRange=!0;const e=rt(i.actualOptions.interactivity.modes.bubble.divs,o);t.bubble.div&&t.bubble.div===o||(this.reset(t,!0),t.bubble.div=o),this.hoverBubbleSize(t,1,e),this.hoverBubbleOpacity(t,1,e),this.hoverBubbleColor(t,1,e)}}))}process(t,e,i,o){const s=this.container,n=o.bubbleObj.optValue;if(void 0===n)return;const a=s.actualOptions.interactivity.modes.bubble.duration,r=s.retina.bubbleModeDistance,l=o.particlesObj.optValue,c=o.bubbleObj.value,d=o.particlesObj.value||0,h=o.type;if(n!==l)if(s.bubble.durationEnd)c&&(h===ls.size&&delete t.bubble.radius,h===ls.opacity&&delete t.bubble.opacity);else if(e<=r){if((null!=c?c:d)!==n){const e=d-i*(d-n)/a;h===ls.size&&(t.bubble.radius=e),h===ls.opacity&&(t.bubble.opacity=e)}}else h===ls.size&&delete t.bubble.radius,h===ls.opacity&&delete t.bubble.opacity}clickBubble(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse.clickPosition;if(!i)return;const o=t.retina.bubbleModeDistance,s=t.particles.quadTree.queryCircle(i,o);for(const o of s){if(!t.bubble.clicking)continue;o.bubble.inRange=!t.bubble.durationEnd;const s=V(o.getPosition(),i),n=((new Date).getTime()-(t.interactivity.mouse.clickTime||0))/1e3;n>e.interactivity.modes.bubble.duration&&(t.bubble.durationEnd=!0),n>2*e.interactivity.modes.bubble.duration&&(t.bubble.clicking=!1,t.bubble.durationEnd=!1);const a={bubbleObj:{optValue:t.retina.bubbleModeSize,value:o.bubble.radius},particlesObj:{optValue:F(o.options.size.value)*t.retina.pixelRatio,value:o.size.value},type:ls.size};this.process(o,s,n,a);const r={bubbleObj:{optValue:e.interactivity.modes.bubble.opacity,value:o.bubble.opacity},particlesObj:{optValue:F(o.options.opacity.value),value:o.opacity.value},type:ls.opacity};this.process(o,s,n,r),t.bubble.durationEnd?delete o.bubble.color:s<=t.retina.bubbleModeDistance?this.hoverBubbleColor(o,s):delete o.bubble.color}}hoverBubble(){const t=this.container,e=t.interactivity.mouse.position;if(void 0===e)return;const i=t.retina.bubbleModeDistance,o=t.particles.quadTree.queryCircle(e,i);for(const s of o){s.bubble.inRange=!0;const o=V(s.getPosition(),e),n=1-o/i;o<=i?n>=0&&t.interactivity.status===ht.mouseMoveEvent&&(this.hoverBubbleSize(s,n),this.hoverBubbleOpacity(s,n),this.hoverBubbleColor(s,n)):this.reset(s),t.interactivity.status===ht.mouseLeaveEvent&&this.reset(s)}}hoverBubbleSize(t,e,i){const o=this.container,s=(null==i?void 0:i.size)?i.size*o.retina.pixelRatio:o.retina.bubbleModeSize;if(void 0===s)return;const n=F(t.options.size.value)*o.retina.pixelRatio,a=cs(t.size.value,s,n,e);void 0!==a&&(t.bubble.radius=a)}hoverBubbleOpacity(t,e,i){var o;const s=this.container.actualOptions,n=null!==(o=null==i?void 0:i.opacity)&&void 0!==o?o:s.interactivity.modes.bubble.opacity;if(!n)return;const a=t.options.opacity.value,r=cs(t.opacity.value,n,F(a),e);void 0!==r&&(t.bubble.opacity=r)}hoverBubbleColor(t,e,i){const o=this.container.actualOptions,s=null!=i?i:o.interactivity.modes.bubble;if(!t.bubble.finalColor){const e=s.color;if(!e)return;const i=e instanceof Array?K(e):e;t.bubble.finalColor=ft(i)}if(t.bubble.finalColor)if(s.mix){t.bubble.color=void 0;const i=t.getFillColor();t.bubble.color=i?yt(At(i,t.bubble.finalColor,1-e,e)):t.bubble.finalColor}else t.bubble.color=t.bubble.finalColor}}class hs extends ns{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.interactivity.mouse,i=t.actualOptions.interactivity.events;return!(!i.onHover.enable||!e.position)&&Y(v.connect,i.onHover.mode)}reset(){}interact(){const t=this.container;if(t.actualOptions.interactivity.events.onHover.enable&&"mousemove"===t.interactivity.status){const e=t.interactivity.mouse.position;if(!e)return;const i=Math.abs(t.retina.connectModeRadius),o=t.particles.quadTree.queryCircle(e,i);let s=0;for(const e of o){const i=e.getPosition();for(const n of o.slice(s+1)){const o=n.getPosition(),s=Math.abs(t.retina.connectModeDistance),a=Math.abs(i.x-o.x),r=Math.abs(i.y-o.y);a<s&&r<s&&t.canvas.drawConnectLine(e,n)}++s}}}}class us extends ns{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.interactivity.mouse,i=t.actualOptions.interactivity.events;return i.onHover.enable&&!!e.position&&Y(v.grab,i.onHover.mode)}reset(){}interact(){var t;const e=this.container,i=e.actualOptions,o=i.interactivity;if(o.events.onHover.enable&&e.interactivity.status===ht.mouseMoveEvent){const s=e.interactivity.mouse.position;if(!s)return;const n=e.retina.grabModeDistance,a=e.particles.quadTree.queryCircle(s,n);for(const r of a){const a=V(r.getPosition(),s);if(a<=n){const l=o.modes.grab.links,c=l.opacity,d=c-a*c/n;if(d<=0)continue;const h=null!==(t=l.color)&&void 0!==t?t:r.options.links.color;if(!e.particles.grabLineColor){const t=i.interactivity.modes.grab.links;e.particles.grabLineColor=Ft(h,t.blink,t.consent)}const u=Dt(r,void 0,e.particles.grabLineColor);if(!u)return;e.canvas.drawGrabLine(r,u,d,s)}}}}}class vs extends ns{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events,s=o.onDiv,n=st(u.repulse,s);if(!(n||o.onHover.enable&&i.position||o.onClick.enable&&i.clickPosition))return!1;const a=o.onHover.mode,r=o.onClick.mode;return Y(v.repulse,a)||Y(d.repulse,r)||n}reset(){}interact(){const t=this.container,e=t.actualOptions,i=t.interactivity.status===ht.mouseMoveEvent,o=e.interactivity.events,s=o.onHover.enable,n=o.onHover.mode,a=o.onClick.enable,r=o.onClick.mode,l=o.onDiv;i&&s&&Y(v.repulse,n)?this.hoverRepulse():a&&Y(d.repulse,r)?this.clickRepulse():nt(u.repulse,l,((t,e)=>this.singleSelectorRepulse(t,e)))}singleSelectorRepulse(t,e){const i=this.container,o=document.querySelectorAll(t);o.length&&o.forEach((t=>{const o=t,s=i.retina.pixelRatio,n={x:(o.offsetLeft+o.offsetWidth/2)*s,y:(o.offsetTop+o.offsetHeight/2)*s},a=o.offsetWidth/2*s,r=e.type===P.circle?new te(n.x,n.y,a):new ee(o.offsetLeft*s,o.offsetTop*s,o.offsetWidth*s,o.offsetHeight*s),l=rt(i.actualOptions.interactivity.modes.repulse.divs,o);this.processRepulse(n,a,r,l)}))}hoverRepulse(){const t=this.container,e=t.interactivity.mouse.position;if(!e)return;const i=t.retina.repulseModeDistance;this.processRepulse(e,i,new te(e.x,e.y,i))}processRepulse(t,e,i,o){var s;const n=this.container,a=n.particles.quadTree.query(i),r=n.actualOptions.interactivity.modes.repulse;for(const i of a){const{dx:n,dy:a,distance:l}=H(i.position,t),c=(null!==(s=null==o?void 0:o.speed)&&void 0!==s?s:r.speed)*r.factor,d=T($(1-l/e,r.easing)*c,0,r.maxSpeed),h=R.create(0===l?c:n/l*d,0===l?c:a/l*d);i.position.addTo(h)}}clickRepulse(){const t=this.container;if(t.repulse.finish||(t.repulse.count||(t.repulse.count=0),t.repulse.count++,t.repulse.count===t.particles.count&&(t.repulse.finish=!0)),t.repulse.clicking){const e=t.retina.repulseModeDistance,i=Math.pow(e/6,3),o=t.interactivity.mouse.clickPosition;if(void 0===o)return;const s=new te(o.x,o.y,i),n=t.particles.quadTree.query(s);for(const e of n){const{dx:s,dy:n,distance:a}=H(o,e.position),r=Math.pow(a,2),l=t.actualOptions.interactivity.modes.repulse.speed,c=-i*l/r;if(r<=i){t.repulse.particles.push(e);const i=R.create(s,n);i.length=c,e.velocity.setTo(i)}}}else if(!1===t.repulse.clicking){for(const e of t.repulse.particles)e.velocity.setTo(e.initialVelocity);t.repulse.particles=[]}}}class ps extends ns{constructor(t){super(t),this.delay=0}interact(t){var e,i,o,s;if(!this.container.retina.reduceFactor)return;const n=this.container,a=n.actualOptions.interactivity.modes.trail,r=1e3*a.delay/this.container.retina.reduceFactor;if(this.delay<r&&(this.delay+=t.value),this.delay<r)return;let l=!0;a.pauseOnStop&&(n.interactivity.mouse.position===this.lastPosition||(null===(e=n.interactivity.mouse.position)||void 0===e?void 0:e.x)===(null===(i=this.lastPosition)||void 0===i?void 0:i.x)&&(null===(o=n.interactivity.mouse.position)||void 0===o?void 0:o.y)===(null===(s=this.lastPosition)||void 0===s?void 0:s.y))&&(l=!1),n.interactivity.mouse.position?this.lastPosition={x:n.interactivity.mouse.position.x,y:n.interactivity.mouse.position.y}:delete this.lastPosition,l&&n.particles.push(a.quantity,n.interactivity.mouse,a.particles),this.delay-=r}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events;return i.clicking&&i.inside&&!!i.position&&Y(d.trail,o.onClick.mode)||i.inside&&!!i.position&&Y(v.trail,o.onHover.mode)}reset(){}}class fs{constructor(t){this.container=t,this.type=k.Particles}}class ys extends fs{constructor(t){super(t)}interact(t){var e;const i=this.container,o=null!==(e=t.attractDistance)&&void 0!==e?e:i.retina.attractDistance,s=t.getPosition(),n=i.particles.quadTree.queryCircle(s,o);for(const e of n){if(t===e||!e.options.move.attract.enable||e.destroyed||e.spawning)continue;const i=e.getPosition(),{dx:o,dy:n}=H(s,i),a=t.options.move.attract.rotate,r=o/(1e3*a.x),l=n/(1e3*a.y),c=e.size.value/t.size.value,d=1/c;t.velocity.x-=r*c,t.velocity.y-=l*c,e.velocity.x+=r*d,e.velocity.y+=l*d}}isEnabled(t){return t.options.move.attract.enable}reset(){}}function ms(t,e){ct(lt(t),lt(e))}class bs extends fs{constructor(t){super(t)}isEnabled(t){return t.options.collisions.enable}reset(){}interact(t){const e=this.container,i=t.getPosition(),o=t.getRadius(),s=e.particles.quadTree.queryCircle(i,2*o);for(const e of s){if(t===e||!e.options.collisions.enable||t.options.collisions.mode!==e.options.collisions.mode||e.destroyed||e.spawning)continue;const s=e.getPosition();if(Math.round(i.z)!==Math.round(s.z))continue;V(i,s)<=o+e.getRadius()&&this.resolveCollision(t,e)}}resolveCollision(t,e){switch(t.options.collisions.mode){case p.absorb:this.absorb(t,e);break;case p.bounce:ms(t,e);break;case p.destroy:!function(t,e){t.unbreakable||e.unbreakable||ms(t,e),void 0===t.getRadius()&&void 0!==e.getRadius()?t.destroy():void 0!==t.getRadius()&&void 0===e.getRadius()?e.destroy():void 0!==t.getRadius()&&void 0!==e.getRadius()&&(t.getRadius()>=e.getRadius()?e.destroy():t.destroy())}(t,e)}}absorb(t,e){const i=this.container,o=i.fpsLimit/1e3;if(void 0===t.getRadius()&&void 0!==e.getRadius())t.destroy();else if(void 0!==t.getRadius()&&void 0===e.getRadius())e.destroy();else if(void 0!==t.getRadius()&&void 0!==e.getRadius())if(t.getRadius()>=e.getRadius()){const s=T(t.getRadius()/e.getRadius(),0,e.getRadius())*o;t.size.value+=s,e.size.value-=s,e.getRadius()<=i.retina.pixelRatio&&(e.size.value=0,e.destroy())}else{const s=T(e.getRadius()/t.getRadius(),0,t.getRadius())*o;t.size.value-=s,e.size.value+=s,t.getRadius()<=i.retina.pixelRatio&&(t.size.value=0,t.destroy())}}}function gs(t,e,i,o,s){let n=V(t,e);if(!s||n<=i)return n;if(n=V(t,{x:e.x-o.width,y:e.y}),n<=i)return n;if(n=V(t,{x:e.x-o.width,y:e.y-o.height}),n<=i)return n;return n=V(t,{x:e.x,y:e.y-o.height}),n}class ws extends fs{constructor(t){super(t)}isEnabled(t){return t.options.links.enable}reset(){}interact(t){var e;t.links=[];const i=t.getPosition(),o=this.container,s=o.canvas.size;if(i.x<0||i.y<0||i.x>s.width||i.y>s.height)return;const n=t.options.links,a=n.opacity,r=null!==(e=t.linksDistance)&&void 0!==e?e:o.retina.linksDistance,l=n.warp,c=l?new ie(i.x,i.y,r,s):new te(i.x,i.y,r),d=o.particles.quadTree.query(c);for(const e of d){const o=e.options.links;if(t===e||!o.enable||n.id!==o.id||e.spawning||e.destroyed||-1!==t.links.map((t=>t.destination)).indexOf(e)||-1!==e.links.map((t=>t.destination)).indexOf(t))continue;const c=e.getPosition();if(c.x<0||c.y<0||c.x>s.width||c.y>s.height)continue;const d=gs(i,c,r,s,l&&o.warp);if(d>r)return;const h=(1-d/r)*a;this.setColor(t),t.links.push({destination:e,opacity:h})}}setColor(t){const e=this.container,i=t.options.links;let o=void 0===i.id?e.particles.linksColor:e.particles.linksColors.get(i.id);if(!o){o=Ft(i.color,i.blink,i.consent),void 0===i.id?e.particles.linksColor=o:e.particles.linksColors.set(i.id,o)}}}class xs{constructor(t){this.container=t}particleCreated(t){t.links=[]}particleDestroyed(t){t.links=[]}drawParticle(t,e){const i=e,o=this.container,s=o.particles,n=e.options;if(i.links.length>0){t.save();const e=i.links.filter((t=>o.particles.getLinkFrequency(i,t.destination)<=n.links.frequency));for(const t of e){const a=t.destination;if(n.links.triangles.enable){const r=e.map((t=>t.destination)),l=a.links.filter((t=>o.particles.getLinkFrequency(a,t.destination)<=a.options.links.frequency&&r.indexOf(t.destination)>=0));if(l.length)for(const e of l){const o=e.destination;s.getTriangleFrequency(i,a,o)>n.links.triangles.frequency||this.drawLinkTriangle(i,t,e)}}t.opacity>0&&o.retina.linksWidth>0&&this.drawLinkLine(i,t)}t.restore()}}drawLinkTriangle(t,e,i){var o;const s=this.container,n=s.actualOptions,a=e.destination,r=i.destination,l=t.options.links.triangles,c=null!==(o=l.opacity)&&void 0!==o?o:(e.opacity+i.opacity)/2;if(c<=0)return;const d=t.getPosition(),h=a.getPosition(),u=r.getPosition();s.canvas.draw((e=>{if(V(d,h)>s.retina.linksDistance||V(u,h)>s.retina.linksDistance||V(u,d)>s.retina.linksDistance)return;let i=pt(l.color);if(!i){const e=t.options.links,o=void 0!==e.id?s.particles.linksColors.get(e.id):s.particles.linksColor;i=Dt(t,a,o)}i&&$t(e,d,h,u,n.backgroundMask.enable,n.backgroundMask.composite,i,c)}))}drawLinkLine(t,e){const i=this.container,o=i.actualOptions,s=e.destination;let n=e.opacity;const a=t.getPosition(),r=s.getPosition();i.canvas.draw((e=>{var l,c;let d;const h=t.options.twinkle.lines;if(h.enable){const t=h.frequency,e=pt(h.color);Math.random()<t&&void 0!==e&&(d=e,n=h.opacity)}if(!d){const e=t.options.links,o=void 0!==e.id?i.particles.linksColors.get(e.id):i.particles.linksColor;d=Dt(t,s,o)}if(!d)return;const u=null!==(l=t.linksWidth)&&void 0!==l?l:i.retina.linksWidth,v=null!==(c=t.linksDistance)&&void 0!==c?c:i.retina.linksDistance;Wt(e,u,a,r,v,i.canvas.size,t.options.links.warp,o.backgroundMask.enable,o.backgroundMask.composite,d,n,t.options.links.shadow)}))}}class ks{constructor(){this.id="links"}getPlugin(t){return new xs(t)}needsPlugin(){return!0}loadOptions(){}}function Ms(t){!function(t){t.addInteractor("particlesLinks",(t=>new ws(t)))}(t),function(t){const e=new ks;t.addPlugin(e)}(t)}function zs(t){!function(t){t.addInteractor("externalAttract",(t=>new as(t)))}(t),function(t){t.addInteractor("externalBounce",(t=>new rs(t)))}(t),function(t){t.addInteractor("externalBubble",(t=>new ds(t)))}(t),function(t){t.addInteractor("externalConnect",(t=>new hs(t)))}(t),function(t){t.addInteractor("externalGrab",(t=>new us(t)))}(t),function(t){t.addInteractor("externalRepulse",(t=>new vs(t)))}(t),function(t){t.addInteractor("externalTrail",(t=>new ps(t)))}(t),function(t){t.addInteractor("particlesAttract",(t=>new ys(t)))}(t),function(t){t.addInteractor("particlesCollisions",(t=>new bs(t)))}(t),Ms(t),function(t){t.addShape("circle",new Po)}(t),function(t){const e=new Ao;t.addShape("image",e),t.addShape("images",e)}(t),function(t){t.addShape("line",new Do)}(t),Ho(t),function(t){const e=new Bo;t.addShape("edge",e),t.addShape("square",e)}(t),function(t){t.addShape("star",new _o)}(t),function(t){const e=new Uo;for(const i of $o)t.addShape(i,e)}(t),function(t){t.addParticleUpdater("life",(t=>new Jo(t)))}(t),function(t){t.addParticleUpdater("opacity",(()=>new Yo))}(t),function(t){t.addParticleUpdater("size",(()=>new Zo))}(t),function(t){t.addParticleUpdater("angle",(()=>new jo))}(t),function(t){t.addParticleUpdater("tilt",(()=>new os))}(t),function(t){t.addParticleUpdater("roll",(()=>new is))}(t),function(t){t.addParticleUpdater("wobble",(()=>new ss))}(t),function(t){t.addParticleUpdater("color",(()=>new No))}(t),function(t){t.addParticleUpdater("strokeColor",(()=>new ts))}(t),function(t){t.addParticleUpdater("outModes",(t=>new es(t)))}(t)}const Ps=new zo;Ps.init(),zs(Ps);const{particlesJS:Cs,pJSDom:Os}=(t=>{const e=(e,i)=>t.load(e,i);e.load=(e,i,o)=>{t.loadJSON(e,i).then((t=>{t&&o(t)})).catch((()=>{o(void 0)}))},e.setOnClickHandler=e=>{t.setOnClickHandler(e)};return{particlesJS:e,pJSDom:t.dom()}})(Ps);return e})()}));
1
+ /*! tsParticles v1.35.0 by Matteo Bruni */
2
+ !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var i=e();for(var o in i)("object"==typeof exports?exports:t)[o]=i[o]}}(this,(function(){return(()=>{"use strict";var t={d:(e,i)=>{for(var o in i)t.o(i,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:i[o]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r:t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}},e={};t.r(e),t.d(e,{AlterType:()=>y,AnimationStatus:()=>f,Circle:()=>Qt,CircleWarp:()=>Kt,ClickMode:()=>a,CollisionMode:()=>d,Constants:()=>rt,Container:()=>fo,DestroyMode:()=>r,DestroyType:()=>m,DivMode:()=>l,DivType:()=>k,EasingType:()=>M,ExternalInteractorBase:()=>ts,GradientType:()=>b,HoverMode:()=>c,InteractivityDetect:()=>C,InteractorType:()=>g,Main:()=>ko,MoveDirection:()=>i,OrbitType:()=>z,OutMode:()=>h,OutModeDirection:()=>s,Particle:()=>xi,ParticlesInteractorBase:()=>ds,Point:()=>he,Rectangle:()=>Zt,RollMode:()=>u,RotateDirection:()=>o,ShapeType:()=>w,SizeMode:()=>v,StartValueType:()=>x,ThemeMode:()=>p,TiltDirection:()=>n,Vector:()=>P,alterHsl:()=>Xt,animate:()=>j,areBoundsInside:()=>Q,arrayRandomIndex:()=>J,calcEasing:()=>B,calculateBounds:()=>Z,cancelAnimation:()=>G,circleBounce:()=>nt,circleBounceDataFromParticle:()=>st,clamp:()=>O,clear:()=>qt,collisionVelocity:()=>V,colorMix:()=>Rt,colorToHsl:()=>ht,colorToRgb:()=>dt,deepExtend:()=>K,divMode:()=>ot,divModeExecute:()=>et,drawConnectLine:()=>Bt,drawEllipse:()=>Jt,drawGrabLine:()=>Wt,drawLinkLine:()=>Ht,drawLinkTriangle:()=>Vt,drawParticle:()=>$t,drawParticlePlugin:()=>Nt,drawPlugin:()=>Ut,drawShape:()=>jt,drawShapeAfterEffect:()=>Gt,getDistance:()=>F,getDistances:()=>L,getHslAnimationFromHsl:()=>Et,getHslFromAnimation:()=>Dt,getLinkColor:()=>Tt,getLinkRandomColor:()=>It,getParticleBaseVelocity:()=>H,getParticleDirectionAngle:()=>q,getRandomRgbColor:()=>Ct,getRangeMax:()=>D,getRangeMin:()=>I,getRangeValue:()=>T,getStyleFromHsl:()=>Ot,getStyleFromHsv:()=>St,getStyleFromRgb:()=>Pt,getValue:()=>A,gradient:()=>_t,hslToHsv:()=>mt,hslToRgb:()=>ft,hslaToHsva:()=>bt,hslaToRgba:()=>yt,hsvToHsl:()=>gt,hsvToRgb:()=>xt,hsvaToHsla:()=>wt,hsvaToRgba:()=>kt,isDivModeEnabled:()=>tt,isInArray:()=>U,isPointInside:()=>Y,isSsr:()=>$,itemFromArray:()=>X,loadFont:()=>N,loadSlim:()=>gs,mix:()=>S,pJSDom:()=>ks,paintBase:()=>Ft,particlesJS:()=>xs,randomInRange:()=>R,rectBounce:()=>at,rgbToHsl:()=>ut,rgbToHsv:()=>Mt,rgbaToHsva:()=>zt,setRangeValue:()=>E,singleDivModeExecute:()=>it,stringToAlpha:()=>vt,stringToRgb:()=>pt,tsParticles:()=>ws});var i,o,s,n,a,r,l,c,d,h,u,v,p,f,y,m,b,g,w,x,k,M,z,C;!function(t){t.bottom="bottom",t.bottomLeft="bottom-left",t.bottomRight="bottom-right",t.left="left",t.none="none",t.right="right",t.top="top",t.topLeft="top-left",t.topRight="top-right"}(i||(i={})),function(t){t.clockwise="clockwise",t.counterClockwise="counter-clockwise",t.random="random"}(o||(o={})),function(t){t.bottom="bottom",t.left="left",t.right="right",t.top="top"}(s||(s={})),function(t){t.clockwise="clockwise",t.counterClockwise="counter-clockwise",t.random="random"}(n||(n={})),function(t){t.attract="attract",t.bubble="bubble",t.push="push",t.remove="remove",t.repulse="repulse",t.pause="pause",t.trail="trail"}(a||(a={})),function(t){t.none="none",t.split="split"}(r||(r={})),function(t){t.bounce="bounce",t.bubble="bubble",t.repulse="repulse"}(l||(l={})),function(t){t.attract="attract",t.bounce="bounce",t.bubble="bubble",t.connect="connect",t.grab="grab",t.light="light",t.repulse="repulse",t.slow="slow",t.trail="trail"}(c||(c={})),function(t){t.absorb="absorb",t.bounce="bounce",t.destroy="destroy"}(d||(d={})),function(t){t.bounce="bounce",t.bounceHorizontal="bounce-horizontal",t.bounceVertical="bounce-vertical",t.none="none",t.out="out",t.destroy="destroy",t.split="split"}(h||(h={})),function(t){t.both="both",t.horizontal="horizontal",t.vertical="vertical"}(u||(u={})),function(t){t.precise="precise",t.percent="percent"}(v||(v={})),function(t){t.any="any",t.dark="dark",t.light="light"}(p||(p={})),function(t){t[t.increasing=0]="increasing",t[t.decreasing=1]="decreasing"}(f||(f={})),function(t){t.darken="darken",t.enlighten="enlighten"}(y||(y={})),function(t){t.none="none",t.max="max",t.min="min"}(m||(m={})),function(t){t.linear="linear",t.radial="radial",t.random="random"}(b||(b={})),function(t){t[t.External=0]="External",t[t.Particles=1]="Particles"}(g||(g={})),function(t){t.char="char",t.character="character",t.circle="circle",t.edge="edge",t.image="image",t.images="images",t.line="line",t.polygon="polygon",t.square="square",t.star="star",t.triangle="triangle"}(w||(w={})),function(t){t.max="max",t.min="min",t.random="random"}(x||(x={})),function(t){t.circle="circle",t.rectangle="rectangle"}(k||(k={})),function(t){t.easeOutBack="ease-out-back",t.easeOutCirc="ease-out-circ",t.easeOutCubic="ease-out-cubic",t.easeOutQuad="ease-out-quad",t.easeOutQuart="ease-out-quart",t.easeOutQuint="ease-out-quint",t.easeOutExpo="ease-out-expo",t.easeOutSine="ease-out-sine"}(M||(M={})),function(t){t.front="front",t.back="back"}(z||(z={})),function(t){t.canvas="canvas",t.parent="parent",t.window="window"}(C||(C={}));class P{constructor(t,e){let i,o;if(void 0===e){if("number"==typeof t)throw new Error("tsParticles - Vector not initialized correctly");const e=t;[i,o]=[e.x,e.y]}else[i,o]=[t,e];this.x=i,this.y=o}static clone(t){return P.create(t.x,t.y)}static create(t,e){return new P(t,e)}static get origin(){return P.create(0,0)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this.updateFromAngle(t,this.length)}get length(){return Math.sqrt(this.x**2+this.y**2)}set length(t){this.updateFromAngle(this.angle,t)}add(t){return P.create(this.x+t.x,this.y+t.y)}addTo(t){this.x+=t.x,this.y+=t.y}sub(t){return P.create(this.x-t.x,this.y-t.y)}subFrom(t){this.x-=t.x,this.y-=t.y}mult(t){return P.create(this.x*t,this.y*t)}multTo(t){this.x*=t,this.y*=t}div(t){return P.create(this.x/t,this.y/t)}divTo(t){this.x/=t,this.y/=t}distanceTo(t){return this.sub(t).length}getLengthSq(){return this.x**2+this.y**2}distanceToSq(t){return this.sub(t).getLengthSq()}manhattanDistanceTo(t){return Math.abs(t.x-this.x)+Math.abs(t.y-this.y)}copy(){return P.clone(this)}setTo(t){this.x=t.x,this.y=t.y}rotate(t){return P.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t))}updateFromAngle(t,e){this.x=Math.cos(t)*e,this.y=Math.sin(t)*e}}function O(t,e,i){return Math.min(Math.max(t,e),i)}function S(t,e,i,o){return Math.floor((t*i+e*o)/(i+o))}function R(t){const e=D(t);let i=I(t);return e===i&&(i=0),Math.random()*(e-i)+i}function T(t){return"number"==typeof t?t:R(t)}function I(t){return"number"==typeof t?t:t.min}function D(t){return"number"==typeof t?t:t.max}function E(t,e){if(t===e||void 0===e&&"number"==typeof t)return t;const i=I(t),o=D(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(o,e)}:E(i,o)}function A(t){const e=t.random,{enable:i,minimumValue:o}="boolean"==typeof e?{enable:e,minimumValue:0}:e;return T(i?E(t.value,o):t.value)}function L(t,e){const i=t.x-e.x,o=t.y-e.y;return{dx:i,dy:o,distance:Math.sqrt(i*i+o*o)}}function F(t,e){return L(t,e).distance}function q(t){if("number"==typeof t)return t*Math.PI/180;switch(t){case i.top:return-Math.PI/2;case i.topRight:return-Math.PI/4;case i.right:return 0;case i.bottomRight:return Math.PI/4;case i.bottom:return Math.PI/2;case i.bottomLeft:return 3*Math.PI/4;case i.left:return Math.PI;case i.topLeft:return-3*Math.PI/4;case i.none:default:return Math.random()*Math.PI*2}}function H(t){const e=P.origin;return e.length=1,e.angle=t,e}function V(t,e,i,o){return P.create(t.x*(i-o)/(i+o)+2*e.x*o/(i+o),t.y)}function B(t,e){switch(e){case M.easeOutQuad:return 1-(1-t)**2;case M.easeOutCubic:return 1-(1-t)**3;case M.easeOutQuart:return 1-(1-t)**4;case M.easeOutQuint:return 1-(1-t)**5;case M.easeOutExpo:return 1===t?1:1-Math.pow(2,-10*t);case M.easeOutSine:return Math.sin(t*Math.PI/2);case M.easeOutBack:{const e=1.70158;return 1+(e+1)*Math.pow(t-1,3)+e*Math.pow(t-1,2)}case M.easeOutCirc:return Math.sqrt(1-Math.pow(t-1,2));default:return t}}function _(t,e,i,o,s,n){const a={bounced:!1};return e.min>=o.min&&e.min<=o.max&&e.max>=o.min&&e.max<=o.max&&(t.max>=i.min&&t.max<=(i.max+i.min)/2&&s>0||t.min<=i.max&&t.min>(i.max+i.min)/2&&s<0)&&(a.velocity=s*-n,a.bounced=!0),a}function W(t,e){if(e instanceof Array){for(const i of e)if(t.matches(i))return!0;return!1}return t.matches(e)}function $(){return"undefined"==typeof window||!window}function j(){return $()?t=>setTimeout(t):t=>(window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||window.setTimeout)(t)}function G(){return $()?t=>clearTimeout(t):t=>(window.cancelAnimationFrame||window.webkitCancelRequestAnimationFrame||window.mozCancelRequestAnimationFrame||window.oCancelRequestAnimationFrame||window.msCancelRequestAnimationFrame||window.clearTimeout)(t)}function U(t,e){return t===e||e instanceof Array&&e.indexOf(t)>-1}async function N(t){var e,i;try{await document.fonts.load(`${null!==(e=t.weight)&&void 0!==e?e:"400"} 36px '${null!==(i=t.font)&&void 0!==i?i:"Verdana"}'`)}catch(t){}}function J(t){return Math.floor(Math.random()*t.length)}function X(t,e,i=!0){return t[void 0!==e&&i?e%t.length:J(t)]}function Y(t,e,i,o){return Q(Z(t,null!=i?i:0),e,o)}function Q(t,e,i){let o=!0;return i&&i!==s.bottom||(o=t.top<e.height),!o||i&&i!==s.left||(o=t.right>0),!o||i&&i!==s.right||(o=t.left<e.width),!o||i&&i!==s.top||(o=t.bottom>0),o}function Z(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function K(t,...e){for(const i of e){if(null==i)continue;if("object"!=typeof i){t=i;continue}const e=Array.isArray(i);!e||"object"==typeof t&&t&&Array.isArray(t)?e||"object"==typeof t&&t&&!Array.isArray(t)||(t={}):t=[];for(const e in i){if("__proto__"===e)continue;const o=i[e],s="object"==typeof o,n=t;n[e]=s&&Array.isArray(o)?o.map((t=>K(n[e],t))):K(n[e],o)}}return t}function tt(t,e){return e instanceof Array?!!e.find((e=>e.enable&&U(t,e.mode))):U(t,e.mode)}function et(t,e,i){if(e instanceof Array)for(const o of e){const e=o.mode;o.enable&&U(t,e)&&it(o,i)}else{const o=e.mode;e.enable&&U(t,o)&&it(e,i)}}function it(t,e){const i=t.selectors;if(i instanceof Array)for(const o of i)e(o,t);else e(i,t)}function ot(t,e){if(e&&t)return t instanceof Array?t.find((t=>W(e,t.selectors))):W(e,t.selectors)?t:void 0}function st(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:P.create(A(t.options.bounce.horizontal),A(t.options.bounce.vertical))}}function nt(t,e){const i=t.velocity.x,o=t.velocity.y,s=t.position,n=e.position;if(i*(n.x-s.x)+o*(n.y-s.y)>=0){const i=-Math.atan2(n.y-s.y,n.x-s.x),o=t.mass,a=e.mass,r=t.velocity.rotate(i),l=e.velocity.rotate(i),c=V(r,l,o,a),d=V(l,r,o,a),h=c.rotate(-i),u=d.rotate(-i);t.velocity.x=h.x*t.factor.x,t.velocity.y=h.y*t.factor.y,e.velocity.x=u.x*e.factor.x,e.velocity.y=u.y*e.factor.y}}function at(t,e){const i=Z(t.getPosition(),t.getRadius()),o=_({min:i.left,max:i.right},{min:i.top,max:i.bottom},{min:e.left,max:e.right},{min:e.top,max:e.bottom},t.velocity.x,A(t.options.bounce.horizontal));o.bounced&&(void 0!==o.velocity&&(t.velocity.x=o.velocity),void 0!==o.position&&(t.position.x=o.position));const s=_({min:i.top,max:i.bottom},{min:i.left,max:i.right},{min:e.top,max:e.bottom},{min:e.left,max:e.right},t.velocity.y,A(t.options.bounce.vertical));s.bounced&&(void 0!==s.velocity&&(t.velocity.y=s.velocity),void 0!==s.position&&(t.position.y=s.position))}class rt{}function lt(t,e,i){let o=i;return o<0&&(o+=1),o>1&&(o-=1),o<1/6?t+6*(e-t)*o:o<.5?e:o<2/3?t+(e-t)*(2/3-o)*6:t}function ct(t){if(t.startsWith("rgb")){const e=/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([\d.]+)\s*)?\)/i.exec(t);return e?{a:e.length>4?parseFloat(e[5]):1,b:parseInt(e[3],10),g:parseInt(e[2],10),r:parseInt(e[1],10)}:void 0}if(t.startsWith("hsl")){const e=/hsla?\(\s*(\d+)\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([\d.]+)\s*)?\)/i.exec(t);return e?yt({a:e.length>4?parseFloat(e[5]):1,h:parseInt(e[1],10),l:parseInt(e[3],10),s:parseInt(e[2],10)}):void 0}if(t.startsWith("hsv")){const e=/hsva?\(\s*(\d+)°\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([\d.]+)\s*)?\)/i.exec(t);return e?kt({a:e.length>4?parseFloat(e[5]):1,h:parseInt(e[1],10),s:parseInt(e[2],10),v:parseInt(e[3],10)}):void 0}{const e=/^#?([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,i=t.replace(e,((t,e,i,o,s)=>e+e+i+i+o+o+(void 0!==s?s+s:""))),o=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i.exec(i);return o?{a:void 0!==o[4]?parseInt(o[4],16)/255:1,b:parseInt(o[3],16),g:parseInt(o[2],16),r:parseInt(o[1],16)}:void 0}}function dt(t,e,i=!0){var o,s,n;if(void 0===t)return;const a="string"==typeof t?{value:t}:t;let r;if("string"==typeof a.value)r=a.value===rt.randomColorValue?Ct():pt(a.value);else if(a.value instanceof Array){r=dt({value:X(a.value,e,i)})}else{const t=a.value,e=null!==(o=t.rgb)&&void 0!==o?o:a.value;if(void 0!==e.r)r=e;else{const e=null!==(s=t.hsl)&&void 0!==s?s:a.value;if(void 0!==e.h&&void 0!==e.l)r=ft(e);else{const e=null!==(n=t.hsv)&&void 0!==n?n:a.value;void 0!==e.h&&void 0!==e.v&&(r=xt(e))}}}return r}function ht(t,e,i=!0){const o=dt(t,e,i);return void 0!==o?ut(o):void 0}function ut(t){const e=t.r/255,i=t.g/255,o=t.b/255,s=Math.max(e,i,o),n=Math.min(e,i,o),a={h:0,l:(s+n)/2,s:0};return s!=n&&(a.s=a.l<.5?(s-n)/(s+n):(s-n)/(2-s-n),a.h=e===s?(i-o)/(s-n):a.h=i===s?2+(o-e)/(s-n):4+(e-i)/(s-n)),a.l*=100,a.s*=100,a.h*=60,a.h<0&&(a.h+=360),a}function vt(t){var e;return null===(e=ct(t))||void 0===e?void 0:e.a}function pt(t){return ct(t)}function ft(t){const e={b:0,g:0,r:0},i={h:t.h/360,l:t.l/100,s:t.s/100};if(0===i.s)e.b=i.l,e.g=i.l,e.r=i.l;else{const t=i.l<.5?i.l*(1+i.s):i.l+i.s-i.l*i.s,o=2*i.l-t;e.r=lt(o,t,i.h+1/3),e.g=lt(o,t,i.h),e.b=lt(o,t,i.h-1/3)}return e.r=Math.floor(255*e.r),e.g=Math.floor(255*e.g),e.b=Math.floor(255*e.b),e}function yt(t){const e=ft(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function mt(t){const e=t.l/100,i=e+t.s/100*Math.min(e,1-e),o=i?2*(1-e/i):0;return{h:t.h,s:100*o,v:100*i}}function bt(t){const e=mt(t);return{a:t.a,h:e.h,s:e.s,v:e.v}}function gt(t){const e=t.v/100,i=e*(1-t.s/100/2),o=0===i||1===i?0:(e-i)/Math.min(i,1-i);return{h:t.h,l:100*i,s:100*o}}function wt(t){const e=gt(t);return{a:t.a,h:e.h,l:e.l,s:e.s}}function xt(t){const e={b:0,g:0,r:0},i=t.h/60,o=t.s/100,s=t.v/100,n=s*o,a=n*(1-Math.abs(i%2-1));let r;if(i>=0&&i<=1?r={r:n,g:a,b:0}:i>1&&i<=2?r={r:a,g:n,b:0}:i>2&&i<=3?r={r:0,g:n,b:a}:i>3&&i<=4?r={r:0,g:a,b:n}:i>4&&i<=5?r={r:a,g:0,b:n}:i>5&&i<=6&&(r={r:n,g:0,b:a}),r){const t=s-n;e.r=Math.floor(255*(r.r+t)),e.g=Math.floor(255*(r.g+t)),e.b=Math.floor(255*(r.b+t))}return e}function kt(t){const e=xt(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function Mt(t){const e={r:t.r/255,g:t.g/255,b:t.b/255},i=Math.max(e.r,e.g,e.b),o=i-Math.min(e.r,e.g,e.b);let s=0;i===e.r?s=(e.g-e.b)/o*60:i===e.g?s=60*(2+(e.b-e.r)/o):i===e.b&&(s=60*(4+(e.r-e.g)/o));return{h:s,s:100*(i?o/i:0),v:100*i}}function zt(t){const e=Mt(t);return{a:t.a,h:e.h,s:e.s,v:e.v}}function Ct(t){const e=null!=t?t:0;return{b:Math.floor(R(E(e,256))),g:Math.floor(R(E(e,256))),r:Math.floor(R(E(e,256)))}}function Pt(t,e){return`rgba(${t.r}, ${t.g}, ${t.b}, ${null!=e?e:1})`}function Ot(t,e){return`hsla(${t.h}, ${t.s}%, ${t.l}%, ${null!=e?e:1})`}function St(t,e){return Ot(gt(t),e)}function Rt(t,e,i,o){let s=t,n=e;return void 0===s.r&&(s=ft(t)),void 0===n.r&&(n=ft(e)),{b:S(s.b,n.b,i,o),g:S(s.g,n.g,i,o),r:S(s.r,n.r,i,o)}}function Tt(t,e,i){var o,s;if(i===rt.randomColorValue)return Ct();if("mid"!==i)return i;{const i=null!==(o=t.getFillColor())&&void 0!==o?o:t.getStrokeColor(),n=null!==(s=null==e?void 0:e.getFillColor())&&void 0!==s?s:null==e?void 0:e.getStrokeColor();if(i&&n&&e)return Rt(i,n,t.getRadius(),e.getRadius());{const t=null!=i?i:n;if(t)return ft(t)}}}function It(t,e,i){const o="string"==typeof t?t:t.value;return o===rt.randomColorValue?i?dt({value:o}):e?rt.randomColorValue:rt.midColorValue:dt({value:o})}function Dt(t){return void 0!==t?{h:t.h.value,s:t.s.value,l:t.l.value}:void 0}function Et(t,e,i){const o={h:{enable:!1,value:t.h},s:{enable:!1,value:t.s},l:{enable:!1,value:t.l}};return e&&(At(o.h,e.h,i),At(o.s,e.s,i),At(o.l,e.l,i)),o}function At(t,e,i){if(t.enable=e.enable,t.enable){if(t.velocity=e.speed/100*i,e.sync)return;t.status=f.increasing,t.velocity*=Math.random(),t.value&&(t.value*=Math.random())}else t.velocity=0}function Lt(t,e,i){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.closePath()}function Ft(t,e,i){t.save(),t.fillStyle=null!=i?i:"rgba(0,0,0,0)",t.fillRect(0,0,e.width,e.height),t.restore()}function qt(t,e){t.clearRect(0,0,e.width,e.height)}function Ht(t,e,i,o,s,n,a,r,l,c,d,h){let u=!1;if(F(i,o)<=s)Lt(t,i,o),u=!0;else if(a){let e,a;const r=L(i,{x:o.x-n.width,y:o.y});if(r.distance<=s){const t=i.y-r.dy/r.dx*i.x;e={x:0,y:t},a={x:n.width,y:t}}else{const t=L(i,{x:o.x,y:o.y-n.height});if(t.distance<=s){const o=-(i.y-t.dy/t.dx*i.x)/(t.dy/t.dx);e={x:o,y:0},a={x:o,y:n.height}}else{const t=L(i,{x:o.x-n.width,y:o.y-n.height});if(t.distance<=s){const o=i.y-t.dy/t.dx*i.x;e={x:-o/(t.dy/t.dx),y:o},a={x:e.x+n.width,y:e.y+n.height}}}}e&&a&&(Lt(t,i,e),Lt(t,o,a),u=!0)}if(u){if(t.lineWidth=e,r&&(t.globalCompositeOperation=l),t.strokeStyle=Pt(c,d),h.enable){const e=dt(h.color);e&&(t.shadowBlur=h.blur,t.shadowColor=Pt(e))}t.stroke()}}function Vt(t,e,i,o,s,n,a,r){!function(t,e,i,o){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.lineTo(o.x,o.y),t.closePath()}(t,e,i,o),s&&(t.globalCompositeOperation=n),t.fillStyle=Pt(a,r),t.fill()}function Bt(t,e,i,o,s){t.save(),Lt(t,o,s),t.lineWidth=e,t.strokeStyle=i,t.stroke(),t.restore()}function _t(t,e,i,o){const s=Math.floor(i.getRadius()/e.getRadius()),n=e.getFillColor(),a=i.getFillColor();if(!n||!a)return;const r=e.getPosition(),l=i.getPosition(),c=Rt(n,a,e.getRadius(),i.getRadius()),d=t.createLinearGradient(r.x,r.y,l.x,l.y);return d.addColorStop(0,Ot(n,o)),d.addColorStop(s>1?1:s,Pt(c,o)),d.addColorStop(1,Ot(a,o)),d}function Wt(t,e,i,o,s,n){t.save(),Lt(t,i,o),t.strokeStyle=Pt(s,n),t.lineWidth=e,t.stroke(),t.restore()}function $t(t,e,i,o,s,n,a,r,l,c,d,h){var v,p,f,y,m,g;const w=i.getPosition(),x=i.options.tilt,k=i.options.roll;if(e.save(),x.enable||k.enable){const t=k.enable&&i.roll,o=x.enable&&i.tilt,s=t&&(k.mode===u.horizontal||k.mode===u.both),n=t&&(k.mode===u.vertical||k.mode===u.both);e.setTransform(s?Math.cos(i.roll.angle):1,o?Math.cos(i.tilt.value)*i.tilt.cosDirection:0,o?Math.sin(i.tilt.value)*i.tilt.sinDirection:0,n?Math.sin(i.roll.angle):1,w.x,w.y)}else e.translate(w.x,w.y);e.beginPath();const M=(null!==(p=null===(v=i.rotate)||void 0===v?void 0:v.value)&&void 0!==p?p:0)+(i.options.rotate.path?i.velocity.angle:0);0!==M&&e.rotate(M),a&&(e.globalCompositeOperation=r);const z=i.shadowColor;if(d.enable&&z&&(e.shadowBlur=d.blur,e.shadowColor=Pt(z),e.shadowOffsetX=d.offset.x,e.shadowOffsetY=d.offset.y),h){const t=h.angle.value,i=h.type===b.radial?e.createRadialGradient(0,0,0,0,0,l):e.createLinearGradient(Math.cos(t)*-l,Math.sin(t)*-l,Math.cos(t)*l,Math.sin(t)*l);for(const t of h.colors)i.addColorStop(t.stop,Ot({h:t.value.h.value,s:t.value.s.value,l:t.value.l.value},null!==(y=null===(f=t.opacity)||void 0===f?void 0:f.value)&&void 0!==y?y:c));e.fillStyle=i}else s&&(e.fillStyle=s);const C=i.stroke;e.lineWidth=null!==(m=i.strokeWidth)&&void 0!==m?m:0,n&&(e.strokeStyle=n),jt(t,e,i,l,c,o),(null!==(g=null==C?void 0:C.width)&&void 0!==g?g:0)>0&&e.stroke(),i.close&&e.closePath(),i.fill&&e.fill(),e.restore(),e.save(),x.enable&&i.tilt?e.setTransform(1,Math.cos(i.tilt.value)*i.tilt.cosDirection,Math.sin(i.tilt.value)*i.tilt.sinDirection,1,w.x,w.y):e.translate(w.x,w.y),0!==M&&e.rotate(M),a&&(e.globalCompositeOperation=r),Gt(t,e,i,l,c,o),e.restore()}function jt(t,e,i,o,s,n){if(!i.shape)return;const a=t.drawers.get(i.shape);a&&a.draw(e,i,o,s,n,t.retina.pixelRatio)}function Gt(t,e,i,o,s,n){if(!i.shape)return;const a=t.drawers.get(i.shape);(null==a?void 0:a.afterEffect)&&a.afterEffect(e,i,o,s,n,t.retina.pixelRatio)}function Ut(t,e,i){e.draw&&(t.save(),e.draw(t,i),t.restore())}function Nt(t,e,i,o){void 0!==e.drawParticle&&(t.save(),e.drawParticle(t,i,o),t.restore())}function Jt(t,e,i,o,s,n,a,r,l){const c=e.getPosition();if(i&&(t.strokeStyle=Ot(i,s)),0===n)return;t.lineWidth=n;const d=a*Math.PI/180;t.beginPath(),t.ellipse(c.x,c.y,o/2,2*o,d,r,l),t.stroke()}function Xt(t,e,i){return{h:t.h,s:t.s,l:t.l+(e===y.darken?-1:1)*i}}rt.canvasClass="tsparticles-canvas-el",rt.randomColorValue="random",rt.midColorValue="mid",rt.touchEndEvent="touchend",rt.mouseDownEvent="mousedown",rt.mouseUpEvent="mouseup",rt.mouseMoveEvent="mousemove",rt.touchStartEvent="touchstart",rt.touchMoveEvent="touchmove",rt.mouseLeaveEvent="mouseleave",rt.mouseOutEvent="mouseout",rt.touchCancelEvent="touchcancel",rt.resizeEvent="resize",rt.visibilityChangeEvent="visibilitychange",rt.noPolygonDataLoaded="No polygon data loaded.",rt.noPolygonFound="No polygon found, you need to specify SVG url in config.";class Yt{constructor(t,e){this.position={x:t,y:e}}}class Qt extends Yt{constructor(t,e,i){super(t,e),this.radius=i}contains(t){return F(t,this.position)<=this.radius}intersects(t){const e=t,i=t,o=this.position,s=t.position,n=Math.abs(s.x-o.x),a=Math.abs(s.y-o.y),r=this.radius;if(void 0!==i.radius){return r+i.radius>Math.sqrt(n*n+a+a)}if(void 0!==e.size){const t=e.size.width,i=e.size.height,o=Math.pow(n-t,2)+Math.pow(a-i,2);return!(n>r+t||a>r+i)&&(n<=t||a<=i||o<=r*r)}return!1}}class Zt extends Yt{constructor(t,e,i,o){super(t,e),this.size={height:o,width:i}}contains(t){const e=this.size.width,i=this.size.height,o=this.position;return t.x>=o.x&&t.x<=o.x+e&&t.y>=o.y&&t.y<=o.y+i}intersects(t){const e=t,i=t,o=this.size.width,s=this.size.height,n=this.position,a=t.position;if(void 0!==i.radius)return i.intersects(this);if(void 0!==e.size){const t=e.size,i=t.width,r=t.height;return a.x<n.x+o&&a.x+i>n.x&&a.y<n.y+s&&a.y+r>n.y}return!1}}class Kt extends Qt{constructor(t,e,i,o){super(t,e,i),this.canvasSize=o,this.canvasSize={height:o.height,width:o.width}}contains(t){if(super.contains(t))return!0;const e={x:t.x-this.canvasSize.width,y:t.y};if(super.contains(e))return!0;const i={x:t.x-this.canvasSize.width,y:t.y-this.canvasSize.height};if(super.contains(i))return!0;const o={x:t.x,y:t.y-this.canvasSize.height};return super.contains(o)}intersects(t){if(super.intersects(t))return!0;const e=t,i=t,o={x:t.position.x-this.canvasSize.width,y:t.position.y-this.canvasSize.height};if(void 0!==i.radius){const t=new Qt(o.x,o.y,2*i.radius);return super.intersects(t)}if(void 0!==e.size){const t=new Zt(o.x,o.y,2*e.size.width,2*e.size.height);return super.intersects(t)}return!1}}function te(t,e,i,o,s){if(o){let o={passive:!0};"boolean"==typeof s?o.capture=s:void 0!==s&&(o=s),t.addEventListener(e,i,o)}else{const o=s;t.removeEventListener(e,i,o)}}class ee{constructor(t){this.container=t,this.canPush=!0,this.mouseMoveHandler=t=>this.mouseTouchMove(t),this.touchStartHandler=t=>this.mouseTouchMove(t),this.touchMoveHandler=t=>this.mouseTouchMove(t),this.touchEndHandler=()=>this.mouseTouchFinish(),this.mouseLeaveHandler=()=>this.mouseTouchFinish(),this.touchCancelHandler=()=>this.mouseTouchFinish(),this.touchEndClickHandler=t=>this.mouseTouchClick(t),this.mouseUpHandler=t=>this.mouseTouchClick(t),this.mouseDownHandler=()=>this.mouseDown(),this.visibilityChangeHandler=()=>this.handleVisibilityChange(),this.themeChangeHandler=t=>this.handleThemeChange(t),this.resizeHandler=()=>this.handleWindowResize()}addListeners(){this.manageListeners(!0)}removeListeners(){this.manageListeners(!1)}manageListeners(t){var e;const i=this.container,o=i.actualOptions,s=o.interactivity.detectsOn;let n=rt.mouseLeaveEvent;if(s===C.window)i.interactivity.element=window,n=rt.mouseOutEvent;else if(s===C.parent&&i.canvas.element){const t=i.canvas.element;i.interactivity.element=null!==(e=t.parentElement)&&void 0!==e?e:t.parentNode}else i.interactivity.element=i.canvas.element;const a="undefined"!=typeof matchMedia&&matchMedia("(prefers-color-scheme: dark)");a&&te(a,"change",this.themeChangeHandler,t);const r=i.interactivity.element;if(!r)return;const l=r;(o.interactivity.events.onHover.enable||o.interactivity.events.onClick.enable)&&(te(r,rt.mouseMoveEvent,this.mouseMoveHandler,t),te(r,rt.touchStartEvent,this.touchStartHandler,t),te(r,rt.touchMoveEvent,this.touchMoveHandler,t),o.interactivity.events.onClick.enable?(te(r,rt.touchEndEvent,this.touchEndClickHandler,t),te(r,rt.mouseUpEvent,this.mouseUpHandler,t),te(r,rt.mouseDownEvent,this.mouseDownHandler,t)):te(r,rt.touchEndEvent,this.touchEndHandler,t),te(r,n,this.mouseLeaveHandler,t),te(r,rt.touchCancelEvent,this.touchCancelHandler,t)),i.canvas.element&&(i.canvas.element.style.pointerEvents=l===i.canvas.element?"initial":"none"),o.interactivity.events.resize&&("undefined"!=typeof ResizeObserver?this.resizeObserver&&!t?(i.canvas.element&&this.resizeObserver.unobserve(i.canvas.element),this.resizeObserver.disconnect(),delete this.resizeObserver):!this.resizeObserver&&t&&i.canvas.element&&(this.resizeObserver=new ResizeObserver((t=>{t.find((t=>t.target===i.canvas.element))&&this.handleWindowResize()})),this.resizeObserver.observe(i.canvas.element)):te(window,rt.resizeEvent,this.resizeHandler,t)),document&&te(document,rt.visibilityChangeEvent,this.visibilityChangeHandler,t,!1)}handleWindowResize(){this.resizeTimeout&&(clearTimeout(this.resizeTimeout),delete this.resizeTimeout),this.resizeTimeout=setTimeout((()=>{var t;return null===(t=this.container.canvas)||void 0===t?void 0:t.windowResize()}),500)}handleVisibilityChange(){const t=this.container,e=t.actualOptions;this.mouseTouchFinish(),e.pauseOnBlur&&((null===document||void 0===document?void 0:document.hidden)?(t.pageHidden=!0,t.pause()):(t.pageHidden=!1,t.getAnimationStatus()?t.play(!0):t.draw(!0)))}mouseDown(){const t=this.container.interactivity;if(t){const e=t.mouse;e.clicking=!0,e.downPosition=e.position}}mouseTouchMove(t){var e,i,o,s,n,a,r;const l=this.container,c=l.actualOptions;if(void 0===(null===(e=l.interactivity)||void 0===e?void 0:e.element))return;let d;l.interactivity.mouse.inside=!0;const h=l.canvas.element;if(t.type.startsWith("mouse")){this.canPush=!0;const e=t;if(l.interactivity.element===window){if(h){const t=h.getBoundingClientRect();d={x:e.clientX-t.left,y:e.clientY-t.top}}}else if(c.interactivity.detectsOn===C.parent){const t=e.target,s=e.currentTarget,n=l.canvas.element;if(t&&s&&n){const i=t.getBoundingClientRect(),o=s.getBoundingClientRect(),a=n.getBoundingClientRect();d={x:e.offsetX+2*i.left-(o.left+a.left),y:e.offsetY+2*i.top-(o.top+a.top)}}else d={x:null!==(i=e.offsetX)&&void 0!==i?i:e.clientX,y:null!==(o=e.offsetY)&&void 0!==o?o:e.clientY}}else e.target===l.canvas.element&&(d={x:null!==(s=e.offsetX)&&void 0!==s?s:e.clientX,y:null!==(n=e.offsetY)&&void 0!==n?n:e.clientY})}else{this.canPush="touchmove"!==t.type;const e=t,i=e.touches[e.touches.length-1],o=null==h?void 0:h.getBoundingClientRect();d={x:i.clientX-(null!==(a=null==o?void 0:o.left)&&void 0!==a?a:0),y:i.clientY-(null!==(r=null==o?void 0:o.top)&&void 0!==r?r:0)}}const u=l.retina.pixelRatio;d&&(d.x*=u,d.y*=u),l.interactivity.mouse.position=d,l.interactivity.status=rt.mouseMoveEvent}mouseTouchFinish(){const t=this.container.interactivity;if(void 0===t)return;const e=t.mouse;delete e.position,delete e.clickPosition,delete e.downPosition,t.status=rt.mouseLeaveEvent,e.inside=!1,e.clicking=!1}mouseTouchClick(t){const e=this.container,i=e.actualOptions,o=e.interactivity.mouse;o.inside=!0;let s=!1;const n=o.position;if(void 0!==n&&i.interactivity.events.onClick.enable){for(const[,t]of e.plugins)if(void 0!==t.clickPositionValid&&(s=t.clickPositionValid(n),s))break;s||this.doMouseTouchClick(t),o.clicking=!1}}doMouseTouchClick(t){const e=this.container,i=e.actualOptions;if(this.canPush){const t=e.interactivity.mouse.position;if(!t)return;e.interactivity.mouse.clickPosition={x:t.x,y:t.y},e.interactivity.mouse.clickTime=(new Date).getTime();const o=i.interactivity.events.onClick;if(o.mode instanceof Array)for(const t of o.mode)this.handleClickMode(t);else this.handleClickMode(o.mode)}"touchend"===t.type&&setTimeout((()=>this.mouseTouchFinish()),500)}handleThemeChange(t){const e=t.matches?this.container.options.defaultDarkTheme:this.container.options.defaultLightTheme,i=this.container.options.themes.find((t=>t.name===e));i&&i.default.auto&&this.container.loadTheme(e)}handleClickMode(t){const e=this.container,i=e.actualOptions,o=i.interactivity.modes.push.quantity,s=i.interactivity.modes.remove.quantity;switch(t){case a.push:if(o>0){const t=X([void 0,...i.interactivity.modes.push.groups]),s=void 0!==t?e.actualOptions.particles.groups[t]:void 0;e.particles.push(o,e.interactivity.mouse,s,t)}break;case a.remove:e.particles.removeQuantity(s);break;case a.bubble:e.bubble.clicking=!0;break;case a.repulse:e.repulse.clicking=!0,e.repulse.count=0;for(const t of e.repulse.particles)t.velocity.setTo(t.initialVelocity);e.repulse.particles=[],e.repulse.finish=!1,setTimeout((()=>{e.destroyed||(e.repulse.clicking=!1)}),1e3*i.interactivity.modes.repulse.duration);break;case a.attract:e.attract.clicking=!0,e.attract.count=0;for(const t of e.attract.particles)t.velocity.setTo(t.initialVelocity);e.attract.particles=[],e.attract.finish=!1,setTimeout((()=>{e.destroyed||(e.attract.clicking=!1)}),1e3*i.interactivity.modes.attract.duration);break;case a.pause:e.getAnimationStatus()?e.pause():e.play()}for(const[,i]of e.plugins)i.handleClickMode&&i.handleClickMode(t)}}const ie=[],oe=new Map,se=new Map,ne=new Map,ae=new Map,re=new Map,le=new Map,ce=new Map;class de{static getPlugin(t){return ie.find((e=>e.id===t))}static addPlugin(t){de.getPlugin(t.id)||ie.push(t)}static getAvailablePlugins(t){const e=new Map;for(const i of ie)i.needsPlugin(t.actualOptions)&&e.set(i.id,i.getPlugin(t));return e}static loadOptions(t,e){for(const i of ie)i.loadOptions(t,e)}static getPreset(t){return re.get(t)}static addPreset(t,e,i=!1){!i&&de.getPreset(t)||re.set(t,e)}static addShapeDrawer(t,e){de.getShapeDrawer(t)||le.set(t,e)}static getShapeDrawer(t){return le.get(t)}static getSupportedShapes(){return le.keys()}static getPathGenerator(t){return ce.get(t)}static addPathGenerator(t,e){de.getPathGenerator(t)||ce.set(t,e)}static getInteractors(t){let e=ne.get(t);return e||(e=[...oe.values()].map((e=>e(t))),ne.set(t,e)),e}static addInteractor(t,e){oe.set(t,e)}static getUpdaters(t){let e=ae.get(t);return e||(e=[...se.values()].map((e=>e(t))),ae.set(t,e)),e}static addParticleUpdater(t,e){se.set(t,e)}}class he{constructor(t,e){this.position=t,this.particle=e}}class ue{constructor(t,e){this.rectangle=t,this.capacity=e,this.points=[],this.divided=!1}subdivide(){const t=this.rectangle.position.x,e=this.rectangle.position.y,i=this.rectangle.size.width,o=this.rectangle.size.height,s=this.capacity;this.northEast=new ue(new Zt(t,e,i/2,o/2),s),this.northWest=new ue(new Zt(t+i/2,e,i/2,o/2),s),this.southEast=new ue(new Zt(t,e+o/2,i/2,o/2),s),this.southWest=new ue(new Zt(t+i/2,e+o/2,i/2,o/2),s),this.divided=!0}insert(t){var e,i,o,s,n;return!!this.rectangle.contains(t.position)&&(this.points.length<this.capacity?(this.points.push(t),!0):(this.divided||this.subdivide(),null!==(n=(null===(e=this.northEast)||void 0===e?void 0:e.insert(t))||(null===(i=this.northWest)||void 0===i?void 0:i.insert(t))||(null===(o=this.southEast)||void 0===o?void 0:o.insert(t))||(null===(s=this.southWest)||void 0===s?void 0:s.insert(t)))&&void 0!==n&&n))}queryCircle(t,e){return this.query(new Qt(t.x,t.y,e))}queryCircleWarp(t,e,i){const o=i,s=i;return this.query(new Kt(t.x,t.y,e,void 0!==o.canvas?o.canvas.size:s))}queryRectangle(t,e){return this.query(new Zt(t.x,t.y,e.width,e.height))}query(t,e){var i,o,s,n;const a=null!=e?e:[];if(!t.intersects(this.rectangle))return[];for(const e of this.points)!t.contains(e.position)&&F(t.position,e.position)>e.particle.getRadius()||a.push(e.particle);return this.divided&&(null===(i=this.northEast)||void 0===i||i.query(t,a),null===(o=this.northWest)||void 0===o||o.query(t,a),null===(s=this.southEast)||void 0===s||s.query(t,a),null===(n=this.southWest)||void 0===n||n.query(t,a)),a}}class ve{constructor(t){this.container=t,this.size={height:0,width:0},this.context=null,this.generatedCanvas=!1}init(){this.resize(),this.initStyle(),this.initCover(),this.initTrail(),this.initBackground(),this.paint()}loadCanvas(t,e){var i;t.className||(t.className=rt.canvasClass),this.generatedCanvas&&(null===(i=this.element)||void 0===i||i.remove()),this.generatedCanvas=null!=e?e:this.generatedCanvas,this.element=t,this.originalStyle=K({},this.element.style),this.size.height=t.offsetHeight,this.size.width=t.offsetWidth,this.context=this.element.getContext("2d"),this.container.retina.init(),this.initBackground()}destroy(){var t;this.generatedCanvas&&(null===(t=this.element)||void 0===t||t.remove()),this.draw((t=>{qt(t,this.size)}))}paint(){const t=this.container.actualOptions;this.draw((e=>{t.backgroundMask.enable&&t.backgroundMask.cover&&this.coverColor?(qt(e,this.size),this.paintBase(Pt(this.coverColor,this.coverColor.a))):this.paintBase()}))}clear(){const t=this.container.actualOptions,e=t.particles.move.trail;t.backgroundMask.enable?this.paint():e.enable&&e.length>0&&this.trailFillColor?this.paintBase(Pt(this.trailFillColor,1/e.length)):this.draw((t=>{qt(t,this.size)}))}windowResize(){var t;if(!this.element)return;const e=this.container;if(this.resize(),1!==(null===(t=this.resizeFactor)||void 0===t?void 0:t.width)||1!==this.resizeFactor.height){e.updateActualOptions(),e.particles.setDensity();for(const[,t]of e.plugins)void 0!==t.resize&&t.resize()}else delete this.resizeFactor}resize(){if(!this.element)return;const t=this.container,e=t.retina.pixelRatio,i=t.canvas.size,o=i.width,s=i.height;i.width=this.element.offsetWidth*e,i.height=this.element.offsetHeight*e,this.element.width=i.width,this.element.height=i.height,this.container.started&&(this.resizeFactor={width:i.width/o,height:i.height/s})}drawConnectLine(t,e){this.draw((i=>{var o;const s=this.lineStyle(t,e);if(!s)return;const n=t.getPosition(),a=e.getPosition();Bt(i,null!==(o=t.retina.linksWidth)&&void 0!==o?o:this.container.retina.linksWidth,s,n,a)}))}drawGrabLine(t,e,i,o){const s=this.container;this.draw((n=>{var a;const r=t.getPosition();Wt(n,null!==(a=t.retina.linksWidth)&&void 0!==a?a:s.retina.linksWidth,r,o,e,i)}))}drawParticle(t,e){var i,o,s,n,a,r;if(t.spawning||t.destroyed)return;const l=t.getFillColor(),c=null!==(i=t.getStrokeColor())&&void 0!==i?i:l;if(!l&&!c)return;let[d,h]=this.getPluginParticleColors(t);const u=t.options.twinkle.particles,v=u.enable&&Math.random()<u.frequency;if(!d||!h){const t=ht(u.color);d||(d=v&&void 0!==t?t:l||void 0),h||(h=v&&void 0!==t?t:c||void 0)}const p=this.container.actualOptions,f=t.options.zIndex,y=(1-t.zIndexFactor)**f.opacityRate,m=t.getRadius(),b=v?u.opacity:null!==(n=null!==(o=t.bubble.opacity)&&void 0!==o?o:null===(s=t.opacity)||void 0===s?void 0:s.value)&&void 0!==n?n:1,g=null!==(r=null===(a=t.stroke)||void 0===a?void 0:a.opacity)&&void 0!==r?r:b,w=b*y,x=d?Ot(d,w):void 0;(x||h)&&this.draw((i=>{const o=(1-t.zIndexFactor)**f.sizeRate,s=h?Ot(h,g*y):x;if(m<=0)return;const n=this.container;for(const e of n.particles.updaters)e.beforeDraw&&e.beforeDraw(t);$t(this.container,i,t,e,x,s,p.backgroundMask.enable,p.backgroundMask.composite,m*o,w,t.options.shadow,t.gradient);for(const e of n.particles.updaters)e.afterDraw&&e.afterDraw(t)}))}drawPlugin(t,e){this.draw((i=>{Ut(i,t,e)}))}drawParticlePlugin(t,e,i){this.draw((o=>{Nt(o,t,e,i)}))}initBackground(){const t=this.container.actualOptions.background,e=this.element,i=null==e?void 0:e.style;if(i){if(t.color){const e=dt(t.color);i.backgroundColor=e?Pt(e,t.opacity):""}else i.backgroundColor="";i.backgroundImage=t.image||"",i.backgroundPosition=t.position||"",i.backgroundRepeat=t.repeat||"",i.backgroundSize=t.size||""}}draw(t){if(this.context)return t(this.context)}initCover(){const t=this.container.actualOptions.backgroundMask.cover,e=dt(t.color);e&&(this.coverColor={r:e.r,g:e.g,b:e.b,a:t.opacity})}initTrail(){const t=this.container.actualOptions,e=dt(t.particles.move.trail.fillColor);if(e){const i=t.particles.move.trail;this.trailFillColor={r:e.r,g:e.g,b:e.b,a:1/i.length}}}getPluginParticleColors(t){let e,i;for(const[,o]of this.container.plugins)if(!e&&o.particleFillColor&&(e=ht(o.particleFillColor(t))),!i&&o.particleStrokeColor&&(i=ht(o.particleStrokeColor(t))),e&&i)break;return[e,i]}initStyle(){const t=this.element,e=this.container.actualOptions;if(!t)return;const i=this.originalStyle;e.fullScreen.enable?(this.originalStyle=K({},t.style),t.style.position="fixed",t.style.zIndex=e.fullScreen.zIndex.toString(10),t.style.top="0",t.style.left="0",t.style.width="100%",t.style.height="100%"):i&&(t.style.position=i.position,t.style.zIndex=i.zIndex,t.style.top=i.top,t.style.left=i.left,t.style.width=i.width,t.style.height=i.height)}paintBase(t){this.draw((e=>{Ft(e,this.size,t)}))}lineStyle(t,e){return this.draw((i=>{const o=this.container.actualOptions.interactivity.modes.connect;return _t(i,t,e,o.links.opacity)}))}}class pe{constructor(){this.value="#fff"}static create(t,e){const i=new pe;return i.load(t),void 0!==e&&("string"==typeof e||e instanceof Array?i.load({value:e}):i.load(e)),i}load(t){void 0!==(null==t?void 0:t.value)&&(this.value=t.value)}}class fe{constructor(){this.blur=5,this.color=new pe,this.enable=!1,this.color.value="#00ff00"}load(t){void 0!==t&&(void 0!==t.blur&&(this.blur=t.blur),this.color=pe.create(this.color,t.color),void 0!==t.enable&&(this.enable=t.enable))}}class ye{constructor(){this.enable=!1,this.frequency=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=pe.create(this.color,t.color)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.frequency&&(this.frequency=t.frequency),void 0!==t.opacity&&(this.opacity=t.opacity))}}class me{constructor(){this.blink=!1,this.color=new pe,this.consent=!1,this.distance=100,this.enable=!1,this.frequency=1,this.opacity=1,this.shadow=new fe,this.triangles=new ye,this.width=1,this.warp=!1}load(t){void 0!==t&&(void 0!==t.id&&(this.id=t.id),void 0!==t.blink&&(this.blink=t.blink),this.color=pe.create(this.color,t.color),void 0!==t.consent&&(this.consent=t.consent),void 0!==t.distance&&(this.distance=t.distance),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.frequency&&(this.frequency=t.frequency),void 0!==t.opacity&&(this.opacity=t.opacity),this.shadow.load(t.shadow),this.triangles.load(t.triangles),void 0!==t.width&&(this.width=t.width),void 0!==t.warp&&(this.warp=t.warp))}}class be{constructor(){this.distance=200,this.enable=!1,this.rotate={x:3e3,y:3e3}}get rotateX(){return this.rotate.x}set rotateX(t){this.rotate.x=t}get rotateY(){return this.rotate.y}set rotateY(t){this.rotate.y=t}load(t){var e,i,o,s;if(!t)return;void 0!==t.distance&&(this.distance=t.distance),void 0!==t.enable&&(this.enable=t.enable);const n=null!==(i=null===(e=t.rotate)||void 0===e?void 0:e.x)&&void 0!==i?i:t.rotateX;void 0!==n&&(this.rotate.x=n);const a=null!==(s=null===(o=t.rotate)||void 0===o?void 0:o.y)&&void 0!==s?s:t.rotateY;void 0!==a&&(this.rotate.y=a)}}class ge{constructor(){this.enable=!1,this.length=10,this.fillColor=new pe,this.fillColor.value="#000000"}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),this.fillColor=pe.create(this.fillColor,t.fillColor),void 0!==t.length&&(this.length=t.length))}}class we{constructor(){this.enable=!1,this.minimumValue=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.minimumValue&&(this.minimumValue=t.minimumValue))}}class xe{constructor(){this.random=new we,this.value=0}load(t){t&&("boolean"==typeof t.random?this.random.enable=t.random:this.random.load(t.random),void 0!==t.value&&(this.value=E(t.value,this.random.enable?this.random.minimumValue:void 0)))}}class ke extends xe{constructor(){super()}}class Me{constructor(){this.clamp=!0,this.delay=new ke,this.enable=!1,this.options={}}load(t){void 0!==t&&(void 0!==t.clamp&&(this.clamp=t.clamp),this.delay.load(t.delay),void 0!==t.enable&&(this.enable=t.enable),this.generator=t.generator,t.options&&(this.options=K(this.options,t.options)))}}class ze{constructor(){this.offset=0,this.value=90}load(t){void 0!==t&&(void 0!==t.offset&&(this.offset=t.offset),void 0!==t.value&&(this.value=t.value))}}class Ce{constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=t.acceleration),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=t.maxSpeed))}}class Pe{constructor(){this.default=h.out}load(t){var e,i,o,s;t&&(void 0!==t.default&&(this.default=t.default),this.bottom=null!==(e=t.bottom)&&void 0!==e?e:t.default,this.left=null!==(i=t.left)&&void 0!==i?i:t.default,this.right=null!==(o=t.right)&&void 0!==o?o:t.default,this.top=null!==(s=t.top)&&void 0!==s?s:t.default)}}class Oe{constructor(){this.acceleration=0,this.enable=!1}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=E(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),this.position=t.position?K({},t.position):void 0)}}class Se{constructor(){this.angle=new ze,this.attract=new be,this.decay=0,this.distance={},this.direction=i.none,this.drift=0,this.enable=!1,this.gravity=new Ce,this.path=new Me,this.outModes=new Pe,this.random=!1,this.size=!1,this.speed=2,this.spin=new Oe,this.straight=!1,this.trail=new ge,this.vibrate=!1,this.warp=!1}get collisions(){return!1}set collisions(t){}get bounce(){return this.collisions}set bounce(t){this.collisions=t}get out_mode(){return this.outMode}set out_mode(t){this.outMode=t}get outMode(){return this.outModes.default}set outMode(t){this.outModes.default=t}get noise(){return this.path}set noise(t){this.path=t}load(t){var e,i,o;if(void 0===t)return;void 0!==t.angle&&("number"==typeof t.angle?this.angle.value=t.angle:this.angle.load(t.angle)),this.attract.load(t.attract),void 0!==t.decay&&(this.decay=t.decay),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance="number"==typeof t.distance?{horizontal:t.distance,vertical:t.distance}:K({},t.distance)),void 0!==t.drift&&(this.drift=E(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const s=null!==(e=t.outMode)&&void 0!==e?e:t.out_mode;void 0===t.outModes&&void 0===s||("string"==typeof t.outModes||void 0===t.outModes&&void 0!==s?this.outModes.load({default:null!==(i=t.outModes)&&void 0!==i?i:s}):this.outModes.load(t.outModes)),this.path.load(null!==(o=t.path)&&void 0!==o?o:t.noise),void 0!==t.random&&(this.random=t.random),void 0!==t.size&&(this.size=t.size),void 0!==t.speed&&(this.speed=E(t.speed)),this.spin.load(t.spin),void 0!==t.straight&&(this.straight=t.straight),this.trail.load(t.trail),void 0!==t.vibrate&&(this.vibrate=t.vibrate),void 0!==t.warp&&(this.warp=t.warp)}}class Re{constructor(){this.enable=!1,this.area=800,this.factor=1e3}get value_area(){return this.area}set value_area(t){this.area=t}load(t){var e;if(void 0===t)return;void 0!==t.enable&&(this.enable=t.enable);const i=null!==(e=t.area)&&void 0!==e?e:t.value_area;void 0!==i&&(this.area=i),void 0!==t.factor&&(this.factor=t.factor)}}class Te{constructor(){this.density=new Re,this.limit=0,this.value=100}get max(){return this.limit}set max(t){this.limit=t}load(t){var e;if(void 0===t)return;this.density.load(t.density);const i=null!==(e=t.limit)&&void 0!==e?e:t.max;void 0!==i&&(this.limit=i),void 0!==t.value&&(this.value=t.value)}}class Ie{constructor(){this.count=0,this.enable=!1,this.speed=1,this.sync=!1}load(t){t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class De extends Ie{constructor(){super(),this.destroy=m.none,this.enable=!1,this.speed=2,this.startValue=x.random,this.sync=!1}get opacity_min(){return this.minimumValue}set opacity_min(t){this.minimumValue=t}load(t){var e;void 0!==t&&(super.load(t),void 0!==t.destroy&&(this.destroy=t.destroy),void 0!==t.enable&&(this.enable=t.enable),this.minimumValue=null!==(e=t.minimumValue)&&void 0!==e?e:t.opacity_min,void 0!==t.speed&&(this.speed=t.speed),void 0!==t.startValue&&(this.startValue=t.startValue),void 0!==t.sync&&(this.sync=t.sync))}}class Ee extends xe{constructor(){super(),this.animation=new De,this.random.minimumValue=.1,this.value=1}get anim(){return this.animation}set anim(t){this.animation=t}load(t){var e;if(!t)return;super.load(t);const i=null!==(e=t.animation)&&void 0!==e?e:t.anim;void 0!==i&&(this.animation.load(i),this.value=E(this.value,this.animation.enable?this.animation.minimumValue:void 0))}}class Ae{constructor(){this.options={},this.type=w.circle}get image(){var t;return null!==(t=this.options[w.image])&&void 0!==t?t:this.options[w.images]}set image(t){this.options[w.image]=t,this.options[w.images]=t}get custom(){return this.options}set custom(t){this.options=t}get images(){return this.image}set images(t){this.image=t}get stroke(){return[]}set stroke(t){}get character(){var t;return null!==(t=this.options[w.character])&&void 0!==t?t:this.options[w.char]}set character(t){this.options[w.character]=t,this.options[w.char]=t}get polygon(){var t;return null!==(t=this.options[w.polygon])&&void 0!==t?t:this.options[w.star]}set polygon(t){this.options[w.polygon]=t,this.options[w.star]=t}load(t){var e,i,o;if(void 0===t)return;const s=null!==(e=t.options)&&void 0!==e?e:t.custom;if(void 0!==s)for(const t in s){const e=s[t];void 0!==e&&(this.options[t]=K(null!==(i=this.options[t])&&void 0!==i?i:{},e))}this.loadShape(t.character,w.character,w.char,!0),this.loadShape(t.polygon,w.polygon,w.star,!1),this.loadShape(null!==(o=t.image)&&void 0!==o?o:t.images,w.image,w.images,!0),void 0!==t.type&&(this.type=t.type)}loadShape(t,e,i,o){var s,n,a,r;void 0!==t&&(t instanceof Array?(this.options[e]instanceof Array||(this.options[e]=[],this.options[i]&&!o||(this.options[i]=[])),this.options[e]=K(null!==(s=this.options[e])&&void 0!==s?s:[],t),this.options[i]&&!o||(this.options[i]=K(null!==(n=this.options[i])&&void 0!==n?n:[],t))):(this.options[e]instanceof Array&&(this.options[e]={},this.options[i]&&!o||(this.options[i]={})),this.options[e]=K(null!==(a=this.options[e])&&void 0!==a?a:{},t),this.options[i]&&!o||(this.options[i]=K(null!==(r=this.options[i])&&void 0!==r?r:{},t))))}}class Le extends Ie{constructor(){super(),this.destroy=m.none,this.enable=!1,this.speed=5,this.startValue=x.random,this.sync=!1}get size_min(){return this.minimumValue}set size_min(t){this.minimumValue=t}load(t){var e;void 0!==t&&(super.load(t),void 0!==t.destroy&&(this.destroy=t.destroy),void 0!==t.enable&&(this.enable=t.enable),this.minimumValue=null!==(e=t.minimumValue)&&void 0!==e?e:t.size_min,void 0!==t.speed&&(this.speed=t.speed),void 0!==t.startValue&&(this.startValue=t.startValue),void 0!==t.sync&&(this.sync=t.sync))}}class Fe extends xe{constructor(){super(),this.animation=new Le,this.random.minimumValue=1,this.value=3}get anim(){return this.animation}set anim(t){this.animation=t}load(t){var e;if(!t)return;super.load(t);const i=null!==(e=t.animation)&&void 0!==e?e:t.anim;void 0!==i&&(this.animation.load(i),this.value=E(this.value,this.animation.enable?this.animation.minimumValue:void 0))}}class qe{constructor(){this.enable=!1,this.speed=0,this.sync=!1}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class He extends xe{constructor(){super(),this.animation=new qe,this.direction=o.clockwise,this.path=!1,this.value=0}load(t){t&&(super.load(t),void 0!==t.direction&&(this.direction=t.direction),this.animation.load(t.animation),void 0!==t.path&&(this.path=t.path))}}class Ve{constructor(){this.blur=0,this.color=new pe,this.enable=!1,this.offset={x:0,y:0},this.color.value="#000000"}load(t){void 0!==t&&(void 0!==t.blur&&(this.blur=t.blur),this.color=pe.create(this.color,t.color),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(void 0!==t.offset.x&&(this.offset.x=t.offset.x),void 0!==t.offset.y&&(this.offset.y=t.offset.y)))}}class Be{constructor(){this.count=0,this.enable=!1,this.offset=0,this.speed=1,this.sync=!0}load(t){void 0!==t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(this.offset=E(t.offset)),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class _e{constructor(){this.h=new Be,this.s=new Be,this.l=new Be}load(t){t&&(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}class We extends pe{constructor(){super(),this.animation=new _e}static create(t,e){const i=new We;return i.load(t),void 0!==e&&("string"==typeof e||e instanceof Array?i.load({value:e}):i.load(e)),i}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&(void 0!==e.enable?this.animation.h.load(e):this.animation.load(t.animation))}}class $e{constructor(){this.width=0}load(t){void 0!==t&&(void 0!==t.color&&(this.color=We.create(this.color,t.color)),void 0!==t.width&&(this.width=t.width),void 0!==t.opacity&&(this.opacity=t.opacity))}}class je extends xe{constructor(){super(),this.random.minimumValue=.1,this.value=1}}class Ge{constructor(){this.horizontal=new je,this.vertical=new je}load(t){t&&(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}class Ue{constructor(){this.enable=!0,this.retries=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.retries&&(this.retries=t.retries))}}class Ne{constructor(){this.bounce=new Ge,this.enable=!1,this.mode=d.bounce,this.overlap=new Ue}load(t){void 0!==t&&(this.bounce.load(t.bounce),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.overlap.load(t.overlap))}}class Je{constructor(){this.enable=!1,this.frequency=.05,this.opacity=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=pe.create(this.color,t.color)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.frequency&&(this.frequency=t.frequency),void 0!==t.opacity&&(this.opacity=t.opacity))}}class Xe{constructor(){this.lines=new Je,this.particles=new Je}load(t){void 0!==t&&(this.lines.load(t.lines),this.particles.load(t.particles))}}class Ye extends xe{constructor(){super(),this.sync=!1}load(t){t&&(super.load(t),void 0!==t.sync&&(this.sync=t.sync))}}class Qe extends xe{constructor(){super(),this.random.minimumValue=1e-4,this.sync=!1}load(t){void 0!==t&&(super.load(t),void 0!==t.sync&&(this.sync=t.sync))}}class Ze{constructor(){this.count=0,this.delay=new Ye,this.duration=new Qe}load(t){void 0!==t&&(void 0!==t.count&&(this.count=t.count),this.delay.load(t.delay),this.duration.load(t.duration))}}class Ke extends xe{constructor(){super(),this.value=3}}class ti extends xe{constructor(){super(),this.value={min:4,max:9}}}class ei{constructor(){this.count=1,this.factor=new Ke,this.rate=new ti,this.sizeOffset=!0}load(t){t&&(void 0!==t.count&&(this.count=t.count),this.factor.load(t.factor),this.rate.load(t.rate),void 0!==t.particles&&(this.particles=K({},t.particles)),void 0!==t.sizeOffset&&(this.sizeOffset=t.sizeOffset))}}class ii{constructor(){this.mode=r.none,this.split=new ei}load(t){t&&(void 0!==t.mode&&(this.mode=t.mode),this.split.load(t.split))}}class oi{constructor(){this.distance=5,this.enable=!1,this.speed=50}load(t){t&&(void 0!==t.distance&&(this.distance=E(t.distance)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=E(t.speed)))}}class si{constructor(){this.enable=!1,this.speed=0,this.sync=!1}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class ni extends xe{constructor(){super(),this.animation=new si,this.direction=n.clockwise,this.enable=!1,this.value=0}load(t){t&&(super.load(t),this.animation.load(t.animation),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.enable&&(this.enable=t.enable))}}class ai{constructor(){this.enable=!1,this.value=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.value&&(this.value=t.value))}}class ri{constructor(){this.darken=new ai,this.enable=!1,this.enlighten=new ai,this.mode=u.vertical,this.speed=25}load(t){t&&(void 0!==t.backColor&&(this.backColor=pe.create(this.backColor,t.backColor)),this.darken.load(t.darken),void 0!==t.enable&&(this.enable=t.enable),this.enlighten.load(t.enlighten),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.speed&&(this.speed=E(t.speed)))}}class li extends xe{constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),t&&(void 0!==t.opacityRate&&(this.opacityRate=t.opacityRate),void 0!==t.sizeRate&&(this.sizeRate=t.sizeRate),void 0!==t.velocityRate&&(this.velocityRate=t.velocityRate))}}class ci extends xe{constructor(){super(),this.value=45,this.random.enable=!1,this.random.minimumValue=0}load(t){void 0!==t&&super.load(t)}}class di{constructor(){this.animation=new Ie,this.enable=!1,this.opacity=1,this.rotation=new ci,this.width=1}load(t){void 0!==t&&(this.animation.load(t.animation),this.rotation.load(t.rotation),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.opacity&&(this.opacity=t.opacity),void 0!==t.width&&(this.width=t.width),void 0!==t.radius&&(this.radius=t.radius),void 0!==t.color&&(this.color=pe.create(this.color,t.color)))}}class hi extends xe{constructor(){super(),this.enabled=!1,this.distance=1,this.duration=1,this.factor=1,this.speed=1}load(t){super.load(t),t&&(void 0!==t.enabled&&(this.enabled=t.enabled),void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.factor&&(this.factor=t.factor),void 0!==t.speed&&(this.speed=t.speed))}}class ui{constructor(){this.angle=new vi,this.colors=[],this.type=b.random}load(t){t&&(this.angle.load(t.angle),void 0!==t.colors&&(this.colors=t.colors.map((t=>{const e=new fi;return e.load(t),e}))),void 0!==t.type&&(this.type=t.type))}}class vi{constructor(){this.value=0,this.animation=new yi,this.direction=o.clockwise}load(t){t&&(this.animation.load(t.animation),void 0!==t.value&&(this.value=t.value),void 0!==t.direction&&(this.direction=t.direction))}}class pi{constructor(){this.value=0,this.animation=new mi}load(t){t&&(this.animation.load(t.animation),void 0!==t.value&&(this.value=E(t.value)))}}class fi{constructor(){this.stop=0,this.value=new We}load(t){t&&(void 0!==t.stop&&(this.stop=t.stop),this.value=We.create(this.value,t.value),void 0!==t.opacity&&(this.opacity=new pi,"number"==typeof t.opacity?this.opacity.value=t.opacity:this.opacity.load(t.opacity)))}}class yi{constructor(){this.count=0,this.enable=!1,this.speed=0,this.sync=!1}load(t){t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync))}}class mi{constructor(){this.count=0,this.enable=!1,this.speed=0,this.sync=!1,this.startValue=x.random}load(t){t&&(void 0!==t.count&&(this.count=t.count),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.sync&&(this.sync=t.sync),void 0!==t.startValue&&(this.startValue=t.startValue))}}class bi{constructor(){this.bounce=new Ge,this.collisions=new Ne,this.color=new We,this.destroy=new ii,this.gradient=[],this.groups={},this.life=new Ze,this.links=new me,this.move=new Se,this.number=new Te,this.opacity=new Ee,this.orbit=new di,this.reduceDuplicates=!1,this.repulse=new hi,this.roll=new ri,this.rotate=new He,this.shadow=new Ve,this.shape=new Ae,this.size=new Fe,this.stroke=new $e,this.tilt=new ni,this.twinkle=new Xe,this.wobble=new oi,this.zIndex=new li}get line_linked(){return this.links}set line_linked(t){this.links=t}get lineLinked(){return this.links}set lineLinked(t){this.links=t}load(t){var e,i,o,s,n,a,r,l;if(void 0===t)return;this.bounce.load(t.bounce),this.color.load(We.create(this.color,t.color)),this.destroy.load(t.destroy),this.life.load(t.life);const c=null!==(i=null!==(e=t.links)&&void 0!==e?e:t.lineLinked)&&void 0!==i?i:t.line_linked;if(void 0!==c&&this.links.load(c),void 0!==t.groups)for(const e in t.groups){const i=t.groups[e];void 0!==i&&(this.groups[e]=K(null!==(o=this.groups[e])&&void 0!==o?o:{},i))}this.move.load(t.move),this.number.load(t.number),this.opacity.load(t.opacity),this.orbit.load(t.orbit),void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.repulse.load(t.repulse),this.roll.load(t.roll),this.rotate.load(t.rotate),this.shape.load(t.shape),this.size.load(t.size),this.shadow.load(t.shadow),this.tilt.load(t.tilt),this.twinkle.load(t.twinkle),this.wobble.load(t.wobble),this.zIndex.load(t.zIndex);const d=null!==(n=null===(s=t.move)||void 0===s?void 0:s.collisions)&&void 0!==n?n:null===(a=t.move)||void 0===a?void 0:a.bounce;void 0!==d&&(this.collisions.enable=d),this.collisions.load(t.collisions);const h=null!==(r=t.stroke)&&void 0!==r?r:null===(l=t.shape)||void 0===l?void 0:l.stroke;h&&(h instanceof Array?this.stroke=h.map((t=>{const e=new $e;return e.load(t),e})):(this.stroke instanceof Array&&(this.stroke=new $e),this.stroke.load(h)));const u=t.gradient;u&&(u instanceof Array?this.gradient=u.map((t=>{const e=new ui;return e.load(t),e})):(this.gradient instanceof Array&&(this.gradient=new ui),this.gradient.load(u)))}}class gi extends P{constructor(t,e,i){super(t,e),this.z=void 0===i?t.z:i}static clone(t){return gi.create(t.x,t.y,t.z)}static create(t,e,i){return new gi(t,e,i)}add(t){return t instanceof gi?gi.create(this.x+t.x,this.y+t.y,this.z+t.z):super.add(t)}addTo(t){super.addTo(t),t instanceof gi&&(this.z+=t.z)}sub(t){return t instanceof gi?gi.create(this.x-t.x,this.y-t.y,this.z-t.z):super.sub(t)}subFrom(t){super.subFrom(t),t instanceof gi&&(this.z-=t.z)}mult(t){return gi.create(this.x*t,this.y*t,this.z*t)}multTo(t){super.multTo(t),this.z*=t}div(t){return gi.create(this.x/t,this.y/t,this.z/t)}divTo(t){super.divTo(t),this.z/=t}copy(){return gi.clone(this)}setTo(t){super.setTo(t),t instanceof gi&&(this.z=t.z)}}const wi=t=>{(U(t.outMode,t.checkModes)||U(t.outMode,t.checkModes))&&(t.coord>t.maxCoord-2*t.radius?t.setCb(-t.radius):t.coord<2*t.radius&&t.setCb(t.radius))};class xi{constructor(t,e,i,s,n){var a,r,l,c,d,h,u,v,p;this.id=t,this.container=e,this.group=n,this.fill=!0,this.close=!0,this.lastPathTime=0,this.destroyed=!1,this.unbreakable=!1,this.splitCount=0,this.misplaced=!1,this.retina={maxDistance:{}};const y=e.retina.pixelRatio,m=e.actualOptions,b=new bi;b.load(m.particles);const g=b.shape.type,w=b.reduceDuplicates;if(this.shape=g instanceof Array?X(g,this.id,w):g,null==s?void 0:s.shape){if(s.shape.type){const t=s.shape.type;this.shape=t instanceof Array?X(t,this.id,w):t}const t=new Ae;t.load(s.shape),this.shape&&(this.shapeData=this.loadShapeData(t,w))}else this.shapeData=this.loadShapeData(b.shape,w);void 0!==s&&b.load(s),void 0!==(null===(a=this.shapeData)||void 0===a?void 0:a.particles)&&b.load(null===(r=this.shapeData)||void 0===r?void 0:r.particles),this.fill=null!==(c=null===(l=this.shapeData)||void 0===l?void 0:l.fill)&&void 0!==c?c:this.fill,this.close=null!==(h=null===(d=this.shapeData)||void 0===d?void 0:d.close)&&void 0!==h?h:this.close,this.options=b,this.pathDelay=1e3*A(this.options.move.path.delay);const k=T(this.options.zIndex.value);e.retina.initParticle(this);const M=this.options.size,z=M.value;this.size={enable:M.animation.enable,value:A(M)*e.retina.pixelRatio,max:D(z)*y,min:I(z)*y,loops:0,maxLoops:M.animation.count};const C=M.animation;if(C.enable){switch(this.size.status=f.increasing,C.startValue){case x.min:this.size.value=this.size.min,this.size.status=f.increasing;break;case x.random:this.size.value=R(this.size)*y,this.size.status=Math.random()>=.5?f.increasing:f.decreasing;break;case x.max:default:this.size.value=this.size.max,this.size.status=f.decreasing}this.size.velocity=(null!==(u=this.retina.sizeAnimationSpeed)&&void 0!==u?u:e.retina.sizeAnimationSpeed)/100*e.retina.reduceFactor,C.sync||(this.size.velocity*=Math.random())}this.direction=q(this.options.move.direction),this.bubble={inRange:!1},this.initialVelocity=this.calculateVelocity(),this.velocity=this.initialVelocity.copy(),this.moveDecay=1-T(this.options.move.decay),this.position=this.calcPosition(e,i,O(k,0,e.zLayers)),this.initialPosition=this.position.copy(),this.offset=P.origin;const S=e.particles;S.needsSort=S.needsSort||S.lastZIndex<this.position.z,S.lastZIndex=this.position.z,this.zIndexFactor=this.position.z/e.zLayers,this.sides=24;let E=e.drawers.get(this.shape);E||(E=de.getShapeDrawer(this.shape),E&&e.drawers.set(this.shape,E)),(null==E?void 0:E.loadShape)&&(null==E||E.loadShape(this));const L=null==E?void 0:E.getSidesCount;if(L&&(this.sides=L(this)),this.life=this.loadLife(),this.spawning=this.life.delay>0,this.options.move.spin.enable){const t=null!==(v=this.options.move.spin.position)&&void 0!==v?v:{x:50,y:50},i={x:t.x/100*e.canvas.size.width,y:t.y/100*e.canvas.size.height},s=F(this.getPosition(),i);this.spin={center:i,direction:this.velocity.x>=0?o.clockwise:o.counterClockwise,angle:this.velocity.angle,radius:s,acceleration:null!==(p=this.retina.spinAcceleration)&&void 0!==p?p:T(this.options.move.spin.acceleration)}}this.shadowColor=dt(this.options.shadow.color);for(const t of e.particles.updaters)t.init&&t.init(this);E&&E.particleInit&&E.particleInit(e,this);for(const[,t]of e.plugins)t.particleCreated&&t.particleCreated(this)}isVisible(){return!this.destroyed&&!this.spawning&&this.isInsideCanvas()}isInsideCanvas(){const t=this.getRadius(),e=this.container.canvas.size;return this.position.x>=-t&&this.position.y>=-t&&this.position.y<=e.height+t&&this.position.x<=e.width+t}draw(t){const e=this.container;for(const[,i]of e.plugins)e.canvas.drawParticlePlugin(i,this,t);e.canvas.drawParticle(this,t)}getPosition(){return{x:this.position.x+this.offset.x,y:this.position.y+this.offset.y,z:this.position.z}}getRadius(){var t;return null!==(t=this.bubble.radius)&&void 0!==t?t:this.size.value}getMass(){return this.getRadius()**2*Math.PI/2}getFillColor(){var t,e,i;const o=null!==(t=this.bubble.color)&&void 0!==t?t:Dt(this.color);if(o&&this.roll&&(this.backColor||this.roll.alter)){if(Math.floor((null!==(i=null===(e=this.roll)||void 0===e?void 0:e.angle)&&void 0!==i?i:0)/(Math.PI/2))%2){if(this.backColor)return this.backColor;if(this.roll.alter)return Xt(o,this.roll.alter.type,this.roll.alter.value)}}return o}getStrokeColor(){var t,e;return null!==(e=null!==(t=this.bubble.color)&&void 0!==t?t:Dt(this.strokeColor))&&void 0!==e?e:this.getFillColor()}destroy(t){if(this.destroyed=!0,this.bubble.inRange=!1,this.unbreakable)return;this.destroyed=!0,this.bubble.inRange=!1;for(const[,e]of this.container.plugins)e.particleDestroyed&&e.particleDestroyed(this,t);if(t)return;this.options.destroy.mode===r.split&&this.split()}reset(){this.opacity&&(this.opacity.loops=0),this.size.loops=0}split(){const t=this.options.destroy.split;if(t.count>=0&&this.splitCount++>t.count)return;const e=T(t.rate.value);for(let t=0;t<e;t++)this.container.particles.addSplitParticle(this)}calcPosition(t,e,i,o=0){var s,n,a,r,l,c;for(const[,o]of t.plugins){const t=void 0!==o.particlePosition?o.particlePosition(e,this):void 0;if(void 0!==t)return gi.create(t.x,t.y,i)}const d=t.canvas.size,u=gi.create(null!==(s=null==e?void 0:e.x)&&void 0!==s?s:Math.random()*d.width,null!==(n=null==e?void 0:e.y)&&void 0!==n?n:Math.random()*d.height,i),v=this.getRadius(),p=this.options.move.outModes,f=e=>{wi({outMode:e,checkModes:[h.bounce,h.bounceHorizontal],coord:u.x,maxCoord:t.canvas.size.width,setCb:t=>u.x+=t,radius:v})},y=e=>{wi({outMode:e,checkModes:[h.bounce,h.bounceVertical],coord:u.y,maxCoord:t.canvas.size.height,setCb:t=>u.y+=t,radius:v})};return f(null!==(a=p.left)&&void 0!==a?a:p.default),f(null!==(r=p.right)&&void 0!==r?r:p.default),y(null!==(l=p.top)&&void 0!==l?l:p.default),y(null!==(c=p.bottom)&&void 0!==c?c:p.default),this.checkOverlap(u,o)?this.calcPosition(t,void 0,i,o+1):u}checkOverlap(t,e=0){const i=this.options.collisions,o=this.getRadius();if(!i.enable)return!1;const s=i.overlap;if(s.enable)return!1;const n=s.retries;if(n>=0&&e>n)throw new Error("Particle is overlapping and can't be placed");let a=!1;for(const e of this.container.particles.array)if(F(t,e.position)<o+e.getRadius()){a=!0;break}return a}calculateVelocity(){const t=H(this.direction).copy(),e=this.options.move,i=Math.PI/180*e.angle.value,o=Math.PI/180*e.angle.offset,s={left:o-i/2,right:o+i/2};return e.straight||(t.angle+=R(E(s.left,s.right))),e.random&&"number"==typeof e.speed&&(t.length*=Math.random()),t}loadShapeData(t,e){const i=t.options[this.shape];if(i)return K({},i instanceof Array?X(i,this.id,e):i)}loadLife(){const t=this.container,e=this.options,i=e.life,o={delay:t.retina.reduceFactor?T(i.delay.value)*(i.delay.sync?1:Math.random())/t.retina.reduceFactor*1e3:0,delayTime:0,duration:t.retina.reduceFactor?T(i.duration.value)*(i.duration.sync?1:Math.random())/t.retina.reduceFactor*1e3:0,time:0,count:e.life.count};return o.duration<=0&&(o.duration=-1),o.count<=0&&(o.count=-1),o}}class ki{constructor(t){this.container=t;const e=de.getInteractors(t);this.externalInteractors=[],this.particleInteractors=[];for(const t of e)switch(t.type){case g.External:this.externalInteractors.push(t);break;case g.Particles:this.particleInteractors.push(t)}}externalInteract(t){for(const e of this.externalInteractors)e.isEnabled()&&e.interact(t)}particlesInteract(t,e){for(const e of this.externalInteractors)e.reset(t);for(const i of this.particleInteractors)i.isEnabled(t)&&i.interact(t,e)}}class Mi{constructor(t){this.container=t}move(t,e){t.destroyed||(this.moveParticle(t,e),this.moveParallax(t))}moveParticle(t,e){var i,o,s,n,a;const r=t.options,l=r.move;if(!l.enable)return;const c=this.container,d=this.getProximitySpeedFactor(t),h=(null!==(i=(n=t.retina).moveSpeed)&&void 0!==i?i:n.moveSpeed=T(l.speed)*c.retina.pixelRatio)*c.retina.reduceFactor,u=null!==(o=(a=t.retina).moveDrift)&&void 0!==o?o:a.moveDrift=T(t.options.move.drift)*c.retina.pixelRatio,v=D(r.size.value)*c.retina.pixelRatio,p=h*((l.size?t.getRadius()/v:1)*d*(e.factor||1)/2);this.applyPath(t,e);const f=l.gravity,y=f.enable&&f.inverse?-1:1;f.enable&&p&&(t.velocity.y+=y*(f.acceleration*e.factor)/(60*p)),u&&p&&(t.velocity.x+=u*e.factor/(60*p));const m=t.moveDecay;1!=m&&t.velocity.multTo(m);const b=t.velocity.mult(p),g=null!==(s=t.retina.maxSpeed)&&void 0!==s?s:c.retina.maxSpeed;f.enable&&f.maxSpeed>0&&(!f.inverse&&b.y>=0&&b.y>=g||f.inverse&&b.y<=0&&b.y<=-g)&&(b.y=y*g,p&&(t.velocity.y=b.y/p));const w=t.options.zIndex,x=(1-t.zIndexFactor)**w.velocityRate;l.spin.enable?this.spin(t,p):(1!=x&&b.multTo(x),t.position.addTo(b),l.vibrate&&(t.position.x+=Math.sin(t.position.x*Math.cos(t.position.y)),t.position.y+=Math.cos(t.position.y*Math.sin(t.position.x)))),function(t){const e=t.initialPosition,{dx:i,dy:o}=L(e,t.position),s=Math.abs(i),n=Math.abs(o),a=t.retina.maxDistance.horizontal,r=t.retina.maxDistance.vertical;if(a||r)if((a&&s>=a||r&&n>=r)&&!t.misplaced)t.misplaced=!!a&&s>a||!!r&&n>r,a&&(t.velocity.x=t.velocity.y/2-t.velocity.x),r&&(t.velocity.y=t.velocity.x/2-t.velocity.y);else if((!a||s<a)&&(!r||n<r)&&t.misplaced)t.misplaced=!1;else if(t.misplaced){const i=t.position,o=t.velocity;a&&(i.x<e.x&&o.x<0||i.x>e.x&&o.x>0)&&(o.x*=-Math.random()),r&&(i.y<e.y&&o.y<0||i.y>e.y&&o.y>0)&&(o.y*=-Math.random())}}(t)}spin(t,e){const i=this.container;if(!t.spin)return;const s={x:t.spin.direction===o.clockwise?Math.cos:Math.sin,y:t.spin.direction===o.clockwise?Math.sin:Math.cos};t.position.x=t.spin.center.x+t.spin.radius*s.x(t.spin.angle),t.position.y=t.spin.center.y+t.spin.radius*s.y(t.spin.angle),t.spin.radius+=t.spin.acceleration;const n=Math.max(i.canvas.size.width,i.canvas.size.height);t.spin.radius>n/2?(t.spin.radius=n/2,t.spin.acceleration*=-1):t.spin.radius<0&&(t.spin.radius=0,t.spin.acceleration*=-1),t.spin.angle+=e/100*(1-t.spin.radius/n)}applyPath(t,e){const i=t.options.move.path;if(!i.enable)return;const o=this.container;if(t.lastPathTime<=t.pathDelay)return void(t.lastPathTime+=e.value);const s=o.pathGenerator.generate(t);t.velocity.addTo(s),i.clamp&&(t.velocity.x=O(t.velocity.x,-1,1),t.velocity.y=O(t.velocity.y,-1,1)),t.lastPathTime-=t.pathDelay}moveParallax(t){const e=this.container,i=e.actualOptions;if($()||!i.interactivity.events.onHover.parallax.enable)return;const o=i.interactivity.events.onHover.parallax.force,s=e.interactivity.mouse.position;if(!s)return;const n=e.canvas.size.width/2,a=e.canvas.size.height/2,r=i.interactivity.events.onHover.parallax.smooth,l=t.getRadius()/o,c=(s.x-n)*l,d=(s.y-a)*l;t.offset.x+=(c-t.offset.x)/r,t.offset.y+=(d-t.offset.y)/r}getProximitySpeedFactor(t){const e=this.container,i=e.actualOptions;if(!U(c.slow,i.interactivity.events.onHover.mode))return 1;const o=this.container.interactivity.mouse.position;if(!o)return 1;const s=F(o,t.getPosition()),n=e.retina.slowModeRadius;if(s>n)return 1;return(s/n||0)/i.interactivity.modes.slow.factor}}class zi{constructor(t){this.container=t,this.nextId=0,this.array=[],this.zArray=[],this.mover=new Mi(t),this.limit=0,this.needsSort=!1,this.lastZIndex=0,this.freqs={links:new Map,triangles:new Map},this.interactionManager=new ki(t);const e=this.container.canvas.size;this.linksColors=new Map,this.quadTree=new ue(new Zt(-e.width/4,-e.height/4,3*e.width/2,3*e.height/2),4),this.updaters=de.getUpdaters(t)}get count(){return this.array.length}init(){var t;const e=this.container,i=e.actualOptions;this.lastZIndex=0,this.needsSort=!1,this.freqs.links=new Map,this.freqs.triangles=new Map;let o=!1;for(const[,t]of e.plugins)if(void 0!==t.particlesInitialization&&(o=t.particlesInitialization()),o)break;if(this.addManualParticles(),!o){for(const e in i.particles.groups){const o=i.particles.groups[e];for(let s=this.count,n=0;n<(null===(t=o.number)||void 0===t?void 0:t.value)&&s<i.particles.number.value;s++,n++)this.addParticle(void 0,o,e)}for(let t=this.count;t<i.particles.number.value;t++)this.addParticle()}e.pathGenerator.init(e)}redraw(){this.clear(),this.init(),this.draw({value:0,factor:0})}removeAt(t,e=1,i,o){if(!(t>=0&&t<=this.count))return;let s=0;for(let n=t;s<e&&n<this.count;n++){const t=this.array[n];if(!t||t.group!==i)continue;t.destroy(o),this.array.splice(n--,1);const e=this.zArray.indexOf(t);this.zArray.splice(e,1),s++}}remove(t,e,i){this.removeAt(this.array.indexOf(t),void 0,e,i)}update(t){const e=this.container,i=[];e.pathGenerator.update();for(const[,i]of e.plugins)void 0!==i.update&&i.update(t);for(const o of this.array){const s=e.canvas.resizeFactor;s&&(o.position.x*=s.width,o.position.y*=s.height),o.bubble.inRange=!1;for(const[,e]of this.container.plugins){if(o.destroyed)break;e.particleUpdate&&e.particleUpdate(o,t)}this.mover.move(o,t),o.destroyed?i.push(o):this.quadTree.insert(new he(o.getPosition(),o))}for(const t of i)this.remove(t);this.interactionManager.externalInteract(t);for(const i of e.particles.array){for(const e of this.updaters)e.update(i,t);i.destroyed||i.spawning||this.interactionManager.particlesInteract(i,t)}delete e.canvas.resizeFactor}draw(t){const e=this.container;e.canvas.clear();const i=this.container.canvas.size;this.quadTree=new ue(new Zt(-i.width/4,-i.height/4,3*i.width/2,3*i.height/2),4),this.update(t),this.needsSort&&(this.zArray.sort(((t,e)=>e.position.z-t.position.z||t.id-e.id)),this.lastZIndex=this.zArray[this.zArray.length-1].position.z,this.needsSort=!1);for(const[,i]of e.plugins)e.canvas.drawPlugin(i,t);for(const e of this.zArray)e.draw(t)}clear(){this.array=[],this.zArray=[]}push(t,e,i,o){this.pushing=!0;for(let s=0;s<t;s++)this.addParticle(null==e?void 0:e.position,i,o);this.pushing=!1}addParticle(t,e,i){const o=this.container,s=o.actualOptions.particles.number.limit*o.density;if(s>0){const t=this.count+1-s;t>0&&this.removeQuantity(t)}return this.pushParticle(t,e,i)}addSplitParticle(t){const e=t.options.destroy.split,i=new bi;i.load(t.options);const o=T(e.factor.value);i.color.load({value:{hsl:t.getFillColor()}}),"number"==typeof i.size.value?i.size.value/=o:(i.size.value.min/=o,i.size.value.max/=o),i.load(e.particles);const s=e.sizeOffset?E(-t.size.value,t.size.value):0,n={x:t.position.x+R(s),y:t.position.y+R(s)};return this.pushParticle(n,i,t.group,(e=>!(e.size.value<.5)&&(e.velocity.length=R(E(t.velocity.length,e.velocity.length)),e.splitCount=t.splitCount+1,e.unbreakable=!0,setTimeout((()=>{e.unbreakable=!1}),500),!0)))}removeQuantity(t,e){this.removeAt(0,t,e)}getLinkFrequency(t,e){const i=`${Math.min(t.id,e.id)}_${Math.max(t.id,e.id)}`;let o=this.freqs.links.get(i);return void 0===o&&(o=Math.random(),this.freqs.links.set(i,o)),o}getTriangleFrequency(t,e,i){let[o,s,n]=[t.id,e.id,i.id];o>s&&([s,o]=[o,s]),s>n&&([n,s]=[s,n]),o>n&&([n,o]=[o,n]);const a=`${o}_${s}_${n}`;let r=this.freqs.triangles.get(a);return void 0===r&&(r=Math.random(),this.freqs.triangles.set(a,r)),r}addManualParticles(){const t=this.container,e=t.actualOptions;for(const i of e.manualParticles){const e=i.position?{x:i.position.x*t.canvas.size.width/100,y:i.position.y*t.canvas.size.height/100}:void 0;this.addParticle(e,i.options)}}setDensity(){const t=this.container.actualOptions;for(const e in t.particles.groups)this.applyDensity(t.particles.groups[e],0,e);this.applyDensity(t.particles,t.manualParticles.length)}applyDensity(t,e,i){var o;if(!(null===(o=t.number.density)||void 0===o?void 0:o.enable))return;const s=t.number,n=this.initDensityFactor(s.density),a=s.value,r=s.limit>0?s.limit:a,l=Math.min(a,r)*n+e,c=Math.min(this.count,this.array.filter((t=>t.group===i)).length);this.limit=s.limit*n,c<l?this.push(Math.abs(l-c),void 0,t,i):c>l&&this.removeQuantity(c-l,i)}initDensityFactor(t){const e=this.container;if(!e.canvas.element||!t.enable)return 1;const i=e.canvas.element,o=e.retina.pixelRatio;return i.width*i.height/(t.factor*o**2*t.area)}pushParticle(t,e,i,o){try{const s=new xi(this.nextId,this.container,t,e,i);let n=!0;if(o&&(n=o(s)),!n)return;return this.array.push(s),this.zArray.push(s),this.nextId++,s}catch(t){return void console.warn(`error adding particle: ${t}`)}}}class Ci{constructor(t){this.container=t}init(){const t=this.container,e=t.actualOptions;this.pixelRatio=!e.detectRetina||$()?1:window.devicePixelRatio;const i=this.container.actualOptions.motion;if(i&&(i.disable||i.reduce.value))if($()||"undefined"==typeof matchMedia||!matchMedia)this.reduceFactor=1;else{const e=matchMedia("(prefers-reduced-motion: reduce)");if(e){this.handleMotionChange(e);const i=()=>{this.handleMotionChange(e),t.refresh().catch((()=>{}))};void 0!==e.addEventListener?e.addEventListener("change",i):void 0!==e.addListener&&e.addListener(i)}}else this.reduceFactor=1;const o=this.pixelRatio;if(t.canvas.element){const e=t.canvas.element;t.canvas.size.width=e.offsetWidth*o,t.canvas.size.height=e.offsetHeight*o}const s=e.particles;this.attractDistance=s.move.attract.distance*o,this.linksDistance=s.links.distance*o,this.linksWidth=s.links.width*o,this.sizeAnimationSpeed=s.size.animation.speed*o,this.maxSpeed=s.move.gravity.maxSpeed*o,void 0!==s.orbit.radius&&(this.orbitRadius=s.orbit.radius*this.container.retina.pixelRatio);const n=e.interactivity.modes;this.connectModeDistance=n.connect.distance*o,this.connectModeRadius=n.connect.radius*o,this.grabModeDistance=n.grab.distance*o,this.repulseModeDistance=n.repulse.distance*o,this.bounceModeDistance=n.bounce.distance*o,this.attractModeDistance=n.attract.distance*o,this.slowModeRadius=n.slow.radius*o,this.bubbleModeDistance=n.bubble.distance*o,n.bubble.size&&(this.bubbleModeSize=n.bubble.size*o)}initParticle(t){const e=t.options,i=this.pixelRatio,o=e.move.distance,s=t.retina;s.attractDistance=e.move.attract.distance*i,s.linksDistance=e.links.distance*i,s.linksWidth=e.links.width*i,s.moveDrift=T(e.move.drift)*i,s.moveSpeed=T(e.move.speed)*i,s.sizeAnimationSpeed=e.size.animation.speed*i,t.spin&&(s.spinAcceleration=T(e.move.spin.acceleration)*i);const n=s.maxDistance;n.horizontal=void 0!==o.horizontal?o.horizontal*i:void 0,n.vertical=void 0!==o.vertical?o.vertical*i:void 0,s.maxSpeed=e.move.gravity.maxSpeed*i}handleMotionChange(t){const e=this.container.actualOptions;if(t.matches){const t=e.motion;this.reduceFactor=t.disable?0:t.reduce.value?1/t.reduce.factor:1}else this.reduceFactor=1}}class Pi{constructor(t){this.container=t}nextFrame(t){var e;try{const i=this.container;if(void 0!==i.lastFrameTime&&t<i.lastFrameTime+1e3/i.fpsLimit)return void i.draw(!1);null!==(e=i.lastFrameTime)&&void 0!==e||(i.lastFrameTime=t);const o=t-i.lastFrameTime,s={value:o,factor:60*o/1e3};if(i.lifeTime+=s.value,i.lastFrameTime=t,o>1e3)return void i.draw(!1);if(i.particles.draw(s),i.duration>0&&i.lifeTime>i.duration)return void i.destroy();i.getAnimationStatus()&&i.draw(!1)}catch(t){console.error("tsParticles error in animation loop",t)}}}class Oi{constructor(){this.enable=!1,this.mode=[]}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode))}}class Si{constructor(){this.selectors=[],this.enable=!1,this.mode=[],this.type=k.circle}get elementId(){return this.ids}set elementId(t){this.ids=t}get el(){return this.elementId}set el(t){this.elementId=t}get ids(){return this.selectors instanceof Array?this.selectors.map((t=>t.replace("#",""))):this.selectors.replace("#","")}set ids(t){this.selectors=t instanceof Array?t.map((t=>`#${t}`)):`#${t}`}load(t){var e,i;if(void 0===t)return;const o=null!==(i=null!==(e=t.ids)&&void 0!==e?e:t.elementId)&&void 0!==i?i:t.el;void 0!==o&&(this.ids=o),void 0!==t.selectors&&(this.selectors=t.selectors),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.type&&(this.type=t.type)}}class Ri{constructor(){this.enable=!1,this.force=2,this.smooth=10}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.force&&(this.force=t.force),void 0!==t.smooth&&(this.smooth=t.smooth))}}class Ti{constructor(){this.enable=!1,this.mode=[],this.parallax=new Ri}load(t){void 0!==t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.parallax.load(t.parallax))}}class Ii{constructor(){this.onClick=new Oi,this.onDiv=new Si,this.onHover=new Ti,this.resize=!0}get onclick(){return this.onClick}set onclick(t){this.onClick=t}get ondiv(){return this.onDiv}set ondiv(t){this.onDiv=t}get onhover(){return this.onHover}set onhover(t){this.onHover=t}load(t){var e,i,o;if(void 0===t)return;this.onClick.load(null!==(e=t.onClick)&&void 0!==e?e:t.onclick);const s=null!==(i=t.onDiv)&&void 0!==i?i:t.ondiv;void 0!==s&&(s instanceof Array?this.onDiv=s.map((t=>{const e=new Si;return e.load(t),e})):(this.onDiv=new Si,this.onDiv.load(s))),this.onHover.load(null!==(o=t.onHover)&&void 0!==o?o:t.onhover),void 0!==t.resize&&(this.resize=t.resize)}}class Di{constructor(){this.distance=200,this.duration=.4,this.mix=!1}load(t){void 0!==t&&(void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.mix&&(this.mix=t.mix),void 0!==t.opacity&&(this.opacity=t.opacity),void 0!==t.color&&(t.color instanceof Array?this.color=t.color.map((t=>pe.create(void 0,t))):(this.color instanceof Array&&(this.color=new pe),this.color=pe.create(this.color,t.color))),void 0!==t.size&&(this.size=t.size))}}class Ei extends Di{constructor(){super(),this.selectors=[]}get ids(){return this.selectors instanceof Array?this.selectors.map((t=>t.replace("#",""))):this.selectors.replace("#","")}set ids(t){this.selectors=t instanceof Array?t.map((t=>`#${t}`)):`#${t}`}load(t){super.load(t),void 0!==t&&(void 0!==t.ids&&(this.ids=t.ids),void 0!==t.selectors&&(this.selectors=t.selectors))}}class Ai extends Di{load(t){super.load(t),void 0!==t&&void 0!==t.divs&&(t.divs instanceof Array?this.divs=t.divs.map((t=>{const e=new Ei;return e.load(t),e})):((this.divs instanceof Array||!this.divs)&&(this.divs=new Ei),this.divs.load(t.divs)))}}class Li{constructor(){this.opacity=.5}load(t){void 0!==t&&void 0!==t.opacity&&(this.opacity=t.opacity)}}class Fi{constructor(){this.distance=80,this.links=new Li,this.radius=60}get line_linked(){return this.links}set line_linked(t){this.links=t}get lineLinked(){return this.links}set lineLinked(t){this.links=t}load(t){var e,i;void 0!==t&&(void 0!==t.distance&&(this.distance=t.distance),this.links.load(null!==(i=null!==(e=t.links)&&void 0!==e?e:t.lineLinked)&&void 0!==i?i:t.line_linked),void 0!==t.radius&&(this.radius=t.radius))}}class qi{constructor(){this.blink=!1,this.consent=!1,this.opacity=1}load(t){void 0!==t&&(void 0!==t.blink&&(this.blink=t.blink),void 0!==t.color&&(this.color=pe.create(this.color,t.color)),void 0!==t.consent&&(this.consent=t.consent),void 0!==t.opacity&&(this.opacity=t.opacity))}}class Hi{constructor(){this.distance=100,this.links=new qi}get line_linked(){return this.links}set line_linked(t){this.links=t}get lineLinked(){return this.links}set lineLinked(t){this.links=t}load(t){var e,i;void 0!==t&&(void 0!==t.distance&&(this.distance=t.distance),this.links.load(null!==(i=null!==(e=t.links)&&void 0!==e?e:t.lineLinked)&&void 0!==i?i:t.line_linked))}}class Vi{constructor(){this.quantity=2}get particles_nb(){return this.quantity}set particles_nb(t){this.quantity=t}load(t){var e;if(void 0===t)return;const i=null!==(e=t.quantity)&&void 0!==e?e:t.particles_nb;void 0!==i&&(this.quantity=i)}}class Bi{constructor(){this.default=!0,this.groups=[],this.quantity=4}get particles_nb(){return this.quantity}set particles_nb(t){this.quantity=t}load(t){var e;if(void 0===t)return;void 0!==t.default&&(this.default=t.default),void 0!==t.groups&&(this.groups=t.groups.map((t=>t))),this.groups.length||(this.default=!0);const i=null!==(e=t.quantity)&&void 0!==e?e:t.particles_nb;void 0!==i&&(this.quantity=i)}}class _i{constructor(){this.distance=200,this.duration=.4,this.factor=100,this.speed=1,this.maxSpeed=50,this.easing=M.easeOutQuad}load(t){t&&(void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.easing&&(this.easing=t.easing),void 0!==t.factor&&(this.factor=t.factor),void 0!==t.speed&&(this.speed=t.speed),void 0!==t.maxSpeed&&(this.maxSpeed=t.maxSpeed))}}class Wi extends _i{constructor(){super(),this.selectors=[]}get ids(){return this.selectors instanceof Array?this.selectors.map((t=>t.replace("#",""))):this.selectors.replace("#","")}set ids(t){this.selectors=t instanceof Array?t.map((()=>`#${t}`)):`#${t}`}load(t){super.load(t),void 0!==t&&(void 0!==t.ids&&(this.ids=t.ids),void 0!==t.selectors&&(this.selectors=t.selectors))}}class $i extends _i{load(t){super.load(t),void 0!==(null==t?void 0:t.divs)&&(t.divs instanceof Array?this.divs=t.divs.map((t=>{const e=new Wi;return e.load(t),e})):((this.divs instanceof Array||!this.divs)&&(this.divs=new Wi),this.divs.load(t.divs)))}}class ji{constructor(){this.factor=3,this.radius=200}get active(){return!1}set active(t){}load(t){void 0!==t&&(void 0!==t.factor&&(this.factor=t.factor),void 0!==t.radius&&(this.radius=t.radius))}}class Gi{constructor(){this.delay=1,this.pauseOnStop=!1,this.quantity=1}load(t){void 0!==t&&(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.quantity&&(this.quantity=t.quantity),void 0!==t.particles&&(this.particles=K({},t.particles)),void 0!==t.pauseOnStop&&(this.pauseOnStop=t.pauseOnStop))}}class Ui{constructor(){this.distance=200,this.duration=.4,this.easing=M.easeOutQuad,this.factor=1,this.maxSpeed=50,this.speed=1}load(t){t&&(void 0!==t.distance&&(this.distance=t.distance),void 0!==t.duration&&(this.duration=t.duration),void 0!==t.easing&&(this.easing=t.easing),void 0!==t.factor&&(this.factor=t.factor),void 0!==t.maxSpeed&&(this.maxSpeed=t.maxSpeed),void 0!==t.speed&&(this.speed=t.speed))}}class Ni{constructor(){this.start=new pe,this.stop=new pe,this.start.value="#ffffff",this.stop.value="#000000"}load(t){void 0!==t&&(this.start=pe.create(this.start,t.start),this.stop=pe.create(this.stop,t.stop))}}class Ji{constructor(){this.gradient=new Ni,this.radius=1e3}load(t){void 0!==t&&(this.gradient.load(t.gradient),void 0!==t.radius&&(this.radius=t.radius))}}class Xi{constructor(){this.color=new pe,this.color.value="#000000",this.length=2e3}load(t){void 0!==t&&(this.color=pe.create(this.color,t.color),void 0!==t.length&&(this.length=t.length))}}class Yi{constructor(){this.area=new Ji,this.shadow=new Xi}load(t){void 0!==t&&(this.area.load(t.area),this.shadow.load(t.shadow))}}class Qi{constructor(){this.distance=200}load(t){t&&void 0!==t.distance&&(this.distance=t.distance)}}class Zi{constructor(){this.attract=new Ui,this.bounce=new Qi,this.bubble=new Ai,this.connect=new Fi,this.grab=new Hi,this.light=new Yi,this.push=new Bi,this.remove=new Vi,this.repulse=new $i,this.slow=new ji,this.trail=new Gi}load(t){void 0!==t&&(this.attract.load(t.attract),this.bubble.load(t.bubble),this.connect.load(t.connect),this.grab.load(t.grab),this.light.load(t.light),this.push.load(t.push),this.remove.load(t.remove),this.repulse.load(t.repulse),this.slow.load(t.slow),this.trail.load(t.trail))}}class Ki{constructor(){this.detectsOn=C.canvas,this.events=new Ii,this.modes=new Zi}get detect_on(){return this.detectsOn}set detect_on(t){this.detectsOn=t}load(t){var e,i,o;if(void 0===t)return;const s=null!==(e=t.detectsOn)&&void 0!==e?e:t.detect_on;void 0!==s&&(this.detectsOn=s),this.events.load(t.events),this.modes.load(t.modes),!0===(null===(o=null===(i=t.modes)||void 0===i?void 0:i.slow)||void 0===o?void 0:o.active)&&(this.events.onHover.mode instanceof Array?this.events.onHover.mode.indexOf(c.slow)<0&&this.events.onHover.mode.push(c.slow):this.events.onHover.mode!==c.slow&&(this.events.onHover.mode=[this.events.onHover.mode,c.slow]))}}class to{constructor(){this.color=new pe,this.opacity=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=pe.create(this.color,t.color)),void 0!==t.opacity&&(this.opacity=t.opacity))}}class eo{constructor(){this.composite="destination-out",this.cover=new to,this.enable=!1}load(t){if(void 0!==t){if(void 0!==t.composite&&(this.composite=t.composite),void 0!==t.cover){const e=t.cover,i="string"==typeof t.cover?{color:t.cover}:t.cover;this.cover.load(void 0!==e.color?e:{color:i})}void 0!==t.enable&&(this.enable=t.enable)}}}class io{constructor(){this.color=new pe,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){void 0!==t&&(void 0!==t.color&&(this.color=pe.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.position&&(this.position=t.position),void 0!==t.repeat&&(this.repeat=t.repeat),void 0!==t.size&&(this.size=t.size),void 0!==t.opacity&&(this.opacity=t.opacity))}}class oo{constructor(){this.auto=!1,this.mode=p.any,this.value=!1}load(t){t&&(void 0!==t.auto&&(this.auto=t.auto),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}class so{constructor(){this.name="",this.default=new oo}load(t){void 0!==t&&(void 0!==t.name&&(this.name=t.name),this.default.load(t.default),void 0!==t.options&&(this.options=K({},t.options)))}}class no{constructor(){this.enable=!1,this.zIndex=-1}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}class ao{constructor(){this.factor=4,this.value=!0}load(t){t&&(void 0!==t.factor&&(this.factor=t.factor),void 0!==t.value&&(this.value=t.value))}}class ro{constructor(){this.disable=!1,this.reduce=new ao}load(t){t&&(void 0!==t.disable&&(this.disable=t.disable),this.reduce.load(t.reduce))}}class lo{load(t){var e,i;t&&(void 0!==t.position&&(this.position={x:null!==(e=t.position.x)&&void 0!==e?e:50,y:null!==(i=t.position.y)&&void 0!==i?i:50}),void 0!==t.options&&(this.options=K({},t.options)))}}class co{constructor(){this.maxWidth=1/0,this.options={}}load(t){t&&(void 0!==t.maxWidth&&(this.maxWidth=t.maxWidth),void 0!==t.options&&(this.options=K({},t.options)))}}var ho,uo,vo=function(t,e,i,o){if("a"===i&&!o)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?o:"a"===i?o.call(t):o?o.value:e.get(t)};class po{constructor(){ho.add(this),this.autoPlay=!0,this.background=new io,this.backgroundMask=new eo,this.fullScreen=new no,this.detectRetina=!0,this.duration=0,this.fpsLimit=60,this.interactivity=new Ki,this.manualParticles=[],this.motion=new ro,this.particles=new bi,this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.responsive=[],this.themes=[],this.zLayers=100}get fps_limit(){return this.fpsLimit}set fps_limit(t){this.fpsLimit=t}get retina_detect(){return this.detectRetina}set retina_detect(t){this.detectRetina=t}get backgroundMode(){return this.fullScreen}set backgroundMode(t){this.fullScreen.load(t)}load(t){var e,i,o,s,n;if(void 0===t)return;if(void 0!==t.preset)if(t.preset instanceof Array)for(const e of t.preset)this.importPreset(e);else this.importPreset(t.preset);void 0!==t.autoPlay&&(this.autoPlay=t.autoPlay);const a=null!==(e=t.detectRetina)&&void 0!==e?e:t.retina_detect;void 0!==a&&(this.detectRetina=a),void 0!==t.duration&&(this.duration=t.duration);const r=null!==(i=t.fpsLimit)&&void 0!==i?i:t.fps_limit;void 0!==r&&(this.fpsLimit=r),void 0!==t.pauseOnBlur&&(this.pauseOnBlur=t.pauseOnBlur),void 0!==t.pauseOnOutsideViewport&&(this.pauseOnOutsideViewport=t.pauseOnOutsideViewport),void 0!==t.zLayers&&(this.zLayers=t.zLayers),this.background.load(t.background);const l=null!==(o=t.fullScreen)&&void 0!==o?o:t.backgroundMode;if("boolean"==typeof l?this.fullScreen.enable=l:this.fullScreen.load(l),this.backgroundMask.load(t.backgroundMask),this.interactivity.load(t.interactivity),void 0!==t.manualParticles&&(this.manualParticles=t.manualParticles.map((t=>{const e=new lo;return e.load(t),e}))),this.motion.load(t.motion),this.particles.load(t.particles),de.loadOptions(this,t),void 0!==t.responsive)for(const e of t.responsive){const t=new co;t.load(e),this.responsive.push(t)}if(this.responsive.sort(((t,e)=>t.maxWidth-e.maxWidth)),void 0!==t.themes)for(const e of t.themes){const t=new so;t.load(e),this.themes.push(t)}this.defaultDarkTheme=null===(s=vo(this,ho,"m",uo).call(this,p.dark))||void 0===s?void 0:s.name,this.defaultLightTheme=null===(n=vo(this,ho,"m",uo).call(this,p.light))||void 0===n?void 0:n.name}setTheme(t){if(t){const e=this.themes.find((e=>e.name===t));e&&this.load(e.options)}else{const t="undefined"!=typeof matchMedia&&matchMedia("(prefers-color-scheme: dark)"),e=t&&t.matches,i=vo(this,ho,"m",uo).call(this,e?p.dark:p.light);i&&this.load(i.options)}}setResponsive(t,e,i){var o;this.load(i),this.load(null===(o=this.responsive.find((i=>i.maxWidth*e>t)))||void 0===o?void 0:o.options)}importPreset(t){this.load(de.getPreset(t))}}ho=new WeakSet,uo=function(t){var e;return null!==(e=this.themes.find((e=>e.default.value&&e.default.mode===t)))&&void 0!==e?e:this.themes.find((t=>t.default.value&&t.default.mode===p.any))};class fo{constructor(t,e,...i){this.id=t,this.fpsLimit=60,this.duration=0,this.lifeTime=0,this.firstStart=!0,this.started=!1,this.destroyed=!1,this.paused=!0,this.lastFrameTime=0,this.zLayers=100,this.pageHidden=!1,this._sourceOptions=e,this.retina=new Ci(this),this.canvas=new ve(this),this.particles=new zi(this),this.drawer=new Pi(this),this.pathGenerator={generate:()=>{const t=P.create(0,0);return t.length=Math.random(),t.angle=Math.random()*Math.PI*2,t},init:()=>{},update:()=>{}},this.interactivity={mouse:{clicking:!1,inside:!1}},this.bubble={},this.repulse={particles:[]},this.attract={particles:[]},this.plugins=new Map,this.drawers=new Map,this.density=1,this._options=new po,this.actualOptions=new po;for(const t of i)this._options.load(de.getPreset(t));const o=de.getSupportedShapes();for(const t of o){const e=de.getShapeDrawer(t);e&&this.drawers.set(t,e)}this._options.load(this._sourceOptions),this.eventListeners=new ee(this),"undefined"!=typeof IntersectionObserver&&IntersectionObserver&&(this.intersectionObserver=new IntersectionObserver((t=>this.intersectionManager(t))))}get options(){return this._options}get sourceOptions(){return this._sourceOptions}play(t){const e=this.paused||t;if(!this.firstStart||this.actualOptions.autoPlay){if(this.paused&&(this.paused=!1),e)for(const[,t]of this.plugins)t.play&&t.play();this.draw(e||!1)}else this.firstStart=!1}pause(){if(void 0!==this.drawAnimationFrame&&(G()(this.drawAnimationFrame),delete this.drawAnimationFrame),!this.paused){for(const[,t]of this.plugins)t.pause&&t.pause();this.pageHidden||(this.paused=!0)}}draw(t){let e=t;this.drawAnimationFrame=j()((t=>{e&&(this.lastFrameTime=void 0,e=!1),this.drawer.nextFrame(t)}))}getAnimationStatus(){return!this.paused&&!this.pageHidden}setNoise(t,e,i){this.setPath(t,e,i)}setPath(t,e,i){t&&("function"==typeof t?(this.pathGenerator.generate=t,e&&(this.pathGenerator.init=e),i&&(this.pathGenerator.update=i)):(t.generate&&(this.pathGenerator.generate=t.generate),t.init&&(this.pathGenerator.init=t.init),t.update&&(this.pathGenerator.update=t.update)))}destroy(){this.stop(),this.canvas.destroy();for(const[,t]of this.drawers)t.destroy&&t.destroy(this);for(const t of this.drawers.keys())this.drawers.delete(t);this.destroyed=!0}exportImg(t){this.exportImage(t)}exportImage(t,e,i){var o;return null===(o=this.canvas.element)||void 0===o?void 0:o.toBlob(t,null!=e?e:"image/png",i)}exportConfiguration(){return JSON.stringify(this.actualOptions,void 0,2)}refresh(){return this.stop(),this.start()}reset(){return this._options=new po,this.refresh()}stop(){if(this.started){this.firstStart=!0,this.started=!1,this.eventListeners.removeListeners(),this.pause(),this.particles.clear(),this.canvas.clear(),this.interactivity.element instanceof HTMLElement&&this.intersectionObserver&&this.intersectionObserver.observe(this.interactivity.element);for(const[,t]of this.plugins)t.stop&&t.stop();for(const t of this.plugins.keys())this.plugins.delete(t);this.particles.linksColors=new Map,delete this.particles.grabLineColor,delete this.particles.linksColor}}async loadTheme(t){this.currentTheme=t,await this.refresh()}async start(){if(!this.started){await this.init(),this.started=!0,this.eventListeners.addListeners(),this.interactivity.element instanceof HTMLElement&&this.intersectionObserver&&this.intersectionObserver.observe(this.interactivity.element);for(const[,t]of this.plugins)void 0!==t.startAsync?await t.startAsync():void 0!==t.start&&t.start();this.play()}}addClickHandler(t){const e=this.interactivity.element;if(!e)return;const i=(e,i,o)=>{if(this.destroyed)return;const s=this.retina.pixelRatio,n={x:i.x*s,y:i.y*s},a=this.particles.quadTree.queryCircle(n,o*s);t(e,a)};let o=!1,s=!1;e.addEventListener("click",(t=>{if(this.destroyed)return;const e=t,o={x:e.offsetX||e.clientX,y:e.offsetY||e.clientY};i(t,o,1)})),e.addEventListener("touchstart",(()=>{this.destroyed||(o=!0,s=!1)})),e.addEventListener("touchmove",(()=>{this.destroyed||(s=!0)})),e.addEventListener("touchend",(t=>{var e,n,a;if(!this.destroyed){if(o&&!s){const o=t;let s=o.touches[o.touches.length-1];if(!s&&(s=o.changedTouches[o.changedTouches.length-1],!s))return;const r=null===(e=this.canvas.element)||void 0===e?void 0:e.getBoundingClientRect(),l={x:s.clientX-(null!==(n=null==r?void 0:r.left)&&void 0!==n?n:0),y:s.clientY-(null!==(a=null==r?void 0:r.top)&&void 0!==a?a:0)};i(t,l,Math.max(s.radiusX,s.radiusY))}o=!1,s=!1}})),e.addEventListener("touchcancel",(()=>{this.destroyed||(o=!1,s=!1)}))}updateActualOptions(){this.actualOptions.setResponsive(this.canvas.size.width,this.retina.pixelRatio,this._options),this.actualOptions.setTheme(this.currentTheme)}async init(){this.actualOptions=new po,this.actualOptions.load(this._options),this.retina.init(),this.canvas.init(),this.updateActualOptions(),this.canvas.initBackground(),this.canvas.resize(),this.zLayers=this.actualOptions.zLayers,this.duration=T(this.actualOptions.duration),this.lifeTime=0,this.fpsLimit=this.actualOptions.fpsLimit>0?this.actualOptions.fpsLimit:60;const t=de.getAvailablePlugins(this);for(const[e,i]of t)this.plugins.set(e,i);for(const[,t]of this.drawers)t.init&&await t.init(this);for(const[,t]of this.plugins)t.init?t.init(this.actualOptions):void 0!==t.initAsync&&await t.initAsync(this.actualOptions);const e=this.actualOptions.particles.move.path;if(e.generator){const t=de.getPathGenerator(e.generator);t&&(t.init&&(this.pathGenerator.init=t.init),t.generate&&(this.pathGenerator.generate=t.generate),t.update&&(this.pathGenerator.update=t.update))}this.particles.init(),this.particles.setDensity();for(const[,t]of this.plugins)void 0!==t.particlesSetup&&t.particlesSetup()}intersectionManager(t){if(this.actualOptions.pauseOnOutsideViewport)for(const e of t)e.target===this.interactivity.element&&(e.isIntersecting?this.play():this.pause())}}const yo=[];function mo(t){console.error(`Error tsParticles - fetch status: ${t}`),console.error("Error tsParticles - File config not found")}class bo{static dom(){return yo}static domItem(t){const e=bo.dom(),i=e[t];if(i&&!i.destroyed)return i;e.splice(t,1)}static async load(t,e,i){let o=document.getElementById(t);return o||(o=document.createElement("div"),o.id=t,document.append(o)),bo.set(t,o,e,i)}static async set(t,e,i,o){const s=i instanceof Array?X(i,o):i,n=bo.dom(),a=n.findIndex((e=>e.id===t));if(a>=0){const t=bo.domItem(a);t&&!t.destroyed&&(t.destroy(),n.splice(a,1))}let r,l;if("canvas"===e.tagName.toLowerCase())r=e,l=!1;else{const t=e.getElementsByTagName("canvas");t.length?(r=t[0],r.className||(r.className=rt.canvasClass),l=!1):(l=!0,r=document.createElement("canvas"),r.className=rt.canvasClass,r.style.width="100%",r.style.height="100%",e.appendChild(r))}const c=new fo(t,s);return a>=0?n.splice(a,0,c):n.push(c),c.canvas.loadCanvas(r,l),await c.start(),c}static async loadJSON(t,e,i){const o=e instanceof Array?X(e,i):e,s=await fetch(o);if(s.ok)return bo.load(t,await s.json());mo(s.status)}static async setJSON(t,e,i,o){const s=i instanceof Array?X(i,o):i,n=await fetch(s);if(n.ok){const i=await n.json();return bo.set(t,e,i)}mo(n.status)}static setOnClickHandler(t){const e=bo.dom();if(0===e.length)throw new Error("Can only set click handlers after calling tsParticles.load() or tsParticles.loadJSON()");for(const i of e)i.addClickHandler(t)}}var go,wo=function(t,e,i,o,s){if("m"===o)throw new TypeError("Private method is not writable");if("a"===o&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===o?s.call(t,i):s?s.value=i:e.set(t,i),i},xo=function(t,e,i,o){if("a"===i&&!o)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?o:"a"===i?o.call(t):o?o.value:e.get(t)};class ko{constructor(){go.set(this,void 0),wo(this,go,!1,"f")}init(){xo(this,go,"f")||wo(this,go,!0,"f")}async loadFromArray(t,e,i){return bo.load(t,e,i)}async load(t,e){return bo.load(t,e)}async set(t,e,i){return bo.set(t,e,i)}loadJSON(t,e,i){return bo.loadJSON(t,e,i)}async setJSON(t,e,i,o){return bo.setJSON(t,e,i,o)}setOnClickHandler(t){bo.setOnClickHandler(t)}dom(){return bo.dom()}domItem(t){return bo.domItem(t)}addShape(t,e,i,o,s){let n;n="function"==typeof e?{afterEffect:o,destroy:s,draw:e,init:i}:e,de.addShapeDrawer(t,n)}addPreset(t,e,i=!1){de.addPreset(t,e,i)}addPlugin(t){de.addPlugin(t)}addPathGenerator(t,e){de.addPathGenerator(t,e)}addInteractor(t,e){de.addInteractor(t,e)}addParticleUpdater(t,e){de.addParticleUpdater(t,e)}}go=new WeakMap;class Mo{getSidesCount(){return 12}draw(t,e,i){t.arc(0,0,i,0,2*Math.PI,!1)}}function zo(t){return new Promise(((e,i)=>{if(!t)return void i("Error tsParticles - No image.src");const o={source:t,type:t.substr(t.length-3)},s=new Image;s.addEventListener("load",(()=>{o.element=s,e(o)})),s.addEventListener("error",(()=>{i(`Error tsParticles - loading image: ${t}`)})),s.src=t}))}async function Co(t){if(!t)throw new Error("Error tsParticles - No image.src");const e={source:t,type:t.substr(t.length-3)};if("svg"!==e.type)return zo(t);const i=await fetch(e.source);if(!i.ok)throw new Error("Error tsParticles - Image not found");return e.svgData=await i.text(),e}var Po,Oo=function(t,e,i,o,s){if("m"===o)throw new TypeError("Private method is not writable");if("a"===o&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===o?s.call(t,i):s?s.value=i:e.set(t,i),i},So=function(t,e,i,o){if("a"===i&&!o)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!o:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?o:"a"===i?o.call(t):o?o.value:e.get(t)};class Ro{constructor(){Po.set(this,void 0),Oo(this,Po,[],"f")}getSidesCount(){return 12}getImages(t){const e=So(this,Po,"f").find((e=>e.id===t.id));return e||(So(this,Po,"f").push({id:t.id,images:[]}),this.getImages(t))}addImage(t,e){const i=this.getImages(t);null==i||i.images.push(e)}async init(t){await this.loadImagesFromParticlesOptions(t,t.actualOptions.particles),await this.loadImagesFromParticlesOptions(t,t.actualOptions.interactivity.modes.trail.particles);for(const e of t.actualOptions.manualParticles)await this.loadImagesFromParticlesOptions(t,e.options);const e=t.actualOptions;if(e.emitters)if(e.emitters instanceof Array)for(const i of e.emitters)await this.loadImagesFromParticlesOptions(t,i.particles);else await this.loadImagesFromParticlesOptions(t,e.emitters.particles);const i=e.interactivity.modes.emitters;if(i)if(i instanceof Array)for(const e of i)await this.loadImagesFromParticlesOptions(t,e.particles);else await this.loadImagesFromParticlesOptions(t,i.particles)}destroy(){Oo(this,Po,[],"f")}async loadImagesFromParticlesOptions(t,e){var i,o,s;const n=null==e?void 0:e.shape;if(!(null==n?void 0:n.type)||!n.options||!U(w.image,n.type)&&!U(w.images,n.type))return;const a=So(this,Po,"f").findIndex((e=>e.id===t.id));a>=0&&So(this,Po,"f").splice(a,1);const r=null!==(i=n.options[w.images])&&void 0!==i?i:n.options[w.image];if(r instanceof Array)for(const e of r)await this.loadImageShape(t,e);else await this.loadImageShape(t,r);if(null==e?void 0:e.groups)for(const i in e.groups){const o=e.groups[i];await this.loadImagesFromParticlesOptions(t,o)}(null===(s=null===(o=null==e?void 0:e.destroy)||void 0===o?void 0:o.split)||void 0===s?void 0:s.particles)&&await this.loadImagesFromParticlesOptions(t,null==e?void 0:e.destroy.split.particles)}async loadImageShape(t,e){try{const i=e.replaceColor?Co:zo,o=await i(e.src);o&&this.addImage(t,o)}catch(t){console.warn(`tsParticles error - ${e.src} not found`)}}draw(t,e,i,o){var s,n;if(!t)return;const a=e.image,r=null===(s=null==a?void 0:a.data)||void 0===s?void 0:s.element;if(!r)return;const l=null!==(n=null==a?void 0:a.ratio)&&void 0!==n?n:1,c={x:-i,y:-i};(null==a?void 0:a.data.svgData)&&(null==a?void 0:a.replaceColor)||(t.globalAlpha=o),t.drawImage(r,c.x,c.y,2*i,2*i/l),(null==a?void 0:a.data.svgData)&&(null==a?void 0:a.replaceColor)||(t.globalAlpha=1)}loadShape(t){var e,i,o,s,n,a,r;if("image"!==t.shape&&"images"!==t.shape)return;const l=this.getImages(t.container).images,c=t.shapeData,d=null!==(e=l.find((t=>t.source===c.src)))&&void 0!==e?e:l[0],h=t.getFillColor();let u;if(!d)return;if(void 0!==d.svgData&&c.replaceColor&&h){const e=function(t,e,i){const{svgData:o}=t;if(!o)return"";if(o.includes("fill")){const t=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d.]+%?\))|currentcolor/gi;return o.replace(t,(()=>Ot(e,i)))}const s=o.indexOf(">");return`${o.substring(0,s)} fill="${Ot(e,i)}"${o.substring(s)}`}(d,h,null!==(o=null===(i=t.opacity)||void 0===i?void 0:i.value)&&void 0!==o?o:1),n=new Blob([e],{type:"image/svg+xml"}),a=URL||window.URL||window.webkitURL||window,r=a.createObjectURL(n),l=new Image;u={data:Object.assign(Object.assign({},d),{svgData:e}),ratio:c.width/c.height,replaceColor:null!==(s=c.replaceColor)&&void 0!==s?s:c.replace_color,source:c.src},l.addEventListener("load",(()=>{const e=t.image;e&&(e.loaded=!0,d.element=l),a.revokeObjectURL(r)})),l.addEventListener("error",(()=>{a.revokeObjectURL(r),zo(c.src).then((e=>{const i=t.image;i&&(d.element=null==e?void 0:e.element,i.loaded=!0)}))})),l.src=r}else u={data:d,loaded:!0,ratio:c.width/c.height,replaceColor:null!==(n=c.replaceColor)&&void 0!==n?n:c.replace_color,source:c.src};u.ratio||(u.ratio=1);const v={image:u,fill:null!==(a=c.fill)&&void 0!==a?a:t.fill,close:null!==(r=c.close)&&void 0!==r?r:t.close};t.image=v.image,t.fill=v.fill,t.close=v.close}}Po=new WeakMap;class To{getSidesCount(){return 1}draw(t,e,i){t.moveTo(-i/2,0),t.lineTo(i/2,0)}}class Io{getSidesCount(t){var e,i;const o=t.shapeData;return null!==(i=null!==(e=null==o?void 0:o.sides)&&void 0!==e?e:null==o?void 0:o.nb_sides)&&void 0!==i?i:5}draw(t,e,i){const o=this.getCenter(e,i),s=this.getSidesData(e,i),n=s.count.numerator*s.count.denominator,a=s.count.numerator/s.count.denominator,r=180*(a-2)/a,l=Math.PI-Math.PI*r/180;if(t){t.beginPath(),t.translate(o.x,o.y),t.moveTo(0,0);for(let e=0;e<n;e++)t.lineTo(s.length,0),t.translate(s.length,0),t.rotate(l)}}}class Do extends Io{getSidesData(t,e){var i,o;const s=t.shapeData,n=null!==(o=null!==(i=null==s?void 0:s.sides)&&void 0!==i?i:null==s?void 0:s.nb_sides)&&void 0!==o?o:5;return{count:{denominator:1,numerator:n},length:2.66*e/(n/3)}}getCenter(t,e){return{x:-e/(this.getSidesCount(t)/3.5),y:-e/.76}}}class Eo extends Io{getSidesCount(){return 3}getSidesData(t,e){return{count:{denominator:2,numerator:3},length:2*e}}getCenter(t,e){return{x:-e,y:e/1.66}}}function Ao(t){!function(t){t.addShape("polygon",new Do)}(t),function(t){t.addShape("triangle",new Eo)}(t)}const Lo=Math.sqrt(2);class Fo{getSidesCount(){return 4}draw(t,e,i){t.rect(-i/Lo,-i/Lo,2*i/Lo,2*i/Lo)}}class qo{getSidesCount(t){var e,i;const o=t.shapeData;return null!==(i=null!==(e=null==o?void 0:o.sides)&&void 0!==e?e:null==o?void 0:o.nb_sides)&&void 0!==i?i:5}draw(t,e,i){var o;const s=e.shapeData,n=this.getSidesCount(e),a=null!==(o=null==s?void 0:s.inset)&&void 0!==o?o:2;t.moveTo(0,0-i);for(let e=0;e<n;e++)t.rotate(Math.PI/n),t.lineTo(0,0-i*a),t.rotate(Math.PI/n),t.lineTo(0,0-i)}}const Ho=["text","character","char"];class Vo{getSidesCount(){return 12}async init(t){const e=t.actualOptions;if(Ho.find((t=>U(t,e.particles.shape.type)))){const t=Ho.map((t=>e.particles.shape.options[t])).find((t=>!!t));if(t instanceof Array){const e=[];for(const i of t)e.push(N(i));await Promise.allSettled(e)}else void 0!==t&&await N(t)}}draw(t,e,i,o){var s,n,a;const r=e.shapeData;if(void 0===r)return;const l=r.value;if(void 0===l)return;const c=e;void 0===c.text&&(c.text=l instanceof Array?X(l,e.randomIndexData):l);const d=c.text,h=null!==(s=r.style)&&void 0!==s?s:"",u=null!==(n=r.weight)&&void 0!==n?n:"400",v=2*Math.round(i),p=null!==(a=r.font)&&void 0!==a?a:"Verdana",f=e.fill,y=d.length*i/2;t.font=`${h} ${u} ${v}px "${p}"`;const m={x:-y,y:i/2};t.globalAlpha=o,f?t.fillText(d,m.x,m.y):t.strokeText(d,m.x,m.y),t.globalAlpha=1}}class Bo{constructor(t){this.container=t}init(t){const e=t.options.rotate;t.rotate={enable:e.animation.enable,value:T(e.value)*Math.PI/180};let i=e.direction;if(i===o.random){i=Math.floor(2*Math.random())>0?o.counterClockwise:o.clockwise}switch(i){case o.counterClockwise:case"counterClockwise":t.rotate.status=f.decreasing;break;case o.clockwise:t.rotate.status=f.increasing}const s=t.options.rotate.animation;s.enable&&(t.rotate.velocity=s.speed/360*this.container.retina.reduceFactor,s.sync||(t.rotate.velocity*=Math.random()))}isEnabled(t){const e=t.options.rotate,i=e.animation;return!t.destroyed&&!t.spawning&&!e.path&&i.enable}update(t,e){this.isEnabled(t)&&function(t,e){var i;const o=t.rotate;if(!o)return;const s=t.options.rotate.animation,n=(null!==(i=o.velocity)&&void 0!==i?i:0)*e.factor,a=2*Math.PI;if(s.enable)switch(o.status){case f.increasing:o.value+=n,o.value>a&&(o.value-=a);break;case f.decreasing:default:o.value-=n,o.value<0&&(o.value+=a)}}(t,e)}}function _o(t,e,i,o,s){var n;const a=e;if(!a||!i.enable)return;const r=R(i.offset),l=(null!==(n=e.velocity)&&void 0!==n?n:0)*t.factor+3.6*r;s&&a.status!==f.increasing?(a.value-=l,a.value<0&&(a.status=f.increasing,a.value+=a.value)):(a.value+=l,s&&a.value>o&&(a.status=f.decreasing,a.value-=a.value%o)),a.value>o&&(a.value%=o)}class Wo{constructor(t){this.container=t}init(t){const e=ht(t.options.color,t.id,t.options.reduceDuplicates);e&&(t.color=Et(e,t.options.color.animation,this.container.retina.reduceFactor))}isEnabled(t){var e,i,o;const s=t.options.color.animation;return!t.destroyed&&!t.spawning&&(void 0!==(null===(e=t.color)||void 0===e?void 0:e.h.value)&&s.h.enable||void 0!==(null===(i=t.color)||void 0===i?void 0:i.s.value)&&s.s.enable||void 0!==(null===(o=t.color)||void 0===o?void 0:o.l.value)&&s.l.enable)}update(t,e){!function(t,e){var i,o,s;const n=t.options.color.animation;void 0!==(null===(i=t.color)||void 0===i?void 0:i.h)&&_o(e,t.color.h,n.h,360,!1),void 0!==(null===(o=t.color)||void 0===o?void 0:o.s)&&_o(e,t.color.s,n.s,100,!0),void 0!==(null===(s=t.color)||void 0===s?void 0:s.l)&&_o(e,t.color.l,n.l,100,!0)}(t,e)}}class $o{constructor(t){this.container=t}init(){}isEnabled(t){return!t.destroyed}update(t,e){if(!this.isEnabled(t))return;const i=t.life;let o=!1;if(t.spawning){if(i.delayTime+=e.value,!(i.delayTime>=t.life.delay))return;o=!0,t.spawning=!1,i.delayTime=0,i.time=0}if(-1===i.duration)return;if(t.spawning)return;if(o?i.time=0:i.time+=e.value,i.time<i.duration)return;if(i.time=0,t.life.count>0&&t.life.count--,0===t.life.count)return void t.destroy();const s=this.container.canvas.size,n=E(0,s.width),a=E(0,s.width);t.position.x=R(n),t.position.y=R(a),t.spawning=!0,i.delayTime=0,i.time=0,t.reset();const r=t.options.life;i.delay=1e3*T(r.delay.value),i.duration=1e3*T(r.duration.value)}}function jo(t,e){var i,o,s,n,a;if(!t.opacity)return;const r=t.opacity.min,l=t.opacity.max;if(!t.destroyed&&t.opacity.enable&&((null!==(i=t.opacity.maxLoops)&&void 0!==i?i:0)<=0||(null!==(o=t.opacity.loops)&&void 0!==o?o:0)<(null!==(s=t.opacity.maxLoops)&&void 0!==s?s:0))){switch(t.opacity.status){case f.increasing:t.opacity.value>=l?(t.opacity.status=f.decreasing,t.opacity.loops||(t.opacity.loops=0),t.opacity.loops++):t.opacity.value+=(null!==(n=t.opacity.velocity)&&void 0!==n?n:0)*e.factor;break;case f.decreasing:t.opacity.value<=r?(t.opacity.status=f.increasing,t.opacity.loops||(t.opacity.loops=0),t.opacity.loops++):t.opacity.value-=(null!==(a=t.opacity.velocity)&&void 0!==a?a:0)*e.factor}!function(t,e,i,o){switch(t.options.opacity.animation.destroy){case m.max:e>=o&&t.destroy();break;case m.min:e<=i&&t.destroy()}}(t,t.opacity.value,r,l),t.destroyed||(t.opacity.value=O(t.opacity.value,r,l))}}class Go{constructor(t){this.container=t}init(t){const e=t.options.opacity;t.opacity={enable:e.animation.enable,max:D(e.value),min:I(e.value),value:T(e.value),loops:0,maxLoops:e.animation.count};const i=e.animation;if(i.enable){t.opacity.status=f.increasing;const o=e.value;switch(t.opacity.min=I(o),t.opacity.max=D(o),i.startValue){case x.min:t.opacity.value=t.opacity.min,t.opacity.status=f.increasing;break;case x.random:t.opacity.value=R(t.opacity),t.opacity.status=Math.random()>=.5?f.increasing:f.decreasing;break;case x.max:default:t.opacity.value=t.opacity.max,t.opacity.status=f.decreasing}t.opacity.velocity=i.speed/100*this.container.retina.reduceFactor,i.sync||(t.opacity.velocity*=Math.random())}}isEnabled(t){var e,i,o;return!t.destroyed&&!t.spawning&&!!t.opacity&&t.opacity.enable&&((null!==(e=t.opacity.maxLoops)&&void 0!==e?e:0)<=0||(null!==(i=t.opacity.loops)&&void 0!==i?i:0)<(null!==(o=t.opacity.maxLoops)&&void 0!==o?o:0))}update(t,e){this.isEnabled(t)&&jo(t,e)}}function Uo(t,e){var i,o,s,n;const a=(null!==(i=t.size.velocity)&&void 0!==i?i:0)*e.factor,r=t.size.min,l=t.size.max;if(!t.destroyed&&t.size.enable&&((null!==(o=t.size.loops)&&void 0!==o?o:0)<=0||(null!==(s=t.size.loops)&&void 0!==s?s:0)<(null!==(n=t.size.maxLoops)&&void 0!==n?n:0))){switch(t.size.status){case f.increasing:t.size.value>=l?(t.size.status=f.decreasing,t.size.loops||(t.size.loops=0),t.size.loops++):t.size.value+=a;break;case f.decreasing:t.size.value<=r?(t.size.status=f.increasing,t.size.loops||(t.size.loops=0),t.size.loops++):t.size.value-=a}!function(t,e,i,o){switch(t.options.size.animation.destroy){case m.max:e>=o&&t.destroy();break;case m.min:e<=i&&t.destroy()}}(t,t.size.value,r,l),t.destroyed||(t.size.value=O(t.size.value,r,l))}}class No{init(){}isEnabled(t){var e,i,o;return!t.destroyed&&!t.spawning&&t.size.enable&&((null!==(e=t.size.loops)&&void 0!==e?e:0)<=0||(null!==(i=t.size.loops)&&void 0!==i?i:0)<(null!==(o=t.size.maxLoops)&&void 0!==o?o:0))}update(t,e){this.isEnabled(t)&&Uo(t,e)}}function Jo(t,e,i,o,s){var n;const a=e;if(!a||!a.enable)return;const r=R(i.offset),l=(null!==(n=e.velocity)&&void 0!==n?n:0)*t.factor+3.6*r;s&&a.status!==f.increasing?(a.value-=l,a.value<0&&(a.status=f.increasing,a.value+=a.value)):(a.value+=l,s&&a.value>o&&(a.status=f.decreasing,a.value-=a.value%o)),a.value>o&&(a.value%=o)}class Xo{constructor(t){this.container=t}init(t){var e,i;const o=this.container;t.stroke=t.options.stroke instanceof Array?X(t.options.stroke,t.id,t.options.reduceDuplicates):t.options.stroke,t.strokeWidth=t.stroke.width*o.retina.pixelRatio;const s=null!==(e=ht(t.stroke.color))&&void 0!==e?e:t.getFillColor();s&&(t.strokeColor=Et(s,null===(i=t.stroke.color)||void 0===i?void 0:i.animation,o.retina.reduceFactor))}isEnabled(t){var e,i,o,s;const n=null===(e=t.stroke)||void 0===e?void 0:e.color;return!t.destroyed&&!t.spawning&&!!n&&(void 0!==(null===(i=t.strokeColor)||void 0===i?void 0:i.h.value)&&n.animation.h.enable||void 0!==(null===(o=t.strokeColor)||void 0===o?void 0:o.s.value)&&n.animation.s.enable||void 0!==(null===(s=t.strokeColor)||void 0===s?void 0:s.l.value)&&n.animation.l.enable)}update(t,e){this.isEnabled(t)&&function(t,e){var i,o,s,n,a,r,l,c,d,h;if(!(null===(i=t.stroke)||void 0===i?void 0:i.color))return;const u=t.stroke.color.animation,v=null!==(s=null===(o=t.strokeColor)||void 0===o?void 0:o.h)&&void 0!==s?s:null===(n=t.color)||void 0===n?void 0:n.h;v&&Jo(e,v,u.h,360,!1);const p=null!==(r=null===(a=t.strokeColor)||void 0===a?void 0:a.s)&&void 0!==r?r:null===(l=t.color)||void 0===l?void 0:l.s;p&&Jo(e,p,u.s,100,!0);const f=null!==(d=null===(c=t.strokeColor)||void 0===c?void 0:c.l)&&void 0!==d?d:null===(h=t.color)||void 0===h?void 0:h.l;f&&Jo(e,f,u.l,100,!0)}(t,e)}}class Yo{constructor(t){this.container=t}init(){}isEnabled(t){return!t.destroyed&&!t.spawning}update(t,e){var i,o,n,a;const r=t.options.move.outModes;this.updateOutMode(t,e,null!==(i=r.bottom)&&void 0!==i?i:r.default,s.bottom),this.updateOutMode(t,e,null!==(o=r.left)&&void 0!==o?o:r.default,s.left),this.updateOutMode(t,e,null!==(n=r.right)&&void 0!==n?n:r.default,s.right),this.updateOutMode(t,e,null!==(a=r.top)&&void 0!==a?a:r.default,s.top)}updateOutMode(t,e,i,o){switch(i){case h.bounce:case h.bounceVertical:case h.bounceHorizontal:case"bounceVertical":case"bounceHorizontal":case h.split:this.bounce(t,e,o,i);break;case h.destroy:this.destroy(t,o);break;case h.out:this.out(t,o);break;case h.none:default:this.none(t,o)}}destroy(t,e){const i=this.container;Y(t.position,i.canvas.size,t.getRadius(),e)||i.particles.remove(t,void 0,!0)}out(t,e){const i=this.container;if(Y(t.position,i.canvas.size,t.getRadius(),e))return;const o=t.options.move.warp,n=i.canvas.size,a={bottom:n.height+t.getRadius()+t.offset.y,left:-t.getRadius()-t.offset.x,right:n.width+t.getRadius()+t.offset.x,top:-t.getRadius()-t.offset.y},r=t.getRadius(),l=Z(t.position,r);e===s.right&&l.left>n.width+t.offset.x?(t.position.x=a.left,t.initialPosition.x=t.position.x,o||(t.position.y=Math.random()*n.height,t.initialPosition.y=t.position.y)):e===s.left&&l.right<-t.offset.x&&(t.position.x=a.right,t.initialPosition.x=t.position.x,o||(t.position.y=Math.random()*n.height,t.initialPosition.y=t.position.y)),e===s.bottom&&l.top>n.height+t.offset.y?(o||(t.position.x=Math.random()*n.width,t.initialPosition.x=t.position.x),t.position.y=a.top,t.initialPosition.y=t.position.y):e===s.top&&l.bottom<-t.offset.y&&(o||(t.position.x=Math.random()*n.width,t.initialPosition.x=t.position.x),t.position.y=a.bottom,t.initialPosition.y=t.position.y)}bounce(t,e,i,o){const n=this.container;let a=!1;for(const[,o]of n.plugins)if(void 0!==o.particleBounce&&(a=o.particleBounce(t,e,i)),a)break;if(a)return;const r=t.getPosition(),l=t.offset,c=t.getRadius(),d=Z(r,c),u=n.canvas.size;!function(t){if(t.outMode!==h.bounce&&t.outMode!==h.bounceHorizontal&&"bounceHorizontal"!==t.outMode&&t.outMode!==h.split)return;const e=t.particle.velocity.x;let i=!1;if(t.direction===s.right&&t.bounds.right>=t.canvasSize.width&&e>0||t.direction===s.left&&t.bounds.left<=0&&e<0){const e=T(t.particle.options.bounce.horizontal.value);t.particle.velocity.x*=-e,i=!0}if(!i)return;const o=t.offset.x+t.size;t.bounds.right>=t.canvasSize.width?t.particle.position.x=t.canvasSize.width-o:t.bounds.left<=0&&(t.particle.position.x=o),t.outMode===h.split&&t.particle.destroy()}({particle:t,outMode:o,direction:i,bounds:d,canvasSize:u,offset:l,size:c}),function(t){if(t.outMode===h.bounce||t.outMode===h.bounceVertical||"bounceVertical"===t.outMode||t.outMode===h.split){const e=t.particle.velocity.y;let i=!1;if(t.direction===s.bottom&&t.bounds.bottom>=t.canvasSize.height&&e>0||t.direction===s.top&&t.bounds.top<=0&&e<0){const e=T(t.particle.options.bounce.vertical.value);t.particle.velocity.y*=-e,i=!0}if(!i)return;const o=t.offset.y+t.size;t.bounds.bottom>=t.canvasSize.height?t.particle.position.y=t.canvasSize.height-o:t.bounds.top<=0&&(t.particle.position.y=o),t.outMode===h.split&&t.particle.destroy()}}({particle:t,outMode:o,direction:i,bounds:d,canvasSize:u,offset:l,size:c})}none(t,e){if(t.options.move.distance.horizontal&&(e===s.left||e===s.right)||t.options.move.distance.vertical&&(e===s.top||e===s.bottom))return;const i=t.options.move.gravity,o=this.container,n=o.canvas.size,a=t.getRadius();if(i.enable){const r=t.position;(!i.inverse&&r.y>n.height+a&&e===s.bottom||i.inverse&&r.y<-a&&e===s.top)&&o.particles.remove(t)}else{if(t.velocity.y>0&&t.position.y<=n.height+a||t.velocity.y<0&&t.position.y>=-a||t.velocity.x>0&&t.position.x<=n.width+a||t.velocity.x<0&&t.position.x>=-a)return;Y(t.position,o.canvas.size,a,e)||o.particles.remove(t)}}}class Qo{init(t){const e=t.options.roll;if(e.enable)if(t.roll={angle:Math.random()*Math.PI*2,speed:T(e.speed)/360},e.backColor)t.backColor=ht(e.backColor);else if(e.darken.enable&&e.enlighten.enable){const i=Math.random()>=.5?y.darken:y.enlighten;t.roll.alter={type:i,value:i===y.darken?e.darken.value:e.enlighten.value}}else e.darken.enable?t.roll.alter={type:y.darken,value:e.darken.value}:e.enlighten.enable&&(t.roll.alter={type:y.enlighten,value:e.enlighten.value});else t.roll={angle:0,speed:0}}isEnabled(t){const e=t.options.roll;return!t.destroyed&&!t.spawning&&e.enable}update(t,e){this.isEnabled(t)&&function(t,e){const i=t.options.roll;if(!t.roll||!i.enable)return;const o=t.roll.speed*e.factor,s=2*Math.PI;t.roll.angle+=o,t.roll.angle>s&&(t.roll.angle-=s)}(t,e)}}class Zo{constructor(t){this.container=t}init(t){const e=t.options.tilt;t.tilt={enable:e.enable,value:T(e.value)*Math.PI/180,sinDirection:Math.random()>=.5?1:-1,cosDirection:Math.random()>=.5?1:-1};let i=e.direction;if(i===n.random){i=Math.floor(2*Math.random())>0?n.counterClockwise:n.clockwise}switch(i){case n.counterClockwise:case"counterClockwise":t.tilt.status=f.decreasing;break;case n.clockwise:t.tilt.status=f.increasing}const o=t.options.tilt.animation;o.enable&&(t.tilt.velocity=o.speed/360*this.container.retina.reduceFactor,o.sync||(t.tilt.velocity*=Math.random()))}isEnabled(t){const e=t.options.tilt.animation;return!t.destroyed&&!t.spawning&&e.enable}update(t,e){this.isEnabled(t)&&function(t,e){var i;if(!t.tilt)return;const o=t.options.tilt.animation,s=(null!==(i=t.tilt.velocity)&&void 0!==i?i:0)*e.factor,n=2*Math.PI;if(o.enable)switch(t.tilt.status){case f.increasing:t.tilt.value+=s,t.tilt.value>n&&(t.tilt.value-=n);break;case f.decreasing:default:t.tilt.value-=s,t.tilt.value<0&&(t.tilt.value+=n)}}(t,e)}}class Ko{constructor(t){this.container=t}init(t){const e=t.options.wobble;e.enable?t.wobble={angle:Math.random()*Math.PI*2,speed:T(e.speed)/360}:t.wobble={angle:0,speed:0},t.retina.wobbleDistance=T(e.distance)*this.container.retina.pixelRatio}isEnabled(t){return!t.destroyed&&!t.spawning&&t.options.wobble.enable}update(t,e){this.isEnabled(t)&&function(t,e){var i;if(!t.options.wobble.enable||!t.wobble)return;const o=t.wobble.speed*e.factor,s=(null!==(i=t.retina.wobbleDistance)&&void 0!==i?i:0)*e.factor/(1e3/60),n=2*Math.PI;t.wobble.angle+=o,t.wobble.angle>n&&(t.wobble.angle-=n),t.position.x+=s*Math.cos(t.wobble.angle),t.position.y+=s*Math.abs(Math.sin(t.wobble.angle))}(t,e)}}class ts{constructor(t){this.container=t,this.type=g.External}}class es extends ts{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events;if(!(i.position&&o.onHover.enable||i.clickPosition&&o.onClick.enable))return!1;const s=o.onHover.mode,n=o.onClick.mode;return U(c.attract,s)||U(a.attract,n)}reset(){}interact(){const t=this.container,e=t.actualOptions,i=t.interactivity.status===rt.mouseMoveEvent,o=e.interactivity.events,s=o.onHover.enable,n=o.onHover.mode,r=o.onClick.enable,l=o.onClick.mode;i&&s&&U(c.attract,n)?this.hoverAttract():r&&U(a.attract,l)&&this.clickAttract()}hoverAttract(){const t=this.container,e=t.interactivity.mouse.position;if(!e)return;const i=t.retina.attractModeDistance;this.processAttract(e,i,new Qt(e.x,e.y,i))}processAttract(t,e,i){const o=this.container,s=o.actualOptions.interactivity.modes.attract,n=o.particles.quadTree.query(i);for(const i of n){const{dx:o,dy:n,distance:a}=L(i.position,t),r=s.speed*s.factor,l=O(B(1-a/e,s.easing)*r,0,s.maxSpeed),c=P.create(0===a?r:o/a*l,0===a?r:n/a*l);i.position.subFrom(c)}}clickAttract(){const t=this.container;if(t.attract.finish||(t.attract.count||(t.attract.count=0),t.attract.count++,t.attract.count===t.particles.count&&(t.attract.finish=!0)),t.attract.clicking){const e=t.interactivity.mouse.clickPosition;if(!e)return;const i=t.retina.attractModeDistance;this.processAttract(e,i,new Qt(e.x,e.y,i))}else!1===t.attract.clicking&&(t.attract.particles=[])}}class is extends ts{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events,s=o.onDiv;return i.position&&o.onHover.enable&&U(c.bounce,o.onHover.mode)||tt(l.bounce,s)}interact(){const t=this.container,e=t.actualOptions.interactivity.events,i=t.interactivity.status===rt.mouseMoveEvent,o=e.onHover.enable,s=e.onHover.mode,n=e.onDiv;i&&o&&U(c.bounce,s)?this.processMouseBounce():et(l.bounce,n,((t,e)=>this.singleSelectorBounce(t,e)))}reset(){}processMouseBounce(){const t=this.container,e=10*t.retina.pixelRatio,i=t.interactivity.mouse.position,o=t.retina.bounceModeDistance;i&&this.processBounce(i,o,new Qt(i.x,i.y,o+e))}singleSelectorBounce(t,e){const i=this.container,o=document.querySelectorAll(t);o.length&&o.forEach((t=>{const o=t,s=i.retina.pixelRatio,n={x:(o.offsetLeft+o.offsetWidth/2)*s,y:(o.offsetTop+o.offsetHeight/2)*s},a=o.offsetWidth/2*s,r=10*s,l=e.type===k.circle?new Qt(n.x,n.y,a+r):new Zt(o.offsetLeft*s-r,o.offsetTop*s-r,o.offsetWidth*s+2*r,o.offsetHeight*s+2*r);this.processBounce(n,a,l)}))}processBounce(t,e,i){const o=this.container.particles.quadTree.query(i);for(const s of o)i instanceof Qt?nt(st(s),{position:t,radius:e,mass:e**2*Math.PI/2,velocity:P.origin,factor:P.origin}):i instanceof Zt&&at(s,Z(t,e))}}var os;function ss(t,e,i,o){if(e>=i){return O(t+(e-i)*o,t,e)}if(e<i){return O(t-(i-e)*o,e,t)}}!function(t){t.color="color",t.opacity="opacity",t.size="size"}(os||(os={}));class ns extends ts{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events,s=o.onDiv,n=tt(l.bubble,s);if(!(n||o.onHover.enable&&i.position||o.onClick.enable&&i.clickPosition))return!1;const r=o.onHover.mode,d=o.onClick.mode;return U(c.bubble,r)||U(a.bubble,d)||n}reset(t,e){t.bubble.inRange&&!e||(delete t.bubble.div,delete t.bubble.opacity,delete t.bubble.radius,delete t.bubble.color)}interact(){const t=this.container.actualOptions.interactivity.events,e=t.onHover,i=t.onClick,o=e.enable,s=e.mode,n=i.enable,r=i.mode,d=t.onDiv;o&&U(c.bubble,s)?this.hoverBubble():n&&U(a.bubble,r)?this.clickBubble():et(l.bubble,d,((t,e)=>this.singleSelectorHover(t,e)))}singleSelectorHover(t,e){const i=this.container,o=document.querySelectorAll(t);o.length&&o.forEach((t=>{const o=t,s=i.retina.pixelRatio,n={x:(o.offsetLeft+o.offsetWidth/2)*s,y:(o.offsetTop+o.offsetHeight/2)*s},a=o.offsetWidth/2*s,r=e.type===k.circle?new Qt(n.x,n.y,a):new Zt(o.offsetLeft*s,o.offsetTop*s,o.offsetWidth*s,o.offsetHeight*s),l=i.particles.quadTree.query(r);for(const t of l){if(!r.contains(t.getPosition()))continue;t.bubble.inRange=!0;const e=ot(i.actualOptions.interactivity.modes.bubble.divs,o);t.bubble.div&&t.bubble.div===o||(this.reset(t,!0),t.bubble.div=o),this.hoverBubbleSize(t,1,e),this.hoverBubbleOpacity(t,1,e),this.hoverBubbleColor(t,1,e)}}))}process(t,e,i,o){const s=this.container,n=o.bubbleObj.optValue;if(void 0===n)return;const a=s.actualOptions.interactivity.modes.bubble.duration,r=s.retina.bubbleModeDistance,l=o.particlesObj.optValue,c=o.bubbleObj.value,d=o.particlesObj.value||0,h=o.type;if(n!==l)if(s.bubble.durationEnd)c&&(h===os.size&&delete t.bubble.radius,h===os.opacity&&delete t.bubble.opacity);else if(e<=r){if((null!=c?c:d)!==n){const e=d-i*(d-n)/a;h===os.size&&(t.bubble.radius=e),h===os.opacity&&(t.bubble.opacity=e)}}else h===os.size&&delete t.bubble.radius,h===os.opacity&&delete t.bubble.opacity}clickBubble(){var t,e;const i=this.container,o=i.actualOptions,s=i.interactivity.mouse.clickPosition;if(!s)return;const n=i.retina.bubbleModeDistance,a=i.particles.quadTree.queryCircle(s,n);for(const n of a){if(!i.bubble.clicking)continue;n.bubble.inRange=!i.bubble.durationEnd;const a=F(n.getPosition(),s),r=((new Date).getTime()-(i.interactivity.mouse.clickTime||0))/1e3;r>o.interactivity.modes.bubble.duration&&(i.bubble.durationEnd=!0),r>2*o.interactivity.modes.bubble.duration&&(i.bubble.clicking=!1,i.bubble.durationEnd=!1);const l={bubbleObj:{optValue:i.retina.bubbleModeSize,value:n.bubble.radius},particlesObj:{optValue:D(n.options.size.value)*i.retina.pixelRatio,value:n.size.value},type:os.size};this.process(n,a,r,l);const c={bubbleObj:{optValue:o.interactivity.modes.bubble.opacity,value:n.bubble.opacity},particlesObj:{optValue:D(n.options.opacity.value),value:null!==(e=null===(t=n.opacity)||void 0===t?void 0:t.value)&&void 0!==e?e:1},type:os.opacity};this.process(n,a,r,c),i.bubble.durationEnd?delete n.bubble.color:a<=i.retina.bubbleModeDistance?this.hoverBubbleColor(n,a):delete n.bubble.color}}hoverBubble(){const t=this.container,e=t.interactivity.mouse.position;if(void 0===e)return;const i=t.retina.bubbleModeDistance,o=t.particles.quadTree.queryCircle(e,i);for(const s of o){s.bubble.inRange=!0;const o=F(s.getPosition(),e),n=1-o/i;o<=i?n>=0&&t.interactivity.status===rt.mouseMoveEvent&&(this.hoverBubbleSize(s,n),this.hoverBubbleOpacity(s,n),this.hoverBubbleColor(s,n)):this.reset(s),t.interactivity.status===rt.mouseLeaveEvent&&this.reset(s)}}hoverBubbleSize(t,e,i){const o=this.container,s=(null==i?void 0:i.size)?i.size*o.retina.pixelRatio:o.retina.bubbleModeSize;if(void 0===s)return;const n=D(t.options.size.value)*o.retina.pixelRatio,a=ss(t.size.value,s,n,e);void 0!==a&&(t.bubble.radius=a)}hoverBubbleOpacity(t,e,i){var o,s,n;const a=this.container.actualOptions,r=null!==(o=null==i?void 0:i.opacity)&&void 0!==o?o:a.interactivity.modes.bubble.opacity;if(!r)return;const l=t.options.opacity.value,c=ss(null!==(n=null===(s=t.opacity)||void 0===s?void 0:s.value)&&void 0!==n?n:1,r,D(l),e);void 0!==c&&(t.bubble.opacity=c)}hoverBubbleColor(t,e,i){const o=this.container.actualOptions,s=null!=i?i:o.interactivity.modes.bubble;if(!t.bubble.finalColor){const e=s.color;if(!e)return;const i=e instanceof Array?X(e):e;t.bubble.finalColor=ht(i)}if(t.bubble.finalColor)if(s.mix){t.bubble.color=void 0;const i=t.getFillColor();t.bubble.color=i?ut(Rt(i,t.bubble.finalColor,1-e,e)):t.bubble.finalColor}else t.bubble.color=t.bubble.finalColor}}class as extends ts{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.interactivity.mouse,i=t.actualOptions.interactivity.events;return!(!i.onHover.enable||!e.position)&&U(c.connect,i.onHover.mode)}reset(){}interact(){const t=this.container;if(t.actualOptions.interactivity.events.onHover.enable&&"mousemove"===t.interactivity.status){const e=t.interactivity.mouse.position;if(!e)return;const i=Math.abs(t.retina.connectModeRadius),o=t.particles.quadTree.queryCircle(e,i);let s=0;for(const e of o){const i=e.getPosition();for(const n of o.slice(s+1)){const o=n.getPosition(),s=Math.abs(t.retina.connectModeDistance),a=Math.abs(i.x-o.x),r=Math.abs(i.y-o.y);a<s&&r<s&&t.canvas.drawConnectLine(e,n)}++s}}}}class rs extends ts{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.interactivity.mouse,i=t.actualOptions.interactivity.events;return i.onHover.enable&&!!e.position&&U(c.grab,i.onHover.mode)}reset(){}interact(){var t;const e=this.container,i=e.actualOptions,o=i.interactivity;if(o.events.onHover.enable&&e.interactivity.status===rt.mouseMoveEvent){const s=e.interactivity.mouse.position;if(!s)return;const n=e.retina.grabModeDistance,a=e.particles.quadTree.queryCircle(s,n);for(const r of a){const a=F(r.getPosition(),s);if(a<=n){const l=o.modes.grab.links,c=l.opacity,d=c-a*c/n;if(d<=0)continue;const h=null!==(t=l.color)&&void 0!==t?t:r.options.links.color;if(!e.particles.grabLineColor){const t=i.interactivity.modes.grab.links;e.particles.grabLineColor=It(h,t.blink,t.consent)}const u=Tt(r,void 0,e.particles.grabLineColor);if(!u)return;e.canvas.drawGrabLine(r,u,d,s)}}}}}class ls extends ts{constructor(t){super(t)}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events,s=o.onDiv,n=tt(l.repulse,s);if(!(n||o.onHover.enable&&i.position||o.onClick.enable&&i.clickPosition))return!1;const r=o.onHover.mode,d=o.onClick.mode;return U(c.repulse,r)||U(a.repulse,d)||n}reset(){}interact(){const t=this.container,e=t.actualOptions,i=t.interactivity.status===rt.mouseMoveEvent,o=e.interactivity.events,s=o.onHover.enable,n=o.onHover.mode,r=o.onClick.enable,d=o.onClick.mode,h=o.onDiv;i&&s&&U(c.repulse,n)?this.hoverRepulse():r&&U(a.repulse,d)?this.clickRepulse():et(l.repulse,h,((t,e)=>this.singleSelectorRepulse(t,e)))}singleSelectorRepulse(t,e){const i=this.container,o=document.querySelectorAll(t);o.length&&o.forEach((t=>{const o=t,s=i.retina.pixelRatio,n={x:(o.offsetLeft+o.offsetWidth/2)*s,y:(o.offsetTop+o.offsetHeight/2)*s},a=o.offsetWidth/2*s,r=e.type===k.circle?new Qt(n.x,n.y,a):new Zt(o.offsetLeft*s,o.offsetTop*s,o.offsetWidth*s,o.offsetHeight*s),l=ot(i.actualOptions.interactivity.modes.repulse.divs,o);this.processRepulse(n,a,r,l)}))}hoverRepulse(){const t=this.container,e=t.interactivity.mouse.position;if(!e)return;const i=t.retina.repulseModeDistance;this.processRepulse(e,i,new Qt(e.x,e.y,i))}processRepulse(t,e,i,o){var s;const n=this.container,a=n.particles.quadTree.query(i),r=n.actualOptions.interactivity.modes.repulse;for(const i of a){const{dx:n,dy:a,distance:l}=L(i.position,t),c=(null!==(s=null==o?void 0:o.speed)&&void 0!==s?s:r.speed)*r.factor,d=O(B(1-l/e,r.easing)*c,0,r.maxSpeed),h=P.create(0===l?c:n/l*d,0===l?c:a/l*d);i.position.addTo(h)}}clickRepulse(){const t=this.container;if(t.repulse.finish||(t.repulse.count||(t.repulse.count=0),t.repulse.count++,t.repulse.count===t.particles.count&&(t.repulse.finish=!0)),t.repulse.clicking){const e=t.retina.repulseModeDistance,i=Math.pow(e/6,3),o=t.interactivity.mouse.clickPosition;if(void 0===o)return;const s=new Qt(o.x,o.y,i),n=t.particles.quadTree.query(s);for(const e of n){const{dx:s,dy:n,distance:a}=L(o,e.position),r=a**2,l=t.actualOptions.interactivity.modes.repulse.speed,c=-i*l/r;if(r<=i){t.repulse.particles.push(e);const i=P.create(s,n);i.length=c,e.velocity.setTo(i)}}}else if(!1===t.repulse.clicking){for(const e of t.repulse.particles)e.velocity.setTo(e.initialVelocity);t.repulse.particles=[]}}}class cs extends ts{constructor(t){super(t),this.delay=0}interact(t){var e,i,o,s;if(!this.container.retina.reduceFactor)return;const n=this.container,a=n.actualOptions.interactivity.modes.trail,r=1e3*a.delay/this.container.retina.reduceFactor;if(this.delay<r&&(this.delay+=t.value),this.delay<r)return;let l=!0;a.pauseOnStop&&(n.interactivity.mouse.position===this.lastPosition||(null===(e=n.interactivity.mouse.position)||void 0===e?void 0:e.x)===(null===(i=this.lastPosition)||void 0===i?void 0:i.x)&&(null===(o=n.interactivity.mouse.position)||void 0===o?void 0:o.y)===(null===(s=this.lastPosition)||void 0===s?void 0:s.y))&&(l=!1),n.interactivity.mouse.position?this.lastPosition={x:n.interactivity.mouse.position.x,y:n.interactivity.mouse.position.y}:delete this.lastPosition,l&&n.particles.push(a.quantity,n.interactivity.mouse,a.particles),this.delay-=r}isEnabled(){const t=this.container,e=t.actualOptions,i=t.interactivity.mouse,o=e.interactivity.events;return i.clicking&&i.inside&&!!i.position&&U(a.trail,o.onClick.mode)||i.inside&&!!i.position&&U(c.trail,o.onHover.mode)}reset(){}}class ds{constructor(t){this.container=t,this.type=g.Particles}}class hs extends ds{constructor(t){super(t)}interact(t){var e;const i=this.container,o=null!==(e=t.retina.attractDistance)&&void 0!==e?e:i.retina.attractDistance,s=t.getPosition(),n=i.particles.quadTree.queryCircle(s,o);for(const e of n){if(t===e||!e.options.move.attract.enable||e.destroyed||e.spawning)continue;const i=e.getPosition(),{dx:o,dy:n}=L(s,i),a=t.options.move.attract.rotate,r=o/(1e3*a.x),l=n/(1e3*a.y),c=e.size.value/t.size.value,d=1/c;t.velocity.x-=r*c,t.velocity.y-=l*c,e.velocity.x+=r*d,e.velocity.y+=l*d}}isEnabled(t){return t.options.move.attract.enable}reset(){}}function us(t,e){nt(st(t),st(e))}class vs extends ds{constructor(t){super(t)}isEnabled(t){return t.options.collisions.enable}reset(){}interact(t){const e=this.container,i=t.getPosition(),o=t.getRadius(),s=e.particles.quadTree.queryCircle(i,2*o);for(const e of s){if(t===e||!e.options.collisions.enable||t.options.collisions.mode!==e.options.collisions.mode||e.destroyed||e.spawning)continue;const s=e.getPosition();if(Math.round(i.z)!==Math.round(s.z))continue;F(i,s)<=o+e.getRadius()&&this.resolveCollision(t,e)}}resolveCollision(t,e){switch(t.options.collisions.mode){case d.absorb:this.absorb(t,e);break;case d.bounce:us(t,e);break;case d.destroy:!function(t,e){t.unbreakable||e.unbreakable||us(t,e),void 0===t.getRadius()&&void 0!==e.getRadius()?t.destroy():void 0!==t.getRadius()&&void 0===e.getRadius()?e.destroy():void 0!==t.getRadius()&&void 0!==e.getRadius()&&(t.getRadius()>=e.getRadius()?e.destroy():t.destroy())}(t,e)}}absorb(t,e){const i=this.container,o=i.fpsLimit/1e3;if(void 0===t.getRadius()&&void 0!==e.getRadius())t.destroy();else if(void 0!==t.getRadius()&&void 0===e.getRadius())e.destroy();else if(void 0!==t.getRadius()&&void 0!==e.getRadius())if(t.getRadius()>=e.getRadius()){const s=O(t.getRadius()/e.getRadius(),0,e.getRadius())*o;t.size.value+=s,e.size.value-=s,e.getRadius()<=i.retina.pixelRatio&&(e.size.value=0,e.destroy())}else{const s=O(e.getRadius()/t.getRadius(),0,t.getRadius())*o;t.size.value-=s,e.size.value+=s,t.getRadius()<=i.retina.pixelRatio&&(t.size.value=0,t.destroy())}}}function ps(t,e,i,o,s){let n=F(t,e);if(!s||n<=i)return n;if(n=F(t,{x:e.x-o.width,y:e.y}),n<=i)return n;if(n=F(t,{x:e.x-o.width,y:e.y-o.height}),n<=i)return n;return n=F(t,{x:e.x,y:e.y-o.height}),n}class fs extends ds{constructor(t){super(t)}isEnabled(t){return t.options.links.enable}reset(){}interact(t){var e;t.links=[];const i=t.getPosition(),o=this.container,s=o.canvas.size;if(i.x<0||i.y<0||i.x>s.width||i.y>s.height)return;const n=t.options.links,a=n.opacity,r=null!==(e=t.retina.linksDistance)&&void 0!==e?e:o.retina.linksDistance,l=n.warp,c=l?new Kt(i.x,i.y,r,s):new Qt(i.x,i.y,r),d=o.particles.quadTree.query(c);for(const e of d){const o=e.options.links;if(t===e||!o.enable||n.id!==o.id||e.spawning||e.destroyed||-1!==t.links.map((t=>t.destination)).indexOf(e)||-1!==e.links.map((t=>t.destination)).indexOf(t))continue;const c=e.getPosition();if(c.x<0||c.y<0||c.x>s.width||c.y>s.height)continue;const d=ps(i,c,r,s,l&&o.warp);if(d>r)return;const h=(1-d/r)*a;this.setColor(t),t.links.push({destination:e,opacity:h})}}setColor(t){const e=this.container,i=t.options.links;let o=void 0===i.id?e.particles.linksColor:e.particles.linksColors.get(i.id);if(!o){o=It(i.color,i.blink,i.consent),void 0===i.id?e.particles.linksColor=o:e.particles.linksColors.set(i.id,o)}}}class ys{constructor(t){this.container=t}particleCreated(t){t.links=[]}particleDestroyed(t){t.links=[]}drawParticle(t,e){const i=e,o=this.container,s=o.particles,n=e.options;if(i.links.length>0){t.save();const e=i.links.filter((t=>o.particles.getLinkFrequency(i,t.destination)<=n.links.frequency));for(const t of e){const a=t.destination;if(n.links.triangles.enable){const r=e.map((t=>t.destination)),l=a.links.filter((t=>o.particles.getLinkFrequency(a,t.destination)<=a.options.links.frequency&&r.indexOf(t.destination)>=0));if(l.length)for(const e of l){const o=e.destination;s.getTriangleFrequency(i,a,o)>n.links.triangles.frequency||this.drawLinkTriangle(i,t,e)}}t.opacity>0&&o.retina.linksWidth>0&&this.drawLinkLine(i,t)}t.restore()}}drawLinkTriangle(t,e,i){var o;const s=this.container,n=s.actualOptions,a=e.destination,r=i.destination,l=t.options.links.triangles,c=null!==(o=l.opacity)&&void 0!==o?o:(e.opacity+i.opacity)/2;if(c<=0)return;const d=t.getPosition(),h=a.getPosition(),u=r.getPosition();s.canvas.draw((e=>{if(F(d,h)>s.retina.linksDistance||F(u,h)>s.retina.linksDistance||F(u,d)>s.retina.linksDistance)return;let i=dt(l.color);if(!i){const e=t.options.links,o=void 0!==e.id?s.particles.linksColors.get(e.id):s.particles.linksColor;i=Tt(t,a,o)}i&&Vt(e,d,h,u,n.backgroundMask.enable,n.backgroundMask.composite,i,c)}))}drawLinkLine(t,e){const i=this.container,o=i.actualOptions,s=e.destination;let n=e.opacity;const a=t.getPosition(),r=s.getPosition();i.canvas.draw((e=>{var l,c;let d;const h=t.options.twinkle.lines;if(h.enable){const t=h.frequency,e=dt(h.color);Math.random()<t&&void 0!==e&&(d=e,n=h.opacity)}if(!d){const e=t.options.links,o=void 0!==e.id?i.particles.linksColors.get(e.id):i.particles.linksColor;d=Tt(t,s,o)}if(!d)return;const u=null!==(l=t.retina.linksWidth)&&void 0!==l?l:i.retina.linksWidth,v=null!==(c=t.retina.linksDistance)&&void 0!==c?c:i.retina.linksDistance;Ht(e,u,a,r,v,i.canvas.size,t.options.links.warp,o.backgroundMask.enable,o.backgroundMask.composite,d,n,t.options.links.shadow)}))}}class ms{constructor(){this.id="links"}getPlugin(t){return new ys(t)}needsPlugin(){return!0}loadOptions(){}}function bs(t){!function(t){t.addInteractor("particlesLinks",(t=>new fs(t)))}(t),function(t){const e=new ms;t.addPlugin(e)}(t)}function gs(t){!function(t){t.addInteractor("externalAttract",(t=>new es(t)))}(t),function(t){t.addInteractor("externalBounce",(t=>new is(t)))}(t),function(t){t.addInteractor("externalBubble",(t=>new ns(t)))}(t),function(t){t.addInteractor("externalConnect",(t=>new as(t)))}(t),function(t){t.addInteractor("externalGrab",(t=>new rs(t)))}(t),function(t){t.addInteractor("externalRepulse",(t=>new ls(t)))}(t),function(t){t.addInteractor("externalTrail",(t=>new cs(t)))}(t),function(t){t.addInteractor("particlesAttract",(t=>new hs(t)))}(t),function(t){t.addInteractor("particlesCollisions",(t=>new vs(t)))}(t),bs(t),function(t){t.addShape("circle",new Mo)}(t),function(t){const e=new Ro;t.addShape("image",e),t.addShape("images",e)}(t),function(t){t.addShape("line",new To)}(t),Ao(t),function(t){const e=new Fo;t.addShape("edge",e),t.addShape("square",e)}(t),function(t){t.addShape("star",new qo)}(t),function(t){const e=new Vo;for(const i of Ho)t.addShape(i,e)}(t),function(t){t.addParticleUpdater("life",(t=>new $o(t)))}(t),function(t){t.addParticleUpdater("opacity",(t=>new Go(t)))}(t),function(t){t.addParticleUpdater("size",(()=>new No))}(t),function(t){t.addParticleUpdater("angle",(t=>new Bo(t)))}(t),function(t){t.addParticleUpdater("tilt",(t=>new Zo(t)))}(t),function(t){t.addParticleUpdater("roll",(()=>new Qo))}(t),function(t){t.addParticleUpdater("wobble",(t=>new Ko(t)))}(t),function(t){t.addParticleUpdater("color",(t=>new Wo(t)))}(t),function(t){t.addParticleUpdater("strokeColor",(t=>new Xo(t)))}(t),function(t){t.addParticleUpdater("outModes",(t=>new Yo(t)))}(t)}const ws=new ko;ws.init(),gs(ws);const{particlesJS:xs,pJSDom:ks}=(t=>{const e=(e,i)=>t.load(e,i);e.load=(e,i,o)=>{t.loadJSON(e,i).then((t=>{t&&o(t)})).catch((()=>{o(void 0)}))},e.setOnClickHandler=e=>{t.setOnClickHandler(e)};return{particlesJS:e,pJSDom:t.dom()}})(ws);return e})()}));