@indra.ai/deva 1.4.8 โ†’ 1.4.9

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/index.js CHANGED
@@ -2,15 +2,15 @@
2
2
  // Distributed under the Restricted software license, see the accompanying file LICENSE.md
3
3
  import {EventEmitter} from 'node:events';
4
4
  import {randomUUID} from 'crypto';
5
-
6
5
  import lib from './lib/index.js';
6
+ import pkg from './package.json' with {type:'json'};
7
7
 
8
+ const {name,version,repository,author,bugs,homepage,license,config} = pkg;
8
9
 
9
- import Config from './config.json' with {type:'json'};
10
- const config = Config.DATA;
11
10
  class Deva {
12
11
  constructor(opts) {
13
12
  opts = opts || {}; // set opts to provided opts or an empty object.
13
+ this._core = {name,version,repository,author,bugs,homepage,license};
14
14
  this._id = opts.id || randomUUID(); // the unique id assigned to the agent at load
15
15
  this._info = opts.info || false; // the deva information from the package file.
16
16
  this._config = opts.config || {}; // local Config Object
@@ -36,7 +36,6 @@ class Deva {
36
36
  this.func = opts.func || {}; // local Functions
37
37
  this.methods = opts.methods || {}; // local Methods
38
38
  this.maxListeners = opts.maxListenners || 0; // set the local maxListeners
39
-
40
39
  // prevent overwriting existing functions and variables with same name
41
40
  for (const opt in opts) {
42
41
  if (!this[opt] || !this[`_${opt}`]) this[opt] = opts[opt];
@@ -1439,15 +1438,32 @@ class Deva {
1439
1438
 
1440
1439
 
1441
1440
 
1441
+ /**************
1442
+ func: core
1443
+ params: none
1444
+ describe: return core data.
1445
+ ***************/
1446
+ core() {
1447
+ // check the active status
1448
+ if (!this._active) return Promise.resolve(this._messages.offline);
1449
+ const data = this.lib.copy(this._core);
1450
+ data.id = this.lib.uid();
1451
+ data.hash = this.lib.hash(data);
1452
+ return data;
1453
+ }
1454
+
1442
1455
  /**************
1443
1456
  func: info
1444
- params: id
1457
+ params: none
1445
1458
  describe: return info data.
1446
1459
  ***************/
1447
1460
  info() {
1448
1461
  // check the active status
1449
1462
  if (!this._active) return Promise.resolve(this._messages.offline);
1450
- return this._info;
1463
+ const data = this.lib.copy(this._info);
1464
+ data.id = this.lib.uid();
1465
+ data.hash = this.lib.hash(data);
1466
+ return data;
1451
1467
  }
1452
1468
 
1453
1469
  /**************
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indra.ai/deva",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "description": "The Deva Core",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -38,7 +38,7 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/indraai/deva/issues"
40
40
  },
41
- "homepage": "https://deva.space",
41
+ "homepage": "https://deva.world",
42
42
  "eslintConfig": {
43
43
  "parserOptions": {
44
44
  "ecmaVersion": 6
@@ -47,5 +47,249 @@
47
47
  "engines": {
48
48
  "npm": ">=9.5.1",
49
49
  "node": ">=18.16.0"
50
+ },
51
+ "config": {
52
+ "cmdChr": "/",
53
+ "askChr": "#",
54
+ "inherit": [
55
+ "events",
56
+ "lib",
57
+ "config"
58
+ ],
59
+ "bind": [
60
+ "listeners",
61
+ "methods",
62
+ "utils",
63
+ "func",
64
+ "lib"
65
+ ],
66
+ "events": {
67
+ "prompt": "devacore:prompt",
68
+ "error": "devacore:error",
69
+ "question": "devacore:question",
70
+ "answer": "devacore:answer",
71
+ "ask": "devacore:ask",
72
+ "state": "devacore:state",
73
+ "zone": "devacore:zone",
74
+ "action": "devacore:action",
75
+ "feature": "devacore:feature",
76
+ "load": "devacore:load",
77
+ "unload": "devacore:unload",
78
+ "context": "devacore:context"
79
+ },
80
+ "context": false,
81
+ "zone": "deva",
82
+ "zones": {
83
+ "load": "๐Ÿš› Load",
84
+ "unload": "๐Ÿ›ป Unload",
85
+ "init": "๐Ÿš€ Init",
86
+ "start": "๐ŸŽ๏ธ Start",
87
+ "stop": "๐Ÿ›‘ Stop",
88
+ "enter": "๐Ÿก Enter",
89
+ "exit": "๐Ÿšช Exit",
90
+ "finish": "๐Ÿ Finish",
91
+ "deva": "โšก๏ธ Deva",
92
+ "client": "๐Ÿ‘จ Client",
93
+ "agent": "๐Ÿค– Agent",
94
+ "security": "๐Ÿ” Security",
95
+ "support": "๐Ÿš‘ Support",
96
+ "services": "๐Ÿšš Services",
97
+ "systems": "๐Ÿš› Systems",
98
+ "networks": "๐Ÿ›ฐ๏ธ Networks",
99
+ "legal": "๐Ÿ›๏ธ Legal",
100
+ "authority": "๐Ÿš” Authority",
101
+ "justice": "โš–๏ธ Justice",
102
+ "defense": "๐Ÿช– Defense",
103
+ "help": "๐Ÿ’š Help",
104
+ "error": "โŒ Error!"
105
+ },
106
+ "state": "offline",
107
+ "states": {
108
+ "online": "๐Ÿคฉ Online",
109
+ "offline": "๐Ÿ˜ด Offline",
110
+ "active": "๐Ÿ˜€ Active",
111
+ "inactive": "๐Ÿซฅ Inactive",
112
+ "idle": "๐Ÿš˜ Idle",
113
+ "talk": "๐Ÿ“ข Talk",
114
+ "listen": "๐Ÿ‘‚ Listen",
115
+ "ask": "๐Ÿ—ฃ๏ธ Ask",
116
+ "question": "๐Ÿ’ฌ Question",
117
+ "cmd": "๐Ÿช– Command",
118
+ "answer": "๐Ÿ’ก Answer",
119
+ "ready": "๐Ÿ˜Š Ready",
120
+ "wait": "โณ Waiting",
121
+ "pause": "โธ๏ธ Pause",
122
+ "resume": "๐Ÿš™ Resume",
123
+ "connect": "๐Ÿ“ณ Connect",
124
+ "disconnect": "๐Ÿ“ด Disconnect",
125
+ "send": "๐Ÿ“ฌ Send",
126
+ "receive": "๐Ÿ“ช Receive",
127
+ "init": "๐Ÿš€ Init",
128
+ "forward": "โญ๏ธ Forward",
129
+ "backward": "โฎ๏ธ Backward",
130
+ "start": "๐Ÿ› Start",
131
+ "stop": "โน๏ธ Stop",
132
+ "open": "๐Ÿฅซ Open",
133
+ "close": "๐Ÿ“ฆ Close",
134
+ "enter": "๐Ÿก Enter",
135
+ "exit": "๐Ÿšช Exit",
136
+ "begin": "๐Ÿ—บ๏ธ Begin",
137
+ "end": "๐ŸŽฌ End",
138
+ "load": "๐Ÿšš Load",
139
+ "unload": "๐Ÿ›ป Unload",
140
+ "resolve": "๐Ÿค Resolve",
141
+ "reject": "๐Ÿงฑ Reject",
142
+ "done": "๐Ÿ‘ Done",
143
+ "data": "๐Ÿ“ก Data",
144
+ "finish": "๐Ÿ Finish",
145
+ "complete": "โœ… Complete",
146
+ "create": "๐ŸŽจ Create",
147
+ "destroy": "๐Ÿ’ฃ Destroy",
148
+ "write": "๐Ÿ“ Write",
149
+ "save": "๐Ÿ’พ Save",
150
+ "delete": "๐Ÿงจ Delete",
151
+ "set": "๐Ÿ–– Set",
152
+ "get": "๐Ÿซด Get",
153
+ "put": "๐Ÿค Put",
154
+ "push": "๐Ÿซธ Push",
155
+ "pull": "๐Ÿ‘‰ Pull",
156
+ "search": "๐Ÿ”Ž Search",
157
+ "memory": "๐Ÿ’ญ Memory",
158
+ "signature": "โ›‘๏ธ Response",
159
+ "invalid": "๐Ÿ‘Ž INVALID!",
160
+ "valid": "๐Ÿ‘ VALID!",
161
+ "abort": "๐Ÿ’” ABORT!",
162
+ "error": "โŒ ERROR!",
163
+ "help": "๐Ÿ’™ Help",
164
+ "authorized": "๐Ÿ”‘ Authorized",
165
+ "unauthorized": "๐Ÿดโ€โ˜ ๏ธ Unauthorized",
166
+ "Done": "โ˜‘๏ธ Done",
167
+ "glitch": "๐Ÿ˜ก Glitch",
168
+ "intruder": "๐Ÿฆนโ€โ™‚๏ธ Intruder",
169
+ "snooper": "๐Ÿ‘€ Snooper",
170
+ "scam": "๐Ÿ™…โ€โ™‚๏ธ Scam",
171
+ "fraud": "โ€ผ๏ธ Fraud",
172
+ "crime": "๐Ÿš” Crime",
173
+ "official": "๐Ÿซก Official",
174
+ "unofficial": "๐Ÿคฅ Unofficial",
175
+ "approved": "๐ŸŽ–๏ธ Approved",
176
+ "denied": "๐Ÿ–• Denied",
177
+ "secure": "๐Ÿ” Secure"
178
+ },
179
+ "action": false,
180
+ "actions": {
181
+ "init": "๐Ÿš€ Init",
182
+ "wait": "โณ Waiting",
183
+ "start": "๐ŸŽฌ Start",
184
+ "enter": "๐Ÿก Enter",
185
+ "exit": "๐Ÿšช Exit",
186
+ "stop": "๐Ÿ›‘ Stop",
187
+ "load": "๐Ÿ“ฆ Load",
188
+ "unload": "๐Ÿฅก Unload",
189
+ "finish": "๐Ÿ Finish",
190
+ "complete": "โœ… Complete",
191
+ "done": "โ˜‘๏ธ Done",
192
+ "ready": "๐ŸŸข Ready",
193
+ "question": "๐Ÿ™‹ Question",
194
+ "talk": "๐Ÿ“ข Talk",
195
+ "context": "๐Ÿ“‡ Context",
196
+ "prompt": "๐Ÿš Prompt",
197
+ "issue": "๐ŸŽซ Issue",
198
+ "find": "๐Ÿ”Ž Find",
199
+ "parse": "๐Ÿ˜๏ธ Parse",
200
+ "view": "๐Ÿ‘“ View",
201
+ "insert": "๐Ÿ‘‰ Insert",
202
+ "update": "๐Ÿ‘† Update",
203
+ "delete": "๐Ÿ—‘๏ธ Delete",
204
+ "info": "๐Ÿ’โ€โ™‚๏ธ Information",
205
+ "status": "๐Ÿšฅ Status",
206
+ "func": "๐Ÿ”ฆ Function",
207
+ "method": "โค๏ธโ€๐Ÿ”ฅ Method",
208
+ "list": "๐Ÿ“‹ List",
209
+ "reply": "๐Ÿ“ฎ Reply",
210
+ "set": "๐Ÿฝ๏ธ Set",
211
+ "get": "๐Ÿค” Get",
212
+ "send": "๐Ÿš€ Send",
213
+ "receive": "๐Ÿฅ… Receive",
214
+ "return": "๐ŸŽ Return",
215
+ "resolve": "โ›ต๏ธ Resolve",
216
+ "reject": "โŒ Reject",
217
+ "write": "๐Ÿ–‹๏ธ Write",
218
+ "question_ask": "๐Ÿ—ฃ๏ธ Asked",
219
+ "question_ask_answer": "๐ŸŽ™๏ธ Answered",
220
+ "question_cmd": "๐Ÿช– Command",
221
+ "question_answer": "๐Ÿ“ž Answer",
222
+ "answer": "๐Ÿ’ก Answer",
223
+ "ask": "๐Ÿ“ฃ Ask",
224
+ "client": "๐Ÿ‘จ Client",
225
+ "agent": "๐Ÿ•ต๏ธโ€โ™‚๏ธ Agent",
226
+ "security": "๐Ÿ” Security",
227
+ "support": "๐Ÿฉน Support",
228
+ "services": "๐Ÿ› ๏ธ Services",
229
+ "systems": "๐Ÿ–ฅ๏ธ Systems",
230
+ "networks": "๐Ÿ“ก Networks",
231
+ "legal": "๐Ÿ—ƒ๏ธ Legal",
232
+ "justice": "๐Ÿ—„๏ธ Justice",
233
+ "authority": "๐Ÿ‘ฎ Authority",
234
+ "defense": "๐Ÿช– Defense",
235
+ "invalid": "โŒ Invalid",
236
+ "states": "๐Ÿ›ป States",
237
+ "actions": "๐ŸŽ๏ธ Actions",
238
+ "zones": "Zones",
239
+ "feature": "๐ŸŽฅ Feature",
240
+ "features": "๐ŸŽฅ Features",
241
+ "contexts": "๐ŸŒˆ Contexts",
242
+ "help": "๐Ÿ’œ Help",
243
+ "error": "๐Ÿ”ด ERROR!",
244
+ "lawful": "๐Ÿš“ Lawful",
245
+ "unlawful": "๐Ÿ‘ฟ Unlawful",
246
+ "audio": "๐Ÿ‘‚ Audio",
247
+ "text": "๐Ÿ“• Text",
248
+ "image": "๐ŸŒ„ Image",
249
+ "video": "๐Ÿ“ฝ๏ธ Video",
250
+ "signature": "โœ๏ธ Signature",
251
+ "orders": "๐Ÿช– Orders",
252
+ "law": "๐Ÿ” Law",
253
+ "decree": "๐Ÿ“œ Decree"
254
+ },
255
+ "feature": false,
256
+ "features": {
257
+ "client": "๐Ÿ‘จ Client",
258
+ "init": "๐Ÿš€ Init",
259
+ "security": "๐Ÿ” Security",
260
+ "support": "๐Ÿ’ผ Support",
261
+ "services": "๐Ÿ› ๏ธ Services",
262
+ "systems": "๐Ÿ–ฅ๏ธ๏ธ Systems",
263
+ "networks": "๐Ÿ›œ๏ธ๏ธ Networks",
264
+ "legal": "๐Ÿ—‚๏ธ๏ธ๏ธ Legal",
265
+ "justice": "๐Ÿ›๏ธ๏ธ Justice",
266
+ "authority": "๐Ÿš“๏ธ๏ธ Authority",
267
+ "defense": "๐Ÿช–๏ธ๏ธ Defense",
268
+ "cipher": "๐Ÿ”’ Cipher",
269
+ "decipher": "๐Ÿ”“ Decipher",
270
+ "promp": "๐Ÿชต Prompt",
271
+ "getToday": "๐Ÿ“† Get Today",
272
+ "formatDate": "๐Ÿ“… Format Date",
273
+ "formatTime": "๐Ÿ•ฐ๏ธ Format Time",
274
+ "formatCurrency": "๐Ÿ’ฐ Format Currency",
275
+ "formatPercent": "% Format Percent",
276
+ "formatNumbert": "# Format Number",
277
+ "trimWords": "๐Ÿ™Š Trim Words",
278
+ "dupes": "๐Ÿ“‹ Duplicates",
279
+ "info": "๐Ÿ’โ€โ™‚๏ธ Info",
280
+ "status": "โค๏ธ Status",
281
+ "help": "๐ŸŒˆ Help"
282
+ },
283
+ "message": "offline",
284
+ "messages": {
285
+ "init": "Initializing Deva",
286
+ "offline": "The Deva is OFFLINE.",
287
+ "noid": "NO ID WAS PROVIDED",
288
+ "notext": "NO TEXT WAS PROVIDED",
289
+ "nopacket": "NO PACKET WAS PROVIDED",
290
+ "method_not_found": "METHOD NOT FOUND",
291
+ "stop": "Stop Deva.",
292
+ "exit": "Exit Deva"
293
+ }
50
294
  }
51
295
  }
package/tests/index.js CHANGED
@@ -9,7 +9,26 @@ const agent = Agent.DATA;
9
9
 
10
10
  import Deva from '../index.js';
11
11
 
12
+ import {dirname} from 'node:path';
13
+ import {fileURLToPath} from 'node:url';
14
+ const __dirname = dirname(fileURLToPath(import.meta.url));
15
+
16
+ const info = {
17
+ id: '00000',
18
+ name: 'Deva Core Test',
19
+ describe: 'Deva Core Test Package',
20
+ version: '0.0.0',
21
+ dir: __dirname,
22
+ url: 'https://deva.world/test',
23
+ git: 'git+https://github.com/indraai/deva.git',
24
+ bugs: 'git+https://github.com/indraai/deva.git#bugs',
25
+ author: 'Quinn Michaels',
26
+ license: 'TESTING ONLY',
27
+ copyright: 2025,
28
+ };
29
+
12
30
  const DevaTest = new Deva({
31
+ info,
13
32
  agent: {
14
33
  id: agent.id,
15
34
  key: agent.key,
@@ -70,15 +89,24 @@ const DevaTest = new Deva({
70
89
  const text = this._state
71
90
  const id = this.lib.uid();
72
91
  const uid = this.lib.uid(true);
92
+ const core = this.core();
93
+ const info = this.info();
73
94
  const data = [
74
- `::BEGIN:DATA:${id}`,
75
- `id: ${id}`,
76
- `uid: ${uid}`,
77
- `md5: ${this.lib.hash(packet)}`,
78
- `sha256: ${this.lib.hash(packet, 'sha256')}`,
79
- `sha512: ${this.lib.hash(packet, 'sha512')}`,
80
- `date: ${this.lib.formatDate(Date.now(), 'long', true)}`,
81
- `::END:DATA:${this.lib.hash(packet)}`,
95
+ '๐Ÿงช TEST RESULTS',
96
+ `::BEGIN:CORE:${core.id}`,
97
+ JSON.stringify(core,null,2),
98
+ `::END:CORE:${core.hash}`,
99
+ `::BEGIN:INFO:${info.id}`,
100
+ JSON.stringify(info,null,2),
101
+ `::END:INFO:${info.hash}`,
102
+ `::BEGIN:RESULTS:${id}`,
103
+ `id: โœ… ${id}`,
104
+ `uid: โœ… ${uid}`,
105
+ `md5: โœ… ${this.lib.hash(packet)}`,
106
+ `sha256: โœ… ${this.lib.hash(packet, 'sha256')}`,
107
+ `sha512: โœ… ${this.lib.hash(packet, 'sha512')}`,
108
+ `date: โœ… ${this.lib.formatDate(Date.now(), 'long', true)}`,
109
+ `::END:RESULTS:${this.lib.hash(packet)}`,
82
110
  ];
83
111
  return {
84
112
  text: data.join('\n'),
package/config.json DELETED
@@ -1,248 +0,0 @@
1
- {
2
- "name": "Deva Core Configuration",
3
- "describe": "The Deva Core Configuraitno File contains all the values needed to run deva.world core.",
4
- "copyright": "Copyright 2023(c) Quinn Michaels. All rights reserved.",
5
- "DATA": {
6
- "cmdChr": "/",
7
- "askChr": "#",
8
- "inherit": ["events", "lib", "config"],
9
- "bind": [
10
- "listeners",
11
- "methods",
12
- "utils",
13
- "func",
14
- "lib"
15
- ],
16
- "events": {
17
- "prompt": "devacore:prompt",
18
- "error": "devacore:error",
19
- "question": "devacore:question",
20
- "answer": "devacore:answer",
21
- "ask": "devacore:ask",
22
- "state": "devacore:state",
23
- "zone": "devacore:zone",
24
- "action": "devacore:action",
25
- "feature": "devacore:feature",
26
- "load": "devacore:load",
27
- "unload": "devacore:unload",
28
- "context": "devacore:context"
29
- },
30
- "context": false,
31
- "zone": "deva",
32
- "zones": {
33
- "load": "๐Ÿš› Load",
34
- "unload": "๐Ÿ›ป Unload",
35
- "init": "๐Ÿš€ Init",
36
- "start": "๐ŸŽ๏ธ Start",
37
- "stop": "๐Ÿ›‘ Stop",
38
- "enter": "๐Ÿก Enter",
39
- "exit": "๐Ÿšช Exit",
40
- "finish": "๐Ÿ Finish",
41
- "deva": "โšก๏ธ Deva",
42
- "client": "๐Ÿ‘จ Client",
43
- "agent": "๐Ÿค– Agent",
44
- "security": "๐Ÿ” Security",
45
- "support": "๐Ÿš‘ Support",
46
- "services": "๐Ÿšš Services",
47
- "systems": "๐Ÿš› Systems",
48
- "networks": "๐Ÿ›ฐ๏ธ Networks",
49
- "legal": "๐Ÿ›๏ธ Legal",
50
- "authority": "๐Ÿš” Authority",
51
- "justice": "โš–๏ธ Justice",
52
- "defense": "๐Ÿช– Defense",
53
- "help": "๐Ÿ’š Help",
54
- "error": "โŒ Error!"
55
- },
56
- "state": "offline",
57
- "states": {
58
- "online": "๐Ÿคฉ Online",
59
- "offline": "๐Ÿ˜ด Offline",
60
- "active": "๐Ÿ˜€ Active",
61
- "inactive": "๐Ÿซฅ Inactive",
62
- "idle": "๐Ÿš˜ Idle",
63
- "talk": "๐Ÿ“ข Talk",
64
- "listen": "๐Ÿ‘‚ Listen",
65
- "ask": "๐Ÿ—ฃ๏ธ Ask",
66
- "question": "๐Ÿ’ฌ Question",
67
- "cmd": "๐Ÿช– Command",
68
- "answer": "๐Ÿ’ก Answer",
69
- "ready": "๐Ÿ˜Š Ready",
70
- "wait": "โณ Waiting",
71
- "pause": "โธ๏ธ Pause",
72
- "resume": "๐Ÿš™ Resume",
73
- "connect": "๐Ÿ“ณ Connect",
74
- "disconnect": "๐Ÿ“ด Disconnect",
75
- "send": "๐Ÿ“ฌ Send",
76
- "receive": "๐Ÿ“ช Receive",
77
- "init": "๐Ÿš€ Init",
78
- "forward": "โญ๏ธ Forward",
79
- "backward": "โฎ๏ธ Backward",
80
- "start": "๐Ÿ› Start",
81
- "stop": "โน๏ธ Stop",
82
- "open": "๐Ÿฅซ Open",
83
- "close": "๐Ÿ“ฆ Close",
84
- "enter": "๐Ÿก Enter",
85
- "exit": "๐Ÿšช Exit",
86
- "begin": "๐Ÿ—บ๏ธ Begin",
87
- "end": "๐ŸŽฌ End",
88
- "load": "๐Ÿšš Load",
89
- "unload": "๐Ÿ›ป Unload",
90
- "resolve": "๐Ÿค Resolve",
91
- "reject": "๐Ÿงฑ Reject",
92
- "done": "๐Ÿ‘ Done",
93
- "data": "๐Ÿ“ก Data",
94
- "finish": "๐Ÿ Finish",
95
- "complete": "โœ… Complete",
96
- "create": "๐ŸŽจ Create",
97
- "destroy": "๐Ÿ’ฃ Destroy",
98
- "write": "๐Ÿ“ Write",
99
- "save": "๐Ÿ’พ Save",
100
- "delete": "๐Ÿงจ Delete",
101
- "set": "๐Ÿ–– Set",
102
- "get": "๐Ÿซด Get",
103
- "put": "๐Ÿค Put",
104
- "push": "๐Ÿซธ Push",
105
- "pull": "๐Ÿ‘‰ Pull",
106
- "search": "๐Ÿ”Ž Search",
107
- "memory": "๐Ÿ’ญ Memory",
108
- "signature": "โ›‘๏ธ Response",
109
- "invalid": "๐Ÿ‘Ž INVALID!",
110
- "valid": "๐Ÿ‘ VALID!",
111
- "abort": "๐Ÿ’” ABORT!",
112
- "error": "โŒ ERROR!",
113
- "help": "๐Ÿ’™ Help",
114
- "authorized": "๐Ÿ”‘ Authorized",
115
- "unauthorized": "๐Ÿดโ€โ˜ ๏ธ Unauthorized",
116
- "Done": "โ˜‘๏ธ Done",
117
- "glitch": "๐Ÿ˜ก Glitch",
118
- "intruder": "๐Ÿฆนโ€โ™‚๏ธ Intruder",
119
- "snooper": "๐Ÿ‘€ Snooper",
120
- "scam": "๐Ÿ™…โ€โ™‚๏ธ Scam",
121
- "fraud": "โ€ผ๏ธ Fraud",
122
- "crime": "๐Ÿš” Crime",
123
- "official": "๐Ÿซก Official",
124
- "unofficial": "๐Ÿคฅ Unofficial",
125
- "approved": "๐ŸŽ–๏ธ Approved",
126
- "denied": "๐Ÿ–• Denied",
127
- "secure": "๐Ÿ” Secure"
128
- },
129
- "action": false,
130
- "actions": {
131
- "init": "๐Ÿš€ Init",
132
- "wait": "โณ Waiting",
133
- "start": "๐ŸŽฌ Start",
134
- "enter": "๐Ÿก Enter",
135
- "exit": "๐Ÿšช Exit",
136
- "stop": "๐Ÿ›‘ Stop",
137
- "load": "๐Ÿ“ฆ Load",
138
- "unload": "๐Ÿฅก Unload",
139
- "finish": "๐Ÿ Finish",
140
- "complete": "โœ… Complete",
141
- "done": "โ˜‘๏ธ Done",
142
- "ready": "๐ŸŸข Ready",
143
- "question": "๐Ÿ™‹ Question",
144
- "talk": "๐Ÿ“ข Talk",
145
- "context": "๐Ÿ“‡ Context",
146
- "prompt": "๐Ÿš Prompt",
147
- "issue": "๐ŸŽซ Issue",
148
- "find": "๐Ÿ”Ž Find",
149
- "parse": "๐Ÿ˜๏ธ Parse",
150
- "view": "๐Ÿ‘“ View",
151
- "insert": "๐Ÿ‘‰ Insert",
152
- "update": "๐Ÿ‘† Update",
153
- "delete": "๐Ÿ—‘๏ธ Delete",
154
- "info": "๐Ÿ’โ€โ™‚๏ธ Information",
155
- "status": "๐Ÿšฅ Status",
156
- "func": "๐Ÿ”ฆ Function",
157
- "method": "โค๏ธโ€๐Ÿ”ฅ Method",
158
- "list": "๐Ÿ“‹ List",
159
- "reply": "๐Ÿ“ฎ Reply",
160
- "set": "๐Ÿฝ๏ธ Set",
161
- "get": "๐Ÿค” Get",
162
- "send": "๐Ÿš€ Send",
163
- "receive": "๐Ÿฅ… Receive",
164
- "return": "๐ŸŽ Return",
165
- "resolve": "โ›ต๏ธ Resolve",
166
- "reject": "โŒ Reject",
167
- "write": "๐Ÿ–‹๏ธ Write",
168
- "question_ask": "๐Ÿ—ฃ๏ธ Asked",
169
- "question_ask_answer": "๐ŸŽ™๏ธ Answered",
170
- "question_cmd": "๐Ÿช– Command",
171
- "question_answer": "๐Ÿ“ž Answer",
172
-
173
- "answer": "๐Ÿ’ก Answer",
174
- "ask": "๐Ÿ“ฃ Ask",
175
-
176
- "client": "๐Ÿ‘จ Client",
177
- "agent": "๐Ÿ•ต๏ธโ€โ™‚๏ธ Agent",
178
- "security": "๐Ÿ” Security",
179
- "support": "๐Ÿฉน Support",
180
- "services": "๐Ÿ› ๏ธ Services",
181
- "systems": "๐Ÿ–ฅ๏ธ Systems",
182
- "networks": "๐Ÿ“ก Networks",
183
- "legal": "๐Ÿ—ƒ๏ธ Legal",
184
- "justice": "๐Ÿ—„๏ธ Justice",
185
- "authority": "๐Ÿ‘ฎ Authority",
186
- "defense": "๐Ÿช– Defense",
187
-
188
- "invalid": "โŒ Invalid",
189
- "states": "๐Ÿ›ป States",
190
- "actions": "๐ŸŽ๏ธ Actions",
191
- "zones": "Zones",
192
- "feature": "๐ŸŽฅ Feature",
193
- "features": "๐ŸŽฅ Features",
194
- "contexts": "๐ŸŒˆ Contexts",
195
- "help": "๐Ÿ’œ Help",
196
- "error": "๐Ÿ”ด ERROR!",
197
- "lawful": "๐Ÿš“ Lawful",
198
- "unlawful": "๐Ÿ‘ฟ Unlawful",
199
- "audio": "๐Ÿ‘‚ Audio",
200
- "text": "๐Ÿ“• Text",
201
- "image": "๐ŸŒ„ Image",
202
- "video": "๐Ÿ“ฝ๏ธ Video",
203
- "signature": "โœ๏ธ Signature",
204
- "orders": "๐Ÿช– Orders",
205
- "law": "๐Ÿ” Law",
206
- "decree": "๐Ÿ“œ Decree"
207
- },
208
- "feature": false,
209
- "features": {
210
- "client": "๐Ÿ‘จ Client",
211
- "init": "๐Ÿš€ Init",
212
- "security": "๐Ÿ” Security",
213
- "support": "๐Ÿ’ผ Support",
214
- "services": "๐Ÿ› ๏ธ Services",
215
- "systems": "๐Ÿ–ฅ๏ธ๏ธ Systems",
216
- "networks": "๐Ÿ›œ๏ธ๏ธ Networks",
217
- "legal": "๐Ÿ—‚๏ธ๏ธ๏ธ Legal",
218
- "justice": "๐Ÿ›๏ธ๏ธ Justice",
219
- "authority": "๐Ÿš“๏ธ๏ธ Authority",
220
- "defense": "๐Ÿช–๏ธ๏ธ Defense",
221
- "cipher": "๐Ÿ”’ Cipher",
222
- "decipher": "๐Ÿ”“ Decipher",
223
- "promp": "๐Ÿชต Prompt",
224
- "getToday": "๐Ÿ“† Get Today",
225
- "formatDate": "๐Ÿ“… Format Date",
226
- "formatTime": "๐Ÿ•ฐ๏ธ Format Time",
227
- "formatCurrency": "๐Ÿ’ฐ Format Currency",
228
- "formatPercent": "% Format Percent",
229
- "formatNumbert": "# Format Number",
230
- "trimWords": "๐Ÿ™Š Trim Words",
231
- "dupes": "๐Ÿ“‹ Duplicates",
232
- "info": "๐Ÿ’โ€โ™‚๏ธ Info",
233
- "status": "โค๏ธ Status",
234
- "help": "๐ŸŒˆ Help"
235
- },
236
- "message": "offline",
237
- "messages": {
238
- "init": "Initializing Deva",
239
- "offline": "The Deva is OFFLINE.",
240
- "noid": "NO ID WAS PROVIDED",
241
- "notext": "NO TEXT WAS PROVIDED",
242
- "nopacket": "NO PACKET WAS PROVIDED",
243
- "method_not_found": "METHOD NOT FOUND",
244
- "stop": "Stop Deva.",
245
- "exit": "Exit Deva"
246
- }
247
- }
248
- }