@tsparticles/preset-squares 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 +20 -116
- package/package.json +7 -7
- package/report.html +2 -2
- package/tsparticles.preset.squares.bundle.js +127 -107
- package/tsparticles.preset.squares.bundle.min.js +1 -1
- package/tsparticles.preset.squares.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.preset.squares.js +5 -5
- package/tsparticles.preset.squares.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-squares) [](https://www.npmjs.com/package/@tsparticles/preset-squares) [](https://www.npmjs.com/package/@tsparticles/preset-squares) [](https://github.com/sponsors/matteobruni)
|
|
6
6
|
|
|
7
|
-
[tsParticles](https://github.com/
|
|
7
|
+
[tsParticles](https://github.com/tsparticles/tsparticles) preset creating a squares effect with falling particles.
|
|
8
8
|
|
|
9
9
|
[](https://join.slack.com/t/tsparticles/shared_invite/enQtOTcxNTQxNjQ4NzkxLWE2MTZhZWExMWRmOWI5MTMxNjczOGE1Yjk0MjViYjdkYTUzODM3OTc5MGQ5MjFlODc4MzE0N2Q1OWQxZDc1YzI) [](https://discord.gg/hACwv45Hme) [](https://t.me/tsparticles)
|
|
10
10
|
|
|
@@ -12,36 +12,14 @@
|
|
|
12
12
|
|
|
13
13
|
## Sample
|
|
14
14
|
|
|
15
|
-
[](https://particles.js.org/samples/presets/squares)
|
|
16
16
|
|
|
17
17
|
## How to use it
|
|
18
18
|
|
|
19
19
|
### CDN / Vanilla JS / jQuery
|
|
20
20
|
|
|
21
|
-
The first step is installing [tsParticles](https://github.com/matteobruni/tsparticles) following the instructions for
|
|
22
|
-
vanilla javascript in the main project [here](https://github.com/matteobruni/tsparticles)
|
|
23
|
-
|
|
24
|
-
Once installed you need one more script to be included in your page (or you can download that
|
|
25
|
-
from [jsDelivr](https://www.jsdelivr.com/package/npm/@tsparticles/preset-squares):
|
|
26
|
-
|
|
27
|
-
```html
|
|
28
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/engine@2/tsparticles.engine.min.js"></script>
|
|
29
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/plugin-emitters@2/tsparticles.plugin.emitters.min.js"></script>
|
|
30
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/shape-square@2/tsparticles.shape.square.min.js"></script>
|
|
31
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-rotate@2/tsparticles.updater.rotate.min.js"></script>
|
|
32
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-size@2/tsparticles.updater.size.min.js"></script>
|
|
33
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/updater-stroke-color@2/tsparticles.updater.stroke-color.min.js"></script>
|
|
34
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-squares@2/tsparticles.preset.squares.min.js"></script>
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
This script **MUST** be placed after the `tsParticles` one.
|
|
38
|
-
|
|
39
|
-
#### Bundle
|
|
40
|
-
|
|
41
|
-
A bundled script can also be used, this will include every needed plugin needed by the preset.
|
|
42
|
-
|
|
43
21
|
```html
|
|
44
|
-
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-squares@
|
|
22
|
+
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/preset-squares@3/tsparticles.preset.squares.bundle.min.js"></script>
|
|
45
23
|
```
|
|
46
24
|
|
|
47
25
|
### Usage
|
|
@@ -49,13 +27,12 @@ A bundled script can also be used, this will include every needed plugin needed
|
|
|
49
27
|
Once the scripts are loaded you can set up `tsParticles` like this:
|
|
50
28
|
|
|
51
29
|
```javascript
|
|
52
|
-
(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
await tsParticles.load("tsparticles", {
|
|
30
|
+
tsParticles.load({
|
|
31
|
+
id: "tsparticles",
|
|
32
|
+
options: {
|
|
56
33
|
preset: "squares",
|
|
57
|
-
}
|
|
58
|
-
})
|
|
34
|
+
},
|
|
35
|
+
});
|
|
59
36
|
```
|
|
60
37
|
|
|
61
38
|
#### Customization
|
|
@@ -64,100 +41,27 @@ Once the scripts are loaded you can set up `tsParticles` like this:
|
|
|
64
41
|
You can override all the options defining the properties like in any standard `tsParticles` installation.
|
|
65
42
|
|
|
66
43
|
```javascript
|
|
67
|
-
tsParticles.load(
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
44
|
+
tsParticles.load({
|
|
45
|
+
id: "tsparticles",
|
|
46
|
+
options: {
|
|
47
|
+
particles: {
|
|
48
|
+
shape: {
|
|
49
|
+
type: "circle", // starting from v2, this require the circle shape script
|
|
50
|
+
},
|
|
71
51
|
},
|
|
52
|
+
preset: "squares",
|
|
72
53
|
},
|
|
73
|
-
preset: "squares",
|
|
74
54
|
});
|
|
75
55
|
```
|
|
76
56
|
|
|
77
57
|
Like in the sample above, the circles will be replaced by squares.
|
|
78
58
|
|
|
79
|
-
###
|
|
80
|
-
|
|
81
|
-
_The syntax for `React.js`, `Preact` and `Inferno` is the same_.
|
|
82
|
-
|
|
83
|
-
This sample uses the class component syntax, but you can use hooks as well (if the library supports it).
|
|
84
|
-
|
|
85
|
-
```typescript jsx
|
|
86
|
-
import Particles from "react-particles";
|
|
87
|
-
import type { Engine } from "@tsparticles/engine";
|
|
88
|
-
import { loadSquaresPreset } from "@tsparticles/preset-squares";
|
|
89
|
-
|
|
90
|
-
export class ParticlesContainer extends React.PureComponent<IProps> {
|
|
91
|
-
// this customizes the component tsParticles installation
|
|
92
|
-
async customInit(engine: Engine): Promise<void> {
|
|
93
|
-
// this adds the preset to tsParticles, you can safely use the
|
|
94
|
-
await loadSquaresPreset(engine);
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
render() {
|
|
98
|
-
const options = {
|
|
99
|
-
preset: "squares",
|
|
100
|
-
};
|
|
101
|
-
|
|
102
|
-
return <Particles options={options} init={this.customInit} />;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
### Vue (2.x and 3.x)
|
|
108
|
-
|
|
109
|
-
_The syntax for `Vue.js 2.x` and `3.x` is the same_
|
|
110
|
-
|
|
111
|
-
```vue
|
|
112
|
-
<Particles id="tsparticles" :particlesInit="particlesInit" :options="particlesOptions" />
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
```ts
|
|
116
|
-
const particlesOptions = {
|
|
117
|
-
preset: "squares",
|
|
118
|
-
};
|
|
59
|
+
### Frameworks with a tsParticles component library
|
|
119
60
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
### Angular
|
|
126
|
-
|
|
127
|
-
```html
|
|
128
|
-
<ng-particles [id]="id" [options]="particlesOptions" [particlesInit]="particlesInit"></ng-particles>
|
|
129
|
-
```
|
|
61
|
+
Checkout the documentation in the component library repository and call the `loadSquaresPreset` function instead
|
|
62
|
+
of `loadFull`, `loadSlim` or similar functions.
|
|
130
63
|
|
|
131
|
-
|
|
132
|
-
const particlesOptions = {
|
|
133
|
-
preset: "squares",
|
|
134
|
-
};
|
|
135
|
-
|
|
136
|
-
async function particlesInit(engine: Engine): Promise<void> {
|
|
137
|
-
await loadSquaresPreset(engine);
|
|
138
|
-
}
|
|
139
|
-
```
|
|
140
|
-
|
|
141
|
-
### Svelte
|
|
142
|
-
|
|
143
|
-
```sveltehtml
|
|
144
|
-
|
|
145
|
-
<Particles
|
|
146
|
-
id="tsparticles"
|
|
147
|
-
options={particlesOptions}
|
|
148
|
-
particlesInit={particlesInit}
|
|
149
|
-
/>
|
|
150
|
-
```
|
|
151
|
-
|
|
152
|
-
```js
|
|
153
|
-
let particlesOptions = {
|
|
154
|
-
preset: "bubbles",
|
|
155
|
-
};
|
|
156
|
-
|
|
157
|
-
let particlesInit = async (engine) => {
|
|
158
|
-
await loadSquaresPreset(engine);
|
|
159
|
-
};
|
|
160
|
-
```
|
|
64
|
+
The options shown above are valid for all the component libraries.
|
|
161
65
|
|
|
162
66
|
---
|
|
163
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/preset-squares",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "tsParticles squares preset",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -87,12 +87,12 @@
|
|
|
87
87
|
"module": "esm/index.js",
|
|
88
88
|
"types": "types/index.d.ts",
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@tsparticles/engine": "^3.0.
|
|
91
|
-
"@tsparticles/plugin-emitters": "^3.0.
|
|
92
|
-
"@tsparticles/shape-square": "^3.0.
|
|
93
|
-
"@tsparticles/updater-rotate": "^3.0.
|
|
94
|
-
"@tsparticles/updater-size": "^3.0.
|
|
95
|
-
"@tsparticles/updater-stroke-color": "^3.0.
|
|
90
|
+
"@tsparticles/engine": "^3.0.3",
|
|
91
|
+
"@tsparticles/plugin-emitters": "^3.0.3",
|
|
92
|
+
"@tsparticles/shape-square": "^3.0.3",
|
|
93
|
+
"@tsparticles/updater-rotate": "^3.0.3",
|
|
94
|
+
"@tsparticles/updater-size": "^3.0.3",
|
|
95
|
+
"@tsparticles/updater-stroke-color": "^3.0.3"
|
|
96
96
|
},
|
|
97
97
|
"publishConfig": {
|
|
98
98
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>@tsparticles/preset-squares [
|
|
6
|
+
<title>@tsparticles/preset-squares [5 Jan 2024 at 01:12]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<body>
|
|
32
32
|
<div id="app"></div>
|
|
33
33
|
<script>
|
|
34
|
-
window.chartData = [{"label":"tsparticles.preset.squares.bundle.js","isAsset":true,"statSize":214854,"parsedSize":215247,"gzipSize":35781,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":214854,"groups":[{"id":722,"label":"bundle.js + 102 modules (concatenated)","path":"./dist/browser/bundle.js + 102 modules (concatenated)","statSize":214854,"parsedSize":215247,"gzipSize":35781,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser","statSize":1752,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/bundle.js","statSize":178,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/index.js","statSize":704,"parsedSize":705,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/options.js","statSize":870,"parsedSize":871,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":1755,"gzipSize":291,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm","statSize":213102,"groups":[{"label":"@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":249,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":490,"gzipSize":81,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12040,"gzipSize":2001,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4649,"gzipSize":772,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4550,"gzipSize":756,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8736,"gzipSize":1452,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":451,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1386,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1224,"gzipSize":203,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1180,"gzipSize":196,"inaccurateSizes":true}],"parsedSize":34220,"gzipSize":5688,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4909,"gzipSize":816,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8635,"parsedSize":8650,"gzipSize":1438,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":369,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2742,"gzipSize":455,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":589,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1104,"gzipSize":183,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":912,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 102 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 + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14151,"gzipSize":2352,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2065,"gzipSize":343,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1822,"gzipSize":302,"inaccurateSizes":true}],"parsedSize":24018,"gzipSize":3992,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15615,"gzipSize":2595,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16262,"gzipSize":2703,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12247,"parsedSize":12269,"gzipSize":2039,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1761,"gzipSize":292,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15276,"parsedSize":15303,"gzipSize":2544,"inaccurateSizes":true}],"parsedSize":93882,"gzipSize":15606,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6195,"gzipSize":1029,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":951,"gzipSize":158,"inaccurateSizes":true}],"parsedSize":951,"gzipSize":158,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":620,"gzipSize":103,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":799,"gzipSize":132,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":503,"gzipSize":83,"inaccurateSizes":true}],"parsedSize":1303,"gzipSize":216,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 102 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 + 102 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":93,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":923,"gzipSize":153,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":355,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/DivEvent.js","statSize":595,"parsedSize":596,"gzipSize":99,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":480,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":472,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":373,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3202,"gzipSize":532,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":4368,"gzipSize":726,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":475,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":690,"gzipSize":114,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":528,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":467,"gzipSize":77,"inaccurateSizes":true}],"parsedSize":996,"gzipSize":165,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3541,"gzipSize":588,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1007,"gzipSize":167,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":372,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":1625,"gzipSize":270,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":399,"gzipSize":66,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 102 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":98,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3069,"gzipSize":510,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":450,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":847,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":734,"gzipSize":122,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 102 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 + 102 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":737,"gzipSize":122,"inaccurateSizes":true}],"parsedSize":737,"gzipSize":122,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":543,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":617,"gzipSize":102,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 102 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":91,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":441,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":366,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":8360,"gzipSize":1389,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 102 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 + 102 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":91,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":424,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":973,"gzipSize":161,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":878,"gzipSize":146,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":866,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":866,"gzipSize":144,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":536,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":421,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":958,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":602,"gzipSize":100,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":649,"gzipSize":107,"inaccurateSizes":true}],"parsedSize":649,"gzipSize":107,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":542,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":535,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1442,"gzipSize":239,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":21354,"gzipSize":3549,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1068,"gzipSize":177,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":388,"gzipSize":64,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":474,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1388,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1023,"gzipSize":170,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.0/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":41664,"gzipSize":6925,"inaccurateSizes":true}],"parsedSize":175417,"gzipSize":29160,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4277,"gzipSize":711,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2078,"gzipSize":345,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 102 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":98,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":461,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 102 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":98,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":483,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":375,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":4586,"gzipSize":762,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4332,"gzipSize":720,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":443,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.0/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11886,"parsedSize":11907,"gzipSize":1979,"inaccurateSizes":true}],"parsedSize":25548,"gzipSize":4247,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser","statSize":4692,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":221,"parsedSize":221,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":3135,"parsedSize":3140,"gzipSize":522,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1336,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.0/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true}],"parsedSize":1338,"gzipSize":222,"inaccurateSizes":true}],"parsedSize":4700,"gzipSize":781,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":193,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1128,"gzipSize":187,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.0/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2002,"gzipSize":332,"inaccurateSizes":true}],"parsedSize":3324,"gzipSize":552,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.0.0/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.0/node_modules/@tsparticles/shape-square/browser","statSize":512,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.0/node_modules/@tsparticles/shape-square/browser/index.js","statSize":192,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.0/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":320,"parsedSize":320,"gzipSize":53,"inaccurateSizes":true}],"parsedSize":512,"gzipSize":85,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser","statSize":3981,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":246,"parsedSize":246,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1549,"parsedSize":1551,"gzipSize":257,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.0/node_modules/@tsparticles/updater-stroke-color/browser/Utils.js","statSize":2186,"parsedSize":2189,"gzipSize":364,"inaccurateSizes":true}],"parsedSize":3988,"gzipSize":662,"inaccurateSizes":true}],"parsedSize":213491,"gzipSize":35489,"inaccurateSizes":true}]}],"parsedSize":215247,"gzipSize":35781}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
|
|
34
|
+
window.chartData = [{"label":"tsparticles.preset.squares.bundle.js","isAsset":true,"statSize":215593,"parsedSize":215986,"gzipSize":35868,"groups":[{"label":"dist/browser","path":"./dist/browser","statSize":215593,"groups":[{"id":860,"label":"bundle.js + 102 modules (concatenated)","path":"./dist/browser/bundle.js + 102 modules (concatenated)","statSize":215593,"parsedSize":215986,"gzipSize":35868,"concatenated":true,"groups":[{"label":"dist/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser","statSize":1752,"groups":[{"id":null,"label":"bundle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/bundle.js","statSize":178,"parsedSize":178,"gzipSize":29,"inaccurateSizes":true},{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/index.js","statSize":704,"parsedSize":705,"gzipSize":117,"inaccurateSizes":true},{"id":null,"label":"options.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/dist/browser/options.js","statSize":870,"parsedSize":871,"gzipSize":144,"inaccurateSizes":true}],"parsedSize":1755,"gzipSize":291,"inaccurateSizes":true},{"label":"../node_modules/.pnpm","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm","statSize":213841,"groups":[{"label":"@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/index.js","statSize":249,"parsedSize":249,"gzipSize":41,"inaccurateSizes":true},{"id":null,"label":"init.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/init.js","statSize":490,"parsedSize":490,"gzipSize":81,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/Utils.js","statSize":12019,"parsedSize":12040,"gzipSize":1999,"inaccurateSizes":true},{"id":null,"label":"NumberUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/NumberUtils.js","statSize":4641,"parsedSize":4649,"gzipSize":772,"inaccurateSizes":true},{"id":null,"label":"CanvasUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/CanvasUtils.js","statSize":4542,"parsedSize":4550,"gzipSize":755,"inaccurateSizes":true},{"id":null,"label":"ColorUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/ColorUtils.js","statSize":8721,"parsedSize":8736,"gzipSize":1450,"inaccurateSizes":true},{"id":null,"label":"OptionsUtils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/OptionsUtils.js","statSize":451,"parsedSize":451,"gzipSize":75,"inaccurateSizes":true},{"id":null,"label":"HslColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/HslColorManager.js","statSize":1384,"parsedSize":1386,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"RgbColorManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/RgbColorManager.js","statSize":1222,"parsedSize":1224,"gzipSize":203,"inaccurateSizes":true},{"id":null,"label":"EventDispatcher.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Utils/EventDispatcher.js","statSize":1178,"parsedSize":1180,"gzipSize":195,"inaccurateSizes":true}],"parsedSize":34220,"gzipSize":5682,"inaccurateSizes":true},{"id":null,"label":"exports.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/exports.js","statSize":4901,"parsedSize":4909,"gzipSize":815,"inaccurateSizes":true},{"label":"Core","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Engine.js","statSize":8657,"parsedSize":8672,"gzipSize":1440,"inaccurateSizes":true},{"label":"Utils","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector.js","statSize":369,"parsedSize":369,"gzipSize":61,"inaccurateSizes":true},{"id":null,"label":"Vector3d.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Vector3d.js","statSize":2737,"parsedSize":2741,"gzipSize":455,"inaccurateSizes":true},{"id":null,"label":"Constants.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Constants.js","statSize":588,"parsedSize":589,"gzipSize":97,"inaccurateSizes":true},{"id":null,"label":"Circle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Circle.js","statSize":1102,"parsedSize":1104,"gzipSize":183,"inaccurateSizes":true},{"id":null,"label":"Rectangle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/Rectangle.js","statSize":911,"parsedSize":912,"gzipSize":151,"inaccurateSizes":true},{"id":null,"label":"Range.js","path":"./dist/browser/bundle.js + 102 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 + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/EventListeners.js","statSize":14126,"parsedSize":14151,"gzipSize":2350,"inaccurateSizes":true},{"id":null,"label":"QuadTree.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/QuadTree.js","statSize":2062,"parsedSize":2065,"gzipSize":343,"inaccurateSizes":true},{"id":null,"label":"InteractionManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Utils/InteractionManager.js","statSize":1819,"parsedSize":1822,"gzipSize":302,"inaccurateSizes":true}],"parsedSize":24018,"gzipSize":3988,"inaccurateSizes":true},{"id":null,"label":"Container.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Container.js","statSize":15587,"parsedSize":15615,"gzipSize":2593,"inaccurateSizes":true},{"id":null,"label":"Canvas.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Canvas.js","statSize":16233,"parsedSize":16262,"gzipSize":2700,"inaccurateSizes":true},{"id":null,"label":"Particles.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particles.js","statSize":12721,"parsedSize":12744,"gzipSize":2116,"inaccurateSizes":true},{"id":null,"label":"Retina.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Retina.js","statSize":1758,"parsedSize":1761,"gzipSize":292,"inaccurateSizes":true},{"id":null,"label":"Particle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Core/Particle.js","statSize":15452,"parsedSize":15480,"gzipSize":2570,"inaccurateSizes":true}],"parsedSize":94555,"gzipSize":15702,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Options.js","statSize":6184,"parsedSize":6195,"gzipSize":1028,"inaccurateSizes":true},{"label":"Background","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Background/Background.js","statSize":950,"parsedSize":951,"gzipSize":158,"inaccurateSizes":true}],"parsedSize":951,"gzipSize":158,"inaccurateSizes":true},{"id":null,"label":"OptionsColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/OptionsColor.js","statSize":619,"parsedSize":620,"gzipSize":102,"inaccurateSizes":true},{"label":"BackgroundMask","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMask.js","statSize":798,"parsedSize":799,"gzipSize":132,"inaccurateSizes":true},{"id":null,"label":"BackgroundMaskCover.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.js","statSize":503,"parsedSize":503,"gzipSize":83,"inaccurateSizes":true}],"parsedSize":1303,"gzipSize":216,"inaccurateSizes":true},{"label":"Interactivity","path":"./dist/browser/bundle.js + 102 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 + 102 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":93,"inaccurateSizes":true},{"label":"Events","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Events.js","statSize":922,"parsedSize":923,"gzipSize":153,"inaccurateSizes":true},{"id":null,"label":"ClickEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ClickEvent.js","statSize":355,"parsedSize":355,"gzipSize":59,"inaccurateSizes":true},{"id":null,"label":"DivEvent.js","path":"./dist/browser/bundle.js + 102 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":98,"inaccurateSizes":true},{"id":null,"label":"HoverEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/HoverEvent.js","statSize":480,"parsedSize":480,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Parallax.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/Parallax.js","statSize":472,"parsedSize":472,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"ResizeEvent.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Events/ResizeEvent.js","statSize":373,"parsedSize":373,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":3202,"gzipSize":531,"inaccurateSizes":true},{"label":"Modes","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Interactivity/Modes/Modes.js","statSize":600,"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":601,"gzipSize":99,"inaccurateSizes":true}],"parsedSize":4368,"gzipSize":725,"inaccurateSizes":true},{"id":null,"label":"ManualParticle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ManualParticle.js","statSize":475,"parsedSize":475,"gzipSize":79,"inaccurateSizes":true},{"id":null,"label":"Responsive.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Responsive.js","statSize":689,"parsedSize":690,"gzipSize":114,"inaccurateSizes":true},{"label":"Theme","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/Theme.js","statSize":528,"parsedSize":528,"gzipSize":87,"inaccurateSizes":true},{"id":null,"label":"ThemeDefault.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Theme/ThemeDefault.js","statSize":467,"parsedSize":467,"gzipSize":77,"inaccurateSizes":true}],"parsedSize":996,"gzipSize":165,"inaccurateSizes":true},{"label":"Particles","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ParticlesOptions.js","statSize":3535,"parsedSize":3541,"gzipSize":588,"inaccurateSizes":true},{"label":"Collisions","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/Collisions.js","statSize":1006,"parsedSize":1007,"gzipSize":167,"inaccurateSizes":true},{"id":null,"label":"CollisionsAbsorb.js","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.js","statSize":372,"parsedSize":372,"gzipSize":61,"inaccurateSizes":true}],"parsedSize":1625,"gzipSize":270,"inaccurateSizes":true},{"label":"Bounce","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Bounce/ParticlesBounce.js","statSize":399,"parsedSize":399,"gzipSize":66,"inaccurateSizes":true},{"id":null,"label":"ParticlesBounceFactor.js","path":"./dist/browser/bundle.js + 102 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":97,"inaccurateSizes":true},{"label":"Move","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Move.js","statSize":3064,"parsedSize":3069,"gzipSize":509,"inaccurateSizes":true},{"id":null,"label":"MoveAngle.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAngle.js","statSize":450,"parsedSize":450,"gzipSize":74,"inaccurateSizes":true},{"id":null,"label":"MoveAttract.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveAttract.js","statSize":846,"parsedSize":847,"gzipSize":140,"inaccurateSizes":true},{"id":null,"label":"MoveGravity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveGravity.js","statSize":733,"parsedSize":734,"gzipSize":121,"inaccurateSizes":true},{"label":"Path","path":"./dist/browser/bundle.js + 102 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 + 102 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":737,"gzipSize":122,"inaccurateSizes":true}],"parsedSize":737,"gzipSize":122,"inaccurateSizes":true},{"id":null,"label":"MoveTrail.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrail.js","statSize":543,"parsedSize":543,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"Spin.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/Spin.js","statSize":616,"parsedSize":617,"gzipSize":102,"inaccurateSizes":true},{"id":null,"label":"MoveCenter.js","path":"./dist/browser/bundle.js + 102 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":91,"inaccurateSizes":true},{"id":null,"label":"OutModes.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/OutModes.js","statSize":441,"parsedSize":441,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"MoveTrailFill.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Move/MoveTrailFill.js","statSize":366,"parsedSize":366,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":8360,"gzipSize":1388,"inaccurateSizes":true},{"label":"Opacity","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/Opacity.js","statSize":548,"parsedSize":548,"gzipSize":91,"inaccurateSizes":true},{"id":null,"label":"OpacityAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Opacity/OpacityAnimation.js","statSize":424,"parsedSize":424,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":973,"gzipSize":161,"inaccurateSizes":true},{"id":null,"label":"Shadow.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shadow.js","statSize":877,"parsedSize":878,"gzipSize":145,"inaccurateSizes":true},{"label":"Shape","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Shape/Shape.js","statSize":865,"parsedSize":866,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":866,"gzipSize":143,"inaccurateSizes":true},{"label":"Size","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/Size.js","statSize":536,"parsedSize":536,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"SizeAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Size/SizeAnimation.js","statSize":421,"parsedSize":421,"gzipSize":70,"inaccurateSizes":true}],"parsedSize":958,"gzipSize":159,"inaccurateSizes":true},{"id":null,"label":"Stroke.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Stroke.js","statSize":601,"parsedSize":602,"gzipSize":99,"inaccurateSizes":true},{"label":"ZIndex","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/ZIndex/ZIndex.js","statSize":648,"parsedSize":649,"gzipSize":107,"inaccurateSizes":true}],"parsedSize":649,"gzipSize":107,"inaccurateSizes":true},{"label":"Number","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumber.js","statSize":542,"parsedSize":542,"gzipSize":90,"inaccurateSizes":true},{"id":null,"label":"ParticlesDensity.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesDensity.js","statSize":535,"parsedSize":535,"gzipSize":89,"inaccurateSizes":true},{"id":null,"label":"ParticlesNumberLimit.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Number/ParticlesNumberLimit.js","statSize":363,"parsedSize":363,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":1442,"gzipSize":239,"inaccurateSizes":true},{"label":"Effect","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/Particles/Effect/Effect.js","statSize":864,"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":865,"gzipSize":143,"inaccurateSizes":true}],"parsedSize":21354,"gzipSize":3546,"inaccurateSizes":true},{"id":null,"label":"AnimatableColor.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimatableColor.js","statSize":1067,"parsedSize":1068,"gzipSize":177,"inaccurateSizes":true},{"id":null,"label":"HslAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/HslAnimation.js","statSize":388,"parsedSize":388,"gzipSize":64,"inaccurateSizes":true},{"id":null,"label":"ColorAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ColorAnimation.js","statSize":474,"parsedSize":474,"gzipSize":78,"inaccurateSizes":true},{"id":null,"label":"AnimationOptions.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/AnimationOptions.js","statSize":1386,"parsedSize":1388,"gzipSize":230,"inaccurateSizes":true},{"id":null,"label":"ValueWithRandom.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/ValueWithRandom.js","statSize":1022,"parsedSize":1023,"gzipSize":170,"inaccurateSizes":true},{"label":"FullScreen","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+engine@3.0.3/node_modules/@tsparticles/engine/browser/Options/Classes/FullScreen/FullScreen.js","statSize":361,"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":361,"gzipSize":60,"inaccurateSizes":true}],"parsedSize":41663,"gzipSize":6918,"inaccurateSizes":true}],"parsedSize":176089,"gzipSize":29242,"inaccurateSizes":true},{"label":"@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/index.js","statSize":4270,"parsedSize":4277,"gzipSize":710,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/Emitter.js","statSize":2075,"parsedSize":2078,"gzipSize":345,"inaccurateSizes":true},{"id":null,"label":"EmitterLife.js","path":"./dist/browser/bundle.js + 102 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":98,"inaccurateSizes":true},{"id":null,"label":"EmitterRate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterRate.js","statSize":461,"parsedSize":461,"gzipSize":76,"inaccurateSizes":true},{"id":null,"label":"EmitterShape.js","path":"./dist/browser/bundle.js + 102 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":98,"inaccurateSizes":true},{"id":null,"label":"EmitterSize.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterSize.js","statSize":483,"parsedSize":483,"gzipSize":80,"inaccurateSizes":true},{"id":null,"label":"EmitterShapeReplace.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Options/Classes/EmitterShapeReplace.js","statSize":375,"parsedSize":375,"gzipSize":62,"inaccurateSizes":true}],"parsedSize":4586,"gzipSize":761,"inaccurateSizes":true},{"id":null,"label":"Emitters.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/Emitters.js","statSize":4325,"parsedSize":4332,"gzipSize":719,"inaccurateSizes":true},{"id":null,"label":"ShapeManager.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/ShapeManager.js","statSize":443,"parsedSize":443,"gzipSize":73,"inaccurateSizes":true},{"id":null,"label":"EmitterInstance.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+plugin-emitters@3.0.3/node_modules/@tsparticles/plugin-emitters/browser/EmitterInstance.js","statSize":11953,"parsedSize":11974,"gzipSize":1988,"inaccurateSizes":true}],"parsedSize":25615,"gzipSize":4253,"inaccurateSizes":true},{"label":"@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser","statSize":4692,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/index.js","statSize":221,"parsedSize":221,"gzipSize":36,"inaccurateSizes":true},{"id":null,"label":"RotateUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/RotateUpdater.js","statSize":3135,"parsedSize":3140,"gzipSize":521,"inaccurateSizes":true},{"label":"Options/Classes","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes","statSize":1336,"groups":[{"id":null,"label":"Rotate.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/Rotate.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true},{"id":null,"label":"RotateAnimation.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-rotate@3.0.3/node_modules/@tsparticles/updater-rotate/browser/Options/Classes/RotateAnimation.js","statSize":668,"parsedSize":669,"gzipSize":111,"inaccurateSizes":true}],"parsedSize":1338,"gzipSize":222,"inaccurateSizes":true}],"parsedSize":4700,"gzipSize":780,"inaccurateSizes":true},{"label":"@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser","path":"./dist/browser/bundle.js + 102 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 + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/index.js","statSize":193,"parsedSize":193,"gzipSize":32,"inaccurateSizes":true},{"id":null,"label":"SizeUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/SizeUpdater.js","statSize":1126,"parsedSize":1128,"gzipSize":187,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-size@3.0.3/node_modules/@tsparticles/updater-size/browser/Utils.js","statSize":1999,"parsedSize":2002,"gzipSize":332,"inaccurateSizes":true}],"parsedSize":3324,"gzipSize":552,"inaccurateSizes":true},{"label":"@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser","statSize":512,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser/index.js","statSize":192,"parsedSize":192,"gzipSize":31,"inaccurateSizes":true},{"id":null,"label":"SquareDrawer.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+shape-square@3.0.3/node_modules/@tsparticles/shape-square/browser/SquareDrawer.js","statSize":320,"parsedSize":320,"gzipSize":53,"inaccurateSizes":true}],"parsedSize":512,"gzipSize":85,"inaccurateSizes":true},{"label":"@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser","statSize":3981,"groups":[{"id":null,"label":"index.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/index.js","statSize":246,"parsedSize":246,"gzipSize":40,"inaccurateSizes":true},{"id":null,"label":"StrokeColorUpdater.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/StrokeColorUpdater.js","statSize":1549,"parsedSize":1551,"gzipSize":257,"inaccurateSizes":true},{"id":null,"label":"Utils.js","path":"./dist/browser/bundle.js + 102 modules (concatenated)/../node_modules/.pnpm/@tsparticles+updater-stroke-color@3.0.3/node_modules/@tsparticles/updater-stroke-color/browser/Utils.js","statSize":2186,"parsedSize":2189,"gzipSize":363,"inaccurateSizes":true}],"parsedSize":3988,"gzipSize":662,"inaccurateSizes":true}],"parsedSize":214230,"gzipSize":35576,"inaccurateSizes":true}]}],"parsedSize":215986,"gzipSize":35868}],"isInitialByEntrypoint":{"tsparticles.preset.squares.bundle":true}}];
|
|
35
35
|
window.entrypoints = ["tsparticles.preset.squares.bundle","tsparticles.preset.squares.bundle.min"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</script>
|