@tsparticles/all 3.6.0 → 3.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/browser/index.js +14 -10
- package/cjs/index.js +14 -10
- package/esm/index.js +14 -10
- package/package.json +51 -50
- package/report.html +1 -1
- package/tsparticles.all.bundle.js +272 -212
- package/tsparticles.all.bundle.min.js +1 -1
- package/tsparticles.all.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.all.js +26 -6
- package/tsparticles.all.min.js +1 -1
- package/tsparticles.all.min.js.LICENSE.txt +1 -1
- package/types/index.d.ts +1 -1
- package/umd/index.js +15 -11
package/README.md
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
- [@tsparticles/plugin-hsv-color](https://github.com/tsparticles/tsparticles/tree/main/plugins/hsvColor)
|
|
33
33
|
- [@tsparticles/plugin-infection](https://github.com/tsparticles/tsparticles/tree/main/plugins/infection)
|
|
34
34
|
- [@tsparticles/plugin-motion](https://github.com/tsparticles/tsparticles/tree/main/plugins/motion)
|
|
35
|
+
- [@tsparticles/plugin-named-color](https://github.com/tsparticles/tsparticles/tree/main/plugins/namedColor)
|
|
35
36
|
- [@tsparticles/plugin-polygon-mask](https://github.com/tsparticles/tsparticles/tree/main/plugins/polygonMask)
|
|
36
37
|
- [@tsparticles/plugin-sounds](https://github.com/tsparticles/tsparticles/tree/main/plugins/sounds)
|
|
37
38
|
- [@tsparticles/shape-arrow](https://github.com/tsparticles/tsparticles/tree/main/shapes/arrow)
|
package/browser/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { assertValidVersion } from "@tsparticles/engine";
|
|
1
2
|
import { initPjs } from "@tsparticles/pjs";
|
|
2
3
|
import { loadArrowShape } from "@tsparticles/shape-arrow";
|
|
3
4
|
import { loadBubbleEffect } from "@tsparticles/effect-bubble";
|
|
@@ -30,6 +31,7 @@ import { loadInfectionPlugin } from "@tsparticles/plugin-infection";
|
|
|
30
31
|
import { loadInfinityShape } from "@tsparticles/shape-infinity";
|
|
31
32
|
import { loadLightInteraction } from "@tsparticles/interaction-light";
|
|
32
33
|
import { loadMotionPlugin } from "@tsparticles/plugin-motion";
|
|
34
|
+
import { loadNamedColorPlugin } from "@tsparticles/plugin-named-color";
|
|
33
35
|
import { loadOklchColorPlugin } from "@tsparticles/plugin-oklch-color";
|
|
34
36
|
import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
|
|
35
37
|
import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
|
|
@@ -47,18 +49,20 @@ import { loadSpiralShape } from "@tsparticles/shape-spiral";
|
|
|
47
49
|
import { loadTrailEffect } from "@tsparticles/effect-trail";
|
|
48
50
|
import { loadZigZagPath } from "@tsparticles/path-zig-zag";
|
|
49
51
|
export async function loadAll(engine, refresh = true) {
|
|
52
|
+
assertValidVersion(engine, "3.7.1");
|
|
50
53
|
initPjs(engine);
|
|
51
54
|
await loadFull(engine, false);
|
|
52
|
-
await loadHsvColorPlugin();
|
|
53
|
-
await
|
|
54
|
-
await
|
|
55
|
-
await
|
|
56
|
-
await
|
|
57
|
-
await
|
|
58
|
-
await
|
|
59
|
-
await
|
|
60
|
-
await
|
|
61
|
-
await
|
|
55
|
+
await loadHsvColorPlugin(engine, false);
|
|
56
|
+
await loadNamedColorPlugin(engine, false);
|
|
57
|
+
await loadOklchColorPlugin(engine, false);
|
|
58
|
+
await loadEasingBackPlugin(engine, false);
|
|
59
|
+
await loadEasingCircPlugin(engine, false);
|
|
60
|
+
await loadEasingCubicPlugin(engine, false);
|
|
61
|
+
await loadEasingExpoPlugin(engine, false);
|
|
62
|
+
await loadEasingLinearPlugin(engine, false);
|
|
63
|
+
await loadEasingQuartPlugin(engine, false);
|
|
64
|
+
await loadEasingQuintPlugin(engine, false);
|
|
65
|
+
await loadEasingSinePlugin(engine, false);
|
|
62
66
|
await loadEmittersShapeCanvas(engine, false);
|
|
63
67
|
await loadEmittersShapePath(engine, false);
|
|
64
68
|
await loadEmittersShapePolygon(engine, false);
|
package/cjs/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.loadAll = loadAll;
|
|
4
|
+
const engine_1 = require("@tsparticles/engine");
|
|
4
5
|
const pjs_1 = require("@tsparticles/pjs");
|
|
5
6
|
const shape_arrow_1 = require("@tsparticles/shape-arrow");
|
|
6
7
|
const effect_bubble_1 = require("@tsparticles/effect-bubble");
|
|
@@ -33,6 +34,7 @@ const plugin_infection_1 = require("@tsparticles/plugin-infection");
|
|
|
33
34
|
const shape_infinity_1 = require("@tsparticles/shape-infinity");
|
|
34
35
|
const interaction_light_1 = require("@tsparticles/interaction-light");
|
|
35
36
|
const plugin_motion_1 = require("@tsparticles/plugin-motion");
|
|
37
|
+
const plugin_named_color_1 = require("@tsparticles/plugin-named-color");
|
|
36
38
|
const plugin_oklch_color_1 = require("@tsparticles/plugin-oklch-color");
|
|
37
39
|
const updater_orbit_1 = require("@tsparticles/updater-orbit");
|
|
38
40
|
const interaction_particles_repulse_1 = require("@tsparticles/interaction-particles-repulse");
|
|
@@ -50,18 +52,20 @@ const shape_spiral_1 = require("@tsparticles/shape-spiral");
|
|
|
50
52
|
const effect_trail_1 = require("@tsparticles/effect-trail");
|
|
51
53
|
const path_zig_zag_1 = require("@tsparticles/path-zig-zag");
|
|
52
54
|
async function loadAll(engine, refresh = true) {
|
|
55
|
+
(0, engine_1.assertValidVersion)(engine, "3.7.1");
|
|
53
56
|
(0, pjs_1.initPjs)(engine);
|
|
54
57
|
await (0, tsparticles_1.loadFull)(engine, false);
|
|
55
|
-
await (0, plugin_hsv_color_1.loadHsvColorPlugin)();
|
|
56
|
-
await (0,
|
|
57
|
-
await (0,
|
|
58
|
-
await (0,
|
|
59
|
-
await (0,
|
|
60
|
-
await (0,
|
|
61
|
-
await (0,
|
|
62
|
-
await (0,
|
|
63
|
-
await (0,
|
|
64
|
-
await (0,
|
|
58
|
+
await (0, plugin_hsv_color_1.loadHsvColorPlugin)(engine, false);
|
|
59
|
+
await (0, plugin_named_color_1.loadNamedColorPlugin)(engine, false);
|
|
60
|
+
await (0, plugin_oklch_color_1.loadOklchColorPlugin)(engine, false);
|
|
61
|
+
await (0, plugin_easing_back_1.loadEasingBackPlugin)(engine, false);
|
|
62
|
+
await (0, plugin_easing_circ_1.loadEasingCircPlugin)(engine, false);
|
|
63
|
+
await (0, plugin_easing_cubic_1.loadEasingCubicPlugin)(engine, false);
|
|
64
|
+
await (0, plugin_easing_expo_1.loadEasingExpoPlugin)(engine, false);
|
|
65
|
+
await (0, plugin_easing_linear_1.loadEasingLinearPlugin)(engine, false);
|
|
66
|
+
await (0, plugin_easing_quart_1.loadEasingQuartPlugin)(engine, false);
|
|
67
|
+
await (0, plugin_easing_quint_1.loadEasingQuintPlugin)(engine, false);
|
|
68
|
+
await (0, plugin_easing_sine_1.loadEasingSinePlugin)(engine, false);
|
|
65
69
|
await (0, plugin_emitters_shape_canvas_1.loadEmittersShapeCanvas)(engine, false);
|
|
66
70
|
await (0, plugin_emitters_shape_path_1.loadEmittersShapePath)(engine, false);
|
|
67
71
|
await (0, plugin_emitters_shape_polygon_1.loadEmittersShapePolygon)(engine, false);
|
package/esm/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { assertValidVersion } from "@tsparticles/engine";
|
|
1
2
|
import { initPjs } from "@tsparticles/pjs";
|
|
2
3
|
import { loadArrowShape } from "@tsparticles/shape-arrow";
|
|
3
4
|
import { loadBubbleEffect } from "@tsparticles/effect-bubble";
|
|
@@ -30,6 +31,7 @@ import { loadInfectionPlugin } from "@tsparticles/plugin-infection";
|
|
|
30
31
|
import { loadInfinityShape } from "@tsparticles/shape-infinity";
|
|
31
32
|
import { loadLightInteraction } from "@tsparticles/interaction-light";
|
|
32
33
|
import { loadMotionPlugin } from "@tsparticles/plugin-motion";
|
|
34
|
+
import { loadNamedColorPlugin } from "@tsparticles/plugin-named-color";
|
|
33
35
|
import { loadOklchColorPlugin } from "@tsparticles/plugin-oklch-color";
|
|
34
36
|
import { loadOrbitUpdater } from "@tsparticles/updater-orbit";
|
|
35
37
|
import { loadParticlesRepulseInteraction } from "@tsparticles/interaction-particles-repulse";
|
|
@@ -47,18 +49,20 @@ import { loadSpiralShape } from "@tsparticles/shape-spiral";
|
|
|
47
49
|
import { loadTrailEffect } from "@tsparticles/effect-trail";
|
|
48
50
|
import { loadZigZagPath } from "@tsparticles/path-zig-zag";
|
|
49
51
|
export async function loadAll(engine, refresh = true) {
|
|
52
|
+
assertValidVersion(engine, "3.7.1");
|
|
50
53
|
initPjs(engine);
|
|
51
54
|
await loadFull(engine, false);
|
|
52
|
-
await loadHsvColorPlugin();
|
|
53
|
-
await
|
|
54
|
-
await
|
|
55
|
-
await
|
|
56
|
-
await
|
|
57
|
-
await
|
|
58
|
-
await
|
|
59
|
-
await
|
|
60
|
-
await
|
|
61
|
-
await
|
|
55
|
+
await loadHsvColorPlugin(engine, false);
|
|
56
|
+
await loadNamedColorPlugin(engine, false);
|
|
57
|
+
await loadOklchColorPlugin(engine, false);
|
|
58
|
+
await loadEasingBackPlugin(engine, false);
|
|
59
|
+
await loadEasingCircPlugin(engine, false);
|
|
60
|
+
await loadEasingCubicPlugin(engine, false);
|
|
61
|
+
await loadEasingExpoPlugin(engine, false);
|
|
62
|
+
await loadEasingLinearPlugin(engine, false);
|
|
63
|
+
await loadEasingQuartPlugin(engine, false);
|
|
64
|
+
await loadEasingQuintPlugin(engine, false);
|
|
65
|
+
await loadEasingSinePlugin(engine, false);
|
|
62
66
|
await loadEmittersShapeCanvas(engine, false);
|
|
63
67
|
await loadEmittersShapePath(engine, false);
|
|
64
68
|
await loadEmittersShapePolygon(engine, false);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/all",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
4
4
|
"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.",
|
|
5
5
|
"homepage": "https://particles.js.org",
|
|
6
6
|
"repository": {
|
|
@@ -99,55 +99,56 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/effect-bubble": "
|
|
103
|
-
"@tsparticles/effect-trail": "
|
|
104
|
-
"@tsparticles/engine": "
|
|
105
|
-
"@tsparticles/interaction-external-particle": "
|
|
106
|
-
"@tsparticles/interaction-external-pop": "
|
|
107
|
-
"@tsparticles/interaction-light": "
|
|
108
|
-
"@tsparticles/interaction-particles-repulse": "
|
|
109
|
-
"@tsparticles/path-curl-noise": "
|
|
110
|
-
"@tsparticles/path-curves": "
|
|
111
|
-
"@tsparticles/path-perlin-noise": "
|
|
112
|
-
"@tsparticles/path-polygon": "
|
|
113
|
-
"@tsparticles/path-simplex-noise": "
|
|
114
|
-
"@tsparticles/path-svg": "
|
|
115
|
-
"@tsparticles/path-zig-zag": "
|
|
116
|
-
"@tsparticles/pjs": "
|
|
117
|
-
"@tsparticles/plugin-canvas-mask": "
|
|
118
|
-
"@tsparticles/plugin-easing-back": "
|
|
119
|
-
"@tsparticles/plugin-easing-circ": "
|
|
120
|
-
"@tsparticles/plugin-easing-cubic": "
|
|
121
|
-
"@tsparticles/plugin-easing-expo": "
|
|
122
|
-
"@tsparticles/plugin-easing-linear": "
|
|
123
|
-
"@tsparticles/plugin-easing-quart": "
|
|
124
|
-
"@tsparticles/plugin-easing-quint": "
|
|
125
|
-
"@tsparticles/plugin-easing-sine": "
|
|
126
|
-
"@tsparticles/plugin-emitters-shape-canvas": "
|
|
127
|
-
"@tsparticles/plugin-emitters-shape-path": "
|
|
128
|
-
"@tsparticles/plugin-emitters-shape-polygon": "
|
|
129
|
-
"@tsparticles/plugin-export-image": "
|
|
130
|
-
"@tsparticles/plugin-export-json": "
|
|
131
|
-
"@tsparticles/plugin-export-video": "
|
|
132
|
-
"@tsparticles/plugin-hsv-color": "
|
|
133
|
-
"@tsparticles/plugin-infection": "
|
|
134
|
-
"@tsparticles/plugin-motion": "
|
|
135
|
-
"@tsparticles/plugin-
|
|
136
|
-
"@tsparticles/plugin-
|
|
137
|
-
"@tsparticles/plugin-
|
|
138
|
-
"@tsparticles/plugin-
|
|
139
|
-
"@tsparticles/
|
|
140
|
-
"@tsparticles/shape-
|
|
141
|
-
"@tsparticles/shape-
|
|
142
|
-
"@tsparticles/shape-
|
|
143
|
-
"@tsparticles/shape-
|
|
144
|
-
"@tsparticles/shape-
|
|
145
|
-
"@tsparticles/shape-
|
|
146
|
-
"@tsparticles/shape-rounded-
|
|
147
|
-
"@tsparticles/shape-
|
|
148
|
-
"@tsparticles/
|
|
149
|
-
"@tsparticles/updater-
|
|
150
|
-
"tsparticles": "
|
|
102
|
+
"@tsparticles/effect-bubble": "3.7.1",
|
|
103
|
+
"@tsparticles/effect-trail": "3.7.1",
|
|
104
|
+
"@tsparticles/engine": "3.7.1",
|
|
105
|
+
"@tsparticles/interaction-external-particle": "3.7.1",
|
|
106
|
+
"@tsparticles/interaction-external-pop": "3.7.1",
|
|
107
|
+
"@tsparticles/interaction-light": "3.7.1",
|
|
108
|
+
"@tsparticles/interaction-particles-repulse": "3.7.1",
|
|
109
|
+
"@tsparticles/path-curl-noise": "3.7.1",
|
|
110
|
+
"@tsparticles/path-curves": "3.7.1",
|
|
111
|
+
"@tsparticles/path-perlin-noise": "3.7.1",
|
|
112
|
+
"@tsparticles/path-polygon": "3.7.1",
|
|
113
|
+
"@tsparticles/path-simplex-noise": "3.7.1",
|
|
114
|
+
"@tsparticles/path-svg": "3.7.1",
|
|
115
|
+
"@tsparticles/path-zig-zag": "3.7.1",
|
|
116
|
+
"@tsparticles/pjs": "3.7.1",
|
|
117
|
+
"@tsparticles/plugin-canvas-mask": "3.7.1",
|
|
118
|
+
"@tsparticles/plugin-easing-back": "3.7.1",
|
|
119
|
+
"@tsparticles/plugin-easing-circ": "3.7.1",
|
|
120
|
+
"@tsparticles/plugin-easing-cubic": "3.7.1",
|
|
121
|
+
"@tsparticles/plugin-easing-expo": "3.7.1",
|
|
122
|
+
"@tsparticles/plugin-easing-linear": "3.7.1",
|
|
123
|
+
"@tsparticles/plugin-easing-quart": "3.7.1",
|
|
124
|
+
"@tsparticles/plugin-easing-quint": "3.7.1",
|
|
125
|
+
"@tsparticles/plugin-easing-sine": "3.7.1",
|
|
126
|
+
"@tsparticles/plugin-emitters-shape-canvas": "3.7.1",
|
|
127
|
+
"@tsparticles/plugin-emitters-shape-path": "3.7.1",
|
|
128
|
+
"@tsparticles/plugin-emitters-shape-polygon": "3.7.1",
|
|
129
|
+
"@tsparticles/plugin-export-image": "3.7.1",
|
|
130
|
+
"@tsparticles/plugin-export-json": "3.7.1",
|
|
131
|
+
"@tsparticles/plugin-export-video": "3.7.1",
|
|
132
|
+
"@tsparticles/plugin-hsv-color": "3.7.1",
|
|
133
|
+
"@tsparticles/plugin-infection": "3.7.1",
|
|
134
|
+
"@tsparticles/plugin-motion": "3.7.1",
|
|
135
|
+
"@tsparticles/plugin-named-color": "3.7.1",
|
|
136
|
+
"@tsparticles/plugin-oklch-color": "3.7.1",
|
|
137
|
+
"@tsparticles/plugin-poisson-disc": "3.7.1",
|
|
138
|
+
"@tsparticles/plugin-polygon-mask": "3.7.1",
|
|
139
|
+
"@tsparticles/plugin-sounds": "3.7.1",
|
|
140
|
+
"@tsparticles/shape-arrow": "3.7.1",
|
|
141
|
+
"@tsparticles/shape-cards": "3.7.1",
|
|
142
|
+
"@tsparticles/shape-cog": "3.7.1",
|
|
143
|
+
"@tsparticles/shape-heart": "3.7.1",
|
|
144
|
+
"@tsparticles/shape-infinity": "3.7.1",
|
|
145
|
+
"@tsparticles/shape-path": "3.7.1",
|
|
146
|
+
"@tsparticles/shape-rounded-polygon": "3.7.1",
|
|
147
|
+
"@tsparticles/shape-rounded-rect": "3.7.1",
|
|
148
|
+
"@tsparticles/shape-spiral": "3.7.1",
|
|
149
|
+
"@tsparticles/updater-gradient": "3.7.1",
|
|
150
|
+
"@tsparticles/updater-orbit": "3.7.1",
|
|
151
|
+
"tsparticles": "3.7.1"
|
|
151
152
|
},
|
|
152
153
|
"publishConfig": {
|
|
153
154
|
"access": "public"
|
package/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>@tsparticles/all [
|
|
6
|
+
<title>@tsparticles/all [24 Nov 2024 at 23:48]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|