mcp-vue-codegen 1.0.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.
Files changed (51) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +82 -0
  3. package/build/generators/api.d.ts +3 -0
  4. package/build/generators/api.d.ts.map +1 -0
  5. package/build/generators/api.js +8 -0
  6. package/build/generators/api.js.map +1 -0
  7. package/build/generators/form-vue.d.ts +3 -0
  8. package/build/generators/form-vue.d.ts.map +1 -0
  9. package/build/generators/form-vue.js +8 -0
  10. package/build/generators/form-vue.js.map +1 -0
  11. package/build/generators/index-vue.d.ts +3 -0
  12. package/build/generators/index-vue.d.ts.map +1 -0
  13. package/build/generators/index-vue.js +8 -0
  14. package/build/generators/index-vue.js.map +1 -0
  15. package/build/generators/options.d.ts +3 -0
  16. package/build/generators/options.d.ts.map +1 -0
  17. package/build/generators/options.js +8 -0
  18. package/build/generators/options.js.map +1 -0
  19. package/build/index.d.ts +3 -0
  20. package/build/index.d.ts.map +1 -0
  21. package/build/index.js +74 -0
  22. package/build/index.js.map +1 -0
  23. package/build/templates/api.tpl.d.ts +3 -0
  24. package/build/templates/api.tpl.d.ts.map +1 -0
  25. package/build/templates/api.tpl.js +53 -0
  26. package/build/templates/api.tpl.js.map +1 -0
  27. package/build/templates/form-vue.tpl.d.ts +3 -0
  28. package/build/templates/form-vue.tpl.d.ts.map +1 -0
  29. package/build/templates/form-vue.tpl.js +862 -0
  30. package/build/templates/form-vue.tpl.js.map +1 -0
  31. package/build/templates/index-vue.tpl.d.ts +3 -0
  32. package/build/templates/index-vue.tpl.d.ts.map +1 -0
  33. package/build/templates/index-vue.tpl.js +591 -0
  34. package/build/templates/index-vue.tpl.js.map +1 -0
  35. package/build/templates/options.tpl.d.ts +3 -0
  36. package/build/templates/options.tpl.d.ts.map +1 -0
  37. package/build/templates/options.tpl.js +48 -0
  38. package/build/templates/options.tpl.js.map +1 -0
  39. package/build/tools/generate.d.ts +11 -0
  40. package/build/tools/generate.d.ts.map +1 -0
  41. package/build/tools/generate.js +95 -0
  42. package/build/tools/generate.js.map +1 -0
  43. package/build/tools/validate.d.ts +1051 -0
  44. package/build/tools/validate.d.ts.map +1 -0
  45. package/build/tools/validate.js +147 -0
  46. package/build/tools/validate.js.map +1 -0
  47. package/build/types/schema.d.ts +124 -0
  48. package/build/types/schema.d.ts.map +1 -0
  49. package/build/types/schema.js +7 -0
  50. package/build/types/schema.js.map +1 -0
  51. package/package.json +34 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 anshu
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,82 @@
1
+ # mcp-vue-codegen
2
+
3
+ MCP Server,根据数据库表字段 JSON 文档自动生成 Vue3 前端 CRUD 模块代码。
4
+
5
+ ## 生成文件
6
+
7
+ - `options.ts` — 表单字段配置、过滤类型
8
+ - `api/*.ts` — 5 个标准 CRUD 接口
9
+ - `index.vue` — 列表页(表格、搜索、按钮、分页、工作流)
10
+ - `form.vue` — 表单页(折叠面板、字段控件、校验规则、主从表)
11
+
12
+ ## 使用方式
13
+
14
+ ### npx 直接运行
15
+
16
+ ```bash
17
+ npx mcp-vue-codegen
18
+ ```
19
+
20
+ ### IDE 配置
21
+
22
+ 在 Claude Code 的 MCP 设置中添加:
23
+
24
+ ```json
25
+ {
26
+ "mcpServers": {
27
+ "vue-codegen": {
28
+ "command": "npx",
29
+ "args": ["-y", "mcp-vue-codegen"]
30
+ }
31
+ }
32
+ }
33
+ ```
34
+
35
+ ## MCP Tools
36
+
37
+ ### validate_schema
38
+
39
+ 校验 JSON 文档是否符合规范。
40
+
41
+ | 参数 | 类型 | 说明 |
42
+ |------|------|------|
43
+ | schemaJson | string | JSON 文档内容 |
44
+
45
+ ### generate_vue_crud
46
+
47
+ 根据 JSON 文档生成完整 CRUD 代码。
48
+
49
+ | 参数 | 类型 | 说明 |
50
+ |------|------|------|
51
+ | schemaJson | string | JSON 文档内容 |
52
+ | outputDir | string | 输出目录路径 |
53
+
54
+ ## JSON 文档格式
55
+
56
+ ```json
57
+ {
58
+ "module": {
59
+ "moduleName": "oa",
60
+ "businessName": "企业证照借用",
61
+ "entityName": "CertBorrow",
62
+ "apiBasePath": "/oa/certBorrow",
63
+ "permissionPrefix": "oa_OaCertificatesBorrow",
64
+ "hasWorkflow": true,
65
+ "hasExport": true,
66
+ "hasPrint": true
67
+ },
68
+ "master": {
69
+ "tableName": "oa_cert_borrow",
70
+ "formSections": [...],
71
+ "fields": [...]
72
+ },
73
+ "detail": {
74
+ "tableName": "oa_cert_borrow_detail",
75
+ "fields": [...]
76
+ }
77
+ }
78
+ ```
79
+
80
+ ## License
81
+
82
+ MIT
@@ -0,0 +1,3 @@
1
+ import { TableSchema } from '../types/schema.js';
2
+ export declare function generateApi(schema: TableSchema): string;
3
+ //# sourceMappingURL=api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/generators/api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,wBAAgB,WAAW,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CAEvD"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.generateApi = generateApi;
4
+ const api_tpl_js_1 = require("../templates/api.tpl.js");
5
+ function generateApi(schema) {
6
+ return (0, api_tpl_js_1.generateApiTemplate)(schema);
7
+ }
8
+ //# sourceMappingURL=api.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/generators/api.ts"],"names":[],"mappings":";;AAGA,kCAEC;AAJD,wDAA8D;AAE9D,SAAgB,WAAW,CAAC,MAAmB;IAC7C,OAAO,IAAA,gCAAmB,EAAC,MAAM,CAAC,CAAC;AACrC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { TableSchema } from '../types/schema.js';
2
+ export declare function generateFormVue(schema: TableSchema): string;
3
+ //# sourceMappingURL=form-vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-vue.d.ts","sourceRoot":"","sources":["../../src/generators/form-vue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,wBAAgB,eAAe,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CAE3D"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.generateFormVue = generateFormVue;
4
+ const form_vue_tpl_js_1 = require("../templates/form-vue.tpl.js");
5
+ function generateFormVue(schema) {
6
+ return (0, form_vue_tpl_js_1.generateFormVueTemplate)(schema);
7
+ }
8
+ //# sourceMappingURL=form-vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-vue.js","sourceRoot":"","sources":["../../src/generators/form-vue.ts"],"names":[],"mappings":";;AAGA,0CAEC;AAJD,kEAAuE;AAEvE,SAAgB,eAAe,CAAC,MAAmB;IACjD,OAAO,IAAA,yCAAuB,EAAC,MAAM,CAAC,CAAC;AACzC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { TableSchema } from '../types/schema.js';
2
+ export declare function generateIndexVue(schema: TableSchema): string;
3
+ //# sourceMappingURL=index-vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-vue.d.ts","sourceRoot":"","sources":["../../src/generators/index-vue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CAE5D"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.generateIndexVue = generateIndexVue;
4
+ const index_vue_tpl_js_1 = require("../templates/index-vue.tpl.js");
5
+ function generateIndexVue(schema) {
6
+ return (0, index_vue_tpl_js_1.generateIndexVueTemplate)(schema);
7
+ }
8
+ //# sourceMappingURL=index-vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-vue.js","sourceRoot":"","sources":["../../src/generators/index-vue.ts"],"names":[],"mappings":";;AAGA,4CAEC;AAJD,oEAAyE;AAEzE,SAAgB,gBAAgB,CAAC,MAAmB;IAClD,OAAO,IAAA,2CAAwB,EAAC,MAAM,CAAC,CAAC;AAC1C,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { TableSchema } from '../types/schema.js';
2
+ export declare function generateOptions(schema: TableSchema): string;
3
+ //# sourceMappingURL=options.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../src/generators/options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,wBAAgB,eAAe,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CAE3D"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.generateOptions = generateOptions;
4
+ const options_tpl_js_1 = require("../templates/options.tpl.js");
5
+ function generateOptions(schema) {
6
+ return (0, options_tpl_js_1.generateOptionsTemplate)(schema);
7
+ }
8
+ //# sourceMappingURL=options.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"options.js","sourceRoot":"","sources":["../../src/generators/options.ts"],"names":[],"mappings":";;AAGA,0CAEC;AAJD,gEAAsE;AAEtE,SAAgB,eAAe,CAAC,MAAmB;IACjD,OAAO,IAAA,wCAAuB,EAAC,MAAM,CAAC,CAAC;AACzC,CAAC"}
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
package/build/index.js ADDED
@@ -0,0 +1,74 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const mcp_js_1 = require("@modelcontextprotocol/sdk/server/mcp.js");
5
+ const stdio_js_1 = require("@modelcontextprotocol/sdk/server/stdio.js");
6
+ const zod_1 = require("zod");
7
+ const validate_js_1 = require("./tools/validate.js");
8
+ const generate_js_1 = require("./tools/generate.js");
9
+ const server = new mcp_js_1.McpServer({
10
+ name: 'mcp-vue-codegen',
11
+ version: '1.0.0',
12
+ });
13
+ // Tool 1: validate_schema
14
+ server.tool('validate_schema', '校验 JSON 文档是否符合 Vue3 CRUD 代码生成规范', {
15
+ schemaJson: zod_1.z.string().describe('JSON 文档内容(字符串)'),
16
+ }, async ({ schemaJson }) => {
17
+ const result = (0, validate_js_1.validateSchema)(schemaJson);
18
+ if (result.valid) {
19
+ return {
20
+ content: [
21
+ {
22
+ type: 'text',
23
+ text: '✅ JSON 文档校验通过,可以用于代码生成。',
24
+ },
25
+ ],
26
+ };
27
+ }
28
+ return {
29
+ content: [
30
+ {
31
+ type: 'text',
32
+ text: `❌ JSON 文档校验失败:\n${result.errors.map((e, i) => `${i + 1}. ${e}`).join('\n')}`,
33
+ },
34
+ ],
35
+ };
36
+ });
37
+ // Tool 2: generate_vue_crud
38
+ server.tool('generate_vue_crud', '根据 JSON 文档生成完整的 Vue3 CRUD 模块代码(index.vue、form.vue、options.ts、api/*.ts)', {
39
+ schemaJson: zod_1.z.string().describe('JSON 文档内容(字符串)'),
40
+ outputDir: zod_1.z.string().describe('输出目录路径'),
41
+ }, async ({ schemaJson, outputDir }) => {
42
+ const result = await (0, generate_js_1.generateVueCrud)(schemaJson, outputDir);
43
+ if (result.success) {
44
+ const fileList = result.files
45
+ .map(f => ` - ${f.path} (${f.lines} 行) — ${f.description}`)
46
+ .join('\n');
47
+ return {
48
+ content: [
49
+ {
50
+ type: 'text',
51
+ text: `✅ 代码生成成功!\n\n生成文件列表:\n${fileList}`,
52
+ },
53
+ ],
54
+ };
55
+ }
56
+ return {
57
+ content: [
58
+ {
59
+ type: 'text',
60
+ text: `❌ 代码生成失败:${result.error}`,
61
+ },
62
+ ],
63
+ };
64
+ });
65
+ // Start the server
66
+ async function main() {
67
+ const transport = new stdio_js_1.StdioServerTransport();
68
+ await server.connect(transport);
69
+ }
70
+ main().catch((error) => {
71
+ console.error('Server error:', error);
72
+ process.exit(1);
73
+ });
74
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAEA,oEAAoE;AACpE,wEAAiF;AACjF,6BAAwB;AACxB,qDAAqD;AACrD,qDAAsD;AAEtD,MAAM,MAAM,GAAG,IAAI,kBAAS,CAAC;IAC3B,IAAI,EAAE,iBAAiB;IACvB,OAAO,EAAE,OAAO;CACjB,CAAC,CAAC;AAEH,0BAA0B;AAC1B,MAAM,CAAC,IAAI,CACT,iBAAiB,EACjB,iCAAiC,EACjC;IACE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gBAAgB,CAAC;CAClD,EACD,KAAK,EAAE,EAAE,UAAU,EAAE,EAAE,EAAE;IACvB,MAAM,MAAM,GAAG,IAAA,4BAAc,EAAC,UAAU,CAAC,CAAC;IAC1C,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC;QACjB,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAe;oBACrB,IAAI,EAAE,yBAAyB;iBAChC;aACF;SACF,CAAC;IACJ,CAAC;IACD,OAAO;QACL,OAAO,EAAE;YACP;gBACE,IAAI,EAAE,MAAe;gBACrB,IAAI,EAAE,mBAAmB,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;aACpF;SACF;KACF,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,4BAA4B;AAC5B,MAAM,CAAC,IAAI,CACT,mBAAmB,EACnB,wEAAwE,EACxE;IACE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gBAAgB,CAAC;IACjD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC;CACzC,EACD,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,EAAE,EAAE,EAAE;IAClC,MAAM,MAAM,GAAG,MAAM,IAAA,6BAAe,EAAC,UAAU,EAAE,SAAS,CAAC,CAAC;IAC5D,IAAI,MAAM,CAAC,OAAO,EAAE,CAAC;QACnB,MAAM,QAAQ,GAAG,MAAM,CAAC,KAAK;aAC1B,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,KAAK,SAAS,CAAC,CAAC,WAAW,EAAE,CAAC;aAC3D,IAAI,CAAC,IAAI,CAAC,CAAC;QACd,OAAO;YACL,OAAO,EAAE;gBACP;oBACE,IAAI,EAAE,MAAe;oBACrB,IAAI,EAAE,yBAAyB,QAAQ,EAAE;iBAC1C;aACF;SACF,CAAC;IACJ,CAAC;IACD,OAAO;QACL,OAAO,EAAE;YACP;gBACE,IAAI,EAAE,MAAe;gBACrB,IAAI,EAAE,YAAY,MAAM,CAAC,KAAK,EAAE;aACjC;SACF;KACF,CAAC;AACJ,CAAC,CACF,CAAC;AAEF,mBAAmB;AACnB,KAAK,UAAU,IAAI;IACjB,MAAM,SAAS,GAAG,IAAI,+BAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;AAClC,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACrB,OAAO,CAAC,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;IACtC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { TableSchema } from '../types/schema.js';
2
+ export declare function generateApiTemplate(schema: TableSchema): string;
3
+ //# sourceMappingURL=api.tpl.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.tpl.d.ts","sourceRoot":"","sources":["../../src/templates/api.tpl.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEjD,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CAiD/D"}
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.generateApiTemplate = generateApiTemplate;
4
+ function generateApiTemplate(schema) {
5
+ const basePath = schema.module.apiBasePath;
6
+ return `import request from '/@/utils/request'
7
+
8
+ // 列表查询
9
+ export function fetchList(query?: Object) {
10
+ return request({
11
+ url: '${basePath}/page',
12
+ method: 'get',
13
+ params: query
14
+ })
15
+ }
16
+
17
+ // 新增单条数据
18
+ export function addObj(obj?: Object) {
19
+ return request({
20
+ url: '${basePath}',
21
+ method: 'post',
22
+ data: obj
23
+ })
24
+ }
25
+
26
+ // 获取单条数据
27
+ export function getObj(id?: string) {
28
+ return request({
29
+ url: '${basePath}/' + id,
30
+ method: 'get'
31
+ })
32
+ }
33
+
34
+ // 删除多条数据
35
+ export function delObjs(ids?: Object) {
36
+ return request({
37
+ url: '${basePath}/removeByIds',
38
+ method: 'post',
39
+ data: ids
40
+ })
41
+ }
42
+
43
+ // 修改数据
44
+ export function putObj(obj?: Object) {
45
+ return request({
46
+ url: '${basePath}/updateById',
47
+ method: 'post',
48
+ data: obj
49
+ })
50
+ }
51
+ `;
52
+ }
53
+ //# sourceMappingURL=api.tpl.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.tpl.js","sourceRoot":"","sources":["../../src/templates/api.tpl.ts"],"names":[],"mappings":";;AAEA,kDAiDC;AAjDD,SAAgB,mBAAmB,CAAC,MAAmB;IACrD,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,CAAC;IAE3C,OAAO;;;;;YAKG,QAAQ;;;;;;;;;YASR,QAAQ;;;;;;;;;YASR,QAAQ;;;;;;;;YAQR,QAAQ;;;;;;;;;YASR,QAAQ;;;;;CAKnB,CAAC;AACF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { TableSchema } from '../types/schema.js';
2
+ export declare function generateFormVueTemplate(schema: TableSchema): string;
3
+ //# sourceMappingURL=form-vue.tpl.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-vue.tpl.d.ts","sourceRoot":"","sources":["../../src/templates/form-vue.tpl.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAyB,MAAM,oBAAoB,CAAC;AAiMxE,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CAykBnE"}