Socket
Socket
Sign inDemoInstall

@tsparticles/basic

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tsparticles/basic - npm Package Compare versions

Comparing version 3.2.2 to 3.3.0

119.min.js

25

cjs/index.js
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadBasic = void 0;
async function loadBasic(engine, refresh = true) {
const { loadBaseMover } = await Promise.resolve().then(() => __importStar(require("@tsparticles/move-base"))), { loadCircleShape } = await Promise.resolve().then(() => __importStar(require("@tsparticles/shape-circle"))), { loadColorUpdater } = await Promise.resolve().then(() => __importStar(require("@tsparticles/updater-color"))), { loadOpacityUpdater } = await Promise.resolve().then(() => __importStar(require("@tsparticles/updater-opacity"))), { loadOutModesUpdater } = await Promise.resolve().then(() => __importStar(require("@tsparticles/updater-out-modes"))), { loadSizeUpdater } = await Promise.resolve().then(() => __importStar(require("@tsparticles/updater-size")));
const { loadBaseMover } = await import("@tsparticles/move-base"), { loadCircleShape } = await import("@tsparticles/shape-circle"), { loadColorUpdater } = await import("@tsparticles/updater-color"), { loadOpacityUpdater } = await import("@tsparticles/updater-opacity"), { loadOutModesUpdater } = await import("@tsparticles/updater-out-modes"), { loadSizeUpdater } = await import("@tsparticles/updater-size");
await loadBaseMover(engine, false);

@@ -30,0 +7,0 @@ await loadCircleShape(engine, false);

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -27,6 +27,16 @@ "use strict";

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BaseMover: () => (/* binding */ BaseMover)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst diffFactor = 2,\n defaultSizeFactor = 1,\n defaultDeltaFactor = 1;\nclass BaseMover {\n async init(particle) {\n const options = particle.options,\n gravityOptions = options.move.gravity;\n particle.gravity = {\n enable: gravityOptions.enable,\n acceleration: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(gravityOptions.acceleration),\n inverse: gravityOptions.inverse\n };\n const {\n initSpin\n } = await __webpack_require__.e(/*! import() */ \"move_base_dist_browser_Utils_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Utils.js */ \"../../move/base/dist/browser/Utils.js\"));\n initSpin(particle);\n await Promise.resolve();\n }\n isEnabled(particle) {\n return !particle.destroyed && particle.options.move.enable;\n }\n async move(particle, delta) {\n const particleOptions = particle.options,\n moveOptions = particleOptions.move;\n if (!moveOptions.enable) {\n return;\n }\n const container = particle.container,\n pxRatio = container.retina.pixelRatio;\n particle.retina.moveSpeed ??= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(moveOptions.speed) * pxRatio;\n particle.retina.moveDrift ??= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(particle.options.move.drift) * pxRatio;\n const {\n getProximitySpeedFactor\n } = await __webpack_require__.e(/*! import() */ \"move_base_dist_browser_Utils_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Utils.js */ \"../../move/base/dist/browser/Utils.js\")),\n slowFactor = getProximitySpeedFactor(particle),\n baseSpeed = particle.retina.moveSpeed * container.retina.reduceFactor,\n moveDrift = particle.retina.moveDrift,\n maxSize = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeMax)(particleOptions.size.value) * pxRatio,\n sizeFactor = moveOptions.size ? particle.getRadius() / maxSize : defaultSizeFactor,\n deltaFactor = delta.factor || defaultDeltaFactor,\n moveSpeed = baseSpeed * sizeFactor * slowFactor * deltaFactor / diffFactor,\n maxSpeed = particle.retina.maxSpeed ?? container.retina.maxSpeed;\n if (moveOptions.spin.enable) {\n const {\n spin\n } = await __webpack_require__.e(/*! import() */ \"move_base_dist_browser_Utils_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Utils.js */ \"../../move/base/dist/browser/Utils.js\"));\n spin(particle, moveSpeed);\n } else {\n const {\n move\n } = await __webpack_require__.e(/*! import() */ \"move_base_dist_browser_Utils_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Utils.js */ \"../../move/base/dist/browser/Utils.js\"));\n await move(particle, moveOptions, moveSpeed, maxSpeed, moveDrift, delta);\n }\n const {\n applyDistance\n } = await __webpack_require__.e(/*! import() */ \"move_base_dist_browser_Utils_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Utils.js */ \"../../move/base/dist/browser/Utils.js\"));\n applyDistance(particle);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../move/base/dist/browser/BaseMover.js?");
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BaseMover: () => (/* binding */ BaseMover)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utils.js */ \"../../move/base/dist/browser/Utils.js\");\n\n\nconst diffFactor = 2,\n defaultSizeFactor = 1,\n defaultDeltaFactor = 1;\nclass BaseMover {\n init(particle) {\n const options = particle.options,\n gravityOptions = options.move.gravity;\n particle.gravity = {\n enable: gravityOptions.enable,\n acceleration: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(gravityOptions.acceleration),\n inverse: gravityOptions.inverse\n };\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.initSpin)(particle);\n }\n isEnabled(particle) {\n return !particle.destroyed && particle.options.move.enable;\n }\n move(particle, delta) {\n const particleOptions = particle.options,\n moveOptions = particleOptions.move;\n if (!moveOptions.enable) {\n return;\n }\n const container = particle.container,\n pxRatio = container.retina.pixelRatio;\n particle.retina.moveSpeed ??= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(moveOptions.speed) * pxRatio;\n particle.retina.moveDrift ??= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(particle.options.move.drift) * pxRatio;\n const slowFactor = (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.getProximitySpeedFactor)(particle),\n baseSpeed = particle.retina.moveSpeed * container.retina.reduceFactor,\n moveDrift = particle.retina.moveDrift,\n maxSize = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeMax)(particleOptions.size.value) * pxRatio,\n sizeFactor = moveOptions.size ? particle.getRadius() / maxSize : defaultSizeFactor,\n deltaFactor = delta.factor || defaultDeltaFactor,\n moveSpeed = baseSpeed * sizeFactor * slowFactor * deltaFactor / diffFactor,\n maxSpeed = particle.retina.maxSpeed ?? container.retina.maxSpeed;\n if (moveOptions.spin.enable) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.spin)(particle, moveSpeed);\n } else {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.move)(particle, moveOptions, moveSpeed, maxSpeed, moveDrift, delta);\n }\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.applyDistance)(particle);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../move/base/dist/browser/BaseMover.js?");
/***/ }),
/***/ "../../move/base/dist/browser/Utils.js":
/*!*********************************************!*\
!*** ../../move/base/dist/browser/Utils.js ***!
\*********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ applyDistance: () => (/* binding */ applyDistance),\n/* harmony export */ applyPath: () => (/* binding */ applyPath),\n/* harmony export */ getProximitySpeedFactor: () => (/* binding */ getProximitySpeedFactor),\n/* harmony export */ initSpin: () => (/* binding */ initSpin),\n/* harmony export */ move: () => (/* binding */ move),\n/* harmony export */ spin: () => (/* binding */ spin)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst half = 0.5,\n minVelocity = 0,\n identity = 1,\n moveSpeedFactor = 60,\n minSpinRadius = 0,\n spinFactor = 0.01;\nfunction applyDistance(particle) {\n const initialPosition = particle.initialPosition,\n {\n dx,\n dy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(initialPosition, particle.position),\n dxFixed = Math.abs(dx),\n dyFixed = Math.abs(dy),\n {\n maxDistance\n } = particle.retina,\n hDistance = maxDistance.horizontal,\n vDistance = maxDistance.vertical;\n if (!hDistance && !vDistance) {\n return;\n }\n const hasHDistance = (hDistance && dxFixed >= hDistance) ?? false,\n hasVDistance = (vDistance && dyFixed >= vDistance) ?? false;\n if ((hasHDistance || hasVDistance) && !particle.misplaced) {\n particle.misplaced = !!hDistance && dxFixed > hDistance || !!vDistance && dyFixed > vDistance;\n if (hDistance) {\n particle.velocity.x = particle.velocity.y * half - particle.velocity.x;\n }\n if (vDistance) {\n particle.velocity.y = particle.velocity.x * half - particle.velocity.y;\n }\n } else if ((!hDistance || dxFixed < hDistance) && (!vDistance || dyFixed < vDistance) && particle.misplaced) {\n particle.misplaced = false;\n } else if (particle.misplaced) {\n const pos = particle.position,\n vel = particle.velocity;\n if (hDistance && (pos.x < initialPosition.x && vel.x < minVelocity || pos.x > initialPosition.x && vel.x > minVelocity)) {\n vel.x *= -(0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)();\n }\n if (vDistance && (pos.y < initialPosition.y && vel.y < minVelocity || pos.y > initialPosition.y && vel.y > minVelocity)) {\n vel.y *= -(0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)();\n }\n }\n}\nfunction move(particle, moveOptions, moveSpeed, maxSpeed, moveDrift, delta) {\n applyPath(particle, delta);\n const gravityOptions = particle.gravity,\n gravityFactor = gravityOptions?.enable && gravityOptions.inverse ? -identity : identity;\n if (moveDrift && moveSpeed) {\n particle.velocity.x += moveDrift * delta.factor / (moveSpeedFactor * moveSpeed);\n }\n if (gravityOptions?.enable && moveSpeed) {\n particle.velocity.y += gravityFactor * (gravityOptions.acceleration * delta.factor) / (moveSpeedFactor * moveSpeed);\n }\n const decay = particle.moveDecay;\n particle.velocity.multTo(decay);\n const velocity = particle.velocity.mult(moveSpeed);\n if (gravityOptions?.enable && maxSpeed > minVelocity && (!gravityOptions.inverse && velocity.y >= minVelocity && velocity.y >= maxSpeed || gravityOptions.inverse && velocity.y <= minVelocity && velocity.y <= -maxSpeed)) {\n velocity.y = gravityFactor * maxSpeed;\n if (moveSpeed) {\n particle.velocity.y = velocity.y / moveSpeed;\n }\n }\n const zIndexOptions = particle.options.zIndex,\n zVelocityFactor = (identity - particle.zIndexFactor) ** zIndexOptions.velocityRate;\n velocity.multTo(zVelocityFactor);\n const {\n position\n } = particle;\n position.addTo(velocity);\n if (moveOptions.vibrate) {\n position.x += Math.sin(position.x * Math.cos(position.y));\n position.y += Math.cos(position.y * Math.sin(position.x));\n }\n}\nfunction spin(particle, moveSpeed) {\n const container = particle.container;\n if (!particle.spin) {\n return;\n }\n const updateFunc = {\n x: particle.spin.direction === \"clockwise\" ? Math.cos : Math.sin,\n y: particle.spin.direction === \"clockwise\" ? Math.sin : Math.cos\n };\n particle.position.x = particle.spin.center.x + particle.spin.radius * updateFunc.x(particle.spin.angle);\n particle.position.y = particle.spin.center.y + particle.spin.radius * updateFunc.y(particle.spin.angle);\n particle.spin.radius += particle.spin.acceleration;\n const maxCanvasSize = Math.max(container.canvas.size.width, container.canvas.size.height),\n halfMaxSize = maxCanvasSize * half;\n if (particle.spin.radius > halfMaxSize) {\n particle.spin.radius = halfMaxSize;\n particle.spin.acceleration *= -identity;\n } else if (particle.spin.radius < minSpinRadius) {\n particle.spin.radius = minSpinRadius;\n particle.spin.acceleration *= -identity;\n }\n particle.spin.angle += moveSpeed * spinFactor * (identity - particle.spin.radius / maxCanvasSize);\n}\nfunction applyPath(particle, delta) {\n const particlesOptions = particle.options,\n pathOptions = particlesOptions.move.path,\n pathEnabled = pathOptions.enable;\n if (!pathEnabled) {\n return;\n }\n if (particle.lastPathTime <= particle.pathDelay) {\n particle.lastPathTime += delta.value;\n return;\n }\n const path = particle.pathGenerator?.generate(particle, delta);\n if (path) {\n particle.velocity.addTo(path);\n }\n if (pathOptions.clamp) {\n particle.velocity.x = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.clamp)(particle.velocity.x, -identity, identity);\n particle.velocity.y = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.clamp)(particle.velocity.y, -identity, identity);\n }\n particle.lastPathTime -= particle.pathDelay;\n}\nfunction getProximitySpeedFactor(particle) {\n return particle.slow.inRange ? particle.slow.factor : identity;\n}\nfunction initSpin(particle) {\n const container = particle.container,\n options = particle.options,\n spinOptions = options.move.spin;\n if (!spinOptions.enable) {\n return;\n }\n const spinPos = spinOptions.position ?? {\n x: 50,\n y: 50\n },\n spinFactor = 0.01,\n spinCenter = {\n x: spinPos.x * spinFactor * container.canvas.size.width,\n y: spinPos.y * spinFactor * container.canvas.size.height\n },\n pos = particle.getPosition(),\n distance = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistance)(pos, spinCenter),\n spinAcceleration = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(spinOptions.acceleration);\n particle.retina.spinAcceleration = spinAcceleration * container.retina.pixelRatio;\n const minVelocity = 0;\n particle.spin = {\n center: spinCenter,\n direction: particle.velocity.x >= minVelocity ? \"clockwise\" : \"counter-clockwise\",\n angle: particle.velocity.angle,\n radius: distance,\n acceleration: particle.retina.spinAcceleration\n };\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../move/base/dist/browser/Utils.js?");
/***/ })
}]);

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -10,0 +10,0 @@ "use strict";

{
"name": "@tsparticles/basic",
"version": "3.2.2",
"version": "3.3.0",
"description": "Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.",

@@ -102,9 +102,9 @@ "homepage": "https://particles.js.org",

"dependencies": {
"@tsparticles/engine": "^3.2.2",
"@tsparticles/move-base": "^3.2.2",
"@tsparticles/shape-circle": "^3.2.2",
"@tsparticles/updater-color": "^3.2.2",
"@tsparticles/updater-opacity": "^3.2.2",
"@tsparticles/updater-out-modes": "^3.2.2",
"@tsparticles/updater-size": "^3.2.2"
"@tsparticles/engine": "^3.3.0",
"@tsparticles/move-base": "^3.3.0",
"@tsparticles/shape-circle": "^3.3.0",
"@tsparticles/updater-color": "^3.3.0",
"@tsparticles/updater-opacity": "^3.3.0",
"@tsparticles/updater-out-modes": "^3.3.0",
"@tsparticles/updater-size": "^3.3.0"
},

@@ -111,0 +111,0 @@ "publishConfig": {

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -27,6 +27,16 @@ "use strict";

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ CircleDrawer: () => (/* binding */ CircleDrawer)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst sides = 12,\n maxAngle = 360,\n minAngle = 0;\nclass CircleDrawer {\n async draw(data) {\n const {\n drawCircle\n } = await __webpack_require__.e(/*! import() */ \"shapes_circle_dist_browser_Utils_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./Utils.js */ \"../../shapes/circle/dist/browser/Utils.js\"));\n drawCircle(data);\n }\n getSidesCount() {\n return sides;\n }\n async particleInit(container, particle) {\n const shapeData = particle.shapeData,\n angle = shapeData?.angle ?? {\n max: maxAngle,\n min: minAngle\n };\n particle.circleRange = !(0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isObject)(angle) ? {\n min: minAngle,\n max: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.degToRad)(angle)\n } : {\n min: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.degToRad)(angle.min),\n max: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.degToRad)(angle.max)\n };\n await Promise.resolve();\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../shapes/circle/dist/browser/CircleDrawer.js?");
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ CircleDrawer: () => (/* binding */ CircleDrawer)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utils.js */ \"../../shapes/circle/dist/browser/Utils.js\");\n\n\nconst sides = 12,\n maxAngle = 360,\n minAngle = 0;\nclass CircleDrawer {\n draw(data) {\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.drawCircle)(data);\n }\n getSidesCount() {\n return sides;\n }\n particleInit(container, particle) {\n const shapeData = particle.shapeData,\n angle = shapeData?.angle ?? {\n max: maxAngle,\n min: minAngle\n };\n particle.circleRange = !(0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isObject)(angle) ? {\n min: minAngle,\n max: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.degToRad)(angle)\n } : {\n min: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.degToRad)(angle.min),\n max: (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.degToRad)(angle.max)\n };\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../shapes/circle/dist/browser/CircleDrawer.js?");
/***/ }),
/***/ "../../shapes/circle/dist/browser/Utils.js":
/*!*************************************************!*\
!*** ../../shapes/circle/dist/browser/Utils.js ***!
\*************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ drawCircle: () => (/* binding */ drawCircle)\n/* harmony export */ });\nconst double = 2,\n doublePI = Math.PI * double,\n minAngle = 0,\n origin = {\n x: 0,\n y: 0\n };\nfunction drawCircle(data) {\n const {\n context,\n particle,\n radius\n } = data;\n if (!particle.circleRange) {\n particle.circleRange = {\n min: minAngle,\n max: doublePI\n };\n }\n const circleRange = particle.circleRange;\n context.arc(origin.x, origin.y, radius, circleRange.min, circleRange.max, false);\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../shapes/circle/dist/browser/Utils.js?");
/***/ })
}]);

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -10,0 +10,0 @@ "use strict";

/*! For license information please see tsparticles.basic.bundle.min.js.LICENSE.txt */
!function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var i=e();for(var s in i)("object"==typeof exports?exports:t)[s]=i[s]}}(this,(()=>(()=>{var t,e,i={6830:(t,e,i)=>{i.d(e,{$o:()=>d,G1:()=>r,QL:()=>p,Re:()=>c,VH:()=>u,Wt:()=>l,X5:()=>g,YU:()=>s,ZL:()=>o,aM:()=>a,gK:()=>f,rR:()=>v,tZ:()=>m,vq:()=>y,zX:()=>h,zw:()=>n});const s="generated",o="pointerdown",n="pointerup",a="pointerleave",r="pointerout",l="pointermove",c="touchstart",d="touchend",h="touchmove",u="touchcancel",v="resize",p="visibilitychange",f="tsParticles - Error",m=100,y=.5,g=1e3},4158:(t,e,i)=>{i.d(e,{E:()=>s});class s{constructor(t,e){this.position=t,this.particle=e}}},7212:(t,e,i)=>{i.d(e,{Ae:()=>a,Cd:()=>n,W7:()=>o});var s=i(2358);class o{constructor(t,e,i){this.position={x:t,y:e},this.type=i}}class n extends o{constructor(t,e,i){super(t,e,"circle"),this.radius=i}contains(t){return(0,s.Sp)(t,this.position)<=this.radius}intersects(t){const e=this.position,i=t.position,s=Math.abs(i.x-e.x),o=Math.abs(i.y-e.y),r=this.radius;if(t instanceof n||"circle"===t.type){return r+t.radius>Math.sqrt(s**2+o**2)}if(t instanceof a||"rectangle"===t.type){const e=t,{width:i,height:n}=e.size;return Math.pow(s-i,2)+Math.pow(o-n,2)<=r**2||s<=r+i&&o<=r+n||s<=i||o<=n}return!1}}class a extends o{constructor(t,e,i,s){super(t,e,"rectangle"),this.size={height:s,width:i}}contains(t){const e=this.size.width,i=this.size.height,s=this.position;return t.x>=s.x&&t.x<=s.x+e&&t.y>=s.y&&t.y<=s.y+i}intersects(t){if(t instanceof n)return t.intersects(this);const e=this.size.width,i=this.size.height,s=this.position,o=t.position,r=t instanceof a?t.size:{width:0,height:0},l=r.width,c=r.height;return o.x<s.x+e&&o.x+l>s.x&&o.y<s.y+i&&o.y+c>s.y}}},6888:(t,e,i)=>{i.d(e,{O:()=>c,U:()=>l});var s=i(6830),o=i(3853);const n=0,a=0,r=0;class l{constructor(t,e,i){if(this._updateFromAngle=(t,e)=>{this.x=Math.cos(t)*e,this.y=Math.sin(t)*e},!(0,o.hj)(t)&&t){this.x=t.x,this.y=t.y;const e=t;this.z=e.z?e.z:r}else{if(void 0===t||void 0===e)throw new Error(`${s.gK} Vector3d not initialized correctly`);this.x=t,this.y=e,this.z=i??r}}static get origin(){return l.create(n,a,r)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this._updateFromAngle(t,this.length)}get length(){return Math.sqrt(this.getLengthSq())}set length(t){this._updateFromAngle(this.angle,t)}static clone(t){return l.create(t.x,t.y,t.z)}static create(t,e,i){return new l(t,e,i)}add(t){return l.create(this.x+t.x,this.y+t.y,this.z+t.z)}addTo(t){this.x+=t.x,this.y+=t.y,this.z+=t.z}copy(){return l.clone(this)}distanceTo(t){return this.sub(t).length}distanceToSq(t){return this.sub(t).getLengthSq()}div(t){return l.create(this.x/t,this.y/t,this.z/t)}divTo(t){this.x/=t,this.y/=t,this.z/=t}getLengthSq(){return this.x**2+this.y**2}mult(t){return l.create(this.x*t,this.y*t,this.z*t)}multTo(t){this.x*=t,this.y*=t,this.z*=t}normalize(){const t=this.length;0!=t&&this.multTo(1/t)}rotate(t){return l.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t),r)}setTo(t){this.x=t.x,this.y=t.y;const e=t;this.z=e.z?e.z:r}sub(t){return l.create(this.x-t.x,this.y-t.y,this.z-t.z)}subFrom(t){this.x-=t.x,this.y-=t.y,this.z-=t.z}}class c extends l{constructor(t,e){super(t,e,r)}static get origin(){return c.create(n,a)}static clone(t){return c.create(t.x,t.y)}static create(t,e){return new c(t,e)}}},1470:(t,e,i)=>{i.d(e,{R:()=>a});var s=i(3853),o=i(5992),n=i(3312);class a extends n.O{constructor(){super(),this.animation=new o.h}static create(t,e){const i=new a;return i.load(t),void 0!==e&&((0,s.HD)(e)||(0,s.kJ)(e)?i.load({value:e}):i.load(e)),i}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&(void 0!==e.enable?this.animation.h.load(e):this.animation.load(t.animation))}}},8152:(t,e,i)=>{i.d(e,{B:()=>n,P:()=>o});var s=i(2358);class o{constructor(){this.count=0,this.enable=!1,this.speed=1,this.decay=0,this.delay=0,this.sync=!1}load(t){t&&(void 0!==t.count&&(this.count=(0,s.Cs)(t.count)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=(0,s.Cs)(t.speed)),void 0!==t.decay&&(this.decay=(0,s.Cs)(t.decay)),void 0!==t.delay&&(this.delay=(0,s.Cs)(t.delay)),void 0!==t.sync&&(this.sync=t.sync))}}class n extends o{constructor(){super(),this.mode="auto",this.startValue="random"}load(t){super.load(t),t&&(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.startValue&&(this.startValue=t.startValue))}}},1429:(t,e,i)=>{i.d(e,{A:()=>o});var s=i(3312);class o{constructor(){this.color=new s.O,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){t&&(void 0!==t.color&&(this.color=s.O.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.position&&(this.position=t.position),void 0!==t.repeat&&(this.repeat=t.repeat),void 0!==t.size&&(this.size=t.size),void 0!==t.opacity&&(this.opacity=t.opacity))}}},9311:(t,e,i)=>{i.d(e,{g:()=>n});var s=i(76),o=i(3853);class n{constructor(){this.composite="destination-out",this.cover=new s.F,this.enable=!1}load(t){if(t){if(void 0!==t.composite&&(this.composite=t.composite),void 0!==t.cover){const e=t.cover,i=(0,o.HD)(t.cover)?{color:t.cover}:t.cover;this.cover.load(void 0!==e.color||void 0!==e.image?e:{color:i})}void 0!==t.enable&&(this.enable=t.enable)}}}},76:(t,e,i)=>{i.d(e,{F:()=>o});var s=i(3312);class o{constructor(){this.opacity=1}load(t){t&&(void 0!==t.color&&(this.color=s.O.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.opacity&&(this.opacity=t.opacity))}}},2793:(t,e,i)=>{i.d(e,{y:()=>n});var s=i(8152),o=i(2358);class n extends s.P{constructor(){super(),this.offset=0,this.sync=!0}load(t){super.load(t),t&&void 0!==t.offset&&(this.offset=(0,o.Cs)(t.offset))}}},8569:(t,e,i)=>{i.d(e,{I:()=>s});class s{constructor(){this.enable=!0,this.zIndex=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}},5992:(t,e,i)=>{i.d(e,{h:()=>o});var s=i(2793);class o{constructor(){this.h=new s.y,this.s=new s.y,this.l=new s.y}load(t){t&&(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}},5053:(t,e,i)=>{i.d(e,{R:()=>s});class s{constructor(){this.enable=!1,this.mode=[]}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode))}}},2935:(t,e,i)=>{i.d(e,{M:()=>s});class s{constructor(){this.selectors=[],this.enable=!1,this.mode=[],this.type="circle"}load(t){t&&(void 0!==t.selectors&&(this.selectors=t.selectors),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.type&&(this.type=t.type))}}},1778:(t,e,i)=>{i.d(e,{z:()=>l});var s=i(5053),o=i(2935),n=i(5701),a=i(6755),r=i(1271);class l{constructor(){this.onClick=new s.R,this.onDiv=new o.M,this.onHover=new n.z,this.resize=new a.C}load(t){if(!t)return;this.onClick.load(t.onClick);const e=t.onDiv;void 0!==e&&(this.onDiv=(0,r.KH)(e,(t=>{const e=new o.M;return e.load(t),e}))),this.onHover.load(t.onHover),this.resize.load(t.resize)}}},5701:(t,e,i)=>{i.d(e,{z:()=>o});var s=i(6571);class o{constructor(){this.enable=!1,this.mode=[],this.parallax=new s.V}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.parallax.load(t.parallax))}}},6571:(t,e,i)=>{i.d(e,{V:()=>s});class s{constructor(){this.enable=!1,this.force=2,this.smooth=10}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.force&&(this.force=t.force),void 0!==t.smooth&&(this.smooth=t.smooth))}}},6755:(t,e,i)=>{i.d(e,{C:()=>s});class s{constructor(){this.delay=.5,this.enable=!0}load(t){void 0!==t&&(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.enable&&(this.enable=t.enable))}}},8461:(t,e,i)=>{i.d(e,{o:()=>n});var s=i(1778),o=i(5542);class n{constructor(t,e){this.detectsOn="window",this.events=new s.z,this.modes=new o.n(t,e)}load(t){if(!t)return;const e=t.detectsOn;void 0!==e&&(this.detectsOn=e),this.events.load(t.events),this.modes.load(t.modes)}}},5542:(t,e,i)=>{i.d(e,{n:()=>s});class s{constructor(t,e){this._engine=t,this._container=e}load(t){if(!t)return;if(!this._container)return;const e=this._engine.interactors.get(this._container);if(e)for(const i of e)i.loadModeOptions&&i.loadModeOptions(this,t)}}},5632:(t,e,i)=>{i.d(e,{h:()=>o});var s=i(1271);class o{load(t){t&&(t.position&&(this.position={x:t.position.x??50,y:t.position.y??50,mode:t.position.mode??"percent"}),t.options&&(this.options=(0,s.ZB)({},t.options)))}}},7327:(t,e,i)=>{i.d(e,{E:()=>p});var s=i(1271),o=i(1429),n=i(9311),a=i(8569),r=i(8461),l=i(5632),c=i(3442),d=i(9556),h=i(3853),u=i(8853),v=i(2358);class p{constructor(t,e){this._findDefaultTheme=t=>this.themes.find((e=>e.default.value&&e.default.mode===t))??this.themes.find((t=>t.default.value&&"any"===t.default.mode)),this._importPreset=t=>{this.load(this._engine.getPreset(t))},this._engine=t,this._container=e,this.autoPlay=!0,this.background=new o.A,this.backgroundMask=new n.g,this.clear=!0,this.defaultThemes={},this.delay=0,this.fullScreen=new a.I,this.detectRetina=!0,this.duration=0,this.fpsLimit=120,this.interactivity=new r.o(t,e),this.manualParticles=[],this.particles=(0,u.x)(this._engine,this._container),this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.responsive=[],this.smooth=!1,this.style={},this.themes=[],this.zLayers=100}load(t){if(!t)return;void 0!==t.preset&&(0,s.KH)(t.preset,(t=>this._importPreset(t))),void 0!==t.autoPlay&&(this.autoPlay=t.autoPlay),void 0!==t.clear&&(this.clear=t.clear),void 0!==t.key&&(this.key=t.key),void 0!==t.name&&(this.name=t.name),void 0!==t.delay&&(this.delay=(0,v.Cs)(t.delay));const e=t.detectRetina;void 0!==e&&(this.detectRetina=e),void 0!==t.duration&&(this.duration=(0,v.Cs)(t.duration));const i=t.fpsLimit;void 0!==i&&(this.fpsLimit=i),void 0!==t.pauseOnBlur&&(this.pauseOnBlur=t.pauseOnBlur),void 0!==t.pauseOnOutsideViewport&&(this.pauseOnOutsideViewport=t.pauseOnOutsideViewport),void 0!==t.zLayers&&(this.zLayers=t.zLayers),this.background.load(t.background);const o=t.fullScreen;(0,h.jn)(o)?this.fullScreen.enable=o:this.fullScreen.load(o),this.backgroundMask.load(t.backgroundMask),this.interactivity.load(t.interactivity),t.manualParticles&&(this.manualParticles=t.manualParticles.map((t=>{const e=new l.h;return e.load(t),e}))),this.particles.load(t.particles),this.style=(0,s.ZB)(this.style,t.style),this._engine.loadOptions(this,t),void 0!==t.smooth&&(this.smooth=t.smooth);const n=this._engine.interactors.get(this._container);if(n)for(const e of n)e.loadOptions&&e.loadOptions(this,t);if(void 0!==t.responsive)for(const e of t.responsive){const t=new c.E;t.load(e),this.responsive.push(t)}if(this.responsive.sort(((t,e)=>t.maxWidth-e.maxWidth)),void 0!==t.themes)for(const e of t.themes){const t=this.themes.find((t=>t.name===e.name));if(t)t.load(e);else{const t=new d.Q;t.load(e),this.themes.push(t)}}this.defaultThemes.dark=this._findDefaultTheme("dark")?.name,this.defaultThemes.light=this._findDefaultTheme("light")?.name}setResponsive(t,e,i){this.load(i);const s=this.responsive.find((i=>"screen"===i.mode&&screen?i.maxWidth>screen.availWidth:i.maxWidth*e>t));return this.load(s?.options),s?.maxWidth}setTheme(t){if(t){const e=this.themes.find((e=>e.name===t));e&&this.load(e.options)}else{const t=(0,s.HY)("(prefers-color-scheme: dark)"),e=t&&t.matches,i=this._findDefaultTheme(e?"dark":"light");i&&this.load(i.options)}}}},3312:(t,e,i)=>{i.d(e,{O:()=>o});var s=i(3853);class o{constructor(){this.value=""}static create(t,e){const i=new o;return i.load(t),void 0!==e&&((0,s.HD)(e)||(0,s.kJ)(e)?i.load({value:e}):i.load(e)),i}load(t){void 0!==t?.value&&(this.value=t.value)}}},1357:(t,e,i)=>{i.d(e,{b:()=>o});var s=i(9141);class o{constructor(){this.horizontal=new s.u,this.vertical=new s.u}load(t){t&&(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}},9141:(t,e,i)=>{i.d(e,{u:()=>o});var s=i(9569);class o extends s.SW{constructor(){super(),this.value=1}}},2631:(t,e,i)=>{i.d(e,{y:()=>r});var s=i(5447),o=i(3964),n=i(1357),a=i(2358);class r{constructor(){this.absorb=new s.h,this.bounce=new n.b,this.enable=!1,this.maxSpeed=50,this.mode="bounce",this.overlap=new o.t}load(t){t&&(this.absorb.load(t.absorb),this.bounce.load(t.bounce),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.maxSpeed&&(this.maxSpeed=(0,a.Cs)(t.maxSpeed)),void 0!==t.mode&&(this.mode=t.mode),this.overlap.load(t.overlap))}}},5447:(t,e,i)=>{i.d(e,{h:()=>s});class s{constructor(){this.speed=2}load(t){t&&void 0!==t.speed&&(this.speed=t.speed)}}},3964:(t,e,i)=>{i.d(e,{t:()=>s});class s{constructor(){this.enable=!0,this.retries=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.retries&&(this.retries=t.retries))}}},8097:(t,e,i)=>{i.d(e,{A:()=>v});var s=i(3853),o=i(7056),n=i(4169),a=i(7897),r=i(3843),l=i(457),c=i(8481),d=i(3534),h=i(7805),u=i(2358);class v{constructor(){this.angle=new o.k,this.attract=new n.k,this.center=new a.a,this.decay=0,this.distance={},this.direction="none",this.drift=0,this.enable=!1,this.gravity=new r.S,this.path=new l.C,this.outModes=new d.u,this.random=!1,this.size=!1,this.speed=2,this.spin=new h.y,this.straight=!1,this.trail=new c.S,this.vibrate=!1,this.warp=!1}load(t){if(!t)return;this.angle.load((0,s.hj)(t.angle)?{value:t.angle}:t.angle),this.attract.load(t.attract),this.center.load(t.center),void 0!==t.decay&&(this.decay=(0,u.Cs)(t.decay)),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance=(0,s.hj)(t.distance)?{horizontal:t.distance,vertical:t.distance}:{...t.distance}),void 0!==t.drift&&(this.drift=(0,u.Cs)(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const e=t.outModes;void 0!==e&&((0,s.Kn)(e)?this.outModes.load(e):this.outModes.load({default:e})),this.path.load(t.path),void 0!==t.random&&(this.random=t.random),void 0!==t.size&&(this.size=t.size),void 0!==t.speed&&(this.speed=(0,u.Cs)(t.speed)),this.spin.load(t.spin),void 0!==t.straight&&(this.straight=t.straight),this.trail.load(t.trail),void 0!==t.vibrate&&(this.vibrate=t.vibrate),void 0!==t.warp&&(this.warp=t.warp)}}},7056:(t,e,i)=>{i.d(e,{k:()=>o});var s=i(2358);class o{constructor(){this.offset=0,this.value=90}load(t){t&&(void 0!==t.offset&&(this.offset=(0,s.Cs)(t.offset)),void 0!==t.value&&(this.value=(0,s.Cs)(t.value)))}}},4169:(t,e,i)=>{i.d(e,{k:()=>o});var s=i(2358);class o{constructor(){this.distance=200,this.enable=!1,this.rotate={x:3e3,y:3e3}}load(t){if(t&&(void 0!==t.distance&&(this.distance=(0,s.Cs)(t.distance)),void 0!==t.enable&&(this.enable=t.enable),t.rotate)){const e=t.rotate.x;void 0!==e&&(this.rotate.x=e);const i=t.rotate.y;void 0!==i&&(this.rotate.y=i)}}}},7897:(t,e,i)=>{i.d(e,{a:()=>s});class s{constructor(){this.x=50,this.y=50,this.mode="percent",this.radius=0}load(t){t&&(void 0!==t.x&&(this.x=t.x),void 0!==t.y&&(this.y=t.y),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.radius&&(this.radius=t.radius))}}},3843:(t,e,i)=>{i.d(e,{S:()=>o});var s=i(2358);class o{constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=(0,s.Cs)(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=(0,s.Cs)(t.maxSpeed)))}}},8481:(t,e,i)=>{i.d(e,{S:()=>n});var s=i(3312);class o{load(t){t&&(void 0!==t.color&&(this.color=s.O.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image))}}class n{constructor(){this.enable=!1,this.length=10,this.fill=new o}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.fill&&this.fill.load(t.fill),void 0!==t.length&&(this.length=t.length))}}},3534:(t,e,i)=>{i.d(e,{u:()=>s});class s{constructor(){this.default="out"}load(t){t&&(void 0!==t.default&&(this.default=t.default),this.bottom=t.bottom??t.default,this.left=t.left??t.default,this.right=t.right??t.default,this.top=t.top??t.default)}}},457:(t,e,i)=>{i.d(e,{C:()=>n});var s=i(9569),o=i(1271);class n{constructor(){this.clamp=!0,this.delay=new s.SW,this.enable=!1,this.options={}}load(t){t&&(void 0!==t.clamp&&(this.clamp=t.clamp),this.delay.load(t.delay),void 0!==t.enable&&(this.enable=t.enable),this.generator=t.generator,t.options&&(this.options=(0,o.ZB)(this.options,t.options)))}}},7805:(t,e,i)=>{i.d(e,{y:()=>n});var s=i(1271),o=i(2358);class n{constructor(){this.acceleration=0,this.enable=!1}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=(0,o.Cs)(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),t.position&&(this.position=(0,s.ZB)({},t.position)))}}},5574:(t,e,i)=>{i.d(e,{l:()=>s});class s{constructor(){this.enable=!1,this.width=1920,this.height=1080}load(t){if(!t)return;void 0!==t.enable&&(this.enable=t.enable);const e=t.width;void 0!==e&&(this.width=e);const i=t.height;void 0!==i&&(this.height=i)}}},9262:(t,e,i)=>{i.d(e,{H:()=>n});var s=i(5574),o=i(8760);class n{constructor(){this.density=new s.l,this.limit=new o.W,this.value=0}load(t){t&&(this.density.load(t.density),this.limit.load(t.limit),void 0!==t.value&&(this.value=t.value))}}},8760:(t,e,i)=>{i.d(e,{W:()=>s});class s{constructor(){this.mode="delete",this.value=0}load(t){t&&(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}},5555:(t,e,i)=>{i.d(e,{D:()=>n});var s=i(1174),o=i(9569);class n extends o.md{constructor(){super(),this.animation=new s.O,this.value=1}load(t){if(!t)return;super.load(t);const e=t.animation;void 0!==e&&this.animation.load(e)}}},1174:(t,e,i)=>{i.d(e,{O:()=>o});var s=i(8152);class o extends s.B{constructor(){super(),this.destroy="none",this.speed=2}load(t){super.load(t),t&&void 0!==t.destroy&&(this.destroy=t.destroy)}}},9115:(t,e,i)=>{i.d(e,{B:()=>m});var s=i(1271),o=i(1470),n=i(2631);class a{constructor(){this.close=!0,this.fill=!0,this.options={},this.type=[]}load(t){if(!t)return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=(0,s.ZB)(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.fill&&(this.fill=t.fill),void 0!==t.type&&(this.type=t.type)}}var r=i(8097),l=i(5555),c=i(1357),d=i(9262),h=i(2467),u=i(578),v=i(1293),p=i(4962),f=i(6151);class m{constructor(t,e){this._engine=t,this._container=e,this.bounce=new c.b,this.collisions=new n.y,this.color=new o.R,this.color.value="#fff",this.effect=new a,this.groups={},this.move=new r.A,this.number=new d.H,this.opacity=new l.D,this.reduceDuplicates=!1,this.shadow=new h.j,this.shape=new u.b,this.size=new v.$,this.stroke=new p.m,this.zIndex=new f.K}load(t){if(!t)return;if(void 0!==t.groups)for(const e of Object.keys(t.groups)){if(!Object.hasOwn(t.groups,e))continue;const i=t.groups[e];void 0!==i&&(this.groups[e]=(0,s.ZB)(this.groups[e]??{},i))}void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.bounce.load(t.bounce),this.color.load(o.R.create(this.color,t.color)),this.effect.load(t.effect),this.move.load(t.move),this.number.load(t.number),this.opacity.load(t.opacity),this.shape.load(t.shape),this.size.load(t.size),this.shadow.load(t.shadow),this.zIndex.load(t.zIndex),this.collisions.load(t.collisions),void 0!==t.interactivity&&(this.interactivity=(0,s.ZB)({},t.interactivity));const e=t.stroke;if(e&&(this.stroke=(0,s.KH)(e,(t=>{const e=new p.m;return e.load(t),e}))),this._container){const e=this._engine.updaters.get(this._container);if(e)for(const i of e)i.loadOptions&&i.loadOptions(this,t);const i=this._engine.interactors.get(this._container);if(i)for(const e of i)e.loadParticlesOptions&&e.loadParticlesOptions(this,t)}}}},2467:(t,e,i)=>{i.d(e,{j:()=>o});var s=i(3312);class o{constructor(){this.blur=0,this.color=new s.O,this.enable=!1,this.offset={x:0,y:0},this.color.value="#000"}load(t){t&&(void 0!==t.blur&&(this.blur=t.blur),this.color=s.O.create(this.color,t.color),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(void 0!==t.offset.x&&(this.offset.x=t.offset.x),void 0!==t.offset.y&&(this.offset.y=t.offset.y)))}}},578:(t,e,i)=>{i.d(e,{b:()=>o});var s=i(1271);class o{constructor(){this.close=!0,this.fill=!0,this.options={},this.type="circle"}load(t){if(!t)return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=(0,s.ZB)(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.fill&&(this.fill=t.fill),void 0!==t.type&&(this.type=t.type)}}},1293:(t,e,i)=>{i.d(e,{$:()=>n});var s=i(9569),o=i(4376);class n extends s.md{constructor(){super(),this.animation=new o.a,this.value=3}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&this.animation.load(e)}}},4376:(t,e,i)=>{i.d(e,{a:()=>o});var s=i(8152);class o extends s.B{constructor(){super(),this.destroy="none",this.speed=5}load(t){super.load(t),t&&void 0!==t.destroy&&(this.destroy=t.destroy)}}},4962:(t,e,i)=>{i.d(e,{m:()=>n});var s=i(1470),o=i(2358);class n{constructor(){this.width=0}load(t){t&&(void 0!==t.color&&(this.color=s.R.create(this.color,t.color)),void 0!==t.width&&(this.width=(0,o.Cs)(t.width)),void 0!==t.opacity&&(this.opacity=(0,o.Cs)(t.opacity)))}}},6151:(t,e,i)=>{i.d(e,{K:()=>o});var s=i(9569);class o extends s.SW{constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),t&&(void 0!==t.opacityRate&&(this.opacityRate=t.opacityRate),void 0!==t.sizeRate&&(this.sizeRate=t.sizeRate),void 0!==t.velocityRate&&(this.velocityRate=t.velocityRate))}}},3442:(t,e,i)=>{i.d(e,{E:()=>o});var s=i(1271);class o{constructor(){this.maxWidth=1/0,this.options={},this.mode="canvas"}load(t){t&&(void 0!==t.maxWidth&&(this.maxWidth=t.maxWidth),void 0!==t.mode&&("screen"===t.mode?this.mode="screen":this.mode="canvas"),void 0!==t.options&&(this.options=(0,s.ZB)({},t.options)))}}},9556:(t,e,i)=>{i.d(e,{Q:()=>n});var s=i(5295),o=i(1271);class n{constructor(){this.name="",this.default=new s.C}load(t){t&&(void 0!==t.name&&(this.name=t.name),this.default.load(t.default),void 0!==t.options&&(this.options=(0,o.ZB)({},t.options)))}}},5295:(t,e,i)=>{i.d(e,{C:()=>s});class s{constructor(){this.auto=!1,this.mode="any",this.value=!1}load(t){t&&(void 0!==t.auto&&(this.auto=t.auto),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}},9569:(t,e,i)=>{i.d(e,{I9:()=>a,SW:()=>n,md:()=>r});var s=i(8152),o=i(2358);class n{constructor(){this.value=0}load(t){t&&void 0!==t.value&&(this.value=(0,o.Cs)(t.value))}}class a extends n{constructor(){super(),this.animation=new s.P}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&this.animation.load(e)}}class r extends a{constructor(){super(),this.animation=new s.B}load(t){super.load(t)}}},4150:(t,e,i)=>{i.d(e,{$F:()=>p,C3:()=>r,Ch:()=>h,Dd:()=>u,PL:()=>f,TQ:()=>a,ZH:()=>l,Zw:()=>v,lV:()=>d,pS:()=>n,zv:()=>c});var s=i(5063);const o={x:0,y:0};function n(t,e,i){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.closePath()}function a(t,e,i){t.fillStyle=i??"rgba(0,0,0,0)",t.fillRect(o.x,o.y,e.width,e.height)}function r(t,e,i,s){i&&(t.globalAlpha=s,t.drawImage(i,o.x,o.y,e.width,e.height),t.globalAlpha=1)}function l(t,e){t.clearRect(o.x,o.y,e.width,e.height)}async function c(t){const{container:e,context:i,particle:o,delta:n,colorStyles:a,backgroundMask:r,composite:l,radius:c,opacity:v,shadow:p,transform:f}=t,m=o.getPosition(),y=o.rotation+(o.pathRotation?o.velocity.angle:0),g=Math.sin(y),b=Math.cos(y),w={a:b*(f.a??1),b:g*(f.b??1),c:-g*(f.c??1),d:b*(f.d??1)};i.setTransform(w.a,w.b,w.c,w.d,m.x,m.y),r&&(i.globalCompositeOperation=l);const x=o.shadowColor;p.enable&&x&&(i.shadowBlur=p.blur,i.shadowColor=(0,s.iz)(x),i.shadowOffsetX=p.offset.x,i.shadowOffsetY=p.offset.y),a.fill&&(i.fillStyle=a.fill);const C=o.strokeWidth??0;i.lineWidth=C,a.stroke&&(i.strokeStyle=a.stroke);const M={container:e,context:i,particle:o,radius:c,opacity:v,delta:n,transformData:w,strokeWidth:C};await h(M),await u(M),await d(M),i.globalCompositeOperation="source-over",i.resetTransform()}async function d(t){const{container:e,context:i,particle:s,radius:o,opacity:n,delta:a,transformData:r}=t;if(!s.effect)return;const l=e.effectDrawers.get(s.effect);l&&await l.draw({context:i,particle:s,radius:o,opacity:n,delta:a,pixelRatio:e.retina.pixelRatio,transformData:{...r}})}async function h(t){const{container:e,context:i,particle:s,radius:o,opacity:n,delta:a,strokeWidth:r,transformData:l}=t;if(!s.shape)return;const c=e.shapeDrawers.get(s.shape);c&&(i.beginPath(),await c.draw({context:i,particle:s,radius:o,opacity:n,delta:a,pixelRatio:e.retina.pixelRatio,transformData:{...l}}),s.shapeClose&&i.closePath(),r>0&&i.stroke(),s.shapeFill&&i.fill())}async function u(t){const{container:e,context:i,particle:s,radius:o,opacity:n,delta:a,transformData:r}=t;if(!s.shape)return;const l=e.shapeDrawers.get(s.shape);l?.afterDraw&&await l.afterDraw({context:i,particle:s,radius:o,opacity:n,delta:a,pixelRatio:e.retina.pixelRatio,transformData:{...r}})}async function v(t,e,i){e.draw&&await e.draw(t,i)}async function p(t,e,i,s){e.drawParticle&&await e.drawParticle(t,i,s)}function f(t,e,i){return{h:t.h,s:t.s,l:t.l+("darken"===e?-1:1)*i}}},5063:(t,e,i)=>{i.d(e,{BE:()=>S,DS:()=>g,Dt:()=>P,J9:()=>x,PB:()=>E,VI:()=>d,Y6:()=>w,ZC:()=>D,_g:()=>p,bS:()=>R,gE:()=>y,gW:()=>k,iz:()=>C,lC:()=>m,lN:()=>f,oc:()=>z,sS:()=>v,tX:()=>u,ve:()=>b,vz:()=>M});var s=i(2358),o=i(3853),n=i(6830),a=i(1271);const r="random",l="mid",c=new Map;function d(t){c.set(t.key,t)}function h(t){for(const[,e]of c)if(t.startsWith(e.stringPrefix))return e.parseString(t);const e=t.replace(/^#?([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,((t,e,i,s,o)=>e+e+i+i+s+s+(void 0!==o?o+o:""))),i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i.exec(e);return i?{a:void 0!==i[4]?parseInt(i[4],16)/255:1,b:parseInt(i[3],16),g:parseInt(i[2],16),r:parseInt(i[1],16)}:void 0}function u(t,e,i=!0){if(!t)return;const s=(0,o.HD)(t)?{value:t}:t;if((0,o.HD)(s.value))return v(s.value,e,i);if((0,o.kJ)(s.value))return u({value:(0,a.c8)(s.value,e,i)});for(const[,t]of c){const e=t.handleRangeColor(s);if(e)return e}}function v(t,e,i=!0){if(!t)return;const s=(0,o.HD)(t)?{value:t}:t;if((0,o.HD)(s.value))return s.value===r?x():g(s.value);if((0,o.kJ)(s.value))return v({value:(0,a.c8)(s.value,e,i)});for(const[,t]of c){const e=t.handleColor(s);if(e)return e}}function p(t,e,i=!0){const s=v(t,e,i);return s?m(s):void 0}function f(t,e,i=!0){const s=u(t,e,i);return s?m(s):void 0}function m(t){const e=t.r/255,i=t.g/255,s=t.b/255,o=Math.max(e,i,s),n=Math.min(e,i,s),a={h:0,l:.5*(o+n),s:0};return o!==n&&(a.s=a.l<.5?(o-n)/(o+n):(o-n)/(2-o-n),a.h=e===o?(i-s)/(o-n):a.h=i===o?2+(s-e)/(o-n):4+(e-i)/(o-n)),a.l*=100,a.s*=100,a.h*=60,a.h<0&&(a.h+=360),a.h>=360&&(a.h-=360),a}function y(t){return h(t)?.a}function g(t){return h(t)}function b(t){const e=360,i=(t.h%e+e)%e,s=Math.max(0,Math.min(100,t.s)),o=i/e,n=s/100,a=Math.max(0,Math.min(100,t.l))/100,r=255;if(0===s){const t=Math.round(a*r);return{r:t,g:t,b:t}}const l=(t,e,i)=>{if(i<0&&i++,i>1&&i--,6*i<1)return t+6*(e-t)*i;if(2*i<1)return e;if(3*i<2){return t+(e-t)*(2/3-i)*6}return t},c=a<.5?a*(1+n):a+n-a*n,d=2*a-c,h=1/3,u=Math.min(r,r*l(d,c,o+h)),v=Math.min(r,r*l(d,c,o)),p=Math.min(r,r*l(d,c,o-h));return{r:Math.round(u),g:Math.round(v),b:Math.round(p)}}function w(t){const e=b(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function x(t){const e=t??0;return{b:Math.floor((0,s.vd)((0,s.Cs)(e,256))),g:Math.floor((0,s.vd)((0,s.Cs)(e,256))),r:Math.floor((0,s.vd)((0,s.Cs)(e,256)))}}function C(t,e){return`rgba(${t.r}, ${t.g}, ${t.b}, ${e??1})`}function M(t,e){return`hsla(${t.h}, ${t.s}%, ${t.l}%, ${e??1})`}function z(t,e,i,o){let n=t,a=e;return void 0===n.r&&(n=b(t)),void 0===a.r&&(a=b(e)),{b:(0,s.CD)(n.b,a.b,i,o),g:(0,s.CD)(n.g,a.g,i,o),r:(0,s.CD)(n.r,a.r,i,o)}}function S(t,e,i){if(i===r)return x();if(i!==l)return i;{const i=t.getFillColor()??t.getStrokeColor(),s=e?.getFillColor()??e?.getStrokeColor();if(i&&s&&e)return z(i,s,t.getRadius(),e.getRadius());{const t=i??s;if(t)return b(t)}}}function P(t,e,i){const s=(0,o.HD)(t)?t:t.value;return s===r?i?u({value:s}):e?r:l:s===l?l:u({value:s})}function k(t){return void 0!==t?{h:t.h.value,s:t.s.value,l:t.l.value}:void 0}function R(t,e,i){const s={h:{enable:!1,value:t.h},s:{enable:!1,value:t.s},l:{enable:!1,value:t.l}};return e&&(O(s.h,e.h,i),O(s.s,e.s,i),O(s.l,e.l,i)),s}function O(t,e,i){t.enable=e.enable;t.enable?(t.velocity=(0,s.Gu)(e.speed)/n.tZ*i,t.decay=1-(0,s.Gu)(e.decay),t.status="increasing",t.loops=0,t.maxLoops=(0,s.Gu)(e.count),t.time=0,t.delayTime=(0,s.Gu)(e.delay)*n.X5,e.sync||(t.velocity*=(0,s.sZ)(),t.value*=(0,s.sZ)()),t.initialValue=t.value,t.offset=(0,s.Cs)(e.offset)):t.velocity=0}function D(t,e,i,o){if(!t||!t.enable||(t.maxLoops??0)>0&&(t.loops??0)>(t.maxLoops??0))return;if(t.time||(t.time=0),(t.delayTime??0)>0&&t.time<(t.delayTime??0)&&(t.time+=o.value),(t.delayTime??0)>0&&t.time<(t.delayTime??0))return;const n=t.offset?(0,s.vd)(t.offset):0,a=(t.velocity??0)*o.factor+3.6*n,r=t.decay??1,l=(0,s.KI)(e),c=(0,s.Uv)(e);if(i&&"increasing"!==t.status){t.value-=a;const e=0;t.value<e&&(t.loops||(t.loops=0),t.loops++,t.status="increasing")}else t.value+=a,t.value>l&&(t.loops||(t.loops=0),t.loops++,i?t.status="decreasing":t.value-=l);t.velocity&&1!==r&&(t.velocity*=r),t.value=(0,s.uZ)(t.value,c,l)}function E(t,e){if(!t)return;const{h:i,s,l:o}=t,n={min:0,max:100},a={min:0,max:100};i&&D(i,{min:0,max:360},!1,e),s&&D(s,n,!0,e),o&&D(o,a,!0,e)}},2358:(t,e,i)=>{i.d(e,{BV:()=>E,CD:()=>p,Cs:()=>b,Gk:()=>M,Gu:()=>m,Gz:()=>R,Id:()=>C,KD:()=>D,KI:()=>g,Ry:()=>P,Sp:()=>x,Uv:()=>y,_X:()=>d,bx:()=>c,hA:()=>S,lQ:()=>z,mC:()=>O,oW:()=>w,p:()=>k,sR:()=>h,sZ:()=>u,uZ:()=>v,vd:()=>f});var s=i(6888),o=i(3853),n=i(6830);let a=Math.random;const r=new Map,l=2*Math.PI;function c(t,e){r.get(t)||r.set(t,e)}function d(t){return r.get(t)??(t=>t)}function h(t=Math.random){a=t}function u(){return v(a(),0,1-Number.EPSILON)}function v(t,e,i){return Math.min(Math.max(t,e),i)}function p(t,e,i,s){return Math.floor((t*i+e*s)/(i+s))}function f(t){const e=g(t);let i=y(t);return e===i&&(i=0),u()*(e-i)+i}function m(t){return(0,o.hj)(t)?t:f(t)}function y(t){return(0,o.hj)(t)?t:t.min}function g(t){return(0,o.hj)(t)?t:t.max}function b(t,e){if(t===e||void 0===e&&(0,o.hj)(t))return t;const i=y(t),s=g(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(s,e)}:b(i,s)}function w(t,e){const i=t.x-e.x,s=t.y-e.y;return{dx:i,dy:s,distance:Math.sqrt(i**2+s**2)}}function x(t,e){return w(t,e).distance}function C(t){return t*Math.PI/180}function M(t,e,i){if((0,o.hj)(t))return C(t);const s=.25;switch(t){case"top":return.5*-Math.PI;case"top-right":return-Math.PI*s;case"right":return 0;case"bottom-right":return Math.PI*s;case"bottom":return.5*Math.PI;case"bottom-left":return.75*Math.PI;case"left":return Math.PI;case"top-left":return.75*-Math.PI;case"inside":return Math.atan2(i.y-e.y,i.x-e.x);case"outside":return Math.atan2(e.y-i.y,e.x-i.x);default:return u()*l}}function z(t){const e=s.O.origin;return e.length=1,e.angle=t,e}function S(t,e,i,o){return s.O.create(t.x*(i-o)/(i+o)+2*e.x*o/(i+o),t.y)}function P(t){return void 0!==t.position?.x&&void 0!==t.position.y?{x:t.position.x*t.size.width/n.tZ,y:t.position.y*t.size.height/n.tZ}:void 0}function k(t){return{x:(t.position?.x??u()*n.tZ)*t.size.width/n.tZ,y:(t.position?.y??u()*n.tZ)*t.size.height/n.tZ}}function R(t){const e={x:void 0!==t.position?.x?m(t.position.x):void 0,y:void 0!==t.position?.y?m(t.position.y):void 0};return k({size:t.size,position:e})}function O(t){return{x:t.position?.x??u()*t.size.width,y:t.position?.y??u()*t.size.height}}function D(t){const e={x:void 0!==t.position?.x?m(t.position.x):void 0,y:void 0!==t.position?.y?m(t.position.y):void 0};return O({size:t.size,position:e})}function E(t){return t?t.endsWith("%")?parseFloat(t)/n.tZ:parseFloat(t):1}},8853:(t,e,i)=>{i.d(e,{h:()=>o,x:()=>n});var s=i(9115);function o(t,...e){for(const i of e)t.load(i)}function n(t,e,...i){const n=new s.B(t,e);return o(n,...i),n}},3853:(t,e,i)=>{function s(t){return"boolean"==typeof t}function o(t){return"string"==typeof t}function n(t){return"number"==typeof t}function a(t){return"function"==typeof t}function r(t){return"object"==typeof t&&null!==t}function l(t){return Array.isArray(t)}i.d(e,{HD:()=>o,Kn:()=>r,hj:()=>n,jn:()=>s,kJ:()=>l,mf:()=>a})},1271:(t,e,i)=>{i.d(e,{Ac:()=>w,Cr:()=>W,EK:()=>l,Gt:()=>P,HY:()=>v,KH:()=>E,Kr:()=>h,M_:()=>C,NM:()=>p,Rs:()=>_,V0:()=>B,XD:()=>S,ZB:()=>M,ap:()=>T,bt:()=>Z,c8:()=>b,dB:()=>m,dU:()=>g,dp:()=>D,gy:()=>R,iC:()=>k,jl:()=>c,kR:()=>O,lL:()=>u,mx:()=>y,wA:()=>A,wm:()=>z,xq:()=>x,yf:()=>f});var s=i(2358),o=i(6830),n=i(3853),a=i(6888);const r={debug:console.debug,error:console.error,info:console.info,log:console.log,verbose:console.log,warning:console.warn};function l(t){r.debug=t.debug||r.debug,r.error=t.error||r.error,r.info=t.info||r.info,r.log=t.log||r.log,r.verbose=t.verbose||r.verbose,r.warning=t.warning||r.warning}function c(){return r}function d(t){const e={bounced:!1},{pSide:i,pOtherSide:s,rectSide:o,rectOtherSide:n,velocity:a,factor:r}=t;return s.min<n.min||s.min>n.max||s.max<n.min||s.max>n.max||(i.max>=o.min&&i.max<=.5*(o.max+o.min)&&a>0||i.min<=o.max&&i.min>.5*(o.max+o.min)&&a<0)&&(e.velocity=a*-r,e.bounced=!0),e}function h(){return"undefined"==typeof window||!window||void 0===window.document||!window.document}function u(){return!h()&&"undefined"!=typeof matchMedia}function v(t){if(u())return matchMedia(t)}function p(t){if(!h()&&"undefined"!=typeof IntersectionObserver)return new IntersectionObserver(t)}function f(t){if(!h()&&"undefined"!=typeof MutationObserver)return new MutationObserver(t)}function m(t,e){return t===e||(0,n.kJ)(e)&&e.indexOf(t)>-1}async function y(t,e){try{await document.fonts.load(`${e??"400"} 36px '${t??"Verdana"}'`)}catch{}}function g(t){return Math.floor((0,s.sZ)()*t.length)}function b(t,e,i=!0){return t[void 0!==e&&i?e%t.length:g(t)]}function w(t,e,i,s,o){return x(C(t,s??0),e,i,o)}function x(t,e,i,s){let o=!0;return s&&"bottom"!==s||(o=t.top<e.height+i.x),!o||s&&"left"!==s||(o=t.right>i.x),!o||s&&"right"!==s||(o=t.left<e.width+i.y),!o||s&&"top"!==s||(o=t.bottom>i.y),o}function C(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function M(t,...e){for(const i of e){if(null==i)continue;if(!(0,n.Kn)(i)){t=i;continue}const e=Array.isArray(i);!e||!(0,n.Kn)(t)&&t&&Array.isArray(t)?e||!(0,n.Kn)(t)&&t&&!Array.isArray(t)||(t={}):t=[];for(const e in i){if("__proto__"===e)continue;const s=i[e],o=t;o[e]=(0,n.Kn)(s)&&Array.isArray(s)?s.map((t=>M(o[e],t))):M(o[e],s)}}return t}function z(t,e){return!!_(e,(e=>e.enable&&m(t,e.mode)))}function S(t,e,i){E(e,(e=>{const s=e.mode;e.enable&&m(t,s)&&P(e,i)}))}function P(t,e){E(t.selectors,(i=>{e(i,t)}))}function k(t,e){if(e&&t)return _(t,(t=>function(t,e){const i=E(e,(e=>t.matches(e)));return(0,n.kJ)(i)?i.some((t=>t)):i}(e,t.selectors)))}function R(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:a.O.create((0,s.Gu)(t.options.bounce.horizontal.value),(0,s.Gu)(t.options.bounce.vertical.value))}}function O(t,e){const{x:i,y:o}=t.velocity.sub(e.velocity),[n,a]=[t.position,e.position],{dx:r,dy:l}=(0,s.oW)(a,n);if(i*r+o*l<0)return;const c=-Math.atan2(l,r),d=t.mass,h=e.mass,u=t.velocity.rotate(c),v=e.velocity.rotate(c),p=(0,s.hA)(u,v,d,h),f=(0,s.hA)(v,u,d,h),m=p.rotate(-c),y=f.rotate(-c);t.velocity.x=m.x*t.factor.x,t.velocity.y=m.y*t.factor.y,e.velocity.x=y.x*e.factor.x,e.velocity.y=y.y*e.factor.y}function D(t,e){const i=C(t.getPosition(),t.getRadius()),o=t.options.bounce,n=d({pSide:{min:i.left,max:i.right},pOtherSide:{min:i.top,max:i.bottom},rectSide:{min:e.left,max:e.right},rectOtherSide:{min:e.top,max:e.bottom},velocity:t.velocity.x,factor:(0,s.Gu)(o.horizontal.value)});n.bounced&&(void 0!==n.velocity&&(t.velocity.x=n.velocity),void 0!==n.position&&(t.position.x=n.position));const a=d({pSide:{min:i.top,max:i.bottom},pOtherSide:{min:i.left,max:i.right},rectSide:{min:e.top,max:e.bottom},rectOtherSide:{min:e.left,max:e.right},velocity:t.velocity.y,factor:(0,s.Gu)(o.vertical.value)});a.bounced&&(void 0!==a.velocity&&(t.velocity.y=a.velocity),void 0!==a.position&&(t.position.y=a.position))}function E(t,e){return(0,n.kJ)(t)?t.map(((t,i)=>e(t,i))):e(t,0)}function A(t,e,i){return(0,n.kJ)(t)?b(t,e,i):t}function _(t,e){if((0,n.kJ)(t))return t.find(((t,i)=>e(t,i)));return e(t,0)?t:void 0}function B(t,e){const i=t.value,n=t.animation,a={delayTime:(0,s.Gu)(n.delay)*o.X5,enable:n.enable,value:(0,s.Gu)(t.value)*e,max:(0,s.KI)(i)*e,min:(0,s.Uv)(i)*e,loops:0,maxLoops:(0,s.Gu)(n.count),time:0};if(n.enable){switch(a.decay=1-(0,s.Gu)(n.decay),n.mode){case"increase":a.status="increasing";break;case"decrease":a.status="decreasing";break;case"random":a.status=(0,s.sZ)()>=o.vq?"increasing":"decreasing"}const t="auto"===n.mode;switch(n.startValue){case"min":a.value=a.min,t&&(a.status="increasing");break;case"max":a.value=a.max,t&&(a.status="decreasing");break;default:a.value=(0,s.vd)(a),t&&(a.status=(0,s.sZ)()>=o.vq?"increasing":"decreasing")}}return a.initialValue=a.value,a}function I(t,e){if(!("percent"===t.mode)){const{mode:e,...i}=t;return i}return"x"in t?{x:t.x/o.tZ*e.width,y:t.y/o.tZ*e.height}:{width:t.width/o.tZ*e.width,height:t.height/o.tZ*e.height}}function Z(t,e){return I(t,e)}function T(t,e){return I(t,e)}function W(t,e,i,o,n){if(t.destroyed||!e||!e.enable||(e.maxLoops??0)>0&&(e.loops??0)>(e.maxLoops??0))return;const a=(e.velocity??0)*n.factor,r=e.min,l=e.max,c=e.decay??1;if(e.time||(e.time=0),(e.delayTime??0)>0&&e.time<(e.delayTime??0)&&(e.time+=n.value),!((e.delayTime??0)>0&&e.time<(e.delayTime??0))){switch(e.status){case"increasing":e.value>=l?(i?e.status="decreasing":e.value-=l,e.loops||(e.loops=0),e.loops++):e.value+=a;break;case"decreasing":e.value<=r?(i?e.status="increasing":e.value+=l,e.loops||(e.loops=0),e.loops++):e.value-=a}e.velocity&&1!==c&&(e.velocity*=c),function(t,e,i,s,o){switch(e){case"max":i>=o&&t.destroy();break;case"min":i<=s&&t.destroy()}}(t,o,e.value,r,l),t.destroyed||(e.value=(0,s.uZ)(e.value,r,l))}}},3624:(t,e,i)=>{i.d(e,{RC:()=>y.R,Pp:()=>g.P,I9:()=>ht.I9,Aq:()=>b.A,g5:()=>w.g,F0:()=>x.F,W7:()=>f.W7,Cd:()=>f.Cd,Rd:()=>S.R,yW:()=>W.y,hK:()=>H.h,tm:()=>L.t,yQ:()=>C.y,Mo:()=>P.M,zW:()=>k.z,L8:()=>u,IT:()=>M.I,zP:()=>R.z,hz:()=>z.h,BY:()=>d,o7:()=>E.o,ht:()=>_.h,nl:()=>A.n,A6:()=>F.A,kZ:()=>$.k,kS:()=>j.k,aP:()=>U.a,Sb:()=>X.S,Cl:()=>Q.C,SF:()=>Y.S,Dd:()=>it.D,OQ:()=>st.O,Ei:()=>B.E,Oz:()=>I.O,uy:()=>N.u,VS:()=>O.V,bD:()=>Z.b,uR:()=>T.u,ld:()=>et.l,$S:()=>v,Hb:()=>J.H,Wf:()=>tt.W,Bm:()=>V.B,E9:()=>p.E,Br:()=>g.B,md:()=>ht.md,Ae:()=>f.Ae,Cf:()=>D.C,Et:()=>lt.E,g1:()=>h,jX:()=>K.j,bn:()=>ot.b,$u:()=>nt.$,aA:()=>at.a,yC:()=>q.y,mP:()=>G.m,Q2:()=>ct.Q,Cm:()=>dt.C,SW:()=>ht.SW,OW:()=>m.O,UJ:()=>m.U,KN:()=>rt.K,VI:()=>c.VI,bx:()=>a.bx,PL:()=>ut.PL,xq:()=>o.xq,dU:()=>o.dU,mC:()=>a.mC,KD:()=>a.KD,Ry:()=>a.Ry,p:()=>a.p,Gz:()=>a.Gz,M_:()=>o.M_,kR:()=>o.kR,gy:()=>o.gy,uZ:()=>a.uZ,ZH:()=>ut.ZH,hA:()=>a.hA,oc:()=>c.oc,_g:()=>c._g,sS:()=>c.sS,ZB:()=>o.ZB,Id:()=>a.Id,iC:()=>o.iC,XD:()=>o.XD,lV:()=>ut.lV,pS:()=>ut.pS,zv:()=>ut.zv,$F:()=>ut.$F,Zw:()=>ut.Zw,Ch:()=>ut.Ch,m:()=>ut.Dd,gK:()=>s.gK,KH:()=>o.KH,Rs:()=>o.Rs,YU:()=>s.YU,Sp:()=>a.Sp,oW:()=>a.oW,_X:()=>a._X,bS:()=>c.bS,gW:()=>c.gW,BE:()=>c.BE,Dt:()=>c.Dt,jl:()=>o.jl,lQ:()=>a.lQ,Gk:()=>a.Gk,bt:()=>o.bt,sZ:()=>a.sZ,J9:()=>c.J9,KI:()=>a.KI,Uv:()=>a.Uv,Gu:()=>a.Gu,ap:()=>o.ap,vz:()=>c.vz,iz:()=>c.iz,vq:()=>s.vq,lL:()=>o.lL,ve:()=>c.ve,Y6:()=>c.Y6,V0:()=>o.V0,kJ:()=>pt.kJ,jn:()=>pt.jn,wm:()=>o.wm,mf:()=>pt.mf,dB:()=>o.dB,hj:()=>pt.hj,Kn:()=>pt.Kn,Ac:()=>o.Ac,Kr:()=>o.Kr,HD:()=>pt.HD,c8:()=>o.c8,wA:()=>o.wA,mx:()=>o.mx,hS:()=>vt.h,hT:()=>vt.x,X5:()=>s.X5,CD:()=>a.CD,ZL:()=>s.ZL,aM:()=>s.aM,Wt:()=>s.Wt,G1:()=>s.G1,zw:()=>s.zw,TQ:()=>ut.TQ,C3:()=>ut.C3,BV:()=>a.BV,tZ:()=>s.tZ,vd:()=>a.vd,lN:()=>c.lN,tX:()=>c.tX,dp:()=>o.dp,rR:()=>s.rR,lC:()=>c.lC,NM:()=>o.NM,HY:()=>o.HY,yf:()=>o.yf,EK:()=>o.EK,sR:()=>a.sR,Cs:()=>a.Cs,Gt:()=>o.Gt,gE:()=>c.gE,DS:()=>c.DS,VH:()=>s.VH,$o:()=>s.$o,zX:()=>s.zX,Re:()=>s.Re,S6:()=>ft,Cr:()=>o.Cr,PB:()=>c.PB,ZC:()=>c.ZC,QL:()=>s.QL});var s=i(6830),o=i(1271);class n{constructor(){this._listeners=new Map}addEventListener(t,e){this.removeEventListener(t,e);let i=this._listeners.get(t);i||(i=[],this._listeners.set(t,i)),i.push(e)}dispatchEvent(t,e){const i=this._listeners.get(t);i?.forEach((t=>t(e)))}hasEventListener(t){return!!this._listeners.get(t)}removeAllEventListeners(t){t?this._listeners.delete(t):this._listeners=new Map}removeEventListener(t,e){const i=this._listeners.get(t);if(!i)return;const s=i.length,o=i.indexOf(e);if(o<0)return;1===s?this._listeners.delete(t):i.splice(o,1)}}var a=i(2358);async function r(t,e,i,s=!1){let o=e.get(t);return o&&!s||(o=await Promise.all([...i.values()].map((e=>e(t)))),e.set(t,o)),o}class l{constructor(){this._configs=new Map,this._domArray=[],this._eventDispatcher=new n,this._initialized=!1,this.plugins=[],this._initializers={interactors:new Map,movers:new Map,updaters:new Map},this.interactors=new Map,this.movers=new Map,this.updaters=new Map,this.presets=new Map,this.effectDrawers=new Map,this.shapeDrawers=new Map,this.pathGenerators=new Map}get configs(){const t={};for(const[e,i]of this._configs)t[e]=i;return t}get version(){return"3.2.2"}addConfig(t){const e=t.key??t.name??"default";this._configs.set(e,t),this._eventDispatcher.dispatchEvent("configAdded",{data:{name:e,config:t}})}async addEffect(t,e,i=!0){(0,o.KH)(t,(t=>{this.getEffectDrawer(t)||this.effectDrawers.set(t,e)})),await this.refresh(i)}addEventListener(t,e){this._eventDispatcher.addEventListener(t,e)}async addInteractor(t,e,i=!0){this._initializers.interactors.set(t,e),await this.refresh(i)}async addMover(t,e,i=!0){this._initializers.movers.set(t,e),await this.refresh(i)}async addParticleUpdater(t,e,i=!0){this._initializers.updaters.set(t,e),await this.refresh(i)}async addPathGenerator(t,e,i=!0){this.getPathGenerator(t)||this.pathGenerators.set(t,e),await this.refresh(i)}async addPlugin(t,e=!0){this.getPlugin(t.id)||this.plugins.push(t),await this.refresh(e)}async addPreset(t,e,i=!1,s=!0){!i&&this.getPreset(t)||this.presets.set(t,e),await this.refresh(s)}async addShape(t,e,i=!0){(0,o.KH)(t,(t=>{this.getShapeDrawer(t)||this.shapeDrawers.set(t,e)})),await this.refresh(i)}clearPlugins(t){this.updaters.delete(t),this.movers.delete(t),this.interactors.delete(t)}dispatchEvent(t,e){this._eventDispatcher.dispatchEvent(t,e)}dom(){return this._domArray}domItem(t){const e=this.dom(),i=e[t];if(i&&!i.destroyed)return i;{const i=1;e.splice(t,i)}}async getAvailablePlugins(t){const e=new Map;for(const i of this.plugins)i.needsPlugin(t.actualOptions)&&e.set(i.id,await i.getPlugin(t));return e}getEffectDrawer(t){return this.effectDrawers.get(t)}async getInteractors(t,e=!1){return await r(t,this.interactors,this._initializers.interactors,e)}async getMovers(t,e=!1){return await r(t,this.movers,this._initializers.movers,e)}getPathGenerator(t){return this.pathGenerators.get(t)}getPlugin(t){return this.plugins.find((e=>e.id===t))}getPreset(t){return this.presets.get(t)}getShapeDrawer(t){return this.shapeDrawers.get(t)}getSupportedEffects(){return this.effectDrawers.keys()}getSupportedShapes(){return this.shapeDrawers.keys()}async getUpdaters(t,e=!1){return await r(t,this.updaters,this._initializers.updaters,e)}init(){this._initialized||(this._initialized=!0)}async load(t){const e=t.id??t.element?.id??`tsparticles${Math.floor(1e4*(0,a.sZ)())}`,{index:n,url:r}=t,l=r?await async function(t){const e=(0,o.wA)(t.url,t.index);if(!e)return t.fallback;const i=await fetch(e);return i.ok?await i.json():((0,o.jl)().error(`${s.gK} ${i.status} while retrieving config file`),t.fallback)}({fallback:t.options,url:r,index:n}):t.options;let c=t.element??document.getElementById(e);c||(c=document.createElement("div"),c.id=e,document.body.append(c));const d=(0,o.wA)(l,n),h=this.dom(),u=h.findIndex((t=>t.id.description===e));if(u>=0){const t=this.domItem(u);if(t&&!t.destroyed){t.destroy();const e=1;h.splice(u,e)}}let v;if("canvas"===c.tagName.toLowerCase())v=c,v.dataset[s.YU]="false";else{const t=c.getElementsByTagName("canvas");if(t.length){v=t[0],v.dataset[s.YU]="false"}else v=document.createElement("canvas"),v.dataset[s.YU]="true",c.appendChild(v)}v.style.width||(v.style.width="100%"),v.style.height||(v.style.height="100%");const{Container:p}=await i.e(720).then(i.bind(i,2720)),f=new p(this,e,d);if(u>=0){const t=0;h.splice(u,t,f)}else h.push(f);return f.canvas.loadCanvas(v),await f.start(),f}loadOptions(t,e){for(const i of this.plugins)i.loadOptions(t,e)}loadParticlesOptions(t,e,...i){const s=this.updaters.get(t);if(s)for(const t of s)t.loadOptions?.(e,...i)}async refresh(t=!0){t&&await Promise.all(this.dom().map((t=>t.refresh())))}removeEventListener(t,e){this._eventDispatcher.removeEventListener(t,e)}setOnClickHandler(t){const e=this.dom();if(!e.length)throw new Error(`${s.gK} can only set click handlers after calling tsParticles.load()`);for(const i of e)i.addClickHandler(t)}}var c=i(5063);class d{constructor(){this.key="hsl",this.stringPrefix="hsl"}handleColor(t){const e=t.value.hsl??t.value;if(void 0!==e.h&&void 0!==e.s&&void 0!==e.l)return(0,c.ve)(e)}handleRangeColor(t){const e=t.value.hsl??t.value;if(void 0!==e.h&&void 0!==e.l)return(0,c.ve)({h:(0,a.Gu)(e.h),l:(0,a.Gu)(e.l),s:(0,a.Gu)(e.s)})}parseString(t){if(!t.startsWith("hsl"))return;const e=/hsla?\(\s*(\d+)\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([\d.%]+)\s*)?\)/i.exec(t);return e?(0,c.Y6)({a:e.length>4?(0,a.BV)(e[5]):1,h:parseInt(e[1],10),l:parseInt(e[3],10),s:parseInt(e[2],10)}):void 0}}class h{constructor(){this.key="rgb",this.stringPrefix="rgb"}handleColor(t){const e=t.value.rgb??t.value;if(void 0!==e.r)return e}handleRangeColor(t){const e=t.value.rgb??t.value;if(void 0!==e.r)return{r:(0,a.Gu)(e.r),g:(0,a.Gu)(e.g),b:(0,a.Gu)(e.b)}}parseString(t){if(!t.startsWith(this.stringPrefix))return;const e=/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([\d.%]+)\s*)?\)/i.exec(t);return e?{a:e.length>4?(0,a.BV)(e[5]):1,b:parseInt(e[3],10),g:parseInt(e[2],10),r:parseInt(e[1],10)}:void 0}}class u{constructor(t){this.type="external",this.container=t}}class v{constructor(t){this.type="particles",this.container=t}}var p=i(4158),f=i(7212),m=i(6888),y=i(1470),g=i(8152),b=i(1429),w=i(9311),x=i(76),C=i(2793),M=i(8569),z=i(5992),S=i(5053),P=i(2935),k=i(1778),R=i(5701),O=i(6571),D=i(6755),E=i(8461),A=i(5542),_=i(5632),B=i(7327),I=i(3312),Z=i(1357),T=i(9141),W=i(2631),H=i(5447),L=i(3964),V=i(9115),K=i(2467),G=i(4962),j=i(4169),F=i(8097),$=i(7056),U=i(7897),X=i(3843),N=i(3534),Q=i(457),q=i(7805),Y=i(8481),J=i(9262),tt=i(8760),et=i(5574),it=i(5555),st=i(1174),ot=i(578),nt=i(1293),at=i(4376),rt=i(6151),lt=i(3442),ct=i(9556),dt=i(5295),ht=i(9569),ut=i(4150),vt=i(8853),pt=i(3853);const ft=function(){const t=new h,e=new d;(0,c.VI)(t),(0,c.VI)(e);const i=new l;return i.init(),i}();(0,o.Kr)()||(window.tsParticles=ft)}},s={};function o(t){var e=s[t];if(void 0!==e)return e.exports;var n=s[t]={exports:{}};return i[t](n,n.exports,o),n.exports}o.m=i,o.d=(t,e)=>{for(var i in e)o.o(e,i)&&!o.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},o.f={},o.e=t=>Promise.all(Object.keys(o.f).reduce(((e,i)=>(o.f[i](t,e),e)),[])),o.u=t=>t+".min.js",o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),t={},e="@tsparticles/basic:",o.l=(i,s,n,a)=>{if(t[i])t[i].push(s);else{var r,l;if(void 0!==n)for(var c=document.getElementsByTagName("script"),d=0;d<c.length;d++){var h=c[d];if(h.getAttribute("src")==i||h.getAttribute("data-webpack")==e+n){r=h;break}}r||(l=!0,(r=document.createElement("script")).charset="utf-8",r.timeout=120,o.nc&&r.setAttribute("nonce",o.nc),r.setAttribute("data-webpack",e+n),r.src=i),t[i]=[s];var u=(e,s)=>{r.onerror=r.onload=null,clearTimeout(v);var o=t[i];if(delete t[i],r.parentNode&&r.parentNode.removeChild(r),o&&o.forEach((t=>t(s))),e)return e(s)},v=setTimeout(u.bind(null,void 0,{type:"timeout",target:r}),12e4);r.onerror=u.bind(null,r.onerror),r.onload=u.bind(null,r.onload),l&&document.head.appendChild(r)}},o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{var t;o.g.importScripts&&(t=o.g.location+"");var e=o.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var i=e.getElementsByTagName("script");if(i.length)for(var s=i.length-1;s>-1&&!t;)t=i[s--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=t})(),(()=>{var t={973:0};o.f.j=(e,i)=>{var s=o.o(t,e)?t[e]:void 0;if(0!==s)if(s)i.push(s[2]);else{var n=new Promise(((i,o)=>s=t[e]=[i,o]));i.push(s[2]=n);var a=o.p+o.u(e),r=new Error;o.l(a,(i=>{if(o.o(t,e)&&(0!==(s=t[e])&&(t[e]=void 0),s)){var n=i&&("load"===i.type?"missing":i.type),a=i&&i.target&&i.target.src;r.message="Loading chunk "+e+" failed.\n("+n+": "+a+")",r.name="ChunkLoadError",r.type=n,r.request=a,s[1](r)}}),"chunk-"+e,e)}};var e=(e,i)=>{var s,n,a=i[0],r=i[1],l=i[2],c=0;if(a.some((e=>0!==t[e]))){for(s in r)o.o(r,s)&&(o.m[s]=r[s]);if(l)l(o)}for(e&&e(i);c<a.length;c++)n=a[c],o.o(t,n)&&t[n]&&t[n][0](),t[n]=0},i=this.webpackChunk_tsparticles_basic=this.webpackChunk_tsparticles_basic||[];i.forEach(e.bind(null,0)),i.push=e.bind(null,i.push.bind(i))})();var n={};return(()=>{async function t(t,e=!0){const{loadBaseMover:i}=await o.e(835).then(o.bind(o,7835)),{loadCircleShape:s}=await o.e(308).then(o.bind(o,1308)),{loadColorUpdater:n}=await o.e(196).then(o.bind(o,196)),{loadOpacityUpdater:a}=await o.e(49).then(o.bind(o,7049)),{loadOutModesUpdater:r}=await o.e(108).then(o.bind(o,7108)),{loadSizeUpdater:l}=await o.e(141).then(o.bind(o,3141));await i(t,!1),await s(t,!1),await n(t,!1),await a(t,!1),await r(t,!1),await l(t,!1),await t.refresh(e)}o.r(n),o.d(n,{AnimatableColor:()=>e.RC,AnimationOptions:()=>e.Pp,AnimationValueWithRandom:()=>e.I9,Background:()=>e.Aq,BackgroundMask:()=>e.g5,BackgroundMaskCover:()=>e.F0,BaseRange:()=>e.W7,Circle:()=>e.Cd,ClickEvent:()=>e.Rd,Collisions:()=>e.yW,CollisionsAbsorb:()=>e.hK,CollisionsOverlap:()=>e.tm,ColorAnimation:()=>e.yQ,DivEvent:()=>e.Mo,Events:()=>e.zW,ExternalInteractorBase:()=>e.L8,FullScreen:()=>e.IT,HoverEvent:()=>e.zP,HslAnimation:()=>e.hz,HslColorManager:()=>e.BY,Interactivity:()=>e.o7,ManualParticle:()=>e.ht,Modes:()=>e.nl,Move:()=>e.A6,MoveAngle:()=>e.kZ,MoveAttract:()=>e.kS,MoveCenter:()=>e.aP,MoveGravity:()=>e.Sb,MovePath:()=>e.Cl,MoveTrail:()=>e.SF,Opacity:()=>e.Dd,OpacityAnimation:()=>e.OQ,Options:()=>e.Ei,OptionsColor:()=>e.Oz,OutModes:()=>e.uy,Parallax:()=>e.VS,ParticlesBounce:()=>e.bD,ParticlesBounceFactor:()=>e.uR,ParticlesDensity:()=>e.ld,ParticlesInteractorBase:()=>e.$S,ParticlesNumber:()=>e.Hb,ParticlesNumberLimit:()=>e.Wf,ParticlesOptions:()=>e.Bm,Point:()=>e.E9,RangedAnimationOptions:()=>e.Br,RangedAnimationValueWithRandom:()=>e.md,Rectangle:()=>e.Ae,ResizeEvent:()=>e.Cf,Responsive:()=>e.Et,RgbColorManager:()=>e.g1,Shadow:()=>e.jX,Shape:()=>e.bn,Size:()=>e.$u,SizeAnimation:()=>e.aA,Spin:()=>e.yC,Stroke:()=>e.mP,Theme:()=>e.Q2,ThemeDefault:()=>e.Cm,ValueWithRandom:()=>e.SW,Vector:()=>e.OW,Vector3d:()=>e.UJ,ZIndex:()=>e.KN,addColorManager:()=>e.VI,addEasing:()=>e.bx,alterHsl:()=>e.PL,areBoundsInside:()=>e.xq,arrayRandomIndex:()=>e.dU,calcExactPositionOrRandomFromSize:()=>e.mC,calcExactPositionOrRandomFromSizeRanged:()=>e.KD,calcPositionFromSize:()=>e.Ry,calcPositionOrRandomFromSize:()=>e.p,calcPositionOrRandomFromSizeRanged:()=>e.Gz,calculateBounds:()=>e.M_,circleBounce:()=>e.kR,circleBounceDataFromParticle:()=>e.gy,clamp:()=>e.uZ,clear:()=>e.ZH,collisionVelocity:()=>e.hA,colorMix:()=>e.oc,colorToHsl:()=>e._g,colorToRgb:()=>e.sS,deepExtend:()=>e.ZB,degToRad:()=>e.Id,divMode:()=>e.iC,divModeExecute:()=>e.XD,drawEffect:()=>e.lV,drawLine:()=>e.pS,drawParticle:()=>e.zv,drawParticlePlugin:()=>e.$F,drawPlugin:()=>e.Zw,drawShape:()=>e.Ch,drawShapeAfterDraw:()=>e.m,errorPrefix:()=>e.gK,executeOnSingleOrMultiple:()=>e.KH,findItemFromSingleOrMultiple:()=>e.Rs,generatedAttribute:()=>e.YU,getDistance:()=>e.Sp,getDistances:()=>e.oW,getEasing:()=>e._X,getHslAnimationFromHsl:()=>e.bS,getHslFromAnimation:()=>e.gW,getLinkColor:()=>e.BE,getLinkRandomColor:()=>e.Dt,getLogger:()=>e.jl,getParticleBaseVelocity:()=>e.lQ,getParticleDirectionAngle:()=>e.Gk,getPosition:()=>e.bt,getRandom:()=>e.sZ,getRandomRgbColor:()=>e.J9,getRangeMax:()=>e.KI,getRangeMin:()=>e.Uv,getRangeValue:()=>e.Gu,getSize:()=>e.ap,getStyleFromHsl:()=>e.vz,getStyleFromRgb:()=>e.iz,halfRandom:()=>e.vq,hasMatchMedia:()=>e.lL,hslToRgb:()=>e.ve,hslaToRgba:()=>e.Y6,initParticleNumericAnimationValue:()=>e.V0,isArray:()=>e.kJ,isBoolean:()=>e.jn,isDivModeEnabled:()=>e.wm,isFunction:()=>e.mf,isInArray:()=>e.dB,isNumber:()=>e.hj,isObject:()=>e.Kn,isPointInside:()=>e.Ac,isSsr:()=>e.Kr,isString:()=>e.HD,itemFromArray:()=>e.c8,itemFromSingleOrMultiple:()=>e.wA,loadBasic:()=>t,loadFont:()=>e.mx,loadOptions:()=>e.hS,loadParticlesOptions:()=>e.hT,millisecondsToSeconds:()=>e.X5,mix:()=>e.CD,mouseDownEvent:()=>e.ZL,mouseLeaveEvent:()=>e.aM,mouseMoveEvent:()=>e.Wt,mouseOutEvent:()=>e.G1,mouseUpEvent:()=>e.zw,paintBase:()=>e.TQ,paintImage:()=>e.C3,parseAlpha:()=>e.BV,percentDenominator:()=>e.tZ,randomInRange:()=>e.vd,rangeColorToHsl:()=>e.lN,rangeColorToRgb:()=>e.tX,rectBounce:()=>e.dp,resizeEvent:()=>e.rR,rgbToHsl:()=>e.lC,safeIntersectionObserver:()=>e.NM,safeMatchMedia:()=>e.HY,safeMutationObserver:()=>e.yf,setLogger:()=>e.EK,setRandom:()=>e.sR,setRangeValue:()=>e.Cs,singleDivModeExecute:()=>e.Gt,stringToAlpha:()=>e.gE,stringToRgb:()=>e.DS,touchCancelEvent:()=>e.VH,touchEndEvent:()=>e.$o,touchMoveEvent:()=>e.zX,touchStartEvent:()=>e.Re,tsParticles:()=>e.S6,updateAnimation:()=>e.Cr,updateColor:()=>e.PB,updateColorValue:()=>e.ZC,visibilityChangeEvent:()=>e.QL});var e=o(3624);t(e.S6)})(),n})()));
!function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var i=e();for(var o in i)("object"==typeof exports?exports:t)[o]=i[o]}}(this,(()=>(()=>{var t,e,i={751:(t,e,i)=>{i.d(e,{Bp:()=>d,DG:()=>h,G3:()=>u,N3:()=>y,NF:()=>v,Rb:()=>l,Xu:()=>g,Z0:()=>a,a5:()=>m,dI:()=>f,eb:()=>o,ms:()=>s,nK:()=>p,s7:()=>c,sf:()=>r,vo:()=>n});const o="generated",s="pointerdown",n="pointerup",a="pointerleave",r="pointerout",l="pointermove",c="touchstart",d="touchend",h="touchmove",u="touchcancel",v="resize",p="visibilitychange",f="tsParticles - Error",m=100,y=.5,g=1e3},2284:(t,e,i)=>{i.d(e,{b:()=>o});class o{constructor(t,e){this.position=t,this.particle=e}}},694:(t,e,i)=>{i.d(e,{M_:()=>a,dg:()=>s,jl:()=>n});var o=i(2646);class s{constructor(t,e,i){this.position={x:t,y:e},this.type=i}}class n extends s{constructor(t,e,i){super(t,e,"circle"),this.radius=i}contains(t){return(0,o.Yf)(t,this.position)<=this.radius}intersects(t){const e=this.position,i=t.position,o=Math.abs(i.x-e.x),s=Math.abs(i.y-e.y),r=this.radius;if(t instanceof n||"circle"===t.type){return r+t.radius>Math.sqrt(o**2+s**2)}if(t instanceof a||"rectangle"===t.type){const e=t,{width:i,height:n}=e.size;return Math.pow(o-i,2)+Math.pow(s-n,2)<=r**2||o<=r+i&&s<=r+n||o<=i||s<=n}return!1}}class a extends s{constructor(t,e,i,o){super(t,e,"rectangle"),this.size={height:o,width:i}}contains(t){const e=this.size.width,i=this.size.height,o=this.position;return t.x>=o.x&&t.x<=o.x+e&&t.y>=o.y&&t.y<=o.y+i}intersects(t){if(t instanceof n)return t.intersects(this);const e=this.size.width,i=this.size.height,o=this.position,s=t.position,r=t instanceof a?t.size:{width:0,height:0},l=r.width,c=r.height;return s.x<o.x+e&&s.x+l>o.x&&s.y<o.y+i&&s.y+c>o.y}}},4798:(t,e,i)=>{i.d(e,{M:()=>c,p:()=>l});var o=i(751),s=i(2457);const n=0,a=0,r=0;class l{constructor(t,e,i){if(this._updateFromAngle=(t,e)=>{this.x=Math.cos(t)*e,this.y=Math.sin(t)*e},!(0,s.Et)(t)&&t){this.x=t.x,this.y=t.y;const e=t;this.z=e.z?e.z:r}else{if(void 0===t||void 0===e)throw new Error(`${o.dI} Vector3d not initialized correctly`);this.x=t,this.y=e,this.z=i??r}}static get origin(){return l.create(n,a,r)}get angle(){return Math.atan2(this.y,this.x)}set angle(t){this._updateFromAngle(t,this.length)}get length(){return Math.sqrt(this.getLengthSq())}set length(t){this._updateFromAngle(this.angle,t)}static clone(t){return l.create(t.x,t.y,t.z)}static create(t,e,i){return new l(t,e,i)}add(t){return l.create(this.x+t.x,this.y+t.y,this.z+t.z)}addTo(t){this.x+=t.x,this.y+=t.y,this.z+=t.z}copy(){return l.clone(this)}distanceTo(t){return this.sub(t).length}distanceToSq(t){return this.sub(t).getLengthSq()}div(t){return l.create(this.x/t,this.y/t,this.z/t)}divTo(t){this.x/=t,this.y/=t,this.z/=t}getLengthSq(){return this.x**2+this.y**2}mult(t){return l.create(this.x*t,this.y*t,this.z*t)}multTo(t){this.x*=t,this.y*=t,this.z*=t}normalize(){const t=this.length;0!=t&&this.multTo(1/t)}rotate(t){return l.create(this.x*Math.cos(t)-this.y*Math.sin(t),this.x*Math.sin(t)+this.y*Math.cos(t),r)}setTo(t){this.x=t.x,this.y=t.y;const e=t;this.z=e.z?e.z:r}sub(t){return l.create(this.x-t.x,this.y-t.y,this.z-t.z)}subFrom(t){this.x-=t.x,this.y-=t.y,this.z-=t.z}}class c extends l{constructor(t,e){super(t,e,r)}static get origin(){return c.create(n,a)}static clone(t){return c.create(t.x,t.y)}static create(t,e){return new c(t,e)}}},2655:(t,e,i)=>{i.d(e,{A:()=>a});var o=i(2457),s=i(1657),n=i(6719);class a extends n.O{constructor(){super(),this.animation=new s.i}static create(t,e){const i=new a;return i.load(t),void 0!==e&&((0,o.Kg)(e)||(0,o.cy)(e)?i.load({value:e}):i.load(e)),i}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&(void 0!==e.enable?this.animation.h.load(e):this.animation.load(t.animation))}}},9190:(t,e,i)=>{i.d(e,{Q:()=>n,p:()=>s});var o=i(2646);class s{constructor(){this.count=0,this.enable=!1,this.speed=1,this.decay=0,this.delay=0,this.sync=!1}load(t){t&&(void 0!==t.count&&(this.count=(0,o.DT)(t.count)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.speed&&(this.speed=(0,o.DT)(t.speed)),void 0!==t.decay&&(this.decay=(0,o.DT)(t.decay)),void 0!==t.delay&&(this.delay=(0,o.DT)(t.delay)),void 0!==t.sync&&(this.sync=t.sync))}}class n extends s{constructor(){super(),this.mode="auto",this.startValue="random"}load(t){super.load(t),t&&(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.startValue&&(this.startValue=t.startValue))}}},1897:(t,e,i)=>{i.d(e,{V:()=>s});var o=i(6719);class s{constructor(){this.color=new o.O,this.color.value="",this.image="",this.position="",this.repeat="",this.size="",this.opacity=1}load(t){t&&(void 0!==t.color&&(this.color=o.O.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.position&&(this.position=t.position),void 0!==t.repeat&&(this.repeat=t.repeat),void 0!==t.size&&(this.size=t.size),void 0!==t.opacity&&(this.opacity=t.opacity))}}},3829:(t,e,i)=>{i.d(e,{T:()=>n});var o=i(490),s=i(2457);class n{constructor(){this.composite="destination-out",this.cover=new o.y,this.enable=!1}load(t){if(t){if(void 0!==t.composite&&(this.composite=t.composite),void 0!==t.cover){const e=t.cover,i=(0,s.Kg)(t.cover)?{color:t.cover}:t.cover;this.cover.load(void 0!==e.color||void 0!==e.image?e:{color:i})}void 0!==t.enable&&(this.enable=t.enable)}}}},490:(t,e,i)=>{i.d(e,{y:()=>s});var o=i(6719);class s{constructor(){this.opacity=1}load(t){t&&(void 0!==t.color&&(this.color=o.O.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image),void 0!==t.opacity&&(this.opacity=t.opacity))}}},6865:(t,e,i)=>{i.d(e,{e:()=>n});var o=i(9190),s=i(2646);class n extends o.p{constructor(){super(),this.offset=0,this.sync=!0}load(t){super.load(t),t&&void 0!==t.offset&&(this.offset=(0,s.DT)(t.offset))}}},9943:(t,e,i)=>{i.d(e,{m:()=>o});class o{constructor(){this.enable=!0,this.zIndex=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.zIndex&&(this.zIndex=t.zIndex))}}},1657:(t,e,i)=>{i.d(e,{i:()=>s});var o=i(6865);class s{constructor(){this.h=new o.e,this.s=new o.e,this.l=new o.e}load(t){t&&(this.h.load(t.h),this.s.load(t.s),this.l.load(t.l))}}},2562:(t,e,i)=>{i.d(e,{r:()=>o});class o{constructor(){this.enable=!1,this.mode=[]}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode))}}},5907:(t,e,i)=>{i.d(e,{G:()=>o});class o{constructor(){this.selectors=[],this.enable=!1,this.mode=[],this.type="circle"}load(t){t&&(void 0!==t.selectors&&(this.selectors=t.selectors),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.type&&(this.type=t.type))}}},7023:(t,e,i)=>{i.d(e,{s:()=>l});var o=i(2562),s=i(5907),n=i(1864),a=i(3492),r=i(3393);class l{constructor(){this.onClick=new o.r,this.onDiv=new s.G,this.onHover=new n.L,this.resize=new a.z}load(t){if(!t)return;this.onClick.load(t.onClick);const e=t.onDiv;void 0!==e&&(this.onDiv=(0,r.wJ)(e,(t=>{const e=new s.G;return e.load(t),e}))),this.onHover.load(t.onHover),this.resize.load(t.resize)}}},1864:(t,e,i)=>{i.d(e,{L:()=>s});var o=i(1753);class s{constructor(){this.enable=!1,this.mode=[],this.parallax=new o.k}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.mode&&(this.mode=t.mode),this.parallax.load(t.parallax))}}},1753:(t,e,i)=>{i.d(e,{k:()=>o});class o{constructor(){this.enable=!1,this.force=2,this.smooth=10}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.force&&(this.force=t.force),void 0!==t.smooth&&(this.smooth=t.smooth))}}},3492:(t,e,i)=>{i.d(e,{z:()=>o});class o{constructor(){this.delay=.5,this.enable=!0}load(t){void 0!==t&&(void 0!==t.delay&&(this.delay=t.delay),void 0!==t.enable&&(this.enable=t.enable))}}},7287:(t,e,i)=>{i.d(e,{k:()=>n});var o=i(7023),s=i(699);class n{constructor(t,e){this.detectsOn="window",this.events=new o.s,this.modes=new s.d(t,e)}load(t){if(!t)return;const e=t.detectsOn;void 0!==e&&(this.detectsOn=e),this.events.load(t.events),this.modes.load(t.modes)}}},699:(t,e,i)=>{i.d(e,{d:()=>o});class o{constructor(t,e){this._engine=t,this._container=e}load(t){if(!t)return;if(!this._container)return;const e=this._engine.interactors.get(this._container);if(e)for(const i of e)i.loadModeOptions&&i.loadModeOptions(this,t)}}},9638:(t,e,i)=>{i.d(e,{j:()=>s});var o=i(3393);class s{load(t){t&&(t.position&&(this.position={x:t.position.x??50,y:t.position.y??50,mode:t.position.mode??"percent"}),t.options&&(this.options=(0,o.zw)({},t.options)))}}},4126:(t,e,i)=>{i.d(e,{J:()=>p});var o=i(3393),s=i(1897),n=i(3829),a=i(9943),r=i(7287),l=i(9638),c=i(376),d=i(3863),h=i(2457),u=i(8761),v=i(2646);class p{constructor(t,e){this._findDefaultTheme=t=>this.themes.find((e=>e.default.value&&e.default.mode===t))??this.themes.find((t=>t.default.value&&"any"===t.default.mode)),this._importPreset=t=>{this.load(this._engine.getPreset(t))},this._engine=t,this._container=e,this.autoPlay=!0,this.background=new s.V,this.backgroundMask=new n.T,this.clear=!0,this.defaultThemes={},this.delay=0,this.fullScreen=new a.m,this.detectRetina=!0,this.duration=0,this.fpsLimit=120,this.interactivity=new r.k(t,e),this.manualParticles=[],this.particles=(0,u.y)(this._engine,this._container),this.pauseOnBlur=!0,this.pauseOnOutsideViewport=!0,this.responsive=[],this.smooth=!1,this.style={},this.themes=[],this.zLayers=100}load(t){if(!t)return;void 0!==t.preset&&(0,o.wJ)(t.preset,(t=>this._importPreset(t))),void 0!==t.autoPlay&&(this.autoPlay=t.autoPlay),void 0!==t.clear&&(this.clear=t.clear),void 0!==t.key&&(this.key=t.key),void 0!==t.name&&(this.name=t.name),void 0!==t.delay&&(this.delay=(0,v.DT)(t.delay));const e=t.detectRetina;void 0!==e&&(this.detectRetina=e),void 0!==t.duration&&(this.duration=(0,v.DT)(t.duration));const i=t.fpsLimit;void 0!==i&&(this.fpsLimit=i),void 0!==t.pauseOnBlur&&(this.pauseOnBlur=t.pauseOnBlur),void 0!==t.pauseOnOutsideViewport&&(this.pauseOnOutsideViewport=t.pauseOnOutsideViewport),void 0!==t.zLayers&&(this.zLayers=t.zLayers),this.background.load(t.background);const s=t.fullScreen;(0,h.Lm)(s)?this.fullScreen.enable=s:this.fullScreen.load(s),this.backgroundMask.load(t.backgroundMask),this.interactivity.load(t.interactivity),t.manualParticles&&(this.manualParticles=t.manualParticles.map((t=>{const e=new l.j;return e.load(t),e}))),this.particles.load(t.particles),this.style=(0,o.zw)(this.style,t.style),this._engine.loadOptions(this,t),void 0!==t.smooth&&(this.smooth=t.smooth);const n=this._engine.interactors.get(this._container);if(n)for(const e of n)e.loadOptions&&e.loadOptions(this,t);if(void 0!==t.responsive)for(const e of t.responsive){const t=new c.F;t.load(e),this.responsive.push(t)}if(this.responsive.sort(((t,e)=>t.maxWidth-e.maxWidth)),void 0!==t.themes)for(const e of t.themes){const t=this.themes.find((t=>t.name===e.name));if(t)t.load(e);else{const t=new d.S;t.load(e),this.themes.push(t)}}this.defaultThemes.dark=this._findDefaultTheme("dark")?.name,this.defaultThemes.light=this._findDefaultTheme("light")?.name}setResponsive(t,e,i){this.load(i);const o=this.responsive.find((i=>"screen"===i.mode&&screen?i.maxWidth>screen.availWidth:i.maxWidth*e>t));return this.load(o?.options),o?.maxWidth}setTheme(t){if(t){const e=this.themes.find((e=>e.name===t));e&&this.load(e.options)}else{const t=(0,o.lV)("(prefers-color-scheme: dark)"),e=t&&t.matches,i=this._findDefaultTheme(e?"dark":"light");i&&this.load(i.options)}}}},6719:(t,e,i)=>{i.d(e,{O:()=>s});var o=i(2457);class s{constructor(){this.value=""}static create(t,e){const i=new s;return i.load(t),void 0!==e&&((0,o.Kg)(e)||(0,o.cy)(e)?i.load({value:e}):i.load(e)),i}load(t){void 0!==t?.value&&(this.value=t.value)}}},1494:(t,e,i)=>{i.d(e,{w:()=>s});var o=i(8745);class s{constructor(){this.horizontal=new o.F,this.vertical=new o.F}load(t){t&&(this.horizontal.load(t.horizontal),this.vertical.load(t.vertical))}}},8745:(t,e,i)=>{i.d(e,{F:()=>s});var o=i(2034);class s extends o.PV{constructor(){super(),this.value=1}}},4907:(t,e,i)=>{i.d(e,{c:()=>r});var o=i(8362),s=i(108),n=i(1494),a=i(2646);class r{constructor(){this.absorb=new o.N,this.bounce=new n.w,this.enable=!1,this.maxSpeed=50,this.mode="bounce",this.overlap=new s.F}load(t){t&&(this.absorb.load(t.absorb),this.bounce.load(t.bounce),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.maxSpeed&&(this.maxSpeed=(0,a.DT)(t.maxSpeed)),void 0!==t.mode&&(this.mode=t.mode),this.overlap.load(t.overlap))}}},8362:(t,e,i)=>{i.d(e,{N:()=>o});class o{constructor(){this.speed=2}load(t){t&&void 0!==t.speed&&(this.speed=t.speed)}}},108:(t,e,i)=>{i.d(e,{F:()=>o});class o{constructor(){this.enable=!0,this.retries=0}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.retries&&(this.retries=t.retries))}}},7299:(t,e,i)=>{i.d(e,{y:()=>v});var o=i(2457),s=i(2748),n=i(9326),a=i(2662),r=i(1917),l=i(4802),c=i(5271),d=i(9978),h=i(5794),u=i(2646);class v{constructor(){this.angle=new s.h,this.attract=new n.R,this.center=new a.Z,this.decay=0,this.distance={},this.direction="none",this.drift=0,this.enable=!1,this.gravity=new r.y,this.path=new l.v,this.outModes=new d.j,this.random=!1,this.size=!1,this.speed=2,this.spin=new h.t,this.straight=!1,this.trail=new c.O,this.vibrate=!1,this.warp=!1}load(t){if(!t)return;this.angle.load((0,o.Et)(t.angle)?{value:t.angle}:t.angle),this.attract.load(t.attract),this.center.load(t.center),void 0!==t.decay&&(this.decay=(0,u.DT)(t.decay)),void 0!==t.direction&&(this.direction=t.direction),void 0!==t.distance&&(this.distance=(0,o.Et)(t.distance)?{horizontal:t.distance,vertical:t.distance}:{...t.distance}),void 0!==t.drift&&(this.drift=(0,u.DT)(t.drift)),void 0!==t.enable&&(this.enable=t.enable),this.gravity.load(t.gravity);const e=t.outModes;void 0!==e&&((0,o.Gv)(e)?this.outModes.load(e):this.outModes.load({default:e})),this.path.load(t.path),void 0!==t.random&&(this.random=t.random),void 0!==t.size&&(this.size=t.size),void 0!==t.speed&&(this.speed=(0,u.DT)(t.speed)),this.spin.load(t.spin),void 0!==t.straight&&(this.straight=t.straight),this.trail.load(t.trail),void 0!==t.vibrate&&(this.vibrate=t.vibrate),void 0!==t.warp&&(this.warp=t.warp)}}},2748:(t,e,i)=>{i.d(e,{h:()=>s});var o=i(2646);class s{constructor(){this.offset=0,this.value=90}load(t){t&&(void 0!==t.offset&&(this.offset=(0,o.DT)(t.offset)),void 0!==t.value&&(this.value=(0,o.DT)(t.value)))}}},9326:(t,e,i)=>{i.d(e,{R:()=>s});var o=i(2646);class s{constructor(){this.distance=200,this.enable=!1,this.rotate={x:3e3,y:3e3}}load(t){if(t&&(void 0!==t.distance&&(this.distance=(0,o.DT)(t.distance)),void 0!==t.enable&&(this.enable=t.enable),t.rotate)){const e=t.rotate.x;void 0!==e&&(this.rotate.x=e);const i=t.rotate.y;void 0!==i&&(this.rotate.y=i)}}}},2662:(t,e,i)=>{i.d(e,{Z:()=>o});class o{constructor(){this.x=50,this.y=50,this.mode="percent",this.radius=0}load(t){t&&(void 0!==t.x&&(this.x=t.x),void 0!==t.y&&(this.y=t.y),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.radius&&(this.radius=t.radius))}}},1917:(t,e,i)=>{i.d(e,{y:()=>s});var o=i(2646);class s{constructor(){this.acceleration=9.81,this.enable=!1,this.inverse=!1,this.maxSpeed=50}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=(0,o.DT)(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.inverse&&(this.inverse=t.inverse),void 0!==t.maxSpeed&&(this.maxSpeed=(0,o.DT)(t.maxSpeed)))}}},5271:(t,e,i)=>{i.d(e,{O:()=>n});var o=i(6719);class s{load(t){t&&(void 0!==t.color&&(this.color=o.O.create(this.color,t.color)),void 0!==t.image&&(this.image=t.image))}}class n{constructor(){this.enable=!1,this.length=10,this.fill=new s}load(t){t&&(void 0!==t.enable&&(this.enable=t.enable),void 0!==t.fill&&this.fill.load(t.fill),void 0!==t.length&&(this.length=t.length))}}},9978:(t,e,i)=>{i.d(e,{j:()=>o});class o{constructor(){this.default="out"}load(t){t&&(void 0!==t.default&&(this.default=t.default),this.bottom=t.bottom??t.default,this.left=t.left??t.default,this.right=t.right??t.default,this.top=t.top??t.default)}}},4802:(t,e,i)=>{i.d(e,{v:()=>n});var o=i(2034),s=i(3393);class n{constructor(){this.clamp=!0,this.delay=new o.PV,this.enable=!1,this.options={}}load(t){t&&(void 0!==t.clamp&&(this.clamp=t.clamp),this.delay.load(t.delay),void 0!==t.enable&&(this.enable=t.enable),this.generator=t.generator,t.options&&(this.options=(0,s.zw)(this.options,t.options)))}}},5794:(t,e,i)=>{i.d(e,{t:()=>n});var o=i(3393),s=i(2646);class n{constructor(){this.acceleration=0,this.enable=!1}load(t){t&&(void 0!==t.acceleration&&(this.acceleration=(0,s.DT)(t.acceleration)),void 0!==t.enable&&(this.enable=t.enable),t.position&&(this.position=(0,o.zw)({},t.position)))}}},6207:(t,e,i)=>{i.d(e,{M:()=>o});class o{constructor(){this.enable=!1,this.width=1920,this.height=1080}load(t){if(!t)return;void 0!==t.enable&&(this.enable=t.enable);const e=t.width;void 0!==e&&(this.width=e);const i=t.height;void 0!==i&&(this.height=i)}}},3730:(t,e,i)=>{i.d(e,{N:()=>n});var o=i(6207),s=i(6407);class n{constructor(){this.density=new o.M,this.limit=new s.A,this.value=0}load(t){t&&(this.density.load(t.density),this.limit.load(t.limit),void 0!==t.value&&(this.value=t.value))}}},6407:(t,e,i)=>{i.d(e,{A:()=>o});class o{constructor(){this.mode="delete",this.value=0}load(t){t&&(void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}},6659:(t,e,i)=>{i.d(e,{Y:()=>n});var o=i(9245),s=i(2034);class n extends s.AI{constructor(){super(),this.animation=new o.I,this.value=1}load(t){if(!t)return;super.load(t);const e=t.animation;void 0!==e&&this.animation.load(e)}}},9245:(t,e,i)=>{i.d(e,{I:()=>s});var o=i(9190);class s extends o.Q{constructor(){super(),this.destroy="none",this.speed=2}load(t){super.load(t),t&&void 0!==t.destroy&&(this.destroy=t.destroy)}}},9944:(t,e,i)=>{i.d(e,{U:()=>m});var o=i(3393),s=i(2655),n=i(4907);class a{constructor(){this.close=!0,this.fill=!0,this.options={},this.type=[]}load(t){if(!t)return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=(0,o.zw)(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.fill&&(this.fill=t.fill),void 0!==t.type&&(this.type=t.type)}}var r=i(7299),l=i(6659),c=i(1494),d=i(3730),h=i(286),u=i(47),v=i(6955),p=i(1754),f=i(9725);class m{constructor(t,e){this._engine=t,this._container=e,this.bounce=new c.w,this.collisions=new n.c,this.color=new s.A,this.color.value="#fff",this.effect=new a,this.groups={},this.move=new r.y,this.number=new d.N,this.opacity=new l.Y,this.reduceDuplicates=!1,this.shadow=new h.V,this.shape=new u.y,this.size=new v.o,this.stroke=new p.t,this.zIndex=new f.P}load(t){if(!t)return;if(void 0!==t.groups)for(const e of Object.keys(t.groups)){if(!Object.hasOwn(t.groups,e))continue;const i=t.groups[e];void 0!==i&&(this.groups[e]=(0,o.zw)(this.groups[e]??{},i))}void 0!==t.reduceDuplicates&&(this.reduceDuplicates=t.reduceDuplicates),this.bounce.load(t.bounce),this.color.load(s.A.create(this.color,t.color)),this.effect.load(t.effect),this.move.load(t.move),this.number.load(t.number),this.opacity.load(t.opacity),this.shape.load(t.shape),this.size.load(t.size),this.shadow.load(t.shadow),this.zIndex.load(t.zIndex),this.collisions.load(t.collisions),void 0!==t.interactivity&&(this.interactivity=(0,o.zw)({},t.interactivity));const e=t.stroke;if(e&&(this.stroke=(0,o.wJ)(e,(t=>{const e=new p.t;return e.load(t),e}))),this._container){const e=this._engine.updaters.get(this._container);if(e)for(const i of e)i.loadOptions&&i.loadOptions(this,t);const i=this._engine.interactors.get(this._container);if(i)for(const e of i)e.loadParticlesOptions&&e.loadParticlesOptions(this,t)}}}},286:(t,e,i)=>{i.d(e,{V:()=>s});var o=i(6719);class s{constructor(){this.blur=0,this.color=new o.O,this.enable=!1,this.offset={x:0,y:0},this.color.value="#000"}load(t){t&&(void 0!==t.blur&&(this.blur=t.blur),this.color=o.O.create(this.color,t.color),void 0!==t.enable&&(this.enable=t.enable),void 0!==t.offset&&(void 0!==t.offset.x&&(this.offset.x=t.offset.x),void 0!==t.offset.y&&(this.offset.y=t.offset.y)))}}},47:(t,e,i)=>{i.d(e,{y:()=>s});var o=i(3393);class s{constructor(){this.close=!0,this.fill=!0,this.options={},this.type="circle"}load(t){if(!t)return;const e=t.options;if(void 0!==e)for(const t in e){const i=e[t];i&&(this.options[t]=(0,o.zw)(this.options[t]??{},i))}void 0!==t.close&&(this.close=t.close),void 0!==t.fill&&(this.fill=t.fill),void 0!==t.type&&(this.type=t.type)}}},6955:(t,e,i)=>{i.d(e,{o:()=>n});var o=i(2034),s=i(7685);class n extends o.AI{constructor(){super(),this.animation=new s.q,this.value=3}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&this.animation.load(e)}}},7685:(t,e,i)=>{i.d(e,{q:()=>s});var o=i(9190);class s extends o.Q{constructor(){super(),this.destroy="none",this.speed=5}load(t){super.load(t),t&&void 0!==t.destroy&&(this.destroy=t.destroy)}}},1754:(t,e,i)=>{i.d(e,{t:()=>n});var o=i(2655),s=i(2646);class n{constructor(){this.width=0}load(t){t&&(void 0!==t.color&&(this.color=o.A.create(this.color,t.color)),void 0!==t.width&&(this.width=(0,s.DT)(t.width)),void 0!==t.opacity&&(this.opacity=(0,s.DT)(t.opacity)))}}},9725:(t,e,i)=>{i.d(e,{P:()=>s});var o=i(2034);class s extends o.PV{constructor(){super(),this.opacityRate=1,this.sizeRate=1,this.velocityRate=1}load(t){super.load(t),t&&(void 0!==t.opacityRate&&(this.opacityRate=t.opacityRate),void 0!==t.sizeRate&&(this.sizeRate=t.sizeRate),void 0!==t.velocityRate&&(this.velocityRate=t.velocityRate))}}},376:(t,e,i)=>{i.d(e,{F:()=>s});var o=i(3393);class s{constructor(){this.maxWidth=1/0,this.options={},this.mode="canvas"}load(t){t&&(void 0!==t.maxWidth&&(this.maxWidth=t.maxWidth),void 0!==t.mode&&("screen"===t.mode?this.mode="screen":this.mode="canvas"),void 0!==t.options&&(this.options=(0,o.zw)({},t.options)))}}},3863:(t,e,i)=>{i.d(e,{S:()=>n});var o=i(9262),s=i(3393);class n{constructor(){this.name="",this.default=new o.f}load(t){t&&(void 0!==t.name&&(this.name=t.name),this.default.load(t.default),void 0!==t.options&&(this.options=(0,s.zw)({},t.options)))}}},9262:(t,e,i)=>{i.d(e,{f:()=>o});class o{constructor(){this.auto=!1,this.mode="any",this.value=!1}load(t){t&&(void 0!==t.auto&&(this.auto=t.auto),void 0!==t.mode&&(this.mode=t.mode),void 0!==t.value&&(this.value=t.value))}}},2034:(t,e,i)=>{i.d(e,{AI:()=>r,Jm:()=>a,PV:()=>n});var o=i(9190),s=i(2646);class n{constructor(){this.value=0}load(t){t&&void 0!==t.value&&(this.value=(0,s.DT)(t.value))}}class a extends n{constructor(){super(),this.animation=new o.p}load(t){if(super.load(t),!t)return;const e=t.animation;void 0!==e&&this.animation.load(e)}}class r extends a{constructor(){super(),this.animation=new o.Q}load(t){super.load(t)}}},1813:(t,e,i)=>{i.d(e,{IU:()=>l,KG:()=>h,Md:()=>r,QC:()=>d,Sn:()=>a,V6:()=>n,Wb:()=>p,e_:()=>v,gF:()=>u,p0:()=>c,yx:()=>f});var o=i(7422);const s={x:0,y:0};function n(t,e,i){t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(i.x,i.y),t.closePath()}function a(t,e,i){t.fillStyle=i??"rgba(0,0,0,0)",t.fillRect(s.x,s.y,e.width,e.height)}function r(t,e,i,o){i&&(t.globalAlpha=o,t.drawImage(i,s.x,s.y,e.width,e.height),t.globalAlpha=1)}function l(t,e){t.clearRect(s.x,s.y,e.width,e.height)}function c(t){const{container:e,context:i,particle:s,delta:n,colorStyles:a,backgroundMask:r,composite:l,radius:c,opacity:v,shadow:p,transform:f}=t,m=s.getPosition(),y=s.rotation+(s.pathRotation?s.velocity.angle:0),g=Math.sin(y),b=Math.cos(y),w={a:b*(f.a??1),b:g*(f.b??1),c:-g*(f.c??1),d:b*(f.d??1)};i.setTransform(w.a,w.b,w.c,w.d,m.x,m.y),r&&(i.globalCompositeOperation=l);const x=s.shadowColor;p.enable&&x&&(i.shadowBlur=p.blur,i.shadowColor=(0,o.xx)(x),i.shadowOffsetX=p.offset.x,i.shadowOffsetY=p.offset.y),a.fill&&(i.fillStyle=a.fill);const M=s.strokeWidth??0;i.lineWidth=M,a.stroke&&(i.strokeStyle=a.stroke);const z={container:e,context:i,particle:s,radius:c,opacity:v,delta:n,transformData:w,strokeWidth:M};h(z),u(z),d(z),i.globalCompositeOperation="source-over",i.resetTransform()}function d(t){const{container:e,context:i,particle:o,radius:s,opacity:n,delta:a,transformData:r}=t;if(!o.effect)return;const l=e.effectDrawers.get(o.effect);l&&l.draw({context:i,particle:o,radius:s,opacity:n,delta:a,pixelRatio:e.retina.pixelRatio,transformData:{...r}})}function h(t){const{container:e,context:i,particle:o,radius:s,opacity:n,delta:a,strokeWidth:r,transformData:l}=t;if(!o.shape)return;const c=e.shapeDrawers.get(o.shape);c&&(i.beginPath(),c.draw({context:i,particle:o,radius:s,opacity:n,delta:a,pixelRatio:e.retina.pixelRatio,transformData:{...l}}),o.shapeClose&&i.closePath(),r>0&&i.stroke(),o.shapeFill&&i.fill())}function u(t){const{container:e,context:i,particle:o,radius:s,opacity:n,delta:a,transformData:r}=t;if(!o.shape)return;const l=e.shapeDrawers.get(o.shape);l?.afterDraw&&l.afterDraw({context:i,particle:o,radius:s,opacity:n,delta:a,pixelRatio:e.retina.pixelRatio,transformData:{...r}})}function v(t,e,i){e.draw&&e.draw(t,i)}function p(t,e,i,o){e.drawParticle&&e.drawParticle(t,i,o)}function f(t,e,i){return{h:t.h,s:t.s,l:t.l+("darken"===e?-1:1)*i}}},7422:(t,e,i)=>{i.d(e,{BN:()=>u,EY:()=>O,Jv:()=>R,K6:()=>m,Ko:()=>V,LC:()=>z,OH:()=>x,O_:()=>E,PG:()=>T,R5:()=>f,YL:()=>b,_h:()=>P,a9:()=>d,ay:()=>w,eg:()=>g,mK:()=>p,pz:()=>S,qe:()=>v,xx:()=>M,zI:()=>y});var o=i(2646),s=i(2457),n=i(751),a=i(3393);const r="random",l="mid",c=new Map;function d(t){c.set(t.key,t)}function h(t){for(const[,e]of c)if(t.startsWith(e.stringPrefix))return e.parseString(t);const e=t.replace(/^#?([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,((t,e,i,o,s)=>e+e+i+i+o+o+(void 0!==s?s+s:""))),i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i.exec(e);return i?{a:void 0!==i[4]?parseInt(i[4],16)/255:1,b:parseInt(i[3],16),g:parseInt(i[2],16),r:parseInt(i[1],16)}:void 0}function u(t,e,i=!0){if(!t)return;const o=(0,s.Kg)(t)?{value:t}:t;if((0,s.Kg)(o.value))return v(o.value,e,i);if((0,s.cy)(o.value))return u({value:(0,a.Vh)(o.value,e,i)});for(const[,t]of c){const e=t.handleRangeColor(o);if(e)return e}}function v(t,e,i=!0){if(!t)return;const o=(0,s.Kg)(t)?{value:t}:t;if((0,s.Kg)(o.value))return o.value===r?x():g(o.value);if((0,s.cy)(o.value))return v({value:(0,a.Vh)(o.value,e,i)});for(const[,t]of c){const e=t.handleColor(o);if(e)return e}}function p(t,e,i=!0){const o=v(t,e,i);return o?m(o):void 0}function f(t,e,i=!0){const o=u(t,e,i);return o?m(o):void 0}function m(t){const e=t.r/255,i=t.g/255,o=t.b/255,s=Math.max(e,i,o),n=Math.min(e,i,o),a={h:0,l:.5*(s+n),s:0};return s!==n&&(a.s=a.l<.5?(s-n)/(s+n):(s-n)/(2-s-n),a.h=e===s?(i-o)/(s-n):a.h=i===s?2+(o-e)/(s-n):4+(e-i)/(s-n)),a.l*=100,a.s*=100,a.h*=60,a.h<0&&(a.h+=360),a.h>=360&&(a.h-=360),a}function y(t){return h(t)?.a}function g(t){return h(t)}function b(t){const e=360,i=(t.h%e+e)%e,o=Math.max(0,Math.min(100,t.s)),s=i/e,n=o/100,a=Math.max(0,Math.min(100,t.l))/100,r=255;if(0===o){const t=Math.round(a*r);return{r:t,g:t,b:t}}const l=(t,e,i)=>{if(i<0&&i++,i>1&&i--,6*i<1)return t+6*(e-t)*i;if(2*i<1)return e;if(3*i<2){return t+(e-t)*(2/3-i)*6}return t},c=a<.5?a*(1+n):a+n-a*n,d=2*a-c,h=1/3,u=Math.min(r,r*l(d,c,s+h)),v=Math.min(r,r*l(d,c,s)),p=Math.min(r,r*l(d,c,s-h));return{r:Math.round(u),g:Math.round(v),b:Math.round(p)}}function w(t){const e=b(t);return{a:t.a,b:e.b,g:e.g,r:e.r}}function x(t){const e=t??0;return{b:Math.floor((0,o.U4)((0,o.DT)(e,256))),g:Math.floor((0,o.U4)((0,o.DT)(e,256))),r:Math.floor((0,o.U4)((0,o.DT)(e,256)))}}function M(t,e){return`rgba(${t.r}, ${t.g}, ${t.b}, ${e??1})`}function z(t,e){return`hsla(${t.h}, ${t.s}%, ${t.l}%, ${e??1})`}function O(t,e,i,s){let n=t,a=e;return void 0===n.r&&(n=b(t)),void 0===a.r&&(a=b(e)),{b:(0,o.jh)(n.b,a.b,i,s),g:(0,o.jh)(n.g,a.g,i,s),r:(0,o.jh)(n.r,a.r,i,s)}}function P(t,e,i){if(i===r)return x();if(i!==l)return i;{const i=t.getFillColor()??t.getStrokeColor(),o=e?.getFillColor()??e?.getStrokeColor();if(i&&o&&e)return O(i,o,t.getRadius(),e.getRadius());{const t=i??o;if(t)return b(t)}}}function T(t,e,i){const o=(0,s.Kg)(t)?t:t.value;return o===r?i?u({value:o}):e?r:l:o===l?l:u({value:o})}function E(t){return void 0!==t?{h:t.h.value,s:t.s.value,l:t.l.value}:void 0}function S(t,e,i){const o={h:{enable:!1,value:t.h},s:{enable:!1,value:t.s},l:{enable:!1,value:t.l}};return e&&(k(o.h,e.h,i),k(o.s,e.s,i),k(o.l,e.l,i)),o}function k(t,e,i){t.enable=e.enable;t.enable?(t.velocity=(0,o.VG)(e.speed)/n.a5*i,t.decay=1-(0,o.VG)(e.decay),t.status="increasing",t.loops=0,t.maxLoops=(0,o.VG)(e.count),t.time=0,t.delayTime=(0,o.VG)(e.delay)*n.Xu,e.sync||(t.velocity*=(0,o.G0)(),t.value*=(0,o.G0)()),t.initialValue=t.value,t.offset=(0,o.DT)(e.offset)):t.velocity=0}function V(t,e,i,s){if(!t||!t.enable||(t.maxLoops??0)>0&&(t.loops??0)>(t.maxLoops??0))return;if(t.time||(t.time=0),(t.delayTime??0)>0&&t.time<(t.delayTime??0)&&(t.time+=s.value),(t.delayTime??0)>0&&t.time<(t.delayTime??0))return;const n=t.offset?(0,o.U4)(t.offset):0,a=(t.velocity??0)*s.factor+3.6*n,r=t.decay??1,l=(0,o.W9)(e),c=(0,o.Sg)(e);if(i&&"increasing"!==t.status){t.value-=a;const e=0;t.value<e&&(t.loops||(t.loops=0),t.loops++,t.status="increasing")}else t.value+=a,t.value>l&&(t.loops||(t.loops=0),t.loops++,i?t.status="decreasing":t.value-=l);t.velocity&&1!==r&&(t.velocity*=r),t.value=(0,o.qE)(t.value,c,l)}function R(t,e){if(!t)return;const{h:i,s:o,l:s}=t,n={min:0,max:100},a={min:0,max:100};i&&V(i,{min:0,max:360},!1,e),o&&V(o,n,!0,e),s&&V(s,a,!0,e)}},2646:(t,e,i)=>{i.d(e,{$m:()=>O,DT:()=>b,G0:()=>u,JY:()=>z,M3:()=>R,Mh:()=>E,Nx:()=>k,OE:()=>h,OW:()=>P,Sg:()=>y,U4:()=>f,VG:()=>m,W9:()=>g,Yf:()=>x,eh:()=>T,il:()=>d,jh:()=>p,l1:()=>S,nL:()=>c,pu:()=>M,qE:()=>v,qM:()=>V,vr:()=>w});var o=i(4798),s=i(2457),n=i(751);let a=Math.random;const r=new Map,l=2*Math.PI;function c(t,e){r.get(t)||r.set(t,e)}function d(t){return r.get(t)??(t=>t)}function h(t=Math.random){a=t}function u(){return v(a(),0,1-Number.EPSILON)}function v(t,e,i){return Math.min(Math.max(t,e),i)}function p(t,e,i,o){return Math.floor((t*i+e*o)/(i+o))}function f(t){const e=g(t);let i=y(t);return e===i&&(i=0),u()*(e-i)+i}function m(t){return(0,s.Et)(t)?t:f(t)}function y(t){return(0,s.Et)(t)?t:t.min}function g(t){return(0,s.Et)(t)?t:t.max}function b(t,e){if(t===e||void 0===e&&(0,s.Et)(t))return t;const i=y(t),o=g(t);return void 0!==e?{min:Math.min(i,e),max:Math.max(o,e)}:b(i,o)}function w(t,e){const i=t.x-e.x,o=t.y-e.y;return{dx:i,dy:o,distance:Math.sqrt(i**2+o**2)}}function x(t,e){return w(t,e).distance}function M(t){return t*Math.PI/180}function z(t,e,i){if((0,s.Et)(t))return M(t);const o=.25;switch(t){case"top":return.5*-Math.PI;case"top-right":return-Math.PI*o;case"right":return 0;case"bottom-right":return Math.PI*o;case"bottom":return.5*Math.PI;case"bottom-left":return.75*Math.PI;case"left":return Math.PI;case"top-left":return.75*-Math.PI;case"inside":return Math.atan2(i.y-e.y,i.x-e.x);case"outside":return Math.atan2(e.y-i.y,e.x-i.x);default:return u()*l}}function O(t){const e=o.M.origin;return e.length=1,e.angle=t,e}function P(t,e,i,s){return o.M.create(t.x*(i-s)/(i+s)+2*e.x*s/(i+s),t.y)}function T(t){return void 0!==t.position?.x&&void 0!==t.position.y?{x:t.position.x*t.size.width/n.a5,y:t.position.y*t.size.height/n.a5}:void 0}function E(t){return{x:(t.position?.x??u()*n.a5)*t.size.width/n.a5,y:(t.position?.y??u()*n.a5)*t.size.height/n.a5}}function S(t){const e={x:void 0!==t.position?.x?m(t.position.x):void 0,y:void 0!==t.position?.y?m(t.position.y):void 0};return E({size:t.size,position:e})}function k(t){return{x:t.position?.x??u()*t.size.width,y:t.position?.y??u()*t.size.height}}function V(t){const e={x:void 0!==t.position?.x?m(t.position.x):void 0,y:void 0!==t.position?.y?m(t.position.y):void 0};return k({size:t.size,position:e})}function R(t){return t?t.endsWith("%")?parseFloat(t)/n.a5:parseFloat(t):1}},8761:(t,e,i)=>{i.d(e,{Z:()=>s,y:()=>n});var o=i(9944);function s(t,...e){for(const i of e)t.load(i)}function n(t,e,...i){const n=new o.U(t,e);return s(n,...i),n}},2457:(t,e,i)=>{function o(t){return"boolean"==typeof t}function s(t){return"string"==typeof t}function n(t){return"number"==typeof t}function a(t){return"function"==typeof t}function r(t){return"object"==typeof t&&null!==t}function l(t){return Array.isArray(t)}i.d(e,{Et:()=>n,Gv:()=>r,Kg:()=>s,Lm:()=>o,Tn:()=>a,cy:()=>l})},3393:(t,e,i)=>{i.d(e,{AE:()=>M,Al:()=>y,B9:()=>h,BR:()=>p,Br:()=>l,E9:()=>I,NV:()=>E,O2:()=>x,S7:()=>T,TA:()=>_,Tg:()=>S,Tj:()=>w,U6:()=>P,UC:()=>L,Vh:()=>b,Xs:()=>G,YC:()=>C,hn:()=>m,iK:()=>O,jo:()=>V,lV:()=>v,n0:()=>g,pE:()=>k,q8:()=>u,tG:()=>f,tZ:()=>c,w3:()=>D,wJ:()=>R,zw:()=>z});var o=i(2646),s=i(751),n=i(2457),a=i(4798);const r={debug:console.debug,error:console.error,info:console.info,log:console.log,verbose:console.log,warning:console.warn};function l(t){r.debug=t.debug||r.debug,r.error=t.error||r.error,r.info=t.info||r.info,r.log=t.log||r.log,r.verbose=t.verbose||r.verbose,r.warning=t.warning||r.warning}function c(){return r}function d(t){const e={bounced:!1},{pSide:i,pOtherSide:o,rectSide:s,rectOtherSide:n,velocity:a,factor:r}=t;return o.min<n.min||o.min>n.max||o.max<n.min||o.max>n.max||(i.max>=s.min&&i.max<=.5*(s.max+s.min)&&a>0||i.min<=s.max&&i.min>.5*(s.max+s.min)&&a<0)&&(e.velocity=a*-r,e.bounced=!0),e}function h(){return"undefined"==typeof window||!window||void 0===window.document||!window.document}function u(){return!h()&&"undefined"!=typeof matchMedia}function v(t){if(u())return matchMedia(t)}function p(t){if(!h()&&"undefined"!=typeof IntersectionObserver)return new IntersectionObserver(t)}function f(t){if(!h()&&"undefined"!=typeof MutationObserver)return new MutationObserver(t)}function m(t,e){return t===e||(0,n.cy)(e)&&e.indexOf(t)>-1}async function y(t,e){try{await document.fonts.load(`${e??"400"} 36px '${t??"Verdana"}'`)}catch{}}function g(t){return Math.floor((0,o.G0)()*t.length)}function b(t,e,i=!0){return t[void 0!==e&&i?e%t.length:g(t)]}function w(t,e,i,o,s){return x(M(t,o??0),e,i,s)}function x(t,e,i,o){let s=!0;return o&&"bottom"!==o||(s=t.top<e.height+i.x),!s||o&&"left"!==o||(s=t.right>i.x),!s||o&&"right"!==o||(s=t.left<e.width+i.y),!s||o&&"top"!==o||(s=t.bottom>i.y),s}function M(t,e){return{bottom:t.y+e,left:t.x-e,right:t.x+e,top:t.y-e}}function z(t,...e){for(const i of e){if(null==i)continue;if(!(0,n.Gv)(i)){t=i;continue}const e=Array.isArray(i);!e||!(0,n.Gv)(t)&&t&&Array.isArray(t)?e||!(0,n.Gv)(t)&&t&&!Array.isArray(t)||(t={}):t=[];for(const e in i){if("__proto__"===e)continue;const o=i[e],s=t;s[e]=(0,n.Gv)(o)&&Array.isArray(o)?o.map((t=>z(s[e],t))):z(s[e],o)}}return t}function O(t,e){return!!D(e,(e=>e.enable&&m(t,e.mode)))}function P(t,e,i){R(e,(e=>{const o=e.mode;e.enable&&m(t,o)&&T(e,i)}))}function T(t,e){R(t.selectors,(i=>{e(i,t)}))}function E(t,e){if(e&&t)return D(t,(t=>function(t,e){const i=R(e,(e=>t.matches(e)));return(0,n.cy)(i)?i.some((t=>t)):i}(e,t.selectors)))}function S(t){return{position:t.getPosition(),radius:t.getRadius(),mass:t.getMass(),velocity:t.velocity,factor:a.M.create((0,o.VG)(t.options.bounce.horizontal.value),(0,o.VG)(t.options.bounce.vertical.value))}}function k(t,e){const{x:i,y:s}=t.velocity.sub(e.velocity),[n,a]=[t.position,e.position],{dx:r,dy:l}=(0,o.vr)(a,n);if(i*r+s*l<0)return;const c=-Math.atan2(l,r),d=t.mass,h=e.mass,u=t.velocity.rotate(c),v=e.velocity.rotate(c),p=(0,o.OW)(u,v,d,h),f=(0,o.OW)(v,u,d,h),m=p.rotate(-c),y=f.rotate(-c);t.velocity.x=m.x*t.factor.x,t.velocity.y=m.y*t.factor.y,e.velocity.x=y.x*e.factor.x,e.velocity.y=y.y*e.factor.y}function V(t,e){const i=M(t.getPosition(),t.getRadius()),s=t.options.bounce,n=d({pSide:{min:i.left,max:i.right},pOtherSide:{min:i.top,max:i.bottom},rectSide:{min:e.left,max:e.right},rectOtherSide:{min:e.top,max:e.bottom},velocity:t.velocity.x,factor:(0,o.VG)(s.horizontal.value)});n.bounced&&(void 0!==n.velocity&&(t.velocity.x=n.velocity),void 0!==n.position&&(t.position.x=n.position));const a=d({pSide:{min:i.top,max:i.bottom},pOtherSide:{min:i.left,max:i.right},rectSide:{min:e.top,max:e.bottom},rectOtherSide:{min:e.left,max:e.right},velocity:t.velocity.y,factor:(0,o.VG)(s.vertical.value)});a.bounced&&(void 0!==a.velocity&&(t.velocity.y=a.velocity),void 0!==a.position&&(t.position.y=a.position))}function R(t,e){return(0,n.cy)(t)?t.map(((t,i)=>e(t,i))):e(t,0)}function _(t,e,i){return(0,n.cy)(t)?b(t,e,i):t}function D(t,e){if((0,n.cy)(t))return t.find(((t,i)=>e(t,i)));return e(t,0)?t:void 0}function G(t,e){const i=t.value,n=t.animation,a={delayTime:(0,o.VG)(n.delay)*s.Xu,enable:n.enable,value:(0,o.VG)(t.value)*e,max:(0,o.W9)(i)*e,min:(0,o.Sg)(i)*e,loops:0,maxLoops:(0,o.VG)(n.count),time:0};if(n.enable){switch(a.decay=1-(0,o.VG)(n.decay),n.mode){case"increase":a.status="increasing";break;case"decrease":a.status="decreasing";break;case"random":a.status=(0,o.G0)()>=s.N3?"increasing":"decreasing"}const t="auto"===n.mode;switch(n.startValue){case"min":a.value=a.min,t&&(a.status="increasing");break;case"max":a.value=a.max,t&&(a.status="decreasing");break;default:a.value=(0,o.U4)(a),t&&(a.status=(0,o.G0)()>=s.N3?"increasing":"decreasing")}}return a.initialValue=a.value,a}function A(t,e){if(!("percent"===t.mode)){const{mode:e,...i}=t;return i}return"x"in t?{x:t.x/s.a5*e.width,y:t.y/s.a5*e.height}:{width:t.width/s.a5*e.width,height:t.height/s.a5*e.height}}function I(t,e){return A(t,e)}function C(t,e){return A(t,e)}function L(t,e,i,s,n){if(t.destroyed||!e||!e.enable||(e.maxLoops??0)>0&&(e.loops??0)>(e.maxLoops??0))return;const a=(e.velocity??0)*n.factor,r=e.min,l=e.max,c=e.decay??1;if(e.time||(e.time=0),(e.delayTime??0)>0&&e.time<(e.delayTime??0)&&(e.time+=n.value),!((e.delayTime??0)>0&&e.time<(e.delayTime??0))){switch(e.status){case"increasing":e.value>=l?(i?e.status="decreasing":e.value-=l,e.loops||(e.loops=0),e.loops++):e.value+=a;break;case"decreasing":e.value<=r?(i?e.status="increasing":e.value+=l,e.loops||(e.loops=0),e.loops++):e.value-=a}e.velocity&&1!==c&&(e.velocity*=c),function(t,e,i,o,s){switch(e){case"max":i>=s&&t.destroy();break;case"min":i<=o&&t.destroy()}}(t,s,e.value,r,l),t.destroyed||(e.value=(0,o.qE)(e.value,r,l))}}},5540:(t,e,i)=>{i.d(e,{A9:()=>y.A,pK:()=>g.p,Jm:()=>ht.Jm,VS:()=>b.V,TH:()=>w.T,ys:()=>x.y,dg:()=>f.dg,jl:()=>f.jl,rX:()=>P.r,cV:()=>L.c,N_:()=>F.N,Fr:()=>B.F,ev:()=>M.e,GW:()=>T.G,sV:()=>E.s,sJ:()=>u,mc:()=>z.m,LO:()=>S.L,i7:()=>O.i,kG:()=>d,kf:()=>R.k,jL:()=>D.j,dX:()=>_.d,yU:()=>U.y,hz:()=>q.h,RE:()=>W.R,Zg:()=>Y.Z,y1:()=>$.y,vU:()=>H.v,OG:()=>X.O,Y4:()=>it.Y,Ih:()=>ot.I,JY:()=>G.J,Oi:()=>A.O,j$:()=>J.j,kQ:()=>k.k,wv:()=>I.w,F5:()=>C.F,M1:()=>et.M,U4:()=>v,Ne:()=>Q.N,Ad:()=>tt.A,UO:()=>j.U,bR:()=>p.b,Q4:()=>g.Q,AI:()=>ht.AI,M_:()=>f.M_,z0:()=>V.z,Ft:()=>lt.F,OT:()=>h,Vo:()=>N.V,yp:()=>st.y,or:()=>nt.o,qv:()=>at.q,tK:()=>Z.t,tc:()=>K.t,Sx:()=>ct.S,fK:()=>dt.f,PV:()=>ht.PV,Mi:()=>m.M,pG:()=>m.p,Py:()=>rt.P,a9:()=>c.a9,nL:()=>a.nL,yx:()=>ut.yx,O2:()=>s.O2,n0:()=>s.n0,Nx:()=>a.Nx,qM:()=>a.qM,eh:()=>a.eh,Mh:()=>a.Mh,l1:()=>a.l1,AE:()=>s.AE,pE:()=>s.pE,Tg:()=>s.Tg,qE:()=>a.qE,IU:()=>ut.IU,OW:()=>a.OW,EY:()=>c.EY,mK:()=>c.mK,qe:()=>c.qe,zw:()=>s.zw,pu:()=>a.pu,NV:()=>s.NV,U6:()=>s.U6,QC:()=>ut.QC,V6:()=>ut.V6,p0:()=>ut.p0,Wb:()=>ut.Wb,e_:()=>ut.e_,KG:()=>ut.KG,gF:()=>ut.gF,dI:()=>o.dI,wJ:()=>s.wJ,w3:()=>s.w3,eb:()=>o.eb,Yf:()=>a.Yf,vr:()=>a.vr,il:()=>a.il,pz:()=>c.pz,O_:()=>c.O_,_h:()=>c._h,PG:()=>c.PG,tZ:()=>s.tZ,$m:()=>a.$m,ak:()=>a.JY,E9:()=>s.E9,G0:()=>a.G0,OH:()=>c.OH,W9:()=>a.W9,Sg:()=>a.Sg,VG:()=>a.VG,YC:()=>s.YC,LC:()=>c.LC,xx:()=>c.xx,N3:()=>o.N3,q8:()=>s.q8,YL:()=>c.YL,ay:()=>c.ay,Xs:()=>s.Xs,cy:()=>pt.cy,Lm:()=>pt.Lm,iK:()=>s.iK,Tn:()=>pt.Tn,hn:()=>s.hn,Et:()=>pt.Et,Gv:()=>pt.Gv,Tj:()=>s.Tj,B9:()=>s.B9,Kg:()=>pt.Kg,Vh:()=>s.Vh,TA:()=>s.TA,Al:()=>s.Al,ZG:()=>vt.Z,yV:()=>vt.y,Xu:()=>o.Xu,jh:()=>a.jh,ms:()=>o.ms,Z0:()=>o.Z0,Rb:()=>o.Rb,sf:()=>o.sf,vo:()=>o.vo,Sn:()=>ut.Sn,Md:()=>ut.Md,M3:()=>a.M3,a5:()=>o.a5,BH:()=>a.U4,R5:()=>c.R5,BN:()=>c.BN,jo:()=>s.jo,NF:()=>o.NF,K6:()=>c.K6,BR:()=>s.BR,lV:()=>s.lV,tG:()=>s.tG,Br:()=>s.Br,OE:()=>a.OE,DT:()=>a.DT,S7:()=>s.S7,zI:()=>c.zI,eg:()=>c.eg,G3:()=>o.G3,Bp:()=>o.Bp,DG:()=>o.DG,s7:()=>o.s7,$k:()=>ft,UC:()=>s.UC,Jv:()=>c.Jv,Ko:()=>c.Ko,nK:()=>o.nK});var o=i(751),s=i(3393);class n{constructor(){this._listeners=new Map}addEventListener(t,e){this.removeEventListener(t,e);let i=this._listeners.get(t);i||(i=[],this._listeners.set(t,i)),i.push(e)}dispatchEvent(t,e){const i=this._listeners.get(t);i?.forEach((t=>t(e)))}hasEventListener(t){return!!this._listeners.get(t)}removeAllEventListeners(t){t?this._listeners.delete(t):this._listeners=new Map}removeEventListener(t,e){const i=this._listeners.get(t);if(!i)return;const o=i.length,s=i.indexOf(e);if(s<0)return;1===o?this._listeners.delete(t):i.splice(s,1)}}var a=i(2646);async function r(t,e,i,o=!1){let s=e.get(t);return s&&!o||(s=await Promise.all([...i.values()].map((e=>e(t)))),e.set(t,s)),s}class l{constructor(){this._configs=new Map,this._domArray=[],this._eventDispatcher=new n,this._initialized=!1,this.plugins=[],this._initializers={interactors:new Map,movers:new Map,updaters:new Map},this.interactors=new Map,this.movers=new Map,this.updaters=new Map,this.presets=new Map,this.effectDrawers=new Map,this.shapeDrawers=new Map,this.pathGenerators=new Map}get configs(){const t={};for(const[e,i]of this._configs)t[e]=i;return t}get version(){return"3.3.0"}addConfig(t){const e=t.key??t.name??"default";this._configs.set(e,t),this._eventDispatcher.dispatchEvent("configAdded",{data:{name:e,config:t}})}async addEffect(t,e,i=!0){(0,s.wJ)(t,(t=>{this.getEffectDrawer(t)||this.effectDrawers.set(t,e)})),await this.refresh(i)}addEventListener(t,e){this._eventDispatcher.addEventListener(t,e)}async addInteractor(t,e,i=!0){this._initializers.interactors.set(t,e),await this.refresh(i)}async addMover(t,e,i=!0){this._initializers.movers.set(t,e),await this.refresh(i)}async addParticleUpdater(t,e,i=!0){this._initializers.updaters.set(t,e),await this.refresh(i)}async addPathGenerator(t,e,i=!0){this.getPathGenerator(t)||this.pathGenerators.set(t,e),await this.refresh(i)}async addPlugin(t,e=!0){this.getPlugin(t.id)||this.plugins.push(t),await this.refresh(e)}async addPreset(t,e,i=!1,o=!0){!i&&this.getPreset(t)||this.presets.set(t,e),await this.refresh(o)}async addShape(t,e,i=!0){(0,s.wJ)(t,(t=>{this.getShapeDrawer(t)||this.shapeDrawers.set(t,e)})),await this.refresh(i)}clearPlugins(t){this.updaters.delete(t),this.movers.delete(t),this.interactors.delete(t)}dispatchEvent(t,e){this._eventDispatcher.dispatchEvent(t,e)}dom(){return this._domArray}domItem(t){const e=this.dom(),i=e[t];if(i&&!i.destroyed)return i;{const i=1;e.splice(t,i)}}async getAvailablePlugins(t){const e=new Map;for(const i of this.plugins)i.needsPlugin(t.actualOptions)&&e.set(i.id,await i.getPlugin(t));return e}getEffectDrawer(t){return this.effectDrawers.get(t)}async getInteractors(t,e=!1){return await r(t,this.interactors,this._initializers.interactors,e)}async getMovers(t,e=!1){return await r(t,this.movers,this._initializers.movers,e)}getPathGenerator(t){return this.pathGenerators.get(t)}getPlugin(t){return this.plugins.find((e=>e.id===t))}getPreset(t){return this.presets.get(t)}getShapeDrawer(t){return this.shapeDrawers.get(t)}getSupportedEffects(){return this.effectDrawers.keys()}getSupportedShapes(){return this.shapeDrawers.keys()}async getUpdaters(t,e=!1){return await r(t,this.updaters,this._initializers.updaters,e)}init(){this._initialized||(this._initialized=!0)}async load(t){const e=t.id??t.element?.id??`tsparticles${Math.floor(1e4*(0,a.G0)())}`,{index:n,url:r}=t,l=r?await async function(t){const e=(0,s.TA)(t.url,t.index);if(!e)return t.fallback;const i=await fetch(e);return i.ok?await i.json():((0,s.tZ)().error(`${o.dI} ${i.status} while retrieving config file`),t.fallback)}({fallback:t.options,url:r,index:n}):t.options;let c=t.element??document.getElementById(e);c||(c=document.createElement("div"),c.id=e,document.body.append(c));const d=(0,s.TA)(l,n),h=this.dom(),u=h.findIndex((t=>t.id.description===e));if(u>=0){const t=this.domItem(u);if(t&&!t.destroyed){t.destroy();const e=1;h.splice(u,e)}}let v;if("canvas"===c.tagName.toLowerCase())v=c,v.dataset[o.eb]="false";else{const t=c.getElementsByTagName("canvas");if(t.length){v=t[0],v.dataset[o.eb]="false"}else v=document.createElement("canvas"),v.dataset[o.eb]="true",c.appendChild(v)}v.style.width||(v.style.width="100%"),v.style.height||(v.style.height="100%");const{Container:p}=await i.e(43).then(i.bind(i,2043)),f=new p(this,e,d);if(u>=0){const t=0;h.splice(u,t,f)}else h.push(f);return f.canvas.loadCanvas(v),await f.start(),f}loadOptions(t,e){for(const i of this.plugins)i.loadOptions(t,e)}loadParticlesOptions(t,e,...i){const o=this.updaters.get(t);if(o)for(const t of o)t.loadOptions?.(e,...i)}async refresh(t=!0){t&&await Promise.all(this.dom().map((t=>t.refresh())))}removeEventListener(t,e){this._eventDispatcher.removeEventListener(t,e)}setOnClickHandler(t){const e=this.dom();if(!e.length)throw new Error(`${o.dI} can only set click handlers after calling tsParticles.load()`);for(const i of e)i.addClickHandler(t)}}var c=i(7422);class d{constructor(){this.key="hsl",this.stringPrefix="hsl"}handleColor(t){const e=t.value.hsl??t.value;if(void 0!==e.h&&void 0!==e.s&&void 0!==e.l)return(0,c.YL)(e)}handleRangeColor(t){const e=t.value.hsl??t.value;if(void 0!==e.h&&void 0!==e.l)return(0,c.YL)({h:(0,a.VG)(e.h),l:(0,a.VG)(e.l),s:(0,a.VG)(e.s)})}parseString(t){if(!t.startsWith("hsl"))return;const e=/hsla?\(\s*(\d+)\s*,\s*(\d+)%\s*,\s*(\d+)%\s*(,\s*([\d.%]+)\s*)?\)/i.exec(t);return e?(0,c.ay)({a:e.length>4?(0,a.M3)(e[5]):1,h:parseInt(e[1],10),l:parseInt(e[3],10),s:parseInt(e[2],10)}):void 0}}class h{constructor(){this.key="rgb",this.stringPrefix="rgb"}handleColor(t){const e=t.value.rgb??t.value;if(void 0!==e.r)return e}handleRangeColor(t){const e=t.value.rgb??t.value;if(void 0!==e.r)return{r:(0,a.VG)(e.r),g:(0,a.VG)(e.g),b:(0,a.VG)(e.b)}}parseString(t){if(!t.startsWith(this.stringPrefix))return;const e=/rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([\d.%]+)\s*)?\)/i.exec(t);return e?{a:e.length>4?(0,a.M3)(e[5]):1,b:parseInt(e[3],10),g:parseInt(e[2],10),r:parseInt(e[1],10)}:void 0}}class u{constructor(t){this.type="external",this.container=t}}class v{constructor(t){this.type="particles",this.container=t}}var p=i(2284),f=i(694),m=i(4798),y=i(2655),g=i(9190),b=i(1897),w=i(3829),x=i(490),M=i(6865),z=i(9943),O=i(1657),P=i(2562),T=i(5907),E=i(7023),S=i(1864),k=i(1753),V=i(3492),R=i(7287),_=i(699),D=i(9638),G=i(4126),A=i(6719),I=i(1494),C=i(8745),L=i(4907),F=i(8362),B=i(108),j=i(9944),N=i(286),K=i(1754),W=i(9326),U=i(7299),q=i(2748),Y=i(2662),$=i(1917),J=i(9978),H=i(4802),Z=i(5794),X=i(5271),Q=i(3730),tt=i(6407),et=i(6207),it=i(6659),ot=i(9245),st=i(47),nt=i(6955),at=i(7685),rt=i(9725),lt=i(376),ct=i(3863),dt=i(9262),ht=i(2034),ut=i(1813),vt=i(8761),pt=i(2457);const ft=function(){const t=new h,e=new d;(0,c.a9)(t),(0,c.a9)(e);const i=new l;return i.init(),i}();(0,s.B9)()||(window.tsParticles=ft)}},o={};function s(t){var e=o[t];if(void 0!==e)return e.exports;var n=o[t]={exports:{}};return i[t](n,n.exports,s),n.exports}s.m=i,s.d=(t,e)=>{for(var i in e)s.o(e,i)&&!s.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},s.f={},s.e=t=>Promise.all(Object.keys(s.f).reduce(((e,i)=>(s.f[i](t,e),e)),[])),s.u=t=>t+".min.js",s.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),s.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),t={},e="@tsparticles/basic:",s.l=(i,o,n,a)=>{if(t[i])t[i].push(o);else{var r,l;if(void 0!==n)for(var c=document.getElementsByTagName("script"),d=0;d<c.length;d++){var h=c[d];if(h.getAttribute("src")==i||h.getAttribute("data-webpack")==e+n){r=h;break}}r||(l=!0,(r=document.createElement("script")).charset="utf-8",r.timeout=120,s.nc&&r.setAttribute("nonce",s.nc),r.setAttribute("data-webpack",e+n),r.src=i),t[i]=[o];var u=(e,o)=>{r.onerror=r.onload=null,clearTimeout(v);var s=t[i];if(delete t[i],r.parentNode&&r.parentNode.removeChild(r),s&&s.forEach((t=>t(o))),e)return e(o)},v=setTimeout(u.bind(null,void 0,{type:"timeout",target:r}),12e4);r.onerror=u.bind(null,r.onerror),r.onload=u.bind(null,r.onload),l&&document.head.appendChild(r)}},s.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{var t;s.g.importScripts&&(t=s.g.location+"");var e=s.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var i=e.getElementsByTagName("script");if(i.length)for(var o=i.length-1;o>-1&&(!t||!/^http(s?):/.test(t));)t=i[o--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),s.p=t})(),(()=>{var t={699:0};s.f.j=(e,i)=>{var o=s.o(t,e)?t[e]:void 0;if(0!==o)if(o)i.push(o[2]);else{var n=new Promise(((i,s)=>o=t[e]=[i,s]));i.push(o[2]=n);var a=s.p+s.u(e),r=new Error;s.l(a,(i=>{if(s.o(t,e)&&(0!==(o=t[e])&&(t[e]=void 0),o)){var n=i&&("load"===i.type?"missing":i.type),a=i&&i.target&&i.target.src;r.message="Loading chunk "+e+" failed.\n("+n+": "+a+")",r.name="ChunkLoadError",r.type=n,r.request=a,o[1](r)}}),"chunk-"+e,e)}};var e=(e,i)=>{var o,n,a=i[0],r=i[1],l=i[2],c=0;if(a.some((e=>0!==t[e]))){for(o in r)s.o(r,o)&&(s.m[o]=r[o]);if(l)l(s)}for(e&&e(i);c<a.length;c++)n=a[c],s.o(t,n)&&t[n]&&t[n][0](),t[n]=0},i=this.webpackChunk_tsparticles_basic=this.webpackChunk_tsparticles_basic||[];i.forEach(e.bind(null,0)),i.push=e.bind(null,i.push.bind(i))})();var n={};return(()=>{async function t(t,e=!0){const{loadBaseMover:i}=await s.e(561).then(s.bind(s,561)),{loadCircleShape:o}=await s.e(201).then(s.bind(s,5201)),{loadColorUpdater:n}=await s.e(974).then(s.bind(s,6974)),{loadOpacityUpdater:a}=await s.e(264).then(s.bind(s,4264)),{loadOutModesUpdater:r}=await s.e(469).then(s.bind(s,8469)),{loadSizeUpdater:l}=await s.e(154).then(s.bind(s,4154));await i(t,!1),await o(t,!1),await n(t,!1),await a(t,!1),await r(t,!1),await l(t,!1),await t.refresh(e)}s.r(n),s.d(n,{AnimatableColor:()=>e.A9,AnimationOptions:()=>e.pK,AnimationValueWithRandom:()=>e.Jm,Background:()=>e.VS,BackgroundMask:()=>e.TH,BackgroundMaskCover:()=>e.ys,BaseRange:()=>e.dg,Circle:()=>e.jl,ClickEvent:()=>e.rX,Collisions:()=>e.cV,CollisionsAbsorb:()=>e.N_,CollisionsOverlap:()=>e.Fr,ColorAnimation:()=>e.ev,DivEvent:()=>e.GW,Events:()=>e.sV,ExternalInteractorBase:()=>e.sJ,FullScreen:()=>e.mc,HoverEvent:()=>e.LO,HslAnimation:()=>e.i7,HslColorManager:()=>e.kG,Interactivity:()=>e.kf,ManualParticle:()=>e.jL,Modes:()=>e.dX,Move:()=>e.yU,MoveAngle:()=>e.hz,MoveAttract:()=>e.RE,MoveCenter:()=>e.Zg,MoveGravity:()=>e.y1,MovePath:()=>e.vU,MoveTrail:()=>e.OG,Opacity:()=>e.Y4,OpacityAnimation:()=>e.Ih,Options:()=>e.JY,OptionsColor:()=>e.Oi,OutModes:()=>e.j$,Parallax:()=>e.kQ,ParticlesBounce:()=>e.wv,ParticlesBounceFactor:()=>e.F5,ParticlesDensity:()=>e.M1,ParticlesInteractorBase:()=>e.U4,ParticlesNumber:()=>e.Ne,ParticlesNumberLimit:()=>e.Ad,ParticlesOptions:()=>e.UO,Point:()=>e.bR,RangedAnimationOptions:()=>e.Q4,RangedAnimationValueWithRandom:()=>e.AI,Rectangle:()=>e.M_,ResizeEvent:()=>e.z0,Responsive:()=>e.Ft,RgbColorManager:()=>e.OT,Shadow:()=>e.Vo,Shape:()=>e.yp,Size:()=>e.or,SizeAnimation:()=>e.qv,Spin:()=>e.tK,Stroke:()=>e.tc,Theme:()=>e.Sx,ThemeDefault:()=>e.fK,ValueWithRandom:()=>e.PV,Vector:()=>e.Mi,Vector3d:()=>e.pG,ZIndex:()=>e.Py,addColorManager:()=>e.a9,addEasing:()=>e.nL,alterHsl:()=>e.yx,areBoundsInside:()=>e.O2,arrayRandomIndex:()=>e.n0,calcExactPositionOrRandomFromSize:()=>e.Nx,calcExactPositionOrRandomFromSizeRanged:()=>e.qM,calcPositionFromSize:()=>e.eh,calcPositionOrRandomFromSize:()=>e.Mh,calcPositionOrRandomFromSizeRanged:()=>e.l1,calculateBounds:()=>e.AE,circleBounce:()=>e.pE,circleBounceDataFromParticle:()=>e.Tg,clamp:()=>e.qE,clear:()=>e.IU,collisionVelocity:()=>e.OW,colorMix:()=>e.EY,colorToHsl:()=>e.mK,colorToRgb:()=>e.qe,deepExtend:()=>e.zw,degToRad:()=>e.pu,divMode:()=>e.NV,divModeExecute:()=>e.U6,drawEffect:()=>e.QC,drawLine:()=>e.V6,drawParticle:()=>e.p0,drawParticlePlugin:()=>e.Wb,drawPlugin:()=>e.e_,drawShape:()=>e.KG,drawShapeAfterDraw:()=>e.gF,errorPrefix:()=>e.dI,executeOnSingleOrMultiple:()=>e.wJ,findItemFromSingleOrMultiple:()=>e.w3,generatedAttribute:()=>e.eb,getDistance:()=>e.Yf,getDistances:()=>e.vr,getEasing:()=>e.il,getHslAnimationFromHsl:()=>e.pz,getHslFromAnimation:()=>e.O_,getLinkColor:()=>e._h,getLinkRandomColor:()=>e.PG,getLogger:()=>e.tZ,getParticleBaseVelocity:()=>e.$m,getParticleDirectionAngle:()=>e.ak,getPosition:()=>e.E9,getRandom:()=>e.G0,getRandomRgbColor:()=>e.OH,getRangeMax:()=>e.W9,getRangeMin:()=>e.Sg,getRangeValue:()=>e.VG,getSize:()=>e.YC,getStyleFromHsl:()=>e.LC,getStyleFromRgb:()=>e.xx,halfRandom:()=>e.N3,hasMatchMedia:()=>e.q8,hslToRgb:()=>e.YL,hslaToRgba:()=>e.ay,initParticleNumericAnimationValue:()=>e.Xs,isArray:()=>e.cy,isBoolean:()=>e.Lm,isDivModeEnabled:()=>e.iK,isFunction:()=>e.Tn,isInArray:()=>e.hn,isNumber:()=>e.Et,isObject:()=>e.Gv,isPointInside:()=>e.Tj,isSsr:()=>e.B9,isString:()=>e.Kg,itemFromArray:()=>e.Vh,itemFromSingleOrMultiple:()=>e.TA,loadBasic:()=>t,loadFont:()=>e.Al,loadOptions:()=>e.ZG,loadParticlesOptions:()=>e.yV,millisecondsToSeconds:()=>e.Xu,mix:()=>e.jh,mouseDownEvent:()=>e.ms,mouseLeaveEvent:()=>e.Z0,mouseMoveEvent:()=>e.Rb,mouseOutEvent:()=>e.sf,mouseUpEvent:()=>e.vo,paintBase:()=>e.Sn,paintImage:()=>e.Md,parseAlpha:()=>e.M3,percentDenominator:()=>e.a5,randomInRange:()=>e.BH,rangeColorToHsl:()=>e.R5,rangeColorToRgb:()=>e.BN,rectBounce:()=>e.jo,resizeEvent:()=>e.NF,rgbToHsl:()=>e.K6,safeIntersectionObserver:()=>e.BR,safeMatchMedia:()=>e.lV,safeMutationObserver:()=>e.tG,setLogger:()=>e.Br,setRandom:()=>e.OE,setRangeValue:()=>e.DT,singleDivModeExecute:()=>e.S7,stringToAlpha:()=>e.zI,stringToRgb:()=>e.eg,touchCancelEvent:()=>e.G3,touchEndEvent:()=>e.Bp,touchMoveEvent:()=>e.DG,touchStartEvent:()=>e.s7,tsParticles:()=>e.$k,updateAnimation:()=>e.UC,updateColor:()=>e.Jv,updateColorValue:()=>e.Ko,visibilityChangeEvent:()=>e.nK});var e=s(5540);t(e.$k)})(),n})()));

@@ -1,1 +0,1 @@

/*! tsParticles Basic v3.2.2 by Matteo Bruni */
/*! tsParticles Basic v3.3.0 by Matteo Bruni */

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -10,0 +10,0 @@ /*

/*! For license information please see tsparticles.basic.min.js.LICENSE.txt */
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/updater-size"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-color"),require("@tsparticles/shape-circle"),require("@tsparticles/move-base"));else if("function"==typeof define&&define.amd)define(["@tsparticles/updater-size","@tsparticles/updater-out-modes","@tsparticles/updater-opacity","@tsparticles/updater-color","@tsparticles/shape-circle","@tsparticles/move-base"],t);else{var r="object"==typeof exports?t(require("@tsparticles/updater-size"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-color"),require("@tsparticles/shape-circle"),require("@tsparticles/move-base")):t(e.window,e.window,e.window,e.window,e.window,e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,((e,t,r,o,a,i)=>(()=>{var s,p,d={619:e=>{e.exports=i},163:e=>{e.exports=a},501:e=>{e.exports=o},686:e=>{e.exports=r},290:e=>{e.exports=t},2:t=>{t.exports=e}},l={};function c(e){var t=l[e];if(void 0!==t)return t.exports;var r=l[e]={exports:{}};return d[e](r,r.exports,c),r.exports}p=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,c.t=function(e,t){if(1&t&&(e=this(e)),8&t)return e;if("object"==typeof e&&e){if(4&t&&e.__esModule)return e;if(16&t&&"function"==typeof e.then)return e}var r=Object.create(null);c.r(r);var o={};s=s||[null,p({}),p([]),p(p)];for(var a=2&t&&e;"object"==typeof a&&!~s.indexOf(a);a=p(a))Object.getOwnPropertyNames(a).forEach((t=>o[t]=()=>e[t]));return o.default=()=>e,c.d(r,o),r},c.d=(e,t)=>{for(var r in t)c.o(t,r)&&!c.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},c.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),c.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};return(()=>{async function e(e,t=!0){const{loadBaseMover:r}=await Promise.resolve().then(c.t.bind(c,619,23)),{loadCircleShape:o}=await Promise.resolve().then(c.t.bind(c,163,23)),{loadColorUpdater:a}=await Promise.resolve().then(c.t.bind(c,501,23)),{loadOpacityUpdater:i}=await Promise.resolve().then(c.t.bind(c,686,23)),{loadOutModesUpdater:s}=await Promise.resolve().then(c.t.bind(c,290,23)),{loadSizeUpdater:p}=await Promise.resolve().then(c.t.bind(c,2,23));await r(e,!1),await o(e,!1),await a(e,!1),await i(e,!1),await s(e,!1),await p(e,!1),await e.refresh(t)}c.r(n),c.d(n,{loadBasic:()=>e})})(),n})()));
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("@tsparticles/updater-size"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-color"),require("@tsparticles/shape-circle"),require("@tsparticles/move-base"));else if("function"==typeof define&&define.amd)define(["@tsparticles/updater-size","@tsparticles/updater-out-modes","@tsparticles/updater-opacity","@tsparticles/updater-color","@tsparticles/shape-circle","@tsparticles/move-base"],t);else{var r="object"==typeof exports?t(require("@tsparticles/updater-size"),require("@tsparticles/updater-out-modes"),require("@tsparticles/updater-opacity"),require("@tsparticles/updater-color"),require("@tsparticles/shape-circle"),require("@tsparticles/move-base")):t(e.window,e.window,e.window,e.window,e.window,e.window);for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(this,((e,t,r,o,a,i)=>(()=>{var s,p,d={522:e=>{e.exports=i},969:e=>{e.exports=a},116:e=>{e.exports=o},898:e=>{e.exports=r},694:e=>{e.exports=t},394:t=>{t.exports=e}},l={};function c(e){var t=l[e];if(void 0!==t)return t.exports;var r=l[e]={exports:{}};return d[e](r,r.exports,c),r.exports}p=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,c.t=function(e,t){if(1&t&&(e=this(e)),8&t)return e;if("object"==typeof e&&e){if(4&t&&e.__esModule)return e;if(16&t&&"function"==typeof e.then)return e}var r=Object.create(null);c.r(r);var o={};s=s||[null,p({}),p([]),p(p)];for(var a=2&t&&e;"object"==typeof a&&!~s.indexOf(a);a=p(a))Object.getOwnPropertyNames(a).forEach((t=>o[t]=()=>e[t]));return o.default=()=>e,c.d(r,o),r},c.d=(e,t)=>{for(var r in t)c.o(t,r)&&!c.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},c.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),c.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};return(()=>{async function e(e,t=!0){const{loadBaseMover:r}=await Promise.resolve().then(c.t.bind(c,522,23)),{loadCircleShape:o}=await Promise.resolve().then(c.t.bind(c,969,23)),{loadColorUpdater:a}=await Promise.resolve().then(c.t.bind(c,116,23)),{loadOpacityUpdater:i}=await Promise.resolve().then(c.t.bind(c,898,23)),{loadOutModesUpdater:s}=await Promise.resolve().then(c.t.bind(c,694,23)),{loadSizeUpdater:p}=await Promise.resolve().then(c.t.bind(c,394,23));await r(e,!1),await o(e,!1),await a(e,!1),await i(e,!1),await s(e,!1),await p(e,!1),await e.refresh(t)}c.r(n),c.d(n,{loadBasic:()=>e})})(),n})()));

@@ -1,1 +0,1 @@

/*! tsParticles Basic v3.2.2 by Matteo Bruni */
/*! tsParticles Basic v3.3.0 by Matteo Bruni */

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -27,3 +27,3 @@ "use strict";

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ColorUpdater: () => (/* binding */ ColorUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nclass ColorUpdater {\n constructor(container) {\n this.container = container;\n }\n async init(particle) {\n const hslColor = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.rangeColorToHsl)(particle.options.color, particle.id, particle.options.reduceDuplicates);\n if (hslColor) {\n particle.color = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getHslAnimationFromHsl)(hslColor, particle.options.color.animation, this.container.retina.reduceFactor);\n }\n await Promise.resolve();\n }\n isEnabled(particle) {\n const {\n h: hAnimation,\n s: sAnimation,\n l: lAnimation\n } = particle.options.color.animation,\n {\n color\n } = particle;\n return !particle.destroyed && !particle.spawning && (color?.h.value !== undefined && hAnimation.enable || color?.s.value !== undefined && sAnimation.enable || color?.l.value !== undefined && lAnimation.enable);\n }\n async update(particle, delta) {\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateColor)(particle.color, delta);\n await Promise.resolve();\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/color/dist/browser/ColorUpdater.js?");
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ ColorUpdater: () => (/* binding */ ColorUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nclass ColorUpdater {\n constructor(container) {\n this.container = container;\n }\n init(particle) {\n const hslColor = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.rangeColorToHsl)(particle.options.color, particle.id, particle.options.reduceDuplicates);\n if (hslColor) {\n particle.color = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getHslAnimationFromHsl)(hslColor, particle.options.color.animation, this.container.retina.reduceFactor);\n }\n }\n isEnabled(particle) {\n const {\n h: hAnimation,\n s: sAnimation,\n l: lAnimation\n } = particle.options.color.animation,\n {\n color\n } = particle;\n return !particle.destroyed && !particle.spawning && (color?.h.value !== undefined && hAnimation.enable || color?.s.value !== undefined && sAnimation.enable || color?.l.value !== undefined && lAnimation.enable);\n }\n update(particle, delta) {\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateColor)(particle.color, delta);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/color/dist/browser/ColorUpdater.js?");

@@ -30,0 +30,0 @@ /***/ })

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -10,0 +10,0 @@ "use strict";

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -10,0 +10,0 @@ "use strict";

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -27,3 +27,3 @@ "use strict";

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OpacityUpdater: () => (/* binding */ OpacityUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nclass OpacityUpdater {\n constructor(container) {\n this.container = container;\n }\n async init(particle) {\n const opacityOptions = particle.options.opacity,\n pxRatio = 1;\n particle.opacity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.initParticleNumericAnimationValue)(opacityOptions, pxRatio);\n const opacityAnimation = opacityOptions.animation;\n if (opacityAnimation.enable) {\n particle.opacity.velocity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(opacityAnimation.speed) / _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.percentDenominator * this.container.retina.reduceFactor;\n if (!opacityAnimation.sync) {\n particle.opacity.velocity *= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)();\n }\n }\n await Promise.resolve();\n }\n isEnabled(particle) {\n const none = 0;\n return !particle.destroyed && !particle.spawning && !!particle.opacity && particle.opacity.enable && ((particle.opacity.maxLoops ?? none) <= none || (particle.opacity.maxLoops ?? none) > none && (particle.opacity.loops ?? none) < (particle.opacity.maxLoops ?? none));\n }\n reset(particle) {\n if (particle.opacity) {\n particle.opacity.time = 0;\n particle.opacity.loops = 0;\n }\n }\n async update(particle, delta) {\n if (!this.isEnabled(particle) || !particle.opacity) {\n return;\n }\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateAnimation)(particle, particle.opacity, true, particle.options.opacity.animation.destroy, delta);\n await Promise.resolve();\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/opacity/dist/browser/OpacityUpdater.js?");
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OpacityUpdater: () => (/* binding */ OpacityUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nclass OpacityUpdater {\n constructor(container) {\n this.container = container;\n }\n init(particle) {\n const opacityOptions = particle.options.opacity,\n pxRatio = 1;\n particle.opacity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.initParticleNumericAnimationValue)(opacityOptions, pxRatio);\n const opacityAnimation = opacityOptions.animation;\n if (opacityAnimation.enable) {\n particle.opacity.velocity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(opacityAnimation.speed) / _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.percentDenominator * this.container.retina.reduceFactor;\n if (!opacityAnimation.sync) {\n particle.opacity.velocity *= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)();\n }\n }\n }\n isEnabled(particle) {\n const none = 0;\n return !particle.destroyed && !particle.spawning && !!particle.opacity && particle.opacity.enable && ((particle.opacity.maxLoops ?? none) <= none || (particle.opacity.maxLoops ?? none) > none && (particle.opacity.loops ?? none) < (particle.opacity.maxLoops ?? none));\n }\n reset(particle) {\n if (particle.opacity) {\n particle.opacity.time = 0;\n particle.opacity.loops = 0;\n }\n }\n update(particle, delta) {\n if (!this.isEnabled(particle) || !particle.opacity) {\n return;\n }\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateAnimation)(particle, particle.opacity, true, particle.options.opacity.animation.destroy, delta);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/opacity/dist/browser/OpacityUpdater.js?");

@@ -30,0 +30,0 @@ /***/ })

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -10,0 +10,0 @@ "use strict";

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -21,2 +21,32 @@ "use strict";

/***/ "../../updaters/outModes/dist/browser/BounceOutMode.js":
/*!*************************************************************!*\
!*** ../../updaters/outModes/dist/browser/BounceOutMode.js ***!
\*************************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ BounceOutMode: () => (/* binding */ BounceOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n/* harmony import */ var _Utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Utils.js */ \"../../updaters/outModes/dist/browser/Utils.js\");\n\n\nclass BounceOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [\"bounce\", \"split\"];\n }\n update(particle, direction, delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n const container = this.container;\n let handled = false;\n for (const [, plugin] of container.plugins) {\n if (plugin.particleBounce !== undefined) {\n handled = plugin.particleBounce(particle, delta, direction);\n }\n if (handled) {\n break;\n }\n }\n if (handled) {\n return;\n }\n const pos = particle.getPosition(),\n offset = particle.offset,\n size = particle.getRadius(),\n bounds = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.calculateBounds)(pos, size),\n canvasSize = container.canvas.size;\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.bounceHorizontal)({\n particle,\n outMode,\n direction,\n bounds,\n canvasSize,\n offset,\n size\n });\n (0,_Utils_js__WEBPACK_IMPORTED_MODULE_1__.bounceVertical)({\n particle,\n outMode,\n direction,\n bounds,\n canvasSize,\n offset,\n size\n });\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/outModes/dist/browser/BounceOutMode.js?");
/***/ }),
/***/ "../../updaters/outModes/dist/browser/DestroyOutMode.js":
/*!**************************************************************!*\
!*** ../../updaters/outModes/dist/browser/DestroyOutMode.js ***!
\**************************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ DestroyOutMode: () => (/* binding */ DestroyOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst minVelocity = 0;\nclass DestroyOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [\"destroy\"];\n }\n update(particle, direction, _delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n const container = this.container;\n switch (particle.outType) {\n case \"normal\":\n case \"outside\":\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isPointInside)(particle.position, container.canvas.size, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin, particle.getRadius(), direction)) {\n return;\n }\n break;\n case \"inside\":\n {\n const {\n dx,\n dy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, particle.moveCenter),\n {\n x: vx,\n y: vy\n } = particle.velocity;\n if (vx < minVelocity && dx > particle.moveCenter.radius || vy < minVelocity && dy > particle.moveCenter.radius || vx >= minVelocity && dx < -particle.moveCenter.radius || vy >= minVelocity && dy < -particle.moveCenter.radius) {\n return;\n }\n break;\n }\n }\n container.particles.remove(particle, undefined, true);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/outModes/dist/browser/DestroyOutMode.js?");
/***/ }),
/***/ "../../updaters/outModes/dist/browser/NoneOutMode.js":
/*!***********************************************************!*\
!*** ../../updaters/outModes/dist/browser/NoneOutMode.js ***!
\***********************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ NoneOutMode: () => (/* binding */ NoneOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst minVelocity = 0;\nclass NoneOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [\"none\"];\n }\n update(particle, direction, delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n if ((particle.options.move.distance.horizontal && (direction === \"left\" || direction === \"right\")) ?? (particle.options.move.distance.vertical && (direction === \"top\" || direction === \"bottom\"))) {\n return;\n }\n const gravityOptions = particle.options.move.gravity,\n container = this.container,\n canvasSize = container.canvas.size,\n pRadius = particle.getRadius();\n if (!gravityOptions.enable) {\n if (particle.velocity.y > minVelocity && particle.position.y <= canvasSize.height + pRadius || particle.velocity.y < minVelocity && particle.position.y >= -pRadius || particle.velocity.x > minVelocity && particle.position.x <= canvasSize.width + pRadius || particle.velocity.x < minVelocity && particle.position.x >= -pRadius) {\n return;\n }\n if (!(0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isPointInside)(particle.position, container.canvas.size, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin, pRadius, direction)) {\n container.particles.remove(particle);\n }\n } else {\n const position = particle.position;\n if (!gravityOptions.inverse && position.y > canvasSize.height + pRadius && direction === \"bottom\" || gravityOptions.inverse && position.y < -pRadius && direction === \"top\") {\n container.particles.remove(particle);\n }\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/outModes/dist/browser/NoneOutMode.js?");
/***/ }),
/***/ "../../updaters/outModes/dist/browser/OutOfCanvasUpdater.js":

@@ -28,6 +58,26 @@ /*!******************************************************************!*\

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OutOfCanvasUpdater: () => (/* binding */ OutOfCanvasUpdater)\n/* harmony export */ });\nconst checkOutMode = (outModes, outMode) => {\n return outModes.default === outMode || outModes.bottom === outMode || outModes.left === outMode || outModes.right === outMode || outModes.top === outMode;\n};\nclass OutOfCanvasUpdater {\n constructor(container) {\n this._updateOutMode = async (particle, delta, outMode, direction) => {\n for (const updater of this.updaters) {\n await updater.update(particle, direction, delta, outMode);\n }\n };\n this.container = container;\n this.updaters = [];\n }\n async init(particle) {\n this.updaters = [];\n const outModes = particle.options.move.outModes;\n if (checkOutMode(outModes, \"bounce\")) {\n const {\n BounceOutMode\n } = await __webpack_require__.e(/*! import() */ \"updaters_outModes_dist_browser_BounceOutMode_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./BounceOutMode.js */ \"../../updaters/outModes/dist/browser/BounceOutMode.js\"));\n this.updaters.push(new BounceOutMode(this.container));\n } else if (checkOutMode(outModes, \"out\")) {\n const {\n OutOutMode\n } = await __webpack_require__.e(/*! import() */ \"updaters_outModes_dist_browser_OutOutMode_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./OutOutMode.js */ \"../../updaters/outModes/dist/browser/OutOutMode.js\"));\n this.updaters.push(new OutOutMode(this.container));\n } else if (checkOutMode(outModes, \"destroy\")) {\n const {\n DestroyOutMode\n } = await __webpack_require__.e(/*! import() */ \"updaters_outModes_dist_browser_DestroyOutMode_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./DestroyOutMode.js */ \"../../updaters/outModes/dist/browser/DestroyOutMode.js\"));\n this.updaters.push(new DestroyOutMode(this.container));\n } else if (checkOutMode(outModes, \"none\")) {\n const {\n NoneOutMode\n } = await __webpack_require__.e(/*! import() */ \"updaters_outModes_dist_browser_NoneOutMode_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./NoneOutMode.js */ \"../../updaters/outModes/dist/browser/NoneOutMode.js\"));\n this.updaters.push(new NoneOutMode(this.container));\n }\n }\n isEnabled(particle) {\n return !particle.destroyed && !particle.spawning;\n }\n async update(particle, delta) {\n const outModes = particle.options.move.outModes;\n await this._updateOutMode(particle, delta, outModes.bottom ?? outModes.default, \"bottom\");\n await this._updateOutMode(particle, delta, outModes.left ?? outModes.default, \"left\");\n await this._updateOutMode(particle, delta, outModes.right ?? outModes.default, \"right\");\n await this._updateOutMode(particle, delta, outModes.top ?? outModes.default, \"top\");\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/outModes/dist/browser/OutOfCanvasUpdater.js?");
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OutOfCanvasUpdater: () => (/* binding */ OutOfCanvasUpdater)\n/* harmony export */ });\n/* harmony import */ var _BounceOutMode_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BounceOutMode.js */ \"../../updaters/outModes/dist/browser/BounceOutMode.js\");\n/* harmony import */ var _DestroyOutMode_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DestroyOutMode.js */ \"../../updaters/outModes/dist/browser/DestroyOutMode.js\");\n/* harmony import */ var _NoneOutMode_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./NoneOutMode.js */ \"../../updaters/outModes/dist/browser/NoneOutMode.js\");\n/* harmony import */ var _OutOutMode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./OutOutMode.js */ \"../../updaters/outModes/dist/browser/OutOutMode.js\");\n\n\n\n\nconst checkOutMode = (outModes, outMode) => {\n return outModes.default === outMode || outModes.bottom === outMode || outModes.left === outMode || outModes.right === outMode || outModes.top === outMode;\n};\nclass OutOfCanvasUpdater {\n constructor(container) {\n this._updateOutMode = (particle, delta, outMode, direction) => {\n for (const updater of this.updaters) {\n updater.update(particle, direction, delta, outMode);\n }\n };\n this.container = container;\n this.updaters = [];\n }\n init(particle) {\n this.updaters = [];\n const outModes = particle.options.move.outModes;\n if (checkOutMode(outModes, \"bounce\")) {\n this.updaters.push(new _BounceOutMode_js__WEBPACK_IMPORTED_MODULE_0__.BounceOutMode(this.container));\n } else if (checkOutMode(outModes, \"out\")) {\n this.updaters.push(new _OutOutMode_js__WEBPACK_IMPORTED_MODULE_3__.OutOutMode(this.container));\n } else if (checkOutMode(outModes, \"destroy\")) {\n this.updaters.push(new _DestroyOutMode_js__WEBPACK_IMPORTED_MODULE_1__.DestroyOutMode(this.container));\n } else if (checkOutMode(outModes, \"none\")) {\n this.updaters.push(new _NoneOutMode_js__WEBPACK_IMPORTED_MODULE_2__.NoneOutMode(this.container));\n }\n }\n isEnabled(particle) {\n return !particle.destroyed && !particle.spawning;\n }\n update(particle, delta) {\n const outModes = particle.options.move.outModes;\n this._updateOutMode(particle, delta, outModes.bottom ?? outModes.default, \"bottom\");\n this._updateOutMode(particle, delta, outModes.left ?? outModes.default, \"left\");\n this._updateOutMode(particle, delta, outModes.right ?? outModes.default, \"right\");\n this._updateOutMode(particle, delta, outModes.top ?? outModes.default, \"top\");\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/outModes/dist/browser/OutOfCanvasUpdater.js?");
/***/ }),
/***/ "../../updaters/outModes/dist/browser/OutOutMode.js":
/*!**********************************************************!*\
!*** ../../updaters/outModes/dist/browser/OutOutMode.js ***!
\**********************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ OutOutMode: () => (/* binding */ OutOutMode)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst minVelocity = 0,\n minDistance = 0;\nclass OutOutMode {\n constructor(container) {\n this.container = container;\n this.modes = [\"out\"];\n }\n update(particle, direction, delta, outMode) {\n if (!this.modes.includes(outMode)) {\n return;\n }\n const container = this.container;\n switch (particle.outType) {\n case \"inside\":\n {\n const {\n x: vx,\n y: vy\n } = particle.velocity;\n const circVec = _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin;\n circVec.length = particle.moveCenter.radius;\n circVec.angle = particle.velocity.angle + Math.PI;\n circVec.addTo(_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.create(particle.moveCenter));\n const {\n dx,\n dy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, circVec);\n if (vx <= minVelocity && dx >= minDistance || vy <= minVelocity && dy >= minDistance || vx >= minVelocity && dx <= minDistance || vy >= minVelocity && dy <= minDistance) {\n return;\n }\n particle.position.x = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: 0,\n max: container.canvas.size.width\n }));\n particle.position.y = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: 0,\n max: container.canvas.size.height\n }));\n const {\n dx: newDx,\n dy: newDy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, particle.moveCenter);\n particle.direction = Math.atan2(-newDy, -newDx);\n particle.velocity.angle = particle.direction;\n break;\n }\n default:\n {\n if ((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.isPointInside)(particle.position, container.canvas.size, _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.Vector.origin, particle.getRadius(), direction)) {\n return;\n }\n switch (particle.outType) {\n case \"outside\":\n {\n particle.position.x = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: -particle.moveCenter.radius,\n max: particle.moveCenter.radius\n })) + particle.moveCenter.x;\n particle.position.y = Math.floor((0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.randomInRange)({\n min: -particle.moveCenter.radius,\n max: particle.moveCenter.radius\n })) + particle.moveCenter.y;\n const {\n dx,\n dy\n } = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getDistances)(particle.position, particle.moveCenter);\n if (particle.moveCenter.radius) {\n particle.direction = Math.atan2(dy, dx);\n particle.velocity.angle = particle.direction;\n }\n break;\n }\n case \"normal\":\n {\n const warp = particle.options.move.warp,\n canvasSize = container.canvas.size,\n newPos = {\n bottom: canvasSize.height + particle.getRadius() + particle.offset.y,\n left: -particle.getRadius() - particle.offset.x,\n right: canvasSize.width + particle.getRadius() + particle.offset.x,\n top: -particle.getRadius() - particle.offset.y\n },\n sizeValue = particle.getRadius(),\n nextBounds = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.calculateBounds)(particle.position, sizeValue);\n if (direction === \"right\" && nextBounds.left > canvasSize.width + particle.offset.x) {\n particle.position.x = newPos.left;\n particle.initialPosition.x = particle.position.x;\n if (!warp) {\n particle.position.y = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.height;\n particle.initialPosition.y = particle.position.y;\n }\n } else if (direction === \"left\" && nextBounds.right < -particle.offset.x) {\n particle.position.x = newPos.right;\n particle.initialPosition.x = particle.position.x;\n if (!warp) {\n particle.position.y = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.height;\n particle.initialPosition.y = particle.position.y;\n }\n }\n if (direction === \"bottom\" && nextBounds.top > canvasSize.height + particle.offset.y) {\n if (!warp) {\n particle.position.x = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.width;\n particle.initialPosition.x = particle.position.x;\n }\n particle.position.y = newPos.top;\n particle.initialPosition.y = particle.position.y;\n } else if (direction === \"top\" && nextBounds.bottom < -particle.offset.y) {\n if (!warp) {\n particle.position.x = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)() * canvasSize.width;\n particle.initialPosition.x = particle.position.x;\n }\n particle.position.y = newPos.bottom;\n particle.initialPosition.y = particle.position.y;\n }\n break;\n }\n }\n break;\n }\n }\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/outModes/dist/browser/OutOutMode.js?");
/***/ }),
/***/ "../../updaters/outModes/dist/browser/Utils.js":
/*!*****************************************************!*\
!*** ../../updaters/outModes/dist/browser/Utils.js ***!
\*****************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ bounceHorizontal: () => (/* binding */ bounceHorizontal),\n/* harmony export */ bounceVertical: () => (/* binding */ bounceVertical)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst minVelocity = 0,\n boundsMin = 0;\nfunction bounceHorizontal(data) {\n if (data.outMode !== \"bounce\" && data.outMode !== \"split\" || data.direction !== \"left\" && data.direction !== \"right\") {\n return;\n }\n if (data.bounds.right < boundsMin && data.direction === \"left\") {\n data.particle.position.x = data.size + data.offset.x;\n } else if (data.bounds.left > data.canvasSize.width && data.direction === \"right\") {\n data.particle.position.x = data.canvasSize.width - data.size - data.offset.x;\n }\n const velocity = data.particle.velocity.x;\n let bounced = false;\n if (data.direction === \"right\" && data.bounds.right >= data.canvasSize.width && velocity > minVelocity || data.direction === \"left\" && data.bounds.left <= boundsMin && velocity < minVelocity) {\n const newVelocity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(data.particle.options.bounce.horizontal.value);\n data.particle.velocity.x *= -newVelocity;\n bounced = true;\n }\n if (!bounced) {\n return;\n }\n const minPos = data.offset.x + data.size;\n if (data.bounds.right >= data.canvasSize.width && data.direction === \"right\") {\n data.particle.position.x = data.canvasSize.width - minPos;\n } else if (data.bounds.left <= boundsMin && data.direction === \"left\") {\n data.particle.position.x = minPos;\n }\n if (data.outMode === \"split\") {\n data.particle.destroy();\n }\n}\nfunction bounceVertical(data) {\n if (data.outMode !== \"bounce\" && data.outMode !== \"split\" || data.direction !== \"bottom\" && data.direction !== \"top\") {\n return;\n }\n if (data.bounds.bottom < boundsMin && data.direction === \"top\") {\n data.particle.position.y = data.size + data.offset.y;\n } else if (data.bounds.top > data.canvasSize.height && data.direction === \"bottom\") {\n data.particle.position.y = data.canvasSize.height - data.size - data.offset.y;\n }\n const velocity = data.particle.velocity.y;\n let bounced = false;\n if (data.direction === \"bottom\" && data.bounds.bottom >= data.canvasSize.height && velocity > minVelocity || data.direction === \"top\" && data.bounds.top <= boundsMin && velocity < minVelocity) {\n const newVelocity = (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRangeValue)(data.particle.options.bounce.vertical.value);\n data.particle.velocity.y *= -newVelocity;\n bounced = true;\n }\n if (!bounced) {\n return;\n }\n const minPos = data.offset.y + data.size;\n if (data.bounds.bottom >= data.canvasSize.height && data.direction === \"bottom\") {\n data.particle.position.y = data.canvasSize.height - minPos;\n } else if (data.bounds.top <= boundsMin && data.direction === \"top\") {\n data.particle.position.y = minPos;\n }\n if (data.outMode === \"split\") {\n data.particle.destroy();\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/outModes/dist/browser/Utils.js?");
/***/ })
}]);

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -10,0 +10,0 @@ "use strict";

@@ -7,3 +7,3 @@ /*!

* How to use? : Check the GitHub README
* v3.2.2
* v3.3.0
*/

@@ -27,3 +27,3 @@ "use strict";

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ SizeUpdater: () => (/* binding */ SizeUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst minLoops = 0;\nclass SizeUpdater {\n async init(particle) {\n const container = particle.container,\n sizeOptions = particle.options.size,\n sizeAnimation = sizeOptions.animation;\n if (sizeAnimation.enable) {\n particle.size.velocity = (particle.retina.sizeAnimationSpeed ?? container.retina.sizeAnimationSpeed) / _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.percentDenominator * container.retina.reduceFactor;\n if (!sizeAnimation.sync) {\n particle.size.velocity *= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)();\n }\n }\n await Promise.resolve();\n }\n isEnabled(particle) {\n return !particle.destroyed && !particle.spawning && particle.size.enable && ((particle.size.maxLoops ?? minLoops) <= minLoops || (particle.size.maxLoops ?? minLoops) > minLoops && (particle.size.loops ?? minLoops) < (particle.size.maxLoops ?? minLoops));\n }\n reset(particle) {\n particle.size.loops = minLoops;\n }\n async update(particle, delta) {\n if (!this.isEnabled(particle)) {\n return;\n }\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateAnimation)(particle, particle.size, true, particle.options.size.animation.destroy, delta);\n await Promise.resolve();\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/size/dist/browser/SizeUpdater.js?");
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ SizeUpdater: () => (/* binding */ SizeUpdater)\n/* harmony export */ });\n/* harmony import */ var _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @tsparticles/engine */ \"../../engine/dist/browser/index.js\");\n\nconst minLoops = 0;\nclass SizeUpdater {\n init(particle) {\n const container = particle.container,\n sizeOptions = particle.options.size,\n sizeAnimation = sizeOptions.animation;\n if (sizeAnimation.enable) {\n particle.size.velocity = (particle.retina.sizeAnimationSpeed ?? container.retina.sizeAnimationSpeed) / _tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.percentDenominator * container.retina.reduceFactor;\n if (!sizeAnimation.sync) {\n particle.size.velocity *= (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.getRandom)();\n }\n }\n }\n isEnabled(particle) {\n return !particle.destroyed && !particle.spawning && particle.size.enable && ((particle.size.maxLoops ?? minLoops) <= minLoops || (particle.size.maxLoops ?? minLoops) > minLoops && (particle.size.loops ?? minLoops) < (particle.size.maxLoops ?? minLoops));\n }\n reset(particle) {\n particle.size.loops = minLoops;\n }\n update(particle, delta) {\n if (!this.isEnabled(particle)) {\n return;\n }\n (0,_tsparticles_engine__WEBPACK_IMPORTED_MODULE_0__.updateAnimation)(particle, particle.size, true, particle.options.size.animation.destroy, delta);\n }\n}\n\n//# sourceURL=webpack://@tsparticles/basic/../../updaters/size/dist/browser/SizeUpdater.js?");

@@ -30,0 +30,0 @@ /***/ })

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc