xp-lisp 2026.305.182712
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/LICENSE +19 -0
- package/README.md +1 -0
- package/esm/oml2ast.d.ts +4 -0
- package/esm/oml2ast.d.ts.map +1 -0
- package/esm/oml2ast.js +257 -0
- package/esm/omlcommon.d.ts +17 -0
- package/esm/omlcommon.d.ts.map +1 -0
- package/esm/omlcommon.js +128 -0
- package/esm/package.json +3 -0
- package/esm/xp-lisp.d.ts +13 -0
- package/esm/xp-lisp.d.ts.map +1 -0
- package/esm/xp-lisp.js +559 -0
- package/package.json +32 -0
- package/script/oml2ast.d.ts +4 -0
- package/script/oml2ast.d.ts.map +1 -0
- package/script/oml2ast.js +262 -0
- package/script/omlcommon.d.ts +17 -0
- package/script/omlcommon.d.ts.map +1 -0
- package/script/omlcommon.js +132 -0
- package/script/package.json +3 -0
- package/script/xp-lisp.d.ts +13 -0
- package/script/xp-lisp.d.ts.map +1 -0
- package/script/xp-lisp.js +568 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2026 JavaCommons Technologies
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# xp-lisp
|
package/esm/oml2ast.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"oml2ast.d.ts","sourceRoot":"","sources":["../src/oml2ast.js"],"names":[],"mappings":"AAuJA,4CAYC;AAED,0CA2CC;AAED,kDAsBC"}
|
package/esm/oml2ast.js
ADDED
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
function tokenize(str) {
|
|
2
|
+
//console.debug("tokenize", str);
|
|
3
|
+
const re = /[\s,]*([()\[\]{}'`]|"(?:\\.|[^\\"])*"|[$]?@(?:@@|[^@])*@|;.*|#[!# ].*|#lang[ ]+.*|#[\|][\s\S]+?[\|]#|#[a-z]+|[^\s,()\[\]{}'"`;@]*)/g;
|
|
4
|
+
const result = [];
|
|
5
|
+
let token;
|
|
6
|
+
while ((token = re.exec(str)[1]) !== "") {
|
|
7
|
+
//console.debug(`token=${token}`);
|
|
8
|
+
if (token[0] === ";")
|
|
9
|
+
continue;
|
|
10
|
+
if (token.startsWith("#!"))
|
|
11
|
+
continue;
|
|
12
|
+
if (token.startsWith("##"))
|
|
13
|
+
continue;
|
|
14
|
+
if (token.startsWith("# "))
|
|
15
|
+
continue;
|
|
16
|
+
if (token.startsWith("#lang "))
|
|
17
|
+
continue;
|
|
18
|
+
if (token.startsWith("#|") && !token.startsWith("#|@"))
|
|
19
|
+
continue;
|
|
20
|
+
if (!token.startsWith("#@") && !token.startsWith("#|") && token.startsWith("#"))
|
|
21
|
+
token = token.substring(1);
|
|
22
|
+
if (isFinite(token))
|
|
23
|
+
token = parseFloat(token, 10);
|
|
24
|
+
result.push(token);
|
|
25
|
+
}
|
|
26
|
+
return result;
|
|
27
|
+
}
|
|
28
|
+
function read_token(code, exp) {
|
|
29
|
+
if (code.length === 0)
|
|
30
|
+
return undefined;
|
|
31
|
+
const token = code.shift();
|
|
32
|
+
exp.push(token);
|
|
33
|
+
return token;
|
|
34
|
+
}
|
|
35
|
+
function read_list(code, exp, ch) {
|
|
36
|
+
const result = [];
|
|
37
|
+
let ast;
|
|
38
|
+
while ((ast = read_sexp(code, exp, false)) !== undefined) {
|
|
39
|
+
if (ast === "]") {
|
|
40
|
+
if (ch !== "[")
|
|
41
|
+
code.unshift("]");
|
|
42
|
+
break;
|
|
43
|
+
}
|
|
44
|
+
else if (ast === ")") {
|
|
45
|
+
break;
|
|
46
|
+
}
|
|
47
|
+
result.push(ast);
|
|
48
|
+
}
|
|
49
|
+
return result;
|
|
50
|
+
}
|
|
51
|
+
function read_dict(code, exp) {
|
|
52
|
+
const result = [["#", "dict"]];
|
|
53
|
+
let ast1;
|
|
54
|
+
let ast2;
|
|
55
|
+
while ((ast1 = read_sexp(code, exp)) !== undefined) {
|
|
56
|
+
if (ast1 === "]")
|
|
57
|
+
continue;
|
|
58
|
+
if (ast1 === "}")
|
|
59
|
+
break;
|
|
60
|
+
ast2 = read_sexp(code, exp);
|
|
61
|
+
result.push(ast1);
|
|
62
|
+
result.push(ast2);
|
|
63
|
+
}
|
|
64
|
+
return result;
|
|
65
|
+
}
|
|
66
|
+
function read_sexp(code, exp) {
|
|
67
|
+
let token = read_token(code, exp);
|
|
68
|
+
if (token === undefined)
|
|
69
|
+
return undefined;
|
|
70
|
+
if ((typeof token) === "number")
|
|
71
|
+
return token;
|
|
72
|
+
switch (token) {
|
|
73
|
+
case "false":
|
|
74
|
+
return false;
|
|
75
|
+
case "true":
|
|
76
|
+
return true;
|
|
77
|
+
case "null":
|
|
78
|
+
return null;
|
|
79
|
+
case "undefined":
|
|
80
|
+
return ["@", "undefined"];
|
|
81
|
+
}
|
|
82
|
+
let ch = token[0];
|
|
83
|
+
if (ch == "#")
|
|
84
|
+
ch = token.slice(0, 2);
|
|
85
|
+
if (token.startsWith('$@')) {
|
|
86
|
+
ch = '$@';
|
|
87
|
+
}
|
|
88
|
+
switch (ch) {
|
|
89
|
+
case "(":
|
|
90
|
+
case "[":
|
|
91
|
+
{
|
|
92
|
+
const lst = read_list(code, exp, ch);
|
|
93
|
+
return lst;
|
|
94
|
+
}
|
|
95
|
+
case ")":
|
|
96
|
+
case "]":
|
|
97
|
+
return ch;
|
|
98
|
+
case "{":
|
|
99
|
+
return read_dict(code, exp);
|
|
100
|
+
case "}":
|
|
101
|
+
return ch;
|
|
102
|
+
case '"':
|
|
103
|
+
token = token.replaceAll("\r\n", "\n");
|
|
104
|
+
token = token.replaceAll("\n", "\\n");
|
|
105
|
+
token = JSON.parse(token);
|
|
106
|
+
return token;
|
|
107
|
+
case "@":
|
|
108
|
+
token = token.replace(/(^@|@$)/g, "");
|
|
109
|
+
token = token.replace(/(@@)/g, "@");
|
|
110
|
+
token = token.trim();
|
|
111
|
+
return ["@", token];
|
|
112
|
+
case "#|": {
|
|
113
|
+
if (token.startsWith("#|@")) {
|
|
114
|
+
token = token.replace(/^#[\|]@/g, "");
|
|
115
|
+
token = token.replace(/[\|]#$/g, "");
|
|
116
|
+
token = token.trim();
|
|
117
|
+
return ["@", token];
|
|
118
|
+
}
|
|
119
|
+
// not a "#|@" quoted string – handle as in the default branch
|
|
120
|
+
if (token[0] === ":")
|
|
121
|
+
return token;
|
|
122
|
+
if (token[0] === "&")
|
|
123
|
+
return token;
|
|
124
|
+
const ids = token[0] === "." ? [token] : token.split(".");
|
|
125
|
+
return ["#", ...ids];
|
|
126
|
+
}
|
|
127
|
+
case "$@": // template literal string
|
|
128
|
+
token = token.replaceAll("\r\n", "\n");
|
|
129
|
+
token = token.replace(/(^[$]@|@$)/g, "");
|
|
130
|
+
token = token.replace(/(@@)/g, "@");
|
|
131
|
+
return ["$@", token];
|
|
132
|
+
default: {
|
|
133
|
+
//if (token[0] === ":") return token;
|
|
134
|
+
//if (token[0] === "&") return token;
|
|
135
|
+
if (!token.match(/^[_a-zA-Z][._a-zA-Z0-9]*$/)) {
|
|
136
|
+
//console.debug(`token=${token} does not match the identifier pattern`);
|
|
137
|
+
return ["#", token];
|
|
138
|
+
}
|
|
139
|
+
const ids = token[0] === "." ? [token] : token.split(".");
|
|
140
|
+
return ["#", ...ids];
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
function join_sexp(exp) {
|
|
145
|
+
if (exp.length === 0)
|
|
146
|
+
return "";
|
|
147
|
+
let last = exp.shift();
|
|
148
|
+
let result = "" + last;
|
|
149
|
+
while (exp.length > 0) {
|
|
150
|
+
let token = exp.shift();
|
|
151
|
+
if (token !== ")" &&
|
|
152
|
+
token !== "]" &&
|
|
153
|
+
(last !== "(") & (last !== "[") &&
|
|
154
|
+
last !== "'")
|
|
155
|
+
result += " ";
|
|
156
|
+
if (token === "[")
|
|
157
|
+
token = "(";
|
|
158
|
+
if (token === "]")
|
|
159
|
+
token = ")";
|
|
160
|
+
result += token;
|
|
161
|
+
last = token;
|
|
162
|
+
}
|
|
163
|
+
return result;
|
|
164
|
+
}
|
|
165
|
+
export function oml2ast(text) {
|
|
166
|
+
const code = tokenize(text);
|
|
167
|
+
const result = [];
|
|
168
|
+
while (true) {
|
|
169
|
+
const exp = [];
|
|
170
|
+
const ast = read_sexp(code, exp);
|
|
171
|
+
if (ast === undefined)
|
|
172
|
+
break;
|
|
173
|
+
if (ast === ")")
|
|
174
|
+
continue;
|
|
175
|
+
if (ast === "]")
|
|
176
|
+
continue;
|
|
177
|
+
result.push([join_sexp(exp), ast]);
|
|
178
|
+
}
|
|
179
|
+
return result;
|
|
180
|
+
}
|
|
181
|
+
export function ast2oml(ast) {
|
|
182
|
+
if (ast === null)
|
|
183
|
+
return "null";
|
|
184
|
+
if (ast === undefined)
|
|
185
|
+
return "undefined";
|
|
186
|
+
if ((typeof ast) === "number")
|
|
187
|
+
return JSON.stringify(ast);
|
|
188
|
+
if ((typeof ast) === "string")
|
|
189
|
+
return JSON.stringify(ast);
|
|
190
|
+
if ((typeof ast) === "boolean")
|
|
191
|
+
return JSON.stringify(ast);
|
|
192
|
+
if (ast instanceof Array) {
|
|
193
|
+
let result = "( ";
|
|
194
|
+
for (let i = 0; i < ast.length; i++) {
|
|
195
|
+
if (i > 0)
|
|
196
|
+
result += " ";
|
|
197
|
+
result += ast2oml(ast[i]);
|
|
198
|
+
}
|
|
199
|
+
let keys = Object.keys(ast);
|
|
200
|
+
const re = /^[0-9]+/;
|
|
201
|
+
keys = keys.filter(key => !re.test(key));
|
|
202
|
+
keys.sort();
|
|
203
|
+
if (keys.length > 0) {
|
|
204
|
+
if (ast.length > 0)
|
|
205
|
+
result += " ";
|
|
206
|
+
result += "?";
|
|
207
|
+
for (let i = 0; i < keys.length; i++) {
|
|
208
|
+
const key = keys[i];
|
|
209
|
+
result += " (";
|
|
210
|
+
result += JSON.stringify(key);
|
|
211
|
+
result += " ";
|
|
212
|
+
result += ast2oml(ast[key]);
|
|
213
|
+
result += ")";
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
result += " )";
|
|
217
|
+
return result;
|
|
218
|
+
}
|
|
219
|
+
else {
|
|
220
|
+
let result = "{ ";
|
|
221
|
+
const keys = Object.keys(ast);
|
|
222
|
+
keys.sort();
|
|
223
|
+
for (let i = 0; i < keys.length; i++) {
|
|
224
|
+
if (i > 0)
|
|
225
|
+
result += " ";
|
|
226
|
+
result += JSON.stringify(keys[i]);
|
|
227
|
+
result += " ";
|
|
228
|
+
result += ast2oml(ast[keys[i]]);
|
|
229
|
+
}
|
|
230
|
+
result += " }";
|
|
231
|
+
return result;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
export function astequal(a, b) {
|
|
235
|
+
if (a === b) {
|
|
236
|
+
return true;
|
|
237
|
+
}
|
|
238
|
+
if (a instanceof Function || b instanceof Function) {
|
|
239
|
+
return false;
|
|
240
|
+
}
|
|
241
|
+
else if (typeof (a) === 'object' && typeof (b) === 'object') {
|
|
242
|
+
const ak = Object.keys(a);
|
|
243
|
+
const bk = Object.keys(b);
|
|
244
|
+
if (ak.length !== bk.length) {
|
|
245
|
+
return false;
|
|
246
|
+
}
|
|
247
|
+
for (let i = 0; i < ak.length; ++i) {
|
|
248
|
+
const key = ak[i];
|
|
249
|
+
const ret = astequal(a[key], b[key]);
|
|
250
|
+
if (ret === false) {
|
|
251
|
+
return false;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
return true;
|
|
255
|
+
}
|
|
256
|
+
return false;
|
|
257
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export class OMLCommon {
|
|
2
|
+
is_array(x: any): x is any[];
|
|
3
|
+
is_bool(x: any): x is boolean;
|
|
4
|
+
is_number(x: any): x is number;
|
|
5
|
+
is_string(x: any): x is string;
|
|
6
|
+
is_quoted(x: any): boolean;
|
|
7
|
+
is_id(ast: any, name?: undefined): boolean;
|
|
8
|
+
is_variable(ast: any): boolean;
|
|
9
|
+
is_script(ast: any): boolean;
|
|
10
|
+
is_template(ast: any): boolean;
|
|
11
|
+
is_callable(ast: any): boolean;
|
|
12
|
+
is_fn(ast: any): boolean;
|
|
13
|
+
to_id(ast: any): any;
|
|
14
|
+
id(x: any): any[];
|
|
15
|
+
to_def(ast: any): any;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=omlcommon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"omlcommon.d.ts","sourceRoot":"","sources":["../src/omlcommon.js"],"names":[],"mappings":"AAAA;IACE,6BAEC;IAED,8BAEC;IAED,+BAEC;IAED,+BAEC;IAED,2BAIC;IAED,2CAKC;IAED,+BAIC;IAED,6BAIC;IAED,+BAIC;IAED,+BAMC;IAED,yBAIC;IAED,qBAQC;IAED,kBAEC;IAED,sBAuCC;CAEF"}
|
package/esm/omlcommon.js
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
export class OMLCommon {
|
|
2
|
+
is_array(x) {
|
|
3
|
+
return (x instanceof Array);
|
|
4
|
+
}
|
|
5
|
+
is_bool(x) {
|
|
6
|
+
return (typeof x) === "boolean";
|
|
7
|
+
}
|
|
8
|
+
is_number(x) {
|
|
9
|
+
return (typeof x) === "number";
|
|
10
|
+
}
|
|
11
|
+
is_string(x) {
|
|
12
|
+
return (typeof x) === "string";
|
|
13
|
+
}
|
|
14
|
+
is_quoted(x) {
|
|
15
|
+
if (!this.is_array(x))
|
|
16
|
+
return false;
|
|
17
|
+
if (x.length === 0)
|
|
18
|
+
return false;
|
|
19
|
+
return x[0] === "`";
|
|
20
|
+
}
|
|
21
|
+
is_id(ast, name = undefined) {
|
|
22
|
+
const ok = ast instanceof Array && ast[0] === "#";
|
|
23
|
+
if (!ok)
|
|
24
|
+
return false;
|
|
25
|
+
if (name !== undefined)
|
|
26
|
+
return ast.length > 1 && ast[1] === name;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
is_variable(ast) {
|
|
30
|
+
if (!(ast instanceof Array))
|
|
31
|
+
return false;
|
|
32
|
+
if (ast.length === 0)
|
|
33
|
+
return false;
|
|
34
|
+
return ast[0] === "#";
|
|
35
|
+
}
|
|
36
|
+
is_script(ast) {
|
|
37
|
+
if (!(ast instanceof Array))
|
|
38
|
+
return false;
|
|
39
|
+
if (ast.length === 0)
|
|
40
|
+
return false;
|
|
41
|
+
return ast[0] === "@";
|
|
42
|
+
}
|
|
43
|
+
is_template(ast) {
|
|
44
|
+
if (!(ast instanceof Array))
|
|
45
|
+
return false;
|
|
46
|
+
if (ast.length === 0)
|
|
47
|
+
return false;
|
|
48
|
+
return ast[0] === "$@";
|
|
49
|
+
}
|
|
50
|
+
is_callable(ast) {
|
|
51
|
+
if (!(ast instanceof Array))
|
|
52
|
+
return false;
|
|
53
|
+
if (ast.length === 0)
|
|
54
|
+
return false;
|
|
55
|
+
if (ast[0] === "#")
|
|
56
|
+
return false;
|
|
57
|
+
if (ast[0] === "@")
|
|
58
|
+
return false;
|
|
59
|
+
return this.is_id(ast[0]) || this.is_script(ast[0]);
|
|
60
|
+
}
|
|
61
|
+
is_fn(ast) {
|
|
62
|
+
if (!(ast instanceof Array))
|
|
63
|
+
return false;
|
|
64
|
+
if (ast.length === 0)
|
|
65
|
+
return false;
|
|
66
|
+
return this.is_id(ast[0]) && this.to_id(ast[0]) === "fn";
|
|
67
|
+
}
|
|
68
|
+
to_id(ast) {
|
|
69
|
+
if (this.is_id(ast)) {
|
|
70
|
+
const ids = ast.slice(1);
|
|
71
|
+
return ids.join(".");
|
|
72
|
+
}
|
|
73
|
+
else if (this.is_script(ast)) {
|
|
74
|
+
return "<script>";
|
|
75
|
+
}
|
|
76
|
+
return ast;
|
|
77
|
+
}
|
|
78
|
+
id(x) {
|
|
79
|
+
return ["#", x];
|
|
80
|
+
}
|
|
81
|
+
to_def(ast) {
|
|
82
|
+
if (!this.is_array(ast))
|
|
83
|
+
return null;
|
|
84
|
+
if (ast.length === 0)
|
|
85
|
+
return null;
|
|
86
|
+
switch (this.to_id(ast[0])) {
|
|
87
|
+
case "def": {
|
|
88
|
+
if (ast.length < 2)
|
|
89
|
+
throw new Error("syntax error");
|
|
90
|
+
const ast1 = ast[1];
|
|
91
|
+
const ast2 = ast.length === 2 ? null : ast[2];
|
|
92
|
+
return [this.id("def"), ast1, ast2];
|
|
93
|
+
}
|
|
94
|
+
case "defvar": {
|
|
95
|
+
if (ast.length < 2)
|
|
96
|
+
throw new Error("syntax error");
|
|
97
|
+
const ast1 = ast[1];
|
|
98
|
+
const ast2 = ast.length === 2 ? null : ast[2];
|
|
99
|
+
return [this.id("def"), ast1, ast2];
|
|
100
|
+
}
|
|
101
|
+
case "defun": {
|
|
102
|
+
if (ast.length < 3)
|
|
103
|
+
throw new Error("syntax error");
|
|
104
|
+
const new_ast = ast.slice(3);
|
|
105
|
+
new_ast.unshift(ast[2]);
|
|
106
|
+
new_ast.unshift(this.id("fn"));
|
|
107
|
+
return [this.id("def"), ast[1], new_ast];
|
|
108
|
+
}
|
|
109
|
+
case "define": {
|
|
110
|
+
const ast1 = this.to_id(ast[1]);
|
|
111
|
+
if (ast1 instanceof Array) {
|
|
112
|
+
if (ast.length < 2)
|
|
113
|
+
throw new Error("syntax error");
|
|
114
|
+
const new_ast = ast.slice(2);
|
|
115
|
+
return this.to_def([this.id("defun"), ast[1][0], ast[1].slice(1), ...new_ast]);
|
|
116
|
+
}
|
|
117
|
+
else {
|
|
118
|
+
if (ast.length < 2)
|
|
119
|
+
throw new Error("syntax error");
|
|
120
|
+
const ast2 = ast.length === 2 ? null : ast[2];
|
|
121
|
+
return this.to_def([this.id("defvar"), ast[1], ast2]);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
default:
|
|
125
|
+
return null;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
package/esm/package.json
ADDED
package/esm/xp-lisp.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export function version(): string;
|
|
2
|
+
export function xpLisp(): {
|
|
3
|
+
compile_ast(ast: any, debug: any): any;
|
|
4
|
+
compile(text: any, debug: any): string;
|
|
5
|
+
exec_d(exp: any): any;
|
|
6
|
+
exec(exp: any, debug: any): any;
|
|
7
|
+
run(exp: any): any;
|
|
8
|
+
execAll(exp: any, debug: any): any;
|
|
9
|
+
runAll(exp: any): any;
|
|
10
|
+
};
|
|
11
|
+
export function run(exp: any): any;
|
|
12
|
+
export function runAll(exp: any): any;
|
|
13
|
+
//# sourceMappingURL=xp-lisp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"xp-lisp.d.ts","sourceRoot":"","sources":["../src/xp-lisp.js"],"names":[],"mappings":"AAMA,kCAEC;AAsaD;;;;;;;;EA+GC;AAED,mCAGC;AAED,sCAGC"}
|