@tsparticles/engine 4.0.0-alpha.8 → 4.0.0-beta.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 (274) hide show
  1. package/164.min.js +1 -0
  2. package/README.md +41 -7
  3. package/browser/Core/Canvas.js +238 -137
  4. package/browser/Core/Container.js +80 -74
  5. package/browser/Core/Engine.js +43 -64
  6. package/browser/Core/Particle.js +182 -169
  7. package/browser/Core/Particles.js +187 -138
  8. package/browser/Core/Retina.js +5 -0
  9. package/browser/Core/Utils/Constants.js +2 -2
  10. package/browser/Core/Utils/EventListeners.js +67 -63
  11. package/browser/Core/Utils/Ranges.js +29 -10
  12. package/browser/Core/Utils/SpatialHashGrid.js +102 -0
  13. package/browser/Core/Utils/Vectors.js +17 -18
  14. package/browser/Options/Classes/AnimatableColor.js +1 -0
  15. package/browser/Options/Classes/AnimationOptions.js +8 -0
  16. package/browser/Options/Classes/Background/Background.js +6 -0
  17. package/browser/Options/Classes/ColorAnimation.js +12 -1
  18. package/browser/Options/Classes/FullScreen/FullScreen.js +2 -0
  19. package/browser/Options/Classes/HslAnimation.js +4 -5
  20. package/browser/Options/Classes/Options.js +63 -4
  21. package/browser/Options/Classes/OptionsColor.js +1 -0
  22. package/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js +2 -0
  23. package/browser/Options/Classes/Particles/Effect/Effect.js +3 -4
  24. package/browser/Options/Classes/Particles/Fill.js +28 -0
  25. package/browser/Options/Classes/Particles/Move/Move.js +17 -3
  26. package/browser/Options/Classes/Particles/Move/MoveAngle.js +2 -0
  27. package/browser/Options/Classes/Particles/Move/MoveCenter.js +4 -0
  28. package/browser/Options/Classes/Particles/Move/MoveGravity.js +4 -0
  29. package/browser/Options/Classes/Particles/Move/OutModes.js +5 -0
  30. package/browser/Options/Classes/Particles/Move/Path/MovePath.js +5 -0
  31. package/browser/Options/Classes/Particles/Move/Spin.js +3 -0
  32. package/browser/Options/Classes/Particles/Number/ParticlesDensity.js +3 -0
  33. package/browser/Options/Classes/Particles/Number/ParticlesNumber.js +3 -0
  34. package/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js +2 -0
  35. package/browser/Options/Classes/Particles/Opacity/Opacity.js +1 -0
  36. package/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -0
  37. package/browser/Options/Classes/Particles/ParticlesOptions.js +25 -5
  38. package/browser/Options/Classes/Particles/Shape/Shape.js +3 -4
  39. package/browser/Options/Classes/Particles/Size/Size.js +1 -0
  40. package/browser/Options/Classes/Particles/Size/SizeAnimation.js +1 -0
  41. package/browser/Options/Classes/Particles/Stroke.js +3 -0
  42. package/browser/Options/Classes/Particles/ZIndex/ZIndex.js +3 -0
  43. package/browser/Options/Classes/ResizeEvent.js +2 -0
  44. package/browser/Options/Classes/ValueWithRandom.js +3 -4
  45. package/browser/Utils/CanvasUtils.js +44 -51
  46. package/browser/Utils/ColorUtils.js +30 -19
  47. package/browser/Utils/EventDispatcher.js +1 -0
  48. package/browser/Utils/MathUtils.js +12 -7
  49. package/browser/Utils/Utils.js +109 -31
  50. package/browser/exports.js +1 -2
  51. package/cjs/Core/Canvas.js +238 -137
  52. package/cjs/Core/Container.js +80 -74
  53. package/cjs/Core/Engine.js +43 -64
  54. package/cjs/Core/Particle.js +182 -169
  55. package/cjs/Core/Particles.js +187 -138
  56. package/cjs/Core/Retina.js +5 -0
  57. package/cjs/Core/Utils/Constants.js +2 -2
  58. package/cjs/Core/Utils/EventListeners.js +67 -63
  59. package/cjs/Core/Utils/Ranges.js +29 -10
  60. package/cjs/Core/Utils/SpatialHashGrid.js +102 -0
  61. package/cjs/Core/Utils/Vectors.js +17 -18
  62. package/cjs/Options/Classes/AnimatableColor.js +1 -0
  63. package/cjs/Options/Classes/AnimationOptions.js +8 -0
  64. package/cjs/Options/Classes/Background/Background.js +6 -0
  65. package/cjs/Options/Classes/ColorAnimation.js +12 -1
  66. package/cjs/Options/Classes/FullScreen/FullScreen.js +2 -0
  67. package/cjs/Options/Classes/HslAnimation.js +4 -5
  68. package/cjs/Options/Classes/Options.js +63 -4
  69. package/cjs/Options/Classes/OptionsColor.js +1 -0
  70. package/cjs/Options/Classes/Particles/Bounce/ParticlesBounce.js +2 -0
  71. package/cjs/Options/Classes/Particles/Effect/Effect.js +3 -4
  72. package/cjs/Options/Classes/Particles/Fill.js +28 -0
  73. package/cjs/Options/Classes/Particles/Move/Move.js +17 -3
  74. package/cjs/Options/Classes/Particles/Move/MoveAngle.js +2 -0
  75. package/cjs/Options/Classes/Particles/Move/MoveCenter.js +4 -0
  76. package/cjs/Options/Classes/Particles/Move/MoveGravity.js +4 -0
  77. package/cjs/Options/Classes/Particles/Move/OutModes.js +5 -0
  78. package/cjs/Options/Classes/Particles/Move/Path/MovePath.js +5 -0
  79. package/cjs/Options/Classes/Particles/Move/Spin.js +3 -0
  80. package/cjs/Options/Classes/Particles/Number/ParticlesDensity.js +3 -0
  81. package/cjs/Options/Classes/Particles/Number/ParticlesNumber.js +3 -0
  82. package/cjs/Options/Classes/Particles/Number/ParticlesNumberLimit.js +2 -0
  83. package/cjs/Options/Classes/Particles/Opacity/Opacity.js +1 -0
  84. package/cjs/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -0
  85. package/cjs/Options/Classes/Particles/ParticlesOptions.js +25 -5
  86. package/cjs/Options/Classes/Particles/Shape/Shape.js +3 -4
  87. package/cjs/Options/Classes/Particles/Size/Size.js +1 -0
  88. package/cjs/Options/Classes/Particles/Size/SizeAnimation.js +1 -0
  89. package/cjs/Options/Classes/Particles/Stroke.js +3 -0
  90. package/cjs/Options/Classes/Particles/ZIndex/ZIndex.js +3 -0
  91. package/cjs/Options/Classes/ResizeEvent.js +2 -0
  92. package/cjs/Options/Classes/ValueWithRandom.js +3 -4
  93. package/cjs/Utils/CanvasUtils.js +44 -51
  94. package/cjs/Utils/ColorUtils.js +30 -19
  95. package/cjs/Utils/EventDispatcher.js +1 -0
  96. package/cjs/Utils/MathUtils.js +12 -7
  97. package/cjs/Utils/Utils.js +109 -31
  98. package/cjs/exports.js +1 -2
  99. package/dist_browser_Core_Container_js.js +12 -12
  100. package/esm/Core/Canvas.js +238 -137
  101. package/esm/Core/Container.js +80 -74
  102. package/esm/Core/Engine.js +43 -64
  103. package/esm/Core/Particle.js +182 -169
  104. package/esm/Core/Particles.js +187 -138
  105. package/esm/Core/Retina.js +5 -0
  106. package/esm/Core/Utils/Constants.js +2 -2
  107. package/esm/Core/Utils/EventListeners.js +67 -63
  108. package/esm/Core/Utils/Ranges.js +29 -10
  109. package/esm/Core/Utils/SpatialHashGrid.js +102 -0
  110. package/esm/Core/Utils/Vectors.js +17 -18
  111. package/esm/Options/Classes/AnimatableColor.js +1 -0
  112. package/esm/Options/Classes/AnimationOptions.js +8 -0
  113. package/esm/Options/Classes/Background/Background.js +6 -0
  114. package/esm/Options/Classes/ColorAnimation.js +12 -1
  115. package/esm/Options/Classes/FullScreen/FullScreen.js +2 -0
  116. package/esm/Options/Classes/HslAnimation.js +4 -5
  117. package/esm/Options/Classes/Options.js +63 -4
  118. package/esm/Options/Classes/OptionsColor.js +1 -0
  119. package/esm/Options/Classes/Particles/Bounce/ParticlesBounce.js +2 -0
  120. package/esm/Options/Classes/Particles/Effect/Effect.js +3 -4
  121. package/esm/Options/Classes/Particles/Fill.js +28 -0
  122. package/esm/Options/Classes/Particles/Move/Move.js +17 -3
  123. package/esm/Options/Classes/Particles/Move/MoveAngle.js +2 -0
  124. package/esm/Options/Classes/Particles/Move/MoveCenter.js +4 -0
  125. package/esm/Options/Classes/Particles/Move/MoveGravity.js +4 -0
  126. package/esm/Options/Classes/Particles/Move/OutModes.js +5 -0
  127. package/esm/Options/Classes/Particles/Move/Path/MovePath.js +5 -0
  128. package/esm/Options/Classes/Particles/Move/Spin.js +3 -0
  129. package/esm/Options/Classes/Particles/Number/ParticlesDensity.js +3 -0
  130. package/esm/Options/Classes/Particles/Number/ParticlesNumber.js +3 -0
  131. package/esm/Options/Classes/Particles/Number/ParticlesNumberLimit.js +2 -0
  132. package/esm/Options/Classes/Particles/Opacity/Opacity.js +1 -0
  133. package/esm/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -0
  134. package/esm/Options/Classes/Particles/ParticlesOptions.js +25 -5
  135. package/esm/Options/Classes/Particles/Shape/Shape.js +3 -4
  136. package/esm/Options/Classes/Particles/Size/Size.js +1 -0
  137. package/esm/Options/Classes/Particles/Size/SizeAnimation.js +1 -0
  138. package/esm/Options/Classes/Particles/Stroke.js +3 -0
  139. package/esm/Options/Classes/Particles/ZIndex/ZIndex.js +3 -0
  140. package/esm/Options/Classes/ResizeEvent.js +2 -0
  141. package/esm/Options/Classes/ValueWithRandom.js +3 -4
  142. package/esm/Utils/CanvasUtils.js +44 -51
  143. package/esm/Utils/ColorUtils.js +30 -19
  144. package/esm/Utils/EventDispatcher.js +1 -0
  145. package/esm/Utils/MathUtils.js +12 -7
  146. package/esm/Utils/Utils.js +109 -31
  147. package/esm/exports.js +1 -2
  148. package/package.json +1 -1
  149. package/report.html +1 -1
  150. package/scripts/install.js +4 -20
  151. package/tsparticles.engine.js +93 -91
  152. package/tsparticles.engine.min.js +2 -2
  153. package/types/Core/Canvas.d.ts +17 -2
  154. package/types/Core/Container.d.ts +3 -7
  155. package/types/Core/Engine.d.ts +13 -20
  156. package/types/Core/Interfaces/IColorManager.d.ts +0 -1
  157. package/types/Core/Interfaces/IContainerPlugin.d.ts +2 -1
  158. package/types/Core/Interfaces/IPalette.d.ts +7 -0
  159. package/types/Core/Interfaces/IParticleOpacityData.d.ts +1 -0
  160. package/types/Core/Interfaces/IParticleValueAnimation.d.ts +3 -3
  161. package/types/Core/Interfaces/IShapeDrawData.d.ts +8 -0
  162. package/types/Core/Interfaces/IShapeDrawer.d.ts +0 -1
  163. package/types/Core/Interfaces/IShapeValues.d.ts +0 -1
  164. package/types/Core/Particle.d.ts +3 -7
  165. package/types/Core/Particles.d.ts +15 -7
  166. package/types/Core/Utils/Constants.d.ts +2 -2
  167. package/types/Core/Utils/Ranges.d.ts +4 -1
  168. package/types/Core/Utils/SpatialHashGrid.d.ts +25 -0
  169. package/types/Core/Utils/Vectors.d.ts +8 -10
  170. package/types/Options/Classes/ColorAnimation.d.ts +3 -1
  171. package/types/Options/Classes/HslAnimation.d.ts +3 -4
  172. package/types/Options/Classes/Options.d.ts +2 -0
  173. package/types/Options/Classes/Particles/Effect/Effect.d.ts +0 -1
  174. package/types/Options/Classes/Particles/Fill.d.ts +12 -0
  175. package/types/Options/Classes/Particles/Move/Move.d.ts +0 -2
  176. package/types/Options/Classes/Particles/ParticlesOptions.d.ts +2 -2
  177. package/types/Options/Classes/Particles/Shape/Shape.d.ts +0 -1
  178. package/types/Options/Classes/ValueWithRandom.d.ts +0 -1
  179. package/types/Options/Interfaces/IColorAnimation.d.ts +2 -0
  180. package/types/Options/Interfaces/IOptions.d.ts +1 -0
  181. package/types/Options/Interfaces/Particles/Effect/IEffect.d.ts +0 -1
  182. package/types/Options/Interfaces/Particles/IFill.d.ts +9 -0
  183. package/types/Options/Interfaces/Particles/IParticlesOptions.d.ts +2 -2
  184. package/types/Options/Interfaces/Particles/IStroke.d.ts +2 -2
  185. package/types/Options/Interfaces/Particles/Move/IMove.d.ts +0 -2
  186. package/types/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -1
  187. package/types/Types/EngineInitializers.d.ts +6 -3
  188. package/types/Utils/CanvasUtils.d.ts +6 -12
  189. package/types/Utils/ColorUtils.d.ts +3 -2
  190. package/types/Utils/MathUtils.d.ts +2 -0
  191. package/types/Utils/Utils.d.ts +8 -1
  192. package/types/export-types.d.ts +3 -5
  193. package/types/exports.d.ts +1 -2
  194. package/umd/Core/Canvas.js +237 -136
  195. package/umd/Core/Container.js +80 -74
  196. package/umd/Core/Engine.js +42 -63
  197. package/umd/Core/Particle.js +183 -170
  198. package/umd/Core/Particles.js +187 -138
  199. package/umd/Core/Retina.js +5 -0
  200. package/umd/Core/Utils/Constants.js +3 -3
  201. package/umd/Core/Utils/EventListeners.js +67 -63
  202. package/umd/Core/Utils/Ranges.js +28 -9
  203. package/umd/Core/Utils/SpatialHashGrid.js +116 -0
  204. package/umd/Core/Utils/Vectors.js +17 -18
  205. package/umd/Options/Classes/AnimatableColor.js +1 -0
  206. package/umd/Options/Classes/AnimationOptions.js +8 -0
  207. package/umd/Options/Classes/Background/Background.js +6 -0
  208. package/umd/Options/Classes/ColorAnimation.js +12 -1
  209. package/umd/Options/Classes/FullScreen/FullScreen.js +2 -0
  210. package/umd/Options/Classes/HslAnimation.js +5 -6
  211. package/umd/Options/Classes/Options.js +63 -4
  212. package/umd/Options/Classes/OptionsColor.js +1 -0
  213. package/umd/Options/Classes/Particles/Bounce/ParticlesBounce.js +2 -0
  214. package/umd/Options/Classes/Particles/Effect/Effect.js +3 -4
  215. package/umd/Options/Classes/Particles/Fill.js +42 -0
  216. package/umd/Options/Classes/Particles/Move/Move.js +18 -4
  217. package/umd/Options/Classes/Particles/Move/MoveAngle.js +2 -0
  218. package/umd/Options/Classes/Particles/Move/MoveCenter.js +4 -0
  219. package/umd/Options/Classes/Particles/Move/MoveGravity.js +4 -0
  220. package/umd/Options/Classes/Particles/Move/OutModes.js +5 -0
  221. package/umd/Options/Classes/Particles/Move/Path/MovePath.js +5 -0
  222. package/umd/Options/Classes/Particles/Move/Spin.js +3 -0
  223. package/umd/Options/Classes/Particles/Number/ParticlesDensity.js +3 -0
  224. package/umd/Options/Classes/Particles/Number/ParticlesNumber.js +3 -0
  225. package/umd/Options/Classes/Particles/Number/ParticlesNumberLimit.js +2 -0
  226. package/umd/Options/Classes/Particles/Opacity/Opacity.js +1 -0
  227. package/umd/Options/Classes/Particles/Opacity/OpacityAnimation.js +1 -0
  228. package/umd/Options/Classes/Particles/ParticlesOptions.js +26 -6
  229. package/umd/Options/Classes/Particles/Shape/Shape.js +3 -4
  230. package/umd/Options/Classes/Particles/Size/Size.js +1 -0
  231. package/umd/Options/Classes/Particles/Size/SizeAnimation.js +1 -0
  232. package/umd/Options/Classes/Particles/Stroke.js +3 -0
  233. package/umd/Options/Classes/Particles/ZIndex/ZIndex.js +3 -0
  234. package/umd/Options/Classes/ResizeEvent.js +2 -0
  235. package/umd/Options/Classes/ValueWithRandom.js +3 -4
  236. package/umd/Utils/CanvasUtils.js +44 -53
  237. package/umd/Utils/ColorUtils.js +30 -18
  238. package/umd/Utils/EventDispatcher.js +1 -0
  239. package/umd/Utils/MathUtils.js +14 -7
  240. package/umd/Utils/Utils.js +111 -32
  241. package/umd/exports.js +2 -3
  242. package/794.min.js +0 -2
  243. package/794.min.js.LICENSE.txt +0 -1
  244. package/browser/Core/Utils/Point.js +0 -6
  245. package/browser/Core/Utils/QuadTree.js +0 -59
  246. package/browser/Options/Classes/Particles/Move/MoveAttract.js +0 -33
  247. package/cjs/Core/Utils/Point.js +0 -6
  248. package/cjs/Core/Utils/QuadTree.js +0 -59
  249. package/cjs/Options/Classes/Particles/Move/MoveAttract.js +0 -33
  250. package/esm/Core/Interfaces/IMovePathGenerator.js +0 -1
  251. package/esm/Core/Interfaces/IParticleMover.js +0 -1
  252. package/esm/Core/Utils/Point.js +0 -6
  253. package/esm/Core/Utils/QuadTree.js +0 -59
  254. package/esm/Options/Classes/Particles/Move/MoveAttract.js +0 -33
  255. package/esm/Options/Interfaces/Particles/Move/IMoveAttract.js +0 -1
  256. package/tsparticles.engine.min.js.LICENSE.txt +0 -1
  257. package/types/Core/Interfaces/IMovePathGenerator.d.ts +0 -10
  258. package/types/Core/Interfaces/IParticleMover.d.ts +0 -7
  259. package/types/Core/Utils/Point.d.ts +0 -7
  260. package/types/Core/Utils/QuadTree.d.ts +0 -18
  261. package/types/Options/Classes/Particles/Move/MoveAttract.d.ts +0 -12
  262. package/types/Options/Interfaces/Particles/Move/IMoveAttract.d.ts +0 -7
  263. package/umd/Core/Utils/Point.js +0 -20
  264. package/umd/Core/Utils/QuadTree.js +0 -73
  265. package/umd/Options/Classes/Particles/Move/MoveAttract.js +0 -47
  266. package/umd/Options/Interfaces/Particles/Move/IMoveAttract.js +0 -12
  267. /package/browser/Core/Interfaces/{IMovePathGenerator.js → IPalette.js} +0 -0
  268. /package/browser/{Core/Interfaces/IParticleMover.js → Options/Interfaces/Particles/IFill.js} +0 -0
  269. /package/{browser/Options/Interfaces/Particles/Move/IMoveAttract.js → cjs/Core/Interfaces/IPalette.js} +0 -0
  270. /package/cjs/{Core/Interfaces/IMovePathGenerator.js → Options/Interfaces/Particles/IFill.js} +0 -0
  271. /package/{cjs/Core/Interfaces/IParticleMover.js → esm/Core/Interfaces/IPalette.js} +0 -0
  272. /package/{cjs/Options/Interfaces/Particles/Move/IMoveAttract.js → esm/Options/Interfaces/Particles/IFill.js} +0 -0
  273. /package/umd/Core/Interfaces/{IMovePathGenerator.js → IPalette.js} +0 -0
  274. /package/umd/{Core/Interfaces/IParticleMover.js → Options/Interfaces/Particles/IFill.js} +0 -0
@@ -1,2 +1,2 @@
1
- /*! For license information please see tsparticles.engine.min.js.LICENSE.txt */
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 n in i)("object"==typeof exports?exports:t)[n]=i[n]}}(this,(()=>(()=>{var t,e,i={302(t,e,i){i.d(e,{AE:()=>z,Al:()=>b,BR:()=>g,E9:()=>D,HQ:()=>$,Kp:()=>C,O2:()=>S,T5:()=>p,TA:()=>T,Tg:()=>P,Tj:()=>M,UC:()=>I,Vh:()=>w,Xs:()=>_,YC:()=>A,hJ:()=>V,hn:()=>y,lV:()=>v,n0:()=>x,pE:()=>R,q8:()=>f,tG:()=>m,td:()=>L,w3:()=>E,wJ:()=>k,zw:()=>O});var n=i(1680),s=i(7642),o=i(838),a=i(7098),r=i(1292),c=i(8020),l=i(5931),d=i(5652),u=i(1317),h=i(8095);function f(){return"undefined"!=typeof matchMedia}function p(){return globalThis.document}function v(t){if(f())return matchMedia(t)}function g(t){if("undefined"!=typeof IntersectionObserver)return new IntersectionObserver(t)}function m(t){if("undefined"!=typeof MutationObserver)return new MutationObserver(t)}function y(t,e){return t===e||(0,o.cy)(e)&&e.includes(t)}async function b(t,e){try{await p().fonts.load(`${e??"400"} 36px '${t??"Verdana"}'`)}catch{}}function x(t){return Math.floor((0,n.G0)()*t.length)}function w(t,e,i=!0){return t[void 0!==e&&i?e%t.length:x(t)]}function M(t,e,i,n,s){return S(z(t,n??0),e,i,s)}function S(t,e,i,n){let s=!0;return n&&n!==l.v.bottom||(s=t.top<e.height+i.x),!s||n&&n!==l.v.left||(s=t.right>i.x),!s||n&&n!==l.v.right||(s=t.left<e.width+i.y),!s||n&&n!==l.v.top||(s=t.bottom>i.y),s}function z(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function O(t,...e){for(const i of e){if(null==i)continue;if(!(0,o.Gv)(i)){t=i;continue}Array.isArray(i)?Array.isArray(t)||(t=[]):(0,o.Gv)(t)&&!Array.isArray(t)||(t={});for(const e in i){if("__proto__"===e)continue;const n=i[e],s=t;s[e]=(0,o.Gv)(n)&&Array.isArray(n)?n.map((t=>O(s[e],t))):O(s[e],n)}}return t}function P(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:h.M.create((0,n.VG)(t.options.bounce.horizontal.value),(0,n.VG)(t.options.bounce.vertical.value))}}function R(t,e){const{x:i,y:s}=t.velocity.sub(e.velocity),[o,a]=[t.position,e.position],{dx:r,dy:c}=(0,n.vr)(a,o);if(i*r+s*c<0)return;const l=-Math.atan2(c,r),d=t.mass,u=e.mass,h=t.velocity.rotate(l),f=e.velocity.rotate(l),p=(0,n.OW)(h,f,d,u),v=(0,n.OW)(f,h,d,u),g=p.rotate(-l),m=v.rotate(-l);t.velocity.x=g.x*t.factor.x,t.velocity.y=g.y*t.factor.y,e.velocity.x=m.x*e.factor.x,e.velocity.y=m.y*e.factor.y}function k(t,e){return(0,o.cy)(t)?t.map(((t,i)=>e(t,i))):e(t,0)}function T(t,e,i){return(0,o.cy)(t)?w(t,e,i):t}function E(t,e){if((0,o.cy)(t))return t.find(((t,i)=>e(t,i)));return e(t,0)?t:void 0}function _(t,e){const i=t.value,o=t.animation,c={delayTime:(0,n.VG)(o.delay)*s.Xu,enable:o.enable,value:(0,n.VG)(t.value)*e,max:(0,n.W9)(i)*e,min:(0,n.Sg)(i)*e,loops:0,maxLoops:(0,n.VG)(o.count),time:0};if(o.enable){switch(c.decay=1-(0,n.VG)(o.decay),o.mode){case a.g.increase:c.status=r.H.increasing;break;case a.g.decrease:c.status=r.H.decreasing;break;case a.g.random:c.status=(0,n.G0)()>=s.MX?r.H.increasing:r.H.decreasing}const t=o.mode===a.g.auto;switch(o.startValue){case u.S.min:c.value=c.min,t&&(c.status=r.H.increasing);break;case u.S.max:c.value=c.max,t&&(c.status=r.H.decreasing);break;case u.S.random:default:c.value=(0,n.vE)(c),t&&(c.status=(0,n.G0)()>=s.MX?r.H.increasing:r.H.decreasing)}}return c.initialValue=c.value,c}function F(t,e){if(!(t.mode===d.q.percent)){const{mode:e,...i}=t;return i}return"x"in t?{x:t.x/s.a5*e.width,y:t.y/s.a5*e.height}:{width:t.width/s.a5*e.width,height:t.height/s.a5*e.height}}function D(t,e){return F(t,e)}function A(t,e){return F(t,e)}function I(t,e,i,s,o){if(t.destroyed||!e.enable||(e.maxLoops??0)>0&&(e.loops??0)>(e.maxLoops??0))return;const a=(e.velocity??0)*o.factor,l=e.min,d=e.max,u=e.decay??1;if(e.time??=0,(e.delayTime??0)>0&&e.time<(e.delayTime??0)&&(e.time+=o.value),!((e.delayTime??0)>0&&e.time<(e.delayTime??0))){switch(e.status){case r.H.increasing:e.value>=d?(i?e.status=r.H.decreasing:e.value-=d,e.loops??=0,e.loops++):e.value+=a;break;case r.H.decreasing:e.value<=l?(i?e.status=r.H.increasing:e.value+=d,e.loops??=0,e.loops++):e.value-=a}e.velocity&&1!==u&&(e.velocity*=u),function(t,e,i,n,s){switch(e){case c.V.max:i>=s&&t.destroy();break;case c.V.min:i<=n&&t.destroy()}}(t,s,e.value,l,d),e.value=(0,n.qE)(e.value,l,d)}}function L(t){const e=p().createElement("div").style;for(const i in t){const n=t[i];if(!Object.hasOwn(t,i)||(0,o.kZ)(n))continue;const s=t.getPropertyValue?.(n);if(!s)continue;const a=t.getPropertyPriority?.(n);a?e.setProperty(n,s,a):e.setProperty(n,s)}return e}const V=function(t){const e=new Map;return(...i)=>{const n=JSON.stringify(i);if(e.has(n))return e.get(n);const s=t(...i);return e.set(n,s),s}}((function(t){const e=p().createElement("div").style,i={width:"100%",height:"100%",margin:"0",padding:"0",borderWidth:"0",position:"fixed",zIndex:t.toString(10),"z-index":t.toString(10),top:"0",left:"0"};for(const t in i){const n=i[t];void 0!==n&&e.setProperty(t,n)}return e}));function C(t,e,i,n,s){if(n){let n={passive:!0};(0,o.Lm)(s)?n.capture=s:void 0!==s&&(n=s),t.addEventListener(e,i,n)}else{const n=s;t.removeEventListener(e,i,n)}}async function $(t,e,i,n=!1){let s=e.get(t);return s&&!n||(s=await Promise.all([...i.values()].map((e=>e(t)))),e.set(t,s)),s}},511(t,e,i){i.d(e,{N:()=>a});var n=i(6632),s=i(2936),o=i(838);class a{constructor(){this.density=new n.M,this.limit=new s.A,this.value=0}load(t){(0,o.kZ)(t)||(this.density.load(t.density),this.limit.load(t.limit),void 0!==t.value&&(this.value=t.value))}}},541(t,e,i){i.d(e,{h:()=>o});var n=i(838),s=i(1680);class o{constructor(){this.offset=0,this.value=90}load(t){(0,n.kZ)(t)||(void 0!==t.offset&&(this.offset=(0,s.DT)(t.offset)),void 0!==t.value&&(this.value=(0,s.DT)(t.value)))}}},838(t,e,i){function n(t){return"boolean"==typeof t}function s(t){return"string"==typeof t}function o(t){return"number"==typeof t}function a(t){return"function"==typeof t}function r(t){return"object"==typeof t&&null!==t}function c(t){return Array.isArray(t)}function l(t){return null==t}i.d(e,{Et:()=>o,Gv:()=>r,Kg:()=>s,Lm:()=>n,Tn:()=>a,cy:()=>c,kZ:()=>l})},849(t,e,i){i.d(e,{Z:()=>o});var n=i(5652),s=i(838);class o{constructor(){this.x=50,this.y=50,this.mode=n.q.percent,this.radius=0}load(t){(0,s.kZ)(t)||(void 0!==t.x&&(this.x=t.x),void 0!==t.y&&(this.y=t.y),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.radius&&(this.radius=t.radius))}}},913(t,e,i){i.d(e,{AI:()=>c,Jm:()=>r,PV:()=>a});var n=i(7435),s=i(838),o=i(1680);class a{constructor(){this.value=0}load(t){(0,s.kZ)(t)||(0,s.kZ)(t.value)||(this.value=(0,o.DT)(t.value))}}class r extends a{constructor(){super(),this.animation=new n.p}load(t){if(super.load(t),(0,s.kZ)(t))return;const e=t.animation;void 0!==e&&this.animation.load(e)}}class c extends r{constructor(){super(),this.animation=new n.Q}load(t){super.load(t)}}},1152(t,e,i){i.d(e,{y:()=>o});var n=i(302),s=i(838);class o{constructor(){this.close=!0,this.fill=!0,this.options={},this.type="circle"}load(t){if((0,s.kZ)(t))return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=(0,n.zw)(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.fill&&(this.fill=t.fill),void 0!==t.type&&(this.type=t.type)}}},1222(t,e,i){i.d(e,{V:()=>o});var n=i(3254),s=i(838);class o{constructor(){this.color=new n.O,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){(0,s.kZ)(t)||(void 0!==t.color&&(this.color=n.O.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))}}},1292(t,e,i){var n;i.d(e,{H:()=>n}),function(t){t.increasing="increasing",t.decreasing="decreasing"}(n||(n={}))},1317(t,e,i){var n;i.d(e,{S:()=>n}),function(t){t.max="max",t.min="min",t.random="random"}(n||(n={}))},1640(t,e,i){var n;i.d(e,{Y:()=>n}),function(t){t.bounce="bounce",t.none="none",t.out="out",t.destroy="destroy",t.split="split"}(n||(n={}))},1680(t,e,i){i.d(e,{$m:()=>R,AD:()=>f,DT:()=>M,G0:()=>u,JY:()=>P,M3:()=>A,Mh:()=>E,Nx:()=>F,OE:()=>d,OW:()=>k,Sg:()=>x,VG:()=>b,W9:()=>w,Yf:()=>z,e4:()=>h,eh:()=>T,i0:()=>p,jh:()=>m,l1:()=>_,pu:()=>O,px:()=>v,qE:()=>g,qM:()=>D,vE:()=>y,vr:()=>S});var n=i(1953),s=i(7642),o=i(8095),a=i(838);const r=Math.PI/180;let c=Math.random;const l={nextFrame:t=>requestAnimationFrame(t),cancel:t=>{cancelAnimationFrame(t)}};function d(t=Math.random){c=t}function u(){return g(c(),0,1-Number.EPSILON)}function h(t,e){return u()*(e-t)+t}function f(t,e){l.nextFrame=e=>t(e),l.cancel=t=>{e(t)}}function p(t){return l.nextFrame(t)}function v(t){l.cancel(t)}function g(t,e,i){return Math.min(Math.max(t,e),i)}function m(t,e,i,n){return Math.floor((t*i+e*n)/(i+n))}function y(t){const e=w(t);let i=x(t);return e===i&&(i=0),h(i,e)}function b(t){return(0,a.Et)(t)?t:y(t)}function x(t){return(0,a.Et)(t)?t:t.min}function w(t){return(0,a.Et)(t)?t:t.max}function M(t,e){if(t===e||void 0===e&&(0,a.Et)(t))return t;const i=x(t),n=w(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(n,e)}:M(i,n)}function S(t,e){const i=t.x-e.x,n=t.y-e.y;return{dx:i,dy:n,distance:Math.sqrt(i**2+n**2)}}function z(t,e){return S(t,e).distance}function O(t){return t*r}function P(t,e,i){if((0,a.Et)(t))return O(t);switch(t){case n.F.top:return-Math.PI*s.MX;case n.F.topRight:return-Math.PI*s.$G;case n.F.right:return s.Ie;case n.F.bottomRight:return Math.PI*s.$G;case n.F.bottom:return Math.PI*s.MX;case n.F.bottomLeft:return Math.PI*s.Rq;case n.F.left:return Math.PI;case n.F.topLeft:return-Math.PI*s.Rq;case n.F.inside:return Math.atan2(i.y-e.y,i.x-e.x);case n.F.outside:return Math.atan2(e.y-i.y,e.x-i.x);default:return u()*s.R1}}function R(t){const e=o.M.origin;return e.length=1,e.angle=t,e}function k(t,e,i,n){return o.M.create(t.x*(i-n)/(i+n)+e.x*s.gd*n/(i+n),t.y)}function T(t){return void 0!==t.position?.x&&void 0!==t.position.y?{x:t.position.x*t.size.width/s.a5,y:t.position.y*t.size.height/s.a5}:void 0}function E(t){return{x:(t.position?.x??u()*s.a5)*t.size.width/s.a5,y:(t.position?.y??u()*s.a5)*t.size.height/s.a5}}function _(t){const e={x:void 0!==t.position?.x?b(t.position.x):void 0,y:void 0!==t.position?.y?b(t.position.y):void 0};return E({size:t.size,position:e})}function F(t){const{position:e,size:i}=t;return{x:e?.x??u()*i.width,y:e?.y??u()*i.height}}function D(t){const e={x:void 0!==t.position?.x?b(t.position.x):void 0,y:void 0!==t.position?.y?b(t.position.y):void 0};return F({size:t.size,position:e})}function A(t){return t?t.endsWith("%")?parseFloat(t)/s.a5:parseFloat(t):1}},1784(t,e,i){i.d(e,{e:()=>a});var n=i(7435),s=i(838),o=i(1680);class a extends n.p{constructor(){super(),this.offset=0,this.sync=!0}load(t){super.load(t),(0,s.kZ)(t)||void 0!==t.offset&&(this.offset=(0,o.DT)(t.offset))}}},1872(t,e,i){i.d(e,{y:()=>o});var n=i(838),s=i(1680);class o{constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){(0,n.kZ)(t)||(void 0!==t.acceleration&&(this.acceleration=(0,s.DT)(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=(0,s.DT)(t.maxSpeed)))}}},1953(t,e,i){var n;i.d(e,{F:()=>n}),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",t.outside="outside",t.inside="inside"}(n||(n={}))},2037(t,e,i){i.d(e,{J:()=>d});var n=i(302),s=i(838),o=i(1222),a=i(7336),r=i(8907),c=i(9176),l=i(1680);class d{constructor(t,e){this._importPreset=t=>{this.load(this._engine.getPreset(t))},this._engine=t,this._container=e,this.autoPlay=!0,this.background=new o.V,this.clear=!0,this.defaultThemes={},this.delay=0,this.fullScreen=new a.m,this.detectRetina=!0,this.duration=0,this.fpsLimit=120,this.hdr=!0,this.particles=(0,c.y)(this._engine,this._container),this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.resize=new r.z,this.smooth=!1,this.style={},this.zLayers=100}load(t){if((0,s.kZ)(t))return;void 0!==t.preset&&(0,n.wJ)(t.preset,(t=>{this._importPreset(t)})),void 0!==t.autoPlay&&(this.autoPlay=t.autoPlay),void 0!==t.clear&&(this.clear=t.clear),void 0!==t.key&&(this.key=t.key),void 0!==t.name&&(this.name=t.name),void 0!==t.delay&&(this.delay=(0,l.DT)(t.delay));const e=t.detectRetina;void 0!==e&&(this.detectRetina=e),void 0!==t.duration&&(this.duration=(0,l.DT)(t.duration));const i=t.fpsLimit;void 0!==i&&(this.fpsLimit=i),void 0!==t.hdr&&(this.hdr=t.hdr),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 o=t.fullScreen;(0,s.Lm)(o)?this.fullScreen.enable=o:this.fullScreen.load(o),this.particles.load(t.particles),this.resize.load(t.resize),this.style=(0,n.zw)(this.style,t.style),void 0!==t.smooth&&(this.smooth=t.smooth),this._engine.plugins.forEach((e=>{e.loadOptions(this._container,this,t)}))}}},2936(t,e,i){i.d(e,{A:()=>o});var n=i(6423),s=i(838);class o{constructor(){this.mode=n.d.delete,this.value=0}load(t){(0,s.kZ)(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}},2984(t,e,i){var n;i.d(e,{dg:()=>a,jl:()=>r,M_:()=>c}),function(t){t.circle="circle",t.rectangle="rectangle"}(n||(n={}));var s=i(1680),o=i(7642);class a{constructor(t,e,i){this.position={x:t,y:e},this.type=i}}class r extends a{constructor(t,e,i){super(t,e,n.circle),this.radius=i}contains(t){return(0,s.Yf)(t,this.position)<=this.radius}intersects(t){const e=this.position,i=t.position,s=Math.abs(i.x-e.x),a=Math.abs(i.y-e.y),l=this.radius;if(t instanceof r||t.type===n.circle){return l+t.radius>Math.sqrt(s**o.dm+a**o.dm)}if(t instanceof c||t.type===n.rectangle){const e=t,{width:i,height:n}=e.size;return Math.pow(s-i,o.dm)+Math.pow(a-n,o.dm)<=l**o.dm||s<=l+i&&a<=l+n||s<=i||a<=n}return!1}}class c extends a{constructor(t,e,i,s){super(t,e,n.rectangle),this.size={height:s,width:i}}contains(t){const e=this.size.width,i=this.size.height,n=this.position;return t.x>=n.x&&t.x<=n.x+e&&t.y>=n.y&&t.y<=n.y+i}intersects(t){if(t instanceof r)return t.intersects(this);const e=this.size.width,i=this.size.height,n=this.position,s=t.position,o=t instanceof c?t.size:{width:0,height:0},a=o.width,l=o.height;return s.x<n.x+e&&s.x+a>n.x&&s.y<n.y+i&&s.y+l>n.y}}},3079(t,e,i){i.d(e,{R:()=>o});var n=i(838),s=i(1680);class o{constructor(){this.distance=200,this.enable=!1,this.rotate={x:3e3,y:3e3}}load(t){if(!(0,n.kZ)(t)&&(void 0!==t.distance&&(this.distance=(0,s.DT)(t.distance)),void 0!==t.enable&&(this.enable=t.enable),t.rotate)){const e=t.rotate.x;void 0!==e&&(this.rotate.x=e);const i=t.rotate.y;void 0!==i&&(this.rotate.y=i)}}}},3254(t,e,i){i.d(e,{O:()=>s});var n=i(838);class s{constructor(){this.value=""}static create(t,e){const i=new s;return i.load(t),void 0!==e&&((0,n.Kg)(e)||(0,n.cy)(e)?i.load({value:e}):i.load(e)),i}load(t){(0,n.kZ)(t)||(0,n.kZ)(t.value)||(this.value=t.value)}}},3278(t,e,i){i.d(e,{U:()=>v});var n=i(302),s=i(7296),o=i(838);class a{constructor(){this.close=!0,this.fill=!0,this.options={},this.type=[]}load(t){if((0,o.kZ)(t))return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=(0,n.zw)(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.fill&&(this.fill=t.fill),void 0!==t.type&&(this.type=t.type)}}var r=i(3448),c=i(9476),l=i(4467),d=i(511),u=i(1152),h=i(9112),f=i(5611),p=i(9358);class v{constructor(t,e){this._engine=t,this._container=e,this.bounce=new l.w,this.color=new s.A,this.color.value="#fff",this.effect=new a,this.groups={},this.move=new r.y,this.number=new d.N,this.opacity=new c.Y,this.reduceDuplicates=!1,this.shape=new u.y,this.size=new h.o,this.stroke=new f.t,this.zIndex=new p.P}load(t){if((0,o.kZ)(t))return;if(void 0!==t.groups)for(const e of Object.keys(t.groups)){if(!Object.hasOwn(t.groups,e))continue;const i=t.groups[e];void 0!==i&&(this.groups[e]=(0,n.zw)(this.groups[e]??{},i))}void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.bounce.load(t.bounce),this.color.load(s.A.create(this.color,t.color)),this.effect.load(t.effect),this.move.load(t.move),this.number.load(t.number),this.opacity.load(t.opacity),this.shape.load(t.shape),this.size.load(t.size),this.zIndex.load(t.zIndex);const e=t.stroke;if(e&&(this.stroke=(0,n.wJ)(e,(t=>{const e=new f.t;return e.load(t),e}))),this._container){for(const e of this._engine.plugins)e.loadParticlesOptions&&e.loadParticlesOptions(this._container,this,t);const e=this._engine.updaters.get(this._container);if(e)for(const i of e)i.loadOptions&&i.loadOptions(this,t)}}}},3448(t,e,i){i.d(e,{y:()=>f});var n=i(1953),s=i(838),o=i(541),a=i(3079),r=i(849),c=i(1872),l=i(5979),d=i(7897),u=i(6649),h=i(1680);class f{constructor(){this.angle=new o.h,this.attract=new a.R,this.center=new r.Z,this.decay=0,this.distance={},this.direction=n.F.none,this.drift=0,this.enable=!1,this.gravity=new c.y,this.path=new l.v,this.outModes=new d.j,this.random=!1,this.size=!1,this.speed=2,this.spin=new u.t,this.straight=!1,this.vibrate=!1,this.warp=!1}load(t){if((0,s.kZ)(t))return;this.angle.load((0,s.Et)(t.angle)?{value:t.angle}:t.angle),this.attract.load(t.attract),this.center.load(t.center),void 0!==t.decay&&(this.decay=(0,h.DT)(t.decay)),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance=(0,s.Et)(t.distance)?{horizontal:t.distance,vertical:t.distance}:{...t.distance}),void 0!==t.drift&&(this.drift=(0,h.DT)(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const e=t.outModes;void 0!==e&&((0,s.Gv)(e)?this.outModes.load(e):this.outModes.load({default:e})),this.path.load(t.path),void 0!==t.random&&(this.random=t.random),void 0!==t.size&&(this.size=t.size),void 0!==t.speed&&(this.speed=(0,h.DT)(t.speed)),this.spin.load(t.spin),void 0!==t.straight&&(this.straight=t.straight),void 0!==t.vibrate&&(this.vibrate=t.vibrate),void 0!==t.warp&&(this.warp=t.warp)}}},3838(t,e,i){var n;i.d(e,{B:()=>n}),function(t){t.configAdded="configAdded",t.containerInit="containerInit",t.particlesSetup="particlesSetup",t.containerStarted="containerStarted",t.containerStopped="containerStopped",t.containerDestroyed="containerDestroyed",t.containerPaused="containerPaused",t.containerPlay="containerPlay",t.containerBuilt="containerBuilt",t.particleAdded="particleAdded",t.particleDestroyed="particleDestroyed",t.particleRemoved="particleRemoved"}(n||(n={}))},4056(t,e,i){i.d(e,{i:()=>o});var n=i(1784),s=i(838);class o{constructor(){this.h=new n.e,this.s=new n.e,this.l=new n.e}load(t){(0,s.kZ)(t)||(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}},4326(t,e,i){var n;i.d(e,{H:()=>n}),function(t){t.darken="darken",t.enlighten="enlighten"}(n||(n={}))},4467(t,e,i){i.d(e,{w:()=>o});var n=i(6684),s=i(838);class o{constructor(){this.horizontal=new n.F,this.vertical=new n.F}load(t){(0,s.kZ)(t)||(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}},5611(t,e,i){i.d(e,{t:()=>a});var n=i(7296),s=i(838),o=i(1680);class a{constructor(){this.width=0}load(t){(0,s.kZ)(t)||(void 0!==t.color&&(this.color=n.A.create(this.color,t.color)),void 0!==t.width&&(this.width=(0,o.DT)(t.width)),void 0!==t.opacity&&(this.opacity=(0,o.DT)(t.opacity)))}}},5652(t,e,i){var n;i.d(e,{q:()=>n}),function(t){t.precise="precise",t.percent="percent"}(n||(n={}))},5931(t,e,i){var n;i.d(e,{v:()=>n}),function(t){t.bottom="bottom",t.left="left",t.right="right",t.top="top"}(n||(n={}))},5979(t,e,i){i.d(e,{v:()=>a});var n=i(913),s=i(302),o=i(838);class a{constructor(){this.clamp=!0,this.delay=new n.PV,this.enable=!1,this.options={}}load(t){(0,o.kZ)(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=(0,s.zw)(this.options,t.options)))}}},6312(t,e,i){var n;i.d(e,{x:()=>n}),function(t){t.normal="normal",t.inside="inside",t.outside="outside"}(n||(n={}))},6423(t,e,i){var n;i.d(e,{d:()=>n}),function(t){t.delete="delete",t.wait="wait"}(n||(n={}))},6632(t,e,i){i.d(e,{M:()=>s});var n=i(838);class s{constructor(){this.enable=!1,this.width=1920,this.height=1080}load(t){if((0,n.kZ)(t))return;void 0!==t.enable&&(this.enable=t.enable);const e=t.width;void 0!==e&&(this.width=e);const i=t.height;void 0!==i&&(this.height=i)}}},6649(t,e,i){i.d(e,{t:()=>a});var n=i(302),s=i(838),o=i(1680);class a{constructor(){this.acceleration=0,this.enable=!1}load(t){(0,s.kZ)(t)||(void 0!==t.acceleration&&(this.acceleration=(0,o.DT)(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),t.position&&(this.position=(0,n.zw)({},t.position)))}}},6684(t,e,i){i.d(e,{F:()=>s});var n=i(913);class s extends n.PV{constructor(){super(),this.value=1}}},6754(t,e,i){i.d(e,{IU:()=>c,KG:()=>h,Md:()=>r,Sn:()=>a,V6:()=>o,VG:()=>p,Wb:()=>v,gF:()=>f,k:()=>d,p0:()=>l,yx:()=>g,z5:()=>u});var n=i(7642),s=i(4326);function o(t,e,i){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.closePath()}function a(t,e,i){t.fillStyle=i??"rgba(0,0,0,0)",t.fillRect(n.bo.x,n.bo.y,e.width,e.height)}function r(t,e,i,s){i&&(t.globalAlpha=s,t.drawImage(i,n.bo.x,n.bo.y,e.width,e.height),t.globalAlpha=1)}function c(t,e){t.clearRect(n.bo.x,n.bo.y,e.width,e.height)}function l(t){const{container:e,context:i,particle:s,delta:o,colorStyles:a,radius:r,opacity:c,transform:l}=t,v=s.getPosition(),g=s.getTransformData(l);i.setTransform(g.a,g.b,g.c,g.d,v.x,v.y),a.fill&&(i.fillStyle=a.fill);const m=s.strokeWidth??n.Dv;i.lineWidth=m,a.stroke&&(i.strokeStyle=a.stroke);const y={context:i,particle:s,radius:r,opacity:c,delta:o,pixelRatio:e.retina.pixelRatio,fill:s.shapeFill,stroke:m>n.Dv||!s.shapeFill,transformData:g};u(e,y),p(e,y),h(e,y),f(e,y),d(e,y),i.resetTransform()}function d(t,e){const{particle:i}=e;if(!i.effect)return;const n=t.effectDrawers.get(i.effect),s=n?.drawAfter;s&&s(e)}function u(t,e){const{particle:i}=e;if(!i.effect)return;const n=t.effectDrawers.get(i.effect);n?.drawBefore&&n.drawBefore(e)}function h(t,e){const{context:i,particle:n,stroke:s}=e;if(!n.shape)return;const o=t.shapeDrawers.get(n.shape);o&&(i.beginPath(),o.draw(e),n.shapeClose&&i.closePath(),s&&i.stroke(),n.shapeFill&&i.fill())}function f(t,e){const{particle:i}=e;if(!i.shape)return;const n=t.shapeDrawers.get(i.shape);n?.afterDraw&&n.afterDraw(e)}function p(t,e){const{particle:i}=e;if(!i.shape)return;const n=t.shapeDrawers.get(i.shape);n?.beforeDraw&&n.beforeDraw(e)}function v(t,e,i,n){e.drawParticle&&e.drawParticle(t,i,n)}function g(t,e,i){return{h:t.h,s:t.s,l:t.l+(e===s.H.darken?-n.iU:n.iU)*i}}},7098(t,e,i){var n;i.d(e,{g:()=>n}),function(t){t.auto="auto",t.increase="increase",t.decrease="decrease",t.random="random"}(n||(n={}))},7296(t,e,i){i.d(e,{A:()=>a});var n=i(838),s=i(4056),o=i(3254);class a extends o.O{constructor(){super(),this.animation=new s.i}static create(t,e){const i=new a;return i.load(t),void 0!==e&&((0,n.Kg)(e)||(0,n.cy)(e)?i.load({value:e}):i.load(e)),i}load(t){if(super.load(t),(0,n.kZ)(t))return;const e=t.animation;void 0!==e&&(void 0===e.enable?this.animation.load(t.animation):this.animation.h.load(e))}}},7336(t,e,i){i.d(e,{m:()=>s});var n=i(838);class s{constructor(){this.enable=!0,this.zIndex=0}load(t){(0,n.kZ)(t)||(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}},7435(t,e,i){i.d(e,{Q:()=>c,p:()=>r});var n=i(7098),s=i(1317),o=i(838),a=i(1680);class r{constructor(){this.count=0,this.enable=!1,this.speed=1,this.decay=0,this.delay=0,this.sync=!1}load(t){(0,o.kZ)(t)||(void 0!==t.count&&(this.count=(0,a.DT)(t.count)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=(0,a.DT)(t.speed)),void 0!==t.decay&&(this.decay=(0,a.DT)(t.decay)),void 0!==t.delay&&(this.delay=(0,a.DT)(t.delay)),void 0!==t.sync&&(this.sync=t.sync))}}class c extends r{constructor(){super(),this.mode=n.g.auto,this.startValue=s.S.random}load(t){super.load(t),(0,o.kZ)(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.startValue&&(this.startValue=t.startValue))}}},7642(t,e,i){i.d(e,{$G:()=>L,$O:()=>B,$_:()=>_,$v:()=>J,$x:()=>z,BF:()=>Pt,BW:()=>h,DN:()=>Q,D_:()=>bt,Dv:()=>xt,Eo:()=>nt,FS:()=>H,Fl:()=>Rt,GW:()=>C,Ie:()=>I,JC:()=>K,K3:()=>ft,KZ:()=>N,Kw:()=>M,L1:()=>F,LD:()=>vt,M1:()=>at,MX:()=>r,N5:()=>st,NF:()=>s,Nu:()=>St,Nx:()=>U,PZ:()=>Y,Pg:()=>P,R1:()=>p,RF:()=>b,RV:()=>G,Rh:()=>ct,Rq:()=>V,TL:()=>j,U0:()=>A,Ug:()=>d,WH:()=>it,X$:()=>y,X_:()=>ot,Xu:()=>c,Zp:()=>O,a5:()=>a,aE:()=>Ot,aZ:()=>g,bo:()=>l,ce:()=>m,dm:()=>w,dv:()=>et,eb:()=>n,eu:()=>E,gd:()=>f,hB:()=>R,hK:()=>Tt,hv:()=>q,i8:()=>X,iU:()=>wt,jn:()=>kt,lA:()=>pt,mR:()=>u,nK:()=>o,nq:()=>dt,oi:()=>k,ou:()=>lt,pH:()=>gt,rq:()=>x,tA:()=>yt,tR:()=>Et,td:()=>mt,un:()=>rt,vF:()=>W,vS:()=>T,vd:()=>Mt,w2:()=>Z,wM:()=>ut,xH:()=>tt,xd:()=>S,yx:()=>D,z$:()=>v,z9:()=>ht,zg:()=>zt,zs:()=>$});const n="generated",s="resize",o="visibilitychange",a=100,r=.5,c=1e3,l={x:0,y:0,z:0},d={a:1,b:0,c:0,d:1},u="random",h="mid",f=2,p=Math.PI*f,v=60,g=1,m="true",y="false",b="canvas",x=0,w=2,M=4,S=1,z=1,O=1,P=4,R=1,k=255,T=360,E=100,_=100,F=0,D=0,A=60,I=0,L=.25,V=r+L,C=0,$=1,Z=0,B=0,G=1,q=1,H=1,N=1,j=0,K=1,W=0,X=120,Q=0,U=0,J=1e4,Y=0,tt=1,et=0,it=1,nt=1,st=0,ot=0,at=0,rt=-L,ct=1.5,lt=0,dt=1,ut=0,ht=0,ft=1,pt=1,vt=1,gt=500,mt=50,yt=0,bt=1,xt=0,wt=1,Mt=0,St=3,zt=6,Ot=1,Pt=1,Rt=0,kt=0,Tt=0,Et=0},7897(t,e,i){i.d(e,{j:()=>o});var n=i(1640),s=i(838);class o{constructor(){this.default=n.Y.out}load(t){(0,s.kZ)(t)||(void 0!==t.default&&(this.default=t.default),this.bottom=t.bottom??t.default,this.left=t.left??t.default,this.right=t.right??t.default,this.top=t.top??t.default)}}},7932(t,e,i){i.d(e,{B:()=>s,t:()=>o});const n={debug:console.debug,error:(t,e)=>{console.error(`tsParticles - Error - ${t}`,e)},info:console.info,log:console.log,verbose:console.log,warning:console.warn};function s(t){n.debug=t.debug,n.error=t.error,n.info=t.info,n.log=t.log,n.verbose=t.verbose,n.warning=t.warning}function o(){return n}},8020(t,e,i){var n;i.d(e,{V:()=>n}),function(t){t.none="none",t.max="max",t.min="min"}(n||(n={}))},8044(t,e,i){i.d(e,{I:()=>a});var n=i(8020),s=i(7435),o=i(838);class a extends s.Q{constructor(){super(),this.destroy=n.V.none,this.speed=2}load(t){super.load(t),(0,o.kZ)(t)||void 0!==t.destroy&&(this.destroy=t.destroy)}}},8095(t,e,i){i.d(e,{M:()=>o,p:()=>s});var n=i(7642);class s{constructor(t=n.bo.x,e=n.bo.y,i=n.bo.z){this._updateFromAngle=(t,e)=>{this.x=Math.cos(t)*e,this.y=Math.sin(t)*e},this.x=t,this.y=e,this.z=i}static get origin(){return s.create(n.bo.x,n.bo.y,n.bo.z)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this._updateFromAngle(t,this.length)}get length(){return Math.sqrt(this.getLengthSq())}set length(t){this._updateFromAngle(this.angle,t)}static clone(t){return s.create(t.x,t.y,t.z)}static create(t,e,i){return"number"==typeof t?new s(t,e??n.bo.y,i??n.bo.z):new s(t.x,t.y,Object.hasOwn(t,"z")?t.z:n.bo.z)}add(t){return s.create(this.x+t.x,this.y+t.y,this.z+t.z)}addTo(t){this.x+=t.x,this.y+=t.y,this.z+=t.z}copy(){return s.clone(this)}distanceTo(t){return this.sub(t).length}distanceToSq(t){return this.sub(t).getLengthSq()}div(t){return s.create(this.x/t,this.y/t,this.z/t)}divTo(t){this.x/=t,this.y/=t,this.z/=t}getLengthSq(){return this.x**n.dm+this.y**n.dm}mult(t){return s.create(this.x*t,this.y*t,this.z*t)}multTo(t){this.x*=t,this.y*=t,this.z*=t}normalize(){const t=this.length;t!=n.dv&&this.multTo(n.hB/t)}rotate(t){return s.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t),n.bo.z)}setTo(t){this.x=t.x,this.y=t.y;const e=t;this.z=e.z?e.z:n.bo.z}sub(t){return s.create(this.x-t.x,this.y-t.y,this.z-t.z)}subFrom(t){this.x-=t.x,this.y-=t.y,this.z-=t.z}}class o extends s{constructor(t=n.bo.x,e=n.bo.y){super(t,e,n.bo.z)}static get origin(){return o.create(n.bo.x,n.bo.y)}static clone(t){return o.create(t.x,t.y)}static create(t,e){return"number"==typeof t?new o(t,e??n.bo.y):new o(t.x,t.y)}}},8229(t,e,i){i.d(e,{b:()=>n});class n{constructor(t,e){this.position=t,this.particle=e}}},8907(t,e,i){i.d(e,{z:()=>s});var n=i(838);class s{constructor(){this.delay=.5,this.enable=!0}load(t){(0,n.kZ)(t)||(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.enable&&(this.enable=t.enable))}}},9112(t,e,i){i.d(e,{o:()=>a});var n=i(913),s=i(9968),o=i(838);class a extends n.AI{constructor(){super(),this.animation=new s.q,this.value=3}load(t){if(super.load(t),(0,o.kZ)(t))return;const e=t.animation;void 0!==e&&this.animation.load(e)}}},9176(t,e,i){i.d(e,{Z:()=>s,y:()=>o});var n=i(3278);function s(t,...e){for(const i of e)t.load(i)}function o(t,e,...i){const o=new n.U(t,e);return s(o,...i),o}},9358(t,e,i){i.d(e,{P:()=>o});var n=i(913),s=i(838);class o extends n.PV{constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),(0,s.kZ)(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))}}},9476(t,e,i){i.d(e,{Y:()=>a});var n=i(8044),s=i(913),o=i(838);class a extends s.AI{constructor(){super(),this.animation=new n.I,this.value=1}load(t){if((0,o.kZ)(t))return;super.load(t);const e=t.animation;void 0!==e&&this.animation.load(e)}}},9599(t,e,i){i.d(e,{BN:()=>u,EY:()=>z,Jv:()=>_,K6:()=>v,Ko:()=>E,LC:()=>S,OH:()=>x,O_:()=>R,PG:()=>P,R5:()=>p,YL:()=>y,_h:()=>O,ay:()=>b,eg:()=>m,mK:()=>f,pz:()=>k,qe:()=>h,xx:()=>w,zI:()=>g});var n=i(1680),s=i(7642),o=i(838),a=i(1292),r=i(302);const c=new Map;function l(t,e){let i=c.get(t);if(!i){if(i=e(),c.size>=1e3){[...c.keys()].slice(0,1e3*s.MX).forEach((t=>c.delete(t)))}c.set(t,i)}return i}function d(t,e){if(e)for(const i of t.colorManagers.values())if(i.accepts(e))return i.parseString(e)}function u(t,e,i,n=!0){if(!e)return;const s=(0,o.Kg)(e)?{value:e}:e;if((0,o.Kg)(s.value))return h(t,s.value,i,n);if((0,o.cy)(s.value)){const e=(0,r.Vh)(s.value,i,n);if(!e)return;return u(t,{value:e})}for(const e of t.colorManagers.values()){const t=e.handleRangeColor(s);if(t)return t}}function h(t,e,i,n=!0){if(!e)return;const a=(0,o.Kg)(e)?{value:e}:e;if((0,o.Kg)(a.value))return a.value===s.mR?x():m(t,a.value);if((0,o.cy)(a.value)){const e=(0,r.Vh)(a.value,i,n);if(!e)return;return h(t,{value:e})}for(const e of t.colorManagers.values()){const t=e.handleColor(a);if(t)return t}}function f(t,e,i,n=!0){const s=h(t,e,i,n);return s?v(s):void 0}function p(t,e,i,n=!0){const s=u(t,e,i,n);return s?v(s):void 0}function v(t){const e=t.r/s.oi,i=t.g/s.oi,n=t.b/s.oi,o=Math.max(e,i,n),a=Math.min(e,i,n),r={h:s.L1,l:(o+a)*s.MX,s:s.yx};return o!==a&&(r.s=r.l<s.MX?(o-a)/(o+a):(o-a)/(s.gd-o-a),r.h=e===o?(i-n)/(o-a):i===o?s.gd+(n-e)/(o-a):s.gd*s.gd+(e-i)/(o-a)),r.l*=s.$_,r.s*=s.eu,r.h*=s.U0,r.h<s.L1&&(r.h+=s.vS),r.h>=s.vS&&(r.h-=s.vS),r}function g(t,e){return d(t,e)?.a}function m(t,e){return d(t,e)}function y(t){const e=(t.h%s.vS+s.vS)%s.vS,i=Math.max(s.yx,Math.min(s.eu,t.s)),n=Math.max(s.vd,Math.min(s.$_,t.l)),o=e/s.vS,a=i/s.eu,r=n/s.$_;if(i===s.yx){const t=Math.round(r*s.oi);return{r:t,g:t,b:t}}const c=(t,e,i)=>{if(i<0&&i++,i>1&&i--,i*s.zg<1)return t+(e-t)*s.zg*i;if(i*s.gd<1)return e;if(i*s.Nu<1*s.gd){return t+(e-t)*(s.gd/s.Nu-i)*s.zg}return t},l=r<s.MX?r*(s.aE+a):r+a-r*a,d=s.gd*r-l,u=s.BF/s.Nu,h=Math.min(s.oi,s.oi*c(d,l,o+u)),f=Math.min(s.oi,s.oi*c(d,l,o)),p=Math.min(s.oi,s.oi*c(d,l,o-u));return{r:Math.round(h),g:Math.round(f),b:Math.round(p)}}function b(t){const e=y(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function x(t){const e=t??s.Fl,i=s.oi+s.D_,o=()=>Math.floor((0,n.e4)(e,i));return{b:o(),g:o(),r:o()}}function w(t,e,i){const n=i??s.hv;return l(`rgb-${t.r.toFixed(2)}-${t.g.toFixed(2)}-${t.b.toFixed(2)}-${e?"hdr":"sdr"}-${n.toString()}`,(()=>e?M(t,i):function(t,e){return`rgba(${t.r.toString()}, ${t.g.toString()}, ${t.b.toString()}, ${(e??s.hv).toString()})`}(t,i)))}function M(t,e){return`color(display-p3 ${(t.r/s.oi).toString()} ${(t.g/s.oi).toString()} ${(t.b/s.oi).toString()} / ${(e??s.hv).toString()})`}function S(t,e,i){const n=i??s.hv;return l(`hsl-${t.h.toFixed(2)}-${t.s.toFixed(2)}-${t.l.toFixed(2)}-${e?"hdr":"sdr"}-${n.toString()}`,(()=>e?function(t,e){return M(y(t),e)}(t,i):function(t,e){return`hsla(${t.h.toString()}, ${t.s.toString()}%, ${t.l.toString()}%, ${(e??s.hv).toString()})`}(t,i)))}function z(t,e,i,s){let o=t,a=e;return Object.hasOwn(o,"r")||(o=y(t)),Object.hasOwn(a,"r")||(a=y(e)),{b:(0,n.jh)(o.b,a.b,i,s),g:(0,n.jh)(o.g,a.g,i,s),r:(0,n.jh)(o.r,a.r,i,s)}}function O(t,e,i){if(i===s.mR)return x();if(i!==s.BW)return i;{const i=t.getFillColor()??t.getStrokeColor(),n=e?.getFillColor()??e?.getStrokeColor();if(i&&n&&e)return z(i,n,t.getRadius(),e.getRadius());{const t=i??n;if(t)return y(t)}}}function P(t,e,i,n){const a=(0,o.Kg)(e)?e:e.value;return a===s.mR?n?u(t,{value:a}):i?s.mR:s.BW:a===s.BW?s.BW:u(t,{value:a})}function R(t){return void 0!==t?{h:t.h.value,s:t.s.value,l:t.l.value}:void 0}function k(t,e,i){const n={h:{enable:!1,value:t.h},s:{enable:!1,value:t.s},l:{enable:!1,value:t.l}};return e&&(T(n.h,e.h,i),T(n.s,e.s,i),T(n.l,e.l,i)),n}function T(t,e,i){t.enable=e.enable,t.enable?(t.velocity=(0,n.VG)(e.speed)/s.a5*i,t.decay=s.WH-(0,n.VG)(e.decay),t.status=a.H.increasing,t.loops=s.hK,t.maxLoops=(0,n.VG)(e.count),t.time=s.tR,t.delayTime=(0,n.VG)(e.delay)*s.Xu,e.sync||(t.velocity*=(0,n.G0)(),t.value*=(0,n.G0)()),t.initialValue=t.value,t.offset=(0,n.DT)(e.offset)):t.velocity=s.jn}function E(t,e,i,s){if(!t.enable||(t.maxLoops??0)>0&&(t.loops??0)>(t.maxLoops??0))return;if(t.time??=0,(t.delayTime??0)>0&&t.time<(t.delayTime??0)&&(t.time+=s.value),(t.delayTime??0)>0&&t.time<(t.delayTime??0))return;const o=t.offset?(0,n.vE)(t.offset):0,r=(t.velocity??0)*s.factor+3.6*o,c=t.decay??1,l=(0,n.W9)(e),d=(0,n.Sg)(e);if(i&&t.status!==a.H.increasing){t.value-=r;const e=0;t.value<e&&(t.loops??=0,t.loops++,t.status=a.H.increasing)}else t.value+=r,t.value>l&&(t.loops??=0,t.loops++,i?t.status=a.H.decreasing:t.value-=l);t.velocity&&1!==c&&(t.velocity*=c),t.value=(0,n.qE)(t.value,d,l)}function _(t,e){if(!t)return;const{h:i,s:n,l:o}=t,a={h:{min:s.L1,max:s.vS},s:{min:s.yx,max:s.eu},l:{min:s.vd,max:s.$_}};E(i,a.h,!1,e),E(n,a.s,!0,e),E(o,a.l,!0,e)}},9968(t,e,i){i.d(e,{q:()=>a});var n=i(8020),s=i(7435),o=i(838);class a extends s.Q{constructor(){super(),this.destroy=n.V.none,this.speed=5}load(t){super.load(t),(0,o.kZ)(t)||void 0!==t.destroy&&(this.destroy=t.destroy)}}}},n={};function s(t){var e=n[t];if(void 0!==e)return e.exports;var o=n[t]={exports:{}};return i[t](o,o.exports,s),o.exports}s.m=i,s.d=(t,e)=>{for(var i in e)s.o(e,i)&&!s.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},s.f={},s.e=t=>Promise.all(Object.keys(s.f).reduce(((e,i)=>(s.f[i](t,e),e)),[])),s.u=t=>t+".min.js",s.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),t={},e="@tsparticles/engine:",s.l=(i,n,o,a)=>{if(t[i])t[i].push(n);else{var r,c;if(void 0!==o)for(var l=document.getElementsByTagName("script"),d=0;d<l.length;d++){var u=l[d];if(u.getAttribute("src")==i||u.getAttribute("data-webpack")==e+o){r=u;break}}r||(c=!0,(r=document.createElement("script")).charset="utf-8",s.nc&&r.setAttribute("nonce",s.nc),r.setAttribute("data-webpack",e+o),r.src=i),t[i]=[n];var h=(e,n)=>{r.onerror=r.onload=null,clearTimeout(f);var s=t[i];if(delete t[i],r.parentNode&&r.parentNode.removeChild(r),s&&s.forEach((t=>t(n))),e)return e(n)},f=setTimeout(h.bind(null,void 0,{type:"timeout",target:r}),12e4);r.onerror=h.bind(null,r.onerror),r.onload=h.bind(null,r.onload),c&&document.head.appendChild(r)}},s.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{var t;globalThis.importScripts&&(t=globalThis.location+"");var e=globalThis.document;if(!t&&e&&(e.currentScript&&"SCRIPT"===e.currentScript.tagName.toUpperCase()&&(t=e.currentScript.src),!t)){var i=e.getElementsByTagName("script");if(i.length)for(var n=i.length-1;n>-1&&(!t||!/^http(s?):/.test(t));)t=i[n--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),s.p=t})(),(()=>{var t={397:0};s.f.j=(e,i)=>{var n=s.o(t,e)?t[e]:void 0;if(0!==n)if(n)i.push(n[2]);else{var o=new Promise(((i,s)=>n=t[e]=[i,s]));i.push(n[2]=o);var a=s.p+s.u(e),r=new Error;s.l(a,(i=>{if(s.o(t,e)&&(0!==(n=t[e])&&(t[e]=void 0),n)){var o=i&&("load"===i.type?"missing":i.type),a=i&&i.target&&i.target.src;r.message="Loading chunk "+e+" failed.\n("+o+": "+a+")",r.name="ChunkLoadError",r.type=o,r.request=a,n[1](r)}}),"chunk-"+e,e)}};var e=(e,i)=>{var n,o,[a,r,c]=i,l=0;if(a.some((e=>0!==t[e]))){for(n in r)s.o(r,n)&&(s.m[n]=r[n]);if(c)c(s)}for(e&&e(i);l<a.length;l++)o=a[l],s.o(t,o)&&t[o]&&t[o][0](),t[o]=0},i=this.webpackChunk_tsparticles_engine=this.webpackChunk_tsparticles_engine||[];i.forEach(e.bind(null,0)),i.push=e.bind(null,i.push.bind(i))})();var o={};s.r(o),s.d(o,{AlterType:()=>O.H,AnimatableColor:()=>_.A,AnimationMode:()=>w.g,AnimationOptions:()=>F.p,AnimationStatus:()=>E.H,AnimationValueWithRandom:()=>rt.Jm,Background:()=>D.V,BaseRange:()=>g.dg,Circle:()=>g.jl,ColorAnimation:()=>A.e,DestroyType:()=>P.V,EasingType:()=>R,EventType:()=>l.B,FullScreen:()=>I.m,GradientType:()=>b,HslAnimation:()=>L.i,LimitMode:()=>M.d,Move:()=>H.y,MoveAngle:()=>N.h,MoveAttract:()=>q.R,MoveCenter:()=>j.Z,MoveDirection:()=>y.F,MoveGravity:()=>K.y,MovePath:()=>X.v,Opacity:()=>tt.Y,OpacityAnimation:()=>et.I,Options:()=>V.J,OptionsColor:()=>C.O,OutMode:()=>S.Y,OutModeDirection:()=>x.v,OutModes:()=>W.j,ParticleOutType:()=>k.x,ParticlesBounce:()=>$.w,ParticlesBounceFactor:()=>Z.F,ParticlesDensity:()=>Y.M,ParticlesNumber:()=>U.N,ParticlesNumberLimit:()=>J.A,ParticlesOptions:()=>B.U,PixelMode:()=>z.q,Point:()=>v.b,RangedAnimationOptions:()=>F.Q,RangedAnimationValueWithRandom:()=>rt.AI,Rectangle:()=>g.M_,ResizeEvent:()=>at.z,RotateDirection:()=>p,Shape:()=>it.y,Size:()=>nt.o,SizeAnimation:()=>st.q,Spin:()=>Q.t,StartValueType:()=>T.S,Stroke:()=>G.t,ValueWithRandom:()=>rt.PV,Vector:()=>m.M,Vector3d:()=>m.p,ZIndex:()=>ot.P,alterHsl:()=>ct.yx,animate:()=>u.i0,areBoundsInside:()=>r.O2,arrayRandomIndex:()=>r.n0,calcExactPositionOrRandomFromSize:()=>u.Nx,calcExactPositionOrRandomFromSizeRanged:()=>u.qM,calcPositionFromSize:()=>u.eh,calcPositionOrRandomFromSize:()=>u.Mh,calcPositionOrRandomFromSizeRanged:()=>u.l1,calculateBounds:()=>r.AE,cancelAnimation:()=>u.px,canvasFirstIndex:()=>a.Nx,canvasTag:()=>a.RF,circleBounce:()=>r.pE,circleBounceDataFromParticle:()=>r.Tg,clamp:()=>u.qE,clear:()=>ct.IU,clickRadius:()=>a.FS,cloneStyle:()=>r.td,collisionVelocity:()=>u.OW,colorMix:()=>lt.EY,colorToHsl:()=>lt.mK,colorToRgb:()=>lt.qe,countOffset:()=>a.nq,decayOffset:()=>a.WH,deepExtend:()=>r.zw,defaultAlpha:()=>a.aZ,defaultAngle:()=>a.tA,defaultDensityFactor:()=>a.lA,defaultFps:()=>a.z$,defaultFpsLimit:()=>a.i8,defaultLoops:()=>a.hK,defaultOpacity:()=>a.hv,defaultRadius:()=>a.M1,defaultRatio:()=>a.$x,defaultReduceFactor:()=>a.Zp,defaultRemoveQuantity:()=>a.xd,defaultRetryCount:()=>a.rq,defaultRgbMin:()=>a.Fl,defaultTime:()=>a.tR,defaultTransform:()=>a.Ug,defaultTransformValue:()=>a.zs,defaultVelocity:()=>a.jn,degToRad:()=>u.pu,deleteCount:()=>a.LD,double:()=>a.gd,doublePI:()=>a.R1,drawAfterEffect:()=>ct.k,drawBeforeEffect:()=>ct.z5,drawLine:()=>ct.V6,drawParticle:()=>ct.p0,drawParticlePlugin:()=>ct.Wb,drawShape:()=>ct.KG,drawShapeAfterDraw:()=>ct.gF,drawShapeBeforeDraw:()=>ct.VG,empty:()=>a.Ie,executeOnSingleOrMultiple:()=>r.wJ,findItemFromSingleOrMultiple:()=>r.w3,generatedAttribute:()=>a.eb,generatedFalse:()=>a.X$,generatedTrue:()=>a.ce,getDistance:()=>u.Yf,getDistances:()=>u.vr,getFullScreenStyle:()=>r.hJ,getHslAnimationFromHsl:()=>lt.pz,getHslFromAnimation:()=>lt.O_,getItemsFromInitializer:()=>r.HQ,getLinkColor:()=>lt._h,getLinkRandomColor:()=>lt.PG,getLogger:()=>d.t,getParticleBaseVelocity:()=>u.$m,getParticleDirectionAngle:()=>u.JY,getPosition:()=>r.E9,getRandom:()=>u.G0,getRandomInRange:()=>u.e4,getRandomRgbColor:()=>lt.OH,getRangeMax:()=>u.W9,getRangeMin:()=>u.Sg,getRangeValue:()=>u.VG,getSize:()=>r.YC,getStyleFromHsl:()=>lt.LC,getStyleFromRgb:()=>lt.xx,hMax:()=>a.vS,hMin:()=>a.L1,hPhase:()=>a.U0,half:()=>a.MX,hasMatchMedia:()=>r.q8,hslToRgb:()=>lt.YL,hslaToRgba:()=>lt.ay,identity:()=>a.D_,initParticleNumericAnimationValue:()=>r.Xs,inverseFactorNumerator:()=>a.hB,isArray:()=>ut.cy,isBoolean:()=>ut.Lm,isFunction:()=>ut.Tn,isInArray:()=>r.hn,isNull:()=>ut.kZ,isNumber:()=>ut.Et,isObject:()=>ut.Gv,isPointInside:()=>r.Tj,isString:()=>ut.Kg,itemFromArray:()=>r.Vh,itemFromSingleOrMultiple:()=>r.TA,lFactor:()=>a.iU,lMax:()=>a.$_,lMin:()=>a.vd,lengthOffset:()=>a.K3,loadFont:()=>r.Al,loadMinIndex:()=>a.PZ,loadOptions:()=>dt.Z,loadParticlesOptions:()=>dt.y,loadRandomFactor:()=>a.$v,manageListener:()=>r.Kp,manualDefaultPosition:()=>a.td,midColorValue:()=>a.BW,millisecondsToSeconds:()=>a.Xu,minCoordinate:()=>a.TL,minCount:()=>a.wM,minFpsLimit:()=>a.DN,minIndex:()=>a.z9,minLimit:()=>a.ou,minRetries:()=>a.N5,minStrokeWidth:()=>a.Dv,minVelocity:()=>a.GW,minZ:()=>a.X_,minimumLength:()=>a.$O,minimumSize:()=>a.w2,mix:()=>u.jh,none:()=>a.dv,one:()=>a.xH,originPoint:()=>a.bo,paintBase:()=>ct.Sn,paintImage:()=>ct.Md,parseAlpha:()=>u.M3,percentDenominator:()=>a.a5,phaseNumerator:()=>a.BF,posOffset:()=>a.un,qTreeCapacity:()=>a.Kw,quarter:()=>a.$G,randomColorValue:()=>a.mR,randomInRangeValue:()=>u.vE,rangeColorToHsl:()=>lt.R5,rangeColorToRgb:()=>lt.BN,removeDeleteCount:()=>a.JC,removeMinIndex:()=>a.vF,resizeEvent:()=>a.NF,rgbMax:()=>a.oi,rgbToHsl:()=>lt.K6,sMax:()=>a.eu,sMin:()=>a.yx,sNormalizedOffset:()=>a.aE,safeDocument:()=>r.T5,safeIntersectionObserver:()=>r.BR,safeMatchMedia:()=>r.lV,safeMutationObserver:()=>r.tG,setAnimationFunctions:()=>u.AD,setLogger:()=>d.B,setRandom:()=>u.OE,setRangeValue:()=>u.DT,sextuple:()=>a.zg,sizeFactor:()=>a.Rh,squareExp:()=>a.dm,stringToAlpha:()=>lt.zI,stringToRgb:()=>lt.eg,subdivideCount:()=>a.Pg,threeQuarter:()=>a.Rq,touchDelay:()=>a.pH,touchEndLengthOffset:()=>a.KZ,triple:()=>a.Nu,tryCountIncrement:()=>a.Eo,tsParticles:()=>ht,updateAnimation:()=>r.UC,updateColor:()=>lt.Jv,updateColorValue:()=>lt.Ko,visibilityChangeEvent:()=>a.nK,zIndexFactorOffset:()=>a.RV});var a=s(7642),r=s(302);class c{constructor(){this._listeners=new Map}addEventListener(t,e){this.removeEventListener(t,e);let i=this._listeners.get(t);i||(i=[],this._listeners.set(t,i)),i.push(e)}dispatchEvent(t,e){const i=this._listeners.get(t);i?.forEach((t=>{t(e)}))}hasEventListener(t){return!!this._listeners.get(t)}removeAllEventListeners(t){t?this._listeners.delete(t):this._listeners=new Map}removeEventListener(t,e){const i=this._listeners.get(t);if(!i)return;const n=i.length,s=i.indexOf(e);s<a.z9||(n===a.LD?this._listeners.delete(t):i.splice(s,a.LD))}}var l=s(3838),d=s(7932),u=s(1680);const h="100%";class f{constructor(){this._configs=new Map,this._domArray=[],this._eventDispatcher=new c,this._initialized=!1,this._isRunningLoaders=!1,this._loadPromises=new Set,this._allLoadersSet=new Set,this._executedSet=new Set,this.plugins=[],this.colorManagers=new Map,this.easingFunctions=new Map,this._initializers={movers:new Map,updaters:new Map},this.movers=new Map,this.updaters=new Map,this.presets=new Map,this.effectDrawers=new Map,this.shapeDrawers=new Map,this.pathGenerators=new Map}get configs(){const t={};for(const[e,i]of this._configs)t[e]=i;return t}get items(){return this._domArray}get version(){return"4.0.0-alpha.8"}addColorManager(t){this.colorManagers.set(t.key,t)}addConfig(t){const e=t.key??t.name??"default";this._configs.set(e,t),this._eventDispatcher.dispatchEvent(l.B.configAdded,{data:{name:e,config:t}})}addEasing(t,e){this.easingFunctions.get(t)||this.easingFunctions.set(t,e)}addEffect(t,e){this.getEffectDrawer(t)||this.effectDrawers.set(t,e)}addEventListener(t,e){this._eventDispatcher.addEventListener(t,e)}addMover(t,e){this._initializers.movers.set(t,e)}addParticleUpdater(t,e){this._initializers.updaters.set(t,e)}addPathGenerator(t,e){this.getPathGenerator(t)||this.pathGenerators.set(t,e)}addPlugin(t){this.getPlugin(t.id)||this.plugins.push(t)}addPreset(t,e,i=!1){!i&&this.getPreset(t)||this.presets.set(t,e)}addShape(t){for(const e of t.validTypes)this.getShapeDrawer(e)||this.shapeDrawers.set(e,t)}checkVersion(t){if(this.version!==t)throw new Error(`The tsParticles version is different from the loaded plugins version. Engine version: ${this.version}. Plugin version: ${t}`)}clearPlugins(t){this.updaters.delete(t),this.movers.delete(t)}dispatchEvent(t,e){this._eventDispatcher.dispatchEvent(t,e)}getEasing(t){return this.easingFunctions.get(t)??(t=>t)}getEffectDrawer(t){return this.effectDrawers.get(t)}async getMovers(t,e=!1){return(0,r.HQ)(t,this.movers,this._initializers.movers,e)}getPathGenerator(t){return this.pathGenerators.get(t)}getPlugin(t){return this.plugins.find((e=>e.id===t))}getPreset(t){return this.presets.get(t)}getShapeDrawer(t){return this.shapeDrawers.get(t)}getSupportedEffects(){return this.effectDrawers.keys()}getSupportedShapes(){return this.shapeDrawers.keys()}async getUpdaters(t,e=!1){return(0,r.HQ)(t,this.updaters,this._initializers.updaters,e)}async init(){if(!this._initialized&&!this._isRunningLoaders){this._isRunningLoaders=!0,this._executedSet=new Set,this._allLoadersSet=new Set(this._loadPromises);try{for(const t of this._allLoadersSet)await this._runLoader(t,this._executedSet,this._allLoadersSet)}finally{this._loadPromises.clear(),this._isRunningLoaders=!1,this._initialized=!0}}}item(t){const{items:e}=this,i=e[t];if(!i?.destroyed)return i;e.splice(t,a.JC)}async load(t){await this.init();const{Container:e}=await s.e(794).then(s.bind(s,8794)),i=t.id??t.element?.id??`tsparticles${Math.floor((0,u.G0)()*a.$v).toString()}`,{index:n,url:o}=t,c=o?await async function(t){const e=(0,r.TA)(t.url,t.index);if(!e)return t.fallback;const i=await fetch(e);return i.ok?await i.json():((0,d.t)().error(`${i.status.toString()} while retrieving config file`),t.fallback)}({fallback:t.options,url:o,index:n}):t.options,l=(0,r.TA)(c,n),{items:f}=this,p=f.findIndex((t=>t.id.description===i)),v=new e(this,i,l);if(p>=a.PZ){const t=this.item(p),e=t?a.xH:a.dv;t&&!t.destroyed&&t.destroy(!1),f.splice(p,e,v)}else f.push(v);const g=((t,e)=>{const i=(0,r.T5)();let n=e??i.getElementById(t);return n||(n=i.createElement("div"),n.id=t,n.dataset[a.eb]=a.ce,i.body.append(n),n)})(i,t.element),m=(t=>{const e=(0,r.T5)();let i;if(t instanceof HTMLCanvasElement||t.tagName.toLowerCase()===a.RF)i=t,i.dataset[a.eb]??=a.X$;else{const n=t.getElementsByTagName(a.RF)[a.Nx];n?(i=n,i.dataset[a.eb]=a.X$):(i=e.createElement(a.RF),i.dataset[a.eb]=a.ce,t.appendChild(i))}return i.style.width||=h,i.style.height||=h,i})(g);return v.canvas.loadCanvas(m),await v.start(),v}loadParticlesOptions(t,e,...i){const n=this.updaters.get(t);n&&n.forEach((t=>t.loadOptions?.(e,...i)))}async refresh(t=!0){t&&await Promise.all(this.items.map((t=>t.refresh())))}async register(...t){if(this._initialized)throw new Error("Register plugins can only be done before calling tsParticles.load()");for(const e of t)this._isRunningLoaders?await this._runLoader(e,this._executedSet,this._allLoadersSet):this._loadPromises.add(e)}removeEventListener(t,e){this._eventDispatcher.removeEventListener(t,e)}async _runLoader(t,e,i){e.has(t)||(e.add(t),i.add(t),await t(this))}}var p,v=s(8229),g=s(2984),m=s(8095),y=s(1953);!function(t){t.clockwise="clockwise",t.counterClockwise="counter-clockwise",t.random="random"}(p||(p={}));var b,x=s(5931),w=s(7098),M=s(6423),S=s(1640),z=s(5652),O=s(4326),P=s(8020);!function(t){t.linear="linear",t.radial="radial",t.random="random"}(b||(b={}));var R,k=s(6312),T=s(1317);!function(t){t.easeInBack="ease-in-back",t.easeInBounce="ease-in-bounce",t.easeInCirc="ease-in-circ",t.easeInCubic="ease-in-cubic",t.easeInElastic="ease-in-elastic",t.easeInExpo="ease-in-expo",t.easeInGaussian="ease-in-gaussian",t.easeInLinear="ease-in-linear",t.easeInQuad="ease-in-quad",t.easeInQuart="ease-in-quart",t.easeInQuint="ease-in-quint",t.easeInSigmoid="ease-in-sigmoid",t.easeInSine="ease-in-sine",t.easeInSmoothstep="ease-in-smoothstep",t.easeOutBack="ease-out-back",t.easeOutBounce="ease-out-bounce",t.easeOutCirc="ease-out-circ",t.easeOutCubic="ease-out-cubic",t.easeOutElastic="ease-out-elastic",t.easeOutExpo="ease-out-expo",t.easeOutGaussian="ease-out-gaussian",t.easeOutLinear="ease-out-linear",t.easeOutQuad="ease-out-quad",t.easeOutQuart="ease-out-quart",t.easeOutQuint="ease-out-quint",t.easeOutSigmoid="ease-out-sigmoid",t.easeOutSine="ease-out-sine",t.easeOutSmoothstep="ease-out-smoothstep",t.easeInOutBack="ease-in-out-back",t.easeInOutBounce="ease-in-out-bounce",t.easeInOutCirc="ease-in-out-circ",t.easeInOutCubic="ease-in-out-cubic",t.easeInOutElastic="ease-in-out-elastic",t.easeInOutExpo="ease-in-out-expo",t.easeInOutGaussian="ease-in-out-gaussian",t.easeInOutLinear="ease-in-out-linear",t.easeInOutQuad="ease-in-out-quad",t.easeInOutQuart="ease-in-out-quart",t.easeInOutQuint="ease-in-out-quint",t.easeInOutSigmoid="ease-in-out-sigmoid",t.easeInOutSine="ease-in-out-sine",t.easeInOutSmoothstep="ease-in-out-smoothstep"}(R||(R={}));var E=s(1292),_=s(7296),F=s(7435),D=s(1222),A=s(1784),I=s(7336),L=s(4056),V=s(2037),C=s(3254),$=s(4467),Z=s(6684),B=s(3278),G=s(5611),q=s(3079),H=s(3448),N=s(541),j=s(849),K=s(1872),W=s(7897),X=s(5979),Q=s(6649),U=s(511),J=s(2936),Y=s(6632),tt=s(9476),et=s(8044),it=s(1152),nt=s(9112),st=s(9968),ot=s(9358),at=s(8907),rt=s(913),ct=s(6754),lt=s(9599),dt=s(9176),ut=s(838);const ht=new f;return globalThis.tsParticles=ht,o})()));
1
+ !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var i=t();for(var a in i)("object"==typeof exports?exports:e)[a]=i[a]}}(this,()=>(()=>{"use strict";var e,t,i,a,n,o,s,r,l,d={1590(e,t,i){i.d(t,{$G:()=>L,$_:()=>E,$v:()=>K,$x:()=>O,BF:()=>eg,BW:()=>p,DN:()=>N,D_:()=>ed,Dv:()=>eu,Eo:()=>Y,Fl:()=>em,GW:()=>C,Ie:()=>D,JC:()=>q,K3:()=>eo,L1:()=>F,LD:()=>er,MX:()=>l,NF:()=>o,Nu:()=>ep,Nx:()=>W,PZ:()=>X,Pf:()=>ew,R1:()=>v,RF:()=>x,RV:()=>Z,Rq:()=>V,U0:()=>I,Ug:()=>c,WH:()=>U,X$:()=>b,X_:()=>ee,Xu:()=>d,Zp:()=>P,a5:()=>r,aE:()=>ev,aZ:()=>m,bo:()=>u,ce:()=>y,dm:()=>M,dv:()=>Q,eb:()=>a,eu:()=>T,gd:()=>f,hB:()=>k,hK:()=>eb,hv:()=>G,i8:()=>j,iU:()=>ec,iX:()=>z,jn:()=>ey,lA:()=>es,mR:()=>h,nK:()=>s,nq:()=>ei,oi:()=>R,ou:()=>et,rq:()=>w,tA:()=>el,tR:()=>ex,vF:()=>H,vS:()=>_,vd:()=>eh,w2:()=>B,wM:()=>ea,xH:()=>J,xd:()=>S,yj:()=>n,yx:()=>A,z$:()=>g,z9:()=>en,zg:()=>ef,zs:()=>$});let a="generated",n="source-over",o="resize",s="visibilitychange",r=100,l=.5,d=1e3,u={x:0,y:0,z:0},c={a:1,b:0,c:0,d:1},h="random",p="mid",f=2,v=2*Math.PI,g=60,m=1,y="true",b="false",x="canvas",w=0,M=2,z=100,S=1,O=1,P=1,k=1,R=255,_=360,T=100,E=100,F=0,A=0,I=60,D=0,L=.25,V=.75,C=0,$=1,B=0,Z=1,G=1,q=1,H=0,j=120,N=0,W=0,K=1e4,X=0,J=1,Q=0,U=1,Y=1,ee=0,et=0,ei=1,ea=0,en=0,eo=1,es=1,er=1,el=0,ed=1,eu=0,ec=1,eh=0,ep=3,ef=6,ev=1,eg=1,em=0,ey=0,eb=0,ex=0,ew=1},5821(e,t,i){i.d(t,{dg:()=>r,jl:()=>l,M_:()=>d}),(a=n||(n={})).circle="circle",a.rectangle="rectangle";var a,n,o=i(3884),s=i(1590);class r{position;type;constructor(e,t,i){this.position={x:e,y:t},this.type=i}_resetPosition(e,t){this.position.x=e,this.position.y=t}}class l extends r{radius;constructor(e,t,i){super(e,t,n.circle),this.radius=i}contains(e){return(0,o.gp)(e,this.position,this.radius)}intersects(e){let t=this.position,i=e.position,a=this.radius,o=Math.abs(i.x-t.x),r=Math.abs(i.y-t.y);if(e instanceof l||e.type===n.circle)return a+e.radius>Math.hypot(o,r);if(e instanceof d||e.type===n.rectangle){let{width:t,height:i}=e.size;return Math.pow(o-t,s.dm)+Math.pow(r-i,s.dm)<=a**s.dm||o<=a+t&&r<=a+i||o<=t||r<=i}return!1}reset(e,t,i){return this._resetPosition(e,t),this.radius=i,this}}class d extends r{size;constructor(e,t,i,a){super(e,t,n.rectangle),this.size={height:a,width:i}}contains(e){let t=this.size.width,i=this.size.height,a=this.position;return e.x>=a.x&&e.x<=a.x+t&&e.y>=a.y&&e.y<=a.y+i}intersects(e){if(e instanceof l)return e.intersects(this);if(!(e instanceof d))return!1;let t=this.size.width,i=this.size.height,a=this.position,n=e.position,o=e.size,s=o.width,r=o.height;return n.x<a.x+t&&n.x+s>a.x&&n.y<a.y+i&&n.y+r>a.y}reset(e,t,i,a){return this._resetPosition(e,t),this.size.width=i,this.size.height=a,this}}},2067(e,t,i){i.d(t,{M:()=>s,p:()=>o});var a=i(1590);function n(e){return"z"in e?e.z:a.bo.z}class o{x;y;z;constructor(e=a.bo.x,t=a.bo.y,i=a.bo.z){this.x=e,this.y=t,this.z=i}static get origin(){return o.create(a.bo.x,a.bo.y,a.bo.z)}get angle(){return Math.atan2(this.y,this.x)}set angle(e){this._updateFromAngle(e,this.length)}get length(){return Math.sqrt(this.getLengthSq())}set length(e){this._updateFromAngle(this.angle,e)}static clone(e){return o.create(e.x,e.y,n(e))}static create(e,t,i){return"number"==typeof e?new o(e,t??a.bo.y,i??a.bo.z):new o(e.x,e.y,n(e))}add(e){return o.create(this.x+e.x,this.y+e.y,this.z+n(e))}addTo(e){this.x+=e.x,this.y+=e.y,this.z+=n(e)}copy(){return o.clone(this)}div(e){return o.create(this.x/e,this.y/e,this.z/e)}divTo(e){this.x/=e,this.y/=e,this.z/=e}getLengthSq(){return this.x**a.dm+this.y**a.dm}mult(e){return o.create(this.x*e,this.y*e,this.z*e)}multTo(e){this.x*=e,this.y*=e,this.z*=e}normalize(){let e=this.length;e!=a.dv&&this.multTo(a.hB/e)}rotate(e){return o.create(this.x*Math.cos(e)-this.y*Math.sin(e),this.x*Math.sin(e)+this.y*Math.cos(e),a.bo.z)}setTo(e){this.x=e.x,this.y=e.y,this.z=n(e)}sub(e){return o.create(this.x-e.x,this.y-e.y,this.z-n(e))}subFrom(e){this.x-=e.x,this.y-=e.y,this.z-=n(e)}_updateFromAngle(e,t){this.x=Math.cos(e)*t,this.y=Math.sin(e)*t}}class s extends o{constructor(e=a.bo.x,t=a.bo.y){super(e,t,a.bo.z)}static get origin(){return s.create(a.bo.x,a.bo.y)}static clone(e){return s.create(e.x,e.y)}static create(e,t){return"number"==typeof e?new s(e,t??a.bo.y):new s(e.x,e.y)}}},3096(e,t,i){var a,n;i.d(t,{H:()=>a}),(n=a||(a={})).increasing="increasing",n.decreasing="decreasing"},7613(e,t,i){var a,n;i.d(t,{F:()=>a}),(n=a||(a={})).bottom="bottom",n.bottomLeft="bottom-left",n.bottomRight="bottom-right",n.left="left",n.none="none",n.right="right",n.top="top",n.topLeft="top-left",n.topRight="top-right",n.outside="outside",n.inside="inside"},5735(e,t,i){var a,n;i.d(t,{v:()=>a}),(n=a||(a={})).bottom="bottom",n.left="left",n.right="right",n.top="top"},3494(e,t,i){var a,n;i.d(t,{g:()=>a}),(n=a||(a={})).auto="auto",n.increase="increase",n.decrease="decrease",n.random="random"},3443(e,t,i){var a,n;i.d(t,{d:()=>a}),(n=a||(a={})).delete="delete",n.wait="wait"},3652(e,t,i){var a,n;i.d(t,{Y:()=>a}),(n=a||(a={})).bounce="bounce",n.none="none",n.out="out",n.destroy="destroy",n.split="split"},3048(e,t,i){var a,n;i.d(t,{q:()=>a}),(n=a||(a={})).precise="precise",n.percent="percent"},1826(e,t,i){var a,n;i.d(t,{H:()=>a}),(n=a||(a={})).darken="darken",n.enlighten="enlighten"},7320(e,t,i){var a,n;i.d(t,{V:()=>a}),(n=a||(a={})).none="none",n.max="max",n.min="min"},8202(e,t,i){var a,n;i.d(t,{B:()=>a}),(n=a||(a={})).configAdded="configAdded",n.containerInit="containerInit",n.particlesSetup="particlesSetup",n.containerStarted="containerStarted",n.containerStopped="containerStopped",n.containerDestroyed="containerDestroyed",n.containerPaused="containerPaused",n.containerPlay="containerPlay",n.containerBuilt="containerBuilt",n.particleAdded="particleAdded",n.particleDestroyed="particleDestroyed",n.particleRemoved="particleRemoved"},6492(e,t,i){var a,n;i.d(t,{x:()=>a}),(n=a||(a={})).normal="normal",n.inside="inside",n.outside="outside"},8113(e,t,i){var a,n;i.d(t,{S:()=>a}),(n=a||(a={})).max="max",n.min="min",n.random="random"},4036(e,t,i){i.d(t,{A:()=>s});var a=i(8130),n=i(9892),o=i(3930);class s extends o.O{animation;constructor(){super(),this.animation=new n.i}static create(e,t){let i=new s;return i.load(e),void 0!==t&&((0,a.Kg)(t)||(0,a.cy)(t)?i.load({value:t}):i.load(t)),i}load(e){if(super.load(e),(0,a.kZ)(e))return;let t=e.animation;void 0!==t&&(void 0===t.enable?this.animation.load(e.animation):this.animation.h.load(t))}}},127(e,t,i){i.d(t,{Q:()=>l,p:()=>r});var a=i(3494),n=i(8113),o=i(8130),s=i(3884);class r{count;decay;delay;enable;speed;sync;constructor(){this.count=0,this.enable=!1,this.speed=1,this.decay=0,this.delay=0,this.sync=!1}load(e){(0,o.kZ)(e)||(void 0!==e.count&&(this.count=(0,s.DT)(e.count)),void 0!==e.enable&&(this.enable=e.enable),void 0!==e.speed&&(this.speed=(0,s.DT)(e.speed)),void 0!==e.decay&&(this.decay=(0,s.DT)(e.decay)),void 0!==e.delay&&(this.delay=(0,s.DT)(e.delay)),void 0!==e.sync&&(this.sync=e.sync))}}class l extends r{mode;startValue;constructor(){super(),this.mode=a.g.auto,this.startValue=n.S.random}load(e){super.load(e),(0,o.kZ)(e)||(void 0!==e.mode&&(this.mode=e.mode),void 0!==e.startValue&&(this.startValue=e.startValue))}}},4162(e,t,i){i.d(t,{V:()=>o});var a=i(3930),n=i(8130);class o{color;image;opacity;position;repeat;size;constructor(){this.color=new a.O,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(e){(0,n.kZ)(e)||(void 0!==e.color&&(this.color=a.O.create(this.color,e.color)),void 0!==e.image&&(this.image=e.image),void 0!==e.position&&(this.position=e.position),void 0!==e.repeat&&(this.repeat=e.repeat),void 0!==e.size&&(this.size=e.size),void 0!==e.opacity&&(this.opacity=e.opacity))}}},580(e,t,i){i.d(t,{e:()=>s});var a=i(127),n=i(8130),o=i(3884);class s extends a.p{max;min;offset;constructor(e,t){super(),this.min=e,this.max=t,this.offset=0,this.sync=!0}load(e){super.load(e),(0,n.kZ)(e)||(void 0!==e.max&&(this.max=e.max),void 0!==e.min&&(this.min=e.min),void 0!==e.offset&&(this.offset=(0,o.DT)(e.offset)))}}},3012(e,t,i){i.d(t,{m:()=>n});var a=i(8130);class n{enable;zIndex;constructor(){this.enable=!0,this.zIndex=0}load(e){(0,a.kZ)(e)||(void 0!==e.enable&&(this.enable=e.enable),void 0!==e.zIndex&&(this.zIndex=e.zIndex))}}},9892(e,t,i){i.d(t,{i:()=>s});var a=i(1590),n=i(580),o=i(8130);class s{h=new n.e(a.L1,a.vS);l=new n.e(a.vd,a.$_);s=new n.e(a.yx,a.eu);load(e){(0,o.kZ)(e)||(this.h.load(e.h),this.s.load(e.s),this.l.load(e.l))}}},9289(e,t,i){i.d(t,{J:()=>u});var a=i(4874),n=i(8130),o=i(4162),s=i(3012),r=i(7959),l=i(3692),d=i(3884);class u{autoPlay;background;clear;defaultThemes;delay;detectRetina;duration;fpsLimit;fullScreen;hdr;key;name;palette;particles;pauseOnBlur;pauseOnOutsideViewport;preset;resize;smooth;style;zLayers;_container;_engine;constructor(e,t){this._engine=e,this._container=t,this.autoPlay=!0,this.background=new o.V,this.clear=!0,this.defaultThemes={},this.delay=0,this.fullScreen=new s.m,this.detectRetina=!0,this.duration=0,this.fpsLimit=120,this.hdr=!0,this.particles=(0,l.y)(this._engine,this._container),this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.resize=new r.z,this.smooth=!1,this.style={},this.zLayers=100}load(e){if((0,n.kZ)(e))return;void 0!==e.preset&&(this.preset=e.preset,(0,a.wJ)(this.preset,e=>{this._importPreset(e)})),void 0!==e.palette&&(this.palette=e.palette,this._importPalette(this.palette)),void 0!==e.autoPlay&&(this.autoPlay=e.autoPlay),void 0!==e.clear&&(this.clear=e.clear),void 0!==e.key&&(this.key=e.key),void 0!==e.name&&(this.name=e.name),void 0!==e.delay&&(this.delay=(0,d.DT)(e.delay));let t=e.detectRetina;void 0!==t&&(this.detectRetina=t),void 0!==e.duration&&(this.duration=(0,d.DT)(e.duration));let i=e.fpsLimit;void 0!==i&&(this.fpsLimit=i),void 0!==e.hdr&&(this.hdr=e.hdr),void 0!==e.pauseOnBlur&&(this.pauseOnBlur=e.pauseOnBlur),void 0!==e.pauseOnOutsideViewport&&(this.pauseOnOutsideViewport=e.pauseOnOutsideViewport),void 0!==e.zLayers&&(this.zLayers=e.zLayers),this.background.load(e.background);let o=e.fullScreen;(0,n.Lm)(o)?this.fullScreen.enable=o:this.fullScreen.load(o),this.particles.load(e.particles),this.resize.load(e.resize),this.style=(0,a.zw)(this.style,e.style),void 0!==e.smooth&&(this.smooth=e.smooth),this._engine.plugins.forEach(t=>{t.loadOptions(this._container,this,e)})}_importPalette=e=>{let t=this._engine.getPalette(e);t&&this.load({background:{color:t.background},blend:{enable:!0,mode:t.blendMode},particles:{fill:{color:t.fill?{value:t.colors}:void 0,enable:t.fill},stroke:t.fill?void 0:t.colors.map(e=>({color:{value:e},width:1}))}})};_importPreset=e=>{this.load(this._engine.getPreset(e))}}},3930(e,t,i){i.d(t,{O:()=>n});var a=i(8130);class n{value;constructor(){this.value=""}static create(e,t){let i=new n;return i.load(e),void 0!==t&&((0,a.Kg)(t)||(0,a.cy)(t)?i.load({value:t}):i.load(t)),i}load(e){!(0,a.kZ)(e)&&((0,a.kZ)(e.value)||(this.value=e.value))}}},5439(e,t,i){i.d(t,{w:()=>o});var a=i(6912),n=i(8130);class o{horizontal;vertical;constructor(){this.horizontal=new a.F,this.vertical=new a.F}load(e){(0,n.kZ)(e)||(this.horizontal.load(e.horizontal),this.vertical.load(e.vertical))}}},6912(e,t,i){i.d(t,{F:()=>n});var a=i(7397);class n extends a.PV{constructor(){super(),this.value=1}}},4534(e,t,i){i.d(t,{S:()=>s});var a=i(4036),n=i(8130),o=i(3884);class s{color;enable;opacity;constructor(){this.enable=!0,this.color=new a.A,this.color.value="#fff",this.opacity=1}load(e){(0,n.kZ)(e)||(void 0!==e.color&&(this.color=a.A.create(this.color,e.color)),void 0!==e.enable&&(this.enable=e.enable),void 0!==e.opacity&&(this.opacity=(0,o.DT)(e.opacity)))}}},7764(e,t,i){i.d(t,{y:()=>h});var a=i(7613),n=i(8130),o=i(8577),s=i(6189),r=i(6604),l=i(2135),d=i(3085),u=i(9693),c=i(3884);class h{angle;center;decay;direction;distance;drift;enable;gravity;outModes;path;random;size;speed;spin;straight;vibrate;warp;constructor(){this.angle=new o.h,this.center=new s.Z,this.decay=0,this.distance={},this.direction=a.F.none,this.drift=0,this.enable=!1,this.gravity=new r.y,this.path=new l.v,this.outModes=new d.j,this.random=!1,this.size=!1,this.speed=2,this.spin=new u.t,this.straight=!1,this.vibrate=!1,this.warp=!1}load(e){if((0,n.kZ)(e))return;this.angle.load((0,n.Et)(e.angle)?{value:e.angle}:e.angle),this.center.load(e.center),void 0!==e.decay&&(this.decay=(0,c.DT)(e.decay)),void 0!==e.direction&&(this.direction=e.direction),void 0!==e.distance&&(this.distance=(0,n.Et)(e.distance)?{horizontal:e.distance,vertical:e.distance}:{...e.distance}),void 0!==e.drift&&(this.drift=(0,c.DT)(e.drift)),void 0!==e.enable&&(this.enable=e.enable),this.gravity.load(e.gravity);let t=e.outModes;void 0!==t&&((0,n.Gv)(t)?this.outModes.load(t):this.outModes.load({default:t})),this.path.load(e.path),void 0!==e.random&&(this.random=e.random),void 0!==e.size&&(this.size=e.size),void 0!==e.speed&&(this.speed=(0,c.DT)(e.speed)),this.spin.load(e.spin),void 0!==e.straight&&(this.straight=e.straight),void 0!==e.vibrate&&(this.vibrate=e.vibrate),void 0!==e.warp&&(this.warp=e.warp)}}},8577(e,t,i){i.d(t,{h:()=>o});var a=i(8130),n=i(3884);class o{offset;value;constructor(){this.offset=0,this.value=90}load(e){(0,a.kZ)(e)||(void 0!==e.offset&&(this.offset=(0,n.DT)(e.offset)),void 0!==e.value&&(this.value=(0,n.DT)(e.value)))}}},6189(e,t,i){i.d(t,{Z:()=>o});var a=i(3048),n=i(8130);class o{mode;radius;x;y;constructor(){this.x=50,this.y=50,this.mode=a.q.percent,this.radius=0}load(e){(0,n.kZ)(e)||(void 0!==e.x&&(this.x=e.x),void 0!==e.y&&(this.y=e.y),void 0!==e.mode&&(this.mode=e.mode),void 0!==e.radius&&(this.radius=e.radius))}}},6604(e,t,i){i.d(t,{y:()=>o});var a=i(8130),n=i(3884);class o{acceleration;enable;inverse;maxSpeed;constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(e){(0,a.kZ)(e)||(void 0!==e.acceleration&&(this.acceleration=(0,n.DT)(e.acceleration)),void 0!==e.enable&&(this.enable=e.enable),void 0!==e.inverse&&(this.inverse=e.inverse),void 0!==e.maxSpeed&&(this.maxSpeed=(0,n.DT)(e.maxSpeed)))}}},3085(e,t,i){i.d(t,{j:()=>o});var a=i(3652),n=i(8130);class o{bottom;default;left;right;top;constructor(){this.default=a.Y.out}load(e){(0,n.kZ)(e)||(void 0!==e.default&&(this.default=e.default),this.bottom=e.bottom??e.default,this.left=e.left??e.default,this.right=e.right??e.default,this.top=e.top??e.default)}}},2135(e,t,i){i.d(t,{v:()=>s});var a=i(7397),n=i(4874),o=i(8130);class s{clamp;delay;enable;generator;options;constructor(){this.clamp=!0,this.delay=new a.PV,this.enable=!1,this.options={}}load(e){!(0,o.kZ)(e)&&(void 0!==e.clamp&&(this.clamp=e.clamp),this.delay.load(e.delay),void 0!==e.enable&&(this.enable=e.enable),this.generator=e.generator,e.options&&(this.options=(0,n.zw)(this.options,e.options)))}}},9693(e,t,i){i.d(t,{t:()=>s});var a=i(4874),n=i(8130),o=i(3884);class s{acceleration;enable;position;constructor(){this.acceleration=0,this.enable=!1}load(e){!(0,n.kZ)(e)&&(void 0!==e.acceleration&&(this.acceleration=(0,o.DT)(e.acceleration)),void 0!==e.enable&&(this.enable=e.enable),e.position&&(this.position=(0,a.zw)({},e.position)))}}},5980(e,t,i){i.d(t,{M:()=>n});var a=i(8130);class n{enable;height;width;constructor(){this.enable=!1,this.width=1920,this.height=1080}load(e){if((0,a.kZ)(e))return;void 0!==e.enable&&(this.enable=e.enable);let t=e.width;void 0!==t&&(this.width=t);let i=e.height;void 0!==i&&(this.height=i)}}},1867(e,t,i){i.d(t,{N:()=>s});var a=i(5980),n=i(7076),o=i(8130);class s{density;limit;value;constructor(){this.density=new a.M,this.limit=new n.A,this.value=0}load(e){(0,o.kZ)(e)||(this.density.load(e.density),this.limit.load(e.limit),void 0!==e.value&&(this.value=e.value))}}},7076(e,t,i){i.d(t,{A:()=>o});var a=i(3443),n=i(8130);class o{mode;value;constructor(){this.mode=a.d.delete,this.value=0}load(e){(0,n.kZ)(e)||(void 0!==e.mode&&(this.mode=e.mode),void 0!==e.value&&(this.value=e.value))}}},3280(e,t,i){i.d(t,{Y:()=>s});var a=i(9080),n=i(7397),o=i(8130);class s extends n.AI{animation;constructor(){super(),this.animation=new a.I,this.value=1}load(e){if((0,o.kZ)(e))return;super.load(e);let t=e.animation;void 0!==t&&this.animation.load(t)}}},9080(e,t,i){i.d(t,{I:()=>s});var a=i(7320),n=i(127),o=i(8130);class s extends n.Q{destroy;constructor(){super(),this.destroy=a.V.none,this.speed=2}load(e){super.load(e),(0,o.kZ)(e)||void 0!==e.destroy&&(this.destroy=e.destroy)}}},9896(e,t,i){i.d(t,{U:()=>v});var a=i(4874),n=i(8130);class o{close;options;type;constructor(){this.close=!0,this.options={},this.type=[]}load(e){if((0,n.kZ)(e))return;let t=e.options;if(void 0!==t)for(let e in t){let i=t[e];i&&(this.options[e]=(0,a.zw)(this.options[e]??{},i))}void 0!==e.close&&(this.close=e.close),void 0!==e.type&&(this.type=e.type)}}var s=i(4534),r=i(7764),l=i(3280),d=i(5439),u=i(1867),c=i(3212),h=i(4276),p=i(9231),f=i(9578);class v{bounce;effect;fill;groups;move;number;opacity;reduceDuplicates;shape;size;stroke;zIndex;_container;_engine;constructor(e,t){this._engine=e,this._container=t,this.bounce=new d.w,this.effect=new o,this.fill=new s.S,this.groups={},this.move=new r.y,this.number=new u.N,this.opacity=new l.Y,this.reduceDuplicates=!1,this.shape=new c.y,this.size=new h.o,this.stroke=new p.t,this.zIndex=new f.P}load(e){if((0,n.kZ)(e))return;if(void 0!==e.groups)for(let t of Object.keys(e.groups)){if(!(t in e.groups))continue;let i=e.groups[t];void 0!==i&&(this.groups[t]=(0,a.zw)(this.groups[t]??{},i))}void 0!==e.reduceDuplicates&&(this.reduceDuplicates=e.reduceDuplicates),this.bounce.load(e.bounce),this.effect.load(e.effect),this.move.load(e.move),this.number.load(e.number),this.opacity.load(e.opacity),this.shape.load(e.shape),this.size.load(e.size),this.zIndex.load(e.zIndex);let t=e.fill;t&&(this.fill=(0,a.wJ)(t,e=>{let t=new s.S;return t.load(e),t}));let i=e.stroke;if(i&&(this.stroke=(0,a.wJ)(i,e=>{let t=new p.t;return t.load(e),t})),this._container){for(let t of this._engine.plugins)t.loadParticlesOptions&&t.loadParticlesOptions(this._container,this,e);let t=this._engine.updaters.get(this._container);if(t)for(let i of t)i.loadOptions&&i.loadOptions(this,e)}}}},3212(e,t,i){i.d(t,{y:()=>o});var a=i(4874),n=i(8130);class o{close;options;type;constructor(){this.close=!0,this.options={},this.type="circle"}load(e){if((0,n.kZ)(e))return;let t=e.options;if(void 0!==t)for(let e in t){let i=t[e];i&&(this.options[e]=(0,a.zw)(this.options[e]??{},i))}void 0!==e.close&&(this.close=e.close),void 0!==e.type&&(this.type=e.type)}}},4276(e,t,i){i.d(t,{o:()=>s});var a=i(7397),n=i(2812),o=i(8130);class s extends a.AI{animation;constructor(){super(),this.animation=new n.q,this.value=3}load(e){if(super.load(e),(0,o.kZ)(e))return;let t=e.animation;void 0!==t&&this.animation.load(t)}}},2812(e,t,i){i.d(t,{q:()=>s});var a=i(7320),n=i(127),o=i(8130);class s extends n.Q{destroy;constructor(){super(),this.destroy=a.V.none,this.speed=5}load(e){super.load(e),(0,o.kZ)(e)||void 0!==e.destroy&&(this.destroy=e.destroy)}}},9231(e,t,i){i.d(t,{t:()=>s});var a=i(4036),n=i(8130),o=i(3884);class s{color;opacity;width;constructor(){this.width=0}load(e){(0,n.kZ)(e)||(void 0!==e.color&&(this.color=a.A.create(this.color,e.color)),void 0!==e.width&&(this.width=(0,o.DT)(e.width)),void 0!==e.opacity&&(this.opacity=(0,o.DT)(e.opacity)))}}},9578(e,t,i){i.d(t,{P:()=>o});var a=i(7397),n=i(8130);class o extends a.PV{opacityRate;sizeRate;velocityRate;constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(e){super.load(e),(0,n.kZ)(e)||(void 0!==e.opacityRate&&(this.opacityRate=e.opacityRate),void 0!==e.sizeRate&&(this.sizeRate=e.sizeRate),void 0!==e.velocityRate&&(this.velocityRate=e.velocityRate))}}},7959(e,t,i){i.d(t,{z:()=>n});var a=i(8130);class n{delay;enable;constructor(){this.delay=.5,this.enable=!0}load(e){(0,a.kZ)(e)||(void 0!==e.delay&&(this.delay=e.delay),void 0!==e.enable&&(this.enable=e.enable))}}},7397(e,t,i){i.d(t,{AI:()=>l,Jm:()=>r,PV:()=>s});var a=i(127),n=i(8130),o=i(3884);class s{value;constructor(){this.value=0}load(e){!(0,n.kZ)(e)&&((0,n.kZ)(e.value)||(this.value=(0,o.DT)(e.value)))}}class r extends s{animation=new a.p;load(e){if(super.load(e),(0,n.kZ)(e))return;let t=e.animation;void 0!==t&&this.animation.load(t)}}class l extends r{animation;constructor(){super(),this.animation=new a.Q}load(e){super.load(e)}}},9854(e,t,i){i.d(t,{IU:()=>s,KG:()=>u,Md:()=>o,Sn:()=>n,VG:()=>h,Wb:()=>p,gF:()=>c,k:()=>l,p0:()=>r,z5:()=>d});var a=i(1590);function n(e,t,i){e.fillStyle=i??"rgba(0,0,0,0)",e.fillRect(a.bo.x,a.bo.y,t.width,t.height)}function o(e,t,i,n){if(!i)return;let o=e.globalAlpha;e.globalAlpha=n,e.drawImage(i,a.bo.x,a.bo.y,t.width,t.height),e.globalAlpha=o}function s(e,t){e.clearRect(a.bo.x,a.bo.y,t.width,t.height)}function r(e){let{container:t,context:i,particle:n,delta:o,colorStyles:s,radius:r,opacity:p,transform:f}=e,{effectDrawers:v,shapeDrawers:g}=t.particles,m=n.getPosition(),y=n.getTransformData(f),b=a.Pf,x={x:m.x,y:m.y};i.setTransform(y.a,y.b,y.c,y.d,m.x,m.y),s.fill&&(i.fillStyle=s.fill);let w=!!n.fillEnabled,M=n.strokeWidth??a.Dv;i.lineWidth=M,s.stroke&&(i.strokeStyle=s.stroke);let z={context:i,particle:n,radius:r,drawRadius:r*b,opacity:p,delta:o,pixelRatio:t.retina.pixelRatio,fill:w,stroke:M>a.Dv,transformData:y,position:{...m},drawPosition:x,drawScale:b};for(let e of t.plugins)e.drawParticleTransform?.(z);let S=n.effect?v.get(n.effect):void 0,O=n.shape?g.get(n.shape):void 0;d(S,z),h(O,z),u(O,z),c(O,z),l(S,z),i.resetTransform()}function l(e,t){if(!e?.drawAfter)return;let{particle:i}=t;i.effect&&e.drawAfter(t)}function d(e,t){if(!e?.drawBefore)return;let{particle:i}=t;i.effect&&e.drawBefore(t)}function u(e,t){if(!e)return;let{context:i,fill:a,particle:n,stroke:o}=t;n.shape&&(i.beginPath(),e.draw(t),n.shapeClose&&i.closePath(),o&&i.stroke(),a&&i.fill())}function c(e,t){if(!e?.afterDraw)return;let{particle:i}=t;i.shape&&e.afterDraw(t)}function h(e,t){if(!e?.beforeDraw)return;let{particle:i}=t;i.shape&&e.beforeDraw(t)}function p(e,t,i,a){t.drawParticle&&t.drawParticle(e,i,a)}},1339(e,t,i){i.d(t,{BN:()=>h,EY:()=>O,Jv:()=>F,K6:()=>g,Ko:()=>E,LC:()=>S,OH:()=>w,O_:()=>R,PG:()=>k,R5:()=>v,YL:()=>b,_h:()=>P,ay:()=>x,eg:()=>y,mK:()=>f,pz:()=>_,qe:()=>p,xx:()=>M,yx:()=>A,zI:()=>m});var a=i(3884),n=i(1590),o=i(8130),s=i(1826),r=i(3096),l=i(4874);let d=new Map;function u(e,t){let i=d.get(e);return i||(i=t(),d.size>=1e3&&[...d.keys()].slice(0,1e3*n.MX).forEach(e=>d.delete(e)),d.set(e,i)),i}function c(e,t){if(t){for(let i of e.colorManagers.values())if(i.accepts(t))return i.parseString(t)}}function h(e,t,i,a=!0){if(!t)return;let n=(0,o.Kg)(t)?{value:t}:t;if((0,o.Kg)(n.value))return p(e,n.value,i,a);if((0,o.cy)(n.value)){let t=(0,l.Vh)(n.value,i,a);if(!t)return;return h(e,{value:t})}for(let t of e.colorManagers.values()){let e=t.handleRangeColor(n);if(e)return e}}function p(e,t,i,a=!0){if(!t)return;let s=(0,o.Kg)(t)?{value:t}:t;if((0,o.Kg)(s.value))return s.value===n.mR?w():c(e,s.value);if((0,o.cy)(s.value)){let t=(0,l.Vh)(s.value,i,a);if(!t)return;return p(e,{value:t})}for(let t of e.colorManagers.values()){let e=t.handleColor(s);if(e)return e}}function f(e,t,i,a=!0){let n=p(e,t,i,a);return n?g(n):void 0}function v(e,t,i,a=!0){let n=h(e,t,i,a);return n?g(n):void 0}function g(e){let t=e.r/n.oi,i=e.g/n.oi,a=e.b/n.oi,o=Math.max(t,i,a),s=Math.min(t,i,a),r={h:n.L1,l:(o+s)*n.MX,s:n.yx};return o!==s&&(r.s=r.l<n.MX?(o-s)/(o+s):(o-s)/(n.gd-o-s),t===o?r.h=(i-a)/(o-s):i===o?r.h=n.gd+(a-t)/(o-s):r.h=n.gd*n.gd+(t-i)/(o-s)),r.l*=n.$_,r.s*=n.eu,r.h*=n.U0,r.h<n.L1&&(r.h+=n.vS),r.h>=n.vS&&(r.h-=n.vS),r}function m(e,t){return c(e,t)?.a}function y(e,t){return c(e,t)}function b(e){let t=(e.h%n.vS+n.vS)%n.vS,i=Math.max(n.yx,Math.min(n.eu,e.s)),a=Math.max(n.vd,Math.min(n.$_,e.l)),o=t/n.vS,s=i/n.eu,r=a/n.$_;if(i===n.yx){let e=Math.round(r*n.oi);return{r:e,g:e,b:e}}let l=(e,t,i)=>(i<0&&i++,i>1&&i--,i*n.zg<1)?e+(t-e)*n.zg*i:i*n.gd<1?t:i*n.Nu<+n.gd?e+(t-e)*(n.gd/n.Nu-i)*n.zg:e,d=r<n.MX?r*(n.aE+s):r+s-r*s,u=n.gd*r-d,c=n.BF/n.Nu;return{r:Math.round(Math.min(n.oi,n.oi*l(u,d,o+c))),g:Math.round(Math.min(n.oi,n.oi*l(u,d,o))),b:Math.round(Math.min(n.oi,n.oi*l(u,d,o-c)))}}function x(e){let t=b(e);return{a:e.a,b:t.b,g:t.g,r:t.r}}function w(e){let t=e??n.Fl,i=n.oi+n.D_,o=()=>Math.floor((0,a.e4)(t,i));return{b:o(),g:o(),r:o()}}function M(e,t,i){let a=i??n.hv;return u(`rgb-${e.r.toFixed(2)}-${e.g.toFixed(2)}-${e.b.toFixed(2)}-${t?"hdr":"sdr"}-${a.toString()}`,()=>{var a,o;return t?z(e,i):(a=e,o=i,`rgba(${a.r.toString()}, ${a.g.toString()}, ${a.b.toString()}, ${(o??n.hv).toString()})`)})}function z(e,t){return`color(display-p3 ${(e.r/n.oi).toString()} ${(e.g/n.oi).toString()} ${(e.b/n.oi).toString()} / ${(t??n.hv).toString()})`}function S(e,t,i){let a=i??n.hv;return u(`hsl-${e.h.toFixed(2)}-${e.s.toFixed(2)}-${e.l.toFixed(2)}-${t?"hdr":"sdr"}-${a.toString()}`,()=>{var a,o,s,r;return t?(a=e,o=i,z(b(a),o)):(s=e,r=i,`hsla(${s.h.toString()}, ${s.s.toString()}%, ${s.l.toString()}%, ${(r??n.hv).toString()})`)})}function O(e,t,i,n){let o=e,s=t;return"r"in o||(o=b(e)),"r"in s||(s=b(t)),{b:(0,a.jh)(o.b,s.b,i,n),g:(0,a.jh)(o.g,s.g,i,n),r:(0,a.jh)(o.r,s.r,i,n)}}function P(e,t,i){if(i===n.mR)return w();if(i!==n.BW)return i;{let i=e.getFillColor()??e.getStrokeColor(),a=t?.getFillColor()??t?.getStrokeColor();if(i&&a&&t)return O(i,a,e.getRadius(),t.getRadius());{let e=i??a;if(e)return b(e)}}}function k(e,t,i,a){let s=(0,o.Kg)(t)?t:t.value;return s===n.mR?a?h(e,{value:s}):i?n.mR:n.BW:s===n.BW?n.BW:h(e,{value:s})}function R(e){return void 0===e?void 0:{h:e.h.value,s:e.s.value,l:e.l.value}}function _(e,t,i){let a={h:{enable:!1,value:e.h,min:n.L1,max:n.vS},s:{enable:!1,value:e.s,min:n.yx,max:n.eu},l:{enable:!1,value:e.l,min:n.vd,max:n.$_}};return t&&(T(a.h,t.h,i),T(a.s,t.s,i),T(a.l,t.l,i)),a}function T(e,t,i){e.enable=t.enable,e.min=t.min,e.max=t.max,e.enable?(e.velocity=(0,a.VG)(t.speed)/n.a5*i,e.decay=n.WH-(0,a.VG)(t.decay),e.status=r.H.increasing,e.loops=n.hK,e.maxLoops=(0,a.VG)(t.count),e.time=n.tR,e.delayTime=(0,a.VG)(t.delay)*n.Xu,t.sync||(e.velocity*=(0,a.G0)(),e.value*=(0,a.G0)()),e.initialValue=e.value,e.offset=(0,a.DT)(t.offset)):e.velocity=n.jn}function E(e,t,i){if(!e.enable||(e.maxLoops??0)>0&&(e.loops??0)>(e.maxLoops??0)||(e.time??=0,(e.delayTime??0)>0&&e.time<(e.delayTime??0)&&(e.time+=i.value),(e.delayTime??0)>0&&e.time<(e.delayTime??0)))return;let n=e.offset?(0,a.vE)(e.offset):0,o=(e.velocity??0)*i.factor+3.6*n,s=e.decay??1,l=e.max,d=e.min;t&&e.status!==r.H.increasing?(e.value-=o,e.value<d&&(e.loops??=0,e.loops++,e.status=r.H.increasing)):(e.value+=o,e.value>l&&(e.loops??=0,e.loops++,t?e.status=r.H.decreasing:e.value-=l)),e.velocity&&1!==s&&(e.velocity*=s),e.value=(0,a.qE)(e.value,d,l)}function F(e,t){if(!e)return;let{h:i,s:a,l:n}=e;E(i,!1,t),E(a,!0,t),E(n,!0,t)}function A(e,t,i){return{h:e.h,s:e.s,l:e.l+(t===s.H.darken?-n.iU:n.iU)*i}}},3112(e,t,i){i.d(t,{B:()=>n,t:()=>o});let a={debug:console.debug,error:(e,t)=>{console.error(`tsParticles - Error - ${e}`,t)},info:console.info,log:console.log,verbose:console.log,warning:console.warn};function n(e){a.debug=e.debug,a.error=e.error,a.info=e.info,a.log=e.log,a.verbose=e.verbose,a.warning=e.warning}function o(){return a}},3884(e,t,i){i.d(t,{$m:()=>R,AD:()=>p,DT:()=>function e(t,i){if(t===i||void 0===i&&(0,s.Et)(t))return t;let a=x(t),n=w(t);return void 0!==i?{min:Math.min(a,i),max:Math.max(n,i)}:e(a,n)},G0:()=>c,JY:()=>k,M3:()=>D,Mh:()=>E,Nx:()=>A,OE:()=>u,OW:()=>_,Sc:()=>z,Sg:()=>x,VG:()=>b,W9:()=>w,Yf:()=>S,e4:()=>h,eh:()=>T,gp:()=>O,i0:()=>f,jh:()=>m,l1:()=>F,pu:()=>P,px:()=>v,qE:()=>g,qM:()=>I,vE:()=>y,vr:()=>M});var a=i(7613),n=i(1590),o=i(2067),s=i(8130);let r=Math.PI/180,l=Math.random,d={nextFrame:e=>requestAnimationFrame(e),cancel:e=>{cancelAnimationFrame(e)}};function u(e=Math.random){l=e}function c(){return g(l(),0,1-Number.EPSILON)}function h(e,t){return c()*(t-e)+e}function p(e,t){d.nextFrame=e,d.cancel=t}function f(e){return d.nextFrame(e)}function v(e){d.cancel(e)}function g(e,t,i){return Math.min(Math.max(e,t),i)}function m(e,t,i,a){return Math.floor((e*i+t*a)/(i+a))}function y(e){let t=w(e),i=x(e);return t===i&&(i=0),h(i,t)}function b(e){return(0,s.Et)(e)?e:y(e)}function x(e){return(0,s.Et)(e)?e:e.min}function w(e){return(0,s.Et)(e)?e:e.max}function M(e,t){let i=e.x-t.x,a=e.y-t.y;return{dx:i,dy:a,distance:Math.hypot(i,a)}}function z(e,t){let i=e.x-t.x,a=e.y-t.y;return i*i+a*a}function S(e,t){return Math.sqrt(z(e,t))}function O(e,t,i){return z(e,t)<=i*i}function P(e){return e*r}function k(e,t,i){if((0,s.Et)(e))return e*r;switch(e){case a.F.top:return-Math.PI*n.MX;case a.F.topRight:return-Math.PI*n.$G;case a.F.right:return n.Ie;case a.F.bottomRight:return Math.PI*n.$G;case a.F.bottom:return Math.PI*n.MX;case a.F.bottomLeft:return Math.PI*n.Rq;case a.F.left:return Math.PI;case a.F.topLeft:return-Math.PI*n.Rq;case a.F.inside:return Math.atan2(i.y-t.y,i.x-t.x);case a.F.outside:return Math.atan2(t.y-i.y,t.x-i.x);default:return c()*n.R1}}function R(e){let t=o.M.origin;return t.length=1,t.angle=e,t}function _(e,t,i,a){return o.M.create(e.x*(i-a)/(i+a)+t.x*n.gd*a/(i+a),e.y)}function T(e){return e.position?.x!==void 0&&void 0!==e.position.y?{x:e.position.x*e.size.width/n.a5,y:e.position.y*e.size.height/n.a5}:void 0}function E(e){return{x:(e.position?.x??c()*n.a5)*e.size.width/n.a5,y:(e.position?.y??c()*n.a5)*e.size.height/n.a5}}function F(e){let t={x:e.position?.x!==void 0?b(e.position.x):void 0,y:e.position?.y!==void 0?b(e.position.y):void 0};return E({size:e.size,position:t})}function A(e){let{position:t,size:i}=e;return{x:t?.x??c()*i.width,y:t?.y??c()*i.height}}function I(e){let t={x:e.position?.x!==void 0?b(e.position.x):void 0,y:e.position?.y!==void 0?b(e.position.y):void 0};return A({size:e.size,position:t})}function D(e){return e?e.endsWith("%")?parseFloat(e)/n.a5:parseFloat(e):1}},3692(e,t,i){i.d(t,{Z:()=>n,y:()=>o});var a=i(9896);function n(e,...t){for(let i of t)e.load(i)}function o(e,t,...i){let s=new a.U(e,t);return n(s,...i),s}},8130(e,t,i){function a(e){return"boolean"==typeof e}function n(e){return"string"==typeof e}function o(e){return"number"==typeof e}function s(e){return"function"==typeof e}function r(e){return"object"==typeof e&&null!==e}function l(e){return Array.isArray(e)}function d(e){return null==e}i.d(t,{Et:()=>o,Gv:()=>r,Kg:()=>n,Lm:()=>a,Tn:()=>s,cy:()=>l,kZ:()=>d})},4874(e,t,i){i.d(t,{AE:()=>S,BR:()=>m,Bj:()=>p,E9:()=>F,HQ:()=>C,Kp:()=>V,O2:()=>z,Ot:()=>$,T5:()=>v,TA:()=>R,Tg:()=>O,Tj:()=>M,UC:()=>I,Vh:()=>w,Xs:()=>T,YC:()=>A,hJ:()=>L,hn:()=>b,lV:()=>g,n0:()=>x,pE:()=>P,q8:()=>f,tG:()=>y,td:()=>D,w3:()=>_,wJ:()=>k,zw:()=>function e(t,...i){for(let a of i){if((0,o.kZ)(a))continue;if(!(0,o.Gv)(a)){t=a;continue}Array.isArray(a)?Array.isArray(t)||(t=[]):(!(0,o.Gv)(t)||Array.isArray(t))&&(t={});let i=Object.keys(a),n=new Set(["__proto__","constructor","prototype"]);if(!i.some(e=>{let t=a[e];return(0,o.Gv)(t)||Array.isArray(t)})){let e=t;for(let t of i)if(!n.has(t)&&t in a){let i=a[t];void 0!==i&&(e[t]=i)}continue}for(let o of i){if(n.has(o))continue;let i=t,s=a[o];i[o]=Array.isArray(s)?s.map(t=>e(void 0,t)):e(i[o],s)}}return t}});var a=i(3884),n=i(1590),o=i(8130),s=i(3494),r=i(3096),l=i(7320),d=i(5735),u=i(3048),c=i(8113),h=i(2067);function p(e,t){let i=new Map,a=t?.maxSize,n=t?.ttlMs,o=t?.keyFn,s=(e,t=new WeakSet)=>{if(null===e)return"null";let i=typeof e;if("undefined"===i)return"undefined";if("number"===i||"boolean"===i||"string"===i)return JSON.stringify(e);if("function"===i)try{return e.toString()}catch{return'"[Function]"'}if("symbol"===i)try{return e.toString()}catch{return'"[Symbol]"'}if(Array.isArray(e))return`[${e.map(e=>s(e,t)).join(",")}]`;if(t.has(e))return'"[Circular]"';t.add(e);let a=Object.keys(e).sort();return`{${a.map(i=>`${JSON.stringify(i)}:${s(e[i],t)}`).join(",")}}`};return(...t)=>{let r,l=(r=t,o?o(r):s(r)),d=Date.now(),u=i.get(l);if(void 0!==u)if(!n||!(d-u.ts>n))return i.delete(l),i.set(l,{value:u.value,ts:u.ts}),u.value;else i.delete(l);let c=e(...t);if(i.set(l,{value:c,ts:d}),"number"==typeof a&&a>=0)for(;i.size>a;){let e=i.keys().next().value;if(void 0===e)break;i.delete(e)}return c}}function f(){return"u">typeof matchMedia}function v(){return globalThis.document}function g(e){if(f())return matchMedia(e)}function m(e){if("u">typeof IntersectionObserver)return new IntersectionObserver(e)}function y(e){if("u">typeof MutationObserver)return new MutationObserver(e)}function b(e,t){return e===t||(0,o.cy)(t)&&t.includes(e)}function x(e){return Math.floor((0,a.G0)()*e.length)}function w(e,t,i=!0){return e[void 0!==t&&i?t%e.length:x(e)]}function M(e,t,i,a,n){return z(S(e,a??0),t,i,n)}function z(e,t,i,a){let n=!0;return a&&a!==d.v.bottom||(n=e.top<t.height+i.x),n&&(!a||a===d.v.left)&&(n=e.right>i.x),n&&(!a||a===d.v.right)&&(n=e.left<t.width+i.y),n&&(!a||a===d.v.top)&&(n=e.bottom>i.y),n}function S(e,t){return{bottom:e.y+t,left:e.x-t,right:e.x+t,top:e.y-t}}function O(e){return{position:e.getPosition(),radius:e.getRadius(),mass:e.getMass(),velocity:e.velocity,factor:h.M.create((0,a.VG)(e.options.bounce.horizontal.value),(0,a.VG)(e.options.bounce.vertical.value))}}function P(e,t){let{x:i,y:n}=e.velocity.sub(t.velocity),[o,s]=[e.position,t.position],{dx:r,dy:l}=(0,a.vr)(s,o);if(i*r+n*l<0)return;let d=-Math.atan2(l,r),u=e.mass,c=t.mass,h=e.velocity.rotate(d),p=t.velocity.rotate(d),f=(0,a.OW)(h,p,u,c),v=(0,a.OW)(p,h,u,c),g=f.rotate(-d),m=v.rotate(-d);e.velocity.x=g.x*e.factor.x,e.velocity.y=g.y*e.factor.y,t.velocity.x=m.x*t.factor.x,t.velocity.y=m.y*t.factor.y}function k(e,t){return(0,o.cy)(e)?e.map((e,i)=>t(e,i)):t(e,0)}function R(e,t,i){return(0,o.cy)(e)?w(e,t,i):e}function _(e,t){return(0,o.cy)(e)?e.find((e,i)=>t(e,i)):t(e,0)?e:void 0}function T(e,t){let i=e.value,o=e.animation,l={delayTime:(0,a.VG)(o.delay)*n.Xu,enable:o.enable,value:(0,a.VG)(e.value)*t,max:(0,a.W9)(i)*t,min:(0,a.Sg)(i)*t,loops:0,maxLoops:(0,a.VG)(o.count),time:0};if(o.enable){switch(l.decay=1-(0,a.VG)(o.decay),o.mode){case s.g.increase:l.status=r.H.increasing;break;case s.g.decrease:l.status=r.H.decreasing;break;case s.g.random:l.status=(0,a.G0)()>=n.MX?r.H.increasing:r.H.decreasing}let e=o.mode===s.g.auto;switch(o.startValue){case c.S.min:l.value=l.min,e&&(l.status=r.H.increasing);break;case c.S.max:l.value=l.max,e&&(l.status=r.H.decreasing);break;case c.S.random:default:l.value=(0,a.vE)(l),e&&(l.status=(0,a.G0)()>=n.MX?r.H.increasing:r.H.decreasing)}}return l.initialValue=l.value,l}function E(e,t){if(e.mode!==u.q.percent){let{mode:t,...i}=e;return i}return"x"in e?{x:e.x/n.a5*t.width,y:e.y/n.a5*t.height}:{width:e.width/n.a5*t.width,height:e.height/n.a5*t.height}}function F(e,t){return E(e,t)}function A(e,t){return E(e,t)}function I(e,t,i,n,o){if(e.destroyed||!t.enable||(t.maxLoops??0)>0&&(t.loops??0)>(t.maxLoops??0))return;let s=(t.velocity??0)*o.factor,d=t.min,u=t.max,c=t.decay??1;if(t.time??=0,(t.delayTime??0)>0&&t.time<(t.delayTime??0)&&(t.time+=o.value),!((t.delayTime??0)>0)||!(t.time<(t.delayTime??0))){switch(t.status){case r.H.increasing:t.value>=u?(i?t.status=r.H.decreasing:t.value-=u,t.loops??=0,t.loops++):t.value+=s;break;case r.H.decreasing:t.value<=d?(i?t.status=r.H.increasing:t.value+=u,t.loops??=0,t.loops++):t.value-=s}t.velocity&&1!==c&&(t.velocity*=c);var h=t.value;switch(n){case l.V.max:h>=u&&e.destroy();break;case l.V.min:h<=d&&e.destroy()}t.value=(0,a.qE)(t.value,d,u)}}function D(e){let t=v().createElement("div").style;for(let i in e){let a=e[i];if(!(i in e)||(0,o.kZ)(a))continue;let n=e.getPropertyValue?.(a);if(!n)continue;let s=e.getPropertyPriority?.(a);s?t.setProperty(a,n,s):t.setProperty(a,n)}return t}let L=p(function(e){let t=v().createElement("div").style,i={width:"100%",height:"100%",margin:"0",padding:"0",borderWidth:"0",position:"fixed",zIndex:e.toString(10),"z-index":e.toString(10),top:"0",left:"0"};for(let e in i){let a=i[e];void 0!==a&&t.setProperty(e,a)}return t});function V(e,t,i,a,n){if(a){let a={passive:!0};(0,o.Lm)(n)?a.capture=n:void 0!==n&&(a=n),e.addEventListener(t,i,a)}else e.removeEventListener(t,i,n)}async function C(e,t,i,a=!1){let n=t.get(e);return(!n||a)&&(n=await Promise.all([...i.values()].map(t=>t(e))),t.set(e,n)),n}async function $(e,t,i,a=!1){let n=t.get(e);return(!n||a)&&(n=new Map(await Promise.all([...i.entries()].map(([t,i])=>i(e).then(e=>[t,e])))),t.set(e,n)),n}}},u={};function c(e){var t=u[e];if(void 0!==t)return t.exports;var i=u[e]={exports:{}};return d[e](i,i.exports,c),i.exports}c.m=d,c.d=(e,t)=>{for(var i in t)c.o(t,i)&&!c.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},c.f={},c.e=e=>Promise.all(Object.keys(c.f).reduce((t,i)=>(c.f[i](e,t),t),[])),c.u=e=>""+e+".min.js",c.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}}(),c.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),h={},c.l=(e,t,i,a)=>{if(h[e])return void h[e].push(t);if(void 0!==i)for(var n,o,s=document.getElementsByTagName("script"),r=0;r<s.length;r++){var l=s[r];if(l.getAttribute("src")==e||l.getAttribute("data-webpack")=="@tsparticles/engine:"+i){n=l;break}}n||(o=!0,(n=document.createElement("script")).charset="utf-8",c.nc&&n.setAttribute("nonce",c.nc),n.setAttribute("data-webpack","@tsparticles/engine:"+i),n.src=e),h[e]=[t];var d=(t,i)=>{n.onerror=n.onload=null,clearTimeout(u);var a=h[e];if(delete h[e],n.parentNode&&n.parentNode.removeChild(n),a&&a.forEach(e=>e(i)),t)return t(i)},u=setTimeout(d.bind(null,void 0,{type:"timeout",target:n}),12e4);n.onerror=d.bind(null,n.onerror),n.onload=d.bind(null,n.onload),o&&document.head.appendChild(n)},c.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},c.g.importScripts&&(p=c.g.location+"");var h,p,f=c.g.document;if(!p&&f&&(f.currentScript&&"SCRIPT"===f.currentScript.tagName.toUpperCase()&&(p=f.currentScript.src),!p)){var v=f.getElementsByTagName("script");if(v.length)for(var g=v.length-1;g>-1&&(!p||!/^http(s?):/.test(p));)p=v[g--].src}if(!p)throw Error("Automatic publicPath is not supported in this browser");c.p=p=p.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e={397:0},c.f.j=(t,i)=>{var a=c.o(e,t)?e[t]:void 0;if(0!==a)if(a)i.push(a[2]);else{var n=new Promise((i,n)=>a=e[t]=[i,n]);i.push(a[2]=n);var o=c.p+c.u(t),s=Error();c.l(o,i=>{if(c.o(e,t)&&(0!==(a=e[t])&&(e[t]=void 0),a)){var n=i&&("load"===i.type?"missing":i.type),o=i&&i.target&&i.target.src;s.message="Loading chunk "+t+` failed.
2
+ (`+n+": "+o+")",s.name="ChunkLoadError",s.type=n,s.request=o,a[1](s)}},"chunk-"+t,t)}},t=(t,i)=>{var a,n,[o,s,r]=i,l=0;if(o.some(t=>0!==e[t])){for(a in s)c.o(s,a)&&(c.m[a]=s[a]);r&&r(c)}for(t&&t(i);l<o.length;l++)n=o[l],c.o(e,n)&&e[n]&&e[n][0](),e[n]=0},(i=this.webpackChunk_tsparticles_engine=this.webpackChunk_tsparticles_engine||[]).forEach(t.bind(null,0)),i.push=t.bind(null,i.push.bind(i));var m={};c.r(m),c.d(m,{AlterType:()=>D.H,AnimatableColor:()=>B.A,AnimationMode:()=>E.g,AnimationOptions:()=>Z.p,AnimationStatus:()=>$.H,AnimationValueWithRandom:()=>eg.Jm,Background:()=>G.V,BaseRange:()=>k.dg,Circle:()=>k.jl,ColorAnimation:()=>q.e,DestroyType:()=>L.V,EasingType:()=>l,EventType:()=>w.B,Fill:()=>Q.S,FullScreen:()=>H.m,GradientType:()=>r,HslAnimation:()=>j.i,LimitMode:()=>F.d,Move:()=>Y.y,MoveAngle:()=>ee.h,MoveCenter:()=>et.Z,MoveDirection:()=>_.F,MoveGravity:()=>ei.y,MovePath:()=>en.v,Opacity:()=>ed.Y,OpacityAnimation:()=>eu.I,Options:()=>N.J,OptionsColor:()=>W.O,OutMode:()=>A.Y,OutModeDirection:()=>T.v,OutModes:()=>ea.j,ParticleOutType:()=>V.x,ParticlesBounce:()=>K.w,ParticlesBounceFactor:()=>X.F,ParticlesDensity:()=>el.M,ParticlesNumber:()=>es.N,ParticlesNumberLimit:()=>er.A,ParticlesOptions:()=>J.U,PixelMode:()=>I.q,RangedAnimationOptions:()=>Z.Q,RangedAnimationValueWithRandom:()=>eg.AI,Rectangle:()=>k.M_,ResizeEvent:()=>ev.z,RotateDirection:()=>s,Shape:()=>ec.y,Size:()=>eh.o,SizeAnimation:()=>ep.q,Spin:()=>eo.t,StartValueType:()=>C.S,Stroke:()=>U.t,ValueWithRandom:()=>eg.PV,Vector:()=>R.M,Vector3d:()=>R.p,ZIndex:()=>ef.P,alterHsl:()=>ey.yx,animate:()=>z.i0,areBoundsInside:()=>b.O2,arrayRandomIndex:()=>b.n0,calcExactPositionOrRandomFromSize:()=>z.Nx,calcExactPositionOrRandomFromSizeRanged:()=>z.qM,calcPositionFromSize:()=>z.eh,calcPositionOrRandomFromSize:()=>z.Mh,calcPositionOrRandomFromSizeRanged:()=>z.l1,calculateBounds:()=>b.AE,cancelAnimation:()=>z.px,canvasFirstIndex:()=>y.Nx,canvasTag:()=>y.RF,checkDistance:()=>z.gp,circleBounce:()=>b.pE,circleBounceDataFromParticle:()=>b.Tg,clamp:()=>z.qE,clear:()=>em.IU,cloneStyle:()=>b.td,collisionVelocity:()=>z.OW,colorMix:()=>ey.EY,colorToHsl:()=>ey.mK,colorToRgb:()=>ey.qe,countOffset:()=>y.nq,decayOffset:()=>y.WH,deepExtend:()=>b.zw,defaultAlpha:()=>y.aZ,defaultAngle:()=>y.tA,defaultCompositeValue:()=>y.yj,defaultDensityFactor:()=>y.lA,defaultFps:()=>y.z$,defaultFpsLimit:()=>y.i8,defaultLoops:()=>y.hK,defaultOpacity:()=>y.hv,defaultRatio:()=>y.$x,defaultReduceFactor:()=>y.Zp,defaultRemoveQuantity:()=>y.xd,defaultRetryCount:()=>y.rq,defaultRgbMin:()=>y.Fl,defaultTime:()=>y.tR,defaultTransform:()=>y.Ug,defaultTransformValue:()=>y.zs,defaultVelocity:()=>y.jn,defaultZoom:()=>y.Pf,degToRad:()=>z.pu,deleteCount:()=>y.LD,double:()=>y.gd,doublePI:()=>y.R1,drawAfterEffect:()=>em.k,drawBeforeEffect:()=>em.z5,drawParticle:()=>em.p0,drawParticlePlugin:()=>em.Wb,drawShape:()=>em.KG,drawShapeAfterDraw:()=>em.gF,drawShapeBeforeDraw:()=>em.VG,empty:()=>y.Ie,executeOnSingleOrMultiple:()=>b.wJ,findItemFromSingleOrMultiple:()=>b.w3,generatedAttribute:()=>y.eb,generatedFalse:()=>y.X$,generatedTrue:()=>y.ce,getDistance:()=>z.Yf,getDistanceSq:()=>z.Sc,getDistances:()=>z.vr,getFullScreenStyle:()=>b.hJ,getHslAnimationFromHsl:()=>ey.pz,getHslFromAnimation:()=>ey.O_,getItemMapFromInitializer:()=>b.Ot,getItemsFromInitializer:()=>b.HQ,getLinkColor:()=>ey._h,getLinkRandomColor:()=>ey.PG,getLogger:()=>M.t,getParticleBaseVelocity:()=>z.$m,getParticleDirectionAngle:()=>z.JY,getPosition:()=>b.E9,getRandom:()=>z.G0,getRandomInRange:()=>z.e4,getRandomRgbColor:()=>ey.OH,getRangeMax:()=>z.W9,getRangeMin:()=>z.Sg,getRangeValue:()=>z.VG,getSize:()=>b.YC,getStyleFromHsl:()=>ey.LC,getStyleFromRgb:()=>ey.xx,hMax:()=>y.vS,hMin:()=>y.L1,hPhase:()=>y.U0,half:()=>y.MX,hasMatchMedia:()=>b.q8,hslToRgb:()=>ey.YL,hslaToRgba:()=>ey.ay,identity:()=>y.D_,initParticleNumericAnimationValue:()=>b.Xs,inverseFactorNumerator:()=>y.hB,isArray:()=>ex.cy,isBoolean:()=>ex.Lm,isFunction:()=>ex.Tn,isInArray:()=>b.hn,isNull:()=>ex.kZ,isNumber:()=>ex.Et,isObject:()=>ex.Gv,isPointInside:()=>b.Tj,isString:()=>ex.Kg,itemFromArray:()=>b.Vh,itemFromSingleOrMultiple:()=>b.TA,lFactor:()=>y.iU,lMax:()=>y.$_,lMin:()=>y.vd,lengthOffset:()=>y.K3,loadMinIndex:()=>y.PZ,loadOptions:()=>eb.Z,loadParticlesOptions:()=>eb.y,loadRandomFactor:()=>y.$v,manageListener:()=>b.Kp,memoize:()=>b.Bj,midColorValue:()=>y.BW,millisecondsToSeconds:()=>y.Xu,minCount:()=>y.wM,minFpsLimit:()=>y.DN,minIndex:()=>y.z9,minLimit:()=>y.ou,minStrokeWidth:()=>y.Dv,minVelocity:()=>y.GW,minZ:()=>y.X_,minimumSize:()=>y.w2,mix:()=>z.jh,none:()=>y.dv,one:()=>y.xH,originPoint:()=>y.bo,paintBase:()=>em.Sn,paintImage:()=>em.Md,parseAlpha:()=>z.M3,percentDenominator:()=>y.a5,phaseNumerator:()=>y.BF,quarter:()=>y.$G,randomColorValue:()=>y.mR,randomInRangeValue:()=>z.vE,rangeColorToHsl:()=>ey.R5,rangeColorToRgb:()=>ey.BN,removeDeleteCount:()=>y.JC,removeMinIndex:()=>y.vF,resizeEvent:()=>y.NF,rgbMax:()=>y.oi,rgbToHsl:()=>ey.K6,sMax:()=>y.eu,sMin:()=>y.yx,sNormalizedOffset:()=>y.aE,safeDocument:()=>b.T5,safeIntersectionObserver:()=>b.BR,safeMatchMedia:()=>b.lV,safeMutationObserver:()=>b.tG,setAnimationFunctions:()=>z.AD,setLogger:()=>M.B,setRandom:()=>z.OE,setRangeValue:()=>z.DT,sextuple:()=>y.zg,spatialHashGridCellSize:()=>y.iX,squareExp:()=>y.dm,stringToAlpha:()=>ey.zI,stringToRgb:()=>ey.eg,threeQuarter:()=>y.Rq,triple:()=>y.Nu,tryCountIncrement:()=>y.Eo,tsParticles:()=>ew,updateAnimation:()=>b.UC,updateColor:()=>ey.Jv,updateColorValue:()=>ey.Ko,visibilityChangeEvent:()=>y.nK,zIndexFactorOffset:()=>y.RV});var y=c(1590),b=c(4874);class x{_listeners;constructor(){this._listeners=new Map}addEventListener(e,t){this.removeEventListener(e,t);let i=this._listeners.get(e);i||(i=[],this._listeners.set(e,i)),i.push(t)}dispatchEvent(e,t){let i=this._listeners.get(e);i?.forEach(e=>{e(t)})}hasEventListener(e){return!!this._listeners.get(e)}removeAllEventListeners(e){e?this._listeners.delete(e):this._listeners=new Map}removeEventListener(e,t){let i=this._listeners.get(e);if(!i)return;let a=i.length,n=i.indexOf(t);n<y.z9||(a===y.LD?this._listeners.delete(e):i.splice(n,y.LD))}}var w=c(8202),M=c(3112),z=c(3884);let S="100%";async function O(e){let t=(0,b.TA)(e.url,e.index);if(!t)return e.fallback;let i=await fetch(t);return i.ok?await i.json():((0,M.t)().error(`${i.status.toString()} while retrieving config file`),e.fallback)}class P{colorManagers=new Map;easingFunctions=new Map;effectDrawers=new Map;initializers={effects:new Map,shapes:new Map,updaters:new Map};palettes=new Map;plugins=[];presets=new Map;shapeDrawers=new Map;updaters=new Map;_allLoadersSet=new Set;_configs=new Map;_domArray=[];_eventDispatcher=new x;_executedSet=new Set;_initialized=!1;_isRunningLoaders=!1;_loadPromises=new Set;get configs(){let e={};for(let[t,i]of this._configs)e[t]=i;return e}get items(){return this._domArray}get version(){return"4.0.0-beta.0"}addColorManager(e,t){this.colorManagers.set(e,t)}addConfig(e){let t=e.key??e.name??"default";this._configs.set(t,e),this._eventDispatcher.dispatchEvent(w.B.configAdded,{data:{name:t,config:e}})}addEasing(e,t){this.easingFunctions.get(e)||this.easingFunctions.set(e,t)}addEffect(e,t){this.initializers.effects.set(e,t)}addEventListener(e,t){this._eventDispatcher.addEventListener(e,t)}addPalette(e,t){this.palettes.set(e,t)}addParticleUpdater(e,t){this.initializers.updaters.set(e,t)}addPlugin(e){this.getPlugin(e.id)||this.plugins.push(e)}addPreset(e,t,i=!1){(i||!this.getPreset(e))&&this.presets.set(e,t)}addShape(e,t){for(let i of e)this.initializers.shapes.set(i,t)}checkVersion(e){if(this.version!==e)throw Error(`The tsParticles version is different from the loaded plugins version. Engine version: ${this.version}. Plugin version: ${e}`)}clearPlugins(e){this.effectDrawers.delete(e),this.shapeDrawers.delete(e),this.updaters.delete(e)}dispatchEvent(e,t){this._eventDispatcher.dispatchEvent(e,t)}getEasing(e){return this.easingFunctions.get(e)??(e=>e)}getEffectDrawers(e,t=!1){return(0,b.Ot)(e,this.effectDrawers,this.initializers.effects,t)}getPalette(e){return this.palettes.get(e)}getPlugin(e){return this.plugins.find(t=>t.id===e)}getPreset(e){return this.presets.get(e)}async getShapeDrawers(e,t=!1){return(0,b.Ot)(e,this.shapeDrawers,this.initializers.shapes,t)}async getUpdaters(e,t=!1){return(0,b.HQ)(e,this.updaters,this.initializers.updaters,t)}async init(){if(!this._initialized&&!this._isRunningLoaders){this._isRunningLoaders=!0,this._executedSet=new Set,this._allLoadersSet=new Set(this._loadPromises);try{for(let e of this._allLoadersSet)await this._runLoader(e,this._executedSet,this._allLoadersSet)}finally{this._loadPromises.clear(),this._isRunningLoaders=!1,this._initialized=!0}}}item(e){let{items:t}=this,i=t[e];return i?.destroyed?void t.splice(e,y.JC):i}async load(e){var t;let i,a;await this.init();let{Container:n}=await c.e(164).then(c.bind(c,8164)),o=e.id??e.element?.id??`tsparticles${Math.floor((0,z.G0)()*y.$v).toString()}`,{index:s,url:r}=e,l=r?await O({fallback:e.options,url:r,index:s}):e.options,d=(0,b.TA)(l,s),{items:u}=this,h=u.findIndex(e=>e.id.description===o),p=new n(this,o,d);if(h>=y.PZ){let e=this.item(h),t=e?y.xH:y.dv;e&&!e.destroyed&&e.destroy(!1),u.splice(h,t,p)}else u.push(p);let f=(e=>{let t,i=(0,b.T5)();if(e instanceof HTMLCanvasElement||e.tagName.toLowerCase()===y.RF)t=e,t.dataset[y.eb]??=y.X$;else{let a=e.getElementsByTagName(y.RF)[y.Nx];a?(t=a).dataset[y.eb]=y.X$:((t=i.createElement(y.RF)).dataset[y.eb]=y.ce,e.appendChild(t))}return t.style.width||=S,t.style.height||=S,t})((t=e.element,i=(0,b.T5)(),(a=t??i.getElementById(o))||((a=i.createElement("div")).id=o,a.dataset[y.eb]=y.ce,i.body.append(a)),a));return p.canvas.loadCanvas(f),await p.start(),p}loadParticlesOptions(e,t,...i){let a=this.updaters.get(e);a&&a.forEach(e=>e.loadOptions?.(t,...i))}async refresh(e=!0){e&&await Promise.all(this.items.map(e=>e.refresh()))}async register(...e){if(this._initialized)throw Error("Register plugins can only be done before calling tsParticles.load()");for(let t of e)this._isRunningLoaders?await this._runLoader(t,this._executedSet,this._allLoadersSet):this._loadPromises.add(t)}removeEventListener(e,t){this._eventDispatcher.removeEventListener(e,t)}async _runLoader(e,t,i){t.has(e)||(t.add(e),i.add(e),await e(this))}}var k=c(5821),R=c(2067),_=c(7613);(a=s||(s={})).clockwise="clockwise",a.counterClockwise="counter-clockwise",a.random="random";var T=c(5735),E=c(3494),F=c(3443),A=c(3652),I=c(3048),D=c(1826),L=c(7320);(n=r||(r={})).linear="linear",n.radial="radial",n.random="random";var V=c(6492),C=c(8113);(o=l||(l={})).easeInBack="ease-in-back",o.easeInBounce="ease-in-bounce",o.easeInCirc="ease-in-circ",o.easeInCubic="ease-in-cubic",o.easeInElastic="ease-in-elastic",o.easeInExpo="ease-in-expo",o.easeInGaussian="ease-in-gaussian",o.easeInLinear="ease-in-linear",o.easeInQuad="ease-in-quad",o.easeInQuart="ease-in-quart",o.easeInQuint="ease-in-quint",o.easeInSigmoid="ease-in-sigmoid",o.easeInSine="ease-in-sine",o.easeInSmoothstep="ease-in-smoothstep",o.easeOutBack="ease-out-back",o.easeOutBounce="ease-out-bounce",o.easeOutCirc="ease-out-circ",o.easeOutCubic="ease-out-cubic",o.easeOutElastic="ease-out-elastic",o.easeOutExpo="ease-out-expo",o.easeOutGaussian="ease-out-gaussian",o.easeOutLinear="ease-out-linear",o.easeOutQuad="ease-out-quad",o.easeOutQuart="ease-out-quart",o.easeOutQuint="ease-out-quint",o.easeOutSigmoid="ease-out-sigmoid",o.easeOutSine="ease-out-sine",o.easeOutSmoothstep="ease-out-smoothstep",o.easeInOutBack="ease-in-out-back",o.easeInOutBounce="ease-in-out-bounce",o.easeInOutCirc="ease-in-out-circ",o.easeInOutCubic="ease-in-out-cubic",o.easeInOutElastic="ease-in-out-elastic",o.easeInOutExpo="ease-in-out-expo",o.easeInOutGaussian="ease-in-out-gaussian",o.easeInOutLinear="ease-in-out-linear",o.easeInOutQuad="ease-in-out-quad",o.easeInOutQuart="ease-in-out-quart",o.easeInOutQuint="ease-in-out-quint",o.easeInOutSigmoid="ease-in-out-sigmoid",o.easeInOutSine="ease-in-out-sine",o.easeInOutSmoothstep="ease-in-out-smoothstep";var $=c(3096),B=c(4036),Z=c(127),G=c(4162),q=c(580),H=c(3012),j=c(9892),N=c(9289),W=c(3930),K=c(5439),X=c(6912),J=c(9896),Q=c(4534),U=c(9231),Y=c(7764),ee=c(8577),et=c(6189),ei=c(6604),ea=c(3085),en=c(2135),eo=c(9693),es=c(1867),er=c(7076),el=c(5980),ed=c(3280),eu=c(9080),ec=c(3212),eh=c(4276),ep=c(2812),ef=c(9578),ev=c(7959),eg=c(7397),em=c(9854),ey=c(1339),eb=c(3692),ex=c(8130);let ew=new P;return globalThis.tsParticles=ew,m})());
@@ -1,6 +1,6 @@
1
1
  import type { Container } from "./Container.js";
2
2
  import type { Engine } from "./Engine.js";
3
- import type { IContainerPlugin } from "./Interfaces/IContainerPlugin.js";
3
+ import type { ICoordinates } from "./Interfaces/ICoordinates.js";
4
4
  import type { IDelta } from "./Interfaces/IDelta.js";
5
5
  import type { IDimension } from "./Interfaces/IDimension.js";
6
6
  import type { Particle } from "./Particle.js";
@@ -8,8 +8,19 @@ export declare class Canvas {
8
8
  private readonly container;
9
9
  element?: HTMLCanvasElement;
10
10
  readonly size: IDimension;
11
+ zoom: number;
12
+ private _canvasClearPlugins;
13
+ private _canvasPaintPlugins;
14
+ private _canvasSettings?;
15
+ private _clearDrawPlugins;
11
16
  private _colorPlugins;
12
17
  private _context;
18
+ private _drawParticlePlugins;
19
+ private _drawParticlesCleanupPlugins;
20
+ private _drawParticlesSetupPlugins;
21
+ private _drawPlugins;
22
+ private _drawSettingsCleanupPlugins;
23
+ private _drawSettingsSetupPlugins;
13
24
  private readonly _engine;
14
25
  private _generated;
15
26
  private _mutationObserver?;
@@ -22,15 +33,18 @@ export declare class Canvas {
22
33
  private readonly _reusablePluginColors;
23
34
  private readonly _reusableTransform;
24
35
  private readonly _standardSize;
36
+ private _zoomCenter?;
25
37
  constructor(container: Container, engine: Engine);
38
+ get settings(): CanvasRenderingContext2DSettings | undefined;
26
39
  private get _fullScreen();
27
40
  canvasClear(): void;
28
41
  clear(): void;
29
42
  destroy(): void;
30
43
  draw<T>(cb: (context: CanvasRenderingContext2D) => T): T | undefined;
31
44
  drawParticle(particle: Particle, delta: IDelta): void;
32
- drawParticlePlugin(plugin: IContainerPlugin, particle: Particle, delta: IDelta): void;
45
+ drawParticlePlugins(particle: Particle, delta: IDelta): void;
33
46
  drawParticles(delta: IDelta): void;
47
+ getZoomCenter(): ICoordinates;
34
48
  init(): void;
35
49
  initBackground(): void;
36
50
  initPlugins(): void;
@@ -41,6 +55,7 @@ export declare class Canvas {
41
55
  paintImage(image: HTMLImageElement, opacity: number): void;
42
56
  resize(): boolean;
43
57
  setPointerEvents(type: string): void;
58
+ setZoom(zoomLevel: number, center?: ICoordinates): void;
44
59
  stop(): void;
45
60
  windowResize(): Promise<void>;
46
61
  private readonly _applyPostDrawUpdaters;
@@ -1,9 +1,6 @@
1
1
  import { Canvas } from "./Canvas.js";
2
2
  import type { Engine } from "./Engine.js";
3
3
  import type { IContainerPlugin } from "./Interfaces/IContainerPlugin.js";
4
- import type { IEffectDrawer } from "./Interfaces/IEffectDrawer.js";
5
- import type { IMovePathGenerator } from "./Interfaces/IMovePathGenerator.js";
6
- import type { IShapeDrawer } from "./Interfaces/IShapeDrawer.js";
7
4
  import type { ISourceOptions } from "../Types/ISourceOptions.js";
8
5
  import { Options } from "../Options/Classes/Options.js";
9
6
  import { Particles } from "./Particles.js";
@@ -12,16 +9,16 @@ export declare class Container {
12
9
  actualOptions: Options;
13
10
  readonly canvas: Canvas;
14
11
  destroyed: boolean;
15
- readonly effectDrawers: Map<string, IEffectDrawer<import("./Particle.js").Particle>>;
16
12
  fpsLimit: number;
17
13
  hdr: boolean;
18
14
  readonly id: symbol;
19
15
  pageHidden: boolean;
16
+ readonly particleCreatedPlugins: IContainerPlugin[];
17
+ readonly particleDestroyedPlugins: IContainerPlugin[];
18
+ readonly particlePositionPlugins: IContainerPlugin[];
20
19
  readonly particles: Particles;
21
- readonly pathGenerators: Map<string, IMovePathGenerator>;
22
20
  readonly plugins: IContainerPlugin[];
23
21
  readonly retina: Retina;
24
- readonly shapeDrawers: Map<string, IShapeDrawer<import("./Particle.js").Particle>>;
25
22
  started: boolean;
26
23
  zLayers: number;
27
24
  private _delay;
@@ -44,7 +41,6 @@ export declare class Container {
44
41
  get options(): Options;
45
42
  get sourceOptions(): ISourceOptions | undefined;
46
43
  addLifeTime(value: number): void;
47
- addPath(key: string, generator: IMovePathGenerator, override?: boolean): boolean;
48
44
  alive(): boolean;
49
45
  destroy(remove?: boolean): void;
50
46
  draw(force: boolean): void;
@@ -1,5 +1,5 @@
1
1
  import type { EasingType, EasingTypeAlt } from "../Enums/Types/EasingType.js";
2
- import type { MoverInitializer, UpdaterInitializer } from "../Types/EngineInitializers.js";
2
+ import type { EffectInitializer, Initializers, ShapeInitializer, UpdaterInitializer } from "../Types/EngineInitializers.js";
3
3
  import type { Container } from "./Container.js";
4
4
  import type { CustomEventArgs } from "../Types/CustomEventArgs.js";
5
5
  import type { CustomEventListener } from "../Types/CustomEventListener.js";
@@ -7,8 +7,7 @@ import type { EasingFunction } from "../Types/EasingFunction.js";
7
7
  import type { IColorManager } from "./Interfaces/IColorManager.js";
8
8
  import type { IEffectDrawer } from "./Interfaces/IEffectDrawer.js";
9
9
  import type { ILoadParams } from "./Interfaces/ILoadParams.js";
10
- import type { IMovePathGenerator } from "./Interfaces/IMovePathGenerator.js";
11
- import type { IParticleMover } from "./Interfaces/IParticleMover.js";
10
+ import type { IPalette } from "./Interfaces/IPalette.js";
12
11
  import type { IParticleUpdater } from "./Interfaces/IParticleUpdater.js";
13
12
  import type { IParticlesOptions } from "../Options/Interfaces/Particles/IParticlesOptions.js";
14
13
  import type { IPlugin } from "./Interfaces/IPlugin.js";
@@ -27,12 +26,12 @@ type LoadPluginFunction = AsyncLoadPluginFunction | SyncLoadPluginFunction | Asy
27
26
  export declare class Engine {
28
27
  readonly colorManagers: Map<string, IColorManager>;
29
28
  readonly easingFunctions: Map<EasingTypeAlt | EasingType, EasingFunction>;
30
- readonly effectDrawers: Map<string, IEffectDrawer<import("./Particle.js").Particle>>;
31
- readonly movers: Map<Container, IParticleMover[]>;
32
- readonly pathGenerators: Map<string, IMovePathGenerator>;
29
+ readonly effectDrawers: Map<Container, Map<string, IEffectDrawer<import("./Particle.js").Particle>>>;
30
+ readonly initializers: Initializers;
31
+ readonly palettes: Map<string, IPalette>;
33
32
  readonly plugins: IPlugin[];
34
33
  readonly presets: Map<string, RecursivePartial<import("../export-types.js").IOptions>>;
35
- readonly shapeDrawers: Map<string, IShapeDrawer<import("./Particle.js").Particle>>;
34
+ readonly shapeDrawers: Map<Container, Map<string, IShapeDrawer<import("./Particle.js").Particle>>>;
36
35
  readonly updaters: Map<Container, IParticleUpdater[]>;
37
36
  private _allLoadersSet;
38
37
  private readonly _configs;
@@ -40,36 +39,30 @@ export declare class Engine {
40
39
  private readonly _eventDispatcher;
41
40
  private _executedSet;
42
41
  private _initialized;
43
- private readonly _initializers;
44
42
  private _isRunningLoaders;
45
43
  private readonly _loadPromises;
46
- constructor();
47
44
  get configs(): Record<string, ISourceOptions>;
48
45
  get items(): Container[];
49
46
  get version(): string;
50
- addColorManager(manager: IColorManager): void;
47
+ addColorManager(name: string, manager: IColorManager): void;
51
48
  addConfig(config: ISourceOptions): void;
52
49
  addEasing(name: EasingType | EasingTypeAlt, easing: EasingFunction): void;
53
- addEffect(effect: string, drawer: IEffectDrawer): void;
50
+ addEffect(effect: string, drawer: EffectInitializer): void;
54
51
  addEventListener(type: string, listener: CustomEventListener): void;
55
- addMover(name: string, moverInitializer: MoverInitializer): void;
52
+ addPalette(name: string, palette: IPalette): void;
56
53
  addParticleUpdater(name: string, updaterInitializer: UpdaterInitializer): void;
57
- addPathGenerator(name: string, generator: IMovePathGenerator): void;
58
54
  addPlugin(plugin: IPlugin): void;
59
55
  addPreset(preset: string, options: Readonly<ISourceOptions>, override?: boolean): void;
60
- addShape(drawer: IShapeDrawer): void;
56
+ addShape(shapes: string[], drawer: ShapeInitializer): void;
61
57
  checkVersion(pluginVersion: string): void;
62
58
  clearPlugins(container: Container): void;
63
59
  dispatchEvent(type: string, args?: CustomEventArgs): void;
64
60
  getEasing(name: EasingType | EasingTypeAlt): EasingFunction;
65
- getEffectDrawer(type: string): IEffectDrawer | undefined;
66
- getMovers(container: Container, force?: boolean): Promise<IParticleMover[]>;
67
- getPathGenerator(type: string): IMovePathGenerator | undefined;
61
+ getEffectDrawers(container: Container, force?: boolean): Promise<Map<string, IEffectDrawer>>;
62
+ getPalette(name: string): IPalette | undefined;
68
63
  getPlugin(plugin: string): IPlugin | undefined;
69
64
  getPreset(preset: string): ISourceOptions | undefined;
70
- getShapeDrawer(type: string): IShapeDrawer | undefined;
71
- getSupportedEffects(): IterableIterator<string>;
72
- getSupportedShapes(): IterableIterator<string>;
65
+ getShapeDrawers(container: Container, force?: boolean): Promise<Map<string, IShapeDrawer>>;
73
66
  getUpdaters(container: Container, force?: boolean): Promise<IParticleUpdater[]>;
74
67
  init(): Promise<void>;
75
68
  item(index: number): Container | undefined;
@@ -1,6 +1,5 @@
1
1
  import type { IColor, IRangeColor, IRgb, IRgba } from "./Colors.js";
2
2
  export interface IColorManager {
3
- readonly key: string;
4
3
  accepts(input: string): boolean;
5
4
  handleColor(color: IColor): IRgb | undefined;
6
5
  handleRangeColor(color: IRangeColor): IRgb | undefined;
@@ -2,6 +2,7 @@ import type { ExportResult } from "../../Types/ExportResult.js";
2
2
  import type { ICoordinates } from "./ICoordinates.js";
3
3
  import type { IDelta } from "./IDelta.js";
4
4
  import type { IOptionsColor } from "../../Options/Interfaces/IOptionsColor.js";
5
+ import type { IShapeDrawData } from "./IShapeDrawData.js";
5
6
  import type { OutModeDirection } from "../../Enums/Directions/OutModeDirection.js";
6
7
  import type { Particle } from "../Particle.js";
7
8
  export interface IContainerPlugin {
@@ -15,6 +16,7 @@ export interface IContainerPlugin {
15
16
  drawParticle?: (context: CanvasRenderingContext2D, particle: Particle, delta: IDelta) => void;
16
17
  drawParticleCleanup?: (context: CanvasRenderingContext2D, particle: Particle, delta: IDelta) => void;
17
18
  drawParticleSetup?: (context: CanvasRenderingContext2D, particle: Particle, delta: IDelta) => void;
19
+ drawParticleTransform?: (data: IShapeDrawData) => void;
18
20
  drawSettingsCleanup?: (context: CanvasRenderingContext2D, delta: IDelta) => void;
19
21
  drawSettingsSetup?: (context: CanvasRenderingContext2D, delta: IDelta) => void;
20
22
  export?: (type: string, data: Record<string, unknown>) => Promise<ExportResult>;
@@ -36,7 +38,6 @@ export interface IContainerPlugin {
36
38
  postUpdate?: (delta: IDelta) => void;
37
39
  preInit?: () => Promise<void>;
38
40
  redrawInit?: () => Promise<void>;
39
- reset?: () => void;
40
41
  resize?: () => void;
41
42
  start?: () => Promise<void>;
42
43
  stop?: () => void;
@@ -0,0 +1,7 @@
1
+ export interface IPalette {
2
+ background: string;
3
+ blendMode: GlobalCompositeOperation;
4
+ colors: string[];
5
+ fill: boolean;
6
+ name: string;
7
+ }
@@ -1,4 +1,5 @@
1
1
  export interface IParticleOpacityData {
2
+ fillOpacity: number;
2
3
  opacity: number;
3
4
  strokeOpacity: number;
4
5
  }
@@ -12,10 +12,10 @@ export interface IParticleValueAnimation<T> {
12
12
  value: T;
13
13
  velocity?: number;
14
14
  }
15
- export interface IParticleColorAnimation extends IParticleValueAnimation<number> {
16
- offset?: RangeValue;
17
- }
18
15
  export interface IParticleNumericValueAnimation extends IParticleValueAnimation<number> {
19
16
  max: number;
20
17
  min: number;
21
18
  }
19
+ export interface IParticleColorAnimation extends IParticleNumericValueAnimation {
20
+ offset?: RangeValue;
21
+ }
@@ -1,12 +1,20 @@
1
+ import type { ICoordinates } from "./ICoordinates.js";
1
2
  import type { IDelta } from "./IDelta.js";
2
3
  import type { Particle } from "../Particle.js";
3
4
  export interface IShapeDrawData<TParticle extends Particle = Particle> {
4
5
  context: CanvasRenderingContext2D;
5
6
  delta: IDelta;
7
+ drawPosition: ICoordinates;
8
+ drawRadius: number;
9
+ drawScale: number;
6
10
  fill: boolean;
7
11
  opacity: number;
8
12
  particle: TParticle;
9
13
  pixelRatio: number;
14
+ position: {
15
+ x: number;
16
+ y: number;
17
+ };
10
18
  radius: number;
11
19
  stroke: boolean;
12
20
  transformData: {
@@ -11,5 +11,4 @@ export interface IShapeDrawer<TParticle extends Particle = Particle> {
11
11
  loadShape?: (particle: TParticle) => void;
12
12
  particleDestroy?: (particle: TParticle) => void;
13
13
  particleInit?: (container: Container, particle: TParticle) => void;
14
- readonly validTypes: readonly string[];
15
14
  }
@@ -3,6 +3,5 @@ import type { RecursivePartial } from "../../Types/RecursivePartial.js";
3
3
  export interface IShapeValues {
4
4
  [key: string]: unknown;
5
5
  close?: boolean;
6
- fill?: boolean;
7
6
  particles?: RecursivePartial<IParticlesOptions>;
8
7
  }
@@ -5,7 +5,6 @@ import type { Engine } from "./Engine.js";
5
5
  import type { IBubbleParticleData } from "./Interfaces/IBubbleParticleData.js";
6
6
  import type { IDelta } from "./Interfaces/IDelta.js";
7
7
  import type { IHsl } from "./Interfaces/Colors.js";
8
- import type { IMovePathGenerator } from "./Interfaces/IMovePathGenerator.js";
9
8
  import type { IParticleHslAnimation } from "./Interfaces/IParticleHslAnimation.js";
10
9
  import type { IParticleNumericValueAnimation } from "./Interfaces/IParticleValueAnimation.js";
11
10
  import type { IParticleOpacityData } from "./Interfaces/IParticleOpacityData.js";
@@ -23,13 +22,14 @@ export declare class Particle {
23
22
  readonly container: Container;
24
23
  backColor?: IHsl;
25
24
  bubble: IBubbleParticleData;
26
- color?: IParticleHslAnimation;
27
25
  destroyed: boolean;
28
26
  direction: number;
29
27
  effect?: string;
30
28
  effectClose: boolean;
31
29
  effectData?: IShapeValues;
32
- effectFill: boolean;
30
+ fillColor?: IParticleHslAnimation;
31
+ fillEnabled?: boolean;
32
+ fillOpacity?: number;
33
33
  group?: string;
34
34
  id: number;
35
35
  ignoresResizeRatio: boolean;
@@ -39,13 +39,10 @@ export declare class Particle {
39
39
  lastPathTime: number;
40
40
  misplaced: boolean;
41
41
  moveCenter: ICenterCoordinates;
42
- moveDecay: number;
43
42
  offset: Vector;
44
43
  opacity?: IParticleNumericValueAnimation;
45
44
  options: ParticlesOptions;
46
45
  outType: ParticleOutType;
47
- pathDelay: number;
48
- pathGenerator?: IMovePathGenerator;
49
46
  pathRotation: boolean;
50
47
  position: Vector3d;
51
48
  randomIndexData?: number;
@@ -55,7 +52,6 @@ export declare class Particle {
55
52
  shape?: string;
56
53
  shapeClose: boolean;
57
54
  shapeData?: IShapeValues;
58
- shapeFill: boolean;
59
55
  sides: number;
60
56
  size: IParticleNumericValueAnimation;
61
57
  slow: ISlowParticleData;