@tsparticles/preset-fireworks 3.0.0-beta.2 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/browser/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadBasic } from "@tsparticles/basic";
2
2
  import { loadDestroyUpdater } from "@tsparticles/updater-destroy";
3
3
  import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
4
+ import { loadEmittersShapeSquare } from "@tsparticles/plugin-emitters-shape-square";
4
5
  import { loadLifeUpdater } from "@tsparticles/updater-life";
5
6
  import { loadLineShape } from "@tsparticles/shape-line";
6
7
  import { loadRotateUpdater } from "@tsparticles/updater-rotate";
@@ -10,6 +11,7 @@ import { options } from "./options";
10
11
  export async function loadFireworksPreset(engine, refresh = true) {
11
12
  await loadBasic(engine, false);
12
13
  await loadEmittersPlugin(engine, false);
14
+ await loadEmittersShapeSquare(engine, false);
13
15
  await loadSoundsPlugin(engine, false);
14
16
  await loadLineShape(engine, false);
15
17
  await loadRotateUpdater(engine, false);
package/cjs/index.js CHANGED
@@ -4,6 +4,7 @@ exports.loadFireworksPreset = void 0;
4
4
  const basic_1 = require("@tsparticles/basic");
5
5
  const updater_destroy_1 = require("@tsparticles/updater-destroy");
6
6
  const plugin_emitters_1 = require("@tsparticles/plugin-emitters");
7
+ const plugin_emitters_shape_square_1 = require("@tsparticles/plugin-emitters-shape-square");
7
8
  const updater_life_1 = require("@tsparticles/updater-life");
8
9
  const shape_line_1 = require("@tsparticles/shape-line");
9
10
  const updater_rotate_1 = require("@tsparticles/updater-rotate");
@@ -13,6 +14,7 @@ const options_1 = require("./options");
13
14
  async function loadFireworksPreset(engine, refresh = true) {
14
15
  await (0, basic_1.loadBasic)(engine, false);
15
16
  await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
17
+ await (0, plugin_emitters_shape_square_1.loadEmittersShapeSquare)(engine, false);
16
18
  await (0, plugin_sounds_1.loadSoundsPlugin)(engine, false);
17
19
  await (0, shape_line_1.loadLineShape)(engine, false);
18
20
  await (0, updater_rotate_1.loadRotateUpdater)(engine, false);
package/esm/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { loadBasic } from "@tsparticles/basic";
2
2
  import { loadDestroyUpdater } from "@tsparticles/updater-destroy";
3
3
  import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
4
+ import { loadEmittersShapeSquare } from "@tsparticles/plugin-emitters-shape-square";
4
5
  import { loadLifeUpdater } from "@tsparticles/updater-life";
5
6
  import { loadLineShape } from "@tsparticles/shape-line";
6
7
  import { loadRotateUpdater } from "@tsparticles/updater-rotate";
@@ -10,6 +11,7 @@ import { options } from "./options";
10
11
  export async function loadFireworksPreset(engine, refresh = true) {
11
12
  await loadBasic(engine, false);
12
13
  await loadEmittersPlugin(engine, false);
14
+ await loadEmittersShapeSquare(engine, false);
13
15
  await loadSoundsPlugin(engine, false);
14
16
  await loadLineShape(engine, false);
15
17
  await loadRotateUpdater(engine, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsparticles/preset-fireworks",
3
- "version": "3.0.0-beta.2",
3
+ "version": "3.0.0",
4
4
  "description": "tsParticles fireworks preset",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
@@ -60,7 +60,7 @@
60
60
  "confettijs",
61
61
  "fireworksjs",
62
62
  "canvas-confetti",
63
- "@tsparticles/preset"
63
+ "tsparticles-preset"
64
64
  ],
65
65
  "author": "Matteo Bruni <matteo.bruni@me.com>",
66
66
  "license": "MIT",
@@ -87,14 +87,18 @@
87
87
  "module": "esm/index.js",
88
88
  "types": "types/index.d.ts",
89
89
  "dependencies": {
90
- "@tsparticles/basic": "^3.0.0-beta.4",
91
- "@tsparticles/engine": "^3.0.0-beta.4",
92
- "@tsparticles/plugin-emitters": "^3.0.0-beta.4",
93
- "@tsparticles/plugin-sounds": "^3.0.0-beta.4",
94
- "@tsparticles/shape-line": "^3.0.0-beta.4",
95
- "@tsparticles/updater-destroy": "^3.0.0-beta.4",
96
- "@tsparticles/updater-life": "^3.0.0-beta.4",
97
- "@tsparticles/updater-rotate": "^3.0.0-beta.4",
98
- "@tsparticles/updater-stroke-color": "^3.0.0-beta.4"
90
+ "@tsparticles/basic": "^3.0.0",
91
+ "@tsparticles/engine": "^3.0.0",
92
+ "@tsparticles/plugin-emitters": "^3.0.0",
93
+ "@tsparticles/plugin-emitters-shape-square": "^3.0.0",
94
+ "@tsparticles/plugin-sounds": "^3.0.0",
95
+ "@tsparticles/shape-line": "^3.0.0",
96
+ "@tsparticles/updater-destroy": "^3.0.0",
97
+ "@tsparticles/updater-life": "^3.0.0",
98
+ "@tsparticles/updater-rotate": "^3.0.0",
99
+ "@tsparticles/updater-stroke-color": "^3.0.0"
100
+ },
101
+ "publishConfig": {
102
+ "access": "public"
99
103
  }
100
104
  }
package/report.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8"/>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
6
- <title>@tsparticles/preset-fireworks [16 Nov 2023 at 15:43]</title>
6
+ <title>@tsparticles/preset-fireworks [5 Dec 2023 at 01:40]</title>
7
7
  <link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
8
8
 
9
9
  <script>
@@ -31,7 +31,7 @@
31
31
  <body>
32
32
  <div id="app"></div>
33
33
  <script>
34
- window.chartData = [{"label":"tsparticles.preset.fireworks.bundle.js","isAsset":true,"statSize":289094,"parsedSize":292948,"gzipSize":48385,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":289094,"groups":[{"id":134,"label":"bundle.js + 145 modules (concatenated)","path":"./dist/browser/bundle.js + 145 modules (concatenated)","statSize":289094,"parsedSize":292948,"gzipSize":48385,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/dist/browser","statSize":5132,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/dist/browser/bundle.js","statSize":170,"parsedSize":172,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/dist/browser/index.js","statSize":995,"parsedSize":1008,"gzipSize":166,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/dist/browser/options.js","statSize":3967,"parsedSize":4019,"gzipSize":663,"inaccurateSizes":true}],"parsedSize":5200,"gzipSize":858,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm","statSize":283962,"groups":[{"label":"@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser","statSize":174405,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":252,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":496,"gzipSize":82,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils","statSize":33804,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12179,"gzipSize":2011,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4702,"gzipSize":776,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4188,"parsedSize":4243,"gzipSize":700,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8837,"gzipSize":1459,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":457,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1402,"gzipSize":231,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1238,"gzipSize":204,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1193,"gzipSize":197,"inaccurateSizes":true}],"parsedSize":34254,"gzipSize":5657,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4966,"gzipSize":820,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core","statSize":93556,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8642,"parsedSize":8757,"gzipSize":1446,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":23975,"groups":[{"id":null,"label":"Vector.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":373,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2773,"gzipSize":458,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":595,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1116,"gzipSize":184,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":923,"gzipSize":152,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/Range.js","statSize":126,"parsedSize":127,"gzipSize":21,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":136,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14314,"gzipSize":2364,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2089,"gzipSize":345,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1843,"gzipSize":304,"inaccurateSizes":true}],"parsedSize":24294,"gzipSize":4012,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15794,"gzipSize":2608,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16214,"parsedSize":16430,"gzipSize":2713,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12247,"parsedSize":12410,"gzipSize":2049,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1781,"gzipSize":294,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15133,"parsedSize":15334,"gzipSize":2532,"inaccurateSizes":true}],"parsedSize":94803,"gzipSize":15658,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":41405,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":5986,"parsedSize":6065,"gzipSize":1001,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":962,"gzipSize":158,"inaccurateSizes":true}],"parsedSize":962,"gzipSize":158,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":627,"gzipSize":103,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1301,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":808,"gzipSize":133,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":509,"gzipSize":84,"inaccurateSizes":true}],"parsedSize":1318,"gzipSize":217,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4495,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":571,"gzipSize":94,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3331,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":1056,"parsedSize":1070,"gzipSize":176,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":359,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":602,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":486,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":478,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":377,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3375,"gzipSize":557,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":607,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":607,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":4554,"gzipSize":752,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":481,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":698,"gzipSize":115,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":995,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":535,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":473,"gzipSize":78,"inaccurateSizes":true}],"parsedSize":1008,"gzipSize":166,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21197,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3416,"parsedSize":3461,"gzipSize":571,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1623,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1019,"gzipSize":168,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":248,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":376,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":1644,"gzipSize":271,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":404,"gzipSize":66,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":596,"gzipSize":98,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8345,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3104,"gzipSize":512,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":455,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":857,"gzipSize":141,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":742,"gzipSize":122,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":745,"gzipSize":123,"inaccurateSizes":true}],"parsedSize":745,"gzipSize":123,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":550,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":624,"gzipSize":103,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":557,"gzipSize":92,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":446,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":370,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":8456,"gzipSize":1396,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":972,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":555,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":429,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":984,"gzipSize":162,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":888,"gzipSize":146,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":876,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":876,"gzipSize":144,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":957,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":543,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":426,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":969,"gzipSize":160,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":609,"gzipSize":100,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":656,"gzipSize":108,"inaccurateSizes":true}],"parsedSize":656,"gzipSize":108,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1440,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":549,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":542,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":367,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1459,"gzipSize":241,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":875,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":875,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":21479,"gzipSize":3547,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1081,"gzipSize":178,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":393,"gzipSize":64,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":480,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1404,"gzipSize":231,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1035,"gzipSize":171,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0-beta.4/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":365,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":365,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":41956,"gzipSize":6929,"inaccurateSizes":true}],"parsedSize":176730,"gzipSize":29189,"inaccurateSizes":true},{"label":"@tsparticles+basic@3.0.0-beta.4/node_modules/@tsparticles/basic/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0-beta.4/node_modules/@tsparticles/basic/browser","statSize":731,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0-beta.4/node_modules/@tsparticles/basic/browser/index.js","statSize":731,"parsedSize":740,"gzipSize":122,"inaccurateSizes":true}],"parsedSize":740,"gzipSize":122,"inaccurateSizes":true},{"label":"@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser","statSize":8422,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/index.js","statSize":234,"parsedSize":237,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"DestroyUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/DestroyUpdater.js","statSize":2429,"parsedSize":2461,"gzipSize":406,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/Options/Classes","statSize":2862,"groups":[{"id":null,"label":"Destroy.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Destroy.js","statSize":505,"parsedSize":511,"gzipSize":84,"inaccurateSizes":true},{"id":null,"label":"DestroyBounds.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/DestroyBounds.js","statSize":560,"parsedSize":567,"gzipSize":93,"inaccurateSizes":true},{"id":null,"label":"Split.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Split.js","statSize":1432,"parsedSize":1451,"gzipSize":239,"inaccurateSizes":true},{"id":null,"label":"SplitFactor.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitFactor.js","statSize":175,"parsedSize":177,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"SplitRate.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitRate.js","statSize":190,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":2900,"gzipSize":479,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0-beta.4/node_modules/@tsparticles/updater-destroy/browser/Utils.js","statSize":2897,"parsedSize":2935,"gzipSize":484,"inaccurateSizes":true}],"parsedSize":8534,"gzipSize":1409,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser","statSize":25502,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4326,"gzipSize":714,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4578,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2102,"gzipSize":347,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":600,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":467,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":598,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":489,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":379,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":4639,"gzipSize":766,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4382,"gzipSize":723,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":448,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0-beta.4/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11886,"parsedSize":12044,"gzipSize":1989,"inaccurateSizes":true}],"parsedSize":25841,"gzipSize":4268,"inaccurateSizes":true},{"label":"@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser","statSize":4783,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser/index.js","statSize":211,"parsedSize":213,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"LifeUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser/LifeUpdater.js","statSize":3360,"parsedSize":3404,"gzipSize":562,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser/Options/Classes","statSize":1212,"groups":[{"id":null,"label":"Life.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser/Options/Classes/Life.js","statSize":489,"parsedSize":495,"gzipSize":81,"inaccurateSizes":true},{"id":null,"label":"LifeDelay.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser/Options/Classes/LifeDelay.js","statSize":360,"parsedSize":364,"gzipSize":60,"inaccurateSizes":true},{"id":null,"label":"LifeDuration.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0-beta.4/node_modules/@tsparticles/updater-life/browser/Options/Classes/LifeDuration.js","statSize":363,"parsedSize":367,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1228,"gzipSize":202,"inaccurateSizes":true}],"parsedSize":4846,"gzipSize":800,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.0.0-beta.4/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0-beta.4/node_modules/@tsparticles/updater-rotate/browser","statSize":4692,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0-beta.4/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":221,"parsedSize":223,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0-beta.4/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":3135,"parsedSize":3176,"gzipSize":524,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0-beta.4/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1336,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0-beta.4/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":668,"parsedSize":676,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0-beta.4/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":676,"gzipSize":111,"inaccurateSizes":true}],"parsedSize":1353,"gzipSize":223,"inaccurateSizes":true}],"parsedSize":4754,"gzipSize":785,"inaccurateSizes":true},{"label":"@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser","statSize":27220,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/index.js","statSize":875,"parsedSize":886,"gzipSize":146,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes","statSize":11236,"groups":[{"id":null,"label":"Sounds.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/Sounds.js","statSize":856,"parsedSize":867,"gzipSize":143,"inaccurateSizes":true},{"id":null,"label":"SoundsEvent.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsEvent.js","statSize":1655,"parsedSize":1677,"gzipSize":276,"inaccurateSizes":true},{"id":null,"label":"SoundsVolume.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsVolume.js","statSize":764,"parsedSize":774,"gzipSize":127,"inaccurateSizes":true},{"id":null,"label":"SoundsIcons.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsIcons.js","statSize":5737,"parsedSize":5813,"gzipSize":960,"inaccurateSizes":true},{"id":null,"label":"SoundsAudio.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsAudio.js","statSize":538,"parsedSize":545,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"SoundsNote.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsNote.js","statSize":365,"parsedSize":369,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"SoundsMelody.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsMelody.js","statSize":800,"parsedSize":810,"gzipSize":133,"inaccurateSizes":true},{"id":null,"label":"SoundsIcon.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsIcon.js","statSize":521,"parsedSize":527,"gzipSize":87,"inaccurateSizes":true}],"parsedSize":11385,"gzipSize":1880,"inaccurateSizes":true},{"id":null,"label":"SoundsInstance.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/SoundsInstance.js","statSize":13653,"parsedSize":13835,"gzipSize":2285,"inaccurateSizes":true},{"id":null,"label":"utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0-beta.4/node_modules/@tsparticles/plugin-sounds/browser/utils.js","statSize":1456,"parsedSize":1475,"gzipSize":243,"inaccurateSizes":true}],"parsedSize":27582,"gzipSize":4555,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.0.0-beta.4/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0-beta.4/node_modules/@tsparticles/updater-stroke-color/browser","statSize":3981,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0-beta.4/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":246,"parsedSize":249,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0-beta.4/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1549,"parsedSize":1569,"gzipSize":259,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0-beta.4/node_modules/@tsparticles/updater-stroke-color/browser/Utils.js","statSize":2186,"parsedSize":2215,"gzipSize":365,"inaccurateSizes":true}],"parsedSize":4034,"gzipSize":666,"inaccurateSizes":true},{"label":"@tsparticles+shape-line@3.0.0-beta.4/node_modules/@tsparticles/shape-line/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-line@3.0.0-beta.4/node_modules/@tsparticles/shape-line/browser","statSize":484,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-line@3.0.0-beta.4/node_modules/@tsparticles/shape-line/browser/index.js","statSize":172,"parsedSize":174,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"LineDrawer.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-line@3.0.0-beta.4/node_modules/@tsparticles/shape-line/browser/LineDrawer.js","statSize":312,"parsedSize":316,"gzipSize":52,"inaccurateSizes":true}],"parsedSize":490,"gzipSize":81,"inaccurateSizes":true},{"label":"@tsparticles+move-base@3.0.0-beta.4/node_modules/@tsparticles/move-base/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0-beta.4/node_modules/@tsparticles/move-base/browser","statSize":7705,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0-beta.4/node_modules/@tsparticles/move-base/browser/index.js","statSize":175,"parsedSize":177,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"BaseMover.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0-beta.4/node_modules/@tsparticles/move-base/browser/BaseMover.js","statSize":2748,"parsedSize":2784,"gzipSize":459,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0-beta.4/node_modules/@tsparticles/move-base/browser/Utils.js","statSize":4782,"parsedSize":4845,"gzipSize":800,"inaccurateSizes":true}],"parsedSize":7807,"gzipSize":1289,"inaccurateSizes":true},{"label":"@tsparticles+shape-circle@3.0.0-beta.4/node_modules/@tsparticles/shape-circle/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0-beta.4/node_modules/@tsparticles/shape-circle/browser","statSize":1029,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0-beta.4/node_modules/@tsparticles/shape-circle/browser/index.js","statSize":182,"parsedSize":184,"gzipSize":30,"inaccurateSizes":true},{"id":null,"label":"CircleDrawer.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0-beta.4/node_modules/@tsparticles/shape-circle/browser/CircleDrawer.js","statSize":847,"parsedSize":858,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":1042,"gzipSize":172,"inaccurateSizes":true},{"label":"@tsparticles+updater-color@3.0.0-beta.4/node_modules/@tsparticles/updater-color/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0-beta.4/node_modules/@tsparticles/updater-color/browser","statSize":3417,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0-beta.4/node_modules/@tsparticles/updater-color/browser/index.js","statSize":216,"parsedSize":218,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"ColorUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0-beta.4/node_modules/@tsparticles/updater-color/browser/ColorUpdater.js","statSize":1040,"parsedSize":1053,"gzipSize":174,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0-beta.4/node_modules/@tsparticles/updater-color/browser/Utils.js","statSize":2161,"parsedSize":2189,"gzipSize":361,"inaccurateSizes":true}],"parsedSize":3462,"gzipSize":571,"inaccurateSizes":true},{"label":"@tsparticles+updater-opacity@3.0.0-beta.4/node_modules/@tsparticles/updater-opacity/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0-beta.4/node_modules/@tsparticles/updater-opacity/browser","statSize":3668,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0-beta.4/node_modules/@tsparticles/updater-opacity/browser/index.js","statSize":226,"parsedSize":229,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"OpacityUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0-beta.4/node_modules/@tsparticles/updater-opacity/browser/OpacityUpdater.js","statSize":1448,"parsedSize":1467,"gzipSize":242,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0-beta.4/node_modules/@tsparticles/updater-opacity/browser/Utils.js","statSize":1994,"parsedSize":2020,"gzipSize":333,"inaccurateSizes":true}],"parsedSize":3716,"gzipSize":613,"inaccurateSizes":true},{"label":"@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser","statSize":14605,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser/index.js","statSize":240,"parsedSize":243,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"OutOfCanvasUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser/OutOfCanvasUpdater.js","statSize":1288,"parsedSize":1305,"gzipSize":215,"inaccurateSizes":true},{"id":null,"label":"BounceOutMode.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser/BounceOutMode.js","statSize":1311,"parsedSize":1328,"gzipSize":219,"inaccurateSizes":true},{"id":null,"label":"DestroyOutMode.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser/DestroyOutMode.js","statSize":1280,"parsedSize":1297,"gzipSize":214,"inaccurateSizes":true},{"id":null,"label":"NoneOutMode.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser/NoneOutMode.js","statSize":1788,"parsedSize":1811,"gzipSize":299,"inaccurateSizes":true},{"id":null,"label":"OutOutMode.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser/OutOutMode.js","statSize":5702,"parsedSize":5778,"gzipSize":954,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0-beta.4/node_modules/@tsparticles/updater-out-modes/browser/Utils.js","statSize":2996,"parsedSize":3035,"gzipSize":501,"inaccurateSizes":true}],"parsedSize":14799,"gzipSize":2444,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.0-beta.4/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0-beta.4/node_modules/@tsparticles/updater-size/browser","statSize":3318,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0-beta.4/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":195,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0-beta.4/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1141,"gzipSize":188,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 145 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0-beta.4/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2025,"gzipSize":334,"inaccurateSizes":true}],"parsedSize":3362,"gzipSize":555,"inaccurateSizes":true}],"parsedSize":287747,"gzipSize":47526,"inaccurateSizes":true}]}],"parsedSize":292948,"gzipSize":48385}],"isInitialByEntrypoint":{"tsparticles.preset.fireworks.bundle":true}}];
34
+ window.chartData = [{"label":"tsparticles.preset.fireworks.bundle.js","isAsset":true,"statSize":292809,"parsedSize":296004,"gzipSize":48976,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":292809,"groups":[{"id":136,"label":"bundle.js + 149 modules (concatenated)","path":"./dist/browser/bundle.js + 149 modules (concatenated)","statSize":292809,"parsedSize":296004,"gzipSize":48976,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/dist/browser","statSize":5265,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/dist/browser/bundle.js","statSize":170,"parsedSize":171,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/dist/browser/index.js","statSize":1128,"parsedSize":1140,"gzipSize":188,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/dist/browser/options.js","statSize":3967,"parsedSize":4010,"gzipSize":663,"inaccurateSizes":true}],"parsedSize":5322,"gzipSize":880,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm","statSize":287544,"groups":[{"label":"@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser","statSize":175097,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":251,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":495,"gzipSize":81,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils","statSize":34158,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12150,"gzipSize":2010,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4691,"gzipSize":776,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4591,"gzipSize":759,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8816,"gzipSize":1458,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":455,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1399,"gzipSize":231,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1235,"gzipSize":204,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1190,"gzipSize":197,"inaccurateSizes":true}],"parsedSize":34530,"gzipSize":5713,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4954,"gzipSize":819,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core","statSize":93711,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8635,"parsedSize":8729,"gzipSize":1444,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":23975,"groups":[{"id":null,"label":"Vector.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":373,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2766,"gzipSize":457,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":594,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1114,"gzipSize":184,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":920,"gzipSize":152,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Range.js","statSize":126,"parsedSize":127,"gzipSize":21,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":136,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14280,"gzipSize":2362,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2084,"gzipSize":344,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1838,"gzipSize":304,"inaccurateSizes":true}],"parsedSize":24236,"gzipSize":4010,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15757,"gzipSize":2607,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16410,"gzipSize":2715,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12247,"parsedSize":12380,"gzipSize":2048,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1777,"gzipSize":294,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15276,"parsedSize":15442,"gzipSize":2555,"inaccurateSizes":true}],"parsedSize":94733,"gzipSize":15674,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":41588,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6251,"gzipSize":1034,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":960,"gzipSize":158,"inaccurateSizes":true}],"parsedSize":960,"gzipSize":158,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":625,"gzipSize":103,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1301,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":806,"gzipSize":133,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":508,"gzipSize":84,"inaccurateSizes":true}],"parsedSize":1315,"gzipSize":217,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4361,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":570,"gzipSize":94,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3197,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":932,"gzipSize":154,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":358,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":601,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":485,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":477,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":377,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3231,"gzipSize":534,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":606,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":606,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":4408,"gzipSize":729,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":480,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":696,"gzipSize":115,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":995,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":533,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":472,"gzipSize":78,"inaccurateSizes":true}],"parsedSize":1005,"gzipSize":166,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21316,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3573,"gzipSize":591,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1623,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1016,"gzipSize":168,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":247,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":376,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":1640,"gzipSize":271,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":403,"gzipSize":66,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":595,"gzipSize":98,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8345,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3097,"gzipSize":512,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":454,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":855,"gzipSize":141,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":740,"gzipSize":122,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":744,"gzipSize":123,"inaccurateSizes":true}],"parsedSize":744,"gzipSize":123,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":548,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":622,"gzipSize":103,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":556,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":445,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":369,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":8436,"gzipSize":1395,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":972,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":553,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":428,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":982,"gzipSize":162,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":886,"gzipSize":146,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":874,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":874,"gzipSize":144,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":957,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":541,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":425,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":967,"gzipSize":160,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":607,"gzipSize":100,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":655,"gzipSize":108,"inaccurateSizes":true}],"parsedSize":655,"gzipSize":108,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1440,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":547,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":540,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":366,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1455,"gzipSize":240,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":873,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":873,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":21548,"gzipSize":3565,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1078,"gzipSize":178,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":392,"gzipSize":64,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":479,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1401,"gzipSize":231,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1033,"gzipSize":170,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":364,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":364,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":42041,"gzipSize":6956,"inaccurateSizes":true}],"parsedSize":177007,"gzipSize":29287,"inaccurateSizes":true},{"label":"@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser","statSize":731,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser/index.js","statSize":731,"parsedSize":738,"gzipSize":122,"inaccurateSizes":true}],"parsedSize":738,"gzipSize":122,"inaccurateSizes":true},{"label":"@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser","statSize":8422,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/index.js","statSize":234,"parsedSize":236,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"DestroyUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/DestroyUpdater.js","statSize":2429,"parsedSize":2455,"gzipSize":406,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes","statSize":2862,"groups":[{"id":null,"label":"Destroy.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Destroy.js","statSize":505,"parsedSize":510,"gzipSize":84,"inaccurateSizes":true},{"id":null,"label":"DestroyBounds.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/DestroyBounds.js","statSize":560,"parsedSize":566,"gzipSize":93,"inaccurateSizes":true},{"id":null,"label":"Split.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/Split.js","statSize":1432,"parsedSize":1447,"gzipSize":239,"inaccurateSizes":true},{"id":null,"label":"SplitFactor.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitFactor.js","statSize":175,"parsedSize":176,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"SplitRate.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Options/Classes/SplitRate.js","statSize":190,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":2893,"gzipSize":478,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-destroy@3.0.0/node_modules/@tsparticles/updater-destroy/browser/Utils.js","statSize":2897,"parsedSize":2928,"gzipSize":484,"inaccurateSizes":true}],"parsedSize":8513,"gzipSize":1408,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser","statSize":25804,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4316,"gzipSize":714,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4578,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2097,"gzipSize":347,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":599,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":466,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":597,"gzipSize":98,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":488,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":379,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":4627,"gzipSize":765,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4372,"gzipSize":723,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":447,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeBase.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/EmitterShapeBase.js","statSize":302,"parsedSize":305,"gzipSize":50,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11886,"parsedSize":12015,"gzipSize":1988,"inaccurateSizes":true}],"parsedSize":26085,"gzipSize":4316,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters-shape-square@3.0.0/node_modules/@tsparticles/plugin-emitters-shape-square/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters-shape-square@3.0.0/node_modules/@tsparticles/plugin-emitters-shape-square/browser","statSize":2588,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters-shape-square@3.0.0/node_modules/@tsparticles/plugin-emitters-shape-square/browser/index.js","statSize":376,"parsedSize":380,"gzipSize":62,"inaccurateSizes":true},{"id":null,"label":"EmittersSquareShapeGenerator.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters-shape-square@3.0.0/node_modules/@tsparticles/plugin-emitters-shape-square/browser/EmittersSquareShapeGenerator.js","statSize":233,"parsedSize":235,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"EmittersSquareShape.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters-shape-square@3.0.0/node_modules/@tsparticles/plugin-emitters-shape-square/browser/EmittersSquareShape.js","statSize":1979,"parsedSize":2000,"gzipSize":331,"inaccurateSizes":true}],"parsedSize":2616,"gzipSize":432,"inaccurateSizes":true},{"label":"@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser","statSize":4783,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser/index.js","statSize":211,"parsedSize":213,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"LifeUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser/LifeUpdater.js","statSize":3360,"parsedSize":3396,"gzipSize":562,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser/Options/Classes","statSize":1212,"groups":[{"id":null,"label":"Life.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser/Options/Classes/Life.js","statSize":489,"parsedSize":494,"gzipSize":81,"inaccurateSizes":true},{"id":null,"label":"LifeDelay.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser/Options/Classes/LifeDelay.js","statSize":360,"parsedSize":363,"gzipSize":60,"inaccurateSizes":true},{"id":null,"label":"LifeDuration.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-life@3.0.0/node_modules/@tsparticles/updater-life/browser/Options/Classes/LifeDuration.js","statSize":363,"parsedSize":366,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1225,"gzipSize":202,"inaccurateSizes":true}],"parsedSize":4835,"gzipSize":800,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser","statSize":4692,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":221,"parsedSize":223,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":3135,"parsedSize":3169,"gzipSize":524,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1336,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":668,"parsedSize":675,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":675,"gzipSize":111,"inaccurateSizes":true}],"parsedSize":1350,"gzipSize":223,"inaccurateSizes":true}],"parsedSize":4743,"gzipSize":784,"inaccurateSizes":true},{"label":"@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser","statSize":27220,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/index.js","statSize":875,"parsedSize":884,"gzipSize":146,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes","statSize":11236,"groups":[{"id":null,"label":"Sounds.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/Sounds.js","statSize":856,"parsedSize":865,"gzipSize":143,"inaccurateSizes":true},{"id":null,"label":"SoundsEvent.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsEvent.js","statSize":1655,"parsedSize":1673,"gzipSize":276,"inaccurateSizes":true},{"id":null,"label":"SoundsVolume.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsVolume.js","statSize":764,"parsedSize":772,"gzipSize":127,"inaccurateSizes":true},{"id":null,"label":"SoundsIcons.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsIcons.js","statSize":5737,"parsedSize":5799,"gzipSize":959,"inaccurateSizes":true},{"id":null,"label":"SoundsAudio.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsAudio.js","statSize":538,"parsedSize":543,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"SoundsNote.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsNote.js","statSize":365,"parsedSize":368,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"SoundsMelody.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsMelody.js","statSize":800,"parsedSize":808,"gzipSize":133,"inaccurateSizes":true},{"id":null,"label":"SoundsIcon.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/Options/Classes/SoundsIcon.js","statSize":521,"parsedSize":526,"gzipSize":87,"inaccurateSizes":true}],"parsedSize":11358,"gzipSize":1879,"inaccurateSizes":true},{"id":null,"label":"SoundsInstance.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/SoundsInstance.js","statSize":13653,"parsedSize":13801,"gzipSize":2283,"inaccurateSizes":true},{"id":null,"label":"utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-sounds@3.0.0/node_modules/@tsparticles/plugin-sounds/browser/utils.js","statSize":1456,"parsedSize":1471,"gzipSize":243,"inaccurateSizes":true}],"parsedSize":27517,"gzipSize":4552,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser","statSize":3981,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":246,"parsedSize":248,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1549,"parsedSize":1565,"gzipSize":259,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser/Utils.js","statSize":2186,"parsedSize":2209,"gzipSize":365,"inaccurateSizes":true}],"parsedSize":4024,"gzipSize":665,"inaccurateSizes":true},{"label":"@tsparticles+shape-line@3.0.0/node_modules/@tsparticles/shape-line/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-line@3.0.0/node_modules/@tsparticles/shape-line/browser","statSize":484,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-line@3.0.0/node_modules/@tsparticles/shape-line/browser/index.js","statSize":172,"parsedSize":173,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"LineDrawer.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-line@3.0.0/node_modules/@tsparticles/shape-line/browser/LineDrawer.js","statSize":312,"parsedSize":315,"gzipSize":52,"inaccurateSizes":true}],"parsedSize":489,"gzipSize":80,"inaccurateSizes":true},{"label":"@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser","statSize":7705,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/index.js","statSize":175,"parsedSize":176,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"BaseMover.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/BaseMover.js","statSize":2748,"parsedSize":2777,"gzipSize":459,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/Utils.js","statSize":4782,"parsedSize":4834,"gzipSize":799,"inaccurateSizes":true}],"parsedSize":7789,"gzipSize":1288,"inaccurateSizes":true},{"label":"@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser","statSize":1029,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser/index.js","statSize":182,"parsedSize":183,"gzipSize":30,"inaccurateSizes":true},{"id":null,"label":"CircleDrawer.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser/CircleDrawer.js","statSize":847,"parsedSize":856,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":1040,"gzipSize":172,"inaccurateSizes":true},{"label":"@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser","statSize":3417,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/index.js","statSize":216,"parsedSize":218,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"ColorUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/ColorUpdater.js","statSize":1040,"parsedSize":1051,"gzipSize":173,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/Utils.js","statSize":2161,"parsedSize":2184,"gzipSize":361,"inaccurateSizes":true}],"parsedSize":3454,"gzipSize":571,"inaccurateSizes":true},{"label":"@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser","statSize":3668,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/index.js","statSize":226,"parsedSize":228,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"OpacityUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/OpacityUpdater.js","statSize":1448,"parsedSize":1463,"gzipSize":242,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/Utils.js","statSize":1994,"parsedSize":2015,"gzipSize":333,"inaccurateSizes":true}],"parsedSize":3708,"gzipSize":613,"inaccurateSizes":true},{"label":"@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser","statSize":14605,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/index.js","statSize":240,"parsedSize":242,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"OutOfCanvasUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/OutOfCanvasUpdater.js","statSize":1288,"parsedSize":1302,"gzipSize":215,"inaccurateSizes":true},{"id":null,"label":"BounceOutMode.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/BounceOutMode.js","statSize":1311,"parsedSize":1325,"gzipSize":219,"inaccurateSizes":true},{"id":null,"label":"DestroyOutMode.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/DestroyOutMode.js","statSize":1280,"parsedSize":1293,"gzipSize":214,"inaccurateSizes":true},{"id":null,"label":"NoneOutMode.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/NoneOutMode.js","statSize":1788,"parsedSize":1807,"gzipSize":299,"inaccurateSizes":true},{"id":null,"label":"OutOutMode.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/OutOutMode.js","statSize":5702,"parsedSize":5764,"gzipSize":953,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/Utils.js","statSize":2996,"parsedSize":3028,"gzipSize":501,"inaccurateSizes":true}],"parsedSize":14764,"gzipSize":2442,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser","statSize":3318,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":195,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1138,"gzipSize":188,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 149 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2020,"gzipSize":334,"inaccurateSizes":true}],"parsedSize":3354,"gzipSize":554,"inaccurateSizes":true}],"parsedSize":290681,"gzipSize":48095,"inaccurateSizes":true}]}],"parsedSize":296004,"gzipSize":48976}],"isInitialByEntrypoint":{"tsparticles.preset.fireworks.bundle":true}}];
35
35
  window.entrypoints = ["tsparticles.preset.fireworks.bundle","tsparticles.preset.fireworks.bundle.min"];
36
36
  window.defaultSizes = "parsed";
37
37
  </script>