@tsparticles/basic 4.1.1 → 4.1.2
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.
- package/browser/bundle.js +3 -2
- package/browser/index.js +1 -1
- package/browser/index.lazy.js +1 -1
- package/cjs/bundle.js +3 -2
- package/cjs/index.js +1 -1
- package/cjs/index.lazy.js +1 -1
- package/esm/bundle.js +3 -2
- package/esm/index.js +1 -1
- package/esm/index.lazy.js +1 -1
- package/package.json +12 -12
- package/report.html +1 -1
- package/tsparticles.basic.bundle.js +14 -14
- package/tsparticles.basic.bundle.min.js +1 -1
- package/tsparticles.basic.js +2 -2
- package/tsparticles.basic.min.js +1 -1
package/browser/bundle.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { loadBasic } from "./index.js";
|
|
2
1
|
export * from "@tsparticles/engine";
|
|
2
|
+
import { loadBasic } from "./index.js";
|
|
3
|
+
import { tsParticles } from "@tsparticles/engine";
|
|
3
4
|
export { loadBasic } from "./index.js";
|
|
4
5
|
const globalObject = globalThis;
|
|
5
|
-
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
6
6
|
globalObject.loadBasic = loadBasic;
|
|
7
|
+
globalObject.tsParticles = tsParticles;
|
package/browser/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
|
|
|
9
9
|
import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
|
|
10
10
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
11
11
|
export async function loadBasic(engine) {
|
|
12
|
-
engine.checkVersion("4.1.
|
|
12
|
+
engine.checkVersion("4.1.2");
|
|
13
13
|
await engine.pluginManager.register(async (e) => {
|
|
14
14
|
await Promise.all([
|
|
15
15
|
loadBlendPlugin(e),
|
package/browser/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadBasic(engine) {
|
|
2
|
-
engine.checkVersion("4.1.
|
|
2
|
+
engine.checkVersion("4.1.2");
|
|
3
3
|
await engine.pluginManager.register(async (e) => {
|
|
4
4
|
const [{ loadBlendPlugin }, { loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
|
|
5
5
|
import("@tsparticles/plugin-blend/lazy"),
|
package/cjs/bundle.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { loadBasic } from "./index.js";
|
|
2
1
|
export * from "@tsparticles/engine";
|
|
2
|
+
import { loadBasic } from "./index.js";
|
|
3
|
+
import { tsParticles } from "@tsparticles/engine";
|
|
3
4
|
export { loadBasic } from "./index.js";
|
|
4
5
|
const globalObject = globalThis;
|
|
5
|
-
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
6
6
|
globalObject.loadBasic = loadBasic;
|
|
7
|
+
globalObject.tsParticles = tsParticles;
|
package/cjs/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
|
|
|
9
9
|
import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
|
|
10
10
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
11
11
|
export async function loadBasic(engine) {
|
|
12
|
-
engine.checkVersion("4.1.
|
|
12
|
+
engine.checkVersion("4.1.2");
|
|
13
13
|
await engine.pluginManager.register(async (e) => {
|
|
14
14
|
await Promise.all([
|
|
15
15
|
loadBlendPlugin(e),
|
package/cjs/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadBasic(engine) {
|
|
2
|
-
engine.checkVersion("4.1.
|
|
2
|
+
engine.checkVersion("4.1.2");
|
|
3
3
|
await engine.pluginManager.register(async (e) => {
|
|
4
4
|
const [{ loadBlendPlugin }, { loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
|
|
5
5
|
import("@tsparticles/plugin-blend/lazy"),
|
package/esm/bundle.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { loadBasic } from "./index.js";
|
|
2
1
|
export * from "@tsparticles/engine";
|
|
2
|
+
import { loadBasic } from "./index.js";
|
|
3
|
+
import { tsParticles } from "@tsparticles/engine";
|
|
3
4
|
export { loadBasic } from "./index.js";
|
|
4
5
|
const globalObject = globalThis;
|
|
5
|
-
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
6
6
|
globalObject.loadBasic = loadBasic;
|
|
7
|
+
globalObject.tsParticles = tsParticles;
|
package/esm/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { loadPaintUpdater } from "@tsparticles/updater-paint";
|
|
|
9
9
|
import { loadRgbColorPlugin } from "@tsparticles/plugin-rgb-color";
|
|
10
10
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
11
11
|
export async function loadBasic(engine) {
|
|
12
|
-
engine.checkVersion("4.1.
|
|
12
|
+
engine.checkVersion("4.1.2");
|
|
13
13
|
await engine.pluginManager.register(async (e) => {
|
|
14
14
|
await Promise.all([
|
|
15
15
|
loadBlendPlugin(e),
|
package/esm/index.lazy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export async function loadBasic(engine) {
|
|
2
|
-
engine.checkVersion("4.1.
|
|
2
|
+
engine.checkVersion("4.1.2");
|
|
3
3
|
await engine.pluginManager.register(async (e) => {
|
|
4
4
|
const [{ loadBlendPlugin }, { loadHexColorPlugin }, { loadHslColorPlugin }, { loadRgbColorPlugin }, { loadMovePlugin }, { loadCircleShape }, { loadOpacityUpdater }, { loadOutModesUpdater }, { loadPaintUpdater }, { loadSizeUpdater },] = await Promise.all([
|
|
5
5
|
import("@tsparticles/plugin-blend/lazy"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/basic",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -105,17 +105,17 @@
|
|
|
105
105
|
"./package.json": "./package.json"
|
|
106
106
|
},
|
|
107
107
|
"dependencies": {
|
|
108
|
-
"@tsparticles/engine": "4.1.
|
|
109
|
-
"@tsparticles/plugin-blend": "4.1.
|
|
110
|
-
"@tsparticles/plugin-hex-color": "4.1.
|
|
111
|
-
"@tsparticles/plugin-hsl-color": "4.1.
|
|
112
|
-
"@tsparticles/plugin-move": "4.1.
|
|
113
|
-
"@tsparticles/plugin-rgb-color": "4.1.
|
|
114
|
-
"@tsparticles/shape-circle": "4.1.
|
|
115
|
-
"@tsparticles/updater-opacity": "4.1.
|
|
116
|
-
"@tsparticles/updater-out-modes": "4.1.
|
|
117
|
-
"@tsparticles/updater-paint": "4.1.
|
|
118
|
-
"@tsparticles/updater-size": "4.1.
|
|
108
|
+
"@tsparticles/engine": "4.1.2",
|
|
109
|
+
"@tsparticles/plugin-blend": "4.1.2",
|
|
110
|
+
"@tsparticles/plugin-hex-color": "4.1.2",
|
|
111
|
+
"@tsparticles/plugin-hsl-color": "4.1.2",
|
|
112
|
+
"@tsparticles/plugin-move": "4.1.2",
|
|
113
|
+
"@tsparticles/plugin-rgb-color": "4.1.2",
|
|
114
|
+
"@tsparticles/shape-circle": "4.1.2",
|
|
115
|
+
"@tsparticles/updater-opacity": "4.1.2",
|
|
116
|
+
"@tsparticles/updater-out-modes": "4.1.2",
|
|
117
|
+
"@tsparticles/updater-paint": "4.1.2",
|
|
118
|
+
"@tsparticles/updater-size": "4.1.2"
|
|
119
119
|
},
|
|
120
120
|
"publishConfig": {
|
|
121
121
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -4930,7 +4930,7 @@ var drawChart = (function (exports) {
|
|
|
4930
4930
|
</script>
|
|
4931
4931
|
<script>
|
|
4932
4932
|
/*<!--*/
|
|
4933
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"tsparticles.basic.bundle.js","children":[{"name":"home/workflows/workspace","children":[{"name":"engine/dist/browser","children":[{"name":"Core","children":[{"name":"Utils","children":[{"uid":"9823acae-1","name":"Constants.js"},{"uid":"9823acae-5","name":"Vectors.js"},{"uid":"9823acae-29","name":"PluginManager.js"},{"uid":"9823acae-39","name":"Ranges.js"},{"uid":"9823acae-191","name":"EventListeners.js"},{"uid":"9823acae-195","name":"SpatialHashGrid.js"}]},{"uid":"9823acae-33","name":"Engine.js"},{"uid":"9823acae-187","name":"RenderManager.js"},{"uid":"9823acae-189","name":"CanvasManager.js"},{"uid":"9823acae-193","name":"Particle.js"},{"uid":"9823acae-197","name":"ParticlesManager.js"},{"uid":"9823acae-199","name":"Retina.js"},{"uid":"9823acae-201","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"9823acae-3","name":"MoveDirection.js"},{"uid":"9823acae-17","name":"OutModeDirection.js"},{"uid":"9823acae-41","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"9823acae-11","name":"AnimationMode.js"},{"uid":"9823acae-19","name":"PixelMode.js"},{"uid":"9823acae-43","name":"LimitMode.js"},{"uid":"9823acae-45","name":"OutMode.js"}]},{"uid":"9823acae-13","name":"AnimationStatus.js"},{"name":"Types","children":[{"uid":"9823acae-15","name":"DestroyType.js"},{"uid":"9823acae-21","name":"StartValueType.js"},{"uid":"9823acae-27","name":"EventType.js"},{"uid":"9823acae-47","name":"AlterType.js"},{"uid":"9823acae-49","name":"GradientType.js"},{"uid":"9823acae-51","name":"ParticleOutType.js"},{"uid":"9823acae-53","name":"EasingType.js"}]},{"uid":"9823acae-37","name":"RangeType.js"}]},{"name":"Utils","children":[{"uid":"9823acae-7","name":"TypeUtils.js"},{"uid":"9823acae-9","name":"MathUtils.js"},{"uid":"9823acae-23","name":"Utils.js"},{"uid":"9823acae-25","name":"EventDispatcher.js"},{"uid":"9823acae-31","name":"LogUtils.js"},{"uid":"9823acae-111","name":"OptionsUtils.js"},{"uid":"9823acae-115","name":"CanvasUtils.js"},{"uid":"9823acae-117","name":"ColorUtils.js"}]},{"uid":"9823acae-35","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"9823acae-55","name":"AnimationOptions.js"},{"uid":"9823acae-57","name":"ColorAnimation.js"},{"uid":"9823acae-59","name":"HslAnimation.js"},{"uid":"9823acae-61","name":"OptionsColor.js"},{"uid":"9823acae-63","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"9823acae-65"},{"name":"FullScreen/FullScreen.js","uid":"9823acae-67"},{"uid":"9823acae-69","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"9823acae-71"},{"uid":"9823acae-73","name":"Fill.js"},{"name":"Move","children":[{"uid":"9823acae-75","name":"MoveAngle.js"},{"uid":"9823acae-77","name":"MoveCenter.js"},{"uid":"9823acae-79","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"9823acae-83"},{"uid":"9823acae-85","name":"OutModes.js"},{"uid":"9823acae-87","name":"Spin.js"},{"uid":"9823acae-89","name":"Move.js"}]},{"uid":"9823acae-91","name":"Stroke.js"},{"uid":"9823acae-93","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"9823acae-95","name":"ParticlesBounceFactor.js"},{"uid":"9823acae-97","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"9823acae-99","name":"ParticlesDensity.js"},{"uid":"9823acae-101","name":"ParticlesNumberLimit.js"},{"uid":"9823acae-103","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"9823acae-105"},{"name":"ZIndex/ZIndex.js","uid":"9823acae-107"},{"uid":"9823acae-109","name":"ParticlesOptions.js"}]},{"uid":"9823acae-81","name":"ValueWithRandom.js"},{"uid":"9823acae-113","name":"Options.js"}]},{"uid":"9823acae-119","name":"index.js"}]},{"name":"plugins","children":[{"name":"blend/dist/browser","children":[{"name":"Options/Classes/Blend.js","uid":"9823acae-121"},{"uid":"9823acae-123","name":"BlendPlugin.js"},{"uid":"9823acae-125","name":"index.js"},{"uid":"9823acae-203","name":"BlendPluginInstance.js"}]},{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"9823acae-133","name":"HexColorManager.js"},{"uid":"9823acae-135","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"9823acae-137","name":"HslColorManager.js"},{"uid":"9823acae-139","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"9823acae-171","name":"RgbColorManager.js"},{"uid":"9823acae-173","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"9823acae-141","name":"MovePlugin.js"},{"uid":"9823acae-143","name":"index.js"},{"uid":"9823acae-205","name":"Utils.js"},{"uid":"9823acae-207","name":"MovePluginInstance.js"}]}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"9823acae-127","name":"Utils.js"},{"uid":"9823acae-129","name":"CircleDrawer.js"},{"uid":"9823acae-131","name":"index.js"}]},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"9823acae-145","name":"OpacityAnimation.js"},{"uid":"9823acae-147","name":"Opacity.js"}]},{"uid":"9823acae-149","name":"OpacityUpdater.js"},{"uid":"9823acae-151","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"9823acae-153","name":"Utils.js"},{"uid":"9823acae-155","name":"BounceOutMode.js"},{"uid":"9823acae-157","name":"DestroyOutMode.js"},{"uid":"9823acae-159","name":"NoneOutMode.js"},{"uid":"9823acae-161","name":"OutOutMode.js"},{"uid":"9823acae-163","name":"OutOfCanvasUpdater.js"},{"uid":"9823acae-165","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"9823acae-167","name":"PaintUpdater.js"},{"uid":"9823acae-169","name":"index.js"}]},{"name":"size/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"9823acae-175","name":"SizeAnimation.js"},{"uid":"9823acae-177","name":"Size.js"}]},{"uid":"9823acae-179","name":"SizeUpdater.js"},{"uid":"9823acae-181","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"9823acae-183","name":"index.js"},{"uid":"9823acae-185","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"9823acae-1":{"renderedLength":1562,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-0"},"9823acae-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-2"},"9823acae-5":{"renderedLength":3316,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-4"},"9823acae-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-6"},"9823acae-9":{"renderedLength":6134,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-8"},"9823acae-11":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-10"},"9823acae-13":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-12"},"9823acae-15":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-14"},"9823acae-17":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-16"},"9823acae-19":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-18"},"9823acae-21":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-20"},"9823acae-23":{"renderedLength":17344,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-22"},"9823acae-25":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-24"},"9823acae-27":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-26"},"9823acae-29":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-28"},"9823acae-31":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-30"},"9823acae-33":{"renderedLength":6107,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-32"},"9823acae-35":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-34"},"9823acae-37":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-36"},"9823acae-39":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-38"},"9823acae-41":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-40"},"9823acae-43":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-42"},"9823acae-45":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-44"},"9823acae-47":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-46"},"9823acae-49":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-48"},"9823acae-51":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-50"},"9823acae-53":{"renderedLength":2524,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-52"},"9823acae-55":{"renderedLength":1698,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-54"},"9823acae-57":{"renderedLength":711,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-56"},"9823acae-59":{"renderedLength":362,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-58"},"9823acae-61":{"renderedLength":708,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-60"},"9823acae-63":{"renderedLength":1063,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-62"},"9823acae-65":{"renderedLength":1129,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-64"},"9823acae-67":{"renderedLength":460,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-66"},"9823acae-69":{"renderedLength":458,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-68"},"9823acae-71":{"renderedLength":850,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-70"},"9823acae-73":{"renderedLength":624,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-72"},"9823acae-75":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-74"},"9823acae-77":{"renderedLength":717,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-76"},"9823acae-79":{"renderedLength":839,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-78"},"9823acae-81":{"renderedLength":989,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-80"},"9823acae-83":{"renderedLength":790,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-82"},"9823acae-85":{"renderedLength":597,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-84"},"9823acae-87":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-86"},"9823acae-89":{"renderedLength":3032,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-88"},"9823acae-91":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-90"},"9823acae-93":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-92"},"9823acae-95":{"renderedLength":146,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-94"},"9823acae-97":{"renderedLength":420,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-96"},"9823acae-99":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-98"},"9823acae-101":{"renderedLength":475,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-100"},"9823acae-103":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-102"},"9823acae-105":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-104"},"9823acae-107":{"renderedLength":740,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-106"},"9823acae-109":{"renderedLength":5295,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-108"},"9823acae-111":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-110"},"9823acae-113":{"renderedLength":4492,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-112"},"9823acae-115":{"renderedLength":4116,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-114"},"9823acae-117":{"renderedLength":14196,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-116"},"9823acae-119":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-118"},"9823acae-121":{"renderedLength":462,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-120"},"9823acae-123":{"renderedLength":938,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-122"},"9823acae-125":{"renderedLength":209,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-124"},"9823acae-127":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-126"},"9823acae-129":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-128"},"9823acae-131":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-130"},"9823acae-133":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-132"},"9823acae-135":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-134"},"9823acae-137":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-136"},"9823acae-139":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-138"},"9823acae-141":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-140"},"9823acae-143":{"renderedLength":1076,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-142"},"9823acae-145":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-144"},"9823acae-147":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-146"},"9823acae-149":{"renderedLength":1973,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-148"},"9823acae-151":{"renderedLength":314,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-150"},"9823acae-153":{"renderedLength":3420,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-152"},"9823acae-155":{"renderedLength":1412,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-154"},"9823acae-157":{"renderedLength":1304,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-156"},"9823acae-159":{"renderedLength":2071,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-158"},"9823acae-161":{"renderedLength":6702,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-160"},"9823acae-163":{"renderedLength":2205,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-162"},"9823acae-165":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-164"},"9823acae-167":{"renderedLength":3448,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-166"},"9823acae-169":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-168"},"9823acae-171":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-170"},"9823acae-173":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-172"},"9823acae-175":{"renderedLength":451,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-174"},"9823acae-177":{"renderedLength":495,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-176"},"9823acae-179":{"renderedLength":2126,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-178"},"9823acae-181":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-180"},"9823acae-183":{"renderedLength":577,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-182"},"9823acae-185":{"renderedLength":161,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-184"},"9823acae-187":{"renderedLength":11692,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-186"},"9823acae-189":{"renderedLength":12702,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-188"},"9823acae-191":{"renderedLength":3151,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-190"},"9823acae-193":{"renderedLength":21931,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-192"},"9823acae-195":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-194"},"9823acae-197":{"renderedLength":18216,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-196"},"9823acae-199":{"renderedLength":1506,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-198"},"9823acae-201":{"renderedLength":13453,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-200"},"9823acae-203":{"renderedLength":1301,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-202"},"9823acae-205":{"renderedLength":6783,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-204"},"9823acae-207":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"9823acae-206"}},"nodeMetas":{"9823acae-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-1"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-32"},{"uid":"9823acae-38"},{"uid":"9823acae-4"},{"uid":"9823acae-58"},{"uid":"9823acae-114"},{"uid":"9823acae-116"},{"uid":"9823acae-8"},{"uid":"9823acae-22"},{"uid":"9823acae-24"},{"uid":"9823acae-200"},{"uid":"9823acae-188"},{"uid":"9823acae-190"},{"uid":"9823acae-196"},{"uid":"9823acae-198"},{"uid":"9823acae-186"},{"uid":"9823acae-192"}]},"9823acae-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-3"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-88"},{"uid":"9823acae-8"},{"uid":"9823acae-192"}]},"9823acae-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-5"},"imported":[{"uid":"9823acae-0"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-8"},{"uid":"9823acae-22"},{"uid":"9823acae-192"}]},"9823acae-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-7"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-62"},{"uid":"9823acae-54"},{"uid":"9823acae-64"},{"uid":"9823acae-56"},{"uid":"9823acae-66"},{"uid":"9823acae-58"},{"uid":"9823acae-112"},{"uid":"9823acae-60"},{"uid":"9823acae-96"},{"uid":"9823acae-108"},{"uid":"9823acae-72"},{"uid":"9823acae-92"},{"uid":"9823acae-90"},{"uid":"9823acae-88"},{"uid":"9823acae-74"},{"uid":"9823acae-76"},{"uid":"9823acae-78"},{"uid":"9823acae-84"},{"uid":"9823acae-82"},{"uid":"9823acae-86"},{"uid":"9823acae-102"},{"uid":"9823acae-100"},{"uid":"9823acae-98"},{"uid":"9823acae-104"},{"uid":"9823acae-106"},{"uid":"9823acae-68"},{"uid":"9823acae-80"},{"uid":"9823acae-116"},{"uid":"9823acae-8"},{"uid":"9823acae-22"},{"uid":"9823acae-70"}]},"9823acae-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-9"},"imported":[{"uid":"9823acae-2"},{"uid":"9823acae-0"},{"uid":"9823acae-4"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-32"},{"uid":"9823acae-38"},{"uid":"9823acae-54"},{"uid":"9823acae-56"},{"uid":"9823acae-112"},{"uid":"9823acae-72"},{"uid":"9823acae-90"},{"uid":"9823acae-88"},{"uid":"9823acae-74"},{"uid":"9823acae-78"},{"uid":"9823acae-86"},{"uid":"9823acae-80"},{"uid":"9823acae-116"},{"uid":"9823acae-22"},{"uid":"9823acae-200"},{"uid":"9823acae-198"},{"uid":"9823acae-192"}]},"9823acae-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-11"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-54"},{"uid":"9823acae-22"}]},"9823acae-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-13"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-116"},{"uid":"9823acae-22"}]},"9823acae-14":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-15"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-22"}]},"9823acae-16":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-17"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-22"},{"uid":"9823acae-192"}]},"9823acae-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-19"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-76"},{"uid":"9823acae-22"}]},"9823acae-20":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-21"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-54"},{"uid":"9823acae-22"}]},"9823acae-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-23"},"imported":[{"uid":"9823acae-8"},{"uid":"9823acae-0"},{"uid":"9823acae-6"},{"uid":"9823acae-10"},{"uid":"9823acae-12"},{"uid":"9823acae-14"},{"uid":"9823acae-16"},{"uid":"9823acae-18"},{"uid":"9823acae-20"},{"uid":"9823acae-4"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-32"},{"uid":"9823acae-112"},{"uid":"9823acae-108"},{"uid":"9823acae-82"},{"uid":"9823acae-86"},{"uid":"9823acae-104"},{"uid":"9823acae-116"},{"uid":"9823acae-28"},{"uid":"9823acae-70"},{"uid":"9823acae-188"},{"uid":"9823acae-190"},{"uid":"9823acae-192"}]},"9823acae-24":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-25"},"imported":[{"uid":"9823acae-0"}],"importedBy":[{"uid":"9823acae-32"}]},"9823acae-26":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-27"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-28"},{"uid":"9823acae-200"},{"uid":"9823acae-196"},{"uid":"9823acae-192"}]},"9823acae-28":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-29"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-26"}],"importedBy":[{"uid":"9823acae-32"}]},"9823acae-30":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-31"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-32"},{"uid":"9823acae-200"},{"uid":"9823acae-196"}]},"9823acae-32":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-33"},"imported":[{"uid":"9823acae-0"},{"uid":"9823acae-22"},{"uid":"9823acae-24"},{"uid":"9823acae-28"},{"uid":"9823acae-30"},{"uid":"9823acae-8"},{"uid":"9823acae-200","dynamic":true}],"importedBy":[{"uid":"9823acae-34"}]},"9823acae-34":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-35"},"imported":[{"uid":"9823acae-32"}],"importedBy":[{"uid":"9823acae-118"}]},"9823acae-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-37"},"imported":[],"importedBy":[{"uid":"9823acae-38"}]},"9823acae-38":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-39"},"imported":[{"uid":"9823acae-36"},{"uid":"9823acae-8"},{"uid":"9823acae-0"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-194"}]},"9823acae-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-41"},"imported":[],"importedBy":[{"uid":"9823acae-208"}]},"9823acae-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-43"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-100"},{"uid":"9823acae-196"}]},"9823acae-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-45"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-84"},{"uid":"9823acae-192"}]},"9823acae-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-47"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-116"}]},"9823acae-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-49"},"imported":[],"importedBy":[{"uid":"9823acae-208"}]},"9823acae-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-51"},"imported":[],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-192"}]},"9823acae-52":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EasingType.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-53"},"imported":[],"importedBy":[{"uid":"9823acae-208"}]},"9823acae-54":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-55"},"imported":[{"uid":"9823acae-10"},{"uid":"9823acae-20"},{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-56"},{"uid":"9823acae-80"}]},"9823acae-56":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-57"},"imported":[{"uid":"9823acae-54"},{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-58"}]},"9823acae-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-59"},"imported":[{"uid":"9823acae-0"},{"uid":"9823acae-56"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-62"}]},"9823acae-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-61"},"imported":[{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-62"},{"uid":"9823acae-64"}]},"9823acae-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-63"},"imported":[{"uid":"9823acae-6"},{"uid":"9823acae-58"},{"uid":"9823acae-60"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"},{"uid":"9823acae-72"},{"uid":"9823acae-92"},{"uid":"9823acae-90"}]},"9823acae-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-65"},"imported":[{"uid":"9823acae-60"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-112"}]},"9823acae-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-67"},"imported":[{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-112"}]},"9823acae-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-69"},"imported":[{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-112"}]},"9823acae-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-71"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-108"}]},"9823acae-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-73"},"imported":[{"uid":"9823acae-62"},{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"},{"uid":"9823acae-92"}]},"9823acae-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-75"},"imported":[{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-88"}]},"9823acae-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-77"},"imported":[{"uid":"9823acae-18"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-88"}]},"9823acae-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-79"},"imported":[{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-88"}]},"9823acae-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-81"},"imported":[{"uid":"9823acae-54"},{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-94"},{"uid":"9823acae-82"},{"uid":"9823acae-106"}]},"9823acae-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-83"},"imported":[{"uid":"9823acae-80"},{"uid":"9823acae-22"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-88"}]},"9823acae-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-85"},"imported":[{"uid":"9823acae-44"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-88"}]},"9823acae-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-87"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-88"}]},"9823acae-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-89"},"imported":[{"uid":"9823acae-2"},{"uid":"9823acae-6"},{"uid":"9823acae-74"},{"uid":"9823acae-76"},{"uid":"9823acae-78"},{"uid":"9823acae-82"},{"uid":"9823acae-84"},{"uid":"9823acae-86"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"}]},"9823acae-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-91"},"imported":[{"uid":"9823acae-62"},{"uid":"9823acae-6"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-92"}]},"9823acae-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-93"},"imported":[{"uid":"9823acae-62"},{"uid":"9823acae-72"},{"uid":"9823acae-90"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"}]},"9823acae-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-95"},"imported":[{"uid":"9823acae-80"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-96"}]},"9823acae-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-97"},"imported":[{"uid":"9823acae-94"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"}]},"9823acae-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-99"},"imported":[{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-102"}]},"9823acae-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-101"},"imported":[{"uid":"9823acae-42"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-102"}]},"9823acae-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-103"},"imported":[{"uid":"9823acae-98"},{"uid":"9823acae-100"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"}]},"9823acae-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-105"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"}]},"9823acae-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-107"},"imported":[{"uid":"9823acae-80"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-108"}]},"9823acae-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-109"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-6"},{"uid":"9823acae-62"},{"uid":"9823acae-70"},{"uid":"9823acae-72"},{"uid":"9823acae-88"},{"uid":"9823acae-92"},{"uid":"9823acae-96"},{"uid":"9823acae-102"},{"uid":"9823acae-104"},{"uid":"9823acae-106"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-110"}]},"9823acae-110":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-111"},"imported":[{"uid":"9823acae-108"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-112"},{"uid":"9823acae-200"},{"uid":"9823acae-196"},{"uid":"9823acae-192"}]},"9823acae-112":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-113"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-6"},{"uid":"9823acae-64"},{"uid":"9823acae-66"},{"uid":"9823acae-68"},{"uid":"9823acae-110"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-200"}]},"9823acae-114":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/CanvasUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-115"},"imported":[{"uid":"9823acae-0"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-186"}]},"9823acae-116":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-117"},"imported":[{"uid":"9823acae-8"},{"uid":"9823acae-0"},{"uid":"9823acae-6"},{"uid":"9823acae-46"},{"uid":"9823acae-12"},{"uid":"9823acae-22"}],"importedBy":[{"uid":"9823acae-208"},{"uid":"9823acae-188"},{"uid":"9823acae-186"},{"uid":"9823acae-192"}]},"9823acae-118":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-119"},"imported":[{"uid":"9823acae-34"},{"uid":"9823acae-208"}],"importedBy":[{"uid":"9823acae-184"},{"uid":"9823acae-142"},{"uid":"9823acae-128"},{"uid":"9823acae-136"},{"uid":"9823acae-148"},{"uid":"9823acae-162"},{"uid":"9823acae-166"},{"uid":"9823acae-170"},{"uid":"9823acae-178"},{"uid":"9823acae-120"},{"uid":"9823acae-202"},{"uid":"9823acae-126"},{"uid":"9823acae-206"},{"uid":"9823acae-146"},{"uid":"9823acae-154"},{"uid":"9823acae-156"},{"uid":"9823acae-158"},{"uid":"9823acae-160"},{"uid":"9823acae-176"},{"uid":"9823acae-204"},{"uid":"9823acae-144"},{"uid":"9823acae-152"},{"uid":"9823acae-174"}]},"9823acae-120":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/Options/Classes/Blend.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-121"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-122"}]},"9823acae-122":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-123"},"imported":[{"uid":"9823acae-120"},{"uid":"9823acae-202","dynamic":true}],"importedBy":[{"uid":"9823acae-124"}]},"9823acae-124":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-125"},"imported":[{"uid":"9823acae-122"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-126":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-127"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-128"}]},"9823acae-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-129"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-126"}],"importedBy":[{"uid":"9823acae-130"}]},"9823acae-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-131"},"imported":[{"uid":"9823acae-128"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-132":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-133"},"imported":[],"importedBy":[{"uid":"9823acae-134"}]},"9823acae-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-135"},"imported":[{"uid":"9823acae-132"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-136":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-137"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-138"}]},"9823acae-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-139"},"imported":[{"uid":"9823acae-136"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-140":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-141"},"imported":[{"uid":"9823acae-206","dynamic":true}],"importedBy":[{"uid":"9823acae-142"}]},"9823acae-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-143"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-140"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-144":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-145"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-146"}]},"9823acae-146":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-147"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-144"}],"importedBy":[{"uid":"9823acae-148"}]},"9823acae-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-149"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-146"}],"importedBy":[{"uid":"9823acae-150"}]},"9823acae-150":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-151"},"imported":[{"uid":"9823acae-148"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-152":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-153"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-154"}]},"9823acae-154":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-155"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-152"}],"importedBy":[{"uid":"9823acae-162"}]},"9823acae-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-157"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-162"}]},"9823acae-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-159"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-162"}]},"9823acae-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-161"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-162"}]},"9823acae-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-163"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-154"},{"uid":"9823acae-156"},{"uid":"9823acae-158"},{"uid":"9823acae-160"}],"importedBy":[{"uid":"9823acae-164"}]},"9823acae-164":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-165"},"imported":[{"uid":"9823acae-162"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-166":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-167"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-168"}]},"9823acae-168":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-169"},"imported":[{"uid":"9823acae-166"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-170":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-171"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-172"}]},"9823acae-172":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-173"},"imported":[{"uid":"9823acae-170"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-174":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-175"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-176"}]},"9823acae-176":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-177"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-174"}],"importedBy":[{"uid":"9823acae-178"}]},"9823acae-178":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-179"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-176"}],"importedBy":[{"uid":"9823acae-180"}]},"9823acae-180":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-181"},"imported":[{"uid":"9823acae-178"}],"importedBy":[{"uid":"9823acae-182"}]},"9823acae-182":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-183"},"imported":[{"uid":"9823acae-124"},{"uid":"9823acae-130"},{"uid":"9823acae-134"},{"uid":"9823acae-138"},{"uid":"9823acae-142"},{"uid":"9823acae-150"},{"uid":"9823acae-164"},{"uid":"9823acae-168"},{"uid":"9823acae-172"},{"uid":"9823acae-180"}],"importedBy":[{"uid":"9823acae-184"}]},"9823acae-184":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-185"},"imported":[{"uid":"9823acae-182"},{"uid":"9823acae-118"}],"importedBy":[],"isEntry":true},"9823acae-186":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-187"},"imported":[{"uid":"9823acae-114"},{"uid":"9823acae-0"},{"uid":"9823acae-116"}],"importedBy":[{"uid":"9823acae-188"}]},"9823acae-188":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-189"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-0"},{"uid":"9823acae-116"},{"uid":"9823acae-186"}],"importedBy":[{"uid":"9823acae-200"}]},"9823acae-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-191"},"imported":[{"uid":"9823acae-22"},{"uid":"9823acae-0"}],"importedBy":[{"uid":"9823acae-200"}]},"9823acae-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-193"},"imported":[{"uid":"9823acae-4"},{"uid":"9823acae-116"},{"uid":"9823acae-8"},{"uid":"9823acae-22"},{"uid":"9823acae-0"},{"uid":"9823acae-26"},{"uid":"9823acae-2"},{"uid":"9823acae-44"},{"uid":"9823acae-16"},{"uid":"9823acae-50"},{"uid":"9823acae-110"}],"importedBy":[{"uid":"9823acae-196"}]},"9823acae-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-195"},"imported":[{"uid":"9823acae-38"}],"importedBy":[{"uid":"9823acae-196"}]},"9823acae-196":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-197"},"imported":[{"uid":"9823acae-0"},{"uid":"9823acae-26"},{"uid":"9823acae-42"},{"uid":"9823acae-192"},{"uid":"9823acae-194"},{"uid":"9823acae-30"},{"uid":"9823acae-110"}],"importedBy":[{"uid":"9823acae-200"}]},"9823acae-198":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-199"},"imported":[{"uid":"9823acae-0"},{"uid":"9823acae-8"}],"importedBy":[{"uid":"9823acae-200"}]},"9823acae-200":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-201"},"imported":[{"uid":"9823acae-8"},{"uid":"9823acae-0"},{"uid":"9823acae-188"},{"uid":"9823acae-190"},{"uid":"9823acae-26"},{"uid":"9823acae-112"},{"uid":"9823acae-196"},{"uid":"9823acae-198"},{"uid":"9823acae-30"},{"uid":"9823acae-110"}],"importedBy":[{"uid":"9823acae-32"}]},"9823acae-202":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-203"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-122"}]},"9823acae-204":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-205"},"imported":[{"uid":"9823acae-118"}],"importedBy":[{"uid":"9823acae-206"}]},"9823acae-206":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"9823acae-207"},"imported":[{"uid":"9823acae-118"},{"uid":"9823acae-204"}],"importedBy":[{"uid":"9823acae-140"}]},"9823acae-208":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"9823acae-0"},{"uid":"9823acae-38"},{"uid":"9823acae-4"},{"uid":"9823acae-2"},{"uid":"9823acae-40"},{"uid":"9823acae-16"},{"uid":"9823acae-10"},{"uid":"9823acae-42"},{"uid":"9823acae-44"},{"uid":"9823acae-18"},{"uid":"9823acae-46"},{"uid":"9823acae-14"},{"uid":"9823acae-48"},{"uid":"9823acae-50"},{"uid":"9823acae-20"},{"uid":"9823acae-52"},{"uid":"9823acae-26"},{"uid":"9823acae-12"},{"uid":"9823acae-62"},{"uid":"9823acae-54"},{"uid":"9823acae-64"},{"uid":"9823acae-56"},{"uid":"9823acae-66"},{"uid":"9823acae-58"},{"uid":"9823acae-112"},{"uid":"9823acae-60"},{"uid":"9823acae-96"},{"uid":"9823acae-94"},{"uid":"9823acae-108"},{"uid":"9823acae-72"},{"uid":"9823acae-92"},{"uid":"9823acae-90"},{"uid":"9823acae-88"},{"uid":"9823acae-74"},{"uid":"9823acae-76"},{"uid":"9823acae-78"},{"uid":"9823acae-84"},{"uid":"9823acae-82"},{"uid":"9823acae-86"},{"uid":"9823acae-102"},{"uid":"9823acae-100"},{"uid":"9823acae-98"},{"uid":"9823acae-104"},{"uid":"9823acae-106"},{"uid":"9823acae-68"},{"uid":"9823acae-80"},{"uid":"9823acae-114"},{"uid":"9823acae-116"},{"uid":"9823acae-30"},{"uid":"9823acae-8"},{"uid":"9823acae-110"},{"uid":"9823acae-22"},{"uid":"9823acae-6"}],"importedBy":[{"uid":"9823acae-118"}]}},"env":{"rollup":"4.60.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4933
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"tsparticles.basic.bundle.js","children":[{"name":"home/workflows/workspace","children":[{"name":"engine/dist/browser","children":[{"name":"Core","children":[{"name":"Utils","children":[{"uid":"d7a8f194-1","name":"Constants.js"},{"uid":"d7a8f194-5","name":"Vectors.js"},{"uid":"d7a8f194-29","name":"PluginManager.js"},{"uid":"d7a8f194-39","name":"Ranges.js"},{"uid":"d7a8f194-191","name":"EventListeners.js"},{"uid":"d7a8f194-195","name":"SpatialHashGrid.js"}]},{"uid":"d7a8f194-33","name":"Engine.js"},{"uid":"d7a8f194-187","name":"RenderManager.js"},{"uid":"d7a8f194-189","name":"CanvasManager.js"},{"uid":"d7a8f194-193","name":"Particle.js"},{"uid":"d7a8f194-197","name":"ParticlesManager.js"},{"uid":"d7a8f194-199","name":"Retina.js"},{"uid":"d7a8f194-201","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"d7a8f194-3","name":"MoveDirection.js"},{"uid":"d7a8f194-17","name":"OutModeDirection.js"},{"uid":"d7a8f194-41","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"d7a8f194-11","name":"AnimationMode.js"},{"uid":"d7a8f194-19","name":"PixelMode.js"},{"uid":"d7a8f194-43","name":"LimitMode.js"},{"uid":"d7a8f194-45","name":"OutMode.js"}]},{"uid":"d7a8f194-13","name":"AnimationStatus.js"},{"name":"Types","children":[{"uid":"d7a8f194-15","name":"DestroyType.js"},{"uid":"d7a8f194-21","name":"StartValueType.js"},{"uid":"d7a8f194-27","name":"EventType.js"},{"uid":"d7a8f194-47","name":"AlterType.js"},{"uid":"d7a8f194-49","name":"GradientType.js"},{"uid":"d7a8f194-51","name":"ParticleOutType.js"},{"uid":"d7a8f194-53","name":"EasingType.js"}]},{"uid":"d7a8f194-37","name":"RangeType.js"}]},{"name":"Utils","children":[{"uid":"d7a8f194-7","name":"TypeUtils.js"},{"uid":"d7a8f194-9","name":"MathUtils.js"},{"uid":"d7a8f194-23","name":"Utils.js"},{"uid":"d7a8f194-25","name":"EventDispatcher.js"},{"uid":"d7a8f194-31","name":"LogUtils.js"},{"uid":"d7a8f194-111","name":"OptionsUtils.js"},{"uid":"d7a8f194-115","name":"CanvasUtils.js"},{"uid":"d7a8f194-117","name":"ColorUtils.js"}]},{"uid":"d7a8f194-35","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"d7a8f194-55","name":"AnimationOptions.js"},{"uid":"d7a8f194-57","name":"ColorAnimation.js"},{"uid":"d7a8f194-59","name":"HslAnimation.js"},{"uid":"d7a8f194-61","name":"OptionsColor.js"},{"uid":"d7a8f194-63","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"d7a8f194-65"},{"name":"FullScreen/FullScreen.js","uid":"d7a8f194-67"},{"uid":"d7a8f194-69","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"d7a8f194-71"},{"uid":"d7a8f194-73","name":"Fill.js"},{"name":"Move","children":[{"uid":"d7a8f194-75","name":"MoveAngle.js"},{"uid":"d7a8f194-77","name":"MoveCenter.js"},{"uid":"d7a8f194-79","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"d7a8f194-83"},{"uid":"d7a8f194-85","name":"OutModes.js"},{"uid":"d7a8f194-87","name":"Spin.js"},{"uid":"d7a8f194-89","name":"Move.js"}]},{"uid":"d7a8f194-91","name":"Stroke.js"},{"uid":"d7a8f194-93","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"d7a8f194-95","name":"ParticlesBounceFactor.js"},{"uid":"d7a8f194-97","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"d7a8f194-99","name":"ParticlesDensity.js"},{"uid":"d7a8f194-101","name":"ParticlesNumberLimit.js"},{"uid":"d7a8f194-103","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"d7a8f194-105"},{"name":"ZIndex/ZIndex.js","uid":"d7a8f194-107"},{"uid":"d7a8f194-109","name":"ParticlesOptions.js"}]},{"uid":"d7a8f194-81","name":"ValueWithRandom.js"},{"uid":"d7a8f194-113","name":"Options.js"}]},{"uid":"d7a8f194-119","name":"index.js"}]},{"name":"plugins","children":[{"name":"blend/dist/browser","children":[{"name":"Options/Classes/Blend.js","uid":"d7a8f194-121"},{"uid":"d7a8f194-123","name":"BlendPlugin.js"},{"uid":"d7a8f194-125","name":"index.js"},{"uid":"d7a8f194-203","name":"BlendPluginInstance.js"}]},{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"d7a8f194-133","name":"HexColorManager.js"},{"uid":"d7a8f194-135","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"d7a8f194-137","name":"HslColorManager.js"},{"uid":"d7a8f194-139","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"d7a8f194-171","name":"RgbColorManager.js"},{"uid":"d7a8f194-173","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"d7a8f194-141","name":"MovePlugin.js"},{"uid":"d7a8f194-143","name":"index.js"},{"uid":"d7a8f194-205","name":"Utils.js"},{"uid":"d7a8f194-207","name":"MovePluginInstance.js"}]}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"d7a8f194-127","name":"Utils.js"},{"uid":"d7a8f194-129","name":"CircleDrawer.js"},{"uid":"d7a8f194-131","name":"index.js"}]},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"d7a8f194-145","name":"OpacityAnimation.js"},{"uid":"d7a8f194-147","name":"Opacity.js"}]},{"uid":"d7a8f194-149","name":"OpacityUpdater.js"},{"uid":"d7a8f194-151","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"d7a8f194-153","name":"Utils.js"},{"uid":"d7a8f194-155","name":"BounceOutMode.js"},{"uid":"d7a8f194-157","name":"DestroyOutMode.js"},{"uid":"d7a8f194-159","name":"NoneOutMode.js"},{"uid":"d7a8f194-161","name":"OutOutMode.js"},{"uid":"d7a8f194-163","name":"OutOfCanvasUpdater.js"},{"uid":"d7a8f194-165","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"d7a8f194-167","name":"PaintUpdater.js"},{"uid":"d7a8f194-169","name":"index.js"}]},{"name":"size/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"d7a8f194-175","name":"SizeAnimation.js"},{"uid":"d7a8f194-177","name":"Size.js"}]},{"uid":"d7a8f194-179","name":"SizeUpdater.js"},{"uid":"d7a8f194-181","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"d7a8f194-183","name":"index.js"},{"uid":"d7a8f194-185","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"d7a8f194-1":{"renderedLength":1562,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-0"},"d7a8f194-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-2"},"d7a8f194-5":{"renderedLength":3316,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-4"},"d7a8f194-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-6"},"d7a8f194-9":{"renderedLength":6134,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-8"},"d7a8f194-11":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-10"},"d7a8f194-13":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-12"},"d7a8f194-15":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-14"},"d7a8f194-17":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-16"},"d7a8f194-19":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-18"},"d7a8f194-21":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-20"},"d7a8f194-23":{"renderedLength":17344,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-22"},"d7a8f194-25":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-24"},"d7a8f194-27":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-26"},"d7a8f194-29":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-28"},"d7a8f194-31":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-30"},"d7a8f194-33":{"renderedLength":6107,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-32"},"d7a8f194-35":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-34"},"d7a8f194-37":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-36"},"d7a8f194-39":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-38"},"d7a8f194-41":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-40"},"d7a8f194-43":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-42"},"d7a8f194-45":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-44"},"d7a8f194-47":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-46"},"d7a8f194-49":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-48"},"d7a8f194-51":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-50"},"d7a8f194-53":{"renderedLength":2524,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-52"},"d7a8f194-55":{"renderedLength":1698,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-54"},"d7a8f194-57":{"renderedLength":711,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-56"},"d7a8f194-59":{"renderedLength":362,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-58"},"d7a8f194-61":{"renderedLength":708,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-60"},"d7a8f194-63":{"renderedLength":1063,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-62"},"d7a8f194-65":{"renderedLength":1129,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-64"},"d7a8f194-67":{"renderedLength":460,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-66"},"d7a8f194-69":{"renderedLength":458,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-68"},"d7a8f194-71":{"renderedLength":850,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-70"},"d7a8f194-73":{"renderedLength":624,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-72"},"d7a8f194-75":{"renderedLength":482,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-74"},"d7a8f194-77":{"renderedLength":717,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-76"},"d7a8f194-79":{"renderedLength":839,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-78"},"d7a8f194-81":{"renderedLength":989,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-80"},"d7a8f194-83":{"renderedLength":790,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-82"},"d7a8f194-85":{"renderedLength":597,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-84"},"d7a8f194-87":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-86"},"d7a8f194-89":{"renderedLength":3032,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-88"},"d7a8f194-91":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-90"},"d7a8f194-93":{"renderedLength":598,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-92"},"d7a8f194-95":{"renderedLength":146,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-94"},"d7a8f194-97":{"renderedLength":420,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-96"},"d7a8f194-99":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-98"},"d7a8f194-101":{"renderedLength":475,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-100"},"d7a8f194-103":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-102"},"d7a8f194-105":{"renderedLength":851,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-104"},"d7a8f194-107":{"renderedLength":740,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-106"},"d7a8f194-109":{"renderedLength":5295,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-108"},"d7a8f194-111":{"renderedLength":405,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-110"},"d7a8f194-113":{"renderedLength":4492,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-112"},"d7a8f194-115":{"renderedLength":4116,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-114"},"d7a8f194-117":{"renderedLength":14196,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-116"},"d7a8f194-119":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-118"},"d7a8f194-121":{"renderedLength":462,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-120"},"d7a8f194-123":{"renderedLength":938,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-122"},"d7a8f194-125":{"renderedLength":209,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-124"},"d7a8f194-127":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-126"},"d7a8f194-129":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-128"},"d7a8f194-131":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-130"},"d7a8f194-133":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-132"},"d7a8f194-135":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-134"},"d7a8f194-137":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-136"},"d7a8f194-139":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-138"},"d7a8f194-141":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-140"},"d7a8f194-143":{"renderedLength":1076,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-142"},"d7a8f194-145":{"renderedLength":454,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-144"},"d7a8f194-147":{"renderedLength":501,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-146"},"d7a8f194-149":{"renderedLength":1973,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-148"},"d7a8f194-151":{"renderedLength":314,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-150"},"d7a8f194-153":{"renderedLength":3420,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-152"},"d7a8f194-155":{"renderedLength":1412,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-154"},"d7a8f194-157":{"renderedLength":1304,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-156"},"d7a8f194-159":{"renderedLength":2071,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-158"},"d7a8f194-161":{"renderedLength":6702,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-160"},"d7a8f194-163":{"renderedLength":2205,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-162"},"d7a8f194-165":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-164"},"d7a8f194-167":{"renderedLength":3448,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-166"},"d7a8f194-169":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-168"},"d7a8f194-171":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-170"},"d7a8f194-173":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-172"},"d7a8f194-175":{"renderedLength":451,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-174"},"d7a8f194-177":{"renderedLength":495,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-176"},"d7a8f194-179":{"renderedLength":2126,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-178"},"d7a8f194-181":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-180"},"d7a8f194-183":{"renderedLength":577,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-182"},"d7a8f194-185":{"renderedLength":120,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-184"},"d7a8f194-187":{"renderedLength":11692,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-186"},"d7a8f194-189":{"renderedLength":12702,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-188"},"d7a8f194-191":{"renderedLength":3151,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-190"},"d7a8f194-193":{"renderedLength":21931,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-192"},"d7a8f194-195":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-194"},"d7a8f194-197":{"renderedLength":18216,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-196"},"d7a8f194-199":{"renderedLength":1506,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-198"},"d7a8f194-201":{"renderedLength":13453,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-200"},"d7a8f194-203":{"renderedLength":1301,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-202"},"d7a8f194-205":{"renderedLength":6783,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-204"},"d7a8f194-207":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"d7a8f194-206"}},"nodeMetas":{"d7a8f194-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-1"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-38"},{"uid":"d7a8f194-4"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-114"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-24"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-190"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-198"},{"uid":"d7a8f194-186"},{"uid":"d7a8f194-192"}]},"d7a8f194-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-3"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-192"}]},"d7a8f194-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-5"},"imported":[{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-192"}]},"d7a8f194-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-7"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-64"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-66"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-60"},{"uid":"d7a8f194-96"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-102"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-98"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-106"},{"uid":"d7a8f194-68"},{"uid":"d7a8f194-80"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-70"}]},"d7a8f194-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-9"},"imported":[{"uid":"d7a8f194-2"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-4"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-38"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-80"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-198"},{"uid":"d7a8f194-192"}]},"d7a8f194-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-11"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-22"}]},"d7a8f194-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-13"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-22"}]},"d7a8f194-14":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-15"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-22"}]},"d7a8f194-16":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-17"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-192"}]},"d7a8f194-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-19"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-22"}]},"d7a8f194-20":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-21"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-22"}]},"d7a8f194-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-23"},"imported":[{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-10"},{"uid":"d7a8f194-12"},{"uid":"d7a8f194-14"},{"uid":"d7a8f194-16"},{"uid":"d7a8f194-18"},{"uid":"d7a8f194-20"},{"uid":"d7a8f194-4"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-28"},{"uid":"d7a8f194-70"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-190"},{"uid":"d7a8f194-192"}]},"d7a8f194-24":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-25"},"imported":[{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-32"}]},"d7a8f194-26":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-27"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-28"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-192"}]},"d7a8f194-28":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-29"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-26"}],"importedBy":[{"uid":"d7a8f194-32"}]},"d7a8f194-30":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-31"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-32"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-196"}]},"d7a8f194-32":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-33"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-24"},{"uid":"d7a8f194-28"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-200","dynamic":true}],"importedBy":[{"uid":"d7a8f194-34"}]},"d7a8f194-34":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-35"},"imported":[{"uid":"d7a8f194-32"}],"importedBy":[{"uid":"d7a8f194-118"}]},"d7a8f194-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-37"},"imported":[],"importedBy":[{"uid":"d7a8f194-38"}]},"d7a8f194-38":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-39"},"imported":[{"uid":"d7a8f194-36"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-194"}]},"d7a8f194-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-41"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"}]},"d7a8f194-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-43"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-196"}]},"d7a8f194-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-45"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-192"}]},"d7a8f194-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-47"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-116"}]},"d7a8f194-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-49"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"}]},"d7a8f194-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-51"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-192"}]},"d7a8f194-52":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EasingType.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-53"},"imported":[],"importedBy":[{"uid":"d7a8f194-208"}]},"d7a8f194-54":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-55"},"imported":[{"uid":"d7a8f194-10"},{"uid":"d7a8f194-20"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-80"}]},"d7a8f194-56":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-57"},"imported":[{"uid":"d7a8f194-54"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-58"}]},"d7a8f194-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-59"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-62"}]},"d7a8f194-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-61"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-64"}]},"d7a8f194-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-63"},"imported":[{"uid":"d7a8f194-6"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-60"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-90"}]},"d7a8f194-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-65"},"imported":[{"uid":"d7a8f194-60"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"}]},"d7a8f194-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-67"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"}]},"d7a8f194-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-69"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"}]},"d7a8f194-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-71"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-108"}]},"d7a8f194-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-73"},"imported":[{"uid":"d7a8f194-62"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-92"}]},"d7a8f194-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-75"},"imported":[{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-77"},"imported":[{"uid":"d7a8f194-18"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-79"},"imported":[{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-81"},"imported":[{"uid":"d7a8f194-54"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-94"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-106"}]},"d7a8f194-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-83"},"imported":[{"uid":"d7a8f194-80"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-85"},"imported":[{"uid":"d7a8f194-44"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-87"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-88"}]},"d7a8f194-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-89"},"imported":[{"uid":"d7a8f194-2"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-91"},"imported":[{"uid":"d7a8f194-62"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-92"}]},"d7a8f194-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-93"},"imported":[{"uid":"d7a8f194-62"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-95"},"imported":[{"uid":"d7a8f194-80"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-96"}]},"d7a8f194-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-97"},"imported":[{"uid":"d7a8f194-94"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-99"},"imported":[{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-102"}]},"d7a8f194-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-101"},"imported":[{"uid":"d7a8f194-42"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-102"}]},"d7a8f194-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-103"},"imported":[{"uid":"d7a8f194-98"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-105"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-107"},"imported":[{"uid":"d7a8f194-80"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-108"}]},"d7a8f194-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-109"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-70"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-96"},{"uid":"d7a8f194-102"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-106"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-110"}]},"d7a8f194-110":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-111"},"imported":[{"uid":"d7a8f194-108"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-200"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-192"}]},"d7a8f194-112":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-113"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-64"},{"uid":"d7a8f194-66"},{"uid":"d7a8f194-68"},{"uid":"d7a8f194-110"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-200"}]},"d7a8f194-114":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/CanvasUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-115"},"imported":[{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-186"}]},"d7a8f194-116":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-117"},"imported":[{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-6"},{"uid":"d7a8f194-46"},{"uid":"d7a8f194-12"},{"uid":"d7a8f194-22"}],"importedBy":[{"uid":"d7a8f194-208"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-186"},{"uid":"d7a8f194-192"}]},"d7a8f194-118":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-119"},"imported":[{"uid":"d7a8f194-34"},{"uid":"d7a8f194-208"}],"importedBy":[{"uid":"d7a8f194-184"},{"uid":"d7a8f194-142"},{"uid":"d7a8f194-128"},{"uid":"d7a8f194-136"},{"uid":"d7a8f194-148"},{"uid":"d7a8f194-162"},{"uid":"d7a8f194-166"},{"uid":"d7a8f194-170"},{"uid":"d7a8f194-178"},{"uid":"d7a8f194-120"},{"uid":"d7a8f194-202"},{"uid":"d7a8f194-126"},{"uid":"d7a8f194-206"},{"uid":"d7a8f194-146"},{"uid":"d7a8f194-154"},{"uid":"d7a8f194-156"},{"uid":"d7a8f194-158"},{"uid":"d7a8f194-160"},{"uid":"d7a8f194-176"},{"uid":"d7a8f194-204"},{"uid":"d7a8f194-144"},{"uid":"d7a8f194-152"},{"uid":"d7a8f194-174"}]},"d7a8f194-120":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/Options/Classes/Blend.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-121"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-122"}]},"d7a8f194-122":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-123"},"imported":[{"uid":"d7a8f194-120"},{"uid":"d7a8f194-202","dynamic":true}],"importedBy":[{"uid":"d7a8f194-124"}]},"d7a8f194-124":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-125"},"imported":[{"uid":"d7a8f194-122"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-126":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-127"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-128"}]},"d7a8f194-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-129"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-126"}],"importedBy":[{"uid":"d7a8f194-130"}]},"d7a8f194-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-131"},"imported":[{"uid":"d7a8f194-128"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-132":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-133"},"imported":[],"importedBy":[{"uid":"d7a8f194-134"}]},"d7a8f194-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-135"},"imported":[{"uid":"d7a8f194-132"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-136":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-137"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-138"}]},"d7a8f194-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-139"},"imported":[{"uid":"d7a8f194-136"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-140":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-141"},"imported":[{"uid":"d7a8f194-206","dynamic":true}],"importedBy":[{"uid":"d7a8f194-142"}]},"d7a8f194-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-143"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-140"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-144":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-145"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-146"}]},"d7a8f194-146":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-147"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-144"}],"importedBy":[{"uid":"d7a8f194-148"}]},"d7a8f194-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-149"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-146"}],"importedBy":[{"uid":"d7a8f194-150"}]},"d7a8f194-150":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-151"},"imported":[{"uid":"d7a8f194-148"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-152":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-153"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-154"}]},"d7a8f194-154":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-155"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-152"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-157"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-159"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-161"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-162"}]},"d7a8f194-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-163"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-154"},{"uid":"d7a8f194-156"},{"uid":"d7a8f194-158"},{"uid":"d7a8f194-160"}],"importedBy":[{"uid":"d7a8f194-164"}]},"d7a8f194-164":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-165"},"imported":[{"uid":"d7a8f194-162"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-166":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-167"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-168"}]},"d7a8f194-168":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-169"},"imported":[{"uid":"d7a8f194-166"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-170":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-171"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-172"}]},"d7a8f194-172":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-173"},"imported":[{"uid":"d7a8f194-170"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-174":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-175"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-176"}]},"d7a8f194-176":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-177"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-174"}],"importedBy":[{"uid":"d7a8f194-178"}]},"d7a8f194-178":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-179"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-176"}],"importedBy":[{"uid":"d7a8f194-180"}]},"d7a8f194-180":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-181"},"imported":[{"uid":"d7a8f194-178"}],"importedBy":[{"uid":"d7a8f194-182"}]},"d7a8f194-182":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-183"},"imported":[{"uid":"d7a8f194-124"},{"uid":"d7a8f194-130"},{"uid":"d7a8f194-134"},{"uid":"d7a8f194-138"},{"uid":"d7a8f194-142"},{"uid":"d7a8f194-150"},{"uid":"d7a8f194-164"},{"uid":"d7a8f194-168"},{"uid":"d7a8f194-172"},{"uid":"d7a8f194-180"}],"importedBy":[{"uid":"d7a8f194-184"}]},"d7a8f194-184":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-185"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-182"}],"importedBy":[],"isEntry":true},"d7a8f194-186":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-187"},"imported":[{"uid":"d7a8f194-114"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-116"}],"importedBy":[{"uid":"d7a8f194-188"}]},"d7a8f194-188":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-189"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-186"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-191"},"imported":[{"uid":"d7a8f194-22"},{"uid":"d7a8f194-0"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-193"},"imported":[{"uid":"d7a8f194-4"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-2"},{"uid":"d7a8f194-44"},{"uid":"d7a8f194-16"},{"uid":"d7a8f194-50"},{"uid":"d7a8f194-110"}],"importedBy":[{"uid":"d7a8f194-196"}]},"d7a8f194-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-195"},"imported":[{"uid":"d7a8f194-38"}],"importedBy":[{"uid":"d7a8f194-196"}]},"d7a8f194-196":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-197"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-42"},{"uid":"d7a8f194-192"},{"uid":"d7a8f194-194"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-110"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-198":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-199"},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-8"}],"importedBy":[{"uid":"d7a8f194-200"}]},"d7a8f194-200":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-201"},"imported":[{"uid":"d7a8f194-8"},{"uid":"d7a8f194-0"},{"uid":"d7a8f194-188"},{"uid":"d7a8f194-190"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-196"},{"uid":"d7a8f194-198"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-110"}],"importedBy":[{"uid":"d7a8f194-32"}]},"d7a8f194-202":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-203"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-122"}]},"d7a8f194-204":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-205"},"imported":[{"uid":"d7a8f194-118"}],"importedBy":[{"uid":"d7a8f194-206"}]},"d7a8f194-206":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"d7a8f194-207"},"imported":[{"uid":"d7a8f194-118"},{"uid":"d7a8f194-204"}],"importedBy":[{"uid":"d7a8f194-140"}]},"d7a8f194-208":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"d7a8f194-0"},{"uid":"d7a8f194-38"},{"uid":"d7a8f194-4"},{"uid":"d7a8f194-2"},{"uid":"d7a8f194-40"},{"uid":"d7a8f194-16"},{"uid":"d7a8f194-10"},{"uid":"d7a8f194-42"},{"uid":"d7a8f194-44"},{"uid":"d7a8f194-18"},{"uid":"d7a8f194-46"},{"uid":"d7a8f194-14"},{"uid":"d7a8f194-48"},{"uid":"d7a8f194-50"},{"uid":"d7a8f194-20"},{"uid":"d7a8f194-52"},{"uid":"d7a8f194-26"},{"uid":"d7a8f194-12"},{"uid":"d7a8f194-62"},{"uid":"d7a8f194-54"},{"uid":"d7a8f194-64"},{"uid":"d7a8f194-56"},{"uid":"d7a8f194-66"},{"uid":"d7a8f194-58"},{"uid":"d7a8f194-112"},{"uid":"d7a8f194-60"},{"uid":"d7a8f194-96"},{"uid":"d7a8f194-94"},{"uid":"d7a8f194-108"},{"uid":"d7a8f194-72"},{"uid":"d7a8f194-92"},{"uid":"d7a8f194-90"},{"uid":"d7a8f194-88"},{"uid":"d7a8f194-74"},{"uid":"d7a8f194-76"},{"uid":"d7a8f194-78"},{"uid":"d7a8f194-84"},{"uid":"d7a8f194-82"},{"uid":"d7a8f194-86"},{"uid":"d7a8f194-102"},{"uid":"d7a8f194-100"},{"uid":"d7a8f194-98"},{"uid":"d7a8f194-104"},{"uid":"d7a8f194-106"},{"uid":"d7a8f194-68"},{"uid":"d7a8f194-80"},{"uid":"d7a8f194-114"},{"uid":"d7a8f194-116"},{"uid":"d7a8f194-30"},{"uid":"d7a8f194-8"},{"uid":"d7a8f194-110"},{"uid":"d7a8f194-22"},{"uid":"d7a8f194-6"}],"importedBy":[{"uid":"d7a8f194-118"}]}},"env":{"rollup":"4.60.4"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4934
4934
|
|
|
4935
4935
|
const run = () => {
|
|
4936
4936
|
const width = window.innerWidth;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(function(g){g.__tsParticlesInternals=g.__tsParticlesInternals||{};g.__tsParticlesInternals.bundles=g.__tsParticlesInternals.bundles||{};g.__tsParticlesInternals.effects=g.__tsParticlesInternals.effects||{};g.__tsParticlesInternals.engine=g.__tsParticlesInternals.engine||{};g.__tsParticlesInternals.interactions=g.__tsParticlesInternals.interactions||{};g.__tsParticlesInternals.palettes=g.__tsParticlesInternals.palettes||{};g.__tsParticlesInternals.paths=g.__tsParticlesInternals.paths||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins.emittersShapes=g.__tsParticlesInternals.plugins.emittersShapes||{};g.__tsParticlesInternals.presets=g.__tsParticlesInternals.presets||{};g.__tsParticlesInternals.shapes=g.__tsParticlesInternals.shapes||{};g.__tsParticlesInternals.updaters=g.__tsParticlesInternals.updaters||{};g.__tsParticlesInternals.utils=g.__tsParticlesInternals.utils||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas.utils=g.__tsParticlesInternals.canvas.utils||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path.utils=g.__tsParticlesInternals.path.utils||{};var __tsProxyFactory=typeof Proxy!=="undefined"?function(obj){return new Proxy(obj,{get:function(target,key){if(!(key in target)){target[key]={};}return target[key];}});}:function(obj){return obj;};g.__tsParticlesInternals.bundles=__tsProxyFactory(g.__tsParticlesInternals.bundles);g.__tsParticlesInternals.effects=__tsProxyFactory(g.__tsParticlesInternals.effects);g.__tsParticlesInternals.interactions=__tsProxyFactory(g.__tsParticlesInternals.interactions);g.__tsParticlesInternals.palettes=__tsProxyFactory(g.__tsParticlesInternals.palettes);g.__tsParticlesInternals.paths=__tsProxyFactory(g.__tsParticlesInternals.paths);g.__tsParticlesInternals.plugins=__tsProxyFactory(g.__tsParticlesInternals.plugins);g.__tsParticlesInternals.plugins.emittersShapes=__tsProxyFactory(g.__tsParticlesInternals.plugins.emittersShapes);g.__tsParticlesInternals.presets=__tsProxyFactory(g.__tsParticlesInternals.presets);g.__tsParticlesInternals.shapes=__tsProxyFactory(g.__tsParticlesInternals.shapes);g.__tsParticlesInternals.updaters=__tsProxyFactory(g.__tsParticlesInternals.updaters);g.__tsParticlesInternals.utils=__tsProxyFactory(g.__tsParticlesInternals.utils);g.__tsParticlesInternals.canvas=__tsProxyFactory(g.__tsParticlesInternals.canvas);g.__tsParticlesInternals.path=__tsProxyFactory(g.__tsParticlesInternals.path);g.tsparticlesInternalExports=g.tsparticlesInternalExports||{};})(typeof globalThis!=="undefined"?globalThis:typeof window!=="undefined"?window:this);
|
|
2
|
-
/* tsParticles v4.1.
|
|
2
|
+
/* tsParticles v4.1.2 */
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
5
5
|
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
@@ -1118,7 +1118,7 @@
|
|
|
1118
1118
|
return this.#domArray;
|
|
1119
1119
|
}
|
|
1120
1120
|
get version() {
|
|
1121
|
-
return "4.1.
|
|
1121
|
+
return "4.1.2";
|
|
1122
1122
|
}
|
|
1123
1123
|
addEventListener(type, listener) {
|
|
1124
1124
|
this.#eventDispatcher.addEventListener(type, listener);
|
|
@@ -2975,7 +2975,7 @@
|
|
|
2975
2975
|
}
|
|
2976
2976
|
|
|
2977
2977
|
async function loadBlendPlugin(engine) {
|
|
2978
|
-
engine.checkVersion("4.1.
|
|
2978
|
+
engine.checkVersion("4.1.2");
|
|
2979
2979
|
await engine.pluginManager.register(e => {
|
|
2980
2980
|
e.pluginManager.addPlugin(new BlendPlugin());
|
|
2981
2981
|
});
|
|
@@ -3012,7 +3012,7 @@
|
|
|
3012
3012
|
}
|
|
3013
3013
|
|
|
3014
3014
|
async function loadCircleShape(engine) {
|
|
3015
|
-
engine.checkVersion("4.1.
|
|
3015
|
+
engine.checkVersion("4.1.2");
|
|
3016
3016
|
await engine.pluginManager.register(e => {
|
|
3017
3017
|
e.pluginManager.addShape(["circle"], () => {
|
|
3018
3018
|
return Promise.resolve(new CircleDrawer());
|
|
@@ -3060,7 +3060,7 @@
|
|
|
3060
3060
|
}
|
|
3061
3061
|
|
|
3062
3062
|
async function loadHexColorPlugin(engine) {
|
|
3063
|
-
engine.checkVersion("4.1.
|
|
3063
|
+
engine.checkVersion("4.1.2");
|
|
3064
3064
|
await engine.pluginManager.register(e => {
|
|
3065
3065
|
e.pluginManager.addColorManager("hex", new HexColorManager());
|
|
3066
3066
|
});
|
|
@@ -3113,7 +3113,7 @@
|
|
|
3113
3113
|
}
|
|
3114
3114
|
|
|
3115
3115
|
async function loadHslColorPlugin(engine) {
|
|
3116
|
-
engine.checkVersion("4.1.
|
|
3116
|
+
engine.checkVersion("4.1.2");
|
|
3117
3117
|
await engine.pluginManager.register(e => {
|
|
3118
3118
|
e.pluginManager.addColorManager("hsl", new HslColorManager());
|
|
3119
3119
|
});
|
|
@@ -3137,7 +3137,7 @@
|
|
|
3137
3137
|
}
|
|
3138
3138
|
|
|
3139
3139
|
async function loadMovePlugin(engine) {
|
|
3140
|
-
engine.checkVersion("4.1.
|
|
3140
|
+
engine.checkVersion("4.1.2");
|
|
3141
3141
|
await engine.pluginManager.register(e => {
|
|
3142
3142
|
const moveEngine = e, movePluginManager = moveEngine.pluginManager;
|
|
3143
3143
|
movePluginManager.initializers.pathGenerators ??= new Map();
|
|
@@ -3244,7 +3244,7 @@
|
|
|
3244
3244
|
}
|
|
3245
3245
|
|
|
3246
3246
|
async function loadOpacityUpdater(engine) {
|
|
3247
|
-
engine.checkVersion("4.1.
|
|
3247
|
+
engine.checkVersion("4.1.2");
|
|
3248
3248
|
await engine.pluginManager.register(e => {
|
|
3249
3249
|
e.pluginManager.addParticleUpdater("opacity", container => {
|
|
3250
3250
|
return Promise.resolve(new OpacityUpdater(container));
|
|
@@ -3591,7 +3591,7 @@
|
|
|
3591
3591
|
}
|
|
3592
3592
|
|
|
3593
3593
|
async function loadOutModesUpdater(engine) {
|
|
3594
|
-
engine.checkVersion("4.1.
|
|
3594
|
+
engine.checkVersion("4.1.2");
|
|
3595
3595
|
await engine.pluginManager.register(e => {
|
|
3596
3596
|
e.pluginManager.addParticleUpdater("outModes", container => {
|
|
3597
3597
|
return Promise.resolve(new OutOfCanvasUpdater(container));
|
|
@@ -3662,7 +3662,7 @@
|
|
|
3662
3662
|
}
|
|
3663
3663
|
|
|
3664
3664
|
async function loadPaintUpdater(engine) {
|
|
3665
|
-
engine.checkVersion("4.1.
|
|
3665
|
+
engine.checkVersion("4.1.2");
|
|
3666
3666
|
await engine.pluginManager.register(e => {
|
|
3667
3667
|
e.pluginManager.addParticleUpdater("paint", container => {
|
|
3668
3668
|
return Promise.resolve(new PaintUpdater(e.pluginManager, container));
|
|
@@ -3717,7 +3717,7 @@
|
|
|
3717
3717
|
}
|
|
3718
3718
|
|
|
3719
3719
|
async function loadRgbColorPlugin(engine) {
|
|
3720
|
-
engine.checkVersion("4.1.
|
|
3720
|
+
engine.checkVersion("4.1.2");
|
|
3721
3721
|
await engine.pluginManager.register(e => {
|
|
3722
3722
|
e.pluginManager.addColorManager("rgb", new RgbColorManager());
|
|
3723
3723
|
});
|
|
@@ -3816,7 +3816,7 @@
|
|
|
3816
3816
|
}
|
|
3817
3817
|
|
|
3818
3818
|
async function loadSizeUpdater(engine) {
|
|
3819
|
-
engine.checkVersion("4.1.
|
|
3819
|
+
engine.checkVersion("4.1.2");
|
|
3820
3820
|
await engine.pluginManager.register(e => {
|
|
3821
3821
|
e.pluginManager.addParticleUpdater("size", container => {
|
|
3822
3822
|
return Promise.resolve(new SizeUpdater(container));
|
|
@@ -3825,7 +3825,7 @@
|
|
|
3825
3825
|
}
|
|
3826
3826
|
|
|
3827
3827
|
async function loadBasic(engine) {
|
|
3828
|
-
engine.checkVersion("4.1.
|
|
3828
|
+
engine.checkVersion("4.1.2");
|
|
3829
3829
|
await engine.pluginManager.register(async (e) => {
|
|
3830
3830
|
await Promise.all([
|
|
3831
3831
|
loadBlendPlugin(e),
|
|
@@ -3843,8 +3843,8 @@
|
|
|
3843
3843
|
}
|
|
3844
3844
|
|
|
3845
3845
|
const globalObject = globalThis;
|
|
3846
|
-
globalObject.__tsParticlesInternals = globalObject.__tsParticlesInternals ?? {};
|
|
3847
3846
|
globalObject.loadBasic = loadBasic;
|
|
3847
|
+
globalObject.tsParticles = tsParticles;
|
|
3848
3848
|
|
|
3849
3849
|
const fColorIndex = 0, sColorIndex = 1;
|
|
3850
3850
|
function setTransformValue(factor, newFactor, key) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(t){t.__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.bundles=t.__tsParticlesInternals.bundles||{},t.__tsParticlesInternals.effects=t.__tsParticlesInternals.effects||{},t.__tsParticlesInternals.engine=t.__tsParticlesInternals.engine||{},t.__tsParticlesInternals.interactions=t.__tsParticlesInternals.interactions||{},t.__tsParticlesInternals.palettes=t.__tsParticlesInternals.palettes||{},t.__tsParticlesInternals.paths=t.__tsParticlesInternals.paths||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins.emittersShapes=t.__tsParticlesInternals.plugins.emittersShapes||{},t.__tsParticlesInternals.presets=t.__tsParticlesInternals.presets||{},t.__tsParticlesInternals.shapes=t.__tsParticlesInternals.shapes||{},t.__tsParticlesInternals.updaters=t.__tsParticlesInternals.updaters||{},t.__tsParticlesInternals.utils=t.__tsParticlesInternals.utils||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas.utils=t.__tsParticlesInternals.canvas.utils||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path.utils=t.__tsParticlesInternals.path.utils||{};var e="undefined"!=typeof Proxy?function(t){return new Proxy(t,{get:function(t,e){return e in t||(t[e]={}),t[e]}})}:function(t){return t};t.__tsParticlesInternals.bundles=e(t.__tsParticlesInternals.bundles),t.__tsParticlesInternals.effects=e(t.__tsParticlesInternals.effects),t.__tsParticlesInternals.interactions=e(t.__tsParticlesInternals.interactions),t.__tsParticlesInternals.palettes=e(t.__tsParticlesInternals.palettes),t.__tsParticlesInternals.paths=e(t.__tsParticlesInternals.paths),t.__tsParticlesInternals.plugins=e(t.__tsParticlesInternals.plugins),t.__tsParticlesInternals.plugins.emittersShapes=e(t.__tsParticlesInternals.plugins.emittersShapes),t.__tsParticlesInternals.presets=e(t.__tsParticlesInternals.presets),t.__tsParticlesInternals.shapes=e(t.__tsParticlesInternals.shapes),t.__tsParticlesInternals.updaters=e(t.__tsParticlesInternals.updaters),t.__tsParticlesInternals.utils=e(t.__tsParticlesInternals.utils),t.__tsParticlesInternals.canvas=e(t.__tsParticlesInternals.canvas),t.__tsParticlesInternals.path=e(t.__tsParticlesInternals.path),t.tsparticlesInternalExports=t.tsparticlesInternalExports||{}}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:this),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(((t="undefined"!=typeof globalThis?globalThis:t||self).__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.bundles=t.__tsParticlesInternals.bundles||{},t.__tsParticlesInternals.bundles.basic=t.__tsParticlesInternals.bundles.basic||{}))}(this,function(t){"use strict";const e="generated",i="source-over",s="resize",n="visibilitychange",a=100,o=.5,r=1e3,l={x:0,y:0,z:0},c={a:1,b:0,c:0,d:1},h="random",d="mid",u=2*Math.PI,p="true",f="false",g="canvas",y=255,m=360,v=100,P=100,b=.25,w=.75;var M;function x(t){return"z"in t?t.z:l.z}t.MoveDirection=void 0,(M=t.MoveDirection||(t.MoveDirection={})).bottom="bottom",M.bottomLeft="bottom-left",M.bottomRight="bottom-right",M.left="left",M.none="none",M.right="right",M.top="top",M.topLeft="top-left",M.topRight="top-right",M.outside="outside",M.inside="inside";class z{x;y;z;constructor(t=l.x,e=l.y,i=l.z){this.x=t,this.y=e,this.z=i}static get origin(){return z.create(l.x,l.y,l.z)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this.#t(t,this.length)}get length(){return Math.sqrt(this.getLengthSq())}set length(t){this.#t(this.angle,t)}static clone(t){return z.create(t.x,t.y,x(t))}static create(t,e,i){return"number"==typeof t?new z(t,e??l.y,i??l.z):new z(t.x,t.y,x(t))}add(t){return z.create(this.x+t.x,this.y+t.y,this.z+x(t))}addTo(t){this.x+=t.x,this.y+=t.y,this.z+=x(t)}copy(){return z.clone(this)}div(t){return z.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**2+this.y**2}mult(t){return z.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;0!=t&&this.multTo(1/t)}rotate(t){return z.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t),l.z)}setTo(t){this.x=t.x,this.y=t.y,this.z=x(t)}sub(t){return z.create(this.x-t.x,this.y-t.y,this.z-x(t))}subFrom(t){this.x-=t.x,this.y-=t.y,this.z-=x(t)}#t(t,e){this.x=Math.cos(t)*e,this.y=Math.sin(t)*e}}class O extends z{constructor(t=l.x,e=l.y){super(t,e,l.z)}static get origin(){return O.create(l.x,l.y)}static clone(t){return O.create(t.x,t.y)}static create(t,e){return"number"==typeof t?new O(t,e??l.y):new O(t.x,t.y)}}function S(t){return"boolean"==typeof t}function I(t){return"string"==typeof t}function C(t){return"number"==typeof t}function D(t){return"object"==typeof t&&null!==t}function k(t){return Array.isArray(t)}function _(t){return null==t}const R=Math.PI/180;let T=Math.random;const E={nextFrame:t=>requestAnimationFrame(t),cancel:t=>{cancelAnimationFrame(t)}};function A(){return V(T(),0,1-Number.EPSILON)}function F(t,e){return A()*(e-t)+t}function L(t){return E.nextFrame(t)}function B(t){E.cancel(t)}function V(t,e,i){return Math.min(Math.max(t,e),i)}function U(t,e,i,s){return Math.floor((t*i+e*s)/(i+s))}function $(t){const e=q(t);let i=W(t);return e===i&&(i=0),F(i,e)}function G(t){return C(t)?t:$(t)}function W(t){return C(t)?t:t.min}function q(t){return C(t)?t:t.max}function H(t,e){if(t===e||void 0===e&&C(t))return t;const i=W(t),s=q(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(s,e)}:H(i,s)}function N(t,e){const i=t.x-e.x,s=t.y-e.y;return{dx:i,dy:s,distance:Math.hypot(i,s)}}function j(t,e){const i=t.x-e.x,s=t.y-e.y;return i*i+s*s}function Q(t,e){return Math.sqrt(j(t,e))}function X(t,e,i){return j(t,e)<=i*i}function Y(t){return t*R}function Z(e,i,s){if(C(e))return Y(e);switch(e){case t.MoveDirection.top:return-Math.PI*o;case t.MoveDirection.topRight:return-Math.PI*b;case t.MoveDirection.right:return 0;case t.MoveDirection.bottomRight:return Math.PI*b;case t.MoveDirection.bottom:return Math.PI*o;case t.MoveDirection.bottomLeft:return Math.PI*w;case t.MoveDirection.left:return Math.PI;case t.MoveDirection.topLeft:return-Math.PI*w;case t.MoveDirection.inside:return Math.atan2(s.y-i.y,s.x-i.x);case t.MoveDirection.outside:return Math.atan2(i.y-s.y,i.x-s.x);default:return A()*u}}function J(t){const e=O.origin;return e.length=1,e.angle=t,e}function K(t,e,i,s){return O.create(t.x*(i-s)/(i+s)+2*e.x*s/(i+s),t.y)}function tt(t){return{x:(t.position?.x??A()*a)*t.size.width/a,y:(t.position?.y??A()*a)*t.size.height/a}}function et(t){const{position:e,size:i}=t;return{x:e?.x??A()*i.width,y:e?.y??A()*i.height}}function it(t){return t?t.endsWith("%")?parseFloat(t)/a:parseFloat(t):1}var st,nt,at,ot,rt,lt;t.AnimationMode=void 0,(st=t.AnimationMode||(t.AnimationMode={})).auto="auto",st.increase="increase",st.decrease="decrease",st.random="random",t.AnimationStatus=void 0,(nt=t.AnimationStatus||(t.AnimationStatus={})).increasing="increasing",nt.decreasing="decreasing",t.DestroyType=void 0,(at=t.DestroyType||(t.DestroyType={})).none="none",at.max="max",at.min="min",t.OutModeDirection=void 0,(ot=t.OutModeDirection||(t.OutModeDirection={})).bottom="bottom",ot.left="left",ot.right="right",ot.top="top",t.PixelMode=void 0,(rt=t.PixelMode||(t.PixelMode={})).precise="precise",rt.percent="percent",t.StartValueType=void 0,(lt=t.StartValueType||(t.StartValueType={})).max="max",lt.min="min",lt.random="random";function ct(t,e){const i=new Map,s=e?.maxSize,n=e?.ttlMs,a=e?.keyFn,o=(t,e=new WeakSet)=>{if(null===t)return"null";const i=typeof t;if("undefined"===i)return"undefined";if("number"===i||"boolean"===i||"string"===i)return JSON.stringify(t);if("function"===i)try{return t.toString()}catch{return'"[Function]"'}if("symbol"===i)try{return t.toString()}catch{return'"[Symbol]"'}if(Array.isArray(t))return`[${t.map(t=>o(t,e)).join(",")}]`;if(e.has(t))return'"[Circular]"';e.add(t);return`{${Object.keys(t).sort().map(i=>`${JSON.stringify(i)}:${o(t[i],e)}`).join(",")}}`},r=t=>a?a(t):(t=>o(t))(t);return(...e)=>{const a=r(e),o=Date.now(),l=i.get(a);if(void 0!==l){if(!(n&&o-l.ts>n))return i.delete(a),i.set(a,{value:l.value,ts:l.ts}),l.value;i.delete(a)}const c=t(...e);return i.set(a,{value:c,ts:o}),(()=>{if("number"==typeof s&&s>=0)for(;i.size>s;){const t=i.keys().next().value;if(void 0===t)break;i.delete(t)}})(),c}}function ht(){return"undefined"!=typeof matchMedia}function dt(){return globalThis.document}function ut(t){if(ht())return matchMedia(t)}function pt(t){if("undefined"!=typeof MutationObserver)return new MutationObserver(t)}function ft(t,e){return t===e||k(e)&&e.includes(t)}function gt(t){return Math.floor(A()*t.length)}function yt(t,e,i=!0){return t[void 0!==e&&i?e%t.length:gt(t)]}function mt(t,e,i,s,n){return vt(Pt(t,s??0),e,i,n)}function vt(e,i,s,n){let a=!0;return n&&n!==t.OutModeDirection.bottom||(a=e.top<i.height+s.x),!a||n&&n!==t.OutModeDirection.left||(a=e.right>s.x),!a||n&&n!==t.OutModeDirection.right||(a=e.left<i.width+s.y),!a||n&&n!==t.OutModeDirection.top||(a=e.bottom>s.y),a}function Pt(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function bt(t,...e){for(const i of e){if(_(i))continue;if(!D(i)){t=i;continue}Array.isArray(i)?Array.isArray(t)||(t=[]):D(t)&&!Array.isArray(t)||(t={});const e=Object.keys(i),s=new Set(["__proto__","constructor","prototype"]);if(!e.some(t=>{const e=i[t];return D(e)||Array.isArray(e)})){const n=i,a=t;for(const t of e)if(!s.has(t)&&t in n){const e=n[t];void 0!==e&&(a[t]=e)}continue}for(const n of e){if(s.has(n))continue;const e=t,a=i[n];e[n]=Array.isArray(a)?a.map(t=>bt(void 0,t)):bt(e[n],a)}}return t}function wt(t,e){return k(t)?t.map((t,i)=>e(t,i)):e(t,0)}function Mt(t,e,i){return k(t)?yt(t,e,i):t}function xt(e,i){const s=e.value,n=e.animation,a={delayTime:G(n.delay)*r,enable:n.enable,value:G(e.value)*i,max:q(s)*i,min:W(s)*i,loops:0,maxLoops:G(n.count),time:0};if(n.enable){switch(a.decay=1-G(n.decay),n.mode){case t.AnimationMode.increase:a.status=t.AnimationStatus.increasing;break;case t.AnimationMode.decrease:a.status=t.AnimationStatus.decreasing;break;case t.AnimationMode.random:a.status=A()>=o?t.AnimationStatus.increasing:t.AnimationStatus.decreasing}const e=n.mode===t.AnimationMode.auto;switch(n.startValue){case t.StartValueType.min:a.value=a.min,e&&(a.status=t.AnimationStatus.increasing);break;case t.StartValueType.max:a.value=a.max,e&&(a.status=t.AnimationStatus.decreasing);break;case t.StartValueType.random:default:a.value=$(a),e&&(a.status=A()>=o?t.AnimationStatus.increasing:t.AnimationStatus.decreasing)}}return a.initialValue=a.value,a}function zt(e,i){if(!(e.mode===t.PixelMode.percent)){const{mode:t,...i}=e;return i}return"x"in e?{x:e.x/a*i.width,y:e.y/a*i.height}:{width:e.width/a*i.width,height:e.height/a*i.height}}function Ot(t,e){return zt(t,e)}function St(e,i,s,n,a){if(e.destroyed||!i.enable||(i.maxLoops??0)>0&&(i.loops??0)>(i.maxLoops??0))return;const o=(i.velocity??0)*a.factor,r=i.min,l=i.max,c=i.decay??1;if(i.time??=0,(i.delayTime??0)>0&&i.time<(i.delayTime??0)&&(i.time+=a.value),!((i.delayTime??0)>0&&i.time<(i.delayTime??0))){switch(i.status){case t.AnimationStatus.increasing:i.value+=o;break;case t.AnimationStatus.decreasing:i.value-=o}switch(i.velocity&&1!==c&&(i.velocity*=c),i.status){case t.AnimationStatus.increasing:i.value>=l&&(s?i.status=t.AnimationStatus.decreasing:i.value-=l,i.loops??=0,i.loops++);break;case t.AnimationStatus.decreasing:i.value<=r&&(s?i.status=t.AnimationStatus.increasing:i.value+=l,i.loops??=0,i.loops++)}!function(e,i,s,n,a){switch(i){case t.DestroyType.max:s>=a&&e.destroy();break;case t.DestroyType.min:s<=n&&e.destroy()}}(e,n,i.value,r,l),e.destroyed||(i.value=V(i.value,r,l))}}function It(t){const e=dt().createElement("div").style;for(const i in t){const s=t[i];if(!(i in t)||_(s))continue;const n=t.getPropertyValue?.(s);if(!n)continue;const a=t.getPropertyPriority?.(s);a?e.setProperty(s,n,a):e.setProperty(s,n)}return e}const Ct=ct(function(t){const e=dt().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","pointer-events":"none"};for(const t in i){const s=i[t];void 0!==s&&e.setProperty(t,s)}return e});function Dt(t,e,i,s,n){if(s){let s={passive:!0};S(n)?s.capture=n:void 0!==n&&(s=n),t.addEventListener(e,i,s)}else{const s=n;t.removeEventListener(e,i,s)}}async function kt(t,e,i,s=!1){let n=e.get(t);return n&&!s||(n=await Promise.all([...i.values()].map(e=>e(t))),e.set(t,n)),n}async function _t(t,e,i,s=!1){let n=e.get(t);if(!n||s){const s=await Promise.all([...i.entries()].map(([e,i])=>i(t).then(t=>[e,t])));n=new Map(s),e.set(t,n)}return n}class Rt{#e;constructor(){this.#e=new Map}addEventListener(t,e){this.removeEventListener(t,e);let i=this.#e.get(t);i||(i=[],this.#e.set(t,i)),i.push(e)}dispatchEvent(t,e){const i=this.#e.get(t);i?.forEach(t=>{t(e)})}hasEventListener(t){return!!this.#e.get(t)}removeAllEventListeners(t){t?this.#e.delete(t):this.#e=new Map}removeEventListener(t,e){const i=this.#e.get(t);if(!i)return;const s=i.length,n=i.indexOf(e);n<0||(1===s?this.#e.delete(t):i.splice(n,1))}}var Tt;t.EventType=void 0,(Tt=t.EventType||(t.EventType={})).configAdded="configAdded",Tt.containerInit="containerInit",Tt.particlesSetup="particlesSetup",Tt.containerStarted="containerStarted",Tt.containerStopped="containerStopped",Tt.containerDestroyed="containerDestroyed",Tt.containerPaused="containerPaused",Tt.containerPlay="containerPlay",Tt.containerBuilt="containerBuilt",Tt.particleAdded="particleAdded",Tt.particleDestroyed="particleDestroyed",Tt.particleRemoved="particleRemoved";class Et{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;#i=new Set;#s=new Map;#n;#a=new Set;#o=!1;#r=!1;#l=new Set;constructor(t){this.#n=t}get configs(){const t={};for(const[e,i]of this.#s)t[e]=i;return t}addColorManager(t,e){this.colorManagers.set(t,e)}addConfig(e){const i=e.key??e.name??"default";this.#s.set(i,e),this.#n.dispatchEvent(t.EventType.configAdded,{data:{name:i,config:e}})}addEasing(t,e){this.easingFunctions.get(t)||this.easingFunctions.set(t,e)}addEffect(t,e){this.initializers.effects.set(t,e)}addPalette(t,e){this.palettes.set(t,e)}addParticleUpdater(t,e){this.initializers.updaters.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,e){for(const i of t)this.initializers.shapes.set(i,e)}clearPlugins(t){this.effectDrawers.delete(t),this.shapeDrawers.delete(t),this.updaters.delete(t)}getEasing(t){return this.easingFunctions.get(t)??(t=>t)}getEffectDrawers(t,e=!1){return _t(t,this.effectDrawers,this.initializers.effects,e)}getPalette(t){return this.palettes.get(t)}getPlugin(t){return this.plugins.find(e=>e.id===t)}getPreset(t){return this.presets.get(t)}async getShapeDrawers(t,e=!1){return _t(t,this.shapeDrawers,this.initializers.shapes,e)}async getUpdaters(t,e=!1){return kt(t,this.updaters,this.initializers.updaters,e)}async init(){if(!this.#o&&!this.#r){this.#r=!0,this.#a=new Set,this.#i=new Set(this.#l);try{for(const t of this.#i)await this.#c(t,this.#a,this.#i)}finally{this.#l.clear(),this.#r=!1,this.#o=!0}}}loadParticlesOptions(t,e,...i){const s=this.updaters.get(t);s&&s.forEach(t=>t.loadOptions?.(e,...i))}async register(...t){if(this.#o)throw new Error("Register plugins can only be done before calling tsParticles.load()");for(const e of t)this.#r?await this.#c(e,this.#a,this.#i):this.#l.add(e)}async#c(t,e,i){e.has(t)||(e.add(t),i.add(t),await t(this.#n))}}const At=t=>(...e)=>{t(...e)},Ft={debug:At(console.debug),error:(t,...e)=>{console.error(`tsParticles - Error - ${t}`,...e)},info:At(console.info),log:At(console.log),trace:At(console.trace),verbose:At(console.log),warning:At(console.warn)};function Lt(){return Ft}const Bt="100%";class Vt{pluginManager=new Et(this);#h=[];#d=new Rt;#o=!1;get items(){return this.#h}get version(){return"4.1.1"}addEventListener(t,e){this.#d.addEventListener(t,e)}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}`)}dispatchEvent(t,e){this.#d.dispatchEvent(t,e)}async init(){this.#o||(await this.pluginManager.init(),this.#o=!0)}item(t){const e=this.items,i=e[t];if(!i?.destroyed)return i;e.splice(t,1)}async load(t){let i;await this.init(),"undefined"!=typeof HTMLElement&&t.element instanceof HTMLElement&&(i=t.element);const{Container:s}=await Promise.resolve().then(function(){return rs}),n=t.id??i?.id??`tsparticles${Math.floor(1e4*A()).toString()}`,{index:a,url:o}=t,r=o?await async function(t){const e=Mt(t.url,t.index);if(!e)return t.fallback;const i=await fetch(e);return i.ok?await i.json():(Lt().error(`${i.status.toString()} while retrieving config file`),t.fallback)}({fallback:t.options,url:o,index:a}):t.options,l=Mt(r,a),{items:c}=this,h=c.findIndex(t=>t.id.description===n),d=new s({dispatchCallback:(t,e)=>{this.dispatchEvent(t,e)},id:n,onDestroy:t=>{if(!t)return;const e=this.items,i=e.indexOf(d);i>=0&&e.splice(i,1)},pluginManager:this.pluginManager,sourceOptions:l});if(h>=0){const t=this.item(h),e=t?1:0;t&&!t.destroyed&&t.destroy(!1),c.splice(h,e,d)}else c.push(d);const u="undefined"!=typeof OffscreenCanvas&&t.element instanceof OffscreenCanvas?t.element:(t=>{const i=dt();let s;if(t instanceof HTMLCanvasElement||t.tagName.toLowerCase()===g)s=t,s.dataset[e]??=f,s.dataset[e]===p&&(s.style.width||=Bt,s.style.height||=Bt,s.style.pointerEvents="none",s.style.setProperty("pointer-events","none"));else{const n=t.getElementsByTagName(g).item(0);n?(s=n,s.dataset[e]=f):(s=i.createElement(g),s.dataset[e]=p,t.appendChild(s)),s.style.width||=Bt,s.style.height||=Bt,s.style.pointerEvents="none",s.style.setProperty("pointer-events","none")}return s})(((t,i)=>{const s=dt();let n=i??s.getElementById(t);return n||(n=s.createElement("canvas"),n.id=t,n.dataset[e]=p,s.body.append(n),n)})(n,i));return d.canvas.loadCanvas(u),await d.start(),d}async refresh(t=!0){t&&await Promise.all(this.items.map(t=>t.refresh()))}removeEventListener(t,e){this.#d.removeEventListener(t,e)}}var Ut,$t,Gt,Wt,qt,Ht,Nt,jt;!function(t){t.circle="circle",t.rectangle="rectangle"}(Ut||(Ut={}));class Qt{position;type;constructor(t,e,i){this.position={x:t,y:e},this.type=i}_resetPosition(t,e){this.position.x=t,this.position.y=e}}class Xt extends Qt{radius;constructor(t,e,i){super(t,e,Ut.circle),this.radius=i}contains(t){return X(t,this.position,this.radius)}intersects(t){const e=this.position,i=t.position,s=this.radius,n=Math.abs(i.x-e.x),a=Math.abs(i.y-e.y);if(t instanceof Xt||t.type===Ut.circle){return s+t.radius>Math.hypot(n,a)}if(t instanceof Yt||t.type===Ut.rectangle){const e=t,{width:i,height:o}=e.size;return Math.pow(n-i,2)+Math.pow(a-o,2)<=s**2||n<=s+i&&a<=s+o||n<=i||a<=o}return!1}reset(t,e,i){return this._resetPosition(t,e),this.radius=i,this}}class Yt extends Qt{size;constructor(t,e,i,s){super(t,e,Ut.rectangle),this.size={height:s,width:i}}contains(t){const e=this.size.width,i=this.size.height,s=this.position;return t.x>=s.x&&t.x<=s.x+e&&t.y>=s.y&&t.y<=s.y+i}intersects(t){if(t instanceof Xt)return t.intersects(this);if(!(t instanceof Yt))return!1;const e=this.size.width,i=this.size.height,s=this.position,n=t.position,a=t.size,o=a.width,r=a.height;return n.x<s.x+e&&n.x+o>s.x&&n.y<s.y+i&&n.y+r>s.y}reset(t,e,i,s){return this._resetPosition(t,e),this.size.width=i,this.size.height=s,this}}t.RotateDirection=void 0,($t=t.RotateDirection||(t.RotateDirection={})).clockwise="clockwise",$t.counterClockwise="counter-clockwise",$t.random="random",t.LimitMode=void 0,(Gt=t.LimitMode||(t.LimitMode={})).delete="delete",Gt.wait="wait",t.OutMode=void 0,(Wt=t.OutMode||(t.OutMode={})).bounce="bounce",Wt.none="none",Wt.out="out",Wt.destroy="destroy",Wt.split="split",t.AlterType=void 0,(qt=t.AlterType||(t.AlterType={})).darken="darken",qt.enlighten="enlighten",t.GradientType=void 0,(Ht=t.GradientType||(t.GradientType={})).linear="linear",Ht.radial="radial",Ht.random="random",t.ParticleOutType=void 0,(Nt=t.ParticleOutType||(t.ParticleOutType={})).normal="normal",Nt.inside="inside",Nt.outside="outside",t.EasingType=void 0,(jt=t.EasingType||(t.EasingType={})).easeInBack="ease-in-back",jt.easeInBounce="ease-in-bounce",jt.easeInCirc="ease-in-circ",jt.easeInCubic="ease-in-cubic",jt.easeInElastic="ease-in-elastic",jt.easeInExpo="ease-in-expo",jt.easeInGaussian="ease-in-gaussian",jt.easeInLinear="ease-in-linear",jt.easeInQuad="ease-in-quad",jt.easeInQuart="ease-in-quart",jt.easeInQuint="ease-in-quint",jt.easeInSigmoid="ease-in-sigmoid",jt.easeInSine="ease-in-sine",jt.easeInSmoothstep="ease-in-smoothstep",jt.easeOutBack="ease-out-back",jt.easeOutBounce="ease-out-bounce",jt.easeOutCirc="ease-out-circ",jt.easeOutCubic="ease-out-cubic",jt.easeOutElastic="ease-out-elastic",jt.easeOutExpo="ease-out-expo",jt.easeOutGaussian="ease-out-gaussian",jt.easeOutLinear="ease-out-linear",jt.easeOutQuad="ease-out-quad",jt.easeOutQuart="ease-out-quart",jt.easeOutQuint="ease-out-quint",jt.easeOutSigmoid="ease-out-sigmoid",jt.easeOutSine="ease-out-sine",jt.easeOutSmoothstep="ease-out-smoothstep",jt.easeInOutBack="ease-in-out-back",jt.easeInOutBounce="ease-in-out-bounce",jt.easeInOutCirc="ease-in-out-circ",jt.easeInOutCubic="ease-in-out-cubic",jt.easeInOutElastic="ease-in-out-elastic",jt.easeInOutExpo="ease-in-out-expo",jt.easeInOutGaussian="ease-in-out-gaussian",jt.easeInOutLinear="ease-in-out-linear",jt.easeInOutQuad="ease-in-out-quad",jt.easeInOutQuart="ease-in-out-quart",jt.easeInOutQuint="ease-in-out-quint",jt.easeInOutSigmoid="ease-in-out-sigmoid",jt.easeInOutSine="ease-in-out-sine",jt.easeInOutSmoothstep="ease-in-out-smoothstep";class Zt{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(t){_(t)||(void 0!==t.count&&(this.count=H(t.count)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=H(t.speed)),void 0!==t.decay&&(this.decay=H(t.decay)),void 0!==t.delay&&(this.delay=H(t.delay)),void 0!==t.sync&&(this.sync=t.sync))}}class Jt extends Zt{mode;startValue;constructor(){super(),this.mode=t.AnimationMode.auto,this.startValue=t.StartValueType.random}load(t){super.load(t),_(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.startValue&&(this.startValue=t.startValue))}}class Kt extends Zt{max;min;offset;constructor(t,e){super(),this.min=t,this.max=e,this.offset=0,this.sync=!0}load(t){super.load(t),_(t)||(void 0!==t.max&&(this.max=t.max),void 0!==t.min&&(this.min=t.min),void 0!==t.offset&&(this.offset=H(t.offset)))}}class te{h=new Kt(0,m);l=new Kt(0,P);s=new Kt(0,v);load(t){_(t)||(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}class ee{value;constructor(){this.value=""}static create(t,e){const i=new ee;return i.load(t),void 0!==e&&(I(e)||k(e)?i.load({value:e}):i.load(e)),i}load(t){_(t)||_(t.value)||(this.value=t.value)}}class ie extends ee{animation;constructor(){super(),this.animation=new te}static create(t,e){const i=new ie;return i.load(t),void 0!==e&&(I(e)||k(e)?i.load({value:e}):i.load(e)),i}load(t){if(super.load(t),_(t))return;const e=t.animation;void 0!==e&&(void 0===e.enable?this.animation.load(t.animation):this.animation.h.load(e))}}class se{color;image;opacity;position;repeat;size;constructor(){this.color=new ee,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){_(t)||(void 0!==t.color&&(this.color=ee.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.position&&(this.position=t.position),void 0!==t.repeat&&(this.repeat=t.repeat),void 0!==t.size&&(this.size=t.size),void 0!==t.opacity&&(this.opacity=t.opacity))}}class ne{enable;zIndex;constructor(){this.enable=!0,this.zIndex=0}load(t){_(t)||(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}class ae{delay;enable;constructor(){this.delay=.5,this.enable=!0}load(t){_(t)||(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.enable&&(this.enable=t.enable))}}class oe{close;options;type;constructor(){this.close=!0,this.options={},this.type=[]}load(t){if(_(t))return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=bt(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.type&&(this.type=t.type)}}class re{color;enable;opacity;constructor(){this.enable=!0,this.opacity=1}load(t){_(t)||(void 0!==t.color&&(this.color=ie.create(this.color,t.color)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.opacity&&(this.opacity=H(t.opacity)))}}class le{offset;value;constructor(){this.offset=0,this.value=90}load(t){_(t)||(void 0!==t.offset&&(this.offset=H(t.offset)),void 0!==t.value&&(this.value=H(t.value)))}}class ce{mode;radius;x;y;constructor(){this.x=50,this.y=50,this.mode=t.PixelMode.percent,this.radius=0}load(t){_(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))}}class he{acceleration;enable;inverse;maxSpeed;constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){_(t)||(void 0!==t.acceleration&&(this.acceleration=H(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=H(t.maxSpeed)))}}class de{value;constructor(){this.value=0}load(t){_(t)||_(t.value)||(this.value=H(t.value))}}class ue extends de{animation=new Zt;load(t){if(super.load(t),_(t))return;const e=t.animation;void 0!==e&&this.animation.load(e)}}class pe extends ue{animation;constructor(){super(),this.animation=new Jt}load(t){super.load(t)}}class fe{clamp;delay;enable;generator;options;constructor(){this.clamp=!0,this.delay=new de,this.enable=!1,this.options={}}load(t){_(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=bt(this.options,t.options)))}}class ge{bottom;default;left;right;top;constructor(){this.default=t.OutMode.out}load(t){_(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)}}class ye{acceleration;enable;position;constructor(){this.acceleration=0,this.enable=!1}load(t){_(t)||(void 0!==t.acceleration&&(this.acceleration=H(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),t.position&&(this.position=bt({},t.position)))}}class me{angle;center;decay;direction;distance;drift;enable;gravity;outModes;path;random;size;speed;spin;straight;vibrate;warp;constructor(){this.angle=new le,this.center=new ce,this.decay=0,this.distance={},this.direction=t.MoveDirection.none,this.drift=0,this.enable=!1,this.gravity=new he,this.path=new fe,this.outModes=new ge,this.random=!1,this.size=!1,this.speed=2,this.spin=new ye,this.straight=!1,this.vibrate=!1,this.warp=!1}load(t){if(_(t))return;this.angle.load(C(t.angle)?{value:t.angle}:t.angle),this.center.load(t.center),void 0!==t.decay&&(this.decay=H(t.decay)),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance=C(t.distance)?{horizontal:t.distance,vertical:t.distance}:{...t.distance}),void 0!==t.drift&&(this.drift=H(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const e=t.outModes;void 0!==e&&(D(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=H(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)}}class ve{color;opacity;width;constructor(){this.width=0}load(t){_(t)||(void 0!==t.color&&(this.color=ie.create(this.color,t.color)),void 0!==t.width&&(this.width=H(t.width)),void 0!==t.opacity&&(this.opacity=H(t.opacity)))}}class Pe{color;fill;stroke;load(t){_(t)||(void 0!==t.color&&(this.color=ie.create(this.color,t.color)),void 0!==t.fill&&(this.fill??=new re,this.fill.load(t.fill)),void 0!==t.stroke&&(this.stroke??=new ve,this.stroke.load(t.stroke)))}}class be extends de{constructor(){super(),this.value=1}}class we{horizontal;vertical;constructor(){this.horizontal=new be,this.vertical=new be}load(t){_(t)||(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}class Me{enable;height;width;constructor(){this.enable=!1,this.width=1920,this.height=1080}load(t){if(_(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)}}class xe{mode;value;constructor(){this.mode=t.LimitMode.delete,this.value=0}load(t){_(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}class ze{density;limit;value;constructor(){this.density=new Me,this.limit=new xe,this.value=0}load(t){_(t)||(this.density.load(t.density),this.limit.load(t.limit),void 0!==t.value&&(this.value=t.value))}}class Oe{close;options;type;constructor(){this.close=!0,this.options={},this.type="circle"}load(t){if(_(t))return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=bt(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.type&&(this.type=t.type)}}class Se extends de{opacityRate;sizeRate;velocityRate;constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),_(t)||(void 0!==t.opacityRate&&(this.opacityRate=t.opacityRate),void 0!==t.sizeRate&&(this.sizeRate=t.sizeRate),void 0!==t.velocityRate&&(this.velocityRate=t.velocityRate))}}class Ie{bounce;effect;groups;move;number;paint;palette;reduceDuplicates;shape;zIndex;#u;#p;constructor(t,e){this.#p=t,this.#u=e,this.bounce=new we,this.effect=new oe,this.groups={},this.move=new me,this.number=new ze,this.paint=new Pe,this.paint.color=new ie,this.paint.color.value="#fff",this.paint.fill=new re,this.paint.fill.enable=!0,this.reduceDuplicates=!1,this.shape=new Oe,this.zIndex=new Se}load(t){if(_(t))return;if(t.palette&&(this.palette=t.palette,this.#f(this.palette)),void 0!==t.groups)for(const e of Object.keys(t.groups)){if(!(e in t.groups))continue;const i=t.groups[e];void 0!==i&&(this.groups[e]=bt(this.groups[e]??{},i))}void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.bounce.load(t.bounce),this.effect.load(t.effect),this.move.load(t.move),this.number.load(t.number);const e=t.paint;if(e&&(k(e)?this.paint=wt(e,t=>{const e=new Pe;return e.load(t),e}):k(this.paint)?(this.paint=new Pe,this.paint.load(e)):this.paint.load(e)),this.shape.load(t.shape),this.zIndex.load(t.zIndex),this.#u){for(const e of this.#p.plugins)e.loadParticlesOptions&&e.loadParticlesOptions(this.#u,this,t);const e=this.#p.updaters.get(this.#u);if(e)for(const i of e)i.loadOptions&&i.loadOptions(this,t)}}#f=t=>{const e=this.#p.getPalette(t);if(!e)return;const i=e.colors,s=(k(i)?i:[i]).flatMap(t=>{const e=t.fill,i=t.stroke,s=e?{color:{value:e.value},enable:e.enable,opacity:e.opacity}:void 0;return i?[{fill:s,stroke:{color:{value:i.value},opacity:i.opacity,width:i.width||0}}]:[{fill:s}]}),n=s.length>1?s:s[0]??{};this.load({paint:n,blend:{enable:!0,mode:e.blendMode}})}}function Ce(t,...e){for(const i of e)t.load(i)}function De(t,e,...i){const s=new Ie(t,e);return Ce(s,...i),s}class ke{autoPlay;background;clear;defaultThemes;delay;detectRetina;duration;fpsLimit;fullScreen;hdr;key;name;palette;particles;pauseOnBlur;pauseOnOutsideViewport;preset;resize;smooth;style;zLayers;#u;#p;constructor(t,e){this.#p=t,this.#u=e,this.autoPlay=!0,this.background=new se,this.clear=!0,this.defaultThemes={},this.delay=0,this.fullScreen=new ne,this.detectRetina=!0,this.duration=0,this.fpsLimit=120,this.hdr=!0,this.particles=De(this.#p,this.#u),this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.resize=new ae,this.smooth=!1,this.style={},this.zLayers=100}load(t){if(_(t))return;void 0!==t.preset&&(this.preset=t.preset,wt(this.preset,t=>{this.#g(t)})),void 0!==t.palette&&(this.palette=t.palette,this.#f(this.palette)),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=H(t.delay));const e=t.detectRetina;void 0!==e&&(this.detectRetina=e),void 0!==t.duration&&(this.duration=H(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 s=t.fullScreen;S(s)?this.fullScreen.enable=s:this.fullScreen.load(s),this.particles.load(t.particles),this.resize.load(t.resize),this.style=bt(this.style,t.style),void 0!==t.smooth&&(this.smooth=t.smooth),this.#p.plugins.forEach(e=>{e.loadOptions(this.#u,this,t)})}#f=t=>{const e=this.#p.getPalette(t);e&&this.load({background:{color:e.background},blend:{enable:!0,mode:e.blendMode},particles:{palette:t}})};#g=t=>{this.load(this.#p.getPreset(t))}}function _e(t,e,i){t.fillStyle=i??"rgba(0,0,0,0)",t.fillRect(l.x,l.y,e.width,e.height)}function Re(t,e,i,s){if(!i)return;const n=t.globalAlpha;t.globalAlpha=s,t.drawImage(i,l.x,l.y,e.width,e.height),t.globalAlpha=n}function Te(t,e){t.clearRect(l.x,l.y,e.width,e.height)}function Ee(t){const{container:e,context:i,particle:s,delta:n,colorStyles:a,radius:o,opacity:r,transform:l}=t,{effectDrawers:c,shapeDrawers:h}=e,d=s.getPosition(),u=s.getTransformData(l),p={x:d.x,y:d.y};i.setTransform(u.a,u.b,u.c,u.d,d.x,d.y),a.fill&&(i.fillStyle=a.fill);const f=!!s.fillEnabled,g=s.strokeWidth??0;i.lineWidth=g,a.stroke&&(i.strokeStyle=a.stroke);const y={context:i,particle:s,radius:o,drawRadius:1*o,opacity:r,delta:n,pixelRatio:e.retina.pixelRatio,fill:f,stroke:g>0,transformData:u,position:{...d},drawPosition:p,drawScale:1};for(const t of e.plugins)t.drawParticleTransform?.(y);const m=s.effect?c.get(s.effect):void 0,v=s.shape?h.get(s.shape):void 0;Fe(m,y),Ve(v,y),Le(v,y),Be(v,y),Ae(m,y),i.resetTransform()}function Ae(t,e){if(!t?.drawAfter)return;const{particle:i}=e;i.effect&&t.drawAfter(e)}function Fe(t,e){if(!t?.drawBefore)return;const{particle:i}=e;i.effect&&t.drawBefore(e)}function Le(t,e){if(!t)return;const{context:i,fill:s,particle:n,stroke:a}=e;n.shape&&(i.beginPath(),t.draw(e),n.shapeClose&&i.closePath(),s&&i.fill(),a&&i.stroke())}function Be(t,e){if(!t?.afterDraw)return;const{particle:i}=e;i.shape&&t.afterDraw(e)}function Ve(t,e){if(!t?.beforeDraw)return;const{particle:i}=e;i.shape&&t.beforeDraw(e)}function Ue(t,e,i,s){e.drawParticle&&e.drawParticle(t,i,s)}const $e=new Map;function Ge(t,e){let i=$e.get(t);if(!i){if(i=e(),$e.size>=1e3){[...$e.keys()].slice(0,500).forEach(t=>$e.delete(t))}$e.set(t,i)}return i}function We(t,e){if(e)for(const i of t.colorManagers.values())if(i.accepts(e))return i.parseString(e)}function qe(t,e,i,s=!0){if(!e)return;const n=I(e)?{value:e}:e;if(I(n.value))return He(t,n.value,i,s);if(k(n.value)){const e=yt(n.value,i,s);if(!e)return;return qe(t,{value:e})}for(const e of t.colorManagers.values()){const t=e.handleRangeColor(n);if(t)return t}}function He(t,e,i,s=!0){if(!e)return;const n=I(e)?{value:e}:e;if(I(n.value))return n.value===h?Ze():Qe(t,n.value);if(k(n.value)){const e=yt(n.value,i,s);if(!e)return;return He(t,{value:e})}for(const e of t.colorManagers.values()){const t=e.handleColor(n);if(t)return t}}function Ne(t,e,i,s=!0){const n=qe(t,e,i,s);return n?je(n):void 0}function je(t){const e=t.r/y,i=t.g/y,s=t.b/y,n=Math.max(e,i,s),a=Math.min(e,i,s),r={h:0,l:(n+a)*o,s:0};return n!==a&&(r.s=r.l<o?(n-a)/(n+a):(n-a)/(2-n-a),r.h=e===n?(i-s)/(n-a):i===n?2+(s-e)/(n-a):4+(e-i)/(n-a)),r.l*=P,r.s*=v,r.h*=60,r.h<0&&(r.h+=m),r.h>=m&&(r.h-=m),r}function Qe(t,e){return We(t,e)}function Xe(t){const e=(t.h%m+m)%m,i=Math.max(0,Math.min(v,t.s)),s=Math.max(0,Math.min(P,t.l)),n=e/m,a=i/v,r=s/P;if(0===i){const t=Math.round(r*y);return{r:t,g:t,b:t}}const l=(t,e,i)=>{if(i<0&&i++,i>1&&i--,6*i<1)return t+6*(e-t)*i;if(2*i<1)return e;if(3*i<2){return t+(e-t)*(2/3-i)*6}return t},c=r<o?r*(1+a):r+a-r*a,h=2*r-c,d=1/3,u=Math.min(y,y*l(h,c,n+d)),p=Math.min(y,y*l(h,c,n)),f=Math.min(y,y*l(h,c,n-d));return{r:Math.round(u),g:Math.round(p),b:Math.round(f)}}function Ye(t){const e=Xe(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function Ze(t){const e=t??0,i=()=>Math.floor(F(e,256));return{b:i(),g:i(),r:i()}}function Je(t,e,i){const s=i??1;return Ge(`rgb-${t.r.toFixed(2)}-${t.g.toFixed(2)}-${t.b.toFixed(2)}-${e?"hdr":"sdr"}-${s.toString()}`,()=>e?Ke(t,i):function(t,e){return`rgba(${t.r.toString()}, ${t.g.toString()}, ${t.b.toString()}, ${(e??1).toString()})`}(t,i))}function Ke(t,e){return`color(display-p3 ${(t.r/y).toString()} ${(t.g/y).toString()} ${(t.b/y).toString()} / ${(e??1).toString()})`}function ti(t,e,i){const s=i??1;return Ge(`hsl-${t.h.toFixed(2)}-${t.s.toFixed(2)}-${t.l.toFixed(2)}-${e?"hdr":"sdr"}-${s.toString()}`,()=>e?function(t,e){return Ke(Xe(t),e)}(t,i):function(t,e){return`hsla(${t.h.toString()}, ${t.s.toString()}%, ${t.l.toString()}%, ${(e??1).toString()})`}(t,i))}function ei(t,e,i,s){let n=t,a=e;return"r"in n||(n=Xe(t)),"r"in a||(a=Xe(e)),{b:U(n.b,a.b,i,s),g:U(n.g,a.g,i,s),r:U(n.r,a.r,i,s)}}function ii(t){return void 0===t?void 0:{h:t.h.value,s:t.s.value,l:t.l.value}}function si(t,e,i){const s={h:{enable:!1,value:t.h,min:0,max:m},s:{enable:!1,value:t.s,min:0,max:v},l:{enable:!1,value:t.l,min:0,max:P}};return e&&(ni(s.h,e.h,i),ni(s.s,e.s,i),ni(s.l,e.l,i)),s}function ni(e,i,s){e.enable=i.enable,e.min=i.min,e.max=i.max,e.enable?(e.velocity=G(i.speed)/a*s,e.decay=1-G(i.decay),e.status=t.AnimationStatus.increasing,e.loops=0,e.maxLoops=G(i.count),e.time=0,e.delayTime=G(i.delay)*r,i.sync||(e.velocity*=A(),e.value*=A()),e.initialValue=e.value,e.offset=H(i.offset)):e.velocity=0}function ai(e,i,s){if(!e.enable||(e.maxLoops??0)>0&&(e.loops??0)>(e.maxLoops??0))return;if(e.time??=0,(e.delayTime??0)>0&&e.time<(e.delayTime??0)&&(e.time+=s.value),(e.delayTime??0)>0&&e.time<(e.delayTime??0))return;const n=e.offset?$(e.offset):0,a=(e.velocity??0)*s.factor+3.6*n,o=e.decay??1,r=e.max,l=e.min;i&&e.status!==t.AnimationStatus.increasing?(e.value-=a,e.value<l&&(e.loops??=0,e.loops++,e.status=t.AnimationStatus.increasing)):(e.value+=a,e.value>r&&(e.loops??=0,e.loops++,i?e.status=t.AnimationStatus.decreasing:e.value-=r)),e.velocity&&1!==o&&(e.velocity*=o),e.value=V(e.value,l,r)}function oi(t,e){if(!t)return;const{h:i,s:s,l:n}=t;ai(i,!1,e),ai(s,!0,e),ai(n,!0,e)}function ri(e,i,s){return{h:e.h,s:e.s,l:e.l+(i===t.AlterType.darken?-1:1)*s}}const li=new Vt;class ci{enable;mode;constructor(){this.mode="destination-out",this.enable=!1}load(t){_(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.enable&&(this.enable=t.enable))}}class hi{id="blend";async getPlugin(t){const{BlendPluginInstance:e}=await Promise.resolve().then(function(){return ls});return new e(t)}loadOptions(t,e,i){if(!this.needsPlugin(e)&&!this.needsPlugin(i))return;let s=e.blend;s?.load||(e.blend=s=new ci),s.load(i?.blend)}loadParticlesOptions(t,e,i){e.blend??=new ci,e.blend.load(i?.blend)}needsPlugin(t){return!!t?.blend?.enable||!!t?.particles?.blend?.enable}}async function di(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addPlugin(new hi)})}class ui{draw(t){!function(t){const{context:e,particle:i,radius:s}=t;i.circleRange??={min:0,max:u};const n=i.circleRange;e.arc(l.x,l.y,s,n.min,n.max,!1)}(t)}getSidesCount(){return 12}particleInit(t,e){const i=e.shapeData,s=i?.angle??{max:360,min:0};e.circleRange=D(s)?{min:Y(s.min),max:Y(s.max)}:{min:0,max:Y(s)}}}async function pi(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addShape(["circle"],()=>Promise.resolve(new ui))})}var fi;!function(t){t[t.r=1]="r",t[t.g=2]="g",t[t.b=3]="b",t[t.a=4]="a"}(fi||(fi={}));const gi=/^#?([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,yi=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i;class mi{accepts(t){return t.startsWith("#")}handleColor(t){return this.#y(t.value)}handleRangeColor(t){return this.#y(t.value)}parseString(t){return this.#y(t)}#y(t){if("string"!=typeof t||!this.accepts(t))return;const e=t.replace(gi,(t,e,i,s,n)=>e+e+i+i+s+s+(void 0===n?"":n+n)),i=yi.exec(e);return i?{a:i[fi.a]?Number.parseInt(i[fi.a],16)/255:1,b:Number.parseInt(i[fi.b]??"0",16),g:Number.parseInt(i[fi.g]??"0",16),r:Number.parseInt(i[fi.r]??"0",16)}:void 0}}async function vi(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addColorManager("hex",new mi)})}var Pi;!function(t){t[t.h=1]="h",t[t.s=2]="s",t[t.l=3]="l",t[t.a=5]="a"}(Pi||(Pi={}));const bi=/hsla?\(\s*(\d+)\s*[\s,]\s*(\d+)%\s*[\s,]\s*(\d+)%\s*([\s,]\s*(0|1|0?\.\d+|(\d{1,3})%)\s*)?\)/i;class wi{accepts(t){return t.startsWith("hsl")}handleColor(t){const e=t.value.hsl??t.value;if("h"in e&&"s"in e&&"l"in e)return Xe(e)}handleRangeColor(t){const e=t.value.hsl??t.value;if("h"in e&&"s"in e&&"l"in e)return Xe({h:G(e.h),l:G(e.l),s:G(e.s)})}parseString(t){if(!this.accepts(t))return;const e=bi.exec(t);return e?Ye({a:e.length>4?it(e[Pi.a]):1,h:Number.parseInt(e[Pi.h]??"0",10),l:Number.parseInt(e[Pi.l]??"0",10),s:Number.parseInt(e[Pi.s]??"0",10)}):void 0}}async function Mi(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addColorManager("hsl",new wi)})}class xi{id="move";#p;constructor(t){this.#p=t}async getPlugin(t){const{MovePluginInstance:e}=await Promise.resolve().then(function(){return hs});return new e(this.#p,t)}loadOptions(){}needsPlugin(){return!0}}async function zi(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{const e=t.pluginManager;e.initializers.pathGenerators??=new Map,e.pathGenerators??=new Map,e.addPathGenerator=(t,i)=>{e.initializers.pathGenerators??=new Map,e.initializers.pathGenerators.set(t,i)},e.getPathGenerators=async(t,i=!1)=>(e.initializers.pathGenerators??=new Map,e.pathGenerators??=new Map,_t(t,e.pathGenerators,e.initializers.pathGenerators,i)),t.pluginManager.addPlugin(new xi(t.pluginManager))})}class Oi extends Jt{destroy;constructor(){super(),this.destroy=t.DestroyType.none,this.speed=2}load(t){super.load(t),_(t)||void 0!==t.destroy&&(this.destroy=t.destroy)}}class Si extends pe{animation;constructor(){super(),this.animation=new Oi,this.value=1}load(t){if(_(t))return;super.load(t);const e=t.animation;void 0!==e&&this.animation.load(e)}}class Ii{#u;constructor(t){this.#u=t}init(t){const e=t.options.opacity;if(!e)return;t.opacity=xt(e,1);const i=e.animation;i.enable&&(t.opacity.velocity=G(i.speed)/a*this.#u.retina.reduceFactor,i.sync||(t.opacity.velocity*=A()))}isEnabled(t){return!t.destroyed&&!t.spawning&&!!t.opacity&&t.opacity.enable&&((t.opacity.maxLoops??0)<=0||(t.opacity.maxLoops??0)>0&&(t.opacity.loops??0)<(t.opacity.maxLoops??0))}loadOptions(t,...e){t.opacity??=new Si;for(const i of e)t.opacity.load(i?.opacity)}reset(t){t.opacity&&(t.opacity.time=0,t.opacity.loops=0)}update(t,e){this.isEnabled(t)&&t.opacity&&t.options.opacity&&St(t,t.opacity,!0,t.options.opacity.animation.destroy,e)}}async function Ci(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("opacity",t=>Promise.resolve(new Ii(t)))})}class Di{modes;#u;#m;constructor(e){this.#u=e,this.modes=[t.OutMode.bounce,t.OutMode.split],this.#m=e.plugins.filter(t=>void 0!==t.particleBounce)}update(e,i,s,n){if(!this.modes.includes(n))return;const a=this.#u;let o=!1;for(const t of this.#m)if(o=t.particleBounce?.(e,s,i)??!1,o)break;if(o)return;const r=e.getPosition(),l=e.offset,c=e.getRadius(),h=Pt(r,c),d=a.canvas.size,u=!e.isInsideCanvasForOutMode(n,i);!function(e){if(e.outMode!==t.OutMode.bounce&&e.outMode!==t.OutMode.split||e.direction!==t.OutModeDirection.left&&e.direction!==t.OutModeDirection.right)return;e.bounds.right<0&&e.direction===t.OutModeDirection.left?e.particle.position.x=e.size+e.offset.x:e.bounds.left>e.canvasSize.width&&e.direction===t.OutModeDirection.right&&(e.particle.position.x=e.canvasSize.width-e.size-e.offset.x);const i=e.particle.velocity.x;let s=!1;if(e.outOfCanvas&&(e.direction===t.OutModeDirection.right&&i>0||e.direction===t.OutModeDirection.left&&i<0)){const t=G(e.particle.options.bounce.horizontal.value);e.particle.velocity.x*=-t,s=!0}if(!s)return;const n=e.offset.x+e.size;e.outOfCanvas&&e.direction===t.OutModeDirection.right?e.particle.position.x=e.canvasSize.width-n:e.outOfCanvas&&e.direction===t.OutModeDirection.left&&(e.particle.position.x=n),e.outMode===t.OutMode.split&&e.particle.destroy()}({particle:e,outMode:n,direction:i,bounds:h,canvasSize:d,offset:l,outOfCanvas:u,size:c}),function(e){if(e.outMode!==t.OutMode.bounce&&e.outMode!==t.OutMode.split||e.direction!==t.OutModeDirection.bottom&&e.direction!==t.OutModeDirection.top)return;e.bounds.bottom<0&&e.direction===t.OutModeDirection.top?e.particle.position.y=e.size+e.offset.y:e.bounds.top>e.canvasSize.height&&e.direction===t.OutModeDirection.bottom&&(e.particle.position.y=e.canvasSize.height-e.size-e.offset.y);const i=e.particle.velocity.y;let s=!1;if(e.outOfCanvas&&(e.direction===t.OutModeDirection.bottom&&i>0||e.direction===t.OutModeDirection.top&&i<0)){const t=G(e.particle.options.bounce.vertical.value);e.particle.velocity.y*=-t,s=!0}if(!s)return;const n=e.offset.y+e.size;e.outOfCanvas&&e.direction===t.OutModeDirection.bottom?e.particle.position.y=e.canvasSize.height-n:e.outOfCanvas&&e.direction===t.OutModeDirection.top&&(e.particle.position.y=n),e.outMode===t.OutMode.split&&e.particle.destroy()}({particle:e,outMode:n,direction:i,bounds:h,canvasSize:d,offset:l,outOfCanvas:u,size:c})}}class ki{modes;constructor(e){this.modes=[t.OutMode.destroy]}update(e,i,s,n){if(this.modes.includes(n)){switch(e.outType){case t.ParticleOutType.normal:case t.ParticleOutType.outside:if(e.isInsideCanvasForOutMode(n,i))return;break;case t.ParticleOutType.inside:{const{dx:t,dy:i}=N(e.position,e.moveCenter),{x:s,y:n}=e.velocity;if(s<0&&t>e.moveCenter.radius||n<0&&i>e.moveCenter.radius||s>=0&&t<-e.moveCenter.radius||n>=0&&i<-e.moveCenter.radius)return;break}}e.destroy(!0)}}}class _i{modes;#u;constructor(e){this.#u=e,this.modes=[t.OutMode.none]}update(e,i,s,n){if(!this.modes.includes(n))return;if((e.options.move.distance.horizontal&&(i===t.OutModeDirection.left||i===t.OutModeDirection.right))??(e.options.move.distance.vertical&&(i===t.OutModeDirection.top||i===t.OutModeDirection.bottom)))return;const a=e.options.move.gravity,o=this.#u,r=o.canvas.size,c=e.getRadius();if(a.enable){const s=e.position;(!a.inverse&&s.y>r.height+c&&i===t.OutModeDirection.bottom||a.inverse&&s.y<-c&&i===t.OutModeDirection.top)&&e.destroy()}else{if(e.velocity.y>0&&e.position.y<=r.height+c||e.velocity.y<0&&e.position.y>=-c||e.velocity.x>0&&e.position.x<=r.width+c||e.velocity.x<0&&e.position.x>=-c)return;mt(e.position,o.canvas.size,l,c,i)||e.destroy()}}}const Ri=O.origin;class Ti{modes;#u;constructor(e){this.#u=e,this.modes=[t.OutMode.out]}update(e,i,s,n){if(!this.modes.includes(n))return;const a=this.#u;switch(e.outType){case t.ParticleOutType.inside:{const{x:t,y:i}=e.velocity;Ri.setTo(l),Ri.length=e.moveCenter.radius,Ri.angle=e.velocity.angle+Math.PI,Ri.addTo(e.moveCenter);const{dx:s,dy:n}=N(e.position,Ri);if(t<=0&&s>=0||i<=0&&n>=0||t>=0&&s<=0||i>=0&&n<=0)return;e.position.x=Math.floor($({min:0,max:a.canvas.size.width})),e.position.y=Math.floor($({min:0,max:a.canvas.size.height}));const{dx:o,dy:r}=N(e.position,e.moveCenter);e.direction=Math.atan2(-r,-o),e.velocity.angle=e.direction,e.justWarped=!0;break}default:if(e.isInsideCanvasForOutMode(n,i))return;switch(e.outType){case t.ParticleOutType.outside:{e.position.x=Math.floor($({min:-e.moveCenter.radius,max:e.moveCenter.radius}))+e.moveCenter.x,e.position.y=Math.floor($({min:-e.moveCenter.radius,max:e.moveCenter.radius}))+e.moveCenter.y;const{dx:t,dy:i}=N(e.position,e.moveCenter);e.moveCenter.radius&&(e.direction=Math.atan2(i,t),e.velocity.angle=e.direction),e.justWarped=!0;break}case t.ParticleOutType.normal:{const s=e.options.move.warp,n=a.canvas.size,o={bottom:n.height+e.getRadius()+e.offset.y,left:-e.getRadius()-e.offset.x,right:n.width+e.getRadius()+e.offset.x,top:-e.getRadius()-e.offset.y},r=e.getRadius(),l=Pt(e.position,r);i===t.OutModeDirection.right&&l.left>n.width+e.offset.x?(e.position.x=o.left,e.initialPosition.x=e.position.x,s||(e.position.y=A()*n.height,e.initialPosition.y=e.position.y),e.justWarped=!0):i===t.OutModeDirection.left&&l.right<-e.offset.x&&(e.position.x=o.right,e.initialPosition.x=e.position.x,s||(e.position.y=A()*n.height,e.initialPosition.y=e.position.y),e.justWarped=!0),i===t.OutModeDirection.bottom&&l.top>n.height+e.offset.y?(s||(e.position.x=A()*n.width,e.initialPosition.x=e.position.x),e.position.y=o.top,e.initialPosition.y=e.position.y,e.justWarped=!0):i===t.OutModeDirection.top&&l.bottom<-e.offset.y&&(s||(e.position.x=A()*n.width,e.initialPosition.x=e.position.x),e.position.y=o.bottom,e.initialPosition.y=e.position.y,e.justWarped=!0);break}}}}}class Ei{updaters;#u;constructor(t){this.#u=t,this.updaters=new Map}init(e){this.#v(e,t.OutMode.bounce,t=>new Di(t)),this.#v(e,t.OutMode.out,t=>new Ti(t)),this.#v(e,t.OutMode.destroy,t=>new ki(t)),this.#v(e,t.OutMode.none,t=>new _i(t))}isEnabled(t){return!t.destroyed&&!t.spawning}update(e,i){const s=e.options.move.outModes;e.justWarped=!1,this.#P(e,i,s.bottom??s.default,t.OutModeDirection.bottom),this.#P(e,i,s.left??s.default,t.OutModeDirection.left),this.#P(e,i,s.right??s.default,t.OutModeDirection.right),this.#P(e,i,s.top??s.default,t.OutModeDirection.top)}#v=(t,e,i)=>{const s=t.options.move.outModes;!this.updaters.has(e)&&((t,e)=>t.default===e||t.bottom===e||t.left===e||t.right===e||t.top===e)(s,e)&&this.updaters.set(e,i(this.#u))};#P=(t,e,i,s)=>{for(const n of this.updaters.values())n.update(t,s,e,i)}}async function Ai(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("outModes",t=>Promise.resolve(new Ei(t)))})}class Fi{#u;#p;constructor(t,e){this.#u=e,this.#p=t}init(t){const e=this.#u,i=t.options,s=Mt(i.paint,t.id,i.reduceDuplicates),n=s?.color,a=n??void 0,o=s?.fill,r=s?.stroke;if(o){const i=ie.create(void 0===a?void 0:ie.create(void 0,a),o.color);t.fillEnabled=o.enable,t.fillOpacity=G(o.opacity),t.fillAnimation=i.animation;const s=Ne(this.#p,i);s&&(t.fillColor=si(s,t.fillAnimation,e.retina.reduceFactor))}else t.fillEnabled=!1,t.fillAnimation=void 0,t.fillColor=void 0,t.fillOpacity=1;if(r){const i=ie.create(void 0===a?void 0:ie.create(void 0,a),r.color);t.strokeWidth=G(r.width)*e.retina.pixelRatio,t.strokeOpacity=G(r.opacity??1),t.strokeAnimation=i.animation;const s=Ne(this.#p,i)??t.getFillColor();s&&(t.strokeColor=si(s,t.strokeAnimation,e.retina.reduceFactor))}else t.strokeAnimation=void 0,t.strokeColor=void 0,t.strokeOpacity=1,t.strokeWidth=0}isEnabled(t){const{fillAnimation:e,fillColor:i,strokeAnimation:s,strokeColor:n}=t,a=!!e&&(void 0!==i?.h.value&&i.h.enable||void 0!==i?.s.value&&i.s.enable||void 0!==i?.l.value&&i.l.enable),o=!!s&&(void 0!==n?.h.value&&n.h.enable||void 0!==n?.s.value&&n.s.enable||void 0!==n?.l.value&&n.l.enable);return!t.destroyed&&!t.spawning&&(a||o)}update(t,e){this.isEnabled(t)&&(oi(t.fillColor,e),oi(t.strokeColor,e))}}async function Li(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("paint",e=>Promise.resolve(new Fi(t.pluginManager,e)))})}var Bi;!function(t){t[t.r=1]="r",t[t.g=2]="g",t[t.b=3]="b",t[t.a=5]="a"}(Bi||(Bi={}));const Vi=/rgba?\(\s*(\d{1,3})\s*[\s,]\s*(\d{1,3})\s*[\s,]\s*(\d{1,3})\s*([\s,]\s*(0|1|0?\.\d+|(\d{1,3})%)\s*)?\)/i;class Ui{accepts(t){return t.startsWith("rgb")}handleColor(t){const e=t.value.rgb??t.value;if("r"in e&&"g"in e&&"b"in e)return e}handleRangeColor(t){const e=t.value.rgb??t.value;if("r"in e&&"g"in e&&"b"in e)return{r:G(e.r),g:G(e.g),b:G(e.b)}}parseString(t){if(!this.accepts(t))return;const e=Vi.exec(t);return e?{a:e.length>4?it(e[Bi.a]):1,b:parseInt(e[Bi.b]??"0",10),g:parseInt(e[Bi.g]??"0",10),r:parseInt(e[Bi.r]??"0",10)}:void 0}}async function $i(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addColorManager("rgb",new Ui)})}class Gi extends Jt{destroy;constructor(){super(),this.destroy=t.DestroyType.none,this.speed=5}load(t){super.load(t),_(t)||void 0!==t.destroy&&(this.destroy=t.destroy)}}class Wi extends pe{animation;constructor(){super(),this.animation=new Gi,this.value=3}load(t){if(super.load(t),_(t))return;const e=t.animation;void 0!==e&&this.animation.load(e)}}class qi{#u;constructor(t){this.#u=t}init(t){const e=this.#u,i=t.options.size;if(!i)return;const s=i.animation;s.enable&&(t.size.velocity=t.retina.sizeAnimationSpeed/a*e.retina.reduceFactor,s.sync||(t.size.velocity*=A()))}isEnabled(t){return!t.destroyed&&!t.spawning&&t.size.enable&&((t.size.maxLoops??0)<=0||(t.size.maxLoops??0)>0&&(t.size.loops??0)<(t.size.maxLoops??0))}loadOptions(t,...e){t.size??=new Wi;for(const i of e)t.size.load(i?.size)}preInit(t){const e=this.#u.retina.pixelRatio,i=t.options.size;i&&(t.size=xt(i,e),t.retina.sizeAnimationSpeed=G(i.animation.speed)*e)}reset(t){t.size.time=0,t.size.loops=0}update(t,e){this.isEnabled(t)&&t.options.size&&St(t,t.size,!0,t.options.size.animation.destroy,e)}}async function Hi(t){t.checkVersion("4.1.1"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("size",t=>Promise.resolve(new qi(t)))})}async function Ni(t){t.checkVersion("4.1.1"),await t.pluginManager.register(async t=>{await Promise.all([di(t),vi(t),Mi(t),$i(t),zi(t),pi(t),Li(t),Ci(t),Ai(t),Hi(t)])})}const ji=globalThis;ji.__tsParticlesInternals=ji.__tsParticlesInternals??{},ji.loadBasic=Ni;function Qi(t,e,i){const s=e[i];void 0!==s&&(t[i]=(t[i]??1)*s)}class Xi{#b;#w;#M;#x;#z;#u;#O;#S;#I;#C;#D;#k;#_;#R;#p;#T;#E;#A={};#F=[void 0,void 0];#L={};constructor(t,e,i){this.#p=t,this.#u=e,this.#w=i,this.#O=null,this.#E=[],this.#T=[],this.#z=[],this.#b=[],this.#M=[],this.#x=[],this.#I=[],this.#C=[],this.#D=[],this.#k=[],this.#R=[],this.#_=[]}get settings(){return this.#S}canvasClear(){this.#u.actualOptions.clear&&this.draw(t=>{Te(t,this.#w.size)})}clear(){let t=!1;for(const e of this.#b)if(t=e.canvasClear?.()??!1,t)break;t||this.canvasClear()}destroy(){this.stop(),this.#E=[],this.#T=[],this.#z=[],this.#b=[],this.#M=[],this.#x=[],this.#I=[],this.#C=[],this.#D=[],this.#k=[],this.#R=[],this.#_=[]}draw(t){const e=this.#O;if(e)return t(e)}drawParticle(t,e){if(t.spawning||t.destroyed)return;const i=t.getRadius();if(i<=0)return;const s=t.getFillColor(),n=t.getStrokeColor();let[a,o]=this.#B(t);if(a??=s,o??=n,!a&&!o)return;const r=this.#u,l=t.options.zIndex,c=1-t.zIndexFactor,{fillOpacity:h,opacity:d,strokeOpacity:u}=t.getOpacity(),p=this.#L,f=this.#A,g=a?ti(a,r.hdr,h*d):void 0,y=o?ti(o,r.hdr,u*d):g;p.a=p.b=p.c=p.d=void 0,f.fill=g,f.stroke=y,this.draw(s=>{for(const i of this.#D)i.drawParticleSetup?.(s,t,e);this.#V(s,t,i,d,f,p),Ee({container:r,context:s,particle:t,delta:e,colorStyles:f,radius:i*c**l.sizeRate,opacity:d,transform:p}),this.#U(t);for(const i of this.#C)i.drawParticleCleanup?.(s,t,e)})}drawParticlePlugins(t,e){this.draw(i=>{for(const s of this.#I)Ue(i,s,t,e)})}drawParticles(t){const{particles:e}=this.#u;this.clear(),e.update(t),this.draw(i=>{for(const e of this.#R)e.drawSettingsSetup?.(i,t);for(const e of this.#k)e.draw?.(i,t);e.drawParticles(t);for(const e of this.#x)e.clearDraw?.(i,t);for(const e of this.#_)e.drawSettingsCleanup?.(i,t)})}init(){this.initUpdaters(),this.initPlugins(),this.paint()}initPlugins(){this.#z=[],this.#b=[],this.#M=[],this.#x=[],this.#I=[],this.#D=[],this.#C=[],this.#k=[],this.#R=[],this.#_=[];for(const t of this.#u.plugins)(t.particleFillColor??t.particleStrokeColor)&&this.#z.push(t),t.canvasClear&&this.#b.push(t),t.canvasPaint&&this.#M.push(t),t.drawParticle&&this.#I.push(t),t.drawParticleSetup&&this.#D.push(t),t.drawParticleCleanup&&this.#C.push(t),t.draw&&this.#k.push(t),t.drawSettingsSetup&&this.#R.push(t),t.drawSettingsCleanup&&this.#_.push(t),t.clearDraw&&this.#x.push(t)}initUpdaters(){this.#E=[],this.#T=[];for(const t of this.#u.particleUpdaters)t.afterDraw&&this.#T.push(t),(t.getColorStyles??t.getTransformValues??t.beforeDraw)&&this.#E.push(t)}paint(){let t=!1;for(const e of this.#M)if(t=e.canvasPaint?.()??!1,t)break;t||this.paintBase()}paintBase(t){this.draw(e=>{_e(e,this.#w.size,t)})}paintImage(t,e){this.draw(i=>{Re(i,this.#w.size,t,e)})}setContext(t){this.#O=t,this.#O&&(this.#O.globalCompositeOperation=i)}setContextSettings(t){this.#S=t}stop(){this.draw(t=>{Te(t,this.#w.size)})}#U=t=>{for(const e of this.#T)e.afterDraw?.(t)};#V=(t,e,i,s,n,a)=>{for(const o of this.#E){if(o.getColorStyles){const{fill:a,stroke:r}=o.getColorStyles(e,t,i,s);a&&(n.fill=a),r&&(n.stroke=r)}if(o.getTransformValues){const t=o.getTransformValues(e);for(const e in t)Qi(a,t,e)}o.beforeDraw?.(e)}};#B=t=>{let e,i;for(const s of this.#z)if(!e&&s.particleFillColor&&(e=Ne(this.#p,s.particleFillColor(t))),!i&&s.particleStrokeColor&&(i=Ne(this.#p,s.particleStrokeColor(t))),e&&i)break;return this.#F[0]=e,this.#F[1]=i,this.#F}}const Yi=new WeakMap;function Zi(t,e,i=!1){if(!e)return;const s=t.style,n=new Set;for(let t=0;t<s.length;t++){const e=s.item(t);e&&n.add(e)}for(let t=0;t<e.length;t++){const i=e.item(t);i&&n.add(i)}for(const t of n){const n=e.getPropertyValue(t);n?s.setProperty(t,n,i?"important":""):s.removeProperty(t)}}class Ji{domElement;render;renderCanvas;size;zoom=1;#u;#$;#G;#W;#p;#q;#H;#N;#j;constructor(t,e){this.#p=t,this.#u=e,this.render=new Xi(t,e,this),this.#N={height:0,width:0};const i=e.retina.pixelRatio,s=this.#N;this.size={height:s.height*i,width:s.width*i},this.#$=!1,this.#H=[],this.#q="none"}get#Q(){return this.#u.actualOptions.fullScreen.enable}destroy(){if(this.stop(),this.#$){const t=this.domElement;t?.remove(),this.domElement=void 0,this.renderCanvas=void 0}else this.#X();this.render.destroy(),this.#H=[]}getZoomCenter(){const t=this.#u.retina.pixelRatio,{width:e,height:i}=this.size;return this.#j?this.#j:{x:e*o/t,y:i*o/t}}init(){this.#Y(t=>{t.disconnect()}),this.#G=pt(t=>{for(const e of t)"attributes"===e.type&&"style"===e.attributeName&&this.#Z()}),this.resize(),this.#J(),this.initBackground(),this.#Y(t=>{const e=this.domElement;e&&e instanceof Node&&t.observe(e,{attributes:!0})}),this.initPlugins(),this.render.init()}initBackground(){const t=this.#u,e=t.actualOptions.background,i=this.domElement;if(!i)return;const s=i.style,n=qe(this.#p,e.color);s.backgroundColor=n?Je(n,t.hdr,e.opacity):"",s.backgroundImage=e.image||"",s.backgroundPosition=e.position||"",s.backgroundRepeat=e.repeat||"",s.backgroundSize=e.size||""}initPlugins(){this.#H=[];for(const t of this.#u.plugins)t.resize&&this.#H.push(t)}loadCanvas(t){this.#$&&this.domElement&&this.domElement.remove();const i=this.#u,s=(t=>"undefined"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement)(t)?t:void 0;this.domElement=s,this.#$=!!s&&"true"===s.dataset[e],this.renderCanvas=s?(t=>{const e=Yi.get(t);if(e)return e;if("function"!=typeof t.transferControlToOffscreen)throw new TypeError("OffscreenCanvas is required but not supported by this browser");try{const e=t.transferControlToOffscreen();return Yi.set(t,e),e}catch{throw new TypeError("OffscreenCanvas transfer failed")}})(s):t;const n=this.domElement;n&&(n.ariaHidden="true",this.#W=It(n.style));const a=this.#N,o=this.renderCanvas;n?(a.height=n.offsetHeight,a.width=n.offsetWidth):(a.height=o.height,a.width=o.width);const r=this.#u.retina.pixelRatio,l=this.size;o.height=l.height=a.height*r,o.width=l.width=a.width*r;const c=ut("(color-gamut: p3)");this.render.setContextSettings({alpha:!0,colorSpace:c?.matches&&i.hdr?"display-p3":"srgb",desynchronized:!0,willReadFrequently:!1}),this.render.setContext(o.getContext("2d",this.render.settings)),this.#Y(t=>{t.disconnect()}),i.retina.init(),this.initBackground(),this.#Y(t=>{const e=this.domElement;e&&e instanceof Node&&t.observe(e,{attributes:!0})})}resize(){const t=this.domElement;if(!t)return!1;const e=this.#u,i=this.renderCanvas;if(void 0===i)return!1;const s=e.canvas.#N,n={width:t.offsetWidth,height:t.offsetHeight},a=e.retina.pixelRatio,o={width:n.width*a,height:n.height*a};if(n.height===s.height&&n.width===s.width&&o.height===i.height&&o.width===i.width)return!1;const r={...s};s.height=n.height,s.width=n.width;const l=this.size;return i.width=l.width=o.width,i.height=l.height=o.height,this.#u.started&&e.particles.setResizeFactor({width:s.width/r.width,height:s.height/r.height}),!0}setPointerEvents(t){this.domElement&&(this.#q=t,this.#Z())}setZoom(t,e){this.zoom=t,this.#j=e}stop(){this.#Y(t=>{t.disconnect()}),this.#G=void 0,this.render.stop()}async windowResize(){if(!this.domElement||!this.resize())return;const t=this.#u,e=t.updateActualOptions();t.particles.setDensity(),this.#K(),e&&await t.refresh()}#K=()=>{for(const t of this.#H)t.resize?.()};#J=()=>{const t=this.domElement,e=this.#u.actualOptions;if(t){this.#Q?this.#tt():this.#X();for(const i in e.style){if(!i||!(i in e.style))continue;const s=e.style[i];s&&t.style.setProperty(i,s,"important")}}};#Z=()=>{const t=this.domElement;if(!t)return;this.#Y(t=>{t.disconnect()}),this.#J(),this.initBackground();const e=this.#q;t.style.pointerEvents=e,t.style.setProperty("pointer-events",e),this.#Y(e=>{t instanceof Node&&e.observe(t,{attributes:!0})})};#X=()=>{const t=this.domElement,e=this.#W;t&&e&&Zi(t,e,!0)};#Y=t=>{this.#G&&t(this.#G)};#tt=()=>{const t=this.domElement;t&&Zi(t,Ct(this.#u.actualOptions.fullScreen.zIndex),!0)}}class Ki{#u;#et;#it;#st;constructor(t){this.#u=t,this.#et={visibilityChange:()=>{this.#nt()},resize:()=>{this.#at()}}}addListeners(){this.#ot(!0)}removeListeners(){this.#ot(!1)}#nt=()=>{const t=this.#u;t.actualOptions.pauseOnBlur&&(dt().hidden?(t.pageHidden=!0,t.pause()):(t.pageHidden=!1,t.animationStatus?t.play(!0):t.draw(!0)))};#at=()=>{this.#st&&(clearTimeout(this.#st),this.#st=void 0);const t=async()=>{const t=this.#u.canvas;await t.windowResize()};this.#st=setTimeout(()=>{t()},this.#u.actualOptions.resize.delay*r)};#ot=t=>{const e=this.#et;this.#rt(t),Dt(document,n,e.visibilityChange,t,!1)};#rt=t=>{const e=this.#et,i=this.#u;if(!i.actualOptions.resize.enable)return;if("undefined"==typeof ResizeObserver)return void Dt(globalThis,s,e.resize,t);const n=i.canvas.domElement;this.#it&&!t?(n&&this.#it.unobserve(n),this.#it.disconnect(),this.#it=void 0):!this.#it&&t&&n&&(this.#it=new ResizeObserver(t=>{t.find(t=>t.target===n)&&this.#at()}),this.#it.observe(n))}}function ts(t){if(!ft(t.outMode,t.checkModes))return;const e=2*t.radius;t.coord>t.maxCoord-e?t.setCb(-t.radius):t.coord<e&&t.setCb(t.radius)}class es{backColor;bubble;destroyed;direction;effect;effectClose;effectData;fillColor;fillEnabled;fillOpacity;group;id;ignoresResizeRatio;initialPosition;initialVelocity;isRotating;justWarped;lastPathTime;misplaced;moveCenter;offset;opacity;options;outType;pathRotation;position;randomIndexData;retina;roll;rotation;shape;shapeClose;shapeData;sides;size;slow;spawning;strokeColor;strokeOpacity;strokeWidth;unbreakable;velocity;zIndexFactor;#lt={fillOpacity:1,opacity:1,strokeOpacity:1};#ct=z.origin;#ht={sin:0,cos:0};#dt={a:1,b:0,c:0,d:1};#u;#p;constructor(t,e){this.#p=t,this.#u=e}destroy(e){if(this.unbreakable||this.destroyed)return;this.destroyed=!0,this.bubble.inRange=!1,this.slow.inRange=!1;const i=this.#u,s=this.shape?i.shapeDrawers.get(this.shape):void 0;s?.particleDestroy?.(this);for(const t of i.particleDestroyedPlugins)t.particleDestroyed?.(this,e);for(const t of i.particleUpdaters)t.particleDestroyed?.(this,e);this.#u.dispatchEvent(t.EventType.particleDestroyed,{particle:this})}draw(t){const e=this.#u.canvas.render;e.drawParticlePlugins(this,t),e.drawParticle(this,t)}getAngle(){return this.rotation+(this.pathRotation?this.velocity.angle:0)}getFillColor(){return this.#ut(this.bubble.color??ii(this.fillColor))}getMass(){return this.getRadius()**2*Math.PI*o}getOpacity(){const t=this.options.zIndex,e=(1-this.zIndexFactor)**t.opacityRate,i=this.bubble.opacity??G(this.opacity?.value??1),s=this.fillOpacity??1,n=this.strokeOpacity??1;return this.#lt.fillOpacity=i*s*e,this.#lt.opacity=i*e,this.#lt.strokeOpacity=i*n*e,this.#lt}getPosition(){return this.#ct.x=this.position.x+this.offset.x,this.#ct.y=this.position.y+this.offset.y,this.#ct.z=this.position.z,this.#ct}getRadius(){return this.bubble.radius??this.size.value}getRotateData(){const t=this.getAngle();return this.#ht.sin=Math.sin(t),this.#ht.cos=Math.cos(t),this.#ht}getStrokeColor(){return this.#ut(this.bubble.color??ii(this.strokeColor))}getTransformData(t){const e=this.getRotateData(),i=this.isRotating;return this.#dt.a=e.cos*(t.a??c.a),this.#dt.b=i?e.sin*(t.b??1):t.b??c.b,this.#dt.c=i?-e.sin*(t.c??1):t.c??c.c,this.#dt.d=e.cos*(t.d??c.d),this.#dt}init(e,i,s,n){const a=this.#u;this.id=e,this.group=n,this.justWarped=!1,this.effectClose=!0,this.shapeClose=!0,this.pathRotation=!1,this.lastPathTime=0,this.destroyed=!1,this.unbreakable=!1,this.isRotating=!1,this.rotation=0,this.misplaced=!1,this.retina={maxDistance:{},maxSpeed:0,moveDrift:0,moveSpeed:0,sizeAnimationSpeed:0},this.size={value:1,max:1,min:1,enable:!1},this.outType=t.ParticleOutType.normal,this.ignoresResizeRatio=!0;const o=a.actualOptions,r=De(this.#p,a,o.particles),l=r.reduceDuplicates,c=r.effect.type,d=r.shape.type;this.effect=Mt(c,this.id,l),this.shape=Mt(d,this.id,l);const u=r.effect,p=r.shape;if(s){if(s.effect?.type&&s.effect.type!==this.effect){const t=Mt(s.effect.type,this.id,l);t&&(this.effect=t,u.load(s.effect))}if(s.shape?.type&&s.shape.type!==this.shape){const t=Mt(s.shape.type,this.id,l);t&&(this.shape=t,p.load(s.shape))}}if(this.effect===h){const t=[...this.#u.effectDrawers.keys()];this.effect=t[Math.floor(A()*t.length)]}if(this.shape===h){const t=[...this.#u.shapeDrawers.keys()];this.shape=t[Math.floor(A()*t.length)]}this.effectData=this.effect?function(t,e,i,s){const n=e.options[t];return bt({close:e.close},Mt(n,i,s))}(this.effect,u,this.id,l):void 0,this.shapeData=this.shape?function(t,e,i,s){const n=e.options[t];return bt({close:e.close},Mt(n,i,s))}(this.shape,p,this.id,l):void 0,r.load(s);const f=this.effectData,g=this.shapeData;f&&r.load(f.particles),g&&r.load(g.particles),this.effectClose=f?.close??r.effect.close,this.shapeClose=g?.close??r.shape.close,this.options=r,a.retina.initParticle(this);for(const t of a.particleUpdaters)t.preInit?.(this);let y,m;this.bubble={inRange:!1},this.slow={inRange:!1,factor:1},this.#pt(i),this.initialVelocity=this.#ft(),this.velocity=this.initialVelocity.copy(),this.zIndexFactor=this.position.z/a.zLayers,this.sides=24,this.effect&&(y=a.effectDrawers.get(this.effect)),y?.loadEffect&&y.loadEffect(this),this.shape&&(m=a.shapeDrawers.get(this.shape)),m?.loadShape&&m.loadShape(this);const v=m?.getSidesCount;v&&(this.sides=v(this)),this.spawning=!1;for(const t of a.particleUpdaters)t.init(this);y?.particleInit?.(a,this),m?.particleInit?.(a,this);for(const t of a.particleCreatedPlugins)t.particleCreated?.(this)}isInsideCanvas(t){return this.#gt({direction:t}).inside}isInsideCanvasForOutMode(t,e){return this.#gt({direction:e,outMode:t}).inside}isShowingBack(){if(!this.roll)return!1;const t=this.roll.angle;if(this.roll.horizontal&&this.roll.vertical){const e=t%u,i=e<0?e+u:e;return i>=Math.PI*o&&i<3*Math.PI*o}if(this.roll.horizontal){const e=(t+Math.PI*o)%(2*Math.PI),i=e<0?e+2*Math.PI:e;return i>=Math.PI&&i<2*Math.PI}if(this.roll.vertical){const e=t%(2*Math.PI),i=e<0?e+2*Math.PI:e;return i>=Math.PI&&i<2*Math.PI}return!1}isVisible(){return!this.destroyed&&!this.spawning&&this.isInsideCanvas()}reset(){for(const t of this.#u.particleUpdaters)t.reset?.(this)}#yt=(t,e)=>{let i=0,s=t?z.create(t.x,t.y,e):void 0;const n=this.#u,a=n.particlePositionPlugins,o=this.options.move.outModes,r=this.getRadius(),l=n.canvas.size,c=new AbortController,{signal:h}=c;for(;!h.aborted;){for(const t of a){const i=t.particlePosition?.(s,this);if(i)return z.create(i.x,i.y,e)}const t=et({size:l,position:s}),c=z.create(t.x,t.y,e);this.#mt(c,r,o.left??o.default),this.#mt(c,r,o.right??o.default),this.#vt(c,r,o.top??o.default),this.#vt(c,r,o.bottom??o.default);let h=!0;for(const t of n.particles.checkParticlePositionPlugins)if(h=t.checkParticlePosition?.(this,c,i)??!0,!h)break;if(h)return c;i+=1,s=void 0}return s};#ft=()=>{const e=this.options.move,i=J(this.direction).copy();if(e.direction===t.MoveDirection.inside||e.direction===t.MoveDirection.outside)return i;const s=Y(G(e.angle.value)),n=Y(G(e.angle.offset)),a={left:n-s*o,right:n+s*o};return e.straight||(i.angle+=$(H(a.left,a.right))),e.random&&"number"==typeof e.speed&&(i.length*=A()),i};#mt=(e,i,s)=>{ts({outMode:s,checkModes:[t.OutMode.bounce],coord:e.x,maxCoord:this.#u.canvas.size.width,setCb:t=>e.x+=t,radius:i})};#vt=(e,i,s)=>{ts({outMode:s,checkModes:[t.OutMode.bounce],coord:e.y,maxCoord:this.#u.canvas.size.height,setCb:t=>e.y+=t,radius:i})};#Pt=(e,i)=>{const s=this.getRadius(),n=this.#u.canvas.size,a=this.position,o=i===t.OutMode.bounce;return e===t.OutModeDirection.bottom?{inside:o?a.y+s<n.height:a.y-s<n.height,reason:"default"}:e===t.OutModeDirection.left?{inside:o?a.x-s>0:a.x+s>0,reason:"default"}:e===t.OutModeDirection.right?{inside:o?a.x+s<n.width:a.x-s<n.width,reason:"default"}:e===t.OutModeDirection.top?{inside:o?a.y-s>0:a.y+s>0,reason:"default"}:{inside:a.x>=-s&&a.y>=-s&&a.y<=n.height+s&&a.x<=n.width+s,reason:"default"}};#bt=(t,e)=>({canvasSize:this.#u.canvas.size,direction:t,outMode:e,particle:this,radius:this.getRadius()});#gt=t=>{const e=this.#Pt(t.direction,t.outMode),i=this.#u,s=this.shape?i.shapeDrawers.get(this.shape):void 0,n=this.effect?i.effectDrawers.get(this.effect):void 0,a=s?.isInsideCanvas,o=n?.isInsideCanvas;if(!a&&!o)return e;const r=this.#bt(t.direction,t.outMode),l=a?this.#wt(a(r),"shape"):void 0,c=o?this.#wt(o(r),"effect"):void 0;if(l&&c){const t=Math.max(l.margin??0,c.margin??0);return{inside:l.inside&&c.inside,margin:t>0?t:void 0,reason:"combined"}}return l??c??e};#ut=t=>t&&this.roll&&(this.backColor||this.roll.alter)&&this.isShowingBack()?this.backColor?this.backColor:this.roll.alter?ri(t,this.roll.alter.type,this.roll.alter.value):t:t;#pt=e=>{const i=this.#u,s=Math.floor(G(this.options.zIndex.value)),n=this.#yt(e,V(s,0,i.zLayers));if(!n)throw new Error("a valid position cannot be found for particle");this.position=n,this.initialPosition=this.position.copy();const a=i.canvas.size;switch(this.moveCenter={...Ot(this.options.move.center,a),radius:this.options.move.center.radius,mode:this.options.move.center.mode},this.direction=Z(this.options.move.direction,this.position,this.moveCenter),this.options.move.direction){case t.MoveDirection.inside:this.outType=t.ParticleOutType.inside;break;case t.MoveDirection.outside:this.outType=t.ParticleOutType.outside}this.offset=O.origin};#wt=(t,e)=>"boolean"==typeof t?{inside:t,reason:e}:{inside:t.inside,margin:t.margin,reason:t.reason??e}}class is{#Mt;#xt=new Map;#zt=[];#Ot;#St;#It=[];#Ct;constructor(t){this.#Mt=t,this.#Ot=0,this.#Ct=0}clear(){this.#xt.clear();const t=this.#St;t&&(this.#Mt=t),this.#St=void 0}insert(t){const{x:e,y:i}=t.getPosition(),s=this.#Dt(e,i);this.#xt.has(s)||this.#xt.set(s,[]),this.#xt.get(s)?.push(t)}query(t,e,i=[]){const s=this.#kt(t);if(!s)return i;const n=Math.floor(s.minX/this.#Mt),a=Math.floor(s.maxX/this.#Mt),o=Math.floor(s.minY/this.#Mt),r=Math.floor(s.maxY/this.#Mt);for(let s=n;s<=a;s++)for(let n=o;n<=r;n++){const a=`${s}_${n}`,o=this.#xt.get(a);if(o)for(const s of o)e&&!e(s)||t.contains(s.getPosition())&&i.push(s)}return i}queryCircle(t,e,i,s=[]){const n=this.#_t(t.x,t.y,e),a=this.query(n,i,s);return this.#Rt(),a}queryRectangle(t,e,i,s=[]){const n=this.#Tt(t.x,t.y,e.width,e.height),a=this.query(n,i,s);return this.#Rt(),a}setCellSize(t){this.#St=t}#_t(t,e,i){return(this.#zt[this.#Ot++]??=new Xt(t,e,i)).reset(t,e,i)}#Tt(t,e,i,s){return(this.#It[this.#Ct++]??=new Yt(t,e,i,s)).reset(t,e,i,s)}#Dt(t,e){return`${Math.floor(t/this.#Mt)}_${Math.floor(e/this.#Mt)}`}#kt(t){if(t instanceof Xt){const e=t.radius,{x:i,y:s}=t.position;return{minX:i-e,maxX:i+e,minY:s-e,maxY:s+e}}if(t instanceof Yt){const{x:e,y:i}=t.position,{width:s,height:n}=t.size;return{minX:e,maxX:e+s,minY:i,maxY:i+n}}return null}#Rt(){this.#Ot=0,this.#Ct=0}}class ss{checkParticlePositionPlugins;grid;#Et;#u;#At;#Ft;#Lt;#Bt;#Vt;#Ut;#p;#$t;#Gt;#Wt;#qt;#Ht;#Nt;constructor(t,e){this.#p=t,this.#u=e,this.#Lt=0,this.#Et=[],this.#$t=[],this.#Ft=0,this.#At=new Map,this.#Bt=new Map,this.#Nt=this.#jt(this.#u.zLayers),this.grid=new is(100),this.checkParticlePositionPlugins=[],this.#Vt=[],this.#Ut=[],this.#Wt=[],this.#Gt=[],this.#Ht=[]}get count(){return this.#Et.length}addParticle(e,i,s,n){const a=this.#u.actualOptions.particles.number.limit.mode,o=void 0===s?this.#Ft:this.#At.get(s)??this.#Ft,r=this.count;if(o>0)switch(a){case t.LimitMode.delete:{const t=r+1-o;t>0&&this.removeQuantity(t);break}case t.LimitMode.wait:if(r>=o)return}try{const a=this.#$t.pop()??new es(this.#p,this.#u);a.init(this.#Lt,e,i,s);let o=!0;return n&&(o=n(a)),o?(this.#Et.push(a),this.#Qt(a),this.#Lt++,this.#u.dispatchEvent(t.EventType.particleAdded,{particle:a}),a):void this.#$t.push(a)}catch(t){Lt().warning(`error adding particle: ${t}`)}}clear(){this.#Et=[],this.#Bt.clear(),this.#Xt(this.#u.zLayers)}destroy(){this.#Et=[],this.#$t.length=0,this.#Bt.clear(),this.#Nt=[],this.checkParticlePositionPlugins=[],this.#Vt=[],this.#Ut=[],this.#Wt=[],this.#Gt=[],this.#Ht=[]}drawParticles(t){for(let e=this.#Nt.length-1;e>=0;e--){const i=this.#Nt[e];if(i)for(const e of i)e.draw(t)}}filter(t){return this.#Et.filter(t)}find(t){return this.#Et.find(t)}get(t){return this.#Et[t]}async init(){const t=this.#u,e=t.actualOptions;this.checkParticlePositionPlugins=[],this.#Ht=[],this.#Ut=[],this.#Wt=[],this.#Vt=[],this.#Gt=[],this.#Bt.clear(),this.#Xt(t.zLayers),this.grid=new is(100*t.retina.pixelRatio);for(const e of t.plugins)e.redrawInit&&await e.redrawInit(),e.checkParticlePosition&&this.checkParticlePositionPlugins.push(e),e.update&&this.#Ht.push(e),e.particleUpdate&&this.#Ut.push(e),e.postUpdate&&this.#Wt.push(e),e.particleReset&&this.#Vt.push(e),e.postParticleUpdate&&this.#Gt.push(e);await this.#u.initDrawersAndUpdaters();for(const e of this.#u.effectDrawers.values())await(e.init?.(t));for(const e of this.#u.shapeDrawers.values())await(e.init?.(t));let i=!1;for(const e of t.plugins)if(i=e.particlesInitialization?.()??i,i)break;if(!i){const t=e.particles,i=t.groups;for(const e in i){const s=i[e];if(s)for(let i=this.count,n=0;n<s.number.value&&i<t.number.value;i++,n++)this.addParticle(void 0,s,e)}for(let e=this.count;e<t.number.value;e++)this.addParticle()}}push(t,e,i,s){for(let n=0;n<t;n++)this.addParticle(e,i,s)}async redraw(){this.clear(),await this.init(),this.#u.canvas.render.drawParticles({value:0,factor:0})}remove(t,e,i){this.removeAt(this.#Et.indexOf(t),void 0,e,i)}removeAt(t,e=1,i,s){if(t<0||t>this.count)return;let n=0;for(let a=t;n<e&&a<this.count;a++)this.#Yt(a,i,s)&&(a--,n++)}removeQuantity(t,e){this.removeAt(0,t,e)}setDensity(){const t=this.#u.actualOptions,e=t.particles.groups;let i=0;for(const t of this.#u.plugins)t.particlesDensityCount&&(i+=t.particlesDensityCount());for(const t in e){const s=e[t];if(!s)continue;const n=De(this.#p,this.#u,s);this.#Zt(n,i,t)}this.#Zt(t.particles,i)}setResizeFactor(t){this.#qt=t}update(t){this.grid.clear();for(const e of this.#Ht)e.update?.(t);const e=this.#Jt(t);for(const e of this.#Wt)e.postUpdate?.(t);if(this.#Kt(t,e),e.size)for(const t of e)this.remove(t);this.#qt=void 0}#te=(...t)=>{this.#$t.push(...t)};#Zt=(t,e,i,s)=>{const n=t.number;if(!n.density.enable)return void(void 0===i?this.#Ft=n.limit.value:(s?.number.limit.value??n.limit.value)&&this.#At.set(i,s?.number.limit.value??n.limit.value));const a=this.#ee(n.density),o=n.value,r=n.limit.value>0?n.limit.value:o,l=Math.min(o,r)*a+e,c=Math.min(this.count,this.filter(t=>t.group===i).length);void 0===i?this.#Ft=n.limit.value*a:this.#At.set(i,n.limit.value*a),c<l?this.push(Math.abs(l-c),void 0,t,i):c>l&&this.removeQuantity(c-l,i)};#jt=t=>{const e=Math.max(Math.floor(t),1);return Array.from({length:e},()=>[])};#ie=t=>{const e=this.#Nt.length-1;return e<=0?0:Math.min(Math.max(Math.floor(t),0),e)};#se=(t,e)=>{let i=0,s=t.length;for(;i<s;){const n=Math.floor((i+s)/2),a=t[n];a?a.id<e?i=n+1:s=n:s=n}return i};#ee=t=>{const e=this.#u;if(!t.enable)return 1;const i=e.canvas.size,s=e.retina.pixelRatio;return i.width&&i.height?i.width*i.height/(t.height*t.width*s**2):1};#Qt=t=>{const e=this.#ie(t.position.z),i=this.#Nt[e];i&&(i.splice(this.#se(i,t.id),0,t),this.#Bt.set(t.id,e))};#Yt=(e,i,s)=>{const n=this.#Et[e];return!!n&&(n.group===i&&(this.#Et.splice(e,1),this.#ne(n),n.destroy(s),this.#u.dispatchEvent(t.EventType.particleRemoved,{particle:n}),this.#te(n),!0))};#ne=t=>{const e=this.#Bt.get(t.id)??this.#ie(t.position.z),i=this.#Nt[e];if(!i)return void this.#Bt.delete(t.id);const s=this.#se(i,t.id);i[s]?.id===t.id?(i.splice(s,1),this.#Bt.delete(t.id)):this.#Bt.delete(t.id)};#Xt=t=>{const e=Math.max(Math.floor(t),1);if(this.#Nt.length===e)for(const t of this.#Nt)t.length=0;else this.#Nt=this.#jt(e)};#ae=t=>{const e=this.#ie(t.position.z),i=this.#Bt.get(t.id);if(void 0===i)return void this.#Qt(t);if(i===e)return;const s=this.#Nt[i];if(s){const e=this.#se(s,t.id);s[e]?.id===t.id&&s.splice(e,1)}const n=this.#Nt[e];n?(n.splice(this.#se(n,t.id),0,t),this.#Bt.set(t.id,e)):this.#Bt.set(t.id,e)};#Jt=t=>{const e=new Set,i=this.#qt;for(const s of this.#Et){i&&!s.ignoresResizeRatio&&(s.position.x*=i.width,s.position.y*=i.height,s.initialPosition.x*=i.width,s.initialPosition.y*=i.height),s.ignoresResizeRatio=!1;for(const t of this.#Vt)t.particleReset?.(s);for(const e of this.#Ut){if(s.destroyed)break;e.particleUpdate?.(s,t)}s.destroyed?e.add(s):this.grid.insert(s)}return e};#Kt=(t,e)=>{for(const i of this.#Et)if(i.destroyed)e.add(i);else{for(const e of this.#u.particleUpdaters)e.update(i,t);if(!i.spawning)for(const e of this.#Gt)e.postParticleUpdate?.(i,t);this.#ae(i)}}}class ns{pixelRatio;reduceFactor;#u;constructor(t){this.#u=t,this.pixelRatio=1,this.reduceFactor=1}init(){const t=this.#u,e=t.actualOptions;this.pixelRatio=e.detectRetina?devicePixelRatio:1,this.reduceFactor=1;const i=this.pixelRatio,s=t.canvas,n=s.domElement;n&&(s.size.width=n.offsetWidth*i,s.size.height=n.offsetHeight*i)}initParticle(t){const e=t.options,i=this.pixelRatio,s=e.move,n=s.distance,a=t.retina;a.maxSpeed=G(s.gravity.maxSpeed)*i,a.moveDrift=G(s.drift)*i,a.moveSpeed=G(s.speed)*i;const o=a.maxDistance;o.horizontal=void 0===n.horizontal?void 0:n.horizontal*i,o.vertical=void 0===n.vertical?void 0:n.vertical*i}}function as(t){return!t.destroyed}function os(t,e,...i){const s=new ke(t,e);return Ce(s,...i),s}var rs=Object.freeze({__proto__:null,Container:class{actualOptions;canvas;destroyed;effectDrawers;fpsLimit;hdr;id;pageHidden;particleCreatedPlugins;particleDestroyedPlugins;particlePositionPlugins;particleUpdaters;particles;plugins;retina;shapeDrawers;started;zLayers;#oe;#re;#le={value:0,factor:0};#ce;#he;#de;#ue;#pe;#fe;#ge;#ye;#me;#ve;#Pe;#p;#be;#we;constructor(e){const{dispatchCallback:i,pluginManager:s,id:n,onDestroy:a,sourceOptions:o}=e;this.#p=s,this.#ce=i,this.#me=a,this.id=Symbol(n),this.fpsLimit=120,this.hdr=!1,this.#be=!1,this.#oe=0,this.#de=0,this.#ye=0,this.#pe=!0,this.started=!1,this.destroyed=!1,this.#Pe=!0,this.#ge=0,this.zLayers=100,this.pageHidden=!1,this.#we=o,this.#fe=o,this.effectDrawers=new Map,this.shapeDrawers=new Map,this.particleUpdaters=[],this.retina=new ns(this),this.canvas=new Ji(this.#p,this),this.particles=new ss(this.#p,this),this.plugins=[],this.particleDestroyedPlugins=[],this.particleCreatedPlugins=[],this.particlePositionPlugins=[],this.#ve=os(this.#p,this),this.actualOptions=os(this.#p,this),this.#ue=new Ki(this),this.dispatchEvent(t.EventType.containerBuilt)}get animationStatus(){return!this.#Pe&&!this.pageHidden&&as(this)}get options(){return this.#ve}get sourceOptions(){return this.#we}addLifeTime(t){this.#ye+=t}alive(){return!this.#de||this.#ye<=this.#de}destroy(e=!0){if(as(this)){this.stop(),this.particles.destroy(),this.canvas.destroy();for(const[,t]of this.effectDrawers)t.destroy?.(this);for(const[,t]of this.shapeDrawers)t.destroy?.(this);for(const t of this.plugins)t.destroy?.();this.effectDrawers=new Map,this.shapeDrawers=new Map,this.particleUpdaters=[],this.plugins.length=0,this.#p.clearPlugins(this),this.destroyed=!0,this.#me(e),this.dispatchEvent(t.EventType.containerDestroyed)}}dispatchEvent(t,e){this.#ce(t,{container:this,data:e})}draw(t){if(!as(this))return;let e=t;this.#he=L(t=>{e&&(this.#ge=void 0,e=!1),this.#Me(t)})}async export(t,e={}){for(const i of this.plugins){if(!i.export)continue;const s=await i.export(t,e);if(s.supported)return s.blob}Lt().error(`Export plugin with type ${t} not found`)}async init(){if(!as(this))return;const e=new Map;for(const t of this.#p.plugins){const i=await t.getPlugin(this);i.preInit&&await i.preInit(),e.set(t,i)}await this.initDrawersAndUpdaters(),this.#ve=os(this.#p,this,this.#fe,this.sourceOptions),this.actualOptions=os(this.#p,this,this.#ve),this.plugins.length=0,this.particleDestroyedPlugins.length=0,this.particleCreatedPlugins.length=0,this.particlePositionPlugins.length=0;for(const[t,i]of e)t.needsPlugin(this.actualOptions)&&(this.plugins.push(i),i.particleCreated&&this.particleCreatedPlugins.push(i),i.particleDestroyed&&this.particleDestroyedPlugins.push(i),i.particlePosition&&this.particlePositionPlugins.push(i));this.retina.init(),this.canvas.init(),this.updateActualOptions(),this.canvas.initBackground(),this.canvas.resize();const{delay:i,duration:s,fpsLimit:n,hdr:a,smooth:o,zLayers:l}=this.actualOptions;this.hdr=a,this.zLayers=l,this.#de=G(s)*r,this.#oe=G(i)*r,this.#ye=0,this.fpsLimit=n>0?n:120,this.#be=o;for(const t of this.plugins)await(t.init?.());await this.particles.init(),this.dispatchEvent(t.EventType.containerInit),this.particles.setDensity();for(const t of this.plugins)t.particlesSetup?.();this.dispatchEvent(t.EventType.particlesSetup)}async initDrawersAndUpdaters(){const t=this.#p;this.effectDrawers=await t.getEffectDrawers(this,!0),this.shapeDrawers=await t.getShapeDrawers(this,!0),this.particleUpdaters=await t.getUpdaters(this,!0)}pause(){if(as(this)&&(void 0!==this.#he&&(B(this.#he),this.#he=void 0),!this.#Pe)){for(const t of this.plugins)t.pause?.();this.pageHidden||(this.#Pe=!0),this.dispatchEvent(t.EventType.containerPaused)}}play(e){if(!as(this))return;const i=this.#Pe||e;if(!this.#pe||this.actualOptions.autoPlay){if(this.#Pe&&(this.#Pe=!1),i)for(const t of this.plugins)t.play&&t.play();this.dispatchEvent(t.EventType.containerPlay),this.draw(i??!1)}else this.#pe=!1}async refresh(){if(as(this))return this.stop(),this.start()}async reset(t){if(as(this))return this.#fe=t,this.#we=t,this.#ve=os(this.#p,this,this.#fe,this.sourceOptions),this.actualOptions=os(this.#p,this,this.#ve),this.refresh()}async start(){as(this)&&!this.started&&(await this.init(),this.started=!0,await new Promise(e=>{const i=async()=>{this.#ue.addListeners();for(const t of this.plugins)await(t.start?.());this.dispatchEvent(t.EventType.containerStarted),this.play(),e()};this.#re=setTimeout(()=>{i()},this.#oe)}))}stop(){if(as(this)&&this.started){this.#re&&(clearTimeout(this.#re),this.#re=void 0),this.#pe=!0,this.started=!1,this.#ue.removeListeners(),this.pause(),this.particles.clear(),this.canvas.stop();for(const t of this.plugins)t.stop?.();this.particleCreatedPlugins.length=0,this.particleDestroyedPlugins.length=0,this.particlePositionPlugins.length=0,this.#we=this.#ve,this.dispatchEvent(t.EventType.containerStopped)}}updateActualOptions(){let t=!1;for(const e of this.plugins)e.updateActualOptions&&(t=e.updateActualOptions()||t);return t}#Me=t=>{try{if(!this.#be&&void 0!==this.#ge&&t<this.#ge+r/this.fpsLimit)return void this.draw(!1);if(this.#ge??=t,function(t,e,i=60,s=!1){t.value=e,t.factor=s?60/i:60*e/r}(this.#le,t-this.#ge,this.fpsLimit,this.#be),this.addLifeTime(this.#le.value),this.#ge=t,this.#le.value>r)return void this.draw(!1);if(this.canvas.render.drawParticles(this.#le),!this.alive())return void this.destroy();this.animationStatus&&this.draw(!1)}catch(t){Lt().error("error in animation loop",t)}}}});var ls=Object.freeze({__proto__:null,BlendPluginInstance:class{#u;#xe;constructor(t){this.#u=t}drawParticleCleanup(t,e){e.options.blend?.enable&&(t.globalCompositeOperation=e.originalBlendMode??i,e.originalBlendMode=void 0)}drawParticleSetup(t,e){e.options.blend?.enable&&(e.originalBlendMode=t.globalCompositeOperation,t.globalCompositeOperation=e.options.blend.mode)}drawSettingsCleanup(t){this.#xe&&(t.globalCompositeOperation=this.#xe)}drawSettingsSetup(t){const e=t.globalCompositeOperation,i=this.#u.actualOptions.blend;this.#xe=e,t.globalCompositeOperation=i?.enable?i.mode:e}}});function cs(t,e,i,s,n,a,o){!function(t,e){const i=t.options,s=i.move.path;if(!s.enable)return;const n=t.pathDelay??0;if(t.lastPathTime<=n)return void(t.lastPathTime+=e.value);const a=t.pathGenerator?.generate(t,e);a&&t.velocity.addTo(a);s.clamp&&(t.velocity.x=V(t.velocity.x,-1,1),t.velocity.y=V(t.velocity.y,-1,1));t.lastPathTime-=n}(t,o);const r=t.gravity,l=r?.enable&&r.inverse?-1:1;n&&i&&(t.velocity.x+=n*o.factor/(60*i)),r?.enable&&i&&(t.velocity.y+=l*(r.acceleration*o.factor)/(60*i));const c=t.moveDecay;t.velocity.multTo(c??1);const h=t.velocity.mult(i);r?.enable&&s>0&&(!r.inverse&&h.y>=0&&h.y>=s||r.inverse&&h.y<=0&&h.y<=-s)&&(h.y=l*s,i&&(t.velocity.y=h.y/i));const d=t.options.zIndex,u=(1-t.zIndexFactor)**d.velocityRate;h.multTo(u),h.multTo(a);const{position:p}=t;p.addTo(h),e.vibrate&&(p.x+=Math.sin(p.x*Math.cos(p.y))*a,p.y+=Math.cos(p.y*Math.sin(p.x))*a)}var hs=Object.freeze({__proto__:null,MovePluginInstance:class{availablePathGenerators;pathGenerators;#u;#p;constructor(t,e){this.#p=t,this.#u=e,this.availablePathGenerators=new Map,this.pathGenerators=new Map}destroy(){this.availablePathGenerators=new Map,this.pathGenerators=new Map}isEnabled(t){return!t.destroyed&&t.options.move.enable}particleCreated(e){const i=e.options.move,s=i.gravity,n=i.path;if(e.moveDecay=1-G(i.decay),e.pathDelay=G(n.delay.value)*r,n.generator){let t=this.pathGenerators.get(n.generator);t||(t=this.availablePathGenerators.get(n.generator),t&&(this.pathGenerators.set(n.generator,t),t.init())),e.pathGenerator=t}e.gravity={enable:s.enable,acceleration:G(s.acceleration),inverse:s.inverse},function(e,i){const s=i.options.move.spin;if(!s.enable)return;const n=s.position??{x:50,y:50},a={x:.01*n.x*e.canvas.size.width,y:.01*n.y*e.canvas.size.height},o=Q(i.getPosition(),a),r=G(s.acceleration);i.retina.spinAcceleration=r*e.retina.pixelRatio,i.spin={center:a,direction:i.velocity.x>=0?t.RotateDirection.clockwise:t.RotateDirection.counterClockwise,angle:A()*u,radius:o,acceleration:i.retina.spinAcceleration}}(this.#u,e)}particleDestroyed(t){const e=t.pathGenerator;e?.reset(t)}particleUpdate(e,i){const s=e.options.move;if(!s.enable)return;const n=this.#u,a=function(t){return t.slow.inRange?t.slow.factor:1}(e),r=n.retina.reduceFactor,l=e.retina.moveSpeed,c=e.retina.moveDrift,h=e.size.max,d=l*(s.size?e.getRadius()/h:1)*a*(i.factor||1)*o,u=e.retina.maxSpeed;s.spin.enable?function(e,i,s,n){if(!i.spin)return;const a=i.spin.direction===t.RotateDirection.clockwise,r={x:a?Math.cos:Math.sin,y:a?Math.sin:Math.cos};i.position.x=i.spin.center.x+i.spin.radius*r.x(i.spin.angle)*n,i.position.y=i.spin.center.y+i.spin.radius*r.y(i.spin.angle)*n,i.spin.radius+=i.spin.acceleration*n;const l=Math.max(e.canvas.size.width,e.canvas.size.height),c=l*o;i.spin.radius>c?(i.spin.radius=c,i.spin.acceleration*=-1):i.spin.radius<0&&(i.spin.radius=0,i.spin.acceleration*=-1),i.spin.angle+=.01*s*(1-i.spin.radius/l)}(n,e,d,r):cs(e,s,d,u,c,r,i),function(t){const e=t.initialPosition,{dx:i,dy:s}=N(e,t.position),n=Math.abs(i),a=Math.abs(s),{maxDistance:r}=t.retina,l=r.horizontal,c=r.vertical;if(!l&&!c)return;if((l&&n>=l||c&&a>=c)&&!t.misplaced)t.misplaced=!!l&&n>l||!!c&&a>c,l&&(t.velocity.x=t.velocity.y*o-t.velocity.x),c&&(t.velocity.y=t.velocity.x*o-t.velocity.y);else if((!l||n<l)&&(!c||a<c)&&t.misplaced)t.misplaced=!1;else if(t.misplaced){const i=t.position,s=t.velocity;l&&(i.x<e.x&&s.x<0||i.x>e.x&&s.x>0)&&(s.x*=-A()),c&&(i.y<e.y&&s.y<0||i.y>e.y&&s.y>0)&&(s.y*=-A())}}(e)}preInit(){return this.#ze()}redrawInit(){return this.#ze()}update(){for(const t of this.pathGenerators.values())t.update()}async#ze(){const t=await(this.#p.getPathGenerators?.(this.#u,!0));if(t){this.availablePathGenerators=t,this.pathGenerators=new Map;for(const t of this.pathGenerators.values())t.init()}}}});t.AnimatableColor=ie,t.AnimationOptions=Zt,t.AnimationValueWithRandom=ue,t.Background=se,t.BaseRange=Qt,t.Circle=Xt,t.ColorAnimation=Kt,t.Fill=re,t.FullScreen=ne,t.HslAnimation=te,t.Move=me,t.MoveAngle=le,t.MoveCenter=ce,t.MoveGravity=he,t.MovePath=fe,t.Options=ke,t.OptionsColor=ee,t.OutModes=ge,t.Paint=Pe,t.ParticlesBounce=we,t.ParticlesBounceFactor=be,t.ParticlesDensity=Me,t.ParticlesNumber=ze,t.ParticlesNumberLimit=xe,t.ParticlesOptions=Ie,t.RangedAnimationOptions=Jt,t.RangedAnimationValueWithRandom=pe,t.Rectangle=Yt,t.ResizeEvent=ae,t.Shape=Oe,t.Spin=ye,t.Stroke=ve,t.ValueWithRandom=de,t.Vector=O,t.Vector3d=z,t.ZIndex=Se,t.alterHsl=ri,t.animate=L,t.areBoundsInside=vt,t.arrayRandomIndex=gt,t.calcExactPositionOrRandomFromSize=et,t.calcExactPositionOrRandomFromSizeRanged=function(t){const e={x:void 0!==t.position?.x?G(t.position.x):void 0,y:void 0!==t.position?.y?G(t.position.y):void 0};return et({size:t.size,position:e})},t.calcPositionFromSize=function(t){return void 0!==t.position?.x&&void 0!==t.position.y?{x:t.position.x*t.size.width/a,y:t.position.y*t.size.height/a}:void 0},t.calcPositionOrRandomFromSize=tt,t.calcPositionOrRandomFromSizeRanged=function(t){const e={x:void 0!==t.position?.x?G(t.position.x):void 0,y:void 0!==t.position?.y?G(t.position.y):void 0};return tt({size:t.size,position:e})},t.calculateBounds=Pt,t.cancelAnimation=B,t.canvasFirstIndex=0,t.canvasTag=g,t.checkDistance=X,t.circleBounce=function(t,e){const{x:i,y:s}=t.velocity.sub(e.velocity),[n,a]=[t.position,e.position],{dx:o,dy:r}=N(a,n);if(i*o+s*r<0)return;const l=-Math.atan2(r,o),c=t.mass,h=e.mass,d=t.velocity.rotate(l),u=e.velocity.rotate(l),p=K(d,u,c,h),f=K(u,d,c,h),g=p.rotate(-l),y=f.rotate(-l);t.velocity.x=g.x*t.factor.x,t.velocity.y=g.y*t.factor.y,e.velocity.x=y.x*e.factor.x,e.velocity.y=y.y*e.factor.y},t.circleBounceDataFromParticle=function(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:O.create(G(t.options.bounce.horizontal.value),G(t.options.bounce.vertical.value))}},t.clamp=V,t.clear=Te,t.cloneStyle=It,t.collisionVelocity=K,t.colorMix=ei,t.colorToHsl=function(t,e,i,s=!0){const n=He(t,e,i,s);return n?je(n):void 0},t.colorToRgb=He,t.countOffset=1,t.decayOffset=1,t.deepExtend=bt,t.defaultAlpha=1,t.defaultAngle=0,t.defaultCompositeValue=i,t.defaultDensityFactor=1,t.defaultFps=60,t.defaultFpsLimit=120,t.defaultLoops=0,t.defaultOpacity=1,t.defaultRatio=1,t.defaultReduceFactor=1,t.defaultRemoveQuantity=1,t.defaultRetryCount=0,t.defaultRgbMin=0,t.defaultTime=0,t.defaultTransform=c,t.defaultTransformValue=1,t.defaultVelocity=0,t.defaultZoom=1,t.degToRad=Y,t.deleteCount=1,t.double=2,t.doublePI=u,t.drawAfterEffect=Ae,t.drawBeforeEffect=Fe,t.drawParticle=Ee,t.drawParticlePlugin=Ue,t.drawShape=Le,t.drawShapeAfterDraw=Be,t.drawShapeBeforeDraw=Ve,t.empty=0,t.executeOnSingleOrMultiple=wt,t.findItemFromSingleOrMultiple=function(t,e){return k(t)?t.find((t,i)=>e(t,i)):e(t,0)?t:void 0},t.generatedAttribute=e,t.generatedFalse=f,t.generatedTrue=p,t.getDistance=Q,t.getDistanceSq=j,t.getDistances=N,t.getFullScreenStyle=Ct,t.getHslAnimationFromHsl=si,t.getHslFromAnimation=ii,t.getItemMapFromInitializer=_t,t.getItemsFromInitializer=kt,t.getLinkColor=function(t,e,i){if(i===h)return Ze();if(i!==d)return i;{const i=t.getFillColor()??t.getStrokeColor(),s=e?.getFillColor()??e?.getStrokeColor();if(i&&s&&e)return ei(i,s,t.getRadius(),e.getRadius());{const t=i??s;if(t)return Xe(t)}}},t.getLinkRandomColor=function(t,e,i,s){const n=I(e)?e:e.value;return n===h?s?qe(t,{value:n}):i?h:d:n===d?d:qe(t,{value:n})},t.getLogger=Lt,t.getParticleBaseVelocity=J,t.getParticleDirectionAngle=Z,t.getPosition=Ot,t.getRandom=A,t.getRandomInRange=F,t.getRandomRgbColor=Ze,t.getRangeMax=q,t.getRangeMin=W,t.getRangeValue=G,t.getSize=function(t,e){return zt(t,e)},t.getStyleFromHsl=ti,t.getStyleFromRgb=Je,t.hMax=m,t.hMin=0,t.hPhase=60,t.half=o,t.hasMatchMedia=ht,t.hslToRgb=Xe,t.hslaToRgba=Ye,t.identity=1,t.initParticleNumericAnimationValue=xt,t.inverseFactorNumerator=1,t.isArray=k,t.isBoolean=S,t.isFunction=function(t){return"function"==typeof t},t.isInArray=ft,t.isNull=_,t.isNumber=C,t.isObject=D,t.isPointInside=mt,t.isString=I,t.itemFromArray=yt,t.itemFromSingleOrMultiple=Mt,t.lFactor=1,t.lMax=P,t.lMin=0,t.lengthOffset=1,t.loadBasic=Ni,t.loadMinIndex=0,t.loadOptions=Ce,t.loadParticlesOptions=De,t.loadRandomFactor=1e4,t.manageListener=Dt,t.memoize=ct,t.midColorValue=d,t.millisecondsToSeconds=r,t.minCount=0,t.minFpsLimit=0,t.minIndex=0,t.minLimit=0,t.minStrokeWidth=0,t.minVelocity=0,t.minZ=0,t.minimumSize=0,t.mix=U,t.none=0,t.one=1,t.originPoint=l,t.paintBase=_e,t.paintImage=Re,t.parseAlpha=it,t.percentDenominator=a,t.phaseNumerator=1,t.quarter=b,t.randomColorValue=h,t.randomInRangeValue=$,t.rangeColorToHsl=Ne,t.rangeColorToRgb=qe,t.removeDeleteCount=1,t.removeMinIndex=0,t.resizeEvent=s,t.rgbMax=y,t.rgbToHsl=je,t.sMax=v,t.sMin=0,t.sNormalizedOffset=1,t.safeDocument=dt,t.safeIntersectionObserver=function(t){if("undefined"!=typeof IntersectionObserver)return new IntersectionObserver(t)},t.safeMatchMedia=ut,t.safeMutationObserver=pt,t.setAnimationFunctions=function(t,e){E.nextFrame=t,E.cancel=e},t.setLogger=function(t){t.debug&&(Ft.debug=At(t.debug)),t.error&&(Ft.error=At(t.error)),t.info&&(Ft.info=At(t.info)),t.log&&(Ft.log=At(t.log)),t.trace&&(Ft.trace=At(t.trace)),t.verbose&&(Ft.verbose=At(t.verbose)),t.warning&&(Ft.warning=At(t.warning))},t.setRandom=function(t=Math.random){T=t},t.setRangeValue=H,t.sextuple=6,t.spatialHashGridCellSize=100,t.squareExp=2,t.stringToAlpha=function(t,e){return We(t,e)?.a},t.stringToRgb=Qe,t.threeQuarter=w,t.triple=3,t.tryCountIncrement=1,t.tsParticles=li,t.updateAnimation=St,t.updateColor=oi,t.updateColorValue=ai,t.visibilityChangeEvent=n,t.zIndexFactorOffset=1}),Object.assign(globalThis.window||globalThis,{loadBasic:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadBasic,loadMinIndex:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadMinIndex,loadOptions:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadOptions,loadParticlesOptions:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadParticlesOptions,loadRandomFactor:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadRandomFactor,tsParticles:(globalThis.__tsParticlesInternals.bundles.basic||{}).tsParticles}),globalThis.__tsParticlesInternals=globalThis.__tsParticlesInternals||{},globalThis.__tsParticlesInternals.engine&&globalThis.__tsParticlesInternals.engine.tsParticles||(globalThis.__tsParticlesInternals.engine=globalThis.__tsParticlesInternals.bundles.basic||{}),delete(globalThis.window||globalThis).tsparticlesInternalExports;
|
|
1
|
+
!function(t){t.__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.bundles=t.__tsParticlesInternals.bundles||{},t.__tsParticlesInternals.effects=t.__tsParticlesInternals.effects||{},t.__tsParticlesInternals.engine=t.__tsParticlesInternals.engine||{},t.__tsParticlesInternals.interactions=t.__tsParticlesInternals.interactions||{},t.__tsParticlesInternals.palettes=t.__tsParticlesInternals.palettes||{},t.__tsParticlesInternals.paths=t.__tsParticlesInternals.paths||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins=t.__tsParticlesInternals.plugins||{},t.__tsParticlesInternals.plugins.emittersShapes=t.__tsParticlesInternals.plugins.emittersShapes||{},t.__tsParticlesInternals.presets=t.__tsParticlesInternals.presets||{},t.__tsParticlesInternals.shapes=t.__tsParticlesInternals.shapes||{},t.__tsParticlesInternals.updaters=t.__tsParticlesInternals.updaters||{},t.__tsParticlesInternals.utils=t.__tsParticlesInternals.utils||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas=t.__tsParticlesInternals.canvas||{},t.__tsParticlesInternals.canvas.utils=t.__tsParticlesInternals.canvas.utils||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path=t.__tsParticlesInternals.path||{},t.__tsParticlesInternals.path.utils=t.__tsParticlesInternals.path.utils||{};var e="undefined"!=typeof Proxy?function(t){return new Proxy(t,{get:function(t,e){return e in t||(t[e]={}),t[e]}})}:function(t){return t};t.__tsParticlesInternals.bundles=e(t.__tsParticlesInternals.bundles),t.__tsParticlesInternals.effects=e(t.__tsParticlesInternals.effects),t.__tsParticlesInternals.interactions=e(t.__tsParticlesInternals.interactions),t.__tsParticlesInternals.palettes=e(t.__tsParticlesInternals.palettes),t.__tsParticlesInternals.paths=e(t.__tsParticlesInternals.paths),t.__tsParticlesInternals.plugins=e(t.__tsParticlesInternals.plugins),t.__tsParticlesInternals.plugins.emittersShapes=e(t.__tsParticlesInternals.plugins.emittersShapes),t.__tsParticlesInternals.presets=e(t.__tsParticlesInternals.presets),t.__tsParticlesInternals.shapes=e(t.__tsParticlesInternals.shapes),t.__tsParticlesInternals.updaters=e(t.__tsParticlesInternals.updaters),t.__tsParticlesInternals.utils=e(t.__tsParticlesInternals.utils),t.__tsParticlesInternals.canvas=e(t.__tsParticlesInternals.canvas),t.__tsParticlesInternals.path=e(t.__tsParticlesInternals.path),t.tsparticlesInternalExports=t.tsparticlesInternalExports||{}}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:this),function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(((t="undefined"!=typeof globalThis?globalThis:t||self).__tsParticlesInternals=t.__tsParticlesInternals||{},t.__tsParticlesInternals.bundles=t.__tsParticlesInternals.bundles||{},t.__tsParticlesInternals.bundles.basic=t.__tsParticlesInternals.bundles.basic||{}))}(this,function(t){"use strict";const e="generated",i="source-over",s="resize",n="visibilitychange",a=100,o=.5,r=1e3,l={x:0,y:0,z:0},c={a:1,b:0,c:0,d:1},h="random",d="mid",u=2*Math.PI,p="true",f="false",g="canvas",y=255,m=360,v=100,P=100,b=.25,w=.75;var M;function x(t){return"z"in t?t.z:l.z}t.MoveDirection=void 0,(M=t.MoveDirection||(t.MoveDirection={})).bottom="bottom",M.bottomLeft="bottom-left",M.bottomRight="bottom-right",M.left="left",M.none="none",M.right="right",M.top="top",M.topLeft="top-left",M.topRight="top-right",M.outside="outside",M.inside="inside";class z{x;y;z;constructor(t=l.x,e=l.y,i=l.z){this.x=t,this.y=e,this.z=i}static get origin(){return z.create(l.x,l.y,l.z)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this.#t(t,this.length)}get length(){return Math.sqrt(this.getLengthSq())}set length(t){this.#t(this.angle,t)}static clone(t){return z.create(t.x,t.y,x(t))}static create(t,e,i){return"number"==typeof t?new z(t,e??l.y,i??l.z):new z(t.x,t.y,x(t))}add(t){return z.create(this.x+t.x,this.y+t.y,this.z+x(t))}addTo(t){this.x+=t.x,this.y+=t.y,this.z+=x(t)}copy(){return z.clone(this)}div(t){return z.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**2+this.y**2}mult(t){return z.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;0!=t&&this.multTo(1/t)}rotate(t){return z.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t),l.z)}setTo(t){this.x=t.x,this.y=t.y,this.z=x(t)}sub(t){return z.create(this.x-t.x,this.y-t.y,this.z-x(t))}subFrom(t){this.x-=t.x,this.y-=t.y,this.z-=x(t)}#t(t,e){this.x=Math.cos(t)*e,this.y=Math.sin(t)*e}}class O extends z{constructor(t=l.x,e=l.y){super(t,e,l.z)}static get origin(){return O.create(l.x,l.y)}static clone(t){return O.create(t.x,t.y)}static create(t,e){return"number"==typeof t?new O(t,e??l.y):new O(t.x,t.y)}}function S(t){return"boolean"==typeof t}function I(t){return"string"==typeof t}function C(t){return"number"==typeof t}function D(t){return"object"==typeof t&&null!==t}function k(t){return Array.isArray(t)}function R(t){return null==t}const _=Math.PI/180;let T=Math.random;const E={nextFrame:t=>requestAnimationFrame(t),cancel:t=>{cancelAnimationFrame(t)}};function A(){return V(T(),0,1-Number.EPSILON)}function F(t,e){return A()*(e-t)+t}function L(t){return E.nextFrame(t)}function B(t){E.cancel(t)}function V(t,e,i){return Math.min(Math.max(t,e),i)}function U(t,e,i,s){return Math.floor((t*i+e*s)/(i+s))}function $(t){const e=q(t);let i=W(t);return e===i&&(i=0),F(i,e)}function G(t){return C(t)?t:$(t)}function W(t){return C(t)?t:t.min}function q(t){return C(t)?t:t.max}function H(t,e){if(t===e||void 0===e&&C(t))return t;const i=W(t),s=q(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(s,e)}:H(i,s)}function N(t,e){const i=t.x-e.x,s=t.y-e.y;return{dx:i,dy:s,distance:Math.hypot(i,s)}}function j(t,e){const i=t.x-e.x,s=t.y-e.y;return i*i+s*s}function Q(t,e){return Math.sqrt(j(t,e))}function X(t,e,i){return j(t,e)<=i*i}function Y(t){return t*_}function Z(e,i,s){if(C(e))return Y(e);switch(e){case t.MoveDirection.top:return-Math.PI*o;case t.MoveDirection.topRight:return-Math.PI*b;case t.MoveDirection.right:return 0;case t.MoveDirection.bottomRight:return Math.PI*b;case t.MoveDirection.bottom:return Math.PI*o;case t.MoveDirection.bottomLeft:return Math.PI*w;case t.MoveDirection.left:return Math.PI;case t.MoveDirection.topLeft:return-Math.PI*w;case t.MoveDirection.inside:return Math.atan2(s.y-i.y,s.x-i.x);case t.MoveDirection.outside:return Math.atan2(i.y-s.y,i.x-s.x);default:return A()*u}}function J(t){const e=O.origin;return e.length=1,e.angle=t,e}function K(t,e,i,s){return O.create(t.x*(i-s)/(i+s)+2*e.x*s/(i+s),t.y)}function tt(t){return{x:(t.position?.x??A()*a)*t.size.width/a,y:(t.position?.y??A()*a)*t.size.height/a}}function et(t){const{position:e,size:i}=t;return{x:e?.x??A()*i.width,y:e?.y??A()*i.height}}function it(t){return t?t.endsWith("%")?parseFloat(t)/a:parseFloat(t):1}var st,nt,at,ot,rt,lt;t.AnimationMode=void 0,(st=t.AnimationMode||(t.AnimationMode={})).auto="auto",st.increase="increase",st.decrease="decrease",st.random="random",t.AnimationStatus=void 0,(nt=t.AnimationStatus||(t.AnimationStatus={})).increasing="increasing",nt.decreasing="decreasing",t.DestroyType=void 0,(at=t.DestroyType||(t.DestroyType={})).none="none",at.max="max",at.min="min",t.OutModeDirection=void 0,(ot=t.OutModeDirection||(t.OutModeDirection={})).bottom="bottom",ot.left="left",ot.right="right",ot.top="top",t.PixelMode=void 0,(rt=t.PixelMode||(t.PixelMode={})).precise="precise",rt.percent="percent",t.StartValueType=void 0,(lt=t.StartValueType||(t.StartValueType={})).max="max",lt.min="min",lt.random="random";function ct(t,e){const i=new Map,s=e?.maxSize,n=e?.ttlMs,a=e?.keyFn,o=(t,e=new WeakSet)=>{if(null===t)return"null";const i=typeof t;if("undefined"===i)return"undefined";if("number"===i||"boolean"===i||"string"===i)return JSON.stringify(t);if("function"===i)try{return t.toString()}catch{return'"[Function]"'}if("symbol"===i)try{return t.toString()}catch{return'"[Symbol]"'}if(Array.isArray(t))return`[${t.map(t=>o(t,e)).join(",")}]`;if(e.has(t))return'"[Circular]"';e.add(t);return`{${Object.keys(t).sort().map(i=>`${JSON.stringify(i)}:${o(t[i],e)}`).join(",")}}`},r=t=>a?a(t):(t=>o(t))(t);return(...e)=>{const a=r(e),o=Date.now(),l=i.get(a);if(void 0!==l){if(!(n&&o-l.ts>n))return i.delete(a),i.set(a,{value:l.value,ts:l.ts}),l.value;i.delete(a)}const c=t(...e);return i.set(a,{value:c,ts:o}),(()=>{if("number"==typeof s&&s>=0)for(;i.size>s;){const t=i.keys().next().value;if(void 0===t)break;i.delete(t)}})(),c}}function ht(){return"undefined"!=typeof matchMedia}function dt(){return globalThis.document}function ut(t){if(ht())return matchMedia(t)}function pt(t){if("undefined"!=typeof MutationObserver)return new MutationObserver(t)}function ft(t,e){return t===e||k(e)&&e.includes(t)}function gt(t){return Math.floor(A()*t.length)}function yt(t,e,i=!0){return t[void 0!==e&&i?e%t.length:gt(t)]}function mt(t,e,i,s,n){return vt(Pt(t,s??0),e,i,n)}function vt(e,i,s,n){let a=!0;return n&&n!==t.OutModeDirection.bottom||(a=e.top<i.height+s.x),!a||n&&n!==t.OutModeDirection.left||(a=e.right>s.x),!a||n&&n!==t.OutModeDirection.right||(a=e.left<i.width+s.y),!a||n&&n!==t.OutModeDirection.top||(a=e.bottom>s.y),a}function Pt(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function bt(t,...e){for(const i of e){if(R(i))continue;if(!D(i)){t=i;continue}Array.isArray(i)?Array.isArray(t)||(t=[]):D(t)&&!Array.isArray(t)||(t={});const e=Object.keys(i),s=new Set(["__proto__","constructor","prototype"]);if(!e.some(t=>{const e=i[t];return D(e)||Array.isArray(e)})){const n=i,a=t;for(const t of e)if(!s.has(t)&&t in n){const e=n[t];void 0!==e&&(a[t]=e)}continue}for(const n of e){if(s.has(n))continue;const e=t,a=i[n];e[n]=Array.isArray(a)?a.map(t=>bt(void 0,t)):bt(e[n],a)}}return t}function wt(t,e){return k(t)?t.map((t,i)=>e(t,i)):e(t,0)}function Mt(t,e,i){return k(t)?yt(t,e,i):t}function xt(e,i){const s=e.value,n=e.animation,a={delayTime:G(n.delay)*r,enable:n.enable,value:G(e.value)*i,max:q(s)*i,min:W(s)*i,loops:0,maxLoops:G(n.count),time:0};if(n.enable){switch(a.decay=1-G(n.decay),n.mode){case t.AnimationMode.increase:a.status=t.AnimationStatus.increasing;break;case t.AnimationMode.decrease:a.status=t.AnimationStatus.decreasing;break;case t.AnimationMode.random:a.status=A()>=o?t.AnimationStatus.increasing:t.AnimationStatus.decreasing}const e=n.mode===t.AnimationMode.auto;switch(n.startValue){case t.StartValueType.min:a.value=a.min,e&&(a.status=t.AnimationStatus.increasing);break;case t.StartValueType.max:a.value=a.max,e&&(a.status=t.AnimationStatus.decreasing);break;case t.StartValueType.random:default:a.value=$(a),e&&(a.status=A()>=o?t.AnimationStatus.increasing:t.AnimationStatus.decreasing)}}return a.initialValue=a.value,a}function zt(e,i){if(!(e.mode===t.PixelMode.percent)){const{mode:t,...i}=e;return i}return"x"in e?{x:e.x/a*i.width,y:e.y/a*i.height}:{width:e.width/a*i.width,height:e.height/a*i.height}}function Ot(t,e){return zt(t,e)}function St(e,i,s,n,a){if(e.destroyed||!i.enable||(i.maxLoops??0)>0&&(i.loops??0)>(i.maxLoops??0))return;const o=(i.velocity??0)*a.factor,r=i.min,l=i.max,c=i.decay??1;if(i.time??=0,(i.delayTime??0)>0&&i.time<(i.delayTime??0)&&(i.time+=a.value),!((i.delayTime??0)>0&&i.time<(i.delayTime??0))){switch(i.status){case t.AnimationStatus.increasing:i.value+=o;break;case t.AnimationStatus.decreasing:i.value-=o}switch(i.velocity&&1!==c&&(i.velocity*=c),i.status){case t.AnimationStatus.increasing:i.value>=l&&(s?i.status=t.AnimationStatus.decreasing:i.value-=l,i.loops??=0,i.loops++);break;case t.AnimationStatus.decreasing:i.value<=r&&(s?i.status=t.AnimationStatus.increasing:i.value+=l,i.loops??=0,i.loops++)}!function(e,i,s,n,a){switch(i){case t.DestroyType.max:s>=a&&e.destroy();break;case t.DestroyType.min:s<=n&&e.destroy()}}(e,n,i.value,r,l),e.destroyed||(i.value=V(i.value,r,l))}}function It(t){const e=dt().createElement("div").style;for(const i in t){const s=t[i];if(!(i in t)||R(s))continue;const n=t.getPropertyValue?.(s);if(!n)continue;const a=t.getPropertyPriority?.(s);a?e.setProperty(s,n,a):e.setProperty(s,n)}return e}const Ct=ct(function(t){const e=dt().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","pointer-events":"none"};for(const t in i){const s=i[t];void 0!==s&&e.setProperty(t,s)}return e});function Dt(t,e,i,s,n){if(s){let s={passive:!0};S(n)?s.capture=n:void 0!==n&&(s=n),t.addEventListener(e,i,s)}else{const s=n;t.removeEventListener(e,i,s)}}async function kt(t,e,i,s=!1){let n=e.get(t);return n&&!s||(n=await Promise.all([...i.values()].map(e=>e(t))),e.set(t,n)),n}async function Rt(t,e,i,s=!1){let n=e.get(t);if(!n||s){const s=await Promise.all([...i.entries()].map(([e,i])=>i(t).then(t=>[e,t])));n=new Map(s),e.set(t,n)}return n}class _t{#e;constructor(){this.#e=new Map}addEventListener(t,e){this.removeEventListener(t,e);let i=this.#e.get(t);i||(i=[],this.#e.set(t,i)),i.push(e)}dispatchEvent(t,e){const i=this.#e.get(t);i?.forEach(t=>{t(e)})}hasEventListener(t){return!!this.#e.get(t)}removeAllEventListeners(t){t?this.#e.delete(t):this.#e=new Map}removeEventListener(t,e){const i=this.#e.get(t);if(!i)return;const s=i.length,n=i.indexOf(e);n<0||(1===s?this.#e.delete(t):i.splice(n,1))}}var Tt;t.EventType=void 0,(Tt=t.EventType||(t.EventType={})).configAdded="configAdded",Tt.containerInit="containerInit",Tt.particlesSetup="particlesSetup",Tt.containerStarted="containerStarted",Tt.containerStopped="containerStopped",Tt.containerDestroyed="containerDestroyed",Tt.containerPaused="containerPaused",Tt.containerPlay="containerPlay",Tt.containerBuilt="containerBuilt",Tt.particleAdded="particleAdded",Tt.particleDestroyed="particleDestroyed",Tt.particleRemoved="particleRemoved";class Et{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;#i=new Set;#s=new Map;#n;#a=new Set;#o=!1;#r=!1;#l=new Set;constructor(t){this.#n=t}get configs(){const t={};for(const[e,i]of this.#s)t[e]=i;return t}addColorManager(t,e){this.colorManagers.set(t,e)}addConfig(e){const i=e.key??e.name??"default";this.#s.set(i,e),this.#n.dispatchEvent(t.EventType.configAdded,{data:{name:i,config:e}})}addEasing(t,e){this.easingFunctions.get(t)||this.easingFunctions.set(t,e)}addEffect(t,e){this.initializers.effects.set(t,e)}addPalette(t,e){this.palettes.set(t,e)}addParticleUpdater(t,e){this.initializers.updaters.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,e){for(const i of t)this.initializers.shapes.set(i,e)}clearPlugins(t){this.effectDrawers.delete(t),this.shapeDrawers.delete(t),this.updaters.delete(t)}getEasing(t){return this.easingFunctions.get(t)??(t=>t)}getEffectDrawers(t,e=!1){return Rt(t,this.effectDrawers,this.initializers.effects,e)}getPalette(t){return this.palettes.get(t)}getPlugin(t){return this.plugins.find(e=>e.id===t)}getPreset(t){return this.presets.get(t)}async getShapeDrawers(t,e=!1){return Rt(t,this.shapeDrawers,this.initializers.shapes,e)}async getUpdaters(t,e=!1){return kt(t,this.updaters,this.initializers.updaters,e)}async init(){if(!this.#o&&!this.#r){this.#r=!0,this.#a=new Set,this.#i=new Set(this.#l);try{for(const t of this.#i)await this.#c(t,this.#a,this.#i)}finally{this.#l.clear(),this.#r=!1,this.#o=!0}}}loadParticlesOptions(t,e,...i){const s=this.updaters.get(t);s&&s.forEach(t=>t.loadOptions?.(e,...i))}async register(...t){if(this.#o)throw new Error("Register plugins can only be done before calling tsParticles.load()");for(const e of t)this.#r?await this.#c(e,this.#a,this.#i):this.#l.add(e)}async#c(t,e,i){e.has(t)||(e.add(t),i.add(t),await t(this.#n))}}const At=t=>(...e)=>{t(...e)},Ft={debug:At(console.debug),error:(t,...e)=>{console.error(`tsParticles - Error - ${t}`,...e)},info:At(console.info),log:At(console.log),trace:At(console.trace),verbose:At(console.log),warning:At(console.warn)};function Lt(){return Ft}const Bt="100%";class Vt{pluginManager=new Et(this);#h=[];#d=new _t;#o=!1;get items(){return this.#h}get version(){return"4.1.2"}addEventListener(t,e){this.#d.addEventListener(t,e)}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}`)}dispatchEvent(t,e){this.#d.dispatchEvent(t,e)}async init(){this.#o||(await this.pluginManager.init(),this.#o=!0)}item(t){const e=this.items,i=e[t];if(!i?.destroyed)return i;e.splice(t,1)}async load(t){let i;await this.init(),"undefined"!=typeof HTMLElement&&t.element instanceof HTMLElement&&(i=t.element);const{Container:s}=await Promise.resolve().then(function(){return rs}),n=t.id??i?.id??`tsparticles${Math.floor(1e4*A()).toString()}`,{index:a,url:o}=t,r=o?await async function(t){const e=Mt(t.url,t.index);if(!e)return t.fallback;const i=await fetch(e);return i.ok?await i.json():(Lt().error(`${i.status.toString()} while retrieving config file`),t.fallback)}({fallback:t.options,url:o,index:a}):t.options,l=Mt(r,a),{items:c}=this,h=c.findIndex(t=>t.id.description===n),d=new s({dispatchCallback:(t,e)=>{this.dispatchEvent(t,e)},id:n,onDestroy:t=>{if(!t)return;const e=this.items,i=e.indexOf(d);i>=0&&e.splice(i,1)},pluginManager:this.pluginManager,sourceOptions:l});if(h>=0){const t=this.item(h),e=t?1:0;t&&!t.destroyed&&t.destroy(!1),c.splice(h,e,d)}else c.push(d);const u="undefined"!=typeof OffscreenCanvas&&t.element instanceof OffscreenCanvas?t.element:(t=>{const i=dt();let s;if(t instanceof HTMLCanvasElement||t.tagName.toLowerCase()===g)s=t,s.dataset[e]??=f,s.dataset[e]===p&&(s.style.width||=Bt,s.style.height||=Bt,s.style.pointerEvents="none",s.style.setProperty("pointer-events","none"));else{const n=t.getElementsByTagName(g).item(0);n?(s=n,s.dataset[e]=f):(s=i.createElement(g),s.dataset[e]=p,t.appendChild(s)),s.style.width||=Bt,s.style.height||=Bt,s.style.pointerEvents="none",s.style.setProperty("pointer-events","none")}return s})(((t,i)=>{const s=dt();let n=i??s.getElementById(t);return n||(n=s.createElement("canvas"),n.id=t,n.dataset[e]=p,s.body.append(n),n)})(n,i));return d.canvas.loadCanvas(u),await d.start(),d}async refresh(t=!0){t&&await Promise.all(this.items.map(t=>t.refresh()))}removeEventListener(t,e){this.#d.removeEventListener(t,e)}}var Ut,$t,Gt,Wt,qt,Ht,Nt,jt;!function(t){t.circle="circle",t.rectangle="rectangle"}(Ut||(Ut={}));class Qt{position;type;constructor(t,e,i){this.position={x:t,y:e},this.type=i}_resetPosition(t,e){this.position.x=t,this.position.y=e}}class Xt extends Qt{radius;constructor(t,e,i){super(t,e,Ut.circle),this.radius=i}contains(t){return X(t,this.position,this.radius)}intersects(t){const e=this.position,i=t.position,s=this.radius,n=Math.abs(i.x-e.x),a=Math.abs(i.y-e.y);if(t instanceof Xt||t.type===Ut.circle){return s+t.radius>Math.hypot(n,a)}if(t instanceof Yt||t.type===Ut.rectangle){const e=t,{width:i,height:o}=e.size;return Math.pow(n-i,2)+Math.pow(a-o,2)<=s**2||n<=s+i&&a<=s+o||n<=i||a<=o}return!1}reset(t,e,i){return this._resetPosition(t,e),this.radius=i,this}}class Yt extends Qt{size;constructor(t,e,i,s){super(t,e,Ut.rectangle),this.size={height:s,width:i}}contains(t){const e=this.size.width,i=this.size.height,s=this.position;return t.x>=s.x&&t.x<=s.x+e&&t.y>=s.y&&t.y<=s.y+i}intersects(t){if(t instanceof Xt)return t.intersects(this);if(!(t instanceof Yt))return!1;const e=this.size.width,i=this.size.height,s=this.position,n=t.position,a=t.size,o=a.width,r=a.height;return n.x<s.x+e&&n.x+o>s.x&&n.y<s.y+i&&n.y+r>s.y}reset(t,e,i,s){return this._resetPosition(t,e),this.size.width=i,this.size.height=s,this}}t.RotateDirection=void 0,($t=t.RotateDirection||(t.RotateDirection={})).clockwise="clockwise",$t.counterClockwise="counter-clockwise",$t.random="random",t.LimitMode=void 0,(Gt=t.LimitMode||(t.LimitMode={})).delete="delete",Gt.wait="wait",t.OutMode=void 0,(Wt=t.OutMode||(t.OutMode={})).bounce="bounce",Wt.none="none",Wt.out="out",Wt.destroy="destroy",Wt.split="split",t.AlterType=void 0,(qt=t.AlterType||(t.AlterType={})).darken="darken",qt.enlighten="enlighten",t.GradientType=void 0,(Ht=t.GradientType||(t.GradientType={})).linear="linear",Ht.radial="radial",Ht.random="random",t.ParticleOutType=void 0,(Nt=t.ParticleOutType||(t.ParticleOutType={})).normal="normal",Nt.inside="inside",Nt.outside="outside",t.EasingType=void 0,(jt=t.EasingType||(t.EasingType={})).easeInBack="ease-in-back",jt.easeInBounce="ease-in-bounce",jt.easeInCirc="ease-in-circ",jt.easeInCubic="ease-in-cubic",jt.easeInElastic="ease-in-elastic",jt.easeInExpo="ease-in-expo",jt.easeInGaussian="ease-in-gaussian",jt.easeInLinear="ease-in-linear",jt.easeInQuad="ease-in-quad",jt.easeInQuart="ease-in-quart",jt.easeInQuint="ease-in-quint",jt.easeInSigmoid="ease-in-sigmoid",jt.easeInSine="ease-in-sine",jt.easeInSmoothstep="ease-in-smoothstep",jt.easeOutBack="ease-out-back",jt.easeOutBounce="ease-out-bounce",jt.easeOutCirc="ease-out-circ",jt.easeOutCubic="ease-out-cubic",jt.easeOutElastic="ease-out-elastic",jt.easeOutExpo="ease-out-expo",jt.easeOutGaussian="ease-out-gaussian",jt.easeOutLinear="ease-out-linear",jt.easeOutQuad="ease-out-quad",jt.easeOutQuart="ease-out-quart",jt.easeOutQuint="ease-out-quint",jt.easeOutSigmoid="ease-out-sigmoid",jt.easeOutSine="ease-out-sine",jt.easeOutSmoothstep="ease-out-smoothstep",jt.easeInOutBack="ease-in-out-back",jt.easeInOutBounce="ease-in-out-bounce",jt.easeInOutCirc="ease-in-out-circ",jt.easeInOutCubic="ease-in-out-cubic",jt.easeInOutElastic="ease-in-out-elastic",jt.easeInOutExpo="ease-in-out-expo",jt.easeInOutGaussian="ease-in-out-gaussian",jt.easeInOutLinear="ease-in-out-linear",jt.easeInOutQuad="ease-in-out-quad",jt.easeInOutQuart="ease-in-out-quart",jt.easeInOutQuint="ease-in-out-quint",jt.easeInOutSigmoid="ease-in-out-sigmoid",jt.easeInOutSine="ease-in-out-sine",jt.easeInOutSmoothstep="ease-in-out-smoothstep";class Zt{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(t){R(t)||(void 0!==t.count&&(this.count=H(t.count)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=H(t.speed)),void 0!==t.decay&&(this.decay=H(t.decay)),void 0!==t.delay&&(this.delay=H(t.delay)),void 0!==t.sync&&(this.sync=t.sync))}}class Jt extends Zt{mode;startValue;constructor(){super(),this.mode=t.AnimationMode.auto,this.startValue=t.StartValueType.random}load(t){super.load(t),R(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.startValue&&(this.startValue=t.startValue))}}class Kt extends Zt{max;min;offset;constructor(t,e){super(),this.min=t,this.max=e,this.offset=0,this.sync=!0}load(t){super.load(t),R(t)||(void 0!==t.max&&(this.max=t.max),void 0!==t.min&&(this.min=t.min),void 0!==t.offset&&(this.offset=H(t.offset)))}}class te{h=new Kt(0,m);l=new Kt(0,P);s=new Kt(0,v);load(t){R(t)||(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}class ee{value;constructor(){this.value=""}static create(t,e){const i=new ee;return i.load(t),void 0!==e&&(I(e)||k(e)?i.load({value:e}):i.load(e)),i}load(t){R(t)||R(t.value)||(this.value=t.value)}}class ie extends ee{animation;constructor(){super(),this.animation=new te}static create(t,e){const i=new ie;return i.load(t),void 0!==e&&(I(e)||k(e)?i.load({value:e}):i.load(e)),i}load(t){if(super.load(t),R(t))return;const e=t.animation;void 0!==e&&(void 0===e.enable?this.animation.load(t.animation):this.animation.h.load(e))}}class se{color;image;opacity;position;repeat;size;constructor(){this.color=new ee,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){R(t)||(void 0!==t.color&&(this.color=ee.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.position&&(this.position=t.position),void 0!==t.repeat&&(this.repeat=t.repeat),void 0!==t.size&&(this.size=t.size),void 0!==t.opacity&&(this.opacity=t.opacity))}}class ne{enable;zIndex;constructor(){this.enable=!0,this.zIndex=0}load(t){R(t)||(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}class ae{delay;enable;constructor(){this.delay=.5,this.enable=!0}load(t){R(t)||(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.enable&&(this.enable=t.enable))}}class oe{close;options;type;constructor(){this.close=!0,this.options={},this.type=[]}load(t){if(R(t))return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=bt(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.type&&(this.type=t.type)}}class re{color;enable;opacity;constructor(){this.enable=!0,this.opacity=1}load(t){R(t)||(void 0!==t.color&&(this.color=ie.create(this.color,t.color)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.opacity&&(this.opacity=H(t.opacity)))}}class le{offset;value;constructor(){this.offset=0,this.value=90}load(t){R(t)||(void 0!==t.offset&&(this.offset=H(t.offset)),void 0!==t.value&&(this.value=H(t.value)))}}class ce{mode;radius;x;y;constructor(){this.x=50,this.y=50,this.mode=t.PixelMode.percent,this.radius=0}load(t){R(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))}}class he{acceleration;enable;inverse;maxSpeed;constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){R(t)||(void 0!==t.acceleration&&(this.acceleration=H(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=H(t.maxSpeed)))}}class de{value;constructor(){this.value=0}load(t){R(t)||R(t.value)||(this.value=H(t.value))}}class ue extends de{animation=new Zt;load(t){if(super.load(t),R(t))return;const e=t.animation;void 0!==e&&this.animation.load(e)}}class pe extends ue{animation;constructor(){super(),this.animation=new Jt}load(t){super.load(t)}}class fe{clamp;delay;enable;generator;options;constructor(){this.clamp=!0,this.delay=new de,this.enable=!1,this.options={}}load(t){R(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=bt(this.options,t.options)))}}class ge{bottom;default;left;right;top;constructor(){this.default=t.OutMode.out}load(t){R(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)}}class ye{acceleration;enable;position;constructor(){this.acceleration=0,this.enable=!1}load(t){R(t)||(void 0!==t.acceleration&&(this.acceleration=H(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),t.position&&(this.position=bt({},t.position)))}}class me{angle;center;decay;direction;distance;drift;enable;gravity;outModes;path;random;size;speed;spin;straight;vibrate;warp;constructor(){this.angle=new le,this.center=new ce,this.decay=0,this.distance={},this.direction=t.MoveDirection.none,this.drift=0,this.enable=!1,this.gravity=new he,this.path=new fe,this.outModes=new ge,this.random=!1,this.size=!1,this.speed=2,this.spin=new ye,this.straight=!1,this.vibrate=!1,this.warp=!1}load(t){if(R(t))return;this.angle.load(C(t.angle)?{value:t.angle}:t.angle),this.center.load(t.center),void 0!==t.decay&&(this.decay=H(t.decay)),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance=C(t.distance)?{horizontal:t.distance,vertical:t.distance}:{...t.distance}),void 0!==t.drift&&(this.drift=H(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const e=t.outModes;void 0!==e&&(D(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=H(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)}}class ve{color;opacity;width;constructor(){this.width=0}load(t){R(t)||(void 0!==t.color&&(this.color=ie.create(this.color,t.color)),void 0!==t.width&&(this.width=H(t.width)),void 0!==t.opacity&&(this.opacity=H(t.opacity)))}}class Pe{color;fill;stroke;load(t){R(t)||(void 0!==t.color&&(this.color=ie.create(this.color,t.color)),void 0!==t.fill&&(this.fill??=new re,this.fill.load(t.fill)),void 0!==t.stroke&&(this.stroke??=new ve,this.stroke.load(t.stroke)))}}class be extends de{constructor(){super(),this.value=1}}class we{horizontal;vertical;constructor(){this.horizontal=new be,this.vertical=new be}load(t){R(t)||(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}class Me{enable;height;width;constructor(){this.enable=!1,this.width=1920,this.height=1080}load(t){if(R(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)}}class xe{mode;value;constructor(){this.mode=t.LimitMode.delete,this.value=0}load(t){R(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}class ze{density;limit;value;constructor(){this.density=new Me,this.limit=new xe,this.value=0}load(t){R(t)||(this.density.load(t.density),this.limit.load(t.limit),void 0!==t.value&&(this.value=t.value))}}class Oe{close;options;type;constructor(){this.close=!0,this.options={},this.type="circle"}load(t){if(R(t))return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=bt(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.type&&(this.type=t.type)}}class Se extends de{opacityRate;sizeRate;velocityRate;constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),R(t)||(void 0!==t.opacityRate&&(this.opacityRate=t.opacityRate),void 0!==t.sizeRate&&(this.sizeRate=t.sizeRate),void 0!==t.velocityRate&&(this.velocityRate=t.velocityRate))}}class Ie{bounce;effect;groups;move;number;paint;palette;reduceDuplicates;shape;zIndex;#u;#p;constructor(t,e){this.#p=t,this.#u=e,this.bounce=new we,this.effect=new oe,this.groups={},this.move=new me,this.number=new ze,this.paint=new Pe,this.paint.color=new ie,this.paint.color.value="#fff",this.paint.fill=new re,this.paint.fill.enable=!0,this.reduceDuplicates=!1,this.shape=new Oe,this.zIndex=new Se}load(t){if(R(t))return;if(t.palette&&(this.palette=t.palette,this.#f(this.palette)),void 0!==t.groups)for(const e of Object.keys(t.groups)){if(!(e in t.groups))continue;const i=t.groups[e];void 0!==i&&(this.groups[e]=bt(this.groups[e]??{},i))}void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.bounce.load(t.bounce),this.effect.load(t.effect),this.move.load(t.move),this.number.load(t.number);const e=t.paint;if(e&&(k(e)?this.paint=wt(e,t=>{const e=new Pe;return e.load(t),e}):k(this.paint)?(this.paint=new Pe,this.paint.load(e)):this.paint.load(e)),this.shape.load(t.shape),this.zIndex.load(t.zIndex),this.#u){for(const e of this.#p.plugins)e.loadParticlesOptions&&e.loadParticlesOptions(this.#u,this,t);const e=this.#p.updaters.get(this.#u);if(e)for(const i of e)i.loadOptions&&i.loadOptions(this,t)}}#f=t=>{const e=this.#p.getPalette(t);if(!e)return;const i=e.colors,s=(k(i)?i:[i]).flatMap(t=>{const e=t.fill,i=t.stroke,s=e?{color:{value:e.value},enable:e.enable,opacity:e.opacity}:void 0;return i?[{fill:s,stroke:{color:{value:i.value},opacity:i.opacity,width:i.width||0}}]:[{fill:s}]}),n=s.length>1?s:s[0]??{};this.load({paint:n,blend:{enable:!0,mode:e.blendMode}})}}function Ce(t,...e){for(const i of e)t.load(i)}function De(t,e,...i){const s=new Ie(t,e);return Ce(s,...i),s}class ke{autoPlay;background;clear;defaultThemes;delay;detectRetina;duration;fpsLimit;fullScreen;hdr;key;name;palette;particles;pauseOnBlur;pauseOnOutsideViewport;preset;resize;smooth;style;zLayers;#u;#p;constructor(t,e){this.#p=t,this.#u=e,this.autoPlay=!0,this.background=new se,this.clear=!0,this.defaultThemes={},this.delay=0,this.fullScreen=new ne,this.detectRetina=!0,this.duration=0,this.fpsLimit=120,this.hdr=!0,this.particles=De(this.#p,this.#u),this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.resize=new ae,this.smooth=!1,this.style={},this.zLayers=100}load(t){if(R(t))return;void 0!==t.preset&&(this.preset=t.preset,wt(this.preset,t=>{this.#g(t)})),void 0!==t.palette&&(this.palette=t.palette,this.#f(this.palette)),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=H(t.delay));const e=t.detectRetina;void 0!==e&&(this.detectRetina=e),void 0!==t.duration&&(this.duration=H(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 s=t.fullScreen;S(s)?this.fullScreen.enable=s:this.fullScreen.load(s),this.particles.load(t.particles),this.resize.load(t.resize),this.style=bt(this.style,t.style),void 0!==t.smooth&&(this.smooth=t.smooth),this.#p.plugins.forEach(e=>{e.loadOptions(this.#u,this,t)})}#f=t=>{const e=this.#p.getPalette(t);e&&this.load({background:{color:e.background},blend:{enable:!0,mode:e.blendMode},particles:{palette:t}})};#g=t=>{this.load(this.#p.getPreset(t))}}function Re(t,e,i){t.fillStyle=i??"rgba(0,0,0,0)",t.fillRect(l.x,l.y,e.width,e.height)}function _e(t,e,i,s){if(!i)return;const n=t.globalAlpha;t.globalAlpha=s,t.drawImage(i,l.x,l.y,e.width,e.height),t.globalAlpha=n}function Te(t,e){t.clearRect(l.x,l.y,e.width,e.height)}function Ee(t){const{container:e,context:i,particle:s,delta:n,colorStyles:a,radius:o,opacity:r,transform:l}=t,{effectDrawers:c,shapeDrawers:h}=e,d=s.getPosition(),u=s.getTransformData(l),p={x:d.x,y:d.y};i.setTransform(u.a,u.b,u.c,u.d,d.x,d.y),a.fill&&(i.fillStyle=a.fill);const f=!!s.fillEnabled,g=s.strokeWidth??0;i.lineWidth=g,a.stroke&&(i.strokeStyle=a.stroke);const y={context:i,particle:s,radius:o,drawRadius:1*o,opacity:r,delta:n,pixelRatio:e.retina.pixelRatio,fill:f,stroke:g>0,transformData:u,position:{...d},drawPosition:p,drawScale:1};for(const t of e.plugins)t.drawParticleTransform?.(y);const m=s.effect?c.get(s.effect):void 0,v=s.shape?h.get(s.shape):void 0;Fe(m,y),Ve(v,y),Le(v,y),Be(v,y),Ae(m,y),i.resetTransform()}function Ae(t,e){if(!t?.drawAfter)return;const{particle:i}=e;i.effect&&t.drawAfter(e)}function Fe(t,e){if(!t?.drawBefore)return;const{particle:i}=e;i.effect&&t.drawBefore(e)}function Le(t,e){if(!t)return;const{context:i,fill:s,particle:n,stroke:a}=e;n.shape&&(i.beginPath(),t.draw(e),n.shapeClose&&i.closePath(),s&&i.fill(),a&&i.stroke())}function Be(t,e){if(!t?.afterDraw)return;const{particle:i}=e;i.shape&&t.afterDraw(e)}function Ve(t,e){if(!t?.beforeDraw)return;const{particle:i}=e;i.shape&&t.beforeDraw(e)}function Ue(t,e,i,s){e.drawParticle&&e.drawParticle(t,i,s)}const $e=new Map;function Ge(t,e){let i=$e.get(t);if(!i){if(i=e(),$e.size>=1e3){[...$e.keys()].slice(0,500).forEach(t=>$e.delete(t))}$e.set(t,i)}return i}function We(t,e){if(e)for(const i of t.colorManagers.values())if(i.accepts(e))return i.parseString(e)}function qe(t,e,i,s=!0){if(!e)return;const n=I(e)?{value:e}:e;if(I(n.value))return He(t,n.value,i,s);if(k(n.value)){const e=yt(n.value,i,s);if(!e)return;return qe(t,{value:e})}for(const e of t.colorManagers.values()){const t=e.handleRangeColor(n);if(t)return t}}function He(t,e,i,s=!0){if(!e)return;const n=I(e)?{value:e}:e;if(I(n.value))return n.value===h?Ze():Qe(t,n.value);if(k(n.value)){const e=yt(n.value,i,s);if(!e)return;return He(t,{value:e})}for(const e of t.colorManagers.values()){const t=e.handleColor(n);if(t)return t}}function Ne(t,e,i,s=!0){const n=qe(t,e,i,s);return n?je(n):void 0}function je(t){const e=t.r/y,i=t.g/y,s=t.b/y,n=Math.max(e,i,s),a=Math.min(e,i,s),r={h:0,l:(n+a)*o,s:0};return n!==a&&(r.s=r.l<o?(n-a)/(n+a):(n-a)/(2-n-a),r.h=e===n?(i-s)/(n-a):i===n?2+(s-e)/(n-a):4+(e-i)/(n-a)),r.l*=P,r.s*=v,r.h*=60,r.h<0&&(r.h+=m),r.h>=m&&(r.h-=m),r}function Qe(t,e){return We(t,e)}function Xe(t){const e=(t.h%m+m)%m,i=Math.max(0,Math.min(v,t.s)),s=Math.max(0,Math.min(P,t.l)),n=e/m,a=i/v,r=s/P;if(0===i){const t=Math.round(r*y);return{r:t,g:t,b:t}}const l=(t,e,i)=>{if(i<0&&i++,i>1&&i--,6*i<1)return t+6*(e-t)*i;if(2*i<1)return e;if(3*i<2){return t+(e-t)*(2/3-i)*6}return t},c=r<o?r*(1+a):r+a-r*a,h=2*r-c,d=1/3,u=Math.min(y,y*l(h,c,n+d)),p=Math.min(y,y*l(h,c,n)),f=Math.min(y,y*l(h,c,n-d));return{r:Math.round(u),g:Math.round(p),b:Math.round(f)}}function Ye(t){const e=Xe(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function Ze(t){const e=t??0,i=()=>Math.floor(F(e,256));return{b:i(),g:i(),r:i()}}function Je(t,e,i){const s=i??1;return Ge(`rgb-${t.r.toFixed(2)}-${t.g.toFixed(2)}-${t.b.toFixed(2)}-${e?"hdr":"sdr"}-${s.toString()}`,()=>e?Ke(t,i):function(t,e){return`rgba(${t.r.toString()}, ${t.g.toString()}, ${t.b.toString()}, ${(e??1).toString()})`}(t,i))}function Ke(t,e){return`color(display-p3 ${(t.r/y).toString()} ${(t.g/y).toString()} ${(t.b/y).toString()} / ${(e??1).toString()})`}function ti(t,e,i){const s=i??1;return Ge(`hsl-${t.h.toFixed(2)}-${t.s.toFixed(2)}-${t.l.toFixed(2)}-${e?"hdr":"sdr"}-${s.toString()}`,()=>e?function(t,e){return Ke(Xe(t),e)}(t,i):function(t,e){return`hsla(${t.h.toString()}, ${t.s.toString()}%, ${t.l.toString()}%, ${(e??1).toString()})`}(t,i))}function ei(t,e,i,s){let n=t,a=e;return"r"in n||(n=Xe(t)),"r"in a||(a=Xe(e)),{b:U(n.b,a.b,i,s),g:U(n.g,a.g,i,s),r:U(n.r,a.r,i,s)}}function ii(t){return void 0===t?void 0:{h:t.h.value,s:t.s.value,l:t.l.value}}function si(t,e,i){const s={h:{enable:!1,value:t.h,min:0,max:m},s:{enable:!1,value:t.s,min:0,max:v},l:{enable:!1,value:t.l,min:0,max:P}};return e&&(ni(s.h,e.h,i),ni(s.s,e.s,i),ni(s.l,e.l,i)),s}function ni(e,i,s){e.enable=i.enable,e.min=i.min,e.max=i.max,e.enable?(e.velocity=G(i.speed)/a*s,e.decay=1-G(i.decay),e.status=t.AnimationStatus.increasing,e.loops=0,e.maxLoops=G(i.count),e.time=0,e.delayTime=G(i.delay)*r,i.sync||(e.velocity*=A(),e.value*=A()),e.initialValue=e.value,e.offset=H(i.offset)):e.velocity=0}function ai(e,i,s){if(!e.enable||(e.maxLoops??0)>0&&(e.loops??0)>(e.maxLoops??0))return;if(e.time??=0,(e.delayTime??0)>0&&e.time<(e.delayTime??0)&&(e.time+=s.value),(e.delayTime??0)>0&&e.time<(e.delayTime??0))return;const n=e.offset?$(e.offset):0,a=(e.velocity??0)*s.factor+3.6*n,o=e.decay??1,r=e.max,l=e.min;i&&e.status!==t.AnimationStatus.increasing?(e.value-=a,e.value<l&&(e.loops??=0,e.loops++,e.status=t.AnimationStatus.increasing)):(e.value+=a,e.value>r&&(e.loops??=0,e.loops++,i?e.status=t.AnimationStatus.decreasing:e.value-=r)),e.velocity&&1!==o&&(e.velocity*=o),e.value=V(e.value,l,r)}function oi(t,e){if(!t)return;const{h:i,s:s,l:n}=t;ai(i,!1,e),ai(s,!0,e),ai(n,!0,e)}function ri(e,i,s){return{h:e.h,s:e.s,l:e.l+(i===t.AlterType.darken?-1:1)*s}}const li=new Vt;class ci{enable;mode;constructor(){this.mode="destination-out",this.enable=!1}load(t){R(t)||(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.enable&&(this.enable=t.enable))}}class hi{id="blend";async getPlugin(t){const{BlendPluginInstance:e}=await Promise.resolve().then(function(){return ls});return new e(t)}loadOptions(t,e,i){if(!this.needsPlugin(e)&&!this.needsPlugin(i))return;let s=e.blend;s?.load||(e.blend=s=new ci),s.load(i?.blend)}loadParticlesOptions(t,e,i){e.blend??=new ci,e.blend.load(i?.blend)}needsPlugin(t){return!!t?.blend?.enable||!!t?.particles?.blend?.enable}}async function di(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addPlugin(new hi)})}class ui{draw(t){!function(t){const{context:e,particle:i,radius:s}=t;i.circleRange??={min:0,max:u};const n=i.circleRange;e.arc(l.x,l.y,s,n.min,n.max,!1)}(t)}getSidesCount(){return 12}particleInit(t,e){const i=e.shapeData,s=i?.angle??{max:360,min:0};e.circleRange=D(s)?{min:Y(s.min),max:Y(s.max)}:{min:0,max:Y(s)}}}async function pi(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addShape(["circle"],()=>Promise.resolve(new ui))})}var fi;!function(t){t[t.r=1]="r",t[t.g=2]="g",t[t.b=3]="b",t[t.a=4]="a"}(fi||(fi={}));const gi=/^#?([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,yi=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i;class mi{accepts(t){return t.startsWith("#")}handleColor(t){return this.#y(t.value)}handleRangeColor(t){return this.#y(t.value)}parseString(t){return this.#y(t)}#y(t){if("string"!=typeof t||!this.accepts(t))return;const e=t.replace(gi,(t,e,i,s,n)=>e+e+i+i+s+s+(void 0===n?"":n+n)),i=yi.exec(e);return i?{a:i[fi.a]?Number.parseInt(i[fi.a],16)/255:1,b:Number.parseInt(i[fi.b]??"0",16),g:Number.parseInt(i[fi.g]??"0",16),r:Number.parseInt(i[fi.r]??"0",16)}:void 0}}async function vi(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addColorManager("hex",new mi)})}var Pi;!function(t){t[t.h=1]="h",t[t.s=2]="s",t[t.l=3]="l",t[t.a=5]="a"}(Pi||(Pi={}));const bi=/hsla?\(\s*(\d+)\s*[\s,]\s*(\d+)%\s*[\s,]\s*(\d+)%\s*([\s,]\s*(0|1|0?\.\d+|(\d{1,3})%)\s*)?\)/i;class wi{accepts(t){return t.startsWith("hsl")}handleColor(t){const e=t.value.hsl??t.value;if("h"in e&&"s"in e&&"l"in e)return Xe(e)}handleRangeColor(t){const e=t.value.hsl??t.value;if("h"in e&&"s"in e&&"l"in e)return Xe({h:G(e.h),l:G(e.l),s:G(e.s)})}parseString(t){if(!this.accepts(t))return;const e=bi.exec(t);return e?Ye({a:e.length>4?it(e[Pi.a]):1,h:Number.parseInt(e[Pi.h]??"0",10),l:Number.parseInt(e[Pi.l]??"0",10),s:Number.parseInt(e[Pi.s]??"0",10)}):void 0}}async function Mi(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addColorManager("hsl",new wi)})}class xi{id="move";#p;constructor(t){this.#p=t}async getPlugin(t){const{MovePluginInstance:e}=await Promise.resolve().then(function(){return hs});return new e(this.#p,t)}loadOptions(){}needsPlugin(){return!0}}async function zi(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{const e=t.pluginManager;e.initializers.pathGenerators??=new Map,e.pathGenerators??=new Map,e.addPathGenerator=(t,i)=>{e.initializers.pathGenerators??=new Map,e.initializers.pathGenerators.set(t,i)},e.getPathGenerators=async(t,i=!1)=>(e.initializers.pathGenerators??=new Map,e.pathGenerators??=new Map,Rt(t,e.pathGenerators,e.initializers.pathGenerators,i)),t.pluginManager.addPlugin(new xi(t.pluginManager))})}class Oi extends Jt{destroy;constructor(){super(),this.destroy=t.DestroyType.none,this.speed=2}load(t){super.load(t),R(t)||void 0!==t.destroy&&(this.destroy=t.destroy)}}class Si extends pe{animation;constructor(){super(),this.animation=new Oi,this.value=1}load(t){if(R(t))return;super.load(t);const e=t.animation;void 0!==e&&this.animation.load(e)}}class Ii{#u;constructor(t){this.#u=t}init(t){const e=t.options.opacity;if(!e)return;t.opacity=xt(e,1);const i=e.animation;i.enable&&(t.opacity.velocity=G(i.speed)/a*this.#u.retina.reduceFactor,i.sync||(t.opacity.velocity*=A()))}isEnabled(t){return!t.destroyed&&!t.spawning&&!!t.opacity&&t.opacity.enable&&((t.opacity.maxLoops??0)<=0||(t.opacity.maxLoops??0)>0&&(t.opacity.loops??0)<(t.opacity.maxLoops??0))}loadOptions(t,...e){t.opacity??=new Si;for(const i of e)t.opacity.load(i?.opacity)}reset(t){t.opacity&&(t.opacity.time=0,t.opacity.loops=0)}update(t,e){this.isEnabled(t)&&t.opacity&&t.options.opacity&&St(t,t.opacity,!0,t.options.opacity.animation.destroy,e)}}async function Ci(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("opacity",t=>Promise.resolve(new Ii(t)))})}class Di{modes;#u;#m;constructor(e){this.#u=e,this.modes=[t.OutMode.bounce,t.OutMode.split],this.#m=e.plugins.filter(t=>void 0!==t.particleBounce)}update(e,i,s,n){if(!this.modes.includes(n))return;const a=this.#u;let o=!1;for(const t of this.#m)if(o=t.particleBounce?.(e,s,i)??!1,o)break;if(o)return;const r=e.getPosition(),l=e.offset,c=e.getRadius(),h=Pt(r,c),d=a.canvas.size,u=!e.isInsideCanvasForOutMode(n,i);!function(e){if(e.outMode!==t.OutMode.bounce&&e.outMode!==t.OutMode.split||e.direction!==t.OutModeDirection.left&&e.direction!==t.OutModeDirection.right)return;e.bounds.right<0&&e.direction===t.OutModeDirection.left?e.particle.position.x=e.size+e.offset.x:e.bounds.left>e.canvasSize.width&&e.direction===t.OutModeDirection.right&&(e.particle.position.x=e.canvasSize.width-e.size-e.offset.x);const i=e.particle.velocity.x;let s=!1;if(e.outOfCanvas&&(e.direction===t.OutModeDirection.right&&i>0||e.direction===t.OutModeDirection.left&&i<0)){const t=G(e.particle.options.bounce.horizontal.value);e.particle.velocity.x*=-t,s=!0}if(!s)return;const n=e.offset.x+e.size;e.outOfCanvas&&e.direction===t.OutModeDirection.right?e.particle.position.x=e.canvasSize.width-n:e.outOfCanvas&&e.direction===t.OutModeDirection.left&&(e.particle.position.x=n),e.outMode===t.OutMode.split&&e.particle.destroy()}({particle:e,outMode:n,direction:i,bounds:h,canvasSize:d,offset:l,outOfCanvas:u,size:c}),function(e){if(e.outMode!==t.OutMode.bounce&&e.outMode!==t.OutMode.split||e.direction!==t.OutModeDirection.bottom&&e.direction!==t.OutModeDirection.top)return;e.bounds.bottom<0&&e.direction===t.OutModeDirection.top?e.particle.position.y=e.size+e.offset.y:e.bounds.top>e.canvasSize.height&&e.direction===t.OutModeDirection.bottom&&(e.particle.position.y=e.canvasSize.height-e.size-e.offset.y);const i=e.particle.velocity.y;let s=!1;if(e.outOfCanvas&&(e.direction===t.OutModeDirection.bottom&&i>0||e.direction===t.OutModeDirection.top&&i<0)){const t=G(e.particle.options.bounce.vertical.value);e.particle.velocity.y*=-t,s=!0}if(!s)return;const n=e.offset.y+e.size;e.outOfCanvas&&e.direction===t.OutModeDirection.bottom?e.particle.position.y=e.canvasSize.height-n:e.outOfCanvas&&e.direction===t.OutModeDirection.top&&(e.particle.position.y=n),e.outMode===t.OutMode.split&&e.particle.destroy()}({particle:e,outMode:n,direction:i,bounds:h,canvasSize:d,offset:l,outOfCanvas:u,size:c})}}class ki{modes;constructor(e){this.modes=[t.OutMode.destroy]}update(e,i,s,n){if(this.modes.includes(n)){switch(e.outType){case t.ParticleOutType.normal:case t.ParticleOutType.outside:if(e.isInsideCanvasForOutMode(n,i))return;break;case t.ParticleOutType.inside:{const{dx:t,dy:i}=N(e.position,e.moveCenter),{x:s,y:n}=e.velocity;if(s<0&&t>e.moveCenter.radius||n<0&&i>e.moveCenter.radius||s>=0&&t<-e.moveCenter.radius||n>=0&&i<-e.moveCenter.radius)return;break}}e.destroy(!0)}}}class Ri{modes;#u;constructor(e){this.#u=e,this.modes=[t.OutMode.none]}update(e,i,s,n){if(!this.modes.includes(n))return;if((e.options.move.distance.horizontal&&(i===t.OutModeDirection.left||i===t.OutModeDirection.right))??(e.options.move.distance.vertical&&(i===t.OutModeDirection.top||i===t.OutModeDirection.bottom)))return;const a=e.options.move.gravity,o=this.#u,r=o.canvas.size,c=e.getRadius();if(a.enable){const s=e.position;(!a.inverse&&s.y>r.height+c&&i===t.OutModeDirection.bottom||a.inverse&&s.y<-c&&i===t.OutModeDirection.top)&&e.destroy()}else{if(e.velocity.y>0&&e.position.y<=r.height+c||e.velocity.y<0&&e.position.y>=-c||e.velocity.x>0&&e.position.x<=r.width+c||e.velocity.x<0&&e.position.x>=-c)return;mt(e.position,o.canvas.size,l,c,i)||e.destroy()}}}const _i=O.origin;class Ti{modes;#u;constructor(e){this.#u=e,this.modes=[t.OutMode.out]}update(e,i,s,n){if(!this.modes.includes(n))return;const a=this.#u;switch(e.outType){case t.ParticleOutType.inside:{const{x:t,y:i}=e.velocity;_i.setTo(l),_i.length=e.moveCenter.radius,_i.angle=e.velocity.angle+Math.PI,_i.addTo(e.moveCenter);const{dx:s,dy:n}=N(e.position,_i);if(t<=0&&s>=0||i<=0&&n>=0||t>=0&&s<=0||i>=0&&n<=0)return;e.position.x=Math.floor($({min:0,max:a.canvas.size.width})),e.position.y=Math.floor($({min:0,max:a.canvas.size.height}));const{dx:o,dy:r}=N(e.position,e.moveCenter);e.direction=Math.atan2(-r,-o),e.velocity.angle=e.direction,e.justWarped=!0;break}default:if(e.isInsideCanvasForOutMode(n,i))return;switch(e.outType){case t.ParticleOutType.outside:{e.position.x=Math.floor($({min:-e.moveCenter.radius,max:e.moveCenter.radius}))+e.moveCenter.x,e.position.y=Math.floor($({min:-e.moveCenter.radius,max:e.moveCenter.radius}))+e.moveCenter.y;const{dx:t,dy:i}=N(e.position,e.moveCenter);e.moveCenter.radius&&(e.direction=Math.atan2(i,t),e.velocity.angle=e.direction),e.justWarped=!0;break}case t.ParticleOutType.normal:{const s=e.options.move.warp,n=a.canvas.size,o={bottom:n.height+e.getRadius()+e.offset.y,left:-e.getRadius()-e.offset.x,right:n.width+e.getRadius()+e.offset.x,top:-e.getRadius()-e.offset.y},r=e.getRadius(),l=Pt(e.position,r);i===t.OutModeDirection.right&&l.left>n.width+e.offset.x?(e.position.x=o.left,e.initialPosition.x=e.position.x,s||(e.position.y=A()*n.height,e.initialPosition.y=e.position.y),e.justWarped=!0):i===t.OutModeDirection.left&&l.right<-e.offset.x&&(e.position.x=o.right,e.initialPosition.x=e.position.x,s||(e.position.y=A()*n.height,e.initialPosition.y=e.position.y),e.justWarped=!0),i===t.OutModeDirection.bottom&&l.top>n.height+e.offset.y?(s||(e.position.x=A()*n.width,e.initialPosition.x=e.position.x),e.position.y=o.top,e.initialPosition.y=e.position.y,e.justWarped=!0):i===t.OutModeDirection.top&&l.bottom<-e.offset.y&&(s||(e.position.x=A()*n.width,e.initialPosition.x=e.position.x),e.position.y=o.bottom,e.initialPosition.y=e.position.y,e.justWarped=!0);break}}}}}class Ei{updaters;#u;constructor(t){this.#u=t,this.updaters=new Map}init(e){this.#v(e,t.OutMode.bounce,t=>new Di(t)),this.#v(e,t.OutMode.out,t=>new Ti(t)),this.#v(e,t.OutMode.destroy,t=>new ki(t)),this.#v(e,t.OutMode.none,t=>new Ri(t))}isEnabled(t){return!t.destroyed&&!t.spawning}update(e,i){const s=e.options.move.outModes;e.justWarped=!1,this.#P(e,i,s.bottom??s.default,t.OutModeDirection.bottom),this.#P(e,i,s.left??s.default,t.OutModeDirection.left),this.#P(e,i,s.right??s.default,t.OutModeDirection.right),this.#P(e,i,s.top??s.default,t.OutModeDirection.top)}#v=(t,e,i)=>{const s=t.options.move.outModes;!this.updaters.has(e)&&((t,e)=>t.default===e||t.bottom===e||t.left===e||t.right===e||t.top===e)(s,e)&&this.updaters.set(e,i(this.#u))};#P=(t,e,i,s)=>{for(const n of this.updaters.values())n.update(t,s,e,i)}}async function Ai(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("outModes",t=>Promise.resolve(new Ei(t)))})}class Fi{#u;#p;constructor(t,e){this.#u=e,this.#p=t}init(t){const e=this.#u,i=t.options,s=Mt(i.paint,t.id,i.reduceDuplicates),n=s?.color,a=n??void 0,o=s?.fill,r=s?.stroke;if(o){const i=ie.create(void 0===a?void 0:ie.create(void 0,a),o.color);t.fillEnabled=o.enable,t.fillOpacity=G(o.opacity),t.fillAnimation=i.animation;const s=Ne(this.#p,i);s&&(t.fillColor=si(s,t.fillAnimation,e.retina.reduceFactor))}else t.fillEnabled=!1,t.fillAnimation=void 0,t.fillColor=void 0,t.fillOpacity=1;if(r){const i=ie.create(void 0===a?void 0:ie.create(void 0,a),r.color);t.strokeWidth=G(r.width)*e.retina.pixelRatio,t.strokeOpacity=G(r.opacity??1),t.strokeAnimation=i.animation;const s=Ne(this.#p,i)??t.getFillColor();s&&(t.strokeColor=si(s,t.strokeAnimation,e.retina.reduceFactor))}else t.strokeAnimation=void 0,t.strokeColor=void 0,t.strokeOpacity=1,t.strokeWidth=0}isEnabled(t){const{fillAnimation:e,fillColor:i,strokeAnimation:s,strokeColor:n}=t,a=!!e&&(void 0!==i?.h.value&&i.h.enable||void 0!==i?.s.value&&i.s.enable||void 0!==i?.l.value&&i.l.enable),o=!!s&&(void 0!==n?.h.value&&n.h.enable||void 0!==n?.s.value&&n.s.enable||void 0!==n?.l.value&&n.l.enable);return!t.destroyed&&!t.spawning&&(a||o)}update(t,e){this.isEnabled(t)&&(oi(t.fillColor,e),oi(t.strokeColor,e))}}async function Li(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("paint",e=>Promise.resolve(new Fi(t.pluginManager,e)))})}var Bi;!function(t){t[t.r=1]="r",t[t.g=2]="g",t[t.b=3]="b",t[t.a=5]="a"}(Bi||(Bi={}));const Vi=/rgba?\(\s*(\d{1,3})\s*[\s,]\s*(\d{1,3})\s*[\s,]\s*(\d{1,3})\s*([\s,]\s*(0|1|0?\.\d+|(\d{1,3})%)\s*)?\)/i;class Ui{accepts(t){return t.startsWith("rgb")}handleColor(t){const e=t.value.rgb??t.value;if("r"in e&&"g"in e&&"b"in e)return e}handleRangeColor(t){const e=t.value.rgb??t.value;if("r"in e&&"g"in e&&"b"in e)return{r:G(e.r),g:G(e.g),b:G(e.b)}}parseString(t){if(!this.accepts(t))return;const e=Vi.exec(t);return e?{a:e.length>4?it(e[Bi.a]):1,b:parseInt(e[Bi.b]??"0",10),g:parseInt(e[Bi.g]??"0",10),r:parseInt(e[Bi.r]??"0",10)}:void 0}}async function $i(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addColorManager("rgb",new Ui)})}class Gi extends Jt{destroy;constructor(){super(),this.destroy=t.DestroyType.none,this.speed=5}load(t){super.load(t),R(t)||void 0!==t.destroy&&(this.destroy=t.destroy)}}class Wi extends pe{animation;constructor(){super(),this.animation=new Gi,this.value=3}load(t){if(super.load(t),R(t))return;const e=t.animation;void 0!==e&&this.animation.load(e)}}class qi{#u;constructor(t){this.#u=t}init(t){const e=this.#u,i=t.options.size;if(!i)return;const s=i.animation;s.enable&&(t.size.velocity=t.retina.sizeAnimationSpeed/a*e.retina.reduceFactor,s.sync||(t.size.velocity*=A()))}isEnabled(t){return!t.destroyed&&!t.spawning&&t.size.enable&&((t.size.maxLoops??0)<=0||(t.size.maxLoops??0)>0&&(t.size.loops??0)<(t.size.maxLoops??0))}loadOptions(t,...e){t.size??=new Wi;for(const i of e)t.size.load(i?.size)}preInit(t){const e=this.#u.retina.pixelRatio,i=t.options.size;i&&(t.size=xt(i,e),t.retina.sizeAnimationSpeed=G(i.animation.speed)*e)}reset(t){t.size.time=0,t.size.loops=0}update(t,e){this.isEnabled(t)&&t.options.size&&St(t,t.size,!0,t.options.size.animation.destroy,e)}}async function Hi(t){t.checkVersion("4.1.2"),await t.pluginManager.register(t=>{t.pluginManager.addParticleUpdater("size",t=>Promise.resolve(new qi(t)))})}async function Ni(t){t.checkVersion("4.1.2"),await t.pluginManager.register(async t=>{await Promise.all([di(t),vi(t),Mi(t),$i(t),zi(t),pi(t),Li(t),Ci(t),Ai(t),Hi(t)])})}const ji=globalThis;ji.loadBasic=Ni,ji.tsParticles=li;function Qi(t,e,i){const s=e[i];void 0!==s&&(t[i]=(t[i]??1)*s)}class Xi{#b;#w;#M;#x;#z;#u;#O;#S;#I;#C;#D;#k;#R;#_;#p;#T;#E;#A={};#F=[void 0,void 0];#L={};constructor(t,e,i){this.#p=t,this.#u=e,this.#w=i,this.#O=null,this.#E=[],this.#T=[],this.#z=[],this.#b=[],this.#M=[],this.#x=[],this.#I=[],this.#C=[],this.#D=[],this.#k=[],this.#_=[],this.#R=[]}get settings(){return this.#S}canvasClear(){this.#u.actualOptions.clear&&this.draw(t=>{Te(t,this.#w.size)})}clear(){let t=!1;for(const e of this.#b)if(t=e.canvasClear?.()??!1,t)break;t||this.canvasClear()}destroy(){this.stop(),this.#E=[],this.#T=[],this.#z=[],this.#b=[],this.#M=[],this.#x=[],this.#I=[],this.#C=[],this.#D=[],this.#k=[],this.#_=[],this.#R=[]}draw(t){const e=this.#O;if(e)return t(e)}drawParticle(t,e){if(t.spawning||t.destroyed)return;const i=t.getRadius();if(i<=0)return;const s=t.getFillColor(),n=t.getStrokeColor();let[a,o]=this.#B(t);if(a??=s,o??=n,!a&&!o)return;const r=this.#u,l=t.options.zIndex,c=1-t.zIndexFactor,{fillOpacity:h,opacity:d,strokeOpacity:u}=t.getOpacity(),p=this.#L,f=this.#A,g=a?ti(a,r.hdr,h*d):void 0,y=o?ti(o,r.hdr,u*d):g;p.a=p.b=p.c=p.d=void 0,f.fill=g,f.stroke=y,this.draw(s=>{for(const i of this.#D)i.drawParticleSetup?.(s,t,e);this.#V(s,t,i,d,f,p),Ee({container:r,context:s,particle:t,delta:e,colorStyles:f,radius:i*c**l.sizeRate,opacity:d,transform:p}),this.#U(t);for(const i of this.#C)i.drawParticleCleanup?.(s,t,e)})}drawParticlePlugins(t,e){this.draw(i=>{for(const s of this.#I)Ue(i,s,t,e)})}drawParticles(t){const{particles:e}=this.#u;this.clear(),e.update(t),this.draw(i=>{for(const e of this.#_)e.drawSettingsSetup?.(i,t);for(const e of this.#k)e.draw?.(i,t);e.drawParticles(t);for(const e of this.#x)e.clearDraw?.(i,t);for(const e of this.#R)e.drawSettingsCleanup?.(i,t)})}init(){this.initUpdaters(),this.initPlugins(),this.paint()}initPlugins(){this.#z=[],this.#b=[],this.#M=[],this.#x=[],this.#I=[],this.#D=[],this.#C=[],this.#k=[],this.#_=[],this.#R=[];for(const t of this.#u.plugins)(t.particleFillColor??t.particleStrokeColor)&&this.#z.push(t),t.canvasClear&&this.#b.push(t),t.canvasPaint&&this.#M.push(t),t.drawParticle&&this.#I.push(t),t.drawParticleSetup&&this.#D.push(t),t.drawParticleCleanup&&this.#C.push(t),t.draw&&this.#k.push(t),t.drawSettingsSetup&&this.#_.push(t),t.drawSettingsCleanup&&this.#R.push(t),t.clearDraw&&this.#x.push(t)}initUpdaters(){this.#E=[],this.#T=[];for(const t of this.#u.particleUpdaters)t.afterDraw&&this.#T.push(t),(t.getColorStyles??t.getTransformValues??t.beforeDraw)&&this.#E.push(t)}paint(){let t=!1;for(const e of this.#M)if(t=e.canvasPaint?.()??!1,t)break;t||this.paintBase()}paintBase(t){this.draw(e=>{Re(e,this.#w.size,t)})}paintImage(t,e){this.draw(i=>{_e(i,this.#w.size,t,e)})}setContext(t){this.#O=t,this.#O&&(this.#O.globalCompositeOperation=i)}setContextSettings(t){this.#S=t}stop(){this.draw(t=>{Te(t,this.#w.size)})}#U=t=>{for(const e of this.#T)e.afterDraw?.(t)};#V=(t,e,i,s,n,a)=>{for(const o of this.#E){if(o.getColorStyles){const{fill:a,stroke:r}=o.getColorStyles(e,t,i,s);a&&(n.fill=a),r&&(n.stroke=r)}if(o.getTransformValues){const t=o.getTransformValues(e);for(const e in t)Qi(a,t,e)}o.beforeDraw?.(e)}};#B=t=>{let e,i;for(const s of this.#z)if(!e&&s.particleFillColor&&(e=Ne(this.#p,s.particleFillColor(t))),!i&&s.particleStrokeColor&&(i=Ne(this.#p,s.particleStrokeColor(t))),e&&i)break;return this.#F[0]=e,this.#F[1]=i,this.#F}}const Yi=new WeakMap;function Zi(t,e,i=!1){if(!e)return;const s=t.style,n=new Set;for(let t=0;t<s.length;t++){const e=s.item(t);e&&n.add(e)}for(let t=0;t<e.length;t++){const i=e.item(t);i&&n.add(i)}for(const t of n){const n=e.getPropertyValue(t);n?s.setProperty(t,n,i?"important":""):s.removeProperty(t)}}class Ji{domElement;render;renderCanvas;size;zoom=1;#u;#$;#G;#W;#p;#q;#H;#N;#j;constructor(t,e){this.#p=t,this.#u=e,this.render=new Xi(t,e,this),this.#N={height:0,width:0};const i=e.retina.pixelRatio,s=this.#N;this.size={height:s.height*i,width:s.width*i},this.#$=!1,this.#H=[],this.#q="none"}get#Q(){return this.#u.actualOptions.fullScreen.enable}destroy(){if(this.stop(),this.#$){const t=this.domElement;t?.remove(),this.domElement=void 0,this.renderCanvas=void 0}else this.#X();this.render.destroy(),this.#H=[]}getZoomCenter(){const t=this.#u.retina.pixelRatio,{width:e,height:i}=this.size;return this.#j?this.#j:{x:e*o/t,y:i*o/t}}init(){this.#Y(t=>{t.disconnect()}),this.#G=pt(t=>{for(const e of t)"attributes"===e.type&&"style"===e.attributeName&&this.#Z()}),this.resize(),this.#J(),this.initBackground(),this.#Y(t=>{const e=this.domElement;e&&e instanceof Node&&t.observe(e,{attributes:!0})}),this.initPlugins(),this.render.init()}initBackground(){const t=this.#u,e=t.actualOptions.background,i=this.domElement;if(!i)return;const s=i.style,n=qe(this.#p,e.color);s.backgroundColor=n?Je(n,t.hdr,e.opacity):"",s.backgroundImage=e.image||"",s.backgroundPosition=e.position||"",s.backgroundRepeat=e.repeat||"",s.backgroundSize=e.size||""}initPlugins(){this.#H=[];for(const t of this.#u.plugins)t.resize&&this.#H.push(t)}loadCanvas(t){this.#$&&this.domElement&&this.domElement.remove();const i=this.#u,s=(t=>"undefined"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement)(t)?t:void 0;this.domElement=s,this.#$=!!s&&"true"===s.dataset[e],this.renderCanvas=s?(t=>{const e=Yi.get(t);if(e)return e;if("function"!=typeof t.transferControlToOffscreen)throw new TypeError("OffscreenCanvas is required but not supported by this browser");try{const e=t.transferControlToOffscreen();return Yi.set(t,e),e}catch{throw new TypeError("OffscreenCanvas transfer failed")}})(s):t;const n=this.domElement;n&&(n.ariaHidden="true",this.#W=It(n.style));const a=this.#N,o=this.renderCanvas;n?(a.height=n.offsetHeight,a.width=n.offsetWidth):(a.height=o.height,a.width=o.width);const r=this.#u.retina.pixelRatio,l=this.size;o.height=l.height=a.height*r,o.width=l.width=a.width*r;const c=ut("(color-gamut: p3)");this.render.setContextSettings({alpha:!0,colorSpace:c?.matches&&i.hdr?"display-p3":"srgb",desynchronized:!0,willReadFrequently:!1}),this.render.setContext(o.getContext("2d",this.render.settings)),this.#Y(t=>{t.disconnect()}),i.retina.init(),this.initBackground(),this.#Y(t=>{const e=this.domElement;e&&e instanceof Node&&t.observe(e,{attributes:!0})})}resize(){const t=this.domElement;if(!t)return!1;const e=this.#u,i=this.renderCanvas;if(void 0===i)return!1;const s=e.canvas.#N,n={width:t.offsetWidth,height:t.offsetHeight},a=e.retina.pixelRatio,o={width:n.width*a,height:n.height*a};if(n.height===s.height&&n.width===s.width&&o.height===i.height&&o.width===i.width)return!1;const r={...s};s.height=n.height,s.width=n.width;const l=this.size;return i.width=l.width=o.width,i.height=l.height=o.height,this.#u.started&&e.particles.setResizeFactor({width:s.width/r.width,height:s.height/r.height}),!0}setPointerEvents(t){this.domElement&&(this.#q=t,this.#Z())}setZoom(t,e){this.zoom=t,this.#j=e}stop(){this.#Y(t=>{t.disconnect()}),this.#G=void 0,this.render.stop()}async windowResize(){if(!this.domElement||!this.resize())return;const t=this.#u,e=t.updateActualOptions();t.particles.setDensity(),this.#K(),e&&await t.refresh()}#K=()=>{for(const t of this.#H)t.resize?.()};#J=()=>{const t=this.domElement,e=this.#u.actualOptions;if(t){this.#Q?this.#tt():this.#X();for(const i in e.style){if(!i||!(i in e.style))continue;const s=e.style[i];s&&t.style.setProperty(i,s,"important")}}};#Z=()=>{const t=this.domElement;if(!t)return;this.#Y(t=>{t.disconnect()}),this.#J(),this.initBackground();const e=this.#q;t.style.pointerEvents=e,t.style.setProperty("pointer-events",e),this.#Y(e=>{t instanceof Node&&e.observe(t,{attributes:!0})})};#X=()=>{const t=this.domElement,e=this.#W;t&&e&&Zi(t,e,!0)};#Y=t=>{this.#G&&t(this.#G)};#tt=()=>{const t=this.domElement;t&&Zi(t,Ct(this.#u.actualOptions.fullScreen.zIndex),!0)}}class Ki{#u;#et;#it;#st;constructor(t){this.#u=t,this.#et={visibilityChange:()=>{this.#nt()},resize:()=>{this.#at()}}}addListeners(){this.#ot(!0)}removeListeners(){this.#ot(!1)}#nt=()=>{const t=this.#u;t.actualOptions.pauseOnBlur&&(dt().hidden?(t.pageHidden=!0,t.pause()):(t.pageHidden=!1,t.animationStatus?t.play(!0):t.draw(!0)))};#at=()=>{this.#st&&(clearTimeout(this.#st),this.#st=void 0);const t=async()=>{const t=this.#u.canvas;await t.windowResize()};this.#st=setTimeout(()=>{t()},this.#u.actualOptions.resize.delay*r)};#ot=t=>{const e=this.#et;this.#rt(t),Dt(document,n,e.visibilityChange,t,!1)};#rt=t=>{const e=this.#et,i=this.#u;if(!i.actualOptions.resize.enable)return;if("undefined"==typeof ResizeObserver)return void Dt(globalThis,s,e.resize,t);const n=i.canvas.domElement;this.#it&&!t?(n&&this.#it.unobserve(n),this.#it.disconnect(),this.#it=void 0):!this.#it&&t&&n&&(this.#it=new ResizeObserver(t=>{t.find(t=>t.target===n)&&this.#at()}),this.#it.observe(n))}}function ts(t){if(!ft(t.outMode,t.checkModes))return;const e=2*t.radius;t.coord>t.maxCoord-e?t.setCb(-t.radius):t.coord<e&&t.setCb(t.radius)}class es{backColor;bubble;destroyed;direction;effect;effectClose;effectData;fillColor;fillEnabled;fillOpacity;group;id;ignoresResizeRatio;initialPosition;initialVelocity;isRotating;justWarped;lastPathTime;misplaced;moveCenter;offset;opacity;options;outType;pathRotation;position;randomIndexData;retina;roll;rotation;shape;shapeClose;shapeData;sides;size;slow;spawning;strokeColor;strokeOpacity;strokeWidth;unbreakable;velocity;zIndexFactor;#lt={fillOpacity:1,opacity:1,strokeOpacity:1};#ct=z.origin;#ht={sin:0,cos:0};#dt={a:1,b:0,c:0,d:1};#u;#p;constructor(t,e){this.#p=t,this.#u=e}destroy(e){if(this.unbreakable||this.destroyed)return;this.destroyed=!0,this.bubble.inRange=!1,this.slow.inRange=!1;const i=this.#u,s=this.shape?i.shapeDrawers.get(this.shape):void 0;s?.particleDestroy?.(this);for(const t of i.particleDestroyedPlugins)t.particleDestroyed?.(this,e);for(const t of i.particleUpdaters)t.particleDestroyed?.(this,e);this.#u.dispatchEvent(t.EventType.particleDestroyed,{particle:this})}draw(t){const e=this.#u.canvas.render;e.drawParticlePlugins(this,t),e.drawParticle(this,t)}getAngle(){return this.rotation+(this.pathRotation?this.velocity.angle:0)}getFillColor(){return this.#ut(this.bubble.color??ii(this.fillColor))}getMass(){return this.getRadius()**2*Math.PI*o}getOpacity(){const t=this.options.zIndex,e=(1-this.zIndexFactor)**t.opacityRate,i=this.bubble.opacity??G(this.opacity?.value??1),s=this.fillOpacity??1,n=this.strokeOpacity??1;return this.#lt.fillOpacity=i*s*e,this.#lt.opacity=i*e,this.#lt.strokeOpacity=i*n*e,this.#lt}getPosition(){return this.#ct.x=this.position.x+this.offset.x,this.#ct.y=this.position.y+this.offset.y,this.#ct.z=this.position.z,this.#ct}getRadius(){return this.bubble.radius??this.size.value}getRotateData(){const t=this.getAngle();return this.#ht.sin=Math.sin(t),this.#ht.cos=Math.cos(t),this.#ht}getStrokeColor(){return this.#ut(this.bubble.color??ii(this.strokeColor))}getTransformData(t){const e=this.getRotateData(),i=this.isRotating;return this.#dt.a=e.cos*(t.a??c.a),this.#dt.b=i?e.sin*(t.b??1):t.b??c.b,this.#dt.c=i?-e.sin*(t.c??1):t.c??c.c,this.#dt.d=e.cos*(t.d??c.d),this.#dt}init(e,i,s,n){const a=this.#u;this.id=e,this.group=n,this.justWarped=!1,this.effectClose=!0,this.shapeClose=!0,this.pathRotation=!1,this.lastPathTime=0,this.destroyed=!1,this.unbreakable=!1,this.isRotating=!1,this.rotation=0,this.misplaced=!1,this.retina={maxDistance:{},maxSpeed:0,moveDrift:0,moveSpeed:0,sizeAnimationSpeed:0},this.size={value:1,max:1,min:1,enable:!1},this.outType=t.ParticleOutType.normal,this.ignoresResizeRatio=!0;const o=a.actualOptions,r=De(this.#p,a,o.particles),l=r.reduceDuplicates,c=r.effect.type,d=r.shape.type;this.effect=Mt(c,this.id,l),this.shape=Mt(d,this.id,l);const u=r.effect,p=r.shape;if(s){if(s.effect?.type&&s.effect.type!==this.effect){const t=Mt(s.effect.type,this.id,l);t&&(this.effect=t,u.load(s.effect))}if(s.shape?.type&&s.shape.type!==this.shape){const t=Mt(s.shape.type,this.id,l);t&&(this.shape=t,p.load(s.shape))}}if(this.effect===h){const t=[...this.#u.effectDrawers.keys()];this.effect=t[Math.floor(A()*t.length)]}if(this.shape===h){const t=[...this.#u.shapeDrawers.keys()];this.shape=t[Math.floor(A()*t.length)]}this.effectData=this.effect?function(t,e,i,s){const n=e.options[t];return bt({close:e.close},Mt(n,i,s))}(this.effect,u,this.id,l):void 0,this.shapeData=this.shape?function(t,e,i,s){const n=e.options[t];return bt({close:e.close},Mt(n,i,s))}(this.shape,p,this.id,l):void 0,r.load(s);const f=this.effectData,g=this.shapeData;f&&r.load(f.particles),g&&r.load(g.particles),this.effectClose=f?.close??r.effect.close,this.shapeClose=g?.close??r.shape.close,this.options=r,a.retina.initParticle(this);for(const t of a.particleUpdaters)t.preInit?.(this);let y,m;this.bubble={inRange:!1},this.slow={inRange:!1,factor:1},this.#pt(i),this.initialVelocity=this.#ft(),this.velocity=this.initialVelocity.copy(),this.zIndexFactor=this.position.z/a.zLayers,this.sides=24,this.effect&&(y=a.effectDrawers.get(this.effect)),y?.loadEffect&&y.loadEffect(this),this.shape&&(m=a.shapeDrawers.get(this.shape)),m?.loadShape&&m.loadShape(this);const v=m?.getSidesCount;v&&(this.sides=v(this)),this.spawning=!1;for(const t of a.particleUpdaters)t.init(this);y?.particleInit?.(a,this),m?.particleInit?.(a,this);for(const t of a.particleCreatedPlugins)t.particleCreated?.(this)}isInsideCanvas(t){return this.#gt({direction:t}).inside}isInsideCanvasForOutMode(t,e){return this.#gt({direction:e,outMode:t}).inside}isShowingBack(){if(!this.roll)return!1;const t=this.roll.angle;if(this.roll.horizontal&&this.roll.vertical){const e=t%u,i=e<0?e+u:e;return i>=Math.PI*o&&i<3*Math.PI*o}if(this.roll.horizontal){const e=(t+Math.PI*o)%(2*Math.PI),i=e<0?e+2*Math.PI:e;return i>=Math.PI&&i<2*Math.PI}if(this.roll.vertical){const e=t%(2*Math.PI),i=e<0?e+2*Math.PI:e;return i>=Math.PI&&i<2*Math.PI}return!1}isVisible(){return!this.destroyed&&!this.spawning&&this.isInsideCanvas()}reset(){for(const t of this.#u.particleUpdaters)t.reset?.(this)}#yt=(t,e)=>{let i=0,s=t?z.create(t.x,t.y,e):void 0;const n=this.#u,a=n.particlePositionPlugins,o=this.options.move.outModes,r=this.getRadius(),l=n.canvas.size,c=new AbortController,{signal:h}=c;for(;!h.aborted;){for(const t of a){const i=t.particlePosition?.(s,this);if(i)return z.create(i.x,i.y,e)}const t=et({size:l,position:s}),c=z.create(t.x,t.y,e);this.#mt(c,r,o.left??o.default),this.#mt(c,r,o.right??o.default),this.#vt(c,r,o.top??o.default),this.#vt(c,r,o.bottom??o.default);let h=!0;for(const t of n.particles.checkParticlePositionPlugins)if(h=t.checkParticlePosition?.(this,c,i)??!0,!h)break;if(h)return c;i+=1,s=void 0}return s};#ft=()=>{const e=this.options.move,i=J(this.direction).copy();if(e.direction===t.MoveDirection.inside||e.direction===t.MoveDirection.outside)return i;const s=Y(G(e.angle.value)),n=Y(G(e.angle.offset)),a={left:n-s*o,right:n+s*o};return e.straight||(i.angle+=$(H(a.left,a.right))),e.random&&"number"==typeof e.speed&&(i.length*=A()),i};#mt=(e,i,s)=>{ts({outMode:s,checkModes:[t.OutMode.bounce],coord:e.x,maxCoord:this.#u.canvas.size.width,setCb:t=>e.x+=t,radius:i})};#vt=(e,i,s)=>{ts({outMode:s,checkModes:[t.OutMode.bounce],coord:e.y,maxCoord:this.#u.canvas.size.height,setCb:t=>e.y+=t,radius:i})};#Pt=(e,i)=>{const s=this.getRadius(),n=this.#u.canvas.size,a=this.position,o=i===t.OutMode.bounce;return e===t.OutModeDirection.bottom?{inside:o?a.y+s<n.height:a.y-s<n.height,reason:"default"}:e===t.OutModeDirection.left?{inside:o?a.x-s>0:a.x+s>0,reason:"default"}:e===t.OutModeDirection.right?{inside:o?a.x+s<n.width:a.x-s<n.width,reason:"default"}:e===t.OutModeDirection.top?{inside:o?a.y-s>0:a.y+s>0,reason:"default"}:{inside:a.x>=-s&&a.y>=-s&&a.y<=n.height+s&&a.x<=n.width+s,reason:"default"}};#bt=(t,e)=>({canvasSize:this.#u.canvas.size,direction:t,outMode:e,particle:this,radius:this.getRadius()});#gt=t=>{const e=this.#Pt(t.direction,t.outMode),i=this.#u,s=this.shape?i.shapeDrawers.get(this.shape):void 0,n=this.effect?i.effectDrawers.get(this.effect):void 0,a=s?.isInsideCanvas,o=n?.isInsideCanvas;if(!a&&!o)return e;const r=this.#bt(t.direction,t.outMode),l=a?this.#wt(a(r),"shape"):void 0,c=o?this.#wt(o(r),"effect"):void 0;if(l&&c){const t=Math.max(l.margin??0,c.margin??0);return{inside:l.inside&&c.inside,margin:t>0?t:void 0,reason:"combined"}}return l??c??e};#ut=t=>t&&this.roll&&(this.backColor||this.roll.alter)&&this.isShowingBack()?this.backColor?this.backColor:this.roll.alter?ri(t,this.roll.alter.type,this.roll.alter.value):t:t;#pt=e=>{const i=this.#u,s=Math.floor(G(this.options.zIndex.value)),n=this.#yt(e,V(s,0,i.zLayers));if(!n)throw new Error("a valid position cannot be found for particle");this.position=n,this.initialPosition=this.position.copy();const a=i.canvas.size;switch(this.moveCenter={...Ot(this.options.move.center,a),radius:this.options.move.center.radius,mode:this.options.move.center.mode},this.direction=Z(this.options.move.direction,this.position,this.moveCenter),this.options.move.direction){case t.MoveDirection.inside:this.outType=t.ParticleOutType.inside;break;case t.MoveDirection.outside:this.outType=t.ParticleOutType.outside}this.offset=O.origin};#wt=(t,e)=>"boolean"==typeof t?{inside:t,reason:e}:{inside:t.inside,margin:t.margin,reason:t.reason??e}}class is{#Mt;#xt=new Map;#zt=[];#Ot;#St;#It=[];#Ct;constructor(t){this.#Mt=t,this.#Ot=0,this.#Ct=0}clear(){this.#xt.clear();const t=this.#St;t&&(this.#Mt=t),this.#St=void 0}insert(t){const{x:e,y:i}=t.getPosition(),s=this.#Dt(e,i);this.#xt.has(s)||this.#xt.set(s,[]),this.#xt.get(s)?.push(t)}query(t,e,i=[]){const s=this.#kt(t);if(!s)return i;const n=Math.floor(s.minX/this.#Mt),a=Math.floor(s.maxX/this.#Mt),o=Math.floor(s.minY/this.#Mt),r=Math.floor(s.maxY/this.#Mt);for(let s=n;s<=a;s++)for(let n=o;n<=r;n++){const a=`${s}_${n}`,o=this.#xt.get(a);if(o)for(const s of o)e&&!e(s)||t.contains(s.getPosition())&&i.push(s)}return i}queryCircle(t,e,i,s=[]){const n=this.#Rt(t.x,t.y,e),a=this.query(n,i,s);return this.#_t(),a}queryRectangle(t,e,i,s=[]){const n=this.#Tt(t.x,t.y,e.width,e.height),a=this.query(n,i,s);return this.#_t(),a}setCellSize(t){this.#St=t}#Rt(t,e,i){return(this.#zt[this.#Ot++]??=new Xt(t,e,i)).reset(t,e,i)}#Tt(t,e,i,s){return(this.#It[this.#Ct++]??=new Yt(t,e,i,s)).reset(t,e,i,s)}#Dt(t,e){return`${Math.floor(t/this.#Mt)}_${Math.floor(e/this.#Mt)}`}#kt(t){if(t instanceof Xt){const e=t.radius,{x:i,y:s}=t.position;return{minX:i-e,maxX:i+e,minY:s-e,maxY:s+e}}if(t instanceof Yt){const{x:e,y:i}=t.position,{width:s,height:n}=t.size;return{minX:e,maxX:e+s,minY:i,maxY:i+n}}return null}#_t(){this.#Ot=0,this.#Ct=0}}class ss{checkParticlePositionPlugins;grid;#Et;#u;#At;#Ft;#Lt;#Bt;#Vt;#Ut;#p;#$t;#Gt;#Wt;#qt;#Ht;#Nt;constructor(t,e){this.#p=t,this.#u=e,this.#Lt=0,this.#Et=[],this.#$t=[],this.#Ft=0,this.#At=new Map,this.#Bt=new Map,this.#Nt=this.#jt(this.#u.zLayers),this.grid=new is(100),this.checkParticlePositionPlugins=[],this.#Vt=[],this.#Ut=[],this.#Wt=[],this.#Gt=[],this.#Ht=[]}get count(){return this.#Et.length}addParticle(e,i,s,n){const a=this.#u.actualOptions.particles.number.limit.mode,o=void 0===s?this.#Ft:this.#At.get(s)??this.#Ft,r=this.count;if(o>0)switch(a){case t.LimitMode.delete:{const t=r+1-o;t>0&&this.removeQuantity(t);break}case t.LimitMode.wait:if(r>=o)return}try{const a=this.#$t.pop()??new es(this.#p,this.#u);a.init(this.#Lt,e,i,s);let o=!0;return n&&(o=n(a)),o?(this.#Et.push(a),this.#Qt(a),this.#Lt++,this.#u.dispatchEvent(t.EventType.particleAdded,{particle:a}),a):void this.#$t.push(a)}catch(t){Lt().warning(`error adding particle: ${t}`)}}clear(){this.#Et=[],this.#Bt.clear(),this.#Xt(this.#u.zLayers)}destroy(){this.#Et=[],this.#$t.length=0,this.#Bt.clear(),this.#Nt=[],this.checkParticlePositionPlugins=[],this.#Vt=[],this.#Ut=[],this.#Wt=[],this.#Gt=[],this.#Ht=[]}drawParticles(t){for(let e=this.#Nt.length-1;e>=0;e--){const i=this.#Nt[e];if(i)for(const e of i)e.draw(t)}}filter(t){return this.#Et.filter(t)}find(t){return this.#Et.find(t)}get(t){return this.#Et[t]}async init(){const t=this.#u,e=t.actualOptions;this.checkParticlePositionPlugins=[],this.#Ht=[],this.#Ut=[],this.#Wt=[],this.#Vt=[],this.#Gt=[],this.#Bt.clear(),this.#Xt(t.zLayers),this.grid=new is(100*t.retina.pixelRatio);for(const e of t.plugins)e.redrawInit&&await e.redrawInit(),e.checkParticlePosition&&this.checkParticlePositionPlugins.push(e),e.update&&this.#Ht.push(e),e.particleUpdate&&this.#Ut.push(e),e.postUpdate&&this.#Wt.push(e),e.particleReset&&this.#Vt.push(e),e.postParticleUpdate&&this.#Gt.push(e);await this.#u.initDrawersAndUpdaters();for(const e of this.#u.effectDrawers.values())await(e.init?.(t));for(const e of this.#u.shapeDrawers.values())await(e.init?.(t));let i=!1;for(const e of t.plugins)if(i=e.particlesInitialization?.()??i,i)break;if(!i){const t=e.particles,i=t.groups;for(const e in i){const s=i[e];if(s)for(let i=this.count,n=0;n<s.number.value&&i<t.number.value;i++,n++)this.addParticle(void 0,s,e)}for(let e=this.count;e<t.number.value;e++)this.addParticle()}}push(t,e,i,s){for(let n=0;n<t;n++)this.addParticle(e,i,s)}async redraw(){this.clear(),await this.init(),this.#u.canvas.render.drawParticles({value:0,factor:0})}remove(t,e,i){this.removeAt(this.#Et.indexOf(t),void 0,e,i)}removeAt(t,e=1,i,s){if(t<0||t>this.count)return;let n=0;for(let a=t;n<e&&a<this.count;a++)this.#Yt(a,i,s)&&(a--,n++)}removeQuantity(t,e){this.removeAt(0,t,e)}setDensity(){const t=this.#u.actualOptions,e=t.particles.groups;let i=0;for(const t of this.#u.plugins)t.particlesDensityCount&&(i+=t.particlesDensityCount());for(const t in e){const s=e[t];if(!s)continue;const n=De(this.#p,this.#u,s);this.#Zt(n,i,t)}this.#Zt(t.particles,i)}setResizeFactor(t){this.#qt=t}update(t){this.grid.clear();for(const e of this.#Ht)e.update?.(t);const e=this.#Jt(t);for(const e of this.#Wt)e.postUpdate?.(t);if(this.#Kt(t,e),e.size)for(const t of e)this.remove(t);this.#qt=void 0}#te=(...t)=>{this.#$t.push(...t)};#Zt=(t,e,i,s)=>{const n=t.number;if(!n.density.enable)return void(void 0===i?this.#Ft=n.limit.value:(s?.number.limit.value??n.limit.value)&&this.#At.set(i,s?.number.limit.value??n.limit.value));const a=this.#ee(n.density),o=n.value,r=n.limit.value>0?n.limit.value:o,l=Math.min(o,r)*a+e,c=Math.min(this.count,this.filter(t=>t.group===i).length);void 0===i?this.#Ft=n.limit.value*a:this.#At.set(i,n.limit.value*a),c<l?this.push(Math.abs(l-c),void 0,t,i):c>l&&this.removeQuantity(c-l,i)};#jt=t=>{const e=Math.max(Math.floor(t),1);return Array.from({length:e},()=>[])};#ie=t=>{const e=this.#Nt.length-1;return e<=0?0:Math.min(Math.max(Math.floor(t),0),e)};#se=(t,e)=>{let i=0,s=t.length;for(;i<s;){const n=Math.floor((i+s)/2),a=t[n];a?a.id<e?i=n+1:s=n:s=n}return i};#ee=t=>{const e=this.#u;if(!t.enable)return 1;const i=e.canvas.size,s=e.retina.pixelRatio;return i.width&&i.height?i.width*i.height/(t.height*t.width*s**2):1};#Qt=t=>{const e=this.#ie(t.position.z),i=this.#Nt[e];i&&(i.splice(this.#se(i,t.id),0,t),this.#Bt.set(t.id,e))};#Yt=(e,i,s)=>{const n=this.#Et[e];return!!n&&(n.group===i&&(this.#Et.splice(e,1),this.#ne(n),n.destroy(s),this.#u.dispatchEvent(t.EventType.particleRemoved,{particle:n}),this.#te(n),!0))};#ne=t=>{const e=this.#Bt.get(t.id)??this.#ie(t.position.z),i=this.#Nt[e];if(!i)return void this.#Bt.delete(t.id);const s=this.#se(i,t.id);i[s]?.id===t.id?(i.splice(s,1),this.#Bt.delete(t.id)):this.#Bt.delete(t.id)};#Xt=t=>{const e=Math.max(Math.floor(t),1);if(this.#Nt.length===e)for(const t of this.#Nt)t.length=0;else this.#Nt=this.#jt(e)};#ae=t=>{const e=this.#ie(t.position.z),i=this.#Bt.get(t.id);if(void 0===i)return void this.#Qt(t);if(i===e)return;const s=this.#Nt[i];if(s){const e=this.#se(s,t.id);s[e]?.id===t.id&&s.splice(e,1)}const n=this.#Nt[e];n?(n.splice(this.#se(n,t.id),0,t),this.#Bt.set(t.id,e)):this.#Bt.set(t.id,e)};#Jt=t=>{const e=new Set,i=this.#qt;for(const s of this.#Et){i&&!s.ignoresResizeRatio&&(s.position.x*=i.width,s.position.y*=i.height,s.initialPosition.x*=i.width,s.initialPosition.y*=i.height),s.ignoresResizeRatio=!1;for(const t of this.#Vt)t.particleReset?.(s);for(const e of this.#Ut){if(s.destroyed)break;e.particleUpdate?.(s,t)}s.destroyed?e.add(s):this.grid.insert(s)}return e};#Kt=(t,e)=>{for(const i of this.#Et)if(i.destroyed)e.add(i);else{for(const e of this.#u.particleUpdaters)e.update(i,t);if(!i.spawning)for(const e of this.#Gt)e.postParticleUpdate?.(i,t);this.#ae(i)}}}class ns{pixelRatio;reduceFactor;#u;constructor(t){this.#u=t,this.pixelRatio=1,this.reduceFactor=1}init(){const t=this.#u,e=t.actualOptions;this.pixelRatio=e.detectRetina?devicePixelRatio:1,this.reduceFactor=1;const i=this.pixelRatio,s=t.canvas,n=s.domElement;n&&(s.size.width=n.offsetWidth*i,s.size.height=n.offsetHeight*i)}initParticle(t){const e=t.options,i=this.pixelRatio,s=e.move,n=s.distance,a=t.retina;a.maxSpeed=G(s.gravity.maxSpeed)*i,a.moveDrift=G(s.drift)*i,a.moveSpeed=G(s.speed)*i;const o=a.maxDistance;o.horizontal=void 0===n.horizontal?void 0:n.horizontal*i,o.vertical=void 0===n.vertical?void 0:n.vertical*i}}function as(t){return!t.destroyed}function os(t,e,...i){const s=new ke(t,e);return Ce(s,...i),s}var rs=Object.freeze({__proto__:null,Container:class{actualOptions;canvas;destroyed;effectDrawers;fpsLimit;hdr;id;pageHidden;particleCreatedPlugins;particleDestroyedPlugins;particlePositionPlugins;particleUpdaters;particles;plugins;retina;shapeDrawers;started;zLayers;#oe;#re;#le={value:0,factor:0};#ce;#he;#de;#ue;#pe;#fe;#ge;#ye;#me;#ve;#Pe;#p;#be;#we;constructor(e){const{dispatchCallback:i,pluginManager:s,id:n,onDestroy:a,sourceOptions:o}=e;this.#p=s,this.#ce=i,this.#me=a,this.id=Symbol(n),this.fpsLimit=120,this.hdr=!1,this.#be=!1,this.#oe=0,this.#de=0,this.#ye=0,this.#pe=!0,this.started=!1,this.destroyed=!1,this.#Pe=!0,this.#ge=0,this.zLayers=100,this.pageHidden=!1,this.#we=o,this.#fe=o,this.effectDrawers=new Map,this.shapeDrawers=new Map,this.particleUpdaters=[],this.retina=new ns(this),this.canvas=new Ji(this.#p,this),this.particles=new ss(this.#p,this),this.plugins=[],this.particleDestroyedPlugins=[],this.particleCreatedPlugins=[],this.particlePositionPlugins=[],this.#ve=os(this.#p,this),this.actualOptions=os(this.#p,this),this.#ue=new Ki(this),this.dispatchEvent(t.EventType.containerBuilt)}get animationStatus(){return!this.#Pe&&!this.pageHidden&&as(this)}get options(){return this.#ve}get sourceOptions(){return this.#we}addLifeTime(t){this.#ye+=t}alive(){return!this.#de||this.#ye<=this.#de}destroy(e=!0){if(as(this)){this.stop(),this.particles.destroy(),this.canvas.destroy();for(const[,t]of this.effectDrawers)t.destroy?.(this);for(const[,t]of this.shapeDrawers)t.destroy?.(this);for(const t of this.plugins)t.destroy?.();this.effectDrawers=new Map,this.shapeDrawers=new Map,this.particleUpdaters=[],this.plugins.length=0,this.#p.clearPlugins(this),this.destroyed=!0,this.#me(e),this.dispatchEvent(t.EventType.containerDestroyed)}}dispatchEvent(t,e){this.#ce(t,{container:this,data:e})}draw(t){if(!as(this))return;let e=t;this.#he=L(t=>{e&&(this.#ge=void 0,e=!1),this.#Me(t)})}async export(t,e={}){for(const i of this.plugins){if(!i.export)continue;const s=await i.export(t,e);if(s.supported)return s.blob}Lt().error(`Export plugin with type ${t} not found`)}async init(){if(!as(this))return;const e=new Map;for(const t of this.#p.plugins){const i=await t.getPlugin(this);i.preInit&&await i.preInit(),e.set(t,i)}await this.initDrawersAndUpdaters(),this.#ve=os(this.#p,this,this.#fe,this.sourceOptions),this.actualOptions=os(this.#p,this,this.#ve),this.plugins.length=0,this.particleDestroyedPlugins.length=0,this.particleCreatedPlugins.length=0,this.particlePositionPlugins.length=0;for(const[t,i]of e)t.needsPlugin(this.actualOptions)&&(this.plugins.push(i),i.particleCreated&&this.particleCreatedPlugins.push(i),i.particleDestroyed&&this.particleDestroyedPlugins.push(i),i.particlePosition&&this.particlePositionPlugins.push(i));this.retina.init(),this.canvas.init(),this.updateActualOptions(),this.canvas.initBackground(),this.canvas.resize();const{delay:i,duration:s,fpsLimit:n,hdr:a,smooth:o,zLayers:l}=this.actualOptions;this.hdr=a,this.zLayers=l,this.#de=G(s)*r,this.#oe=G(i)*r,this.#ye=0,this.fpsLimit=n>0?n:120,this.#be=o;for(const t of this.plugins)await(t.init?.());await this.particles.init(),this.dispatchEvent(t.EventType.containerInit),this.particles.setDensity();for(const t of this.plugins)t.particlesSetup?.();this.dispatchEvent(t.EventType.particlesSetup)}async initDrawersAndUpdaters(){const t=this.#p;this.effectDrawers=await t.getEffectDrawers(this,!0),this.shapeDrawers=await t.getShapeDrawers(this,!0),this.particleUpdaters=await t.getUpdaters(this,!0)}pause(){if(as(this)&&(void 0!==this.#he&&(B(this.#he),this.#he=void 0),!this.#Pe)){for(const t of this.plugins)t.pause?.();this.pageHidden||(this.#Pe=!0),this.dispatchEvent(t.EventType.containerPaused)}}play(e){if(!as(this))return;const i=this.#Pe||e;if(!this.#pe||this.actualOptions.autoPlay){if(this.#Pe&&(this.#Pe=!1),i)for(const t of this.plugins)t.play&&t.play();this.dispatchEvent(t.EventType.containerPlay),this.draw(i??!1)}else this.#pe=!1}async refresh(){if(as(this))return this.stop(),this.start()}async reset(t){if(as(this))return this.#fe=t,this.#we=t,this.#ve=os(this.#p,this,this.#fe,this.sourceOptions),this.actualOptions=os(this.#p,this,this.#ve),this.refresh()}async start(){as(this)&&!this.started&&(await this.init(),this.started=!0,await new Promise(e=>{const i=async()=>{this.#ue.addListeners();for(const t of this.plugins)await(t.start?.());this.dispatchEvent(t.EventType.containerStarted),this.play(),e()};this.#re=setTimeout(()=>{i()},this.#oe)}))}stop(){if(as(this)&&this.started){this.#re&&(clearTimeout(this.#re),this.#re=void 0),this.#pe=!0,this.started=!1,this.#ue.removeListeners(),this.pause(),this.particles.clear(),this.canvas.stop();for(const t of this.plugins)t.stop?.();this.particleCreatedPlugins.length=0,this.particleDestroyedPlugins.length=0,this.particlePositionPlugins.length=0,this.#we=this.#ve,this.dispatchEvent(t.EventType.containerStopped)}}updateActualOptions(){let t=!1;for(const e of this.plugins)e.updateActualOptions&&(t=e.updateActualOptions()||t);return t}#Me=t=>{try{if(!this.#be&&void 0!==this.#ge&&t<this.#ge+r/this.fpsLimit)return void this.draw(!1);if(this.#ge??=t,function(t,e,i=60,s=!1){t.value=e,t.factor=s?60/i:60*e/r}(this.#le,t-this.#ge,this.fpsLimit,this.#be),this.addLifeTime(this.#le.value),this.#ge=t,this.#le.value>r)return void this.draw(!1);if(this.canvas.render.drawParticles(this.#le),!this.alive())return void this.destroy();this.animationStatus&&this.draw(!1)}catch(t){Lt().error("error in animation loop",t)}}}});var ls=Object.freeze({__proto__:null,BlendPluginInstance:class{#u;#xe;constructor(t){this.#u=t}drawParticleCleanup(t,e){e.options.blend?.enable&&(t.globalCompositeOperation=e.originalBlendMode??i,e.originalBlendMode=void 0)}drawParticleSetup(t,e){e.options.blend?.enable&&(e.originalBlendMode=t.globalCompositeOperation,t.globalCompositeOperation=e.options.blend.mode)}drawSettingsCleanup(t){this.#xe&&(t.globalCompositeOperation=this.#xe)}drawSettingsSetup(t){const e=t.globalCompositeOperation,i=this.#u.actualOptions.blend;this.#xe=e,t.globalCompositeOperation=i?.enable?i.mode:e}}});function cs(t,e,i,s,n,a,o){!function(t,e){const i=t.options,s=i.move.path;if(!s.enable)return;const n=t.pathDelay??0;if(t.lastPathTime<=n)return void(t.lastPathTime+=e.value);const a=t.pathGenerator?.generate(t,e);a&&t.velocity.addTo(a);s.clamp&&(t.velocity.x=V(t.velocity.x,-1,1),t.velocity.y=V(t.velocity.y,-1,1));t.lastPathTime-=n}(t,o);const r=t.gravity,l=r?.enable&&r.inverse?-1:1;n&&i&&(t.velocity.x+=n*o.factor/(60*i)),r?.enable&&i&&(t.velocity.y+=l*(r.acceleration*o.factor)/(60*i));const c=t.moveDecay;t.velocity.multTo(c??1);const h=t.velocity.mult(i);r?.enable&&s>0&&(!r.inverse&&h.y>=0&&h.y>=s||r.inverse&&h.y<=0&&h.y<=-s)&&(h.y=l*s,i&&(t.velocity.y=h.y/i));const d=t.options.zIndex,u=(1-t.zIndexFactor)**d.velocityRate;h.multTo(u),h.multTo(a);const{position:p}=t;p.addTo(h),e.vibrate&&(p.x+=Math.sin(p.x*Math.cos(p.y))*a,p.y+=Math.cos(p.y*Math.sin(p.x))*a)}var hs=Object.freeze({__proto__:null,MovePluginInstance:class{availablePathGenerators;pathGenerators;#u;#p;constructor(t,e){this.#p=t,this.#u=e,this.availablePathGenerators=new Map,this.pathGenerators=new Map}destroy(){this.availablePathGenerators=new Map,this.pathGenerators=new Map}isEnabled(t){return!t.destroyed&&t.options.move.enable}particleCreated(e){const i=e.options.move,s=i.gravity,n=i.path;if(e.moveDecay=1-G(i.decay),e.pathDelay=G(n.delay.value)*r,n.generator){let t=this.pathGenerators.get(n.generator);t||(t=this.availablePathGenerators.get(n.generator),t&&(this.pathGenerators.set(n.generator,t),t.init())),e.pathGenerator=t}e.gravity={enable:s.enable,acceleration:G(s.acceleration),inverse:s.inverse},function(e,i){const s=i.options.move.spin;if(!s.enable)return;const n=s.position??{x:50,y:50},a={x:.01*n.x*e.canvas.size.width,y:.01*n.y*e.canvas.size.height},o=Q(i.getPosition(),a),r=G(s.acceleration);i.retina.spinAcceleration=r*e.retina.pixelRatio,i.spin={center:a,direction:i.velocity.x>=0?t.RotateDirection.clockwise:t.RotateDirection.counterClockwise,angle:A()*u,radius:o,acceleration:i.retina.spinAcceleration}}(this.#u,e)}particleDestroyed(t){const e=t.pathGenerator;e?.reset(t)}particleUpdate(e,i){const s=e.options.move;if(!s.enable)return;const n=this.#u,a=function(t){return t.slow.inRange?t.slow.factor:1}(e),r=n.retina.reduceFactor,l=e.retina.moveSpeed,c=e.retina.moveDrift,h=e.size.max,d=l*(s.size?e.getRadius()/h:1)*a*(i.factor||1)*o,u=e.retina.maxSpeed;s.spin.enable?function(e,i,s,n){if(!i.spin)return;const a=i.spin.direction===t.RotateDirection.clockwise,r={x:a?Math.cos:Math.sin,y:a?Math.sin:Math.cos};i.position.x=i.spin.center.x+i.spin.radius*r.x(i.spin.angle)*n,i.position.y=i.spin.center.y+i.spin.radius*r.y(i.spin.angle)*n,i.spin.radius+=i.spin.acceleration*n;const l=Math.max(e.canvas.size.width,e.canvas.size.height),c=l*o;i.spin.radius>c?(i.spin.radius=c,i.spin.acceleration*=-1):i.spin.radius<0&&(i.spin.radius=0,i.spin.acceleration*=-1),i.spin.angle+=.01*s*(1-i.spin.radius/l)}(n,e,d,r):cs(e,s,d,u,c,r,i),function(t){const e=t.initialPosition,{dx:i,dy:s}=N(e,t.position),n=Math.abs(i),a=Math.abs(s),{maxDistance:r}=t.retina,l=r.horizontal,c=r.vertical;if(!l&&!c)return;if((l&&n>=l||c&&a>=c)&&!t.misplaced)t.misplaced=!!l&&n>l||!!c&&a>c,l&&(t.velocity.x=t.velocity.y*o-t.velocity.x),c&&(t.velocity.y=t.velocity.x*o-t.velocity.y);else if((!l||n<l)&&(!c||a<c)&&t.misplaced)t.misplaced=!1;else if(t.misplaced){const i=t.position,s=t.velocity;l&&(i.x<e.x&&s.x<0||i.x>e.x&&s.x>0)&&(s.x*=-A()),c&&(i.y<e.y&&s.y<0||i.y>e.y&&s.y>0)&&(s.y*=-A())}}(e)}preInit(){return this.#ze()}redrawInit(){return this.#ze()}update(){for(const t of this.pathGenerators.values())t.update()}async#ze(){const t=await(this.#p.getPathGenerators?.(this.#u,!0));if(t){this.availablePathGenerators=t,this.pathGenerators=new Map;for(const t of this.pathGenerators.values())t.init()}}}});t.AnimatableColor=ie,t.AnimationOptions=Zt,t.AnimationValueWithRandom=ue,t.Background=se,t.BaseRange=Qt,t.Circle=Xt,t.ColorAnimation=Kt,t.Fill=re,t.FullScreen=ne,t.HslAnimation=te,t.Move=me,t.MoveAngle=le,t.MoveCenter=ce,t.MoveGravity=he,t.MovePath=fe,t.Options=ke,t.OptionsColor=ee,t.OutModes=ge,t.Paint=Pe,t.ParticlesBounce=we,t.ParticlesBounceFactor=be,t.ParticlesDensity=Me,t.ParticlesNumber=ze,t.ParticlesNumberLimit=xe,t.ParticlesOptions=Ie,t.RangedAnimationOptions=Jt,t.RangedAnimationValueWithRandom=pe,t.Rectangle=Yt,t.ResizeEvent=ae,t.Shape=Oe,t.Spin=ye,t.Stroke=ve,t.ValueWithRandom=de,t.Vector=O,t.Vector3d=z,t.ZIndex=Se,t.alterHsl=ri,t.animate=L,t.areBoundsInside=vt,t.arrayRandomIndex=gt,t.calcExactPositionOrRandomFromSize=et,t.calcExactPositionOrRandomFromSizeRanged=function(t){const e={x:void 0!==t.position?.x?G(t.position.x):void 0,y:void 0!==t.position?.y?G(t.position.y):void 0};return et({size:t.size,position:e})},t.calcPositionFromSize=function(t){return void 0!==t.position?.x&&void 0!==t.position.y?{x:t.position.x*t.size.width/a,y:t.position.y*t.size.height/a}:void 0},t.calcPositionOrRandomFromSize=tt,t.calcPositionOrRandomFromSizeRanged=function(t){const e={x:void 0!==t.position?.x?G(t.position.x):void 0,y:void 0!==t.position?.y?G(t.position.y):void 0};return tt({size:t.size,position:e})},t.calculateBounds=Pt,t.cancelAnimation=B,t.canvasFirstIndex=0,t.canvasTag=g,t.checkDistance=X,t.circleBounce=function(t,e){const{x:i,y:s}=t.velocity.sub(e.velocity),[n,a]=[t.position,e.position],{dx:o,dy:r}=N(a,n);if(i*o+s*r<0)return;const l=-Math.atan2(r,o),c=t.mass,h=e.mass,d=t.velocity.rotate(l),u=e.velocity.rotate(l),p=K(d,u,c,h),f=K(u,d,c,h),g=p.rotate(-l),y=f.rotate(-l);t.velocity.x=g.x*t.factor.x,t.velocity.y=g.y*t.factor.y,e.velocity.x=y.x*e.factor.x,e.velocity.y=y.y*e.factor.y},t.circleBounceDataFromParticle=function(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:O.create(G(t.options.bounce.horizontal.value),G(t.options.bounce.vertical.value))}},t.clamp=V,t.clear=Te,t.cloneStyle=It,t.collisionVelocity=K,t.colorMix=ei,t.colorToHsl=function(t,e,i,s=!0){const n=He(t,e,i,s);return n?je(n):void 0},t.colorToRgb=He,t.countOffset=1,t.decayOffset=1,t.deepExtend=bt,t.defaultAlpha=1,t.defaultAngle=0,t.defaultCompositeValue=i,t.defaultDensityFactor=1,t.defaultFps=60,t.defaultFpsLimit=120,t.defaultLoops=0,t.defaultOpacity=1,t.defaultRatio=1,t.defaultReduceFactor=1,t.defaultRemoveQuantity=1,t.defaultRetryCount=0,t.defaultRgbMin=0,t.defaultTime=0,t.defaultTransform=c,t.defaultTransformValue=1,t.defaultVelocity=0,t.defaultZoom=1,t.degToRad=Y,t.deleteCount=1,t.double=2,t.doublePI=u,t.drawAfterEffect=Ae,t.drawBeforeEffect=Fe,t.drawParticle=Ee,t.drawParticlePlugin=Ue,t.drawShape=Le,t.drawShapeAfterDraw=Be,t.drawShapeBeforeDraw=Ve,t.empty=0,t.executeOnSingleOrMultiple=wt,t.findItemFromSingleOrMultiple=function(t,e){return k(t)?t.find((t,i)=>e(t,i)):e(t,0)?t:void 0},t.generatedAttribute=e,t.generatedFalse=f,t.generatedTrue=p,t.getDistance=Q,t.getDistanceSq=j,t.getDistances=N,t.getFullScreenStyle=Ct,t.getHslAnimationFromHsl=si,t.getHslFromAnimation=ii,t.getItemMapFromInitializer=Rt,t.getItemsFromInitializer=kt,t.getLinkColor=function(t,e,i){if(i===h)return Ze();if(i!==d)return i;{const i=t.getFillColor()??t.getStrokeColor(),s=e?.getFillColor()??e?.getStrokeColor();if(i&&s&&e)return ei(i,s,t.getRadius(),e.getRadius());{const t=i??s;if(t)return Xe(t)}}},t.getLinkRandomColor=function(t,e,i,s){const n=I(e)?e:e.value;return n===h?s?qe(t,{value:n}):i?h:d:n===d?d:qe(t,{value:n})},t.getLogger=Lt,t.getParticleBaseVelocity=J,t.getParticleDirectionAngle=Z,t.getPosition=Ot,t.getRandom=A,t.getRandomInRange=F,t.getRandomRgbColor=Ze,t.getRangeMax=q,t.getRangeMin=W,t.getRangeValue=G,t.getSize=function(t,e){return zt(t,e)},t.getStyleFromHsl=ti,t.getStyleFromRgb=Je,t.hMax=m,t.hMin=0,t.hPhase=60,t.half=o,t.hasMatchMedia=ht,t.hslToRgb=Xe,t.hslaToRgba=Ye,t.identity=1,t.initParticleNumericAnimationValue=xt,t.inverseFactorNumerator=1,t.isArray=k,t.isBoolean=S,t.isFunction=function(t){return"function"==typeof t},t.isInArray=ft,t.isNull=R,t.isNumber=C,t.isObject=D,t.isPointInside=mt,t.isString=I,t.itemFromArray=yt,t.itemFromSingleOrMultiple=Mt,t.lFactor=1,t.lMax=P,t.lMin=0,t.lengthOffset=1,t.loadBasic=Ni,t.loadMinIndex=0,t.loadOptions=Ce,t.loadParticlesOptions=De,t.loadRandomFactor=1e4,t.manageListener=Dt,t.memoize=ct,t.midColorValue=d,t.millisecondsToSeconds=r,t.minCount=0,t.minFpsLimit=0,t.minIndex=0,t.minLimit=0,t.minStrokeWidth=0,t.minVelocity=0,t.minZ=0,t.minimumSize=0,t.mix=U,t.none=0,t.one=1,t.originPoint=l,t.paintBase=Re,t.paintImage=_e,t.parseAlpha=it,t.percentDenominator=a,t.phaseNumerator=1,t.quarter=b,t.randomColorValue=h,t.randomInRangeValue=$,t.rangeColorToHsl=Ne,t.rangeColorToRgb=qe,t.removeDeleteCount=1,t.removeMinIndex=0,t.resizeEvent=s,t.rgbMax=y,t.rgbToHsl=je,t.sMax=v,t.sMin=0,t.sNormalizedOffset=1,t.safeDocument=dt,t.safeIntersectionObserver=function(t){if("undefined"!=typeof IntersectionObserver)return new IntersectionObserver(t)},t.safeMatchMedia=ut,t.safeMutationObserver=pt,t.setAnimationFunctions=function(t,e){E.nextFrame=t,E.cancel=e},t.setLogger=function(t){t.debug&&(Ft.debug=At(t.debug)),t.error&&(Ft.error=At(t.error)),t.info&&(Ft.info=At(t.info)),t.log&&(Ft.log=At(t.log)),t.trace&&(Ft.trace=At(t.trace)),t.verbose&&(Ft.verbose=At(t.verbose)),t.warning&&(Ft.warning=At(t.warning))},t.setRandom=function(t=Math.random){T=t},t.setRangeValue=H,t.sextuple=6,t.spatialHashGridCellSize=100,t.squareExp=2,t.stringToAlpha=function(t,e){return We(t,e)?.a},t.stringToRgb=Qe,t.threeQuarter=w,t.triple=3,t.tryCountIncrement=1,t.tsParticles=li,t.updateAnimation=St,t.updateColor=oi,t.updateColorValue=ai,t.visibilityChangeEvent=n,t.zIndexFactorOffset=1}),Object.assign(globalThis.window||globalThis,{loadBasic:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadBasic,loadMinIndex:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadMinIndex,loadOptions:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadOptions,loadParticlesOptions:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadParticlesOptions,loadRandomFactor:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadRandomFactor,tsParticles:(globalThis.__tsParticlesInternals.bundles.basic||{}).tsParticles}),globalThis.__tsParticlesInternals=globalThis.__tsParticlesInternals||{},globalThis.__tsParticlesInternals.engine&&globalThis.__tsParticlesInternals.engine.tsParticles||(globalThis.__tsParticlesInternals.engine=globalThis.__tsParticlesInternals.bundles.basic||{}),delete(globalThis.window||globalThis).tsparticlesInternalExports;
|
package/tsparticles.basic.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(function(g){g.__tsParticlesInternals=g.__tsParticlesInternals||{};g.__tsParticlesInternals.bundles=g.__tsParticlesInternals.bundles||{};g.__tsParticlesInternals.effects=g.__tsParticlesInternals.effects||{};g.__tsParticlesInternals.engine=g.__tsParticlesInternals.engine||{};g.__tsParticlesInternals.interactions=g.__tsParticlesInternals.interactions||{};g.__tsParticlesInternals.palettes=g.__tsParticlesInternals.palettes||{};g.__tsParticlesInternals.paths=g.__tsParticlesInternals.paths||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins=g.__tsParticlesInternals.plugins||{};g.__tsParticlesInternals.plugins.emittersShapes=g.__tsParticlesInternals.plugins.emittersShapes||{};g.__tsParticlesInternals.presets=g.__tsParticlesInternals.presets||{};g.__tsParticlesInternals.shapes=g.__tsParticlesInternals.shapes||{};g.__tsParticlesInternals.updaters=g.__tsParticlesInternals.updaters||{};g.__tsParticlesInternals.utils=g.__tsParticlesInternals.utils||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas=g.__tsParticlesInternals.canvas||{};g.__tsParticlesInternals.canvas.utils=g.__tsParticlesInternals.canvas.utils||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path=g.__tsParticlesInternals.path||{};g.__tsParticlesInternals.path.utils=g.__tsParticlesInternals.path.utils||{};var __tsProxyFactory=typeof Proxy!=="undefined"?function(obj){return new Proxy(obj,{get:function(target,key){if(!(key in target)){target[key]={};}return target[key];}});}:function(obj){return obj;};g.__tsParticlesInternals.bundles=__tsProxyFactory(g.__tsParticlesInternals.bundles);g.__tsParticlesInternals.effects=__tsProxyFactory(g.__tsParticlesInternals.effects);g.__tsParticlesInternals.interactions=__tsProxyFactory(g.__tsParticlesInternals.interactions);g.__tsParticlesInternals.palettes=__tsProxyFactory(g.__tsParticlesInternals.palettes);g.__tsParticlesInternals.paths=__tsProxyFactory(g.__tsParticlesInternals.paths);g.__tsParticlesInternals.plugins=__tsProxyFactory(g.__tsParticlesInternals.plugins);g.__tsParticlesInternals.plugins.emittersShapes=__tsProxyFactory(g.__tsParticlesInternals.plugins.emittersShapes);g.__tsParticlesInternals.presets=__tsProxyFactory(g.__tsParticlesInternals.presets);g.__tsParticlesInternals.shapes=__tsProxyFactory(g.__tsParticlesInternals.shapes);g.__tsParticlesInternals.updaters=__tsProxyFactory(g.__tsParticlesInternals.updaters);g.__tsParticlesInternals.utils=__tsProxyFactory(g.__tsParticlesInternals.utils);g.__tsParticlesInternals.canvas=__tsProxyFactory(g.__tsParticlesInternals.canvas);g.__tsParticlesInternals.path=__tsProxyFactory(g.__tsParticlesInternals.path);g.tsparticlesInternalExports=g.tsparticlesInternalExports||{};})(typeof globalThis!=="undefined"?globalThis:typeof window!=="undefined"?window:this);
|
|
2
|
-
/* tsParticles v4.1.
|
|
2
|
+
/* tsParticles v4.1.2 */
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tsparticles/plugin-blend'), require('@tsparticles/shape-circle'), require('@tsparticles/plugin-hex-color'), require('@tsparticles/plugin-hsl-color'), require('@tsparticles/plugin-move'), require('@tsparticles/updater-opacity'), require('@tsparticles/updater-out-modes'), require('@tsparticles/updater-paint'), require('@tsparticles/plugin-rgb-color'), require('@tsparticles/updater-size')) :
|
|
5
5
|
typeof define === 'function' && define.amd ? define(['exports', '@tsparticles/plugin-blend', '@tsparticles/shape-circle', '@tsparticles/plugin-hex-color', '@tsparticles/plugin-hsl-color', '@tsparticles/plugin-move', '@tsparticles/updater-opacity', '@tsparticles/updater-out-modes', '@tsparticles/updater-paint', '@tsparticles/plugin-rgb-color', '@tsparticles/updater-size'], factory) :
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
})(this, (function (exports, pluginBlend, shapeCircle, pluginHexColor, pluginHslColor, pluginMove, updaterOpacity, updaterOutModes, updaterPaint, pluginRgbColor, updaterSize) { 'use strict';
|
|
8
8
|
|
|
9
9
|
async function loadBasic(engine) {
|
|
10
|
-
engine.checkVersion("4.1.
|
|
10
|
+
engine.checkVersion("4.1.2");
|
|
11
11
|
await engine.pluginManager.register(async (e) => {
|
|
12
12
|
await Promise.all([
|
|
13
13
|
pluginBlend.loadBlendPlugin(e),
|
package/tsparticles.basic.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(s){s.__tsParticlesInternals=s.__tsParticlesInternals||{},s.__tsParticlesInternals.bundles=s.__tsParticlesInternals.bundles||{},s.__tsParticlesInternals.effects=s.__tsParticlesInternals.effects||{},s.__tsParticlesInternals.engine=s.__tsParticlesInternals.engine||{},s.__tsParticlesInternals.interactions=s.__tsParticlesInternals.interactions||{},s.__tsParticlesInternals.palettes=s.__tsParticlesInternals.palettes||{},s.__tsParticlesInternals.paths=s.__tsParticlesInternals.paths||{},s.__tsParticlesInternals.plugins=s.__tsParticlesInternals.plugins||{},s.__tsParticlesInternals.plugins=s.__tsParticlesInternals.plugins||{},s.__tsParticlesInternals.plugins.emittersShapes=s.__tsParticlesInternals.plugins.emittersShapes||{},s.__tsParticlesInternals.presets=s.__tsParticlesInternals.presets||{},s.__tsParticlesInternals.shapes=s.__tsParticlesInternals.shapes||{},s.__tsParticlesInternals.updaters=s.__tsParticlesInternals.updaters||{},s.__tsParticlesInternals.utils=s.__tsParticlesInternals.utils||{},s.__tsParticlesInternals.canvas=s.__tsParticlesInternals.canvas||{},s.__tsParticlesInternals.canvas=s.__tsParticlesInternals.canvas||{},s.__tsParticlesInternals.canvas.utils=s.__tsParticlesInternals.canvas.utils||{},s.__tsParticlesInternals.path=s.__tsParticlesInternals.path||{},s.__tsParticlesInternals.path=s.__tsParticlesInternals.path||{},s.__tsParticlesInternals.path.utils=s.__tsParticlesInternals.path.utils||{};var t="undefined"!=typeof Proxy?function(s){return new Proxy(s,{get:function(s,t){return t in s||(s[t]={}),s[t]}})}:function(s){return s};s.__tsParticlesInternals.bundles=t(s.__tsParticlesInternals.bundles),s.__tsParticlesInternals.effects=t(s.__tsParticlesInternals.effects),s.__tsParticlesInternals.interactions=t(s.__tsParticlesInternals.interactions),s.__tsParticlesInternals.palettes=t(s.__tsParticlesInternals.palettes),s.__tsParticlesInternals.paths=t(s.__tsParticlesInternals.paths),s.__tsParticlesInternals.plugins=t(s.__tsParticlesInternals.plugins),s.__tsParticlesInternals.plugins.emittersShapes=t(s.__tsParticlesInternals.plugins.emittersShapes),s.__tsParticlesInternals.presets=t(s.__tsParticlesInternals.presets),s.__tsParticlesInternals.shapes=t(s.__tsParticlesInternals.shapes),s.__tsParticlesInternals.updaters=t(s.__tsParticlesInternals.updaters),s.__tsParticlesInternals.utils=t(s.__tsParticlesInternals.utils),s.__tsParticlesInternals.canvas=t(s.__tsParticlesInternals.canvas),s.__tsParticlesInternals.path=t(s.__tsParticlesInternals.path),s.tsparticlesInternalExports=s.tsparticlesInternalExports||{}}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:this),function(s,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@tsparticles/plugin-blend"),require("@tsparticles/shape-circle"),require("@tsparticles/plugin-hex-color"),require("@tsparticles/plugin-hsl-color"),require("@tsparticles/plugin-move"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-paint"),require("@tsparticles/plugin-rgb-color"),require("@tsparticles/updater-size")):"function"==typeof define&&define.amd?define(["exports","@tsparticles/plugin-blend","@tsparticles/shape-circle","@tsparticles/plugin-hex-color","@tsparticles/plugin-hsl-color","@tsparticles/plugin-move","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@tsparticles/updater-paint","@tsparticles/plugin-rgb-color","@tsparticles/updater-size"],t):t(((s="undefined"!=typeof globalThis?globalThis:s||self).__tsParticlesInternals=s.__tsParticlesInternals||{},s.__tsParticlesInternals.bundles=s.__tsParticlesInternals.bundles||{},s.__tsParticlesInternals.bundles.basic=s.__tsParticlesInternals.bundles.basic||{}),s.__tsParticlesInternals.plugins.blend,s.__tsParticlesInternals.shapes.circle,s.__tsParticlesInternals.plugins.hexColor,s.__tsParticlesInternals.plugins.hslColor,s.__tsParticlesInternals.plugins.move,s.__tsParticlesInternals.updaters.opacity,s.__tsParticlesInternals.updaters.outModes,s.__tsParticlesInternals.updaters.paint,s.__tsParticlesInternals.plugins.rgbColor,s.__tsParticlesInternals.updaters.size)}(this,function(s,t,e,l,a,n,r,i,_,c,p){"use strict";async function o(s){s.checkVersion("4.1.
|
|
1
|
+
!function(s){s.__tsParticlesInternals=s.__tsParticlesInternals||{},s.__tsParticlesInternals.bundles=s.__tsParticlesInternals.bundles||{},s.__tsParticlesInternals.effects=s.__tsParticlesInternals.effects||{},s.__tsParticlesInternals.engine=s.__tsParticlesInternals.engine||{},s.__tsParticlesInternals.interactions=s.__tsParticlesInternals.interactions||{},s.__tsParticlesInternals.palettes=s.__tsParticlesInternals.palettes||{},s.__tsParticlesInternals.paths=s.__tsParticlesInternals.paths||{},s.__tsParticlesInternals.plugins=s.__tsParticlesInternals.plugins||{},s.__tsParticlesInternals.plugins=s.__tsParticlesInternals.plugins||{},s.__tsParticlesInternals.plugins.emittersShapes=s.__tsParticlesInternals.plugins.emittersShapes||{},s.__tsParticlesInternals.presets=s.__tsParticlesInternals.presets||{},s.__tsParticlesInternals.shapes=s.__tsParticlesInternals.shapes||{},s.__tsParticlesInternals.updaters=s.__tsParticlesInternals.updaters||{},s.__tsParticlesInternals.utils=s.__tsParticlesInternals.utils||{},s.__tsParticlesInternals.canvas=s.__tsParticlesInternals.canvas||{},s.__tsParticlesInternals.canvas=s.__tsParticlesInternals.canvas||{},s.__tsParticlesInternals.canvas.utils=s.__tsParticlesInternals.canvas.utils||{},s.__tsParticlesInternals.path=s.__tsParticlesInternals.path||{},s.__tsParticlesInternals.path=s.__tsParticlesInternals.path||{},s.__tsParticlesInternals.path.utils=s.__tsParticlesInternals.path.utils||{};var t="undefined"!=typeof Proxy?function(s){return new Proxy(s,{get:function(s,t){return t in s||(s[t]={}),s[t]}})}:function(s){return s};s.__tsParticlesInternals.bundles=t(s.__tsParticlesInternals.bundles),s.__tsParticlesInternals.effects=t(s.__tsParticlesInternals.effects),s.__tsParticlesInternals.interactions=t(s.__tsParticlesInternals.interactions),s.__tsParticlesInternals.palettes=t(s.__tsParticlesInternals.palettes),s.__tsParticlesInternals.paths=t(s.__tsParticlesInternals.paths),s.__tsParticlesInternals.plugins=t(s.__tsParticlesInternals.plugins),s.__tsParticlesInternals.plugins.emittersShapes=t(s.__tsParticlesInternals.plugins.emittersShapes),s.__tsParticlesInternals.presets=t(s.__tsParticlesInternals.presets),s.__tsParticlesInternals.shapes=t(s.__tsParticlesInternals.shapes),s.__tsParticlesInternals.updaters=t(s.__tsParticlesInternals.updaters),s.__tsParticlesInternals.utils=t(s.__tsParticlesInternals.utils),s.__tsParticlesInternals.canvas=t(s.__tsParticlesInternals.canvas),s.__tsParticlesInternals.path=t(s.__tsParticlesInternals.path),s.tsparticlesInternalExports=s.tsparticlesInternalExports||{}}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:this),function(s,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@tsparticles/plugin-blend"),require("@tsparticles/shape-circle"),require("@tsparticles/plugin-hex-color"),require("@tsparticles/plugin-hsl-color"),require("@tsparticles/plugin-move"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-paint"),require("@tsparticles/plugin-rgb-color"),require("@tsparticles/updater-size")):"function"==typeof define&&define.amd?define(["exports","@tsparticles/plugin-blend","@tsparticles/shape-circle","@tsparticles/plugin-hex-color","@tsparticles/plugin-hsl-color","@tsparticles/plugin-move","@tsparticles/updater-opacity","@tsparticles/updater-out-modes","@tsparticles/updater-paint","@tsparticles/plugin-rgb-color","@tsparticles/updater-size"],t):t(((s="undefined"!=typeof globalThis?globalThis:s||self).__tsParticlesInternals=s.__tsParticlesInternals||{},s.__tsParticlesInternals.bundles=s.__tsParticlesInternals.bundles||{},s.__tsParticlesInternals.bundles.basic=s.__tsParticlesInternals.bundles.basic||{}),s.__tsParticlesInternals.plugins.blend,s.__tsParticlesInternals.shapes.circle,s.__tsParticlesInternals.plugins.hexColor,s.__tsParticlesInternals.plugins.hslColor,s.__tsParticlesInternals.plugins.move,s.__tsParticlesInternals.updaters.opacity,s.__tsParticlesInternals.updaters.outModes,s.__tsParticlesInternals.updaters.paint,s.__tsParticlesInternals.plugins.rgbColor,s.__tsParticlesInternals.updaters.size)}(this,function(s,t,e,l,a,n,r,i,_,c,p){"use strict";async function o(s){s.checkVersion("4.1.2"),await s.pluginManager.register(async s=>{await Promise.all([t.loadBlendPlugin(s),l.loadHexColorPlugin(s),a.loadHslColorPlugin(s),c.loadRgbColorPlugin(s),n.loadMovePlugin(s),e.loadCircleShape(s),_.loadPaintUpdater(s),r.loadOpacityUpdater(s),i.loadOutModesUpdater(s),p.loadSizeUpdater(s)])})}const P=globalThis;P.__tsParticlesInternals=P.__tsParticlesInternals??{},P.loadBasic=o,s.loadBasic=o}),Object.assign(globalThis.window||globalThis,{loadBasic:(globalThis.__tsParticlesInternals.bundles.basic||{}).loadBasic}),globalThis.__tsParticlesInternals=globalThis.__tsParticlesInternals||{},globalThis.__tsParticlesInternals.engine&&globalThis.__tsParticlesInternals.engine.tsParticles||(globalThis.__tsParticlesInternals.engine=globalThis.__tsParticlesInternals.bundles.basic||{}),delete(globalThis.window||globalThis).tsparticlesInternalExports;
|