solid-intlayer 5.7.6-canary.0 → 5.7.7
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 +3 -0
- package/dist/cjs/client/index.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/client/index.mjs +19 -21
- package/dist/esm/index.mjs +20 -22
- package/dist/types/client/index.d.ts +0 -1
- package/dist/types/client/index.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +10 -10
- package/dist/cjs/client/useIntlayerAsync.cjs +0 -1
- package/dist/esm/client/useIntlayerAsync.mjs +0 -15
- package/dist/types/client/useIntlayerAsync.d.ts +0 -15
- package/dist/types/client/useIntlayerAsync.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -27,6 +27,9 @@
|
|
|
27
27
|
<div>
|
|
28
28
|
<br/>
|
|
29
29
|
<p align="center">
|
|
30
|
+
<a href="https://discord.gg/528mBV4N" target="blank"><img align="center"
|
|
31
|
+
src="https://img.shields.io/badge/discord-5865F2.svg?style=for-the-badge&logo=discord&logoColor=white"
|
|
32
|
+
alt="Intlayer Discord" height="30"/></a>
|
|
30
33
|
<a href="https://www.linkedin.com/company/intlayerorg" target="blank"><img align="center"
|
|
31
34
|
src="https://img.shields.io/badge/linkedin-%231DA1F2.svg?style=for-the-badge&logo=linkedin&logoColor=white"
|
|
32
35
|
alt="Intlayer LinkedIn" height="30"/></a>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./getBrowserLocale.cjs"),e=require("./IntlayerProvider.cjs"),n=require("./t.cjs"),i=require("./useDictionary.cjs"),r=require("./useDictionaryAsync.cjs"),c=require("./useDictionaryDynamic.cjs"),a=require("./useIntlayer.cjs"),s=require("./useLoadDynamic.cjs"),l=require("./useLocale.cjs"),u=require("./useLocaleBase.cjs"),o=require("./useLocaleCookie.cjs");exports.getBrowserLocale=t.getBrowserLocale;exports.IntlayerClientContext=e.IntlayerClientContext;exports.IntlayerProvider=e.IntlayerProvider;exports.IntlayerProviderContent=e.IntlayerProviderContent;exports.useIntlayerContext=e.useIntlayerContext;exports.t=n.t;exports.useDictionary=i.useDictionary;exports.useDictionaryAsync=r.useDictionaryAsync;exports.useDictionaryDynamic=c.useDictionaryDynamic;exports.useIntlayer=a.useIntlayer;exports.useLoadDynamic=s.useLoadDynamic;exports.useLocale=l.useLocale;exports.useLocaleBase=u.useLocaleBase;exports.localeCookie=o.localeCookie;exports.setLocaleCookie=o.setLocaleCookie;exports.useLocaleCookie=o.useLocaleCookie;
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./client/getBrowserLocale.cjs"),e=require("./client/IntlayerProvider.cjs"),i=require("./client/t.cjs"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./client/getBrowserLocale.cjs"),e=require("./client/IntlayerProvider.cjs"),i=require("./client/t.cjs"),t=require("./client/useDictionary.cjs"),n=require("./client/useDictionaryAsync.cjs"),c=require("./client/useDictionaryDynamic.cjs"),a=require("./client/useIntlayer.cjs"),s=require("./client/useLoadDynamic.cjs"),u=require("./client/useLocale.cjs"),l=require("./client/useLocaleBase.cjs"),r=require("./client/useLocaleCookie.cjs"),y=require("./markdown/MarkdownProvider.cjs");require("@intlayer/core");require("@intlayer/editor");require("./editor/contexts/ConfigurationContext.cjs");require("./editor/contexts/DictionariesRecordContext.cjs");require("./editor/contexts/EditedContentContext.cjs");require("./editor/contexts/EditorEnabledContext.cjs");require("solid-js");require("./editor/contexts/CommunicatorContext.cjs");require("./editor/contexts/FocusDictionaryContext.cjs");exports.getBrowserLocale=o.getBrowserLocale;exports.IntlayerClientContext=e.IntlayerClientContext;exports.IntlayerProvider=e.IntlayerProvider;exports.IntlayerProviderContent=e.IntlayerProviderContent;exports.useIntlayerContext=e.useIntlayerContext;exports.t=i.t;exports.useDictionary=t.useDictionary;exports.useDictionaryAsync=n.useDictionaryAsync;exports.useDictionaryDynamic=c.useDictionaryDynamic;exports.useIntlayer=a.useIntlayer;exports.useLoadDynamic=s.useLoadDynamic;exports.useLocale=u.useLocale;exports.useLocaleBase=l.useLocaleBase;exports.localeCookie=r.localeCookie;exports.setLocaleCookie=r.setLocaleCookie;exports.useLocaleCookie=r.useLocaleCookie;exports.MarkdownProvider=y.MarkdownProvider;
|
|
@@ -1,31 +1,29 @@
|
|
|
1
1
|
import { getBrowserLocale as r } from "./getBrowserLocale.mjs";
|
|
2
|
-
import { IntlayerClientContext as a, IntlayerProvider as n, IntlayerProviderContent as
|
|
3
|
-
import { t as
|
|
2
|
+
import { IntlayerClientContext as a, IntlayerProvider as n, IntlayerProviderContent as i, useIntlayerContext as l } from "./IntlayerProvider.mjs";
|
|
3
|
+
import { t as s } from "./t.mjs";
|
|
4
4
|
import { useDictionary as c } from "./useDictionary.mjs";
|
|
5
|
-
import { useDictionaryAsync as
|
|
5
|
+
import { useDictionaryAsync as p } from "./useDictionaryAsync.mjs";
|
|
6
6
|
import { useDictionaryDynamic as u } from "./useDictionaryDynamic.mjs";
|
|
7
|
-
import { useIntlayer as
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import { localeCookie as w, setLocaleCookie as b, useLocaleCookie as h } from "./useLocaleCookie.mjs";
|
|
7
|
+
import { useIntlayer as L } from "./useIntlayer.mjs";
|
|
8
|
+
import { useLoadDynamic as I } from "./useLoadDynamic.mjs";
|
|
9
|
+
import { useLocale as k } from "./useLocale.mjs";
|
|
10
|
+
import { useLocaleBase as B } from "./useLocaleBase.mjs";
|
|
11
|
+
import { localeCookie as g, setLocaleCookie as w, useLocaleCookie as A } from "./useLocaleCookie.mjs";
|
|
13
12
|
export {
|
|
14
13
|
a as IntlayerClientContext,
|
|
15
14
|
n as IntlayerProvider,
|
|
16
|
-
|
|
15
|
+
i as IntlayerProviderContent,
|
|
17
16
|
r as getBrowserLocale,
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
g as localeCookie,
|
|
18
|
+
w as setLocaleCookie,
|
|
19
|
+
s as t,
|
|
21
20
|
c as useDictionary,
|
|
22
|
-
|
|
21
|
+
p as useDictionaryAsync,
|
|
23
22
|
u as useDictionaryDynamic,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
k as
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
h as useLocaleCookie
|
|
23
|
+
L as useIntlayer,
|
|
24
|
+
l as useIntlayerContext,
|
|
25
|
+
I as useLoadDynamic,
|
|
26
|
+
k as useLocale,
|
|
27
|
+
B as useLocaleBase,
|
|
28
|
+
A as useLocaleCookie
|
|
31
29
|
};
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
import { getBrowserLocale as
|
|
1
|
+
import { getBrowserLocale as s } from "./client/getBrowserLocale.mjs";
|
|
2
2
|
import { IntlayerClientContext as f, IntlayerProvider as y, IntlayerProviderContent as u, useIntlayerContext as C } from "./client/IntlayerProvider.mjs";
|
|
3
|
-
import { t as
|
|
4
|
-
import { useDictionary as
|
|
3
|
+
import { t as d } from "./client/t.mjs";
|
|
4
|
+
import { useDictionary as I } from "./client/useDictionary.mjs";
|
|
5
5
|
import { useDictionaryAsync as v } from "./client/useDictionaryAsync.mjs";
|
|
6
6
|
import { useDictionaryDynamic as w } from "./client/useDictionaryDynamic.mjs";
|
|
7
|
-
import { useIntlayer as
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import { MarkdownProvider as N } from "./markdown/MarkdownProvider.mjs";
|
|
7
|
+
import { useIntlayer as g } from "./client/useIntlayer.mjs";
|
|
8
|
+
import { useLoadDynamic as M } from "./client/useLoadDynamic.mjs";
|
|
9
|
+
import { useLocale as h } from "./client/useLocale.mjs";
|
|
10
|
+
import { useLocaleBase as q } from "./client/useLocaleBase.mjs";
|
|
11
|
+
import { localeCookie as E, setLocaleCookie as F, useLocaleCookie as G } from "./client/useLocaleCookie.mjs";
|
|
12
|
+
import { MarkdownProvider as J } from "./markdown/MarkdownProvider.mjs";
|
|
14
13
|
import "@intlayer/core";
|
|
15
14
|
import "@intlayer/editor";
|
|
16
15
|
import "./editor/contexts/ConfigurationContext.mjs";
|
|
@@ -24,19 +23,18 @@ export {
|
|
|
24
23
|
f as IntlayerClientContext,
|
|
25
24
|
y as IntlayerProvider,
|
|
26
25
|
u as IntlayerProviderContent,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
26
|
+
J as MarkdownProvider,
|
|
27
|
+
s as getBrowserLocale,
|
|
28
|
+
E as localeCookie,
|
|
29
|
+
F as setLocaleCookie,
|
|
30
|
+
d as t,
|
|
31
|
+
I as useDictionary,
|
|
33
32
|
v as useDictionaryAsync,
|
|
34
33
|
w as useDictionaryDynamic,
|
|
35
|
-
|
|
36
|
-
M as useIntlayerAsync,
|
|
34
|
+
g as useIntlayer,
|
|
37
35
|
C as useIntlayerContext,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
36
|
+
M as useLoadDynamic,
|
|
37
|
+
h as useLocale,
|
|
38
|
+
q as useLocaleBase,
|
|
39
|
+
G as useLocaleCookie
|
|
42
40
|
};
|
|
@@ -5,7 +5,6 @@ export { useDictionary } from './useDictionary';
|
|
|
5
5
|
export { useDictionaryAsync } from './useDictionaryAsync';
|
|
6
6
|
export { useDictionaryDynamic } from './useDictionaryDynamic';
|
|
7
7
|
export { useIntlayer } from './useIntlayer';
|
|
8
|
-
export { useIntlayerAsync } from './useIntlayerAsync';
|
|
9
8
|
export { useLoadDynamic } from './useLoadDynamic';
|
|
10
9
|
export { useLocale } from './useLocale';
|
|
11
10
|
export { useLocaleBase } from './useLocaleBase';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/client/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EACL,qBAAqB,EACrB,gBAAgB,EAChB,uBAAuB,EACvB,kBAAkB,EAClB,KAAK,qBAAqB,GAC3B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/client/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EACL,qBAAqB,EACrB,gBAAgB,EAChB,uBAAuB,EACvB,kBAAkB,EAClB,KAAK,qBAAqB,GAC3B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EACL,YAAY,EACZ,eAAe,EACf,eAAe,GAChB,MAAM,mBAAmB,CAAC"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ declare module '@intlayer/core' {
|
|
|
3
3
|
interface IInterpreterPlugin<T, S> extends IInterpreterPluginSolid<T> {
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
|
-
export { getBrowserLocale, IntlayerClientContext, IntlayerProvider, IntlayerProviderContent, localeCookie, setLocaleCookie, t, useDictionary, useDictionaryAsync, useDictionaryDynamic, useIntlayer,
|
|
6
|
+
export { getBrowserLocale, IntlayerClientContext, IntlayerProvider, IntlayerProviderContent, localeCookie, setLocaleCookie, t, useDictionary, useDictionaryAsync, useDictionaryDynamic, useIntlayer, useIntlayerContext, useLoadDynamic, useLocale, useLocaleBase, useLocaleCookie, type IntlayerProviderProps, } from './client/index';
|
|
7
7
|
export { type IntlayerNode } from './IntlayerNode';
|
|
8
8
|
export { MarkdownProvider } from './markdown/index';
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEzD,OAAO,QAAQ,gBAAgB,CAAC;IAC9B,UAAU,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAE,SAAQ,uBAAuB,CAAC,CAAC,CAAC;KAAG;CACzE;AAED,OAAO,EACL,gBAAgB,EAChB,qBAAqB,EACrB,gBAAgB,EAChB,uBAAuB,EACvB,YAAY,EACZ,eAAe,EACf,CAAC,EACD,aAAa,EACb,kBAAkB,EAClB,oBAAoB,EACpB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEzD,OAAO,QAAQ,gBAAgB,CAAC;IAC9B,UAAU,kBAAkB,CAAC,CAAC,EAAE,CAAC,CAAE,SAAQ,uBAAuB,CAAC,CAAC,CAAC;KAAG;CACzE;AAED,OAAO,EACL,gBAAgB,EAChB,qBAAqB,EACrB,gBAAgB,EAChB,uBAAuB,EACvB,YAAY,EACZ,eAAe,EACf,CAAC,EACD,aAAa,EACb,kBAAkB,EAClB,oBAAoB,EACpB,WAAW,EACX,kBAAkB,EAClB,cAAc,EACd,SAAS,EACT,aAAa,EACb,eAAe,EACf,KAAK,qBAAqB,GAC3B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-intlayer",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Easily internationalize i18n your Solid applications with type-safe multilingual content management.",
|
|
6
6
|
"keywords": [
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"js-cookie": "^3.0.5",
|
|
60
|
-
"@intlayer/api": "5.7.
|
|
61
|
-
"@intlayer/
|
|
62
|
-
"@intlayer/
|
|
63
|
-
"@intlayer/core": "5.7.
|
|
60
|
+
"@intlayer/api": "5.7.7",
|
|
61
|
+
"@intlayer/config": "5.7.7",
|
|
62
|
+
"@intlayer/editor": "5.7.7",
|
|
63
|
+
"@intlayer/core": "5.7.7"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@solidjs/testing-library": "^0.8.10",
|
|
@@ -79,17 +79,17 @@
|
|
|
79
79
|
"vite-plugin-dts": "^4.5.3",
|
|
80
80
|
"vite-plugin-solid": "^2.11.6",
|
|
81
81
|
"vitest": "^3.2.2",
|
|
82
|
-
"@utils/eslint-config": "1.0.4",
|
|
83
82
|
"@utils/ts-config": "1.0.4",
|
|
83
|
+
"@utils/eslint-config": "1.0.4",
|
|
84
84
|
"@utils/tsup-config": "1.0.4",
|
|
85
85
|
"@utils/ts-config-types": "1.0.4"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"solid-js": "^1.9.5",
|
|
89
|
-
"@intlayer/
|
|
90
|
-
"@intlayer/
|
|
91
|
-
"@intlayer/editor": "5.7.
|
|
92
|
-
"@intlayer/
|
|
89
|
+
"@intlayer/api": "5.7.7",
|
|
90
|
+
"@intlayer/config": "5.7.7",
|
|
91
|
+
"@intlayer/editor": "5.7.7",
|
|
92
|
+
"@intlayer/core": "5.7.7"
|
|
93
93
|
},
|
|
94
94
|
"engines": {
|
|
95
95
|
"node": ">=14.18"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("@intlayer/core"),e=require("solid-js"),g=require("./IntlayerProvider.cjs"),d=(t,a)=>{const{locale:c}=e.useContext(g.IntlayerClientContext),i=a??c(),s=r.getIntlayer(t,i),[l,y]=e.createSignal(null),[u,n]=e.createSignal(!1);return e.onMount(()=>{n(!0),r.getIntlayerAsync(t).then(o=>o&&y(o)).finally(()=>n(!1))}),{...e.createMemo(()=>l()??s)(),isLoading:u()}};exports.useIntlayerAsync=d;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { getIntlayer as g, getIntlayerAsync as m } from "@intlayer/core";
|
|
2
|
-
import { useContext as u, createSignal as e, onMount as f, createMemo as d } from "solid-js";
|
|
3
|
-
import { IntlayerClientContext as I } from "./IntlayerProvider.mjs";
|
|
4
|
-
const C = (t, a) => {
|
|
5
|
-
const { locale: r } = u(I), i = a ?? r(), c = g(t, i), [s, l] = e(null), [y, n] = e(!1);
|
|
6
|
-
return f(() => {
|
|
7
|
-
n(!0), m(t).then((o) => o && l(o)).finally(() => n(!1));
|
|
8
|
-
}), {
|
|
9
|
-
...d(() => s() ?? c)(),
|
|
10
|
-
isLoading: y()
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
export {
|
|
14
|
-
C as useIntlayerAsync
|
|
15
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { LocalesValues } from '@intlayer/config/client';
|
|
2
|
-
import { DictionaryKeys } from '@intlayer/core';
|
|
3
|
-
/**
|
|
4
|
-
* SolidJS composable that picks one dictionary by its key and returns the content.
|
|
5
|
-
*
|
|
6
|
-
* 1. Uses the local (bundled) dictionary for the initial render.
|
|
7
|
-
* 2. Hydrates with the distant dictionary once it resolves.
|
|
8
|
-
*
|
|
9
|
-
* If `locale` is not provided, it falls back to the locale found in the
|
|
10
|
-
* `IntlayerClientContext`.
|
|
11
|
-
*/
|
|
12
|
-
export declare const useIntlayerAsync: <T extends DictionaryKeys>(key: T, locale?: LocalesValues) => import('@intlayer/core').DeepTransformContent<import('intlayer').IntlayerDictionaryTypesConnector[T]["content"], import('@intlayer/core').IInterpreterPluginState> & {
|
|
13
|
-
isLoading: boolean;
|
|
14
|
-
};
|
|
15
|
-
//# sourceMappingURL=useIntlayerAsync.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useIntlayerAsync.d.ts","sourceRoot":"","sources":["../../../src/client/useIntlayerAsync.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EACL,KAAK,cAAc,EAGpB,MAAM,gBAAgB,CAAC;AAIxB;;;;;;;;GAQG;AACH,eAAO,MAAM,gBAAgB,GAAI,CAAC,SAAS,cAAc,EACvD,KAAK,CAAC,EACN,SAAS,aAAa,KAiCjB,qKAA0B;IAAE,SAAS,EAAE,OAAO,CAAA;CACpD,CAAC"}
|