@tsparticles/preset-squares 3.1.0 → 3.2.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/README.md +1 -1
- package/browser/index.js +2 -0
- package/cjs/index.js +2 -0
- package/esm/index.js +2 -0
- package/package.json +8 -7
- package/report.html +2 -2
- package/tsparticles.preset.squares.bundle.js +447 -409
- package/tsparticles.preset.squares.bundle.min.js +1 -1
- package/tsparticles.preset.squares.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.preset.squares.js +65 -7
- package/tsparticles.preset.squares.min.js +1 -1
- package/tsparticles.preset.squares.min.js.LICENSE.txt +1 -1
- package/umd/index.js +3 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
[tsParticles](https://github.com/tsparticles/tsparticles) preset creating a squares effect with falling particles.
|
|
8
8
|
|
|
9
|
-
[](https://discord.gg/hACwv45Hme) [](https://t.me/tsparticles)
|
|
10
10
|
|
|
11
11
|
[](https://www.producthunt.com/posts/tsparticles?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-tsparticles") <a href="https://www.buymeacoffee.com/matteobruni"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a beer&emoji=🍺&slug=matteobruni&button_colour=5F7FFF&font_colour=ffffff&font_family=Arial&outline_colour=000000&coffee_colour=FFDD00"></a>
|
|
12
12
|
|
package/browser/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
|
|
2
|
+
import { loadHexColorPlugin } from "@tsparticles/plugin-hex-color";
|
|
2
3
|
import { loadRotateUpdater } from "@tsparticles/updater-rotate";
|
|
3
4
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
4
5
|
import { loadSquareShape } from "@tsparticles/shape-square";
|
|
5
6
|
import { loadStrokeColorUpdater } from "@tsparticles/updater-stroke-color";
|
|
6
7
|
import { options } from "./options.js";
|
|
7
8
|
export async function loadSquaresPreset(engine, refresh = true) {
|
|
9
|
+
await loadHexColorPlugin(engine, false);
|
|
8
10
|
await loadEmittersPlugin(engine, false);
|
|
9
11
|
await loadSquareShape(engine, false);
|
|
10
12
|
await loadRotateUpdater(engine, false);
|
package/cjs/index.js
CHANGED
|
@@ -2,12 +2,14 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.loadSquaresPreset = void 0;
|
|
4
4
|
const plugin_emitters_1 = require("@tsparticles/plugin-emitters");
|
|
5
|
+
const plugin_hex_color_1 = require("@tsparticles/plugin-hex-color");
|
|
5
6
|
const updater_rotate_1 = require("@tsparticles/updater-rotate");
|
|
6
7
|
const updater_size_1 = require("@tsparticles/updater-size");
|
|
7
8
|
const shape_square_1 = require("@tsparticles/shape-square");
|
|
8
9
|
const updater_stroke_color_1 = require("@tsparticles/updater-stroke-color");
|
|
9
10
|
const options_js_1 = require("./options.js");
|
|
10
11
|
async function loadSquaresPreset(engine, refresh = true) {
|
|
12
|
+
await (0, plugin_hex_color_1.loadHexColorPlugin)(engine, false);
|
|
11
13
|
await (0, plugin_emitters_1.loadEmittersPlugin)(engine, false);
|
|
12
14
|
await (0, shape_square_1.loadSquareShape)(engine, false);
|
|
13
15
|
await (0, updater_rotate_1.loadRotateUpdater)(engine, false);
|
package/esm/index.js
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { loadEmittersPlugin } from "@tsparticles/plugin-emitters";
|
|
2
|
+
import { loadHexColorPlugin } from "@tsparticles/plugin-hex-color";
|
|
2
3
|
import { loadRotateUpdater } from "@tsparticles/updater-rotate";
|
|
3
4
|
import { loadSizeUpdater } from "@tsparticles/updater-size";
|
|
4
5
|
import { loadSquareShape } from "@tsparticles/shape-square";
|
|
5
6
|
import { loadStrokeColorUpdater } from "@tsparticles/updater-stroke-color";
|
|
6
7
|
import { options } from "./options.js";
|
|
7
8
|
export async function loadSquaresPreset(engine, refresh = true) {
|
|
9
|
+
await loadHexColorPlugin(engine, false);
|
|
8
10
|
await loadEmittersPlugin(engine, false);
|
|
9
11
|
await loadSquareShape(engine, false);
|
|
10
12
|
await loadRotateUpdater(engine, false);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/preset-squares",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "tsParticles squares preset",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -87,12 +87,13 @@
|
|
|
87
87
|
"module": "esm/index.js",
|
|
88
88
|
"types": "types/index.d.ts",
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@tsparticles/engine": "^3.
|
|
91
|
-
"@tsparticles/plugin-emitters": "^3.
|
|
92
|
-
"@tsparticles/
|
|
93
|
-
"@tsparticles/
|
|
94
|
-
"@tsparticles/updater-
|
|
95
|
-
"@tsparticles/updater-
|
|
90
|
+
"@tsparticles/engine": "^3.7.1",
|
|
91
|
+
"@tsparticles/plugin-emitters": "^3.7.1",
|
|
92
|
+
"@tsparticles/plugin-hex-color": "^3.7.1",
|
|
93
|
+
"@tsparticles/shape-square": "^3.7.1",
|
|
94
|
+
"@tsparticles/updater-rotate": "^3.7.1",
|
|
95
|
+
"@tsparticles/updater-size": "^3.7.1",
|
|
96
|
+
"@tsparticles/updater-stroke-color": "^3.7.1"
|
|
96
97
|
},
|
|
97
98
|
"publishConfig": {
|
|
98
99
|
"access": "public"
|
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-squares [
|
|
6
|
+
<title>@tsparticles/preset-squares [25 Nov 2024 at 00:14]</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.squares.bundle.js","isAsset":true,"statSize":237414,"parsedSize":238867,"gzipSize":39937,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":237414,"groups":[{"id":664,"label":"bundle.js + 125 modules (concatenated)","path":"./dist/browser/bundle.js + 125 modules (concatenated)","statSize":237414,"parsedSize":238867,"gzipSize":39937,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser","statSize":1866,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/bundle.js","statSize":141,"parsedSize":141,"gzipSize":23,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/index.js","statSize":735,"parsedSize":739,"gzipSize":123,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/options.js","statSize":990,"parsedSize":996,"gzipSize":166,"inaccurateSizes":true}],"parsedSize":1877,"gzipSize":313,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm","statSize":235548,"groups":[{"label":"@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser","statSize":200043,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":250,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":492,"gzipSize":82,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils","statSize":43803,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":15276,"parsedSize":15369,"gzipSize":2569,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":5414,"parsedSize":5447,"gzipSize":910,"inaccurateSizes":true},{"id":null,"label":"TypeUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/TypeUtils.js","statSize":436,"parsedSize":438,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":5111,"parsedSize":5142,"gzipSize":859,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":12539,"parsedSize":12615,"gzipSize":2109,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":453,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1751,"parsedSize":1761,"gzipSize":294,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1589,"parsedSize":1598,"gzipSize":267,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1236,"parsedSize":1243,"gzipSize":207,"inaccurateSizes":true}],"parsedSize":44071,"gzipSize":7368,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/exports.js","statSize":4816,"parsedSize":4845,"gzipSize":810,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core","statSize":100970,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":9588,"parsedSize":9646,"gzipSize":1612,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":25548,"groups":[{"id":null,"label":"Vectors.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vectors.js","statSize":3289,"parsedSize":3309,"gzipSize":553,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":701,"parsedSize":705,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"Ranges.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Ranges.js","statSize":2313,"parsedSize":2327,"gzipSize":389,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":135,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"ExternalInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/ExternalInteractorBase.js","statSize":226,"parsedSize":227,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"ParticlesInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/ParticlesInteractorBase.js","statSize":228,"parsedSize":229,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14477,"parsedSize":14565,"gzipSize":2435,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":2039,"parsedSize":2051,"gzipSize":342,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2140,"parsedSize":2153,"gzipSize":359,"inaccurateSizes":true}],"parsedSize":25704,"gzipSize":4297,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":16719,"parsedSize":16821,"gzipSize":2812,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":17792,"parsedSize":17900,"gzipSize":2992,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":13253,"parsedSize":13334,"gzipSize":2229,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1865,"parsedSize":1876,"gzipSize":313,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":16205,"parsedSize":16304,"gzipSize":2725,"inaccurateSizes":true}],"parsedSize":101587,"gzipSize":16984,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums","statSize":6446,"groups":[{"label":"Directions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions","statSize":1078,"groups":[{"id":null,"label":"MoveDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions/MoveDirection.js","statSize":551,"parsedSize":554,"gzipSize":92,"inaccurateSizes":true},{"id":null,"label":"OutModeDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions/OutModeDirection.js","statSize":269,"parsedSize":270,"gzipSize":45,"inaccurateSizes":true},{"id":null,"label":"RotateDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Directions/RotateDirection.js","statSize":258,"parsedSize":259,"gzipSize":43,"inaccurateSizes":true}],"parsedSize":1084,"gzipSize":181,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes","statSize":1379,"groups":[{"id":null,"label":"AnimationMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/AnimationMode.js","statSize":261,"parsedSize":262,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"PixelMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/PixelMode.js","statSize":157,"parsedSize":157,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"ResponsiveMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/ResponsiveMode.js","statSize":183,"parsedSize":184,"gzipSize":30,"inaccurateSizes":true},{"id":null,"label":"ThemeMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/ThemeMode.js","statSize":177,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CollisionMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/CollisionMode.js","statSize":219,"parsedSize":220,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"OutMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/OutMode.js","statSize":233,"parsedSize":234,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"LimitMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Modes/LimitMode.js","statSize":149,"parsedSize":149,"gzipSize":25,"inaccurateSizes":true}],"parsedSize":1387,"gzipSize":231,"inaccurateSizes":true},{"id":null,"label":"AnimationStatus.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/AnimationStatus.js","statSize":205,"parsedSize":206,"gzipSize":34,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types","statSize":3525,"groups":[{"id":null,"label":"DestroyType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/DestroyType.js","statSize":187,"parsedSize":188,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"StartValueType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/StartValueType.js","statSize":212,"parsedSize":213,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"AlterType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/AlterType.js","statSize":159,"parsedSize":159,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"EventType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/EventType.js","statSize":719,"parsedSize":723,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"DivType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/DivType.js","statSize":147,"parsedSize":147,"gzipSize":24,"inaccurateSizes":true},{"id":null,"label":"InteractorType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/InteractorType.js","statSize":193,"parsedSize":194,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"ParticleOutType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/ParticleOutType.js","statSize":233,"parsedSize":234,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"GradientType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/GradientType.js","statSize":210,"parsedSize":211,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"EasingType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/Types/EasingType.js","statSize":1465,"parsedSize":1473,"gzipSize":246,"inaccurateSizes":true}],"parsedSize":3546,"gzipSize":592,"inaccurateSizes":true},{"id":null,"label":"InteractivityDetect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Enums/InteractivityDetect.js","statSize":259,"parsedSize":260,"gzipSize":43,"inaccurateSizes":true}],"parsedSize":6485,"gzipSize":1084,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":43110,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6460,"parsedSize":6499,"gzipSize":1086,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4522,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":659,"parsedSize":663,"gzipSize":110,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3263,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":920,"parsedSize":925,"gzipSize":154,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":663,"parsedSize":667,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":357,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":482,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":474,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":375,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3282,"gzipSize":548,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":603,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":603,"gzipSize":100,"inaccurateSizes":true}],"parsedSize":4549,"gzipSize":760,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":597,"parsedSize":600,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":811,"parsedSize":815,"gzipSize":136,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":1066,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":531,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":538,"parsedSize":541,"gzipSize":90,"inaccurateSizes":true}],"parsedSize":1072,"gzipSize":179,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21871,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3533,"parsedSize":3554,"gzipSize":594,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1709,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1092,"parsedSize":1098,"gzipSize":183,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":246,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":374,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":1719,"gzipSize":287,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":401,"gzipSize":67,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":191,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":592,"gzipSize":99,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8582,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3159,"parsedSize":3178,"gzipSize":531,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":452,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":851,"gzipSize":142,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":624,"parsedSize":627,"gzipSize":104,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":737,"gzipSize":123,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":740,"gzipSize":123,"inaccurateSizes":true}],"parsedSize":740,"gzipSize":123,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":509,"parsedSize":512,"gzipSize":85,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":619,"gzipSize":103,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":546,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":368,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":8634,"gzipSize":1443,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":1052,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":551,"gzipSize":92,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":504,"parsedSize":507,"gzipSize":84,"inaccurateSizes":true}],"parsedSize":1058,"gzipSize":176,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1514,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":545,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":437,"parsedSize":439,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":538,"gzipSize":89,"inaccurateSizes":true}],"parsedSize":1523,"gzipSize":254,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":870,"gzipSize":145,"inaccurateSizes":true}],"parsedSize":870,"gzipSize":145,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":1037,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":539,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":501,"parsedSize":504,"gzipSize":84,"inaccurateSizes":true}],"parsedSize":1043,"gzipSize":174,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":604,"gzipSize":101,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":651,"gzipSize":109,"inaccurateSizes":true}],"parsedSize":651,"gzipSize":109,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":882,"gzipSize":147,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":869,"gzipSize":145,"inaccurateSizes":true}],"parsedSize":869,"gzipSize":145,"inaccurateSizes":true}],"parsedSize":22004,"gzipSize":3679,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1071,"parsedSize":1077,"gzipSize":180,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":390,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":476,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1549,"parsedSize":1558,"gzipSize":260,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":623,"parsedSize":626,"gzipSize":104,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1028,"gzipSize":171,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":955,"gzipSize":159,"inaccurateSizes":true}],"parsedSize":955,"gzipSize":159,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1345,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":831,"parsedSize":836,"gzipSize":139,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":514,"parsedSize":517,"gzipSize":86,"inaccurateSizes":true}],"parsedSize":1353,"gzipSize":226,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":43373,"gzipSize":7251,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Types","statSize":159,"groups":[{"id":null,"label":"RangeType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.4.0/node_modules/@tsparticles/engine/browser/Types/RangeType.js","statSize":159,"parsedSize":159,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":159,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":201267,"gzipSize":33650,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser","statSize":26991,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":858,"parsedSize":863,"gzipSize":144,"inaccurateSizes":true},{"id":null,"label":"EmittersPlugin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/EmittersPlugin.js","statSize":3629,"parsedSize":3651,"gzipSize":610,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Enums","statSize":154,"groups":[{"id":null,"label":"EmitterClickMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Enums/EmitterClickMode.js","statSize":154,"parsedSize":154,"gzipSize":25,"inaccurateSizes":true}],"parsedSize":154,"gzipSize":25,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":445,"gzipSize":74,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4633,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2073,"parsedSize":2085,"gzipSize":348,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":596,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":463,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":594,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":540,"parsedSize":543,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":377,"gzipSize":63,"inaccurateSizes":true}],"parsedSize":4661,"gzipSize":779,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4539,"parsedSize":4566,"gzipSize":763,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.4.0/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":12735,"parsedSize":12812,"gzipSize":2142,"inaccurateSizes":true}],"parsedSize":27156,"gzipSize":4540,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser","statSize":4407,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":260,"parsedSize":261,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":2780,"parsedSize":2797,"gzipSize":467,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1367,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":699,"parsedSize":703,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.4.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":672,"gzipSize":112,"inaccurateSizes":true}],"parsedSize":1375,"gzipSize":229,"inaccurateSizes":true}],"parsedSize":4433,"gzipSize":741,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser","statSize":1528,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser/index.js","statSize":234,"parsedSize":235,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.4.0/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1294,"parsedSize":1301,"gzipSize":217,"inaccurateSizes":true}],"parsedSize":1537,"gzipSize":257,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser","statSize":735,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser/index.js","statSize":172,"parsedSize":173,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":259,"parsedSize":260,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.4.0/node_modules/@tsparticles/shape-square/browser/Utils.js","statSize":304,"parsedSize":305,"gzipSize":51,"inaccurateSizes":true}],"parsedSize":739,"gzipSize":123,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser","statSize":1844,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":285,"parsedSize":286,"gzipSize":47,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.4.0/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1559,"parsedSize":1568,"gzipSize":262,"inaccurateSizes":true}],"parsedSize":1855,"gzipSize":310,"inaccurateSizes":true}],"parsedSize":236989,"gzipSize":39623,"inaccurateSizes":true}]}],"parsedSize":238867,"gzipSize":39937}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
|
|
34
|
+
window.chartData = [{"label":"tsparticles.preset.squares.bundle.js","isAsset":true,"statSize":240552,"parsedSize":239165,"gzipSize":39999,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":240552,"groups":[{"id":99,"label":"bundle.js + 125 modules (concatenated)","path":"./dist/browser/bundle.js + 125 modules (concatenated)","statSize":240552,"parsedSize":239165,"gzipSize":39999,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser","statSize":1977,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/bundle.js","statSize":141,"parsedSize":140,"gzipSize":23,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/index.js","statSize":846,"parsedSize":841,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/dist/browser/options.js","statSize":990,"parsedSize":984,"gzipSize":164,"inaccurateSizes":true}],"parsedSize":1965,"gzipSize":328,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm","statSize":238575,"groups":[{"label":"@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser","statSize":200456,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":247,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/init.js","statSize":141,"parsedSize":140,"gzipSize":23,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils","statSize":40173,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":15567,"parsedSize":15477,"gzipSize":2588,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":5634,"parsedSize":5601,"gzipSize":936,"inaccurateSizes":true},{"id":null,"label":"TypeUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/TypeUtils.js","statSize":514,"parsedSize":511,"gzipSize":85,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":5115,"parsedSize":5085,"gzipSize":850,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":11656,"parsedSize":11588,"gzipSize":1938,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":448,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1236,"parsedSize":1228,"gzipSize":205,"inaccurateSizes":true}],"parsedSize":39941,"gzipSize":6679,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/exports.js","statSize":4728,"parsedSize":4700,"gzipSize":786,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core","statSize":102545,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":10126,"parsedSize":10067,"gzipSize":1683,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":25553,"groups":[{"id":null,"label":"Vectors.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Vectors.js","statSize":3289,"parsedSize":3270,"gzipSize":546,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":701,"parsedSize":696,"gzipSize":116,"inaccurateSizes":true},{"id":null,"label":"Ranges.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Ranges.js","statSize":2313,"parsedSize":2299,"gzipSize":384,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":134,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"ExternalInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/ExternalInteractorBase.js","statSize":226,"parsedSize":224,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"ParticlesInteractorBase.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/ParticlesInteractorBase.js","statSize":228,"parsedSize":226,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14482,"parsedSize":14398,"gzipSize":2408,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":2039,"parsedSize":2027,"gzipSize":339,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2140,"parsedSize":2127,"gzipSize":355,"inaccurateSizes":true}],"parsedSize":25405,"gzipSize":4248,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":16800,"parsedSize":16703,"gzipSize":2793,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":18658,"parsedSize":18550,"gzipSize":3102,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":13304,"parsedSize":13227,"gzipSize":2212,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1865,"parsedSize":1854,"gzipSize":310,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":16239,"parsedSize":16145,"gzipSize":2700,"inaccurateSizes":true}],"parsedSize":101953,"gzipSize":17051,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums","statSize":6446,"groups":[{"label":"Directions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions","statSize":1078,"groups":[{"id":null,"label":"MoveDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions/MoveDirection.js","statSize":551,"parsedSize":547,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OutModeDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions/OutModeDirection.js","statSize":269,"parsedSize":267,"gzipSize":44,"inaccurateSizes":true},{"id":null,"label":"RotateDirection.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Directions/RotateDirection.js","statSize":258,"parsedSize":256,"gzipSize":42,"inaccurateSizes":true}],"parsedSize":1071,"gzipSize":179,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes","statSize":1379,"groups":[{"id":null,"label":"AnimationMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/AnimationMode.js","statSize":261,"parsedSize":259,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"PixelMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/PixelMode.js","statSize":157,"parsedSize":156,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"ResponsiveMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/ResponsiveMode.js","statSize":183,"parsedSize":181,"gzipSize":30,"inaccurateSizes":true},{"id":null,"label":"ThemeMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/ThemeMode.js","statSize":177,"parsedSize":175,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CollisionMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/CollisionMode.js","statSize":219,"parsedSize":217,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"OutMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/OutMode.js","statSize":233,"parsedSize":231,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"LimitMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Modes/LimitMode.js","statSize":149,"parsedSize":148,"gzipSize":24,"inaccurateSizes":true}],"parsedSize":1371,"gzipSize":229,"inaccurateSizes":true},{"id":null,"label":"AnimationStatus.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/AnimationStatus.js","statSize":205,"parsedSize":203,"gzipSize":34,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types","statSize":3525,"groups":[{"id":null,"label":"DestroyType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/DestroyType.js","statSize":187,"parsedSize":185,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"StartValueType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/StartValueType.js","statSize":212,"parsedSize":210,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"AlterType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/AlterType.js","statSize":159,"parsedSize":158,"gzipSize":26,"inaccurateSizes":true},{"id":null,"label":"EventType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/EventType.js","statSize":719,"parsedSize":714,"gzipSize":119,"inaccurateSizes":true},{"id":null,"label":"DivType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/DivType.js","statSize":147,"parsedSize":146,"gzipSize":24,"inaccurateSizes":true},{"id":null,"label":"InteractorType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/InteractorType.js","statSize":193,"parsedSize":191,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"ParticleOutType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/ParticleOutType.js","statSize":233,"parsedSize":231,"gzipSize":38,"inaccurateSizes":true},{"id":null,"label":"GradientType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/GradientType.js","statSize":210,"parsedSize":208,"gzipSize":34,"inaccurateSizes":true},{"id":null,"label":"EasingType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/Types/EasingType.js","statSize":1465,"parsedSize":1456,"gzipSize":243,"inaccurateSizes":true}],"parsedSize":3504,"gzipSize":586,"inaccurateSizes":true},{"id":null,"label":"InteractivityDetect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Enums/InteractivityDetect.js","statSize":259,"parsedSize":257,"gzipSize":43,"inaccurateSizes":true}],"parsedSize":6408,"gzipSize":1071,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":46015,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6475,"parsedSize":6437,"gzipSize":1076,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":5018,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":720,"parsedSize":715,"gzipSize":119,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3634,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":984,"parsedSize":978,"gzipSize":163,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":727,"parsedSize":722,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":419,"parsedSize":416,"gzipSize":69,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":544,"parsedSize":540,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":536,"parsedSize":532,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":424,"parsedSize":421,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":3613,"gzipSize":604,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":664,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":664,"parsedSize":660,"gzipSize":110,"inaccurateSizes":true}],"parsedSize":660,"gzipSize":110,"inaccurateSizes":true}],"parsedSize":4989,"gzipSize":834,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":655,"parsedSize":651,"gzipSize":108,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":854,"parsedSize":849,"gzipSize":142,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":1188,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":589,"parsedSize":585,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":599,"parsedSize":595,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":1181,"gzipSize":197,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":23544,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3594,"parsedSize":3573,"gzipSize":597,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1901,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1156,"parsedSize":1149,"gzipSize":192,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":309,"parsedSize":307,"gzipSize":51,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":436,"parsedSize":433,"gzipSize":72,"inaccurateSizes":true}],"parsedSize":1890,"gzipSize":316,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":653,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":463,"parsedSize":460,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":188,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":649,"gzipSize":108,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":9176,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3174,"parsedSize":3155,"gzipSize":527,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":514,"parsedSize":511,"gzipSize":85,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":910,"parsedSize":904,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":688,"parsedSize":684,"gzipSize":114,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":797,"parsedSize":792,"gzipSize":132,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":803,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":803,"parsedSize":798,"gzipSize":133,"inaccurateSizes":true}],"parsedSize":798,"gzipSize":133,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":573,"parsedSize":569,"gzipSize":95,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":680,"parsedSize":676,"gzipSize":113,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":607,"parsedSize":603,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":430,"parsedSize":427,"gzipSize":71,"inaccurateSizes":true}],"parsedSize":9123,"gzipSize":1525,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":1180,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":612,"parsedSize":608,"gzipSize":101,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":568,"parsedSize":564,"gzipSize":94,"inaccurateSizes":true}],"parsedSize":1173,"gzipSize":196,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1706,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":606,"parsedSize":602,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":501,"parsedSize":498,"gzipSize":83,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":599,"parsedSize":595,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":1696,"gzipSize":283,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":929,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":929,"parsedSize":923,"gzipSize":154,"inaccurateSizes":true}],"parsedSize":923,"gzipSize":154,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":1165,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":600,"parsedSize":596,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":565,"parsedSize":561,"gzipSize":93,"inaccurateSizes":true}],"parsedSize":1158,"gzipSize":193,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":662,"parsedSize":658,"gzipSize":110,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":712,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":712,"parsedSize":707,"gzipSize":118,"inaccurateSizes":true}],"parsedSize":707,"gzipSize":118,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":938,"parsedSize":932,"gzipSize":155,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":928,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":928,"parsedSize":922,"gzipSize":154,"inaccurateSizes":true}],"parsedSize":922,"gzipSize":154,"inaccurateSizes":true}],"parsedSize":23408,"gzipSize":3914,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1086,"parsedSize":1079,"gzipSize":180,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":446,"parsedSize":443,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":532,"parsedSize":528,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1614,"parsedSize":1604,"gzipSize":268,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":667,"parsedSize":663,"gzipSize":110,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1082,"parsedSize":1075,"gzipSize":179,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":1011,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":1011,"parsedSize":1005,"gzipSize":168,"inaccurateSizes":true}],"parsedSize":1005,"gzipSize":168,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1421,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":846,"parsedSize":841,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":575,"parsedSize":571,"gzipSize":95,"inaccurateSizes":true}],"parsedSize":1412,"gzipSize":236,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":422,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":422,"parsedSize":419,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":419,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":45749,"gzipSize":7651,"inaccurateSizes":true},{"label":"Types","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Types","statSize":159,"groups":[{"id":null,"label":"RangeType.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.7.1/node_modules/@tsparticles/engine/browser/Types/RangeType.js","statSize":159,"parsedSize":158,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":158,"gzipSize":26,"inaccurateSizes":true}],"parsedSize":199300,"gzipSize":33331,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser","statSize":27206,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":957,"parsedSize":951,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"EmittersPlugin.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/EmittersPlugin.js","statSize":3629,"parsedSize":3608,"gzipSize":603,"inaccurateSizes":true},{"label":"Enums","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Enums","statSize":154,"groups":[{"id":null,"label":"EmitterClickMode.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Enums/EmitterClickMode.js","statSize":154,"parsedSize":153,"gzipSize":25,"inaccurateSizes":true}],"parsedSize":153,"gzipSize":25,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":440,"gzipSize":73,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4735,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2088,"parsedSize":2075,"gzipSize":347,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":608,"parsedSize":604,"gzipSize":101,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":463,"parsedSize":460,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":606,"parsedSize":602,"gzipSize":100,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":542,"parsedSize":538,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":428,"parsedSize":425,"gzipSize":71,"inaccurateSizes":true}],"parsedSize":4707,"gzipSize":787,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4539,"parsedSize":4512,"gzipSize":754,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.7.1/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":12749,"parsedSize":12675,"gzipSize":2119,"inaccurateSizes":true}],"parsedSize":27049,"gzipSize":4523,"inaccurateSizes":true},{"label":"@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser","statSize":1910,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser/index.js","statSize":290,"parsedSize":288,"gzipSize":48,"inaccurateSizes":true},{"id":null,"label":"HexColorManager.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-hex-color@3.7.1/node_modules/@tsparticles/plugin-hex-color/browser/HexColorManager.js","statSize":1620,"parsedSize":1610,"gzipSize":269,"inaccurateSizes":true}],"parsedSize":1898,"gzipSize":317,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser","statSize":4536,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":359,"parsedSize":356,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":2780,"parsedSize":2763,"gzipSize":462,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1397,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":714,"parsedSize":709,"gzipSize":118,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.7.1/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":683,"parsedSize":679,"gzipSize":113,"inaccurateSizes":true}],"parsedSize":1388,"gzipSize":232,"inaccurateSizes":true}],"parsedSize":4509,"gzipSize":754,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser","statSize":1627,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser/index.js","statSize":333,"parsedSize":331,"gzipSize":55,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.7.1/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1294,"parsedSize":1286,"gzipSize":215,"inaccurateSizes":true}],"parsedSize":1617,"gzipSize":270,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser","statSize":834,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser/index.js","statSize":271,"parsedSize":269,"gzipSize":45,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":259,"parsedSize":257,"gzipSize":43,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.7.1/node_modules/@tsparticles/shape-square/browser/Utils.js","statSize":304,"parsedSize":302,"gzipSize":50,"inaccurateSizes":true}],"parsedSize":829,"gzipSize":138,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser","statSize":2006,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":392,"parsedSize":389,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 125 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.7.1/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1614,"parsedSize":1604,"gzipSize":268,"inaccurateSizes":true}],"parsedSize":1994,"gzipSize":333,"inaccurateSizes":true}],"parsedSize":237199,"gzipSize":39670,"inaccurateSizes":true}]}],"parsedSize":239165,"gzipSize":39999}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
|
|
35
35
|
window.entrypoints = ["tsparticles.preset.squares.bundle","tsparticles.preset.squares.bundle.min"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</script>
|