infinity-forge 7.7.8 → 7.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/components/animation/index.d.ts +23 -0
- package/dist/ui/components/animation/index.js +36 -0
- package/dist/ui/components/animation/index.js.map +1 -0
- package/dist/ui/components/animation/type-animation.d.ts +15 -0
- package/dist/ui/components/animation/type-animation.js +19 -0
- package/dist/ui/components/animation/type-animation.js.map +1 -0
- package/dist/ui/components/index.d.ts +1 -0
- package/dist/ui/components/index.js +1 -0
- package/dist/ui/components/index.js.map +1 -1
- package/dist/ui/utils/http/api.js.map +1 -1
- package/package.json +74 -73
- package/dist/ui/components/form/text-editor/react-quill.css +0 -922
- package/dist/ui/styles/fonts.css +0 -768
- package/dist/ui/styles/reset.css +0 -351
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { types } from './type-animation.js';
|
|
2
|
+
interface Offset {
|
|
3
|
+
x?: number;
|
|
4
|
+
y?: number;
|
|
5
|
+
}
|
|
6
|
+
interface IElementAnimationProps {
|
|
7
|
+
type?: keyof typeof types;
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
element?: keyof JSX.IntrinsicElements;
|
|
10
|
+
duration?: number;
|
|
11
|
+
delay?: number;
|
|
12
|
+
easing?: string;
|
|
13
|
+
offset?: Offset;
|
|
14
|
+
customAnimate?: Partial<{
|
|
15
|
+
opacity: number;
|
|
16
|
+
x: number;
|
|
17
|
+
y: number;
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
}>;
|
|
20
|
+
once?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export declare function Animation({ children, type, element, duration, delay, easing, offset, customAnimate, once, }: IElementAnimationProps): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Animation = Animation;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var react_1 = require("react");
|
|
17
|
+
var react_2 = require("motion/react");
|
|
18
|
+
var type_animation_1 = require("./type-animation.js");
|
|
19
|
+
function Animation(_a) {
|
|
20
|
+
var children = _a.children, type = _a.type, _b = _a.element, element = _b === void 0 ? 'div' : _b, _c = _a.duration, duration = _c === void 0 ? 0.7 : _c, _d = _a.delay, delay = _d === void 0 ? 0 : _d, _e = _a.easing, easing = _e === void 0 ? 'easeInOut' : _e, _f = _a.offset, offset = _f === void 0 ? {} : _f, _g = _a.customAnimate, customAnimate = _g === void 0 ? {} : _g, _h = _a.once, once = _h === void 0 ? false : _h;
|
|
21
|
+
var ref = (0, react_1.useRef)(null);
|
|
22
|
+
var isInView = (0, react_2.useInView)(ref);
|
|
23
|
+
var Element = react_2.motion[element];
|
|
24
|
+
var _j = (0, react_1.useState)(false), hasAnimated = _j[0], setHasAnimated = _j[1];
|
|
25
|
+
(0, react_1.useEffect)(function () {
|
|
26
|
+
if (isInView && !hasAnimated) {
|
|
27
|
+
setHasAnimated(true);
|
|
28
|
+
}
|
|
29
|
+
}, [isInView, hasAnimated]);
|
|
30
|
+
var initialAnimation = __assign(__assign({}, type_animation_1.types[type]), offset);
|
|
31
|
+
var shouldAnimate = once ? hasAnimated : isInView;
|
|
32
|
+
var animate = shouldAnimate
|
|
33
|
+
? __assign({ opacity: 1, x: 0, y: 0 }, customAnimate) : initialAnimation;
|
|
34
|
+
return ((0, jsx_runtime_1.jsx)(Element, { ref: ref, initial: initialAnimation, animate: animate, transition: { duration: duration, delay: delay, ease: easing }, children: children }));
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/animation/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;AAqBA,8BA0CC;;AA/DD,+BAAmD;AACnD,sCAAgD;AAChD,mDAAwC;AAmBxC,SAAgB,SAAS,CAAC,EAUD;QATvB,QAAQ,cAAA,EACR,IAAI,UAAA,EACJ,eAAe,EAAf,OAAO,mBAAG,KAAK,KAAA,EACf,gBAAc,EAAd,QAAQ,mBAAG,GAAG,KAAA,EACd,aAAS,EAAT,KAAK,mBAAG,CAAC,KAAA,EACT,cAAoB,EAApB,MAAM,mBAAG,WAAW,KAAA,EACpB,cAAW,EAAX,MAAM,mBAAG,EAAE,KAAA,EACX,qBAAkB,EAAlB,aAAa,mBAAG,EAAE,KAAA,EAClB,YAAY,EAAZ,IAAI,mBAAG,KAAK,KAAA;IAEZ,IAAM,GAAG,GAAG,IAAA,cAAM,EAAC,IAAI,CAAC,CAAA;IACxB,IAAM,QAAQ,GAAG,IAAA,iBAAS,EAAC,GAAG,CAAC,CAAA;IAC/B,IAAM,OAAO,GAAG,cAAM,CAAC,OAAO,CAAsB,CAAA;IAE9C,IAAA,KAAgC,IAAA,gBAAQ,EAAC,KAAK,CAAC,EAA9C,WAAW,QAAA,EAAE,cAAc,QAAmB,CAAA;IACrD,IAAA,iBAAS,EAAC;QACR,IAAI,QAAQ,IAAI,CAAC,WAAW,EAAE,CAAC;YAC7B,cAAc,CAAC,IAAI,CAAC,CAAA;QACtB,CAAC;IACH,CAAC,EAAE,CAAC,QAAQ,EAAE,WAAW,CAAC,CAAC,CAAA;IAE3B,IAAM,gBAAgB,yBACjB,sBAAK,CAAC,IAAI,CAAC,GACX,MAAM,CACV,CAAA;IAED,IAAM,aAAa,GAAG,IAAI,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAA;IACnD,IAAM,OAAO,GAAG,aAAa;QAC3B,CAAC,YAAG,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,IAAK,aAAa,EAC5C,CAAC,CAAC,gBAAgB,CAAA;IAEpB,OAAO,CACL,uBAAC,OAAO,IACN,GAAG,EAAE,GAAG,EACR,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,EAAE,QAAQ,UAAA,EAAE,KAAK,OAAA,EAAE,IAAI,EAAE,MAAM,EAAE,YAE5C,QAAQ,GACD,CACX,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.types = void 0;
|
|
4
|
+
exports.types = {
|
|
5
|
+
fromBottom: {
|
|
6
|
+
y: 50,
|
|
7
|
+
},
|
|
8
|
+
fromTop: {
|
|
9
|
+
opacity: 0,
|
|
10
|
+
y: -50,
|
|
11
|
+
},
|
|
12
|
+
fromLeft: {
|
|
13
|
+
x: -50,
|
|
14
|
+
},
|
|
15
|
+
fromRight: {
|
|
16
|
+
x: 50,
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=type-animation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-animation.js","sourceRoot":"","sources":["../../../../src/ui/components/animation/type-animation.ts"],"names":[],"mappings":";;;AAAa,QAAA,KAAK,GAAG;IACnB,UAAU,EAAE;QACV,CAAC,EAAE,EAAE;KACN;IACD,OAAO,EAAE;QACP,OAAO,EAAE,CAAC;QACV,CAAC,EAAE,CAAC,EAAE;KACP;IACD,QAAQ,EAAE;QACR,CAAC,EAAE,CAAC,EAAE;KACP;IACD,SAAS,EAAE;QACT,CAAC,EAAE,EAAE;KACN;CACF,CAAA"}
|
|
@@ -14,6 +14,7 @@ export * from './skeleton/index.js';
|
|
|
14
14
|
export * from './drop-down/index.js';
|
|
15
15
|
export * from './container/index.js';
|
|
16
16
|
export * from './accordion/index.js';
|
|
17
|
+
export * from './animation/index.js';
|
|
17
18
|
export * from './next-image/index.js';
|
|
18
19
|
export * from './breadcrumb/index.js';
|
|
19
20
|
export * from './pagination/index.js';
|
|
@@ -30,6 +30,7 @@ __exportStar(require("./skeleton/index.js"), exports);
|
|
|
30
30
|
__exportStar(require("./drop-down/index.js"), exports);
|
|
31
31
|
__exportStar(require("./container/index.js"), exports);
|
|
32
32
|
__exportStar(require("./accordion/index.js"), exports);
|
|
33
|
+
__exportStar(require("./animation/index.js"), exports);
|
|
33
34
|
__exportStar(require("./next-image/index.js"), exports);
|
|
34
35
|
__exportStar(require("./breadcrumb/index.js"), exports);
|
|
35
36
|
__exportStar(require("./pagination/index.js"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/ui/components/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAqB;AACrB,yCAAsB;AACtB,yCAAsB;AACtB,0CAAuB;AACvB,0CAAuB;AACvB,4CAAyB;AACzB,2CAAwB;AACxB,4CAAyB;AACzB,4CAAyB;AACzB,4CAAyB;AACzB,4CAAyB;AACzB,6CAA0B;AAC1B,6CAA0B;AAC1B,8CAA2B;AAC3B,8CAA2B;AAC3B,8CAA2B;AAC3B,+CAA4B;AAC5B,+CAA4B;AAC5B,+CAA4B;AAC5B,gDAA6B;AAC7B,gDAA6B;AAC7B,kDAA+B;AAC/B,mDAAgC;AAChC,mDAAgC;AAChC,mDAAgC;AAChC,0DAAuC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/ui/components/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAqB;AACrB,yCAAsB;AACtB,yCAAsB;AACtB,0CAAuB;AACvB,0CAAuB;AACvB,4CAAyB;AACzB,2CAAwB;AACxB,4CAAyB;AACzB,4CAAyB;AACzB,4CAAyB;AACzB,4CAAyB;AACzB,6CAA0B;AAC1B,6CAA0B;AAC1B,8CAA2B;AAC3B,8CAA2B;AAC3B,8CAA2B;AAC3B,8CAA2B;AAC3B,+CAA4B;AAC5B,+CAA4B;AAC5B,+CAA4B;AAC5B,gDAA6B;AAC7B,gDAA6B;AAC7B,kDAA+B;AAC/B,mDAAgC;AAChC,mDAAgC;AAChC,mDAAgC;AAChC,0DAAuC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../src/ui/utils/http/api.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkBA,
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../src/ui/utils/http/api.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkBA,kBA+BC;AAjDD,2BAAiD;AAkBjD,SAAsB,GAAG,CAAU,MAAmB,EAAE,OAAgB;;;;;;;oBAEhE,GAAG,GAAG,CAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,QAAQ,EAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa;wBACnE,CAAC,CAAC,MAAM,CAAC,GAAG;wBACZ,CAAC,CAAC,OAAO;4BACT,CAAC,CAAC,OAAO,GAAG,MAAM,CAAC,GAAG;4BACtB,CAAC,CAAC,UAAG,OAAO,CAAC,GAAG,CAAC,GAAG,SAAG,MAAM,CAAC,GAAG,CAAE,CAAA;oBAE/B,YAAY,GAAG,OAAO,CAAC,OAAO,IAAI,YAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;oBAEtD,OAAO,yBACR,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,OAAO,KAClB,aAAa,EAAE,CAAA,MAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,OAAO,0CAAE,aAAa,KAAI,iBAAU,CAAA,YAAY,aAAZ,YAAY,uBAAZ,YAAY,CAAE,KAAK,KAAI,EAAE,CAAE,GACvF,CAAA;oBAED,IAAI,OAAO,CAAC,GAAG,CAAC,MAAM,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE,CAAC;wBACxD,IAAI,CAAC;4BACH,IAAG,OAAO,CAAC,GAAG,CAAC,MAAM,KAAK,MAAM,EAAE,CAAC;gCAC3B,OAAO,GAAG,IAAI,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,IAAI,CAAA;gCACpD,OAAO,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAA;4BAC7B,CAAC;iCAAK,CAAC;gCACL,OAAO,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,MAAM,CAAA;4BACxC,CAAC;wBACH,CAAC;wBAAC,OAAO,KAAK,EAAE,CAAC;4BACf,OAAO,CAAC,KAAK,CAAC,kCAAkC,EAAE,KAAK,CAAC,CAAA;wBAC1D,CAAC;oBACH,CAAC;oBAEgB,qBAAM,SAAI,CAAC,OAAO,uBAAM,MAAM,KAAE,OAAO,SAAA,EAAE,GAAG,EAAE,GAAG,IAAG,EAAA;;oBAA/D,QAAQ,GAAG,SAAoD;oBAErE,sBAAO,QAAa,EAAA;;;;CACrB"}
|
package/package.json
CHANGED
|
@@ -1,73 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "infinity-forge",
|
|
3
|
-
"version": "7.
|
|
4
|
-
"description": "codie Library",
|
|
5
|
-
"main": "./dist/index",
|
|
6
|
-
"module": "./dist/index",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/CodieDigital/codiedigital-library"
|
|
11
|
-
},
|
|
12
|
-
"scripts": {
|
|
13
|
-
"dev": "next -p 3053",
|
|
14
|
-
"deploy": "npm version patch && npm publish",
|
|
15
|
-
"next": "next build",
|
|
16
|
-
"start": "next start -p 3015",
|
|
17
|
-
"build": "tsc && tsc-alias --resolve-full-paths && npm run build:CSS",
|
|
18
|
-
"build:CSS": "npm run minify-css && node combine-css.ts && cpx \"src/**/*.css\" dist --watch",
|
|
19
|
-
"minify-css": "postcss src/**/*.css --use cssnano -d dist --no-map",
|
|
20
|
-
"swagger": "node ./dist/client/generate.js"
|
|
21
|
-
},
|
|
22
|
-
"peerDependencies": {
|
|
23
|
-
"react": ">=16"
|
|
24
|
-
},
|
|
25
|
-
"files": [
|
|
26
|
-
"dist",
|
|
27
|
-
"LICENSE",
|
|
28
|
-
"README.md"
|
|
29
|
-
],
|
|
30
|
-
"keywords": [
|
|
31
|
-
"react",
|
|
32
|
-
"typescript",
|
|
33
|
-
"awesome-project"
|
|
34
|
-
],
|
|
35
|
-
"author": "Codie Digital",
|
|
36
|
-
"license": "MIT",
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@types/node": "^22.8.1",
|
|
39
|
-
"@types/react": "^19.0.8",
|
|
40
|
-
"@types/react-dom": "^19.0.3",
|
|
41
|
-
"@types/styled-components": "^5.1.34",
|
|
42
|
-
"concurrently": "^9.1.1",
|
|
43
|
-
"copyfiles": "^2.4.1",
|
|
44
|
-
"cssnano": "^7.0.6",
|
|
45
|
-
"fs-extra": "^11.2.0",
|
|
46
|
-
"postcss": "^8.4.49",
|
|
47
|
-
"postcss-cli": "^11.0.0",
|
|
48
|
-
"tsc-alias": "^1.8.10",
|
|
49
|
-
"typescript": "^5.7.2"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@dnd-kit/core": "^6.3.1",
|
|
53
|
-
"@dnd-kit/modifiers": "^9.0.0",
|
|
54
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
55
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
56
|
-
"@next/third-parties": "^15.1.6",
|
|
57
|
-
"axios": "^1.7.9",
|
|
58
|
-
"cpx": "^1.5.0",
|
|
59
|
-
"formik": "^2.4.6",
|
|
60
|
-
"fs": "0.0.1-security",
|
|
61
|
-
"moment": "^2.30.1",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"react
|
|
67
|
-
"react-
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "infinity-forge",
|
|
3
|
+
"version": "7.8.0",
|
|
4
|
+
"description": "codie Library",
|
|
5
|
+
"main": "./dist/index",
|
|
6
|
+
"module": "./dist/index",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/CodieDigital/codiedigital-library"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "next -p 3053",
|
|
14
|
+
"deploy": "npm version patch && npm publish",
|
|
15
|
+
"next": "next build",
|
|
16
|
+
"start": "next start -p 3015",
|
|
17
|
+
"build": "tsc && tsc-alias --resolve-full-paths && npm run build:CSS",
|
|
18
|
+
"build:CSS": "npm run minify-css && node combine-css.ts && cpx \"src/**/*.css\" dist --watch",
|
|
19
|
+
"minify-css": "postcss src/**/*.css --use cssnano -d dist --no-map",
|
|
20
|
+
"swagger": "node ./dist/client/generate.js"
|
|
21
|
+
},
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"react": ">=16"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"keywords": [
|
|
31
|
+
"react",
|
|
32
|
+
"typescript",
|
|
33
|
+
"awesome-project"
|
|
34
|
+
],
|
|
35
|
+
"author": "Codie Digital",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^22.8.1",
|
|
39
|
+
"@types/react": "^19.0.8",
|
|
40
|
+
"@types/react-dom": "^19.0.3",
|
|
41
|
+
"@types/styled-components": "^5.1.34",
|
|
42
|
+
"concurrently": "^9.1.1",
|
|
43
|
+
"copyfiles": "^2.4.1",
|
|
44
|
+
"cssnano": "^7.0.6",
|
|
45
|
+
"fs-extra": "^11.2.0",
|
|
46
|
+
"postcss": "^8.4.49",
|
|
47
|
+
"postcss-cli": "^11.0.0",
|
|
48
|
+
"tsc-alias": "^1.8.10",
|
|
49
|
+
"typescript": "^5.7.2"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@dnd-kit/core": "^6.3.1",
|
|
53
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
54
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
55
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
56
|
+
"@next/third-parties": "^15.1.6",
|
|
57
|
+
"axios": "^1.7.9",
|
|
58
|
+
"cpx": "^1.5.0",
|
|
59
|
+
"formik": "^2.4.6",
|
|
60
|
+
"fs": "0.0.1-security",
|
|
61
|
+
"moment": "^2.30.1",
|
|
62
|
+
"motion": "^12.5.0",
|
|
63
|
+
"next": "^15.1.6",
|
|
64
|
+
"node": "^22.13.0",
|
|
65
|
+
"quill": "^2.0.3",
|
|
66
|
+
"react": "19.0.0",
|
|
67
|
+
"react-dom": "19.0.0",
|
|
68
|
+
"react-select": "^5.9.0",
|
|
69
|
+
"styled-components": "^6.1.15",
|
|
70
|
+
"yup": "^1.6.1",
|
|
71
|
+
"zustand": "^5.0.2"
|
|
72
|
+
},
|
|
73
|
+
"packageManager": "pnpm@10.6.3+sha512.bb45e34d50a9a76e858a95837301bfb6bd6d35aea2c5d52094fa497a467c43f5c440103ce2511e9e0a2f89c3d6071baac3358fc68ac6fb75e2ceb3d2736065e6"
|
|
74
|
+
}
|