@tsparticles/basic 4.3.0 → 4.3.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/README.md +3 -9
- package/browser/index.js +1 -1
- package/browser/index.lazy.js +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.lazy.js +1 -1
- 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 +24 -16
- package/tsparticles.basic.bundle.min.js +1 -1
- package/tsparticles.basic.js +2 -2
- package/tsparticles.basic.min.js +1 -1
package/README.md
CHANGED
|
@@ -98,9 +98,7 @@ Once the scripts are loaded you can set up `tsParticles` like this:
|
|
|
98
98
|
|
|
99
99
|
await tsParticles.load({
|
|
100
100
|
id: "tsparticles",
|
|
101
|
-
options: {
|
|
102
|
-
/* options */
|
|
103
|
-
},
|
|
101
|
+
options: {/* options */},
|
|
104
102
|
});
|
|
105
103
|
})();
|
|
106
104
|
```
|
|
@@ -184,9 +182,7 @@ async function particlesInit(engine: Engine) {
|
|
|
184
182
|
```
|
|
185
183
|
|
|
186
184
|
```ts
|
|
187
|
-
const options = {
|
|
188
|
-
/* custom options */
|
|
189
|
-
};
|
|
185
|
+
const options = {/* custom options */};
|
|
190
186
|
|
|
191
187
|
async function particlesInit(engine: Engine): void {
|
|
192
188
|
await loadBasic(engine);
|
|
@@ -205,9 +201,7 @@ async function particlesInit(engine: Engine): void {
|
|
|
205
201
|
```
|
|
206
202
|
|
|
207
203
|
```js
|
|
208
|
-
let options = {
|
|
209
|
-
/* custom options */
|
|
210
|
-
};
|
|
204
|
+
let options = {/* custom options */};
|
|
211
205
|
|
|
212
206
|
let particlesInit = async engine => {
|
|
213
207
|
await loadBasic(engine);
|
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.3.
|
|
12
|
+
engine.checkVersion("4.3.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.3.
|
|
2
|
+
engine.checkVersion("4.3.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/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.3.
|
|
12
|
+
engine.checkVersion("4.3.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.3.
|
|
2
|
+
engine.checkVersion("4.3.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/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.3.
|
|
12
|
+
engine.checkVersion("4.3.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.3.
|
|
2
|
+
engine.checkVersion("4.3.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.3.
|
|
3
|
+
"version": "4.3.2",
|
|
4
4
|
"description": "Basic tsParticles bundle — minimal core engine with only the essential features for fast, lightweight particle animations. Ready to use components available 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.3.
|
|
109
|
-
"@tsparticles/plugin-blend": "4.3.
|
|
110
|
-
"@tsparticles/plugin-hex-color": "4.3.
|
|
111
|
-
"@tsparticles/plugin-hsl-color": "4.3.
|
|
112
|
-
"@tsparticles/plugin-move": "4.3.
|
|
113
|
-
"@tsparticles/plugin-rgb-color": "4.3.
|
|
114
|
-
"@tsparticles/shape-circle": "4.3.
|
|
115
|
-
"@tsparticles/updater-opacity": "4.3.
|
|
116
|
-
"@tsparticles/updater-out-modes": "4.3.
|
|
117
|
-
"@tsparticles/updater-paint": "4.3.
|
|
118
|
-
"@tsparticles/updater-size": "4.3.
|
|
108
|
+
"@tsparticles/engine": "4.3.2",
|
|
109
|
+
"@tsparticles/plugin-blend": "4.3.2",
|
|
110
|
+
"@tsparticles/plugin-hex-color": "4.3.2",
|
|
111
|
+
"@tsparticles/plugin-hsl-color": "4.3.2",
|
|
112
|
+
"@tsparticles/plugin-move": "4.3.2",
|
|
113
|
+
"@tsparticles/plugin-rgb-color": "4.3.2",
|
|
114
|
+
"@tsparticles/shape-circle": "4.3.2",
|
|
115
|
+
"@tsparticles/updater-opacity": "4.3.2",
|
|
116
|
+
"@tsparticles/updater-out-modes": "4.3.2",
|
|
117
|
+
"@tsparticles/updater-paint": "4.3.2",
|
|
118
|
+
"@tsparticles/updater-size": "4.3.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":"6de75d0b-1","name":"Constants.js"},{"uid":"6de75d0b-5","name":"Vectors.js"},{"uid":"6de75d0b-21","name":"PluginManager.js"},{"uid":"6de75d0b-31","name":"Ranges.js"},{"uid":"6de75d0b-195","name":"EventListeners.js"},{"uid":"6de75d0b-199","name":"SpatialHashGrid.js"}]},{"uid":"6de75d0b-25","name":"Engine.js"},{"uid":"6de75d0b-191","name":"RenderManager.js"},{"uid":"6de75d0b-193","name":"CanvasManager.js"},{"uid":"6de75d0b-197","name":"Particle.js"},{"uid":"6de75d0b-201","name":"ParticlesManager.js"},{"uid":"6de75d0b-203","name":"Retina.js"},{"uid":"6de75d0b-205","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"6de75d0b-3","name":"MoveDirection.js"},{"uid":"6de75d0b-11","name":"OutModeDirection.js"},{"uid":"6de75d0b-33","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"6de75d0b-13","name":"PixelMode.js"},{"uid":"6de75d0b-35","name":"AnimationMode.js"},{"uid":"6de75d0b-37","name":"LimitMode.js"},{"uid":"6de75d0b-39","name":"OutMode.js"}]},{"name":"Types","children":[{"uid":"6de75d0b-19","name":"EventType.js"},{"uid":"6de75d0b-41","name":"AlterType.js"},{"uid":"6de75d0b-43","name":"DestroyType.js"},{"uid":"6de75d0b-45","name":"GradientType.js"},{"uid":"6de75d0b-47","name":"ParticleOutType.js"},{"uid":"6de75d0b-49","name":"StartValueType.js"}]},{"uid":"6de75d0b-29","name":"RangeType.js"},{"uid":"6de75d0b-51","name":"AnimationStatus.js"},{"uid":"6de75d0b-53","name":"DrawLayer.js"}]},{"name":"Utils","children":[{"uid":"6de75d0b-7","name":"TypeUtils.js"},{"uid":"6de75d0b-9","name":"MathUtils.js"},{"uid":"6de75d0b-15","name":"Utils.js"},{"uid":"6de75d0b-17","name":"EventDispatcher.js"},{"uid":"6de75d0b-23","name":"LogUtils.js"},{"uid":"6de75d0b-55","name":"OptionLoader.js"},{"uid":"6de75d0b-57","name":"OptionsUtils.js"},{"uid":"6de75d0b-115","name":"ParticlesOptionsLoader.js"},{"uid":"6de75d0b-119","name":"ColorUtils.js"}]},{"uid":"6de75d0b-27","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"6de75d0b-59","name":"AnimationOptions.js"},{"uid":"6de75d0b-61","name":"ColorAnimation.js"},{"uid":"6de75d0b-63","name":"HslAnimation.js"},{"uid":"6de75d0b-65","name":"OptionsColor.js"},{"uid":"6de75d0b-67","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"6de75d0b-69"},{"name":"FullScreen/FullScreen.js","uid":"6de75d0b-71"},{"uid":"6de75d0b-73","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"6de75d0b-75"},{"uid":"6de75d0b-77","name":"Fill.js"},{"name":"Move","children":[{"uid":"6de75d0b-79","name":"MoveAngle.js"},{"uid":"6de75d0b-81","name":"MoveCenter.js"},{"uid":"6de75d0b-83","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"6de75d0b-87"},{"uid":"6de75d0b-89","name":"OutModes.js"},{"uid":"6de75d0b-91","name":"Spin.js"},{"uid":"6de75d0b-93","name":"Move.js"}]},{"uid":"6de75d0b-95","name":"Stroke.js"},{"uid":"6de75d0b-97","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"6de75d0b-99","name":"ParticlesBounceFactor.js"},{"uid":"6de75d0b-101","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"6de75d0b-103","name":"ParticlesDensity.js"},{"uid":"6de75d0b-105","name":"ParticlesNumberLimit.js"},{"uid":"6de75d0b-107","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"6de75d0b-109"},{"name":"ZIndex/ZIndex.js","uid":"6de75d0b-111"},{"uid":"6de75d0b-113","name":"ParticlesOptions.js"}]},{"uid":"6de75d0b-85","name":"ValueWithRandom.js"},{"uid":"6de75d0b-117","name":"Options.js"}]},{"uid":"6de75d0b-121","name":"index.js"}]},{"name":"plugins","children":[{"name":"blend/dist/browser","children":[{"name":"Options/Classes/Blend.js","uid":"6de75d0b-123"},{"uid":"6de75d0b-125","name":"BlendPlugin.js"},{"uid":"6de75d0b-127","name":"index.js"},{"uid":"6de75d0b-207","name":"BlendPluginInstance.js"}]},{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"6de75d0b-135","name":"HexColorManager.js"},{"uid":"6de75d0b-137","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"6de75d0b-139","name":"HslColorManager.js"},{"uid":"6de75d0b-141","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"6de75d0b-175","name":"RgbColorManager.js"},{"uid":"6de75d0b-177","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"6de75d0b-143","name":"MovePlugin.js"},{"uid":"6de75d0b-145","name":"index.js"},{"uid":"6de75d0b-209","name":"Utils.js"},{"uid":"6de75d0b-211","name":"MovePluginInstance.js"}]}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"6de75d0b-129","name":"Utils.js"},{"uid":"6de75d0b-131","name":"CircleDrawer.js"},{"uid":"6de75d0b-133","name":"index.js"}]},{"name":"utils/animationUtils/dist/browser/Utils.js","uid":"6de75d0b-147"},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"6de75d0b-149","name":"OpacityAnimation.js"},{"uid":"6de75d0b-151","name":"Opacity.js"}]},{"uid":"6de75d0b-153","name":"OpacityUpdater.js"},{"uid":"6de75d0b-155","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"6de75d0b-157","name":"Utils.js"},{"uid":"6de75d0b-159","name":"BounceOutMode.js"},{"uid":"6de75d0b-161","name":"DestroyOutMode.js"},{"uid":"6de75d0b-163","name":"NoneOutMode.js"},{"uid":"6de75d0b-165","name":"OutOutMode.js"},{"uid":"6de75d0b-167","name":"OutOfCanvasUpdater.js"},{"uid":"6de75d0b-169","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"6de75d0b-171","name":"PaintUpdater.js"},{"uid":"6de75d0b-173","name":"index.js"}]},{"name":"size/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"6de75d0b-179","name":"SizeAnimation.js"},{"uid":"6de75d0b-181","name":"Size.js"}]},{"uid":"6de75d0b-183","name":"SizeUpdater.js"},{"uid":"6de75d0b-185","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"6de75d0b-187","name":"index.js"},{"uid":"6de75d0b-189","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"6de75d0b-1":{"renderedLength":1607,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-0"},"6de75d0b-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-2"},"6de75d0b-5":{"renderedLength":3212,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-4"},"6de75d0b-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-6"},"6de75d0b-9":{"renderedLength":5823,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-8"},"6de75d0b-11":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-10"},"6de75d0b-13":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-12"},"6de75d0b-15":{"renderedLength":9176,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-14"},"6de75d0b-17":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-16"},"6de75d0b-19":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-18"},"6de75d0b-21":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-20"},"6de75d0b-23":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-22"},"6de75d0b-25":{"renderedLength":6107,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-24"},"6de75d0b-27":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-26"},"6de75d0b-29":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-28"},"6de75d0b-31":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-30"},"6de75d0b-33":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-32"},"6de75d0b-35":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-34"},"6de75d0b-37":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-36"},"6de75d0b-39":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-38"},"6de75d0b-41":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-40"},"6de75d0b-43":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-42"},"6de75d0b-45":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-44"},"6de75d0b-47":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-46"},"6de75d0b-49":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-48"},"6de75d0b-51":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-50"},"6de75d0b-53":{"renderedLength":660,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-52"},"6de75d0b-55":{"renderedLength":332,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-54"},"6de75d0b-57":{"renderedLength":1074,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-56"},"6de75d0b-59":{"renderedLength":888,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-58"},"6de75d0b-61":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-60"},"6de75d0b-63":{"renderedLength":315,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-62"},"6de75d0b-65":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-64"},"6de75d0b-67":{"renderedLength":914,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-66"},"6de75d0b-69":{"renderedLength":882,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-68"},"6de75d0b-71":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-70"},"6de75d0b-73":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-72"},"6de75d0b-75":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-74"},"6de75d0b-77":{"renderedLength":387,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-76"},"6de75d0b-79":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-78"},"6de75d0b-81":{"renderedLength":372,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-80"},"6de75d0b-83":{"renderedLength":432,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-82"},"6de75d0b-85":{"renderedLength":590,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-84"},"6de75d0b-87":{"renderedLength":517,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-86"},"6de75d0b-89":{"renderedLength":490,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-88"},"6de75d0b-91":{"renderedLength":381,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-90"},"6de75d0b-93":{"renderedLength":2028,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-92"},"6de75d0b-95":{"renderedLength":384,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-94"},"6de75d0b-97":{"renderedLength":409,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-96"},"6de75d0b-99":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-98"},"6de75d0b-101":{"renderedLength":283,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-100"},"6de75d0b-103":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-102"},"6de75d0b-105":{"renderedLength":256,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-104"},"6de75d0b-107":{"renderedLength":331,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-106"},"6de75d0b-109":{"renderedLength":606,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-108"},"6de75d0b-111":{"renderedLength":377,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-110"},"6de75d0b-113":{"renderedLength":5055,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-112"},"6de75d0b-115":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-114"},"6de75d0b-117":{"renderedLength":3365,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-116"},"6de75d0b-119":{"renderedLength":15215,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-118"},"6de75d0b-121":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-120"},"6de75d0b-123":{"renderedLength":288,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-122"},"6de75d0b-125":{"renderedLength":938,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-124"},"6de75d0b-127":{"renderedLength":209,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-126"},"6de75d0b-129":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-128"},"6de75d0b-131":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-130"},"6de75d0b-133":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-132"},"6de75d0b-135":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-134"},"6de75d0b-137":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-136"},"6de75d0b-139":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-138"},"6de75d0b-141":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-140"},"6de75d0b-143":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-142"},"6de75d0b-145":{"renderedLength":1076,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-144"},"6de75d0b-147":{"renderedLength":4856,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-146"},"6de75d0b-149":{"renderedLength":297,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-148"},"6de75d0b-151":{"renderedLength":409,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-150"},"6de75d0b-153":{"renderedLength":1886,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-152"},"6de75d0b-155":{"renderedLength":314,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-154"},"6de75d0b-157":{"renderedLength":3393,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-156"},"6de75d0b-159":{"renderedLength":1412,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-158"},"6de75d0b-161":{"renderedLength":1267,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-160"},"6de75d0b-163":{"renderedLength":2034,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-162"},"6de75d0b-165":{"renderedLength":6658,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-164"},"6de75d0b-167":{"renderedLength":2191,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-166"},"6de75d0b-169":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-168"},"6de75d0b-171":{"renderedLength":3490,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-170"},"6de75d0b-173":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-172"},"6de75d0b-175":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-174"},"6de75d0b-177":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-176"},"6de75d0b-179":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-178"},"6de75d0b-181":{"renderedLength":403,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-180"},"6de75d0b-183":{"renderedLength":2045,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-182"},"6de75d0b-185":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-184"},"6de75d0b-187":{"renderedLength":577,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-186"},"6de75d0b-189":{"renderedLength":120,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-188"},"6de75d0b-191":{"renderedLength":19195,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-190"},"6de75d0b-193":{"renderedLength":12591,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-192"},"6de75d0b-195":{"renderedLength":3127,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-194"},"6de75d0b-197":{"renderedLength":23499,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-196"},"6de75d0b-199":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-198"},"6de75d0b-201":{"renderedLength":17468,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-200"},"6de75d0b-203":{"renderedLength":1506,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-202"},"6de75d0b-205":{"renderedLength":13446,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-204"},"6de75d0b-207":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-206"},"6de75d0b-209":{"renderedLength":6802,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-208"},"6de75d0b-211":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"6de75d0b-210"}},"nodeMetas":{"6de75d0b-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-1"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-24"},{"uid":"6de75d0b-30"},{"uid":"6de75d0b-4"},{"uid":"6de75d0b-62"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-16"},{"uid":"6de75d0b-204"},{"uid":"6de75d0b-192"},{"uid":"6de75d0b-194"},{"uid":"6de75d0b-200"},{"uid":"6de75d0b-202"},{"uid":"6de75d0b-190"},{"uid":"6de75d0b-196"}]},"6de75d0b-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-3"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-92"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-196"}]},"6de75d0b-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-5"},"imported":[{"uid":"6de75d0b-0"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-196"}]},"6de75d0b-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-7"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-66"},{"uid":"6de75d0b-116"},{"uid":"6de75d0b-64"},{"uid":"6de75d0b-112"},{"uid":"6de75d0b-92"},{"uid":"6de75d0b-84"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-14"}]},"6de75d0b-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-9"},"imported":[{"uid":"6de75d0b-2"},{"uid":"6de75d0b-0"},{"uid":"6de75d0b-4"},{"uid":"6de75d0b-6"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-24"},{"uid":"6de75d0b-30"},{"uid":"6de75d0b-84"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-56"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-204"},{"uid":"6de75d0b-202"},{"uid":"6de75d0b-196"}]},"6de75d0b-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-11"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-196"}]},"6de75d0b-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-13"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-80"},{"uid":"6de75d0b-14"}]},"6de75d0b-14":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-15"},"imported":[{"uid":"6de75d0b-8"},{"uid":"6de75d0b-6"},{"uid":"6de75d0b-10"},{"uid":"6de75d0b-12"},{"uid":"6de75d0b-4"},{"uid":"6de75d0b-0"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-24"},{"uid":"6de75d0b-116"},{"uid":"6de75d0b-112"},{"uid":"6de75d0b-86"},{"uid":"6de75d0b-90"},{"uid":"6de75d0b-108"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-56"},{"uid":"6de75d0b-20"},{"uid":"6de75d0b-74"},{"uid":"6de75d0b-192"},{"uid":"6de75d0b-194"},{"uid":"6de75d0b-196"}]},"6de75d0b-16":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-17"},"imported":[{"uid":"6de75d0b-0"}],"importedBy":[{"uid":"6de75d0b-24"}]},"6de75d0b-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-19"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-20"},{"uid":"6de75d0b-204"},{"uid":"6de75d0b-200"},{"uid":"6de75d0b-196"}]},"6de75d0b-20":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-21"},"imported":[{"uid":"6de75d0b-14"},{"uid":"6de75d0b-18"}],"importedBy":[{"uid":"6de75d0b-24"}]},"6de75d0b-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-23"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-24"},{"uid":"6de75d0b-204"},{"uid":"6de75d0b-200"},{"uid":"6de75d0b-190"}]},"6de75d0b-24":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-25"},"imported":[{"uid":"6de75d0b-0"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-16"},{"uid":"6de75d0b-20"},{"uid":"6de75d0b-22"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-204","dynamic":true}],"importedBy":[{"uid":"6de75d0b-26"}]},"6de75d0b-26":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-27"},"imported":[{"uid":"6de75d0b-24"}],"importedBy":[{"uid":"6de75d0b-120"}]},"6de75d0b-28":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-29"},"imported":[],"importedBy":[{"uid":"6de75d0b-30"}]},"6de75d0b-30":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-31"},"imported":[{"uid":"6de75d0b-28"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-0"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-198"}]},"6de75d0b-32":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-33"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"}]},"6de75d0b-34":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-35"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-58"}]},"6de75d0b-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-37"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-104"},{"uid":"6de75d0b-200"}]},"6de75d0b-38":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-39"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-88"},{"uid":"6de75d0b-196"}]},"6de75d0b-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-41"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-118"}]},"6de75d0b-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-43"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"}]},"6de75d0b-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-45"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"}]},"6de75d0b-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-47"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-196"}]},"6de75d0b-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-49"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-58"}]},"6de75d0b-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-51"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-118"}]},"6de75d0b-52":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/DrawLayer.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-53"},"imported":[],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-190"}]},"6de75d0b-54":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionLoader.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-55"},"imported":[{"uid":"6de75d0b-6"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-58"},{"uid":"6de75d0b-62"},{"uid":"6de75d0b-116"},{"uid":"6de75d0b-64"},{"uid":"6de75d0b-100"},{"uid":"6de75d0b-112"},{"uid":"6de75d0b-76"},{"uid":"6de75d0b-96"},{"uid":"6de75d0b-94"},{"uid":"6de75d0b-92"},{"uid":"6de75d0b-78"},{"uid":"6de75d0b-80"},{"uid":"6de75d0b-82"},{"uid":"6de75d0b-88"},{"uid":"6de75d0b-86"},{"uid":"6de75d0b-90"},{"uid":"6de75d0b-106"},{"uid":"6de75d0b-104"},{"uid":"6de75d0b-102"},{"uid":"6de75d0b-108"},{"uid":"6de75d0b-84"},{"uid":"6de75d0b-114"},{"uid":"6de75d0b-56"},{"uid":"6de75d0b-74"}]},"6de75d0b-56":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-57"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-8"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-58"},{"uid":"6de75d0b-68"},{"uid":"6de75d0b-60"},{"uid":"6de75d0b-70"},{"uid":"6de75d0b-116"},{"uid":"6de75d0b-76"},{"uid":"6de75d0b-96"},{"uid":"6de75d0b-94"},{"uid":"6de75d0b-92"},{"uid":"6de75d0b-78"},{"uid":"6de75d0b-80"},{"uid":"6de75d0b-82"},{"uid":"6de75d0b-86"},{"uid":"6de75d0b-90"},{"uid":"6de75d0b-106"},{"uid":"6de75d0b-104"},{"uid":"6de75d0b-102"},{"uid":"6de75d0b-108"},{"uid":"6de75d0b-110"},{"uid":"6de75d0b-72"},{"uid":"6de75d0b-84"},{"uid":"6de75d0b-204"},{"uid":"6de75d0b-74"}]},"6de75d0b-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-59"},"imported":[{"uid":"6de75d0b-56"},{"uid":"6de75d0b-34"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-48"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-60"},{"uid":"6de75d0b-84"}]},"6de75d0b-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-61"},"imported":[{"uid":"6de75d0b-56"},{"uid":"6de75d0b-58"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-62"}]},"6de75d0b-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-63"},"imported":[{"uid":"6de75d0b-0"},{"uid":"6de75d0b-60"},{"uid":"6de75d0b-54"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-66"}]},"6de75d0b-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-65"},"imported":[{"uid":"6de75d0b-6"},{"uid":"6de75d0b-54"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-66"},{"uid":"6de75d0b-68"}]},"6de75d0b-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-67"},"imported":[{"uid":"6de75d0b-6"},{"uid":"6de75d0b-62"},{"uid":"6de75d0b-64"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"},{"uid":"6de75d0b-76"},{"uid":"6de75d0b-96"},{"uid":"6de75d0b-94"}]},"6de75d0b-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-69"},"imported":[{"uid":"6de75d0b-56"},{"uid":"6de75d0b-64"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-116"}]},"6de75d0b-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-71"},"imported":[{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-116"}]},"6de75d0b-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-73"},"imported":[{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-116"}]},"6de75d0b-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-75"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-112"}]},"6de75d0b-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-77"},"imported":[{"uid":"6de75d0b-56"},{"uid":"6de75d0b-66"},{"uid":"6de75d0b-54"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"},{"uid":"6de75d0b-96"}]},"6de75d0b-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-79"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-92"}]},"6de75d0b-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-81"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-12"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-92"}]},"6de75d0b-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-83"},"imported":[{"uid":"6de75d0b-56"},{"uid":"6de75d0b-54"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-92"}]},"6de75d0b-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-85"},"imported":[{"uid":"6de75d0b-58"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-6"},{"uid":"6de75d0b-56"},{"uid":"6de75d0b-8"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-98"},{"uid":"6de75d0b-86"},{"uid":"6de75d0b-110"}]},"6de75d0b-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-87"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-84"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-92"}]},"6de75d0b-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-89"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-38"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-92"}]},"6de75d0b-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-91"},"imported":[{"uid":"6de75d0b-56"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-14"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-92"}]},"6de75d0b-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-93"},"imported":[{"uid":"6de75d0b-2"},{"uid":"6de75d0b-6"},{"uid":"6de75d0b-56"},{"uid":"6de75d0b-78"},{"uid":"6de75d0b-80"},{"uid":"6de75d0b-82"},{"uid":"6de75d0b-86"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-88"},{"uid":"6de75d0b-90"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"}]},"6de75d0b-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-95"},"imported":[{"uid":"6de75d0b-66"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-96"}]},"6de75d0b-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-97"},"imported":[{"uid":"6de75d0b-66"},{"uid":"6de75d0b-76"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-94"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"}]},"6de75d0b-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-99"},"imported":[{"uid":"6de75d0b-84"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-100"}]},"6de75d0b-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-101"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-98"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"}]},"6de75d0b-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-103"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-106"}]},"6de75d0b-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-105"},"imported":[{"uid":"6de75d0b-36"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-106"}]},"6de75d0b-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-107"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-102"},{"uid":"6de75d0b-104"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"}]},"6de75d0b-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-109"},"imported":[{"uid":"6de75d0b-54"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"}]},"6de75d0b-110":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-111"},"imported":[{"uid":"6de75d0b-84"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-112"}]},"6de75d0b-112":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-113"},"imported":[{"uid":"6de75d0b-14"},{"uid":"6de75d0b-66"},{"uid":"6de75d0b-74"},{"uid":"6de75d0b-76"},{"uid":"6de75d0b-92"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-96"},{"uid":"6de75d0b-100"},{"uid":"6de75d0b-106"},{"uid":"6de75d0b-108"},{"uid":"6de75d0b-110"},{"uid":"6de75d0b-6"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-114"}]},"6de75d0b-114":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ParticlesOptionsLoader.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-115"},"imported":[{"uid":"6de75d0b-112"},{"uid":"6de75d0b-54"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-116"},{"uid":"6de75d0b-200"},{"uid":"6de75d0b-196"}]},"6de75d0b-116":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-117"},"imported":[{"uid":"6de75d0b-14"},{"uid":"6de75d0b-56"},{"uid":"6de75d0b-68"},{"uid":"6de75d0b-70"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-72"},{"uid":"6de75d0b-6"},{"uid":"6de75d0b-114"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-204"}]},"6de75d0b-118":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-119"},"imported":[{"uid":"6de75d0b-8"},{"uid":"6de75d0b-0"},{"uid":"6de75d0b-6"},{"uid":"6de75d0b-40"},{"uid":"6de75d0b-50"},{"uid":"6de75d0b-14"}],"importedBy":[{"uid":"6de75d0b-212"},{"uid":"6de75d0b-192"},{"uid":"6de75d0b-190"},{"uid":"6de75d0b-196"}]},"6de75d0b-120":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-121"},"imported":[{"uid":"6de75d0b-26"},{"uid":"6de75d0b-212"}],"importedBy":[{"uid":"6de75d0b-188"},{"uid":"6de75d0b-144"},{"uid":"6de75d0b-130"},{"uid":"6de75d0b-138"},{"uid":"6de75d0b-152"},{"uid":"6de75d0b-166"},{"uid":"6de75d0b-170"},{"uid":"6de75d0b-174"},{"uid":"6de75d0b-182"},{"uid":"6de75d0b-122"},{"uid":"6de75d0b-206"},{"uid":"6de75d0b-128"},{"uid":"6de75d0b-210"},{"uid":"6de75d0b-150"},{"uid":"6de75d0b-158"},{"uid":"6de75d0b-160"},{"uid":"6de75d0b-162"},{"uid":"6de75d0b-164"},{"uid":"6de75d0b-180"},{"uid":"6de75d0b-208"},{"uid":"6de75d0b-146"},{"uid":"6de75d0b-148"},{"uid":"6de75d0b-156"},{"uid":"6de75d0b-178"}]},"6de75d0b-122":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/Options/Classes/Blend.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-123"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-124"}]},"6de75d0b-124":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-125"},"imported":[{"uid":"6de75d0b-122"},{"uid":"6de75d0b-206","dynamic":true}],"importedBy":[{"uid":"6de75d0b-126"}]},"6de75d0b-126":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-127"},"imported":[{"uid":"6de75d0b-124"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-129"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-130"}]},"6de75d0b-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-131"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-128"}],"importedBy":[{"uid":"6de75d0b-132"}]},"6de75d0b-132":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-133"},"imported":[{"uid":"6de75d0b-130"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-135"},"imported":[],"importedBy":[{"uid":"6de75d0b-136"}]},"6de75d0b-136":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-137"},"imported":[{"uid":"6de75d0b-134"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-139"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-140"}]},"6de75d0b-140":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-141"},"imported":[{"uid":"6de75d0b-138"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-143"},"imported":[{"uid":"6de75d0b-210","dynamic":true}],"importedBy":[{"uid":"6de75d0b-144"}]},"6de75d0b-144":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-145"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-142"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-146":{"id":"/home/workflows/workspace/utils/animationUtils/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-147"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-213"}]},"6de75d0b-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-149"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-150"}]},"6de75d0b-150":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-151"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-148"}],"importedBy":[{"uid":"6de75d0b-152"}]},"6de75d0b-152":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-153"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-213"},{"uid":"6de75d0b-150"}],"importedBy":[{"uid":"6de75d0b-154"}]},"6de75d0b-154":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-155"},"imported":[{"uid":"6de75d0b-152"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-157"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-158"}]},"6de75d0b-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-159"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-156"}],"importedBy":[{"uid":"6de75d0b-166"}]},"6de75d0b-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-161"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-166"}]},"6de75d0b-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-163"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-166"}]},"6de75d0b-164":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-165"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-166"}]},"6de75d0b-166":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-167"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-158"},{"uid":"6de75d0b-160"},{"uid":"6de75d0b-162"},{"uid":"6de75d0b-164"}],"importedBy":[{"uid":"6de75d0b-168"}]},"6de75d0b-168":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-169"},"imported":[{"uid":"6de75d0b-166"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-170":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-171"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-172"}]},"6de75d0b-172":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-173"},"imported":[{"uid":"6de75d0b-170"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-174":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-175"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-176"}]},"6de75d0b-176":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-177"},"imported":[{"uid":"6de75d0b-174"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-178":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-179"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-180"}]},"6de75d0b-180":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-181"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-178"}],"importedBy":[{"uid":"6de75d0b-182"}]},"6de75d0b-182":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-183"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-213"},{"uid":"6de75d0b-180"}],"importedBy":[{"uid":"6de75d0b-184"}]},"6de75d0b-184":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-185"},"imported":[{"uid":"6de75d0b-182"}],"importedBy":[{"uid":"6de75d0b-186"}]},"6de75d0b-186":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-187"},"imported":[{"uid":"6de75d0b-126"},{"uid":"6de75d0b-132"},{"uid":"6de75d0b-136"},{"uid":"6de75d0b-140"},{"uid":"6de75d0b-144"},{"uid":"6de75d0b-154"},{"uid":"6de75d0b-168"},{"uid":"6de75d0b-172"},{"uid":"6de75d0b-176"},{"uid":"6de75d0b-184"}],"importedBy":[{"uid":"6de75d0b-188"}]},"6de75d0b-188":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-189"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-186"}],"importedBy":[],"isEntry":true},"6de75d0b-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-191"},"imported":[{"uid":"6de75d0b-0"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-52"},{"uid":"6de75d0b-22"}],"importedBy":[{"uid":"6de75d0b-192"}]},"6de75d0b-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-193"},"imported":[{"uid":"6de75d0b-14"},{"uid":"6de75d0b-0"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-190"}],"importedBy":[{"uid":"6de75d0b-204"}]},"6de75d0b-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-195"},"imported":[{"uid":"6de75d0b-14"},{"uid":"6de75d0b-0"}],"importedBy":[{"uid":"6de75d0b-204"}]},"6de75d0b-196":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-197"},"imported":[{"uid":"6de75d0b-4"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-0"},{"uid":"6de75d0b-18"},{"uid":"6de75d0b-2"},{"uid":"6de75d0b-38"},{"uid":"6de75d0b-10"},{"uid":"6de75d0b-46"},{"uid":"6de75d0b-114"}],"importedBy":[{"uid":"6de75d0b-200"}]},"6de75d0b-198":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-199"},"imported":[{"uid":"6de75d0b-30"}],"importedBy":[{"uid":"6de75d0b-200"}]},"6de75d0b-200":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-201"},"imported":[{"uid":"6de75d0b-0"},{"uid":"6de75d0b-18"},{"uid":"6de75d0b-36"},{"uid":"6de75d0b-196"},{"uid":"6de75d0b-198"},{"uid":"6de75d0b-22"},{"uid":"6de75d0b-114"}],"importedBy":[{"uid":"6de75d0b-204"}]},"6de75d0b-202":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-203"},"imported":[{"uid":"6de75d0b-0"},{"uid":"6de75d0b-8"}],"importedBy":[{"uid":"6de75d0b-204"}]},"6de75d0b-204":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-205"},"imported":[{"uid":"6de75d0b-8"},{"uid":"6de75d0b-0"},{"uid":"6de75d0b-192"},{"uid":"6de75d0b-194"},{"uid":"6de75d0b-18"},{"uid":"6de75d0b-116"},{"uid":"6de75d0b-200"},{"uid":"6de75d0b-202"},{"uid":"6de75d0b-22"},{"uid":"6de75d0b-56"}],"importedBy":[{"uid":"6de75d0b-24"}]},"6de75d0b-206":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-207"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-124"}]},"6de75d0b-208":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-209"},"imported":[{"uid":"6de75d0b-120"}],"importedBy":[{"uid":"6de75d0b-210"}]},"6de75d0b-210":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"6de75d0b-211"},"imported":[{"uid":"6de75d0b-120"},{"uid":"6de75d0b-208"}],"importedBy":[{"uid":"6de75d0b-142"}]},"6de75d0b-212":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"6de75d0b-0"},{"uid":"6de75d0b-30"},{"uid":"6de75d0b-4"},{"uid":"6de75d0b-2"},{"uid":"6de75d0b-32"},{"uid":"6de75d0b-10"},{"uid":"6de75d0b-34"},{"uid":"6de75d0b-36"},{"uid":"6de75d0b-38"},{"uid":"6de75d0b-12"},{"uid":"6de75d0b-40"},{"uid":"6de75d0b-42"},{"uid":"6de75d0b-44"},{"uid":"6de75d0b-46"},{"uid":"6de75d0b-48"},{"uid":"6de75d0b-18"},{"uid":"6de75d0b-50"},{"uid":"6de75d0b-52"},{"uid":"6de75d0b-66"},{"uid":"6de75d0b-58"},{"uid":"6de75d0b-68"},{"uid":"6de75d0b-60"},{"uid":"6de75d0b-70"},{"uid":"6de75d0b-62"},{"uid":"6de75d0b-116"},{"uid":"6de75d0b-64"},{"uid":"6de75d0b-100"},{"uid":"6de75d0b-98"},{"uid":"6de75d0b-112"},{"uid":"6de75d0b-76"},{"uid":"6de75d0b-96"},{"uid":"6de75d0b-94"},{"uid":"6de75d0b-92"},{"uid":"6de75d0b-78"},{"uid":"6de75d0b-80"},{"uid":"6de75d0b-82"},{"uid":"6de75d0b-88"},{"uid":"6de75d0b-86"},{"uid":"6de75d0b-90"},{"uid":"6de75d0b-106"},{"uid":"6de75d0b-104"},{"uid":"6de75d0b-102"},{"uid":"6de75d0b-108"},{"uid":"6de75d0b-110"},{"uid":"6de75d0b-72"},{"uid":"6de75d0b-84"},{"uid":"6de75d0b-118"},{"uid":"6de75d0b-22"},{"uid":"6de75d0b-8"},{"uid":"6de75d0b-54"},{"uid":"6de75d0b-114"},{"uid":"6de75d0b-56"},{"uid":"6de75d0b-14"},{"uid":"6de75d0b-6"}],"importedBy":[{"uid":"6de75d0b-120"}]},"6de75d0b-213":{"id":"/home/workflows/workspace/utils/animationUtils/dist/browser/index.js","moduleParts":{},"imported":[{"uid":"6de75d0b-146"}],"importedBy":[{"uid":"6de75d0b-152"},{"uid":"6de75d0b-182"}]}},"env":{"rollup":"4.62.2"},"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":"f518d111-1","name":"Constants.js"},{"uid":"f518d111-5","name":"Vectors.js"},{"uid":"f518d111-21","name":"PluginManager.js"},{"uid":"f518d111-31","name":"Ranges.js"},{"uid":"f518d111-195","name":"EventListeners.js"},{"uid":"f518d111-199","name":"SpatialHashGrid.js"}]},{"uid":"f518d111-25","name":"Engine.js"},{"uid":"f518d111-191","name":"RenderManager.js"},{"uid":"f518d111-193","name":"CanvasManager.js"},{"uid":"f518d111-197","name":"Particle.js"},{"uid":"f518d111-201","name":"ParticlesManager.js"},{"uid":"f518d111-203","name":"Retina.js"},{"uid":"f518d111-205","name":"Container.js"}]},{"name":"Enums","children":[{"name":"Directions","children":[{"uid":"f518d111-3","name":"MoveDirection.js"},{"uid":"f518d111-11","name":"OutModeDirection.js"},{"uid":"f518d111-33","name":"RotateDirection.js"}]},{"name":"Modes","children":[{"uid":"f518d111-13","name":"PixelMode.js"},{"uid":"f518d111-35","name":"AnimationMode.js"},{"uid":"f518d111-37","name":"LimitMode.js"},{"uid":"f518d111-39","name":"OutMode.js"}]},{"name":"Types","children":[{"uid":"f518d111-19","name":"EventType.js"},{"uid":"f518d111-41","name":"AlterType.js"},{"uid":"f518d111-43","name":"DestroyType.js"},{"uid":"f518d111-45","name":"GradientType.js"},{"uid":"f518d111-47","name":"ParticleOutType.js"},{"uid":"f518d111-49","name":"StartValueType.js"}]},{"uid":"f518d111-29","name":"RangeType.js"},{"uid":"f518d111-51","name":"AnimationStatus.js"},{"uid":"f518d111-53","name":"DrawLayer.js"}]},{"name":"Utils","children":[{"uid":"f518d111-7","name":"TypeUtils.js"},{"uid":"f518d111-9","name":"MathUtils.js"},{"uid":"f518d111-15","name":"Utils.js"},{"uid":"f518d111-17","name":"EventDispatcher.js"},{"uid":"f518d111-23","name":"LogUtils.js"},{"uid":"f518d111-55","name":"OptionLoader.js"},{"uid":"f518d111-57","name":"OptionsUtils.js"},{"uid":"f518d111-115","name":"ParticlesOptionsLoader.js"},{"uid":"f518d111-119","name":"ColorUtils.js"}]},{"uid":"f518d111-27","name":"initEngine.js"},{"name":"Options/Classes","children":[{"uid":"f518d111-59","name":"AnimationOptions.js"},{"uid":"f518d111-61","name":"ColorAnimation.js"},{"uid":"f518d111-63","name":"HslAnimation.js"},{"uid":"f518d111-65","name":"OptionsColor.js"},{"uid":"f518d111-67","name":"AnimatableColor.js"},{"name":"Background/Background.js","uid":"f518d111-69"},{"name":"FullScreen/FullScreen.js","uid":"f518d111-71"},{"uid":"f518d111-73","name":"ResizeEvent.js"},{"name":"Particles","children":[{"name":"Effect/Effect.js","uid":"f518d111-75"},{"uid":"f518d111-77","name":"Fill.js"},{"name":"Move","children":[{"uid":"f518d111-79","name":"MoveAngle.js"},{"uid":"f518d111-81","name":"MoveCenter.js"},{"uid":"f518d111-83","name":"MoveGravity.js"},{"name":"Path/MovePath.js","uid":"f518d111-87"},{"uid":"f518d111-89","name":"OutModes.js"},{"uid":"f518d111-91","name":"Spin.js"},{"uid":"f518d111-93","name":"Move.js"}]},{"uid":"f518d111-95","name":"Stroke.js"},{"uid":"f518d111-97","name":"Paint.js"},{"name":"Bounce","children":[{"uid":"f518d111-99","name":"ParticlesBounceFactor.js"},{"uid":"f518d111-101","name":"ParticlesBounce.js"}]},{"name":"Number","children":[{"uid":"f518d111-103","name":"ParticlesDensity.js"},{"uid":"f518d111-105","name":"ParticlesNumberLimit.js"},{"uid":"f518d111-107","name":"ParticlesNumber.js"}]},{"name":"Shape/Shape.js","uid":"f518d111-109"},{"name":"ZIndex/ZIndex.js","uid":"f518d111-111"},{"uid":"f518d111-113","name":"ParticlesOptions.js"}]},{"uid":"f518d111-85","name":"ValueWithRandom.js"},{"uid":"f518d111-117","name":"Options.js"}]},{"uid":"f518d111-121","name":"index.js"}]},{"name":"plugins","children":[{"name":"blend/dist/browser","children":[{"name":"Options/Classes/Blend.js","uid":"f518d111-123"},{"uid":"f518d111-125","name":"BlendPlugin.js"},{"uid":"f518d111-127","name":"index.js"},{"uid":"f518d111-207","name":"BlendPluginInstance.js"}]},{"name":"colors","children":[{"name":"hex/dist/browser","children":[{"uid":"f518d111-135","name":"HexColorManager.js"},{"uid":"f518d111-137","name":"index.js"}]},{"name":"hsl/dist/browser","children":[{"uid":"f518d111-139","name":"HslColorManager.js"},{"uid":"f518d111-141","name":"index.js"}]},{"name":"rgb/dist/browser","children":[{"uid":"f518d111-175","name":"RgbColorManager.js"},{"uid":"f518d111-177","name":"index.js"}]}]},{"name":"move/dist/browser","children":[{"uid":"f518d111-143","name":"MovePlugin.js"},{"uid":"f518d111-145","name":"index.js"},{"uid":"f518d111-209","name":"Utils.js"},{"uid":"f518d111-211","name":"MovePluginInstance.js"}]}]},{"name":"shapes/circle/dist/browser","children":[{"uid":"f518d111-129","name":"Utils.js"},{"uid":"f518d111-131","name":"CircleDrawer.js"},{"uid":"f518d111-133","name":"index.js"}]},{"name":"utils/animationUtils/dist/browser/Utils.js","uid":"f518d111-147"},{"name":"updaters","children":[{"name":"opacity/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"f518d111-149","name":"OpacityAnimation.js"},{"uid":"f518d111-151","name":"Opacity.js"}]},{"uid":"f518d111-153","name":"OpacityUpdater.js"},{"uid":"f518d111-155","name":"index.js"}]},{"name":"outModes/dist/browser","children":[{"uid":"f518d111-157","name":"Utils.js"},{"uid":"f518d111-159","name":"BounceOutMode.js"},{"uid":"f518d111-161","name":"DestroyOutMode.js"},{"uid":"f518d111-163","name":"NoneOutMode.js"},{"uid":"f518d111-165","name":"OutOutMode.js"},{"uid":"f518d111-167","name":"OutOfCanvasUpdater.js"},{"uid":"f518d111-169","name":"index.js"}]},{"name":"paint/dist/browser","children":[{"uid":"f518d111-171","name":"PaintUpdater.js"},{"uid":"f518d111-173","name":"index.js"}]},{"name":"size/dist/browser","children":[{"name":"Options/Classes","children":[{"uid":"f518d111-179","name":"SizeAnimation.js"},{"uid":"f518d111-181","name":"Size.js"}]},{"uid":"f518d111-183","name":"SizeUpdater.js"},{"uid":"f518d111-185","name":"index.js"}]}]}]},{"name":"dist/browser","children":[{"uid":"f518d111-187","name":"index.js"},{"uid":"f518d111-189","name":"bundle.js"}]}]}],"isRoot":true},"nodeParts":{"f518d111-1":{"renderedLength":1607,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-0"},"f518d111-3":{"renderedLength":628,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-2"},"f518d111-5":{"renderedLength":3212,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-4"},"f518d111-7":{"renderedLength":548,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-6"},"f518d111-9":{"renderedLength":5823,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-8"},"f518d111-11":{"renderedLength":318,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-10"},"f518d111-13":{"renderedLength":198,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-12"},"f518d111-15":{"renderedLength":9205,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-14"},"f518d111-17":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-16"},"f518d111-19":{"renderedLength":800,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-18"},"f518d111-21":{"renderedLength":5075,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-20"},"f518d111-23":{"renderedLength":1182,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-22"},"f518d111-25":{"renderedLength":6107,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-24"},"f518d111-27":{"renderedLength":62,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-26"},"f518d111-29":{"renderedLength":171,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-28"},"f518d111-31":{"renderedLength":2748,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-30"},"f518d111-33":{"renderedLength":303,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-32"},"f518d111-35":{"renderedLength":310,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-34"},"f518d111-37":{"renderedLength":190,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-36"},"f518d111-39":{"renderedLength":286,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-38"},"f518d111-41":{"renderedLength":200,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-40"},"f518d111-43":{"renderedLength":232,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-42"},"f518d111-45":{"renderedLength":255,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-44"},"f518d111-47":{"renderedLength":278,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-46"},"f518d111-49":{"renderedLength":257,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-48"},"f518d111-51":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-50"},"f518d111-53":{"renderedLength":660,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-52"},"f518d111-55":{"renderedLength":332,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-54"},"f518d111-57":{"renderedLength":1379,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-56"},"f518d111-59":{"renderedLength":888,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-58"},"f518d111-61":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-60"},"f518d111-63":{"renderedLength":315,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-62"},"f518d111-65":{"renderedLength":603,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-64"},"f518d111-67":{"renderedLength":914,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-66"},"f518d111-69":{"renderedLength":882,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-68"},"f518d111-71":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-70"},"f518d111-73":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-72"},"f518d111-75":{"renderedLength":605,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-74"},"f518d111-77":{"renderedLength":387,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-76"},"f518d111-79":{"renderedLength":239,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-78"},"f518d111-81":{"renderedLength":372,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-80"},"f518d111-83":{"renderedLength":432,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-82"},"f518d111-85":{"renderedLength":590,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-84"},"f518d111-87":{"renderedLength":517,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-86"},"f518d111-89":{"renderedLength":490,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-88"},"f518d111-91":{"renderedLength":381,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-90"},"f518d111-93":{"renderedLength":2028,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-92"},"f518d111-95":{"renderedLength":384,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-94"},"f518d111-97":{"renderedLength":409,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-96"},"f518d111-99":{"renderedLength":82,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-98"},"f518d111-101":{"renderedLength":283,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-100"},"f518d111-103":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-102"},"f518d111-105":{"renderedLength":256,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-104"},"f518d111-107":{"renderedLength":331,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-106"},"f518d111-109":{"renderedLength":606,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-108"},"f518d111-111":{"renderedLength":377,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-110"},"f518d111-113":{"renderedLength":5055,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-112"},"f518d111-115":{"renderedLength":235,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-114"},"f518d111-117":{"renderedLength":3365,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-116"},"f518d111-119":{"renderedLength":15215,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-118"},"f518d111-121":{"renderedLength":37,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-120"},"f518d111-123":{"renderedLength":288,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-122"},"f518d111-125":{"renderedLength":938,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-124"},"f518d111-127":{"renderedLength":209,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-126"},"f518d111-129":{"renderedLength":334,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-128"},"f518d111-131":{"renderedLength":657,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-130"},"f518d111-133":{"renderedLength":284,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-132"},"f518d111-135":{"renderedLength":1696,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-134"},"f518d111-137":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-136"},"f518d111-139":{"renderedLength":1870,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-138"},"f518d111-141":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-140"},"f518d111-143":{"renderedLength":503,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-142"},"f518d111-145":{"renderedLength":1076,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-144"},"f518d111-147":{"renderedLength":4856,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-146"},"f518d111-149":{"renderedLength":297,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-148"},"f518d111-151":{"renderedLength":409,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-150"},"f518d111-153":{"renderedLength":1886,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-152"},"f518d111-155":{"renderedLength":314,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-154"},"f518d111-157":{"renderedLength":3393,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-156"},"f518d111-159":{"renderedLength":1412,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-158"},"f518d111-161":{"renderedLength":1267,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-160"},"f518d111-163":{"renderedLength":2034,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-162"},"f518d111-165":{"renderedLength":6658,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-164"},"f518d111-167":{"renderedLength":2191,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-166"},"f518d111-169":{"renderedLength":320,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-168"},"f518d111-171":{"renderedLength":3490,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-170"},"f518d111-173":{"renderedLength":325,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-172"},"f518d111-175":{"renderedLength":1827,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-174"},"f518d111-177":{"renderedLength":229,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-176"},"f518d111-179":{"renderedLength":294,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-178"},"f518d111-181":{"renderedLength":403,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-180"},"f518d111-183":{"renderedLength":2045,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-182"},"f518d111-185":{"renderedLength":305,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-184"},"f518d111-187":{"renderedLength":577,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-186"},"f518d111-189":{"renderedLength":120,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-188"},"f518d111-191":{"renderedLength":19195,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-190"},"f518d111-193":{"renderedLength":12591,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-192"},"f518d111-195":{"renderedLength":3127,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-194"},"f518d111-197":{"renderedLength":23499,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-196"},"f518d111-199":{"renderedLength":3896,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-198"},"f518d111-201":{"renderedLength":17468,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-200"},"f518d111-203":{"renderedLength":1506,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-202"},"f518d111-205":{"renderedLength":13446,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-204"},"f518d111-207":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-206"},"f518d111-209":{"renderedLength":6802,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-208"},"f518d111-211":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"f518d111-210"}},"nodeMetas":{"f518d111-0":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Constants.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-1"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-24"},{"uid":"f518d111-30"},{"uid":"f518d111-4"},{"uid":"f518d111-62"},{"uid":"f518d111-118"},{"uid":"f518d111-8"},{"uid":"f518d111-14"},{"uid":"f518d111-16"},{"uid":"f518d111-204"},{"uid":"f518d111-192"},{"uid":"f518d111-194"},{"uid":"f518d111-200"},{"uid":"f518d111-202"},{"uid":"f518d111-190"},{"uid":"f518d111-196"}]},"f518d111-2":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/MoveDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-3"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-92"},{"uid":"f518d111-8"},{"uid":"f518d111-196"}]},"f518d111-4":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Vectors.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-5"},"imported":[{"uid":"f518d111-0"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-8"},{"uid":"f518d111-14"},{"uid":"f518d111-196"}]},"f518d111-6":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/TypeUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-7"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-66"},{"uid":"f518d111-116"},{"uid":"f518d111-64"},{"uid":"f518d111-112"},{"uid":"f518d111-92"},{"uid":"f518d111-84"},{"uid":"f518d111-118"},{"uid":"f518d111-8"},{"uid":"f518d111-54"},{"uid":"f518d111-14"}]},"f518d111-8":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/MathUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-9"},"imported":[{"uid":"f518d111-2"},{"uid":"f518d111-0"},{"uid":"f518d111-4"},{"uid":"f518d111-6"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-24"},{"uid":"f518d111-30"},{"uid":"f518d111-84"},{"uid":"f518d111-118"},{"uid":"f518d111-56"},{"uid":"f518d111-14"},{"uid":"f518d111-204"},{"uid":"f518d111-202"},{"uid":"f518d111-196"}]},"f518d111-10":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/OutModeDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-11"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-14"},{"uid":"f518d111-196"}]},"f518d111-12":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/PixelMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-13"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-80"},{"uid":"f518d111-14"}]},"f518d111-14":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-15"},"imported":[{"uid":"f518d111-8"},{"uid":"f518d111-6"},{"uid":"f518d111-10"},{"uid":"f518d111-12"},{"uid":"f518d111-4"},{"uid":"f518d111-0"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-24"},{"uid":"f518d111-116"},{"uid":"f518d111-112"},{"uid":"f518d111-86"},{"uid":"f518d111-90"},{"uid":"f518d111-108"},{"uid":"f518d111-118"},{"uid":"f518d111-56"},{"uid":"f518d111-20"},{"uid":"f518d111-74"},{"uid":"f518d111-192"},{"uid":"f518d111-194"},{"uid":"f518d111-196"}]},"f518d111-16":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/EventDispatcher.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-17"},"imported":[{"uid":"f518d111-0"}],"importedBy":[{"uid":"f518d111-24"}]},"f518d111-18":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/EventType.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-19"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-20"},{"uid":"f518d111-204"},{"uid":"f518d111-200"},{"uid":"f518d111-196"}]},"f518d111-20":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/PluginManager.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-21"},"imported":[{"uid":"f518d111-14"},{"uid":"f518d111-18"}],"importedBy":[{"uid":"f518d111-24"}]},"f518d111-22":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/LogUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-23"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-24"},{"uid":"f518d111-204"},{"uid":"f518d111-200"},{"uid":"f518d111-190"}]},"f518d111-24":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Engine.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-25"},"imported":[{"uid":"f518d111-0"},{"uid":"f518d111-14"},{"uid":"f518d111-16"},{"uid":"f518d111-20"},{"uid":"f518d111-22"},{"uid":"f518d111-8"},{"uid":"f518d111-204","dynamic":true}],"importedBy":[{"uid":"f518d111-26"}]},"f518d111-26":{"id":"/home/workflows/workspace/engine/dist/browser/initEngine.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-27"},"imported":[{"uid":"f518d111-24"}],"importedBy":[{"uid":"f518d111-120"}]},"f518d111-28":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/RangeType.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-29"},"imported":[],"importedBy":[{"uid":"f518d111-30"}]},"f518d111-30":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/Ranges.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-31"},"imported":[{"uid":"f518d111-28"},{"uid":"f518d111-8"},{"uid":"f518d111-0"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-198"}]},"f518d111-32":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Directions/RotateDirection.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-33"},"imported":[],"importedBy":[{"uid":"f518d111-212"}]},"f518d111-34":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/AnimationMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-35"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-58"}]},"f518d111-36":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/LimitMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-37"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-104"},{"uid":"f518d111-200"}]},"f518d111-38":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Modes/OutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-39"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-88"},{"uid":"f518d111-196"}]},"f518d111-40":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/AlterType.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-41"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-118"}]},"f518d111-42":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/DestroyType.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-43"},"imported":[],"importedBy":[{"uid":"f518d111-212"}]},"f518d111-44":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/GradientType.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-45"},"imported":[],"importedBy":[{"uid":"f518d111-212"}]},"f518d111-46":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/ParticleOutType.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-47"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-196"}]},"f518d111-48":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/Types/StartValueType.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-49"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-58"}]},"f518d111-50":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/AnimationStatus.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-51"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-118"}]},"f518d111-52":{"id":"/home/workflows/workspace/engine/dist/browser/Enums/DrawLayer.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-53"},"imported":[],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-190"}]},"f518d111-54":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionLoader.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-55"},"imported":[{"uid":"f518d111-6"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-58"},{"uid":"f518d111-62"},{"uid":"f518d111-116"},{"uid":"f518d111-64"},{"uid":"f518d111-100"},{"uid":"f518d111-112"},{"uid":"f518d111-76"},{"uid":"f518d111-96"},{"uid":"f518d111-94"},{"uid":"f518d111-92"},{"uid":"f518d111-78"},{"uid":"f518d111-80"},{"uid":"f518d111-82"},{"uid":"f518d111-88"},{"uid":"f518d111-86"},{"uid":"f518d111-90"},{"uid":"f518d111-106"},{"uid":"f518d111-104"},{"uid":"f518d111-102"},{"uid":"f518d111-108"},{"uid":"f518d111-84"},{"uid":"f518d111-114"},{"uid":"f518d111-56"},{"uid":"f518d111-74"}]},"f518d111-56":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/OptionsUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-57"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-14"},{"uid":"f518d111-8"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-58"},{"uid":"f518d111-68"},{"uid":"f518d111-60"},{"uid":"f518d111-70"},{"uid":"f518d111-116"},{"uid":"f518d111-76"},{"uid":"f518d111-96"},{"uid":"f518d111-94"},{"uid":"f518d111-92"},{"uid":"f518d111-78"},{"uid":"f518d111-80"},{"uid":"f518d111-82"},{"uid":"f518d111-86"},{"uid":"f518d111-90"},{"uid":"f518d111-106"},{"uid":"f518d111-104"},{"uid":"f518d111-102"},{"uid":"f518d111-108"},{"uid":"f518d111-110"},{"uid":"f518d111-72"},{"uid":"f518d111-84"},{"uid":"f518d111-204"},{"uid":"f518d111-74"}]},"f518d111-58":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimationOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-59"},"imported":[{"uid":"f518d111-56"},{"uid":"f518d111-34"},{"uid":"f518d111-54"},{"uid":"f518d111-48"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-60"},{"uid":"f518d111-84"}]},"f518d111-60":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ColorAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-61"},"imported":[{"uid":"f518d111-56"},{"uid":"f518d111-58"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-62"}]},"f518d111-62":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/HslAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-63"},"imported":[{"uid":"f518d111-0"},{"uid":"f518d111-60"},{"uid":"f518d111-54"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-66"}]},"f518d111-64":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/OptionsColor.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-65"},"imported":[{"uid":"f518d111-6"},{"uid":"f518d111-54"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-66"},{"uid":"f518d111-68"}]},"f518d111-66":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/AnimatableColor.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-67"},"imported":[{"uid":"f518d111-6"},{"uid":"f518d111-62"},{"uid":"f518d111-64"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"},{"uid":"f518d111-76"},{"uid":"f518d111-96"},{"uid":"f518d111-94"}]},"f518d111-68":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Background/Background.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-69"},"imported":[{"uid":"f518d111-56"},{"uid":"f518d111-64"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-116"}]},"f518d111-70":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/FullScreen/FullScreen.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-71"},"imported":[{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-116"}]},"f518d111-72":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ResizeEvent.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-73"},"imported":[{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-116"}]},"f518d111-74":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Effect/Effect.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-75"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-14"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-112"}]},"f518d111-76":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Fill.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-77"},"imported":[{"uid":"f518d111-56"},{"uid":"f518d111-66"},{"uid":"f518d111-54"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"},{"uid":"f518d111-96"}]},"f518d111-78":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveAngle.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-79"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-92"}]},"f518d111-80":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveCenter.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-81"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-12"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-92"}]},"f518d111-82":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/MoveGravity.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-83"},"imported":[{"uid":"f518d111-56"},{"uid":"f518d111-54"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-92"}]},"f518d111-84":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/ValueWithRandom.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-85"},"imported":[{"uid":"f518d111-58"},{"uid":"f518d111-54"},{"uid":"f518d111-6"},{"uid":"f518d111-56"},{"uid":"f518d111-8"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-98"},{"uid":"f518d111-86"},{"uid":"f518d111-110"}]},"f518d111-86":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Path/MovePath.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-87"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-84"},{"uid":"f518d111-14"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-92"}]},"f518d111-88":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/OutModes.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-89"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-38"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-92"}]},"f518d111-90":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Spin.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-91"},"imported":[{"uid":"f518d111-56"},{"uid":"f518d111-54"},{"uid":"f518d111-14"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-92"}]},"f518d111-92":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Move/Move.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-93"},"imported":[{"uid":"f518d111-2"},{"uid":"f518d111-6"},{"uid":"f518d111-56"},{"uid":"f518d111-78"},{"uid":"f518d111-80"},{"uid":"f518d111-82"},{"uid":"f518d111-86"},{"uid":"f518d111-54"},{"uid":"f518d111-88"},{"uid":"f518d111-90"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"}]},"f518d111-94":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Stroke.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-95"},"imported":[{"uid":"f518d111-66"},{"uid":"f518d111-54"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-96"}]},"f518d111-96":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Paint.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-97"},"imported":[{"uid":"f518d111-66"},{"uid":"f518d111-76"},{"uid":"f518d111-54"},{"uid":"f518d111-94"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"}]},"f518d111-98":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-99"},"imported":[{"uid":"f518d111-84"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-100"}]},"f518d111-100":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-101"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-98"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"}]},"f518d111-102":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesDensity.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-103"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-106"}]},"f518d111-104":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-105"},"imported":[{"uid":"f518d111-36"},{"uid":"f518d111-54"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-106"}]},"f518d111-106":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Number/ParticlesNumber.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-107"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-102"},{"uid":"f518d111-104"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"}]},"f518d111-108":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/Shape/Shape.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-109"},"imported":[{"uid":"f518d111-54"},{"uid":"f518d111-14"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"}]},"f518d111-110":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ZIndex/ZIndex.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-111"},"imported":[{"uid":"f518d111-84"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-112"}]},"f518d111-112":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Particles/ParticlesOptions.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-113"},"imported":[{"uid":"f518d111-14"},{"uid":"f518d111-66"},{"uid":"f518d111-74"},{"uid":"f518d111-76"},{"uid":"f518d111-92"},{"uid":"f518d111-54"},{"uid":"f518d111-96"},{"uid":"f518d111-100"},{"uid":"f518d111-106"},{"uid":"f518d111-108"},{"uid":"f518d111-110"},{"uid":"f518d111-6"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-114"}]},"f518d111-114":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ParticlesOptionsLoader.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-115"},"imported":[{"uid":"f518d111-112"},{"uid":"f518d111-54"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-116"},{"uid":"f518d111-200"},{"uid":"f518d111-196"}]},"f518d111-116":{"id":"/home/workflows/workspace/engine/dist/browser/Options/Classes/Options.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-117"},"imported":[{"uid":"f518d111-14"},{"uid":"f518d111-56"},{"uid":"f518d111-68"},{"uid":"f518d111-70"},{"uid":"f518d111-54"},{"uid":"f518d111-72"},{"uid":"f518d111-6"},{"uid":"f518d111-114"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-204"}]},"f518d111-118":{"id":"/home/workflows/workspace/engine/dist/browser/Utils/ColorUtils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-119"},"imported":[{"uid":"f518d111-8"},{"uid":"f518d111-0"},{"uid":"f518d111-6"},{"uid":"f518d111-40"},{"uid":"f518d111-50"},{"uid":"f518d111-14"}],"importedBy":[{"uid":"f518d111-212"},{"uid":"f518d111-192"},{"uid":"f518d111-190"},{"uid":"f518d111-196"}]},"f518d111-120":{"id":"/home/workflows/workspace/engine/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-121"},"imported":[{"uid":"f518d111-26"},{"uid":"f518d111-212"}],"importedBy":[{"uid":"f518d111-188"},{"uid":"f518d111-144"},{"uid":"f518d111-130"},{"uid":"f518d111-138"},{"uid":"f518d111-152"},{"uid":"f518d111-166"},{"uid":"f518d111-170"},{"uid":"f518d111-174"},{"uid":"f518d111-182"},{"uid":"f518d111-122"},{"uid":"f518d111-206"},{"uid":"f518d111-128"},{"uid":"f518d111-210"},{"uid":"f518d111-150"},{"uid":"f518d111-158"},{"uid":"f518d111-160"},{"uid":"f518d111-162"},{"uid":"f518d111-164"},{"uid":"f518d111-180"},{"uid":"f518d111-208"},{"uid":"f518d111-146"},{"uid":"f518d111-148"},{"uid":"f518d111-156"},{"uid":"f518d111-178"}]},"f518d111-122":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/Options/Classes/Blend.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-123"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-124"}]},"f518d111-124":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-125"},"imported":[{"uid":"f518d111-122"},{"uid":"f518d111-206","dynamic":true}],"importedBy":[{"uid":"f518d111-126"}]},"f518d111-126":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-127"},"imported":[{"uid":"f518d111-124"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-128":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-129"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-130"}]},"f518d111-130":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/CircleDrawer.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-131"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-128"}],"importedBy":[{"uid":"f518d111-132"}]},"f518d111-132":{"id":"/home/workflows/workspace/shapes/circle/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-133"},"imported":[{"uid":"f518d111-130"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-134":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/HexColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-135"},"imported":[],"importedBy":[{"uid":"f518d111-136"}]},"f518d111-136":{"id":"/home/workflows/workspace/plugins/colors/hex/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-137"},"imported":[{"uid":"f518d111-134"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-138":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/HslColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-139"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-140"}]},"f518d111-140":{"id":"/home/workflows/workspace/plugins/colors/hsl/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-141"},"imported":[{"uid":"f518d111-138"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-142":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePlugin.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-143"},"imported":[{"uid":"f518d111-210","dynamic":true}],"importedBy":[{"uid":"f518d111-144"}]},"f518d111-144":{"id":"/home/workflows/workspace/plugins/move/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-145"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-142"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-146":{"id":"/home/workflows/workspace/utils/animationUtils/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-147"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-213"}]},"f518d111-148":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/OpacityAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-149"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-150"}]},"f518d111-150":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/Options/Classes/Opacity.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-151"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-148"}],"importedBy":[{"uid":"f518d111-152"}]},"f518d111-152":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/OpacityUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-153"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-213"},{"uid":"f518d111-150"}],"importedBy":[{"uid":"f518d111-154"}]},"f518d111-154":{"id":"/home/workflows/workspace/updaters/opacity/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-155"},"imported":[{"uid":"f518d111-152"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-156":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-157"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-158"}]},"f518d111-158":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/BounceOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-159"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-156"}],"importedBy":[{"uid":"f518d111-166"}]},"f518d111-160":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/DestroyOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-161"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-166"}]},"f518d111-162":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/NoneOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-163"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-166"}]},"f518d111-164":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOutMode.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-165"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-166"}]},"f518d111-166":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/OutOfCanvasUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-167"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-158"},{"uid":"f518d111-160"},{"uid":"f518d111-162"},{"uid":"f518d111-164"}],"importedBy":[{"uid":"f518d111-168"}]},"f518d111-168":{"id":"/home/workflows/workspace/updaters/outModes/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-169"},"imported":[{"uid":"f518d111-166"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-170":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/PaintUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-171"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-172"}]},"f518d111-172":{"id":"/home/workflows/workspace/updaters/paint/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-173"},"imported":[{"uid":"f518d111-170"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-174":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/RgbColorManager.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-175"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-176"}]},"f518d111-176":{"id":"/home/workflows/workspace/plugins/colors/rgb/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-177"},"imported":[{"uid":"f518d111-174"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-178":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/SizeAnimation.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-179"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-180"}]},"f518d111-180":{"id":"/home/workflows/workspace/updaters/size/dist/browser/Options/Classes/Size.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-181"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-178"}],"importedBy":[{"uid":"f518d111-182"}]},"f518d111-182":{"id":"/home/workflows/workspace/updaters/size/dist/browser/SizeUpdater.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-183"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-213"},{"uid":"f518d111-180"}],"importedBy":[{"uid":"f518d111-184"}]},"f518d111-184":{"id":"/home/workflows/workspace/updaters/size/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-185"},"imported":[{"uid":"f518d111-182"}],"importedBy":[{"uid":"f518d111-186"}]},"f518d111-186":{"id":"/dist/browser/index.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-187"},"imported":[{"uid":"f518d111-126"},{"uid":"f518d111-132"},{"uid":"f518d111-136"},{"uid":"f518d111-140"},{"uid":"f518d111-144"},{"uid":"f518d111-154"},{"uid":"f518d111-168"},{"uid":"f518d111-172"},{"uid":"f518d111-176"},{"uid":"f518d111-184"}],"importedBy":[{"uid":"f518d111-188"}]},"f518d111-188":{"id":"/dist/browser/bundle.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-189"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-186"}],"importedBy":[],"isEntry":true},"f518d111-190":{"id":"/home/workflows/workspace/engine/dist/browser/Core/RenderManager.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-191"},"imported":[{"uid":"f518d111-0"},{"uid":"f518d111-118"},{"uid":"f518d111-52"},{"uid":"f518d111-22"}],"importedBy":[{"uid":"f518d111-192"}]},"f518d111-192":{"id":"/home/workflows/workspace/engine/dist/browser/Core/CanvasManager.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-193"},"imported":[{"uid":"f518d111-14"},{"uid":"f518d111-0"},{"uid":"f518d111-118"},{"uid":"f518d111-190"}],"importedBy":[{"uid":"f518d111-204"}]},"f518d111-194":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/EventListeners.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-195"},"imported":[{"uid":"f518d111-14"},{"uid":"f518d111-0"}],"importedBy":[{"uid":"f518d111-204"}]},"f518d111-196":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Particle.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-197"},"imported":[{"uid":"f518d111-4"},{"uid":"f518d111-118"},{"uid":"f518d111-8"},{"uid":"f518d111-14"},{"uid":"f518d111-0"},{"uid":"f518d111-18"},{"uid":"f518d111-2"},{"uid":"f518d111-38"},{"uid":"f518d111-10"},{"uid":"f518d111-46"},{"uid":"f518d111-114"}],"importedBy":[{"uid":"f518d111-200"}]},"f518d111-198":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Utils/SpatialHashGrid.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-199"},"imported":[{"uid":"f518d111-30"}],"importedBy":[{"uid":"f518d111-200"}]},"f518d111-200":{"id":"/home/workflows/workspace/engine/dist/browser/Core/ParticlesManager.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-201"},"imported":[{"uid":"f518d111-0"},{"uid":"f518d111-18"},{"uid":"f518d111-36"},{"uid":"f518d111-196"},{"uid":"f518d111-198"},{"uid":"f518d111-22"},{"uid":"f518d111-114"}],"importedBy":[{"uid":"f518d111-204"}]},"f518d111-202":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Retina.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-203"},"imported":[{"uid":"f518d111-0"},{"uid":"f518d111-8"}],"importedBy":[{"uid":"f518d111-204"}]},"f518d111-204":{"id":"/home/workflows/workspace/engine/dist/browser/Core/Container.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-205"},"imported":[{"uid":"f518d111-8"},{"uid":"f518d111-0"},{"uid":"f518d111-192"},{"uid":"f518d111-194"},{"uid":"f518d111-18"},{"uid":"f518d111-116"},{"uid":"f518d111-200"},{"uid":"f518d111-202"},{"uid":"f518d111-22"},{"uid":"f518d111-56"}],"importedBy":[{"uid":"f518d111-24"}]},"f518d111-206":{"id":"/home/workflows/workspace/plugins/blend/dist/browser/BlendPluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-207"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-124"}]},"f518d111-208":{"id":"/home/workflows/workspace/plugins/move/dist/browser/Utils.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-209"},"imported":[{"uid":"f518d111-120"}],"importedBy":[{"uid":"f518d111-210"}]},"f518d111-210":{"id":"/home/workflows/workspace/plugins/move/dist/browser/MovePluginInstance.js","moduleParts":{"tsparticles.basic.bundle.js":"f518d111-211"},"imported":[{"uid":"f518d111-120"},{"uid":"f518d111-208"}],"importedBy":[{"uid":"f518d111-142"}]},"f518d111-212":{"id":"/home/workflows/workspace/engine/dist/browser/exports.js","moduleParts":{},"imported":[{"uid":"f518d111-0"},{"uid":"f518d111-30"},{"uid":"f518d111-4"},{"uid":"f518d111-2"},{"uid":"f518d111-32"},{"uid":"f518d111-10"},{"uid":"f518d111-34"},{"uid":"f518d111-36"},{"uid":"f518d111-38"},{"uid":"f518d111-12"},{"uid":"f518d111-40"},{"uid":"f518d111-42"},{"uid":"f518d111-44"},{"uid":"f518d111-46"},{"uid":"f518d111-48"},{"uid":"f518d111-18"},{"uid":"f518d111-50"},{"uid":"f518d111-52"},{"uid":"f518d111-66"},{"uid":"f518d111-58"},{"uid":"f518d111-68"},{"uid":"f518d111-60"},{"uid":"f518d111-70"},{"uid":"f518d111-62"},{"uid":"f518d111-116"},{"uid":"f518d111-64"},{"uid":"f518d111-100"},{"uid":"f518d111-98"},{"uid":"f518d111-112"},{"uid":"f518d111-76"},{"uid":"f518d111-96"},{"uid":"f518d111-94"},{"uid":"f518d111-92"},{"uid":"f518d111-78"},{"uid":"f518d111-80"},{"uid":"f518d111-82"},{"uid":"f518d111-88"},{"uid":"f518d111-86"},{"uid":"f518d111-90"},{"uid":"f518d111-106"},{"uid":"f518d111-104"},{"uid":"f518d111-102"},{"uid":"f518d111-108"},{"uid":"f518d111-110"},{"uid":"f518d111-72"},{"uid":"f518d111-84"},{"uid":"f518d111-118"},{"uid":"f518d111-22"},{"uid":"f518d111-8"},{"uid":"f518d111-54"},{"uid":"f518d111-114"},{"uid":"f518d111-56"},{"uid":"f518d111-14"},{"uid":"f518d111-6"}],"importedBy":[{"uid":"f518d111-120"}]},"f518d111-213":{"id":"/home/workflows/workspace/utils/animationUtils/dist/browser/index.js","moduleParts":{},"imported":[{"uid":"f518d111-146"}],"importedBy":[{"uid":"f518d111-152"},{"uid":"f518d111-182"}]}},"env":{"rollup":"4.62.2"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
|
|
4934
4934
|
|
|
4935
4935
|
const run = () => {
|
|
4936
4936
|
const width = window.innerWidth;
|