@tsparticles/preset-bubbles 3.0.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -117
- package/package.json +4 -4
- package/report.html +2 -2
- package/tsparticles.preset.bubbles.bundle.js +137 -117
- package/tsparticles.preset.bubbles.bundle.min.js +1 -1
- package/tsparticles.preset.bubbles.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.preset.bubbles.js +1 -1
- package/tsparticles.preset.bubbles.min.js.LICENSE.txt +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.jsdelivr.com/package/npm/@tsparticles/preset-bubbles) [](https://www.npmjs.com/package/@tsparticles/preset-bubbles) [](https://www.npmjs.com/package/@tsparticles/preset-bubbles) [](https://github.com/sponsors/matteobruni)
|
|
6
6
|
|
|
7
|
-
[tsParticles](https://github.com/
|
|
7
|
+
[tsParticles](https://github.com/tsparticles/tsparticles) preset for colored bubbles coming from the bottom of the
|
|
8
8
|
screen on a white background.
|
|
9
9
|
|
|
10
10
|
[](https://join.slack.com/t/tsparticles/shared_invite/enQtOTcxNTQxNjQ4NzkxLWE2MTZhZWExMWRmOWI5MTMxNjczOGE1Yjk0MjViYjdkYTUzODM3OTc5MGQ5MjFlODc4MzE0N2Q1OWQxZDc1YzI) [](https://discord.gg/hACwv45Hme) [](https://t.me/tsparticles)
|
|
@@ -13,37 +13,14 @@ screen on a white background.
|
|
|
13
13
|
|
|
14
14
|
## Sample
|
|
15
15
|
|
|
16
|
-
[](https://particles.js.org/samples/presets/bubbles)
|
|
17
17
|
|
|
18
18
|
## How to use it
|
|
19
19
|
|
|
20
20
|
### CDN / Vanilla JS / jQuery
|
|
21
21
|
|
|
22
|
-
The first step is installing [tsParticles](https://github.com/matteobruni/tsparticles) following the instructions for
|
|
23
|
-
vanilla javascript in the main project [here](https://github.com/matteobruni/tsparticles)
|
|
24
|
-
|
|
25
|
-
Once installed you need one more script to be included in your page (or you can download that
|
|
26
|
-
from [jsDelivr](https://www.jsdelivr.com/package/npm/@tsparticles/preset-bubbles):
|
|
27
|
-
|
|
28
|
-
```html
|
|
29
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/engine@2/tsparticles.engine.min.js"></script>
|
|
30
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/basic@2/tsparticles.basic.min.js"></script>
|
|
31
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/move-base@2/tsparticles.move.base.min.js"></script>
|
|
32
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/plugin-emitters@2/tsparticles.plugin.emitters.min.js"></script>
|
|
33
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/shape-circle@2/tsparticles.shape.circle.min.js"></script>
|
|
34
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-color@2/tsparticles.updater.color.min.js"></script>
|
|
35
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-opacity@2/tsparticles.updater.opacity.min.js"></script>
|
|
36
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-out-modes@2/tsparticles.updater.out-modes.min.js"></script>
|
|
37
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-size@2/tsparticles.updater.size.min.js"></script>
|
|
38
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-bubbles@2/tsparticles.preset.bubbles.min.js"></script>
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
#### Bundle
|
|
42
|
-
|
|
43
|
-
A bundled script can also be used, this will include every needed plugin needed by the preset.
|
|
44
|
-
|
|
45
22
|
```html
|
|
46
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-bubbles@
|
|
23
|
+
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-bubbles@3/tsparticles.preset.bubbles.bundle.min.js"></script>
|
|
47
24
|
```
|
|
48
25
|
|
|
49
26
|
### Usage
|
|
@@ -51,13 +28,12 @@ A bundled script can also be used, this will include every needed plugin needed
|
|
|
51
28
|
Once the scripts are loaded you can set up `tsParticles` like this:
|
|
52
29
|
|
|
53
30
|
```javascript
|
|
54
|
-
(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
await tsParticles.load("tsparticles", {
|
|
31
|
+
tsParticles.load({
|
|
32
|
+
id: "tsparticles",
|
|
33
|
+
options: {
|
|
58
34
|
preset: "bubbles",
|
|
59
|
-
}
|
|
60
|
-
})
|
|
35
|
+
},
|
|
36
|
+
});
|
|
61
37
|
```
|
|
62
38
|
|
|
63
39
|
#### Customization
|
|
@@ -66,100 +42,26 @@ Once the scripts are loaded you can set up `tsParticles` like this:
|
|
|
66
42
|
You can override all the options defining the properties like in any standard `tsParticles` installation.
|
|
67
43
|
|
|
68
44
|
```javascript
|
|
69
|
-
tsParticles.load(
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
45
|
+
tsParticles.load({
|
|
46
|
+
id: "tsparticles",
|
|
47
|
+
options: {
|
|
48
|
+
particles: {
|
|
49
|
+
shape: {
|
|
50
|
+
type: "square", // starting from v2, this require the square shape script
|
|
51
|
+
},
|
|
73
52
|
},
|
|
53
|
+
preset: "bubbles",
|
|
74
54
|
},
|
|
75
|
-
preset: "bubbles",
|
|
76
55
|
});
|
|
77
56
|
```
|
|
78
57
|
|
|
79
58
|
Like in the sample above, the circles will be replaced by squares.
|
|
80
59
|
|
|
81
|
-
###
|
|
82
|
-
|
|
83
|
-
_The syntax for `React.js`, `Preact` and `Inferno` is the same_.
|
|
84
|
-
|
|
85
|
-
This sample uses the class component syntax, but you can use hooks as well (if the library supports it).
|
|
86
|
-
|
|
87
|
-
```typescript jsx
|
|
88
|
-
import Particles from "react-particles";
|
|
89
|
-
import type { Engine } from "@tsparticles/engine";
|
|
90
|
-
import { loadBubblesPreset } from "@tsparticles/preset-bubbles";
|
|
91
|
-
|
|
92
|
-
export class ParticlesContainer extends React.PureComponent<IProps> {
|
|
93
|
-
// this customizes the component tsParticles installation
|
|
94
|
-
async customInit(engine: Engine): Promise<void> {
|
|
95
|
-
// this adds the preset to tsParticles, you can safely use the
|
|
96
|
-
await loadBubblesPreset(engine);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
render() {
|
|
100
|
-
const options = {
|
|
101
|
-
preset: "bubbles",
|
|
102
|
-
};
|
|
103
|
-
|
|
104
|
-
return <Particles options={options} init={this.customInit} />;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
### Vue (2.x and 3.x)
|
|
60
|
+
### Frameworks with a tsParticles component library
|
|
110
61
|
|
|
111
|
-
|
|
62
|
+
Checkout the documentation in the component library repository and call the `loadBubblesPreset` function instead of `loadFull`, `loadSlim` or similar functions.
|
|
112
63
|
|
|
113
|
-
|
|
114
|
-
<Particles id="tsparticles" :particlesInit="particlesInit" :options="particlesOptions" />
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
```ts
|
|
118
|
-
const particlesOptions = {
|
|
119
|
-
preset: "bubbles",
|
|
120
|
-
};
|
|
121
|
-
|
|
122
|
-
async function particlesInit(engine: Engine): Promise<void> {
|
|
123
|
-
await loadBubblesPreset(engine);
|
|
124
|
-
}
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
### Angular
|
|
128
|
-
|
|
129
|
-
```html
|
|
130
|
-
<ng-particles [id]="id" [options]="particlesOptions" [particlesInit]="particlesInit"></ng-particles>
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
```ts
|
|
134
|
-
const particlesOptions = {
|
|
135
|
-
preset: "bubbles",
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
async function particlesInit(engine: Engine): Promise<void> {
|
|
139
|
-
await loadBubblesPreset(engine);
|
|
140
|
-
}
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
### Svelte
|
|
144
|
-
|
|
145
|
-
```sveltehtml
|
|
146
|
-
|
|
147
|
-
<Particles
|
|
148
|
-
id="tsparticles"
|
|
149
|
-
options={particlesOptions}
|
|
150
|
-
particlesInit={particlesInit}
|
|
151
|
-
/>
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
```js
|
|
155
|
-
let particlesOptions = {
|
|
156
|
-
preset: "bubbles",
|
|
157
|
-
};
|
|
158
|
-
|
|
159
|
-
let particlesInit = async (engine) => {
|
|
160
|
-
await loadBubblesPreset(engine);
|
|
161
|
-
};
|
|
162
|
-
```
|
|
64
|
+
The options shown above are valid for all the component libraries.
|
|
163
65
|
|
|
164
66
|
---
|
|
165
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/preset-bubbles",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "tsParticles bubbles preset",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
"module": "esm/index.js",
|
|
88
88
|
"types": "types/index.d.ts",
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@tsparticles/basic": "^3.0.
|
|
91
|
-
"@tsparticles/engine": "^3.0.
|
|
92
|
-
"@tsparticles/plugin-emitters": "^3.0.
|
|
90
|
+
"@tsparticles/basic": "^3.0.3",
|
|
91
|
+
"@tsparticles/engine": "^3.0.3",
|
|
92
|
+
"@tsparticles/plugin-emitters": "^3.0.3"
|
|
93
93
|
},
|
|
94
94
|
"publishConfig": {
|
|
95
95
|
"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-bubbles [
|
|
6
|
+
<title>@tsparticles/preset-bubbles [5 Jan 2024 at 01:11]</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.bubbles.bundle.js","isAsset":true,"statSize":236308,"parsedSize":237103,"gzipSize":38837,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":236308,"groups":[{"id":525,"label":"bundle.js + 112 modules (concatenated)","path":"./dist/browser/bundle.js + 112 modules (concatenated)","statSize":236308,"parsedSize":237103,"gzipSize":38837,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser","statSize":1236,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser/bundle.js","statSize":178,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser/index.js","statSize":354,"parsedSize":355,"gzipSize":58,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser/options.js","statSize":704,"parsedSize":706,"gzipSize":115,"inaccurateSizes":true}],"parsedSize":1240,"gzipSize":203,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm","statSize":235072,"groups":[{"label":"@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser","statSize":175097,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":249,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":491,"gzipSize":80,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils","statSize":34158,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12059,"gzipSize":1975,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4656,"gzipSize":762,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4557,"gzipSize":746,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8750,"gzipSize":1433,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":452,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1388,"gzipSize":227,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1226,"gzipSize":200,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1181,"gzipSize":193,"inaccurateSizes":true}],"parsedSize":34272,"gzipSize":5613,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4917,"gzipSize":805,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core","statSize":93711,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8635,"parsedSize":8664,"gzipSize":1419,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":23975,"groups":[{"id":null,"label":"Vector.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":370,"gzipSize":60,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2746,"gzipSize":449,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":589,"gzipSize":96,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1105,"gzipSize":181,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":914,"gzipSize":149,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Range.js","statSize":126,"parsedSize":126,"gzipSize":20,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":135,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14173,"gzipSize":2321,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2068,"gzipSize":338,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1825,"gzipSize":298,"inaccurateSizes":true}],"parsedSize":24055,"gzipSize":3940,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15639,"gzipSize":2561,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16287,"gzipSize":2667,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12247,"parsedSize":12288,"gzipSize":2012,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1763,"gzipSize":288,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15276,"parsedSize":15327,"gzipSize":2510,"inaccurateSizes":true}],"parsedSize":94026,"gzipSize":15401,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":41588,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6204,"gzipSize":1016,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":953,"gzipSize":156,"inaccurateSizes":true}],"parsedSize":953,"gzipSize":156,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":621,"gzipSize":101,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1301,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":800,"gzipSize":131,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":504,"gzipSize":82,"inaccurateSizes":true}],"parsedSize":1305,"gzipSize":213,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4361,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":565,"gzipSize":92,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3197,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":925,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":356,"gzipSize":58,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":597,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":481,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":473,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":374,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":3207,"gzipSize":525,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":602,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":602,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":4375,"gzipSize":716,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":476,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":691,"gzipSize":113,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":995,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":529,"gzipSize":86,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":468,"gzipSize":76,"inaccurateSizes":true}],"parsedSize":998,"gzipSize":163,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21316,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3546,"gzipSize":580,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1623,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1009,"gzipSize":165,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":245,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":373,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":1628,"gzipSize":266,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":400,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":190,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":590,"gzipSize":96,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8345,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3074,"gzipSize":503,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":451,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":848,"gzipSize":139,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":735,"gzipSize":120,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":738,"gzipSize":120,"inaccurateSizes":true}],"parsedSize":738,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":544,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":618,"gzipSize":101,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":551,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":442,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":367,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":8373,"gzipSize":1371,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":972,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":549,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":425,"gzipSize":69,"inaccurateSizes":true}],"parsedSize":975,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":879,"gzipSize":144,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":867,"gzipSize":142,"inaccurateSizes":true}],"parsedSize":867,"gzipSize":142,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":957,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":537,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":422,"gzipSize":69,"inaccurateSizes":true}],"parsedSize":960,"gzipSize":157,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":603,"gzipSize":98,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":650,"gzipSize":106,"inaccurateSizes":true}],"parsedSize":650,"gzipSize":106,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1440,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":543,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":536,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":364,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":1444,"gzipSize":236,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":866,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":866,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":21387,"gzipSize":3503,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1070,"gzipSize":175,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":389,"gzipSize":63,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":475,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1390,"gzipSize":227,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1025,"gzipSize":167,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":41727,"gzipSize":6834,"inaccurateSizes":true}],"parsedSize":175686,"gzipSize":28777,"inaccurateSizes":true},{"label":"@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser","statSize":731,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.0/node_modules/@tsparticles/basic/browser/index.js","statSize":731,"parsedSize":733,"gzipSize":120,"inaccurateSizes":true}],"parsedSize":733,"gzipSize":120,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser","statSize":25502,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4284,"gzipSize":701,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4578,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2081,"gzipSize":341,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":594,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":462,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":592,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":484,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":376,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":4593,"gzipSize":752,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4339,"gzipSize":710,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":444,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11886,"parsedSize":11925,"gzipSize":1953,"inaccurateSizes":true}],"parsedSize":25587,"gzipSize":4191,"inaccurateSizes":true},{"label":"@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser","statSize":7705,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/index.js","statSize":175,"parsedSize":175,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"BaseMover.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/BaseMover.js","statSize":2748,"parsedSize":2757,"gzipSize":451,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.0/node_modules/@tsparticles/move-base/browser/Utils.js","statSize":4782,"parsedSize":4798,"gzipSize":785,"inaccurateSizes":true}],"parsedSize":7730,"gzipSize":1266,"inaccurateSizes":true},{"label":"@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser","statSize":1029,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser/index.js","statSize":182,"parsedSize":182,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CircleDrawer.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.0/node_modules/@tsparticles/shape-circle/browser/CircleDrawer.js","statSize":847,"parsedSize":849,"gzipSize":139,"inaccurateSizes":true}],"parsedSize":1032,"gzipSize":169,"inaccurateSizes":true},{"label":"@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser","statSize":3417,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/index.js","statSize":216,"parsedSize":216,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"ColorUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/ColorUpdater.js","statSize":1040,"parsedSize":1043,"gzipSize":170,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.0/node_modules/@tsparticles/updater-color/browser/Utils.js","statSize":2161,"parsedSize":2168,"gzipSize":355,"inaccurateSizes":true}],"parsedSize":3428,"gzipSize":561,"inaccurateSizes":true},{"label":"@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser","statSize":3668,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/index.js","statSize":226,"parsedSize":226,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"OpacityUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/OpacityUpdater.js","statSize":1448,"parsedSize":1452,"gzipSize":237,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.0/node_modules/@tsparticles/updater-opacity/browser/Utils.js","statSize":1994,"parsedSize":2000,"gzipSize":327,"inaccurateSizes":true}],"parsedSize":3680,"gzipSize":602,"inaccurateSizes":true},{"label":"@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser","statSize":14605,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/index.js","statSize":240,"parsedSize":240,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"OutOfCanvasUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/OutOfCanvasUpdater.js","statSize":1288,"parsedSize":1292,"gzipSize":211,"inaccurateSizes":true},{"id":null,"label":"BounceOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/BounceOutMode.js","statSize":1311,"parsedSize":1315,"gzipSize":215,"inaccurateSizes":true},{"id":null,"label":"DestroyOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/DestroyOutMode.js","statSize":1280,"parsedSize":1284,"gzipSize":210,"inaccurateSizes":true},{"id":null,"label":"NoneOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/NoneOutMode.js","statSize":1788,"parsedSize":1794,"gzipSize":293,"inaccurateSizes":true},{"id":null,"label":"OutOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/OutOutMode.js","statSize":5702,"parsedSize":5721,"gzipSize":937,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.0/node_modules/@tsparticles/updater-out-modes/browser/Utils.js","statSize":2996,"parsedSize":3006,"gzipSize":492,"inaccurateSizes":true}],"parsedSize":14654,"gzipSize":2400,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser","statSize":3318,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":193,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1129,"gzipSize":185,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2005,"gzipSize":328,"inaccurateSizes":true}],"parsedSize":3329,"gzipSize":545,"inaccurateSizes":true}],"parsedSize":235862,"gzipSize":38633,"inaccurateSizes":true}]}],"parsedSize":237103,"gzipSize":38837}],"isInitialByEntrypoint":{"tsparticles.preset.bubbles.bundle":true}}];
|
|
34
|
+
window.chartData = [{"label":"tsparticles.preset.bubbles.bundle.js","isAsset":true,"statSize":237047,"parsedSize":237842,"gzipSize":38923,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":237047,"groups":[{"id":110,"label":"bundle.js + 112 modules (concatenated)","path":"./dist/browser/bundle.js + 112 modules (concatenated)","statSize":237047,"parsedSize":237842,"gzipSize":38923,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser","statSize":1236,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser/bundle.js","statSize":178,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser/index.js","statSize":354,"parsedSize":355,"gzipSize":58,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/dist/browser/options.js","statSize":704,"parsedSize":706,"gzipSize":115,"inaccurateSizes":true}],"parsedSize":1240,"gzipSize":202,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm","statSize":235811,"groups":[{"label":"@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","statSize":175769,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":249,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":491,"gzipSize":80,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils","statSize":34158,"groups":[{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12059,"gzipSize":1973,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4656,"gzipSize":762,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4557,"gzipSize":745,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8750,"gzipSize":1431,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":452,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1388,"gzipSize":227,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1226,"gzipSize":200,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1181,"gzipSize":193,"inaccurateSizes":true}],"parsedSize":34272,"gzipSize":5608,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4917,"gzipSize":804,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core","statSize":94383,"groups":[{"id":null,"label":"Engine.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8657,"parsedSize":8686,"gzipSize":1421,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils","statSize":23975,"groups":[{"id":null,"label":"Vector.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":370,"gzipSize":60,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2746,"gzipSize":449,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":589,"gzipSize":96,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1105,"gzipSize":180,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":914,"gzipSize":149,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Range.js","statSize":126,"parsedSize":126,"gzipSize":20,"inaccurateSizes":true},{"id":null,"label":"Point.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Point.js","statSize":135,"parsedSize":135,"gzipSize":22,"inaccurateSizes":true},{"id":null,"label":"EventListeners.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14173,"gzipSize":2319,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2068,"gzipSize":338,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1825,"gzipSize":298,"inaccurateSizes":true}],"parsedSize":24055,"gzipSize":3936,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15639,"gzipSize":2559,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16287,"gzipSize":2665,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12721,"parsedSize":12763,"gzipSize":2088,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1763,"gzipSize":288,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15452,"parsedSize":15503,"gzipSize":2537,"inaccurateSizes":true}],"parsedSize":94699,"gzipSize":15497,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes","statSize":41588,"groups":[{"id":null,"label":"Options.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6204,"gzipSize":1015,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background","statSize":950,"groups":[{"id":null,"label":"Background.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":953,"gzipSize":155,"inaccurateSizes":true}],"parsedSize":953,"gzipSize":155,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":621,"gzipSize":101,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask","statSize":1301,"groups":[{"id":null,"label":"BackgroundMask.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":800,"gzipSize":131,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":504,"gzipSize":82,"inaccurateSizes":true}],"parsedSize":1305,"gzipSize":213,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity","statSize":4361,"groups":[{"id":null,"label":"Interactivity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Interactivity.js","statSize":564,"parsedSize":565,"gzipSize":92,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events","statSize":3197,"groups":[{"id":null,"label":"Events.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":925,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":356,"gzipSize":58,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":596,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":481,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":473,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":374,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":3207,"gzipSize":524,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes","statSize":600,"groups":[{"id":null,"label":"Modes.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":602,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":602,"gzipSize":98,"inaccurateSizes":true}],"parsedSize":4375,"gzipSize":716,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":476,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":691,"gzipSize":113,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme","statSize":995,"groups":[{"id":null,"label":"Theme.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":529,"gzipSize":86,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":468,"gzipSize":76,"inaccurateSizes":true}],"parsedSize":998,"gzipSize":163,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles","statSize":21316,"groups":[{"id":null,"label":"ParticlesOptions.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3546,"gzipSize":580,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions","statSize":1623,"groups":[{"id":null,"label":"Collisions.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1009,"gzipSize":165,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsAbsorb.js","statSize":245,"parsedSize":245,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"CollisionsOverlap.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":373,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":1628,"gzipSize":266,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce","statSize":589,"groups":[{"id":null,"label":"ParticlesBounce.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":400,"gzipSize":65,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounceFactor.js","statSize":190,"parsedSize":190,"gzipSize":31,"inaccurateSizes":true}],"parsedSize":590,"gzipSize":96,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move","statSize":8345,"groups":[{"id":null,"label":"Move.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3074,"gzipSize":503,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":451,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":848,"gzipSize":138,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":735,"gzipSize":120,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path","statSize":736,"groups":[{"id":null,"label":"MovePath.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Path/MovePath.js","statSize":736,"parsedSize":738,"gzipSize":120,"inaccurateSizes":true}],"parsedSize":738,"gzipSize":120,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":544,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":618,"gzipSize":101,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveCenter.js","statSize":550,"parsedSize":551,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":442,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":367,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":8372,"gzipSize":1370,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity","statSize":972,"groups":[{"id":null,"label":"Opacity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":549,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":425,"gzipSize":69,"inaccurateSizes":true}],"parsedSize":975,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":879,"gzipSize":144,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape","statSize":865,"groups":[{"id":null,"label":"Shape.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":867,"gzipSize":142,"inaccurateSizes":true}],"parsedSize":867,"gzipSize":142,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size","statSize":957,"groups":[{"id":null,"label":"Size.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":537,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":422,"gzipSize":69,"inaccurateSizes":true}],"parsedSize":960,"gzipSize":157,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":603,"gzipSize":98,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex","statSize":648,"groups":[{"id":null,"label":"ZIndex.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":650,"gzipSize":106,"inaccurateSizes":true}],"parsedSize":650,"gzipSize":106,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number","statSize":1440,"groups":[{"id":null,"label":"ParticlesNumber.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":543,"gzipSize":88,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":536,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":364,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":1444,"gzipSize":236,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect","statSize":864,"groups":[{"id":null,"label":"Effect.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":866,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":866,"gzipSize":141,"inaccurateSizes":true}],"parsedSize":21387,"gzipSize":3500,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1070,"gzipSize":175,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":389,"gzipSize":63,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":475,"gzipSize":77,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1390,"gzipSize":227,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1025,"gzipSize":167,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen","statSize":361,"groups":[{"id":null,"label":"FullScreen.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":362,"gzipSize":59,"inaccurateSizes":true}],"parsedSize":41727,"gzipSize":6828,"inaccurateSizes":true}],"parsedSize":176358,"gzipSize":28861,"inaccurateSizes":true},{"label":"@tsparticles+basic@3.0.3/node_modules/@tsparticles/basic/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.3/node_modules/@tsparticles/basic/browser","statSize":731,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+basic@3.0.3/node_modules/@tsparticles/basic/browser/index.js","statSize":731,"parsedSize":733,"gzipSize":120,"inaccurateSizes":true}],"parsedSize":733,"gzipSize":120,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","statSize":25569,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4284,"gzipSize":701,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes","statSize":4578,"groups":[{"id":null,"label":"Emitter.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2081,"gzipSize":340,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterLife.js","statSize":593,"parsedSize":594,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":462,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShape.js","statSize":591,"parsedSize":592,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":484,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":376,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":4593,"gzipSize":751,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4339,"gzipSize":710,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":444,"gzipSize":72,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11953,"parsedSize":11993,"gzipSize":1962,"inaccurateSizes":true}],"parsedSize":25654,"gzipSize":4198,"inaccurateSizes":true},{"label":"@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser","statSize":7705,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser/index.js","statSize":175,"parsedSize":175,"gzipSize":28,"inaccurateSizes":true},{"id":null,"label":"BaseMover.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser/BaseMover.js","statSize":2748,"parsedSize":2757,"gzipSize":451,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+move-base@3.0.3/node_modules/@tsparticles/move-base/browser/Utils.js","statSize":4782,"parsedSize":4798,"gzipSize":785,"inaccurateSizes":true}],"parsedSize":7730,"gzipSize":1265,"inaccurateSizes":true},{"label":"@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser","statSize":1029,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser/index.js","statSize":182,"parsedSize":182,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"CircleDrawer.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-circle@3.0.3/node_modules/@tsparticles/shape-circle/browser/CircleDrawer.js","statSize":847,"parsedSize":849,"gzipSize":139,"inaccurateSizes":true}],"parsedSize":1032,"gzipSize":168,"inaccurateSizes":true},{"label":"@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser","statSize":3417,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser/index.js","statSize":216,"parsedSize":216,"gzipSize":35,"inaccurateSizes":true},{"id":null,"label":"ColorUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser/ColorUpdater.js","statSize":1040,"parsedSize":1043,"gzipSize":170,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-color@3.0.3/node_modules/@tsparticles/updater-color/browser/Utils.js","statSize":2161,"parsedSize":2168,"gzipSize":354,"inaccurateSizes":true}],"parsedSize":3428,"gzipSize":561,"inaccurateSizes":true},{"label":"@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser","statSize":3668,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser/index.js","statSize":226,"parsedSize":226,"gzipSize":37,"inaccurateSizes":true},{"id":null,"label":"OpacityUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser/OpacityUpdater.js","statSize":1448,"parsedSize":1452,"gzipSize":237,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-opacity@3.0.3/node_modules/@tsparticles/updater-opacity/browser/Utils.js","statSize":1994,"parsedSize":2000,"gzipSize":327,"inaccurateSizes":true}],"parsedSize":3680,"gzipSize":602,"inaccurateSizes":true},{"label":"@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser","statSize":14605,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/index.js","statSize":240,"parsedSize":240,"gzipSize":39,"inaccurateSizes":true},{"id":null,"label":"OutOfCanvasUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/OutOfCanvasUpdater.js","statSize":1288,"parsedSize":1292,"gzipSize":211,"inaccurateSizes":true},{"id":null,"label":"BounceOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/BounceOutMode.js","statSize":1311,"parsedSize":1315,"gzipSize":215,"inaccurateSizes":true},{"id":null,"label":"DestroyOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/DestroyOutMode.js","statSize":1280,"parsedSize":1284,"gzipSize":210,"inaccurateSizes":true},{"id":null,"label":"NoneOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/NoneOutMode.js","statSize":1788,"parsedSize":1793,"gzipSize":293,"inaccurateSizes":true},{"id":null,"label":"OutOutMode.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/OutOutMode.js","statSize":5702,"parsedSize":5721,"gzipSize":936,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-out-modes@3.0.3/node_modules/@tsparticles/updater-out-modes/browser/Utils.js","statSize":2996,"parsedSize":3006,"gzipSize":491,"inaccurateSizes":true}],"parsedSize":14653,"gzipSize":2398,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","statSize":3318,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":193,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1129,"gzipSize":184,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 112 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2005,"gzipSize":328,"inaccurateSizes":true}],"parsedSize":3329,"gzipSize":544,"inaccurateSizes":true}],"parsedSize":236601,"gzipSize":38720,"inaccurateSizes":true}]}],"parsedSize":237842,"gzipSize":38923}],"isInitialByEntrypoint":{"tsparticles.preset.bubbles.bundle":true}}];
|
|
35
35
|
window.entrypoints = ["tsparticles.preset.bubbles.bundle","tsparticles.preset.bubbles.bundle.min"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</script>
|