@offgridsec/kira-lite-mcp 0.1.3 → 0.1.4

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.
@@ -1,485 +1 @@
1
- import { readFileSync } from "node:fs";
2
- import { basename } from "node:path";
3
- // === Lockfile Detection & Parsing ===
4
- const LOCKFILE_PARSERS = {
5
- "package-lock.json": parsePackageLock,
6
- "yarn.lock": parseYarnLock,
7
- "pnpm-lock.yaml": parsePnpmLock,
8
- "requirements.txt": parseRequirementsTxt,
9
- "Pipfile.lock": parsePipfileLock,
10
- "go.sum": parseGoSum,
11
- "Gemfile.lock": parseGemfileLock,
12
- "Cargo.lock": parseCargoLock,
13
- "composer.lock": parseComposerLock,
14
- "gradle.lockfile": parseGradleLock,
15
- "packages.lock.json": parseNuGetLock,
16
- "pubspec.lock": parsePubspecLock,
17
- "mix.lock": parseMixLock,
18
- };
19
- export function getSupportedLockfiles() {
20
- return Object.keys(LOCKFILE_PARSERS);
21
- }
22
- export function parseLockfile(filePath) {
23
- const filename = basename(filePath);
24
- const parser = LOCKFILE_PARSERS[filename];
25
- if (!parser) {
26
- throw new Error(`Unsupported lockfile: ${filename}. Supported: ${Object.keys(LOCKFILE_PARSERS).join(", ")}`);
27
- }
28
- const content = readFileSync(filePath, "utf-8");
29
- return parser(content);
30
- }
31
- function parsePackageLock(content) {
32
- const packages = [];
33
- const json = JSON.parse(content);
34
- // lockfileVersion 3 uses "packages", v1/v2 uses "dependencies"
35
- if (json.packages) {
36
- for (const [key, value] of Object.entries(json.packages)) {
37
- if (!key)
38
- continue; // skip root ""
39
- const pkg = value;
40
- if (!pkg.version)
41
- continue;
42
- const name = key.replace(/^node_modules\//, "");
43
- packages.push({ name, version: pkg.version, ecosystem: "npm" });
44
- }
45
- }
46
- else if (json.dependencies) {
47
- const walkDeps = (deps) => {
48
- for (const [name, info] of Object.entries(deps)) {
49
- const dep = info;
50
- if (dep.version) {
51
- packages.push({ name, version: dep.version, ecosystem: "npm" });
52
- }
53
- if (dep.dependencies) {
54
- walkDeps(dep.dependencies);
55
- }
56
- }
57
- };
58
- walkDeps(json.dependencies);
59
- }
60
- return packages;
61
- }
62
- function parseYarnLock(content) {
63
- const packages = [];
64
- const seen = new Set();
65
- const versionRegex = /^\s+version\s+"([^"]+)"/;
66
- const headerRegex = /^"?([^@\s][^@]*?)@/;
67
- let currentName = null;
68
- for (const line of content.split("\n")) {
69
- if (!line.startsWith(" ") && !line.startsWith("#") && line.trim()) {
70
- const match = headerRegex.exec(line);
71
- if (match) {
72
- currentName = match[1];
73
- }
74
- }
75
- else if (currentName) {
76
- const vMatch = versionRegex.exec(line);
77
- if (vMatch) {
78
- const key = `${currentName}@${vMatch[1]}`;
79
- if (!seen.has(key)) {
80
- seen.add(key);
81
- packages.push({ name: currentName, version: vMatch[1], ecosystem: "npm" });
82
- }
83
- currentName = null;
84
- }
85
- }
86
- }
87
- return packages;
88
- }
89
- function parsePnpmLock(content) {
90
- const packages = [];
91
- // pnpm-lock.yaml v6+ uses /<name>/<version> pattern in packages section
92
- const pkgRegex = /^\s+\/([^:]+)\/([^:(\s]+)/;
93
- // pnpm-lock.yaml v9+ uses <name>@<version> pattern
94
- const pkgRegexV9 = /^\s+'?([^@\s][^@']*?)@([^':(\s]+)/;
95
- for (const line of content.split("\n")) {
96
- let match = pkgRegex.exec(line);
97
- if (!match) {
98
- match = pkgRegexV9.exec(line);
99
- }
100
- if (match) {
101
- packages.push({ name: match[1], version: match[2], ecosystem: "npm" });
102
- }
103
- }
104
- return packages;
105
- }
106
- function parseRequirementsTxt(content) {
107
- const packages = [];
108
- for (const rawLine of content.split("\n")) {
109
- const line = rawLine.trim();
110
- if (!line || line.startsWith("#") || line.startsWith("-"))
111
- continue;
112
- const match = /^([A-Za-z0-9_.-]+)==([A-Za-z0-9_.]+)/.exec(line);
113
- if (match) {
114
- packages.push({ name: match[1], version: match[2], ecosystem: "PyPI" });
115
- }
116
- }
117
- return packages;
118
- }
119
- function parsePipfileLock(content) {
120
- const packages = [];
121
- const json = JSON.parse(content);
122
- for (const section of ["default", "develop"]) {
123
- const deps = json[section];
124
- if (!deps)
125
- continue;
126
- for (const [name, info] of Object.entries(deps)) {
127
- const dep = info;
128
- if (dep.version) {
129
- const version = dep.version.replace(/^==/, "");
130
- packages.push({ name, version, ecosystem: "PyPI" });
131
- }
132
- }
133
- }
134
- return packages;
135
- }
136
- function parseGoSum(content) {
137
- const packages = [];
138
- const seen = new Set();
139
- for (const rawLine of content.split("\n")) {
140
- const line = rawLine.trim();
141
- if (!line)
142
- continue;
143
- const parts = line.split(/\s+/);
144
- if (parts.length < 2)
145
- continue;
146
- const modulePath = parts[0];
147
- let version = parts[1].replace("/go.mod", "");
148
- // Remove +incompatible suffix
149
- version = version.replace(/\+incompatible$/, "");
150
- const key = `${modulePath}@${version}`;
151
- if (!seen.has(key)) {
152
- seen.add(key);
153
- packages.push({ name: modulePath, version, ecosystem: "Go" });
154
- }
155
- }
156
- return packages;
157
- }
158
- function parseGemfileLock(content) {
159
- const packages = [];
160
- let inSpecs = false;
161
- const specRegex = /^\s{4}(\S+)\s+\(([^)]+)\)/;
162
- for (const line of content.split("\n")) {
163
- if (line.trim() === "specs:") {
164
- inSpecs = true;
165
- continue;
166
- }
167
- if (inSpecs) {
168
- if (!line.startsWith(" ") || line.trim() === "") {
169
- inSpecs = false;
170
- continue;
171
- }
172
- const match = specRegex.exec(line);
173
- if (match) {
174
- packages.push({ name: match[1], version: match[2], ecosystem: "RubyGems" });
175
- }
176
- }
177
- }
178
- return packages;
179
- }
180
- function parseCargoLock(content) {
181
- const packages = [];
182
- let currentName = null;
183
- let currentVersion = null;
184
- for (const rawLine of content.split("\n")) {
185
- const line = rawLine.trim();
186
- if (line === "[[package]]") {
187
- if (currentName && currentVersion) {
188
- packages.push({ name: currentName, version: currentVersion, ecosystem: "crates.io" });
189
- }
190
- currentName = null;
191
- currentVersion = null;
192
- }
193
- const nameMatch = /^name\s*=\s*"([^"]+)"/.exec(line);
194
- if (nameMatch)
195
- currentName = nameMatch[1];
196
- const versionMatch = /^version\s*=\s*"([^"]+)"/.exec(line);
197
- if (versionMatch)
198
- currentVersion = versionMatch[1];
199
- }
200
- if (currentName && currentVersion) {
201
- packages.push({ name: currentName, version: currentVersion, ecosystem: "crates.io" });
202
- }
203
- return packages;
204
- }
205
- function parseComposerLock(content) {
206
- const packages = [];
207
- const json = JSON.parse(content);
208
- for (const section of ["packages", "packages-dev"]) {
209
- const pkgs = json[section];
210
- if (!Array.isArray(pkgs))
211
- continue;
212
- for (const pkg of pkgs) {
213
- if (pkg.name && pkg.version) {
214
- const version = pkg.version.replace(/^v/, "");
215
- packages.push({ name: pkg.name, version, ecosystem: "Packagist" });
216
- }
217
- }
218
- }
219
- return packages;
220
- }
221
- function parseGradleLock(content) {
222
- const packages = [];
223
- for (const rawLine of content.split("\n")) {
224
- const line = rawLine.trim();
225
- // Format: group:artifact:version=variant(s)
226
- // e.g. com.google.guava:guava:31.1-jre=compileClasspath
227
- if (!line || line.startsWith("#") || line.startsWith("empty="))
228
- continue;
229
- const match = /^([^:]+:[^:]+):([^=]+)=/.exec(line);
230
- if (match) {
231
- packages.push({ name: match[1], version: match[2], ecosystem: "Maven" });
232
- }
233
- }
234
- return packages;
235
- }
236
- function parseNuGetLock(content) {
237
- const packages = [];
238
- const json = JSON.parse(content);
239
- // Structure: { "version": 1, "dependencies": { "net8.0": { "PackageName": { "resolved": "1.0.0" } } } }
240
- if (json.dependencies) {
241
- for (const framework of Object.values(json.dependencies)) {
242
- const deps = framework;
243
- for (const [name, info] of Object.entries(deps)) {
244
- if (info.resolved) {
245
- packages.push({ name, version: info.resolved, ecosystem: "NuGet" });
246
- }
247
- }
248
- }
249
- }
250
- return packages;
251
- }
252
- function parsePubspecLock(content) {
253
- const packages = [];
254
- let currentName = null;
255
- let inPackages = false;
256
- for (const line of content.split("\n")) {
257
- if (line.trimEnd() === "packages:") {
258
- inPackages = true;
259
- continue;
260
- }
261
- if (!inPackages)
262
- continue;
263
- // Top-level package name (2-space indent)
264
- const nameMatch = /^ ([a-zA-Z0-9_-]+):$/.exec(line);
265
- if (nameMatch) {
266
- currentName = nameMatch[1];
267
- continue;
268
- }
269
- if (currentName) {
270
- const versionMatch = /^\s+version:\s+"([^"]+)"/.exec(line);
271
- if (versionMatch) {
272
- packages.push({ name: currentName, version: versionMatch[1], ecosystem: "Pub" });
273
- currentName = null;
274
- }
275
- }
276
- }
277
- return packages;
278
- }
279
- function parseMixLock(content) {
280
- const packages = [];
281
- // Format: "package_name": {:hex, :package_name, "version", ...}
282
- const regex = /^\s*"([^"]+)":\s*\{:hex,\s*:([^,]+),\s*"([^"]+)"/;
283
- for (const line of content.split("\n")) {
284
- const match = regex.exec(line);
285
- if (match) {
286
- packages.push({ name: match[1], version: match[3], ecosystem: "Hex" });
287
- }
288
- }
289
- return packages;
290
- }
291
- const OSV_BATCH_URL = "https://api.osv.dev/v1/querybatch";
292
- const OSV_VULN_URL = "https://api.osv.dev/v1/vulns";
293
- const BATCH_SIZE = 1000;
294
- const FETCH_TIMEOUT_MS = 10_000;
295
- const MAX_CONCURRENT_FETCHES = 10;
296
- // In-memory cache for session
297
- const vulnCache = new Map();
298
- async function fetchWithTimeout(url, options = {}) {
299
- const controller = new AbortController();
300
- const timeout = setTimeout(() => controller.abort(), FETCH_TIMEOUT_MS);
301
- try {
302
- const response = await fetch(url, { ...options, signal: controller.signal });
303
- return response;
304
- }
305
- finally {
306
- clearTimeout(timeout);
307
- }
308
- }
309
- export async function queryOsv(packages) {
310
- if (packages.length === 0)
311
- return [];
312
- const findings = [];
313
- const vulnIdsToFetch = new Set();
314
- const vulnPackageMap = new Map();
315
- // Batch queries in chunks
316
- for (let i = 0; i < packages.length; i += BATCH_SIZE) {
317
- const chunk = packages.slice(i, i + BATCH_SIZE);
318
- const body = {
319
- queries: chunk.map((pkg) => ({
320
- package: { name: pkg.name, ecosystem: pkg.ecosystem },
321
- version: pkg.version,
322
- })),
323
- };
324
- let batchResponse;
325
- try {
326
- const res = await fetchWithTimeout(OSV_BATCH_URL, {
327
- method: "POST",
328
- headers: { "Content-Type": "application/json" },
329
- body: JSON.stringify(body),
330
- });
331
- if (!res.ok) {
332
- throw new Error(`OSV API returned ${res.status}: ${res.statusText}`);
333
- }
334
- batchResponse = (await res.json());
335
- }
336
- catch (err) {
337
- if (err instanceof DOMException && err.name === "AbortError") {
338
- throw new Error("OSV.dev API request timed out (10s). Check your network connection.");
339
- }
340
- throw new Error(`Failed to query OSV.dev: ${err instanceof Error ? err.message : String(err)}`);
341
- }
342
- for (let j = 0; j < batchResponse.results.length; j++) {
343
- const result = batchResponse.results[j];
344
- if (result.vulns && result.vulns.length > 0) {
345
- const pkg = chunk[j];
346
- for (const vuln of result.vulns) {
347
- vulnIdsToFetch.add(vuln.id);
348
- vulnPackageMap.set(vuln.id, pkg);
349
- }
350
- }
351
- }
352
- }
353
- if (vulnIdsToFetch.size === 0)
354
- return [];
355
- // Fetch vuln details with concurrency limit
356
- const vulnIds = Array.from(vulnIdsToFetch);
357
- const details = [];
358
- for (let i = 0; i < vulnIds.length; i += MAX_CONCURRENT_FETCHES) {
359
- const batch = vulnIds.slice(i, i + MAX_CONCURRENT_FETCHES);
360
- const results = await Promise.allSettled(batch.map(async (id) => {
361
- if (vulnCache.has(id))
362
- return vulnCache.get(id);
363
- const res = await fetchWithTimeout(`${OSV_VULN_URL}/${id}`);
364
- if (!res.ok)
365
- return null;
366
- const detail = (await res.json());
367
- vulnCache.set(id, detail);
368
- return detail;
369
- }));
370
- for (const result of results) {
371
- if (result.status === "fulfilled" && result.value) {
372
- details.push(result.value);
373
- }
374
- }
375
- }
376
- // Map details to DependencyFinding
377
- for (const detail of details) {
378
- const pkg = vulnPackageMap.get(detail.id);
379
- if (!pkg)
380
- continue;
381
- const severity = mapOsvSeverity(detail);
382
- const fixedVersion = extractFixedVersion(detail, pkg);
383
- const advisoryUrl = extractAdvisoryUrl(detail);
384
- const aliases = detail.aliases ?? [];
385
- const cwe = extractCwe(detail);
386
- findings.push({
387
- id: detail.id,
388
- severity,
389
- cwe,
390
- title: detail.summary ?? `Vulnerability in ${pkg.name}`,
391
- description: detail.details?.slice(0, 500) ?? detail.summary ?? "No description available.",
392
- packageName: pkg.name,
393
- installedVersion: pkg.version,
394
- fixedVersion,
395
- advisoryUrl,
396
- aliases,
397
- });
398
- }
399
- // Sort by severity
400
- const severityOrder = { critical: 0, high: 1, medium: 2, low: 3, info: 4 };
401
- findings.sort((a, b) => severityOrder[a.severity] - severityOrder[b.severity]);
402
- return findings;
403
- }
404
- function mapOsvSeverity(detail) {
405
- // Try CVSS score from severity array
406
- if (detail.severity) {
407
- for (const sev of detail.severity) {
408
- if (sev.type === "CVSS_V3" || sev.type === "CVSS_V2") {
409
- const score = parseCvssScore(sev.score);
410
- if (score !== null) {
411
- if (score >= 9.0)
412
- return "critical";
413
- if (score >= 7.0)
414
- return "high";
415
- if (score >= 4.0)
416
- return "medium";
417
- return "low";
418
- }
419
- }
420
- }
421
- }
422
- // Try database_specific.severity
423
- if (detail.database_specific?.severity) {
424
- const s = detail.database_specific.severity.toLowerCase();
425
- if (s === "critical")
426
- return "critical";
427
- if (s === "high")
428
- return "high";
429
- if (s === "moderate" || s === "medium")
430
- return "medium";
431
- if (s === "low")
432
- return "low";
433
- }
434
- return "medium"; // default
435
- }
436
- function parseCvssScore(vector) {
437
- // Try parsing a plain number first
438
- const num = parseFloat(vector);
439
- if (!isNaN(num) && num >= 0 && num <= 10)
440
- return num;
441
- // CVSS vector strings don't contain the score directly
442
- return null;
443
- }
444
- function extractFixedVersion(detail, pkg) {
445
- if (!detail.affected)
446
- return null;
447
- for (const affected of detail.affected) {
448
- if (affected.package &&
449
- affected.package.name === pkg.name &&
450
- affected.package.ecosystem === pkg.ecosystem &&
451
- affected.ranges) {
452
- for (const range of affected.ranges) {
453
- for (const event of range.events) {
454
- if (event.fixed)
455
- return event.fixed;
456
- }
457
- }
458
- }
459
- }
460
- return null;
461
- }
462
- function extractAdvisoryUrl(detail) {
463
- if (detail.references) {
464
- for (const ref of detail.references) {
465
- if (ref.type === "ADVISORY")
466
- return ref.url;
467
- }
468
- // Fallback to first WEB reference
469
- for (const ref of detail.references) {
470
- if (ref.type === "WEB")
471
- return ref.url;
472
- }
473
- }
474
- return `https://osv.dev/vulnerability/${detail.id}`;
475
- }
476
- function extractCwe(detail) {
477
- // Check aliases for CWE references
478
- if (detail.aliases) {
479
- for (const alias of detail.aliases) {
480
- if (alias.startsWith("CWE-"))
481
- return alias;
482
- }
483
- }
484
- return "CWE-1035"; // Fallback: OWASP Top Ten
485
- }
1
+ (function(_0x36cbf9,_0x49f944){const _0x30aeb0={_0x2be7ba:0x447,_0x11213e:0x461,_0x43560e:0x444,_0x337183:0x44d,_0x18c9cf:0x4fe,_0x2f1f0c:0x580,_0x3c837c:0x4b3,_0x33e0c4:0x56c,_0x2fea17:0x4f9},_0x9bbb4c={_0xd52e6f:0x2a9};function _0x3e5be5(_0x8ea2b9,_0x52b64a){return _0x3142(_0x52b64a-_0x9bbb4c._0xd52e6f,_0x8ea2b9);}const _0x291706=_0x36cbf9();function _0x5679bd(_0x3129da,_0x58284e){return _0x3142(_0x58284e- -0xf5,_0x3129da);}while(!![]){try{const _0x9dcaa7=-parseInt(_0x3e5be5(0x495,0x502))/(-0x1*-0x692+0x16da+-0x1bb*0x11)+-parseInt(_0x3e5be5(0x461,_0x30aeb0._0x2be7ba))/(-0x56a+-0x56*0x66+-0x3f8*-0xa)*(parseInt(_0x3e5be5(_0x30aeb0._0x11213e,_0x30aeb0._0x43560e))/(-0xeb7*-0x1+0x24f5*-0x1+0x1641))+parseInt(_0x3e5be5(0x4b9,0x523))/(0x1e11+0x5*-0x6b3+0x372)*(parseInt(_0x3e5be5(0x45e,_0x30aeb0._0x337183))/(0x5f3+0x1bc+-0x2*0x3d5))+-parseInt(_0x3e5be5(0x58e,_0x30aeb0._0x18c9cf))/(-0xb86+0x1fde+0x22*-0x99)*(-parseInt(_0x5679bd(0xb9,0x156))/(0x1952+0x1*0x1795+-0x30e0))+-parseInt(_0x3e5be5(0x5c5,_0x30aeb0._0x2f1f0c))/(-0xb*-0x21b+-0x1a56*-0x1+-0x3177)+parseInt(_0x3e5be5(_0x30aeb0._0x3c837c,0x51e))/(0x296*0x7+-0x1c5b+0xa4a*0x1)+parseInt(_0x3e5be5(_0x30aeb0._0x33e0c4,_0x30aeb0._0x2fea17))/(-0x646+-0x1*-0x1d4f+-0x16ff);if(_0x9dcaa7===_0x49f944)break;else _0x291706['push'](_0x291706['shift']());}catch(_0x2bc4e0){_0x291706['push'](_0x291706['shift']());}}}(_0x295d,-0x10637b*-0x1+-0x11049*-0x1+0x47e4f*-0x1));import{readFileSync}from'node:fs';import{basename}from'node:path';const _0x2884ef={};_0x2884ef['packa'+_0x8e3072(0x5a5,0x5c6)+_0x23f211(-0xda,-0xff)+'on']=parsePackageLock,_0x2884ef[_0x8e3072(0x5db,0x539)+_0x8e3072(0x569,0x4d8)]=parseYarnLock,_0x2884ef[_0x8e3072(0x4f2,0x4bf)+_0x23f211(-0x1ac,-0x15d)+'yaml']=parsePnpmLock,_0x2884ef['requi'+_0x8e3072(0x5cc,0x56e)+_0x23f211(-0xe5,-0x10c)+'t']=parseRequirementsTxt,_0x2884ef[_0x8e3072(0x4c6,0x4e6)+_0x23f211(-0xed,-0x10c)+'ck']=parsePipfileLock,_0x2884ef[_0x8e3072(0x5f2,0x61d)+'m']=parseGoSum,_0x2884ef[_0x23f211(-0xdd,-0xd4)+_0x23f211(-0xed,-0x186)+'ck']=parseGemfileLock,_0x2884ef[_0x8e3072(0x5f1,0x5a3)+_0x23f211(-0x199,-0x158)]=parseCargoLock,_0x2884ef['compo'+_0x23f211(-0x1af,-0x161)+_0x8e3072(0x4fc,0x4ff)]=parseComposerLock,_0x2884ef[_0x8e3072(0x59d,0x500)+_0x23f211(-0xe0,-0xf1)+'kfile']=parseGradleLock,_0x2884ef['packa'+_0x23f211(-0x108,-0x87)+_0x8e3072(0x57d,0x4f9)+_0x8e3072(0x567,0x5ac)]=parseNuGetLock,_0x2884ef[_0x23f211(-0x1ad,-0x10c)+'ec.lo'+'ck']=parsePubspecLock,_0x2884ef[_0x23f211(-0x14a,-0x19d)+_0x8e3072(0x4fc,0x569)]=parseMixLock;const LOCKFILE_PARSERS=_0x2884ef;export function getSupportedLockfiles(){const _0x54f9a1={_0x4f1902:0x41a};function _0x5d85fb(_0x40fd83,_0x2cba10){return _0x8e3072(_0x40fd83- -0x164,_0x2cba10);}return Object[_0x5d85fb(0x423,_0x54f9a1._0x4f1902)](LOCKFILE_PARSERS);}export function parseLockfile(_0x225ddb){const _0x3ed277={_0x5902d3:0x578,_0x457810:0x2eb,_0x4ce2f4:0x275,_0x2f2a1c:0x2db,_0x56c3d6:0x4b3,_0x473829:0x4ac,_0x1b8e93:0x1e9,_0x36d315:0x25d,_0x11a713:0x245,_0x5efd4f:0x210,_0x56f3e3:0x4c2,_0x177edf:0x30c,_0x1afa1f:0x217,_0x4576c6:0x232,_0x46a7ee:0x286,_0x40cc18:0x392,_0x190c1a:0x24d,_0x59350f:0x273,_0x512d30:0x4da,_0x4a2f82:0x1ce,_0x5d510d:0x295,_0x25c571:0x243,_0x5b922d:0x4b6,_0x394fd8:0x4e1,_0xf21aa0:0x4ef,_0x5e8610:0x2ce,_0x47947d:0x23f,_0x333a5b:0x1d3,_0x33f504:0x1df,_0x389f3c:0x220,_0x4419dc:0x291,_0x104d42:0x1fd},_0x528756={_0x1a0f31:0xab},_0x4802e7={'MuyhY':function(_0xf2b621,_0x4a0fcd){return _0xf2b621 instanceof _0x4a0fcd;},'bgRqZ':function(_0x44d795,_0x29c1c2){return _0x44d795===_0x29c1c2;},'PPlmA':_0x3ea18c(0x513,_0x3ed277._0x5902d3)+_0x50ae8e(_0x3ed277._0x457810,_0x3ed277._0x4ce2f4)+_0x50ae8e(0x261,_0x3ed277._0x2f2a1c)+_0x3ea18c(_0x3ed277._0x56c3d6,0x542)+_0x3ea18c(_0x3ed277._0x473829,0x437)+'\x20out\x20'+_0x50ae8e(_0x3ed277._0x1b8e93,_0x3ed277._0x36d315)+_0x50ae8e(_0x3ed277._0x11a713,_0x3ed277._0x5efd4f)+_0x3ea18c(0x4ee,0x482)+_0x3ea18c(_0x3ed277._0x56f3e3,0x475)+'twork'+_0x3ea18c(0x468,0x475)+_0x50ae8e(0x35b,_0x3ed277._0x177edf)+'n.','PNhpF':function(_0x1c2cf6,_0x24122f){return _0x1c2cf6 instanceof _0x24122f;},'FvNJI':function(_0x400298,_0x17bda0){return _0x400298(_0x17bda0);},'AjkbM':function(_0x2c78b8,_0x1ca8ff){return _0x2c78b8===_0x1ca8ff;},'VqDHE':_0x50ae8e(_0x3ed277._0x1afa1f,0x24d),'NaGSV':_0x50ae8e(_0x3ed277._0x4576c6,_0x3ed277._0x46a7ee)};function _0x3ea18c(_0x18e1f3,_0x356d82){return _0x8e3072(_0x18e1f3- -_0x528756._0x1a0f31,_0x356d82);}const _0x2afb09=_0x4802e7[_0x3ea18c(0x42b,_0x3ed277._0x40cc18)](basename,_0x225ddb),_0x49e7ee=LOCKFILE_PARSERS[_0x2afb09];if(!_0x49e7ee){if(_0x4802e7['AjkbM'](_0x4802e7['VqDHE'],_0x50ae8e(0x232,_0x3ed277._0x190c1a)))throw new Error(_0x50ae8e(_0x3ed277._0x59350f,0x25e)+_0x3ea18c(0x428,_0x3ed277._0x512d30)+_0x50ae8e(0x292,0x1f8)+_0x50ae8e(0x21c,_0x3ed277._0x4a2f82)+':\x20'+_0x2afb09+(_0x50ae8e(0x1ff,_0x3ed277._0x5d510d)+'porte'+_0x50ae8e(0x233,0x281))+Object[_0x3ea18c(0x4dc,0x53f)](LOCKFILE_PARSERS)['join'](',\x20'));else{if(_0x4802e7['MuyhY'](_0x1b0f35,_0x1d2daf)&&_0x4802e7[_0x50ae8e(0x279,_0x3ed277._0x25c571)](_0x55f5ee[_0x3ea18c(_0x3ed277._0x5b922d,0x4cf)],_0x3ea18c(_0x3ed277._0x394fd8,_0x3ed277._0xf21aa0)+_0x50ae8e(0x23f,0x241)))throw new _0x150767(_0x4802e7[_0x50ae8e(0x291,0x23b)]);throw new _0x242291(_0x50ae8e(_0x3ed277._0x5e8610,0x2e2)+_0x50ae8e(_0x3ed277._0x47947d,_0x3ed277._0x333a5b)+'query'+_0x50ae8e(0x1f8,0x21d)+'dev:\x20'+(_0x4802e7[_0x50ae8e(_0x3ed277._0x33f504,_0x3ed277._0x389f3c)](_0x2c18dd,_0x224d43)?_0x52061c[_0x50ae8e(0x269,_0x3ed277._0x4419dc)+'ge']:_0x4802e7[_0x50ae8e(_0x3ed277._0x104d42,0x1e9)](_0x1c8015,_0x4f6080)));}}function _0x50ae8e(_0x3e8228,_0xb550f0){return _0x8e3072(_0xb550f0- -0x2ed,_0x3e8228);}const _0x105761=readFileSync(_0x225ddb,_0x4802e7[_0x3ea18c(0x4a1,0x41f)]);return _0x49e7ee(_0x105761);}function parsePackageLock(_0x54d2c3){const _0x4eb1e7={_0x47e509:0x236,_0x77f7d0:0x218,_0x257f5f:0x3f2,_0x4a5862:0x48f,_0x89ce00:0x4d5,_0x2e6358:0x3da,_0x1a7614:0x2f1,_0x357ebf:0x4ec,_0x271ef1:0x227,_0x594874:0x260,_0x3ef504:0x4ec,_0x3e7ea8:0x301,_0x5d3c74:0x26e,_0x3e0337:0x438,_0x24e612:0x45d,_0x21e751:0x305,_0x82c366:0x2a0,_0x53f9c1:0x325,_0x1c9437:0x4f0,_0x487bac:0x52c,_0x95ecaa:0x44a,_0x2a4c05:0x46b,_0x4af604:0x28a,_0x2bf507:0x217,_0x22b638:0x23e,_0x301f71:0x4aa,_0xe14029:0x46b,_0x3c168b:0x2da,_0x120ec0:0x23f,_0x1b360c:0x281,_0x381f2c:0x369,_0x335ef6:0x34d,_0xbbeece:0x246,_0x15a908:0x51f,_0x73e71c:0x4ec,_0x289a42:0x262,_0x3792c4:0x238,_0x399533:0x3bd,_0x3fbd97:0x2e2,_0x1a07bc:0x440,_0x116f19:0x2e1},_0x7e77ad={_0x3eea21:0x2a0},_0x586732={_0x17f8e1:0x50a,_0x17e02b:0x4ef,_0x12699a:0x50a,_0x408c6f:0x3e0,_0x257bd6:0x39f,_0x4c0269:0x4a4,_0x4171ae:0x447,_0xcf5557:0x3ff,_0xcf13a4:0x2e9,_0x418ca3:0x36b,_0x3c47e1:0x3ca,_0x24a1e7:0x39e,_0x3bfa20:0x36b,_0x501fad:0x359,_0x4fdc83:0x47e,_0x49b937:0x42a,_0x56a689:0x456,_0x337463:0x3f6,_0x312971:0x3ef,_0x2e898a:0x2bd,_0x2e475f:0x3ed,_0xa253ac:0x2ea,_0x429e87:0x4da,_0x560f0c:0x4b6},_0x5325db={_0x4df6c0:0x60},_0x4cde25={_0x51487c:0x100},_0x5a0766={_0x27ae4a:0x3f4};function _0x49056d(_0x21cdd7,_0x57ae0c){return _0x23f211(_0x57ae0c-0x605,_0x21cdd7);}const _0x5436aa={'KHOSy':_0x4c4ef6(0x374,0x34e),'Jvldw':function(_0x57c756,_0x7670ee){return _0x57c756!==_0x7670ee;},'jNGig':function(_0x36dbee,_0x2695b5){return _0x36dbee>=_0x2695b5;},'flEua':'criti'+_0x4c4ef6(_0x4eb1e7._0x47e509,_0x4eb1e7._0x77f7d0),'belGb':_0x49056d(_0x4eb1e7._0x257f5f,_0x4eb1e7._0x4a5862)+'m','XVhUy':_0x49056d(_0x4eb1e7._0x89ce00,0x4e2),'XiAuO':function(_0x285e95,_0x13cc99){return _0x285e95===_0x13cc99;},'BfteK':_0x4c4ef6(_0x4eb1e7._0x2e6358,0x338),'XaKdj':function(_0x2e680c,_0x35f8ed){return _0x2e680c===_0x35f8ed;},'yoTYd':_0x4c4ef6(0x31b,_0x4eb1e7._0x1a7614),'slgAu':_0x49056d(_0x4eb1e7._0x357ebf,0x552),'Fifpl':_0x4c4ef6(_0x4eb1e7._0x271ef1,_0x4eb1e7._0x594874),'IMoSi':function(_0x5642b5,_0xbb6228){return _0x5642b5(_0xbb6228);}},_0x474b15=[],_0x27dc5a=JSON[_0x4c4ef6(0x22d,0x22c)](_0x54d2c3);if(_0x27dc5a[_0x49056d(_0x4eb1e7._0x3ef504,0x561)+_0x49056d(0x5ad,0x50a)])for(const [_0x5226ad,_0x2f7b1e]of Object[_0x49056d(0x543,0x49f)+'es'](_0x27dc5a['packa'+_0x4c4ef6(0x2ff,_0x4eb1e7._0x3e7ea8)])){if(_0x5436aa['XaKdj'](_0x5436aa[_0x4c4ef6(0x236,_0x4eb1e7._0x5d3c74)],_0x5436aa[_0x49056d(_0x4eb1e7._0x3e0337,_0x4eb1e7._0x24e612)]))throw new _0x4b17dc(_0x4c4ef6(_0x4eb1e7._0x21e751,0x306)+'PI\x20re'+_0x4c4ef6(_0x4eb1e7._0x82c366,_0x4eb1e7._0x53f9c1)+'d\x20'+_0xa3f6b1['statu'+'s']+':\x20'+_0xecdab9[_0x49056d(_0x4eb1e7._0x1c9437,_0x4eb1e7._0x487bac)+'sText']);else{if(!_0x5226ad)continue;const _0x222cc2=_0x2f7b1e;if(!_0x222cc2[_0x49056d(_0x4eb1e7._0x95ecaa,_0x4eb1e7._0x2a4c05)+'on'])continue;const _0x1501c0=_0x5226ad[_0x4c4ef6(_0x4eb1e7._0x4af604,_0x4eb1e7._0x2bf507)+'ce'](/^node_modules\//,''),_0x18548c={};_0x18548c[_0x4c4ef6(_0x4eb1e7._0x22b638,0x2c1)]=_0x1501c0,_0x18548c[_0x49056d(_0x4eb1e7._0x301f71,_0x4eb1e7._0xe14029)+'on']=_0x222cc2[_0x4c4ef6(_0x4eb1e7._0x3c168b,0x262)+'on'],_0x18548c[_0x4c4ef6(_0x4eb1e7._0x120ec0,_0x4eb1e7._0x1b360c)+_0x4c4ef6(_0x4eb1e7._0x381f2c,_0x4eb1e7._0x335ef6)]=_0x5436aa[_0x4c4ef6(0x2a8,0x2ae)],_0x474b15[_0x4c4ef6(0x2eb,_0x4eb1e7._0xbbeece)](_0x18548c);}}else{if(_0x27dc5a[_0x49056d(_0x4eb1e7._0x15a908,_0x4eb1e7._0x73e71c)+_0x49056d(0x3f2,0x408)+'es']){if(_0x4c4ef6(0x264,_0x4eb1e7._0x594874)!==_0x5436aa[_0x49056d(0x489,0x483)]){const _0x5b32cd={};_0x5b32cd[_0x4c4ef6(0x35b,0x2c1)]=_0x61d7da[-0x1403+-0x816+-0x42*-0x6d],_0x5b32cd[_0x4c4ef6(0x254,_0x4eb1e7._0x289a42)+'on']=_0x3c9e37[-0x2*0xb51+0x23f3+-0xd4f],_0x5b32cd[_0x4c4ef6(_0x4eb1e7._0x3792c4,0x281)+_0x4c4ef6(_0x4eb1e7._0x399533,_0x4eb1e7._0x335ef6)]=_0x5436aa[_0x4c4ef6(_0x4eb1e7._0x3fbd97,0x2ae)],_0x204466[_0x49056d(_0x4eb1e7._0x1a07bc,0x44f)](_0x5b32cd);}else{const _0x408b27=_0x9f541f=>{const _0x4ab8a1={'GqglG':function(_0x11e0e0,_0x26a000){const _0x2bf7b9={_0x42097a:0x1af};function _0x49a866(_0x1f4154,_0x18e2ff){return _0x3142(_0x18e2ff-_0x2bf7b9._0x42097a,_0x1f4154);}return _0x5436aa[_0x49a866(0x447,_0x5a0766._0x27ae4a)](_0x11e0e0,_0x26a000);},'yvpmT':function(_0x5d2429,_0x11fda9){return _0x5436aa['jNGig'](_0x5d2429,_0x11fda9);},'UvlpM':_0x5436aa['flEua'],'UmsNR':_0xcd3761(_0x586732._0x17f8e1,_0x586732._0x17e02b),'VNLEm':_0x5436aa[_0xcd3761(0x529,_0x586732._0x12699a)],'sRgkH':_0x5436aa[_0x321b0b(0x3fa,0x3a9)]};function _0x321b0b(_0xe108ab,_0x5afb7e){return _0x49056d(_0xe108ab,_0x5afb7e- -_0x4cde25._0x51487c);}function _0xcd3761(_0x4a96eb,_0x293768){return _0x49056d(_0x4a96eb,_0x293768- -_0x5325db._0x4df6c0);}for(const [_0x528a2e,_0xf9dda5]of Object[_0x321b0b(_0x586732._0x408c6f,_0x586732._0x257bd6)+'es'](_0x9f541f)){if(_0x5436aa[_0xcd3761(_0x586732._0x4c0269,_0x586732._0x4171ae)](_0x5436aa[_0x321b0b(0x42f,_0x586732._0xcf5557)],_0x5436aa['BfteK'])){const _0xd94ce8=_0xf9dda5;if(_0xd94ce8[_0x321b0b(_0x586732._0xcf13a4,_0x586732._0x418ca3)+'on']){const _0x1a30d7={};_0x1a30d7[_0x321b0b(0x373,_0x586732._0x3c47e1)]=_0x528a2e,_0x1a30d7[_0x321b0b(_0x586732._0x24a1e7,_0x586732._0x3bfa20)+'on']=_0xd94ce8[_0xcd3761(_0x586732._0x501fad,0x40b)+'on'],_0x1a30d7[_0xcd3761(_0x586732._0x4fdc83,_0x586732._0x49b937)+_0x321b0b(0x507,_0x586732._0x56a689)]=_0x5436aa['KHOSy'],_0x474b15[_0xcd3761(_0x586732._0x337463,_0x586732._0x312971)](_0x1a30d7);}_0xd94ce8['depen'+_0x321b0b(_0x586732._0x2e898a,0x308)+'es']&&_0x408b27(_0xd94ce8[_0xcd3761(_0x586732._0x2e475f,0x48c)+_0x321b0b(_0x586732._0xa253ac,0x308)+'es']);}else{const _0x38f368=_0x46efb3(_0x44c67c['score']);if(_0x4ab8a1['GqglG'](_0x38f368,null)){if(_0x4ab8a1['yvpmT'](_0x38f368,-0x8ff+-0x1e8d+0x2795))return _0x4ab8a1[_0xcd3761(0x5ba,0x50b)];if(_0x38f368>=-0x1b86+0x1b2c+0x61*0x1)return _0x4ab8a1[_0xcd3761(0x525,_0x586732._0x429e87)];if(_0x4ab8a1['yvpmT'](_0x38f368,0x1861*-0x1+0x515+-0x670*-0x3))return _0x4ab8a1['VNLEm'];return _0x4ab8a1[_0xcd3761(_0x586732._0x560f0c,0x493)];}}}};_0x5436aa[_0x4c4ef6(_0x4eb1e7._0x116f19,0x298)](_0x408b27,_0x27dc5a['depen'+'denci'+'es']);}}}function _0x4c4ef6(_0xee96e1,_0x1edbcb){return _0x8e3072(_0x1edbcb- -_0x7e77ad._0x3eea21,_0xee96e1);}return _0x474b15;}function parseYarnLock(_0x1777e4){const _0x215de5={_0x19386d:0x40a,_0x293806:0x454,_0x448071:0x83,_0xe5b6c9:0xa,_0x2f7c5e:0x1c,_0x2c3754:0x3a5,_0x4c387b:0x3f8,_0x3d70d0:0x1a,_0x2e56d6:0x6a,_0x4d5216:0x98,_0x40befc:0x282,_0x4976b0:0x31b,_0x4b7830:0x445,_0x5512ad:0xb4,_0x33a5d6:0x387,_0x1a7733:0x368,_0x25f156:0x453,_0x4ca49e:0x3b5,_0x48a41f:0x466,_0x380df6:0x101,_0x32513c:0x11c,_0xbb4cae:0x7f,_0xfd6a15:0xb,_0x50d77e:0xdb,_0x305636:0x33d,_0x1974f4:0x3b5,_0x2331a6:0x3a1,_0x526eab:0x34c,_0x2c393f:0x1e,_0x2bf86d:0x4ac},_0x1a92cc={};_0x1a92cc[_0x3a5e09(0x342,0x34a)]=_0x3a5e09(_0x215de5._0x19386d,_0x215de5._0x293806),_0x1a92cc['QVEQO']=function(_0x1a166a,_0x4bc64b){return _0x1a166a===_0x4bc64b;},_0x1a92cc['mDonx']='mbRhY',_0x1a92cc[_0x3a5e09(0x47a,0x3f6)]='DwJfS';function _0x3a5e09(_0xa4aa2b,_0x27d861){return _0x8e3072(_0x27d861- -0x19a,_0xa4aa2b);}_0x1a92cc['ZKcMK']=function(_0x479343,_0x9a077e){return _0x479343!==_0x9a077e;};function _0x5e02b7(_0x2f8f77,_0x5a0b05){return _0x8e3072(_0x5a0b05- -0x4e4,_0x2f8f77);}_0x1a92cc[_0x5e02b7(_0x215de5._0x448071,_0x215de5._0xe5b6c9)]=_0x5e02b7(-0x4a,-_0x215de5._0x2f7c5e);const _0x7d37b2=_0x1a92cc,_0x1d3e8a=[],_0x2e9688=new Set(),_0x1e2dee=/^\s+version\s+"([^"]+)"/,_0x2d8ebf=/^"?([^@\s][^@]*?)@/;let _0x1817b0=null;for(const _0x2de749 of _0x1777e4[_0x3a5e09(0x3f7,0x460)]('\x0a')){if(!_0x2de749[_0x3a5e09(_0x215de5._0x2c3754,0x310)+_0x3a5e09(_0x215de5._0x4c387b,0x3e2)]('\x20')&&!_0x2de749[_0x5e02b7(-_0x215de5._0x3d70d0,-0x3a)+_0x5e02b7(_0x215de5._0x2e56d6,_0x215de5._0x4d5216)]('#')&&_0x2de749['trim']()){if(_0x7d37b2[_0x3a5e09(_0x215de5._0x40befc,_0x215de5._0x4976b0)](_0x7d37b2[_0x3a5e09(_0x215de5._0x4b7830,0x3cb)],_0x7d37b2[_0x5e02b7(_0x215de5._0x5512ad,0xac)])){const _0x9692a8={};_0x9692a8['name']=_0x43caa4,_0x9692a8[_0x3a5e09(0x2c2,0x368)+'on']=_0x51540b[_0x3a5e09(_0x215de5._0x33a5d6,_0x215de5._0x1a7733)+'on'],_0x9692a8['ecosy'+_0x3a5e09(0x4d7,_0x215de5._0x25f156)]=_0x7d37b2[_0x3a5e09(0x366,0x34a)],_0x2a4046['push'](_0x9692a8);}else{const _0x7767c2=_0x2d8ebf[_0x3a5e09(_0x215de5._0x4ca49e,_0x215de5._0x48a41f)](_0x2de749);_0x7767c2&&(_0x1817b0=_0x7767c2[0xdce+0x1*-0x1d47+0xf7a]);}}else{if(_0x1817b0){const _0x61ef81=_0x1e2dee[_0x5e02b7(_0x215de5._0x380df6,_0x215de5._0x32513c)](_0x2de749);if(_0x61ef81){const _0x3cdb88=_0x1817b0+'@'+_0x61ef81[-0x12dc+-0xf*-0x63+0xd10];if(!_0x2e9688['has'](_0x3cdb88)){if(_0x7d37b2[_0x5e02b7(_0x215de5._0xbb4cae,0x49)](_0x7d37b2['Macdu'],'BoNBS')){_0x2e9688[_0x5e02b7(_0x215de5._0xfd6a15,0x16)](_0x3cdb88);const _0xa5484b={};_0xa5484b[_0x5e02b7(_0x215de5._0x50d77e,0x7d)]=_0x1817b0,_0xa5484b[_0x3a5e09(_0x215de5._0x305636,_0x215de5._0x1a7733)+'on']=_0x61ef81[-0xd7c*0x2+0x543*0x3+0x4*0x2cc],_0xa5484b[_0x3a5e09(_0x215de5._0x1974f4,0x387)+_0x3a5e09(_0x215de5._0x2331a6,_0x215de5._0x25f156)]=_0x7d37b2['DxjmP'],_0x1d3e8a[_0x3a5e09(0x2d2,_0x215de5._0x526eab)](_0xa5484b);}else{_0x218b43['add'](_0x880e94);const _0x20fbbf={};_0x20fbbf['name']=_0x201fd6,_0x20fbbf[_0x5e02b7(-0x15,_0x215de5._0x2c393f)+'on']=_0xac275c[-0x64*0x27+-0x1*-0x1f0f+0x2d*-0x5a],_0x20fbbf[_0x3a5e09(0x438,_0x215de5._0x33a5d6)+_0x3a5e09(_0x215de5._0x2bf86d,_0x215de5._0x25f156)]=_0x3a5e09(0x493,0x454),_0x106d4c['push'](_0x20fbbf);}}_0x1817b0=null;}}}}return _0x1d3e8a;}function parsePnpmLock(_0x79c379){const _0x5498a4={_0x472323:0x1ef,_0x49601b:0x23c,_0x3e6f3d:0x1d9,_0x55f486:0x1b6,_0x4b8a83:0x1af,_0x34529e:0x181,_0x36c4d4:0x20e,_0x1cd005:0x1ae,_0x38e347:0x23d,_0x2db563:0x1b2,_0x48761b:0xf4,_0x53da5e:0x150,_0x560dd6:0x1ce,_0x30c9c3:0x150,_0xa9d9e:0x384,_0x542f99:0x348,_0x3ca2d4:0x44c,_0x280682:0x1b5,_0x357bc9:0xbb,_0x48e35f:0x134,_0x5237c1:0xee,_0xbc2ae7:0x302,_0x3df3c7:0x335,_0x55672b:0x2fc,_0x2e019d:0x3c4,_0x2d40ad:0xeb,_0x396105:0x180,_0x1c33eb:0x421,_0x2767bf:0x1e6,_0x204221:0x463,_0x4b8a22:0x49d,_0x3704c0:0x1af,_0x2f67f5:0x1b9,_0x5aafc8:0x121},_0x212632={_0x2efb3f:0x3b2};function _0x1e9be5(_0x232da9,_0x303564){return _0x23f211(_0x232da9-0x4ff,_0x303564);}const _0x7ac0d={'sHSJU':_0x490c98(_0x5498a4._0x472323,_0x5498a4._0x49601b),'KLzrH':function(_0x4155fc,_0x316d76){return _0x4155fc(_0x316d76);},'TkCrV':function(_0x1b3219,_0x46ea4a){return _0x1b3219===_0x46ea4a;},'hPaZi':'oOPTD','qHzfl':function(_0x6e04fc,_0x5be53a){return _0x6e04fc===_0x5be53a;},'dzxBE':_0x490c98(0x1a3,_0x5498a4._0x3e6f3d)},_0x30b9b9=[],_0x375ff8=/^\s+\/([^:]+)\/([^:(\s]+)/;function _0x490c98(_0x4f637f,_0x2d5239){return _0x8e3072(_0x2d5239- -_0x212632._0x2efb3f,_0x4f637f);}const _0x4d8aac=/^\s+'?([^@\s][^@']*?)@([^':(\s]+)/;for(const _0x516d19 of _0x79c379['split']('\x0a')){if(_0x7ac0d[_0x490c98(_0x5498a4._0x55f486,0x193)](_0x7ac0d['hPaZi'],_0x7ac0d[_0x490c98(_0x5498a4._0x4b8a83,0x16c)])){let _0x547262=_0x375ff8['exec'](_0x516d19);if(!_0x547262){if(_0x7ac0d[_0x490c98(_0x5498a4._0x34529e,_0x5498a4._0x36c4d4)](_0x7ac0d[_0x490c98(0x16f,_0x5498a4._0x1cd005)],_0x490c98(_0x5498a4._0x38e347,_0x5498a4._0x2db563))){const _0x4095f8=_0x5e913b;if(_0x4095f8[_0x490c98(_0x5498a4._0x48761b,_0x5498a4._0x53da5e)+'on']){const _0x506e3f={};_0x506e3f[_0x490c98(0x21f,_0x5498a4._0x4b8a83)]=_0xc1ed57,_0x506e3f[_0x1e9be5(0x365,0x2ec)+'on']=_0x4095f8[_0x490c98(_0x5498a4._0x560dd6,_0x5498a4._0x30c9c3)+'on'],_0x506e3f[_0x1e9be5(_0x5498a4._0xa9d9e,_0x5498a4._0x542f99)+_0x1e9be5(0x450,_0x5498a4._0x3ca2d4)]=_0x7ac0d[_0x490c98(_0x5498a4._0x280682,0x182)],_0x3d55e2[_0x490c98(_0x5498a4._0x357bc9,_0x5498a4._0x48e35f)](_0x506e3f);}_0x4095f8['depen'+'denci'+'es']&&_0x7ac0d[_0x490c98(_0x5498a4._0x5237c1,0x11c)](_0x1a9aa6,_0x4095f8[_0x490c98(0x1ef,0x1d1)+_0x1e9be5(_0x5498a4._0xbc2ae7,_0x5498a4._0x3df3c7)+'es']);}else _0x547262=_0x4d8aac[_0x490c98(_0x5498a4._0x55672b,0x24e)](_0x516d19);}if(_0x547262){const _0x2a1263={};_0x2a1263[_0x1e9be5(_0x5498a4._0x2e019d,0x36a)]=_0x547262[-0x229*0x3+0x2*0x9a1+-0x6d*0x1e],_0x2a1263[_0x490c98(_0x5498a4._0x2d40ad,0x150)+'on']=_0x547262[-0x20ea+-0x151*0xa+0x2e16],_0x2a1263[_0x490c98(_0x5498a4._0x396105,0x16f)+_0x1e9be5(0x450,_0x5498a4._0x1c33eb)]='npm',_0x30b9b9['push'](_0x2a1263);}}else{const _0x4f25f4=[],_0x5c0dfc=/^\s+\/([^:]+)\/([^:(\s]+)/,_0x12334c=/^\s+'?([^@\s][^@']*?)@([^':(\s]+)/;for(const _0x2e9459 of _0x1e24a5[_0x490c98(_0x5498a4._0x2767bf,0x248)]('\x0a')){let _0x3f6756=_0x5c0dfc[_0x1e9be5(_0x5498a4._0x204221,_0x5498a4._0x4b8a22)](_0x2e9459);!_0x3f6756&&(_0x3f6756=_0x12334c['exec'](_0x2e9459));if(_0x3f6756){const _0x4bff0f={};_0x4bff0f[_0x490c98(0x20a,_0x5498a4._0x3704c0)]=_0x3f6756[0x3ab*-0x4+0xf45*-0x1+0x1df2],_0x4bff0f[_0x490c98(_0x5498a4._0x2f67f5,0x150)+'on']=_0x3f6756[0x1*0x203+-0xd4+-0x12d*0x1],_0x4bff0f[_0x1e9be5(_0x5498a4._0xa9d9e,0x3a0)+_0x1e9be5(0x450,0x49d)]=_0x7ac0d['sHSJU'],_0x4f25f4[_0x490c98(_0x5498a4._0x5aafc8,0x134)](_0x4bff0f);}}return _0x4f25f4;}}return _0x30b9b9;}function parseRequirementsTxt(_0x215159){const _0x13d38f={_0x5b9f74:0x409,_0xe3134e:0x39d,_0x133470:0x3fb,_0x11e5de:0x4db,_0x2e0f1e:0x36f,_0x119fbc:0x421,_0x5876b4:0x323,_0x2488a0:0x3d0},_0x55e52f={_0x3caa9b:0x1df},_0x1b0de6={_0x4d9aa6:0xa1},_0x2fec66={};_0x2fec66[_0x335463(0x509,0x485)]='PyPI';function _0x335463(_0x2a7652,_0x54e8be){return _0x8e3072(_0x2a7652- -_0x1b0de6._0x4d9aa6,_0x54e8be);}const _0x590fc0=_0x2fec66,_0x38697d=[];for(const _0x5a5676 of _0x215159['split']('\x0a')){const _0xf81900=_0x5a5676['trim']();if(!_0xf81900||_0xf81900[_0x335463(_0x13d38f._0x5b9f74,0x4af)+_0x244012(0x3fb,_0x13d38f._0xe3134e)]('#')||_0xf81900[_0x335463(0x409,_0x13d38f._0x133470)+_0x335463(_0x13d38f._0x11e5de,0x50c)]('-'))continue;const _0x6391e4=/^([A-Za-z0-9_.-]+)==([A-Za-z0-9_.]+)/[_0x244012(_0x13d38f._0x2e0f1e,_0x13d38f._0x119fbc)](_0xf81900);if(_0x6391e4){const _0x148b5e={};_0x148b5e[_0x335463(0x4c0,0x481)]=_0x6391e4[0x1255+0xcf7+-0x1f4b],_0x148b5e[_0x244012(0x2ba,_0x13d38f._0x5876b4)+'on']=_0x6391e4[0x153f*0x1+-0x1773+0x1*0x236],_0x148b5e['ecosy'+_0x244012(_0x13d38f._0x2488a0,0x40e)]=_0x590fc0['ndhMk'],_0x38697d[_0x335463(0x445,0x4dc)](_0x148b5e);}}function _0x244012(_0x29f239,_0x3dbd1e){return _0x8e3072(_0x3dbd1e- -_0x55e52f._0x3caa9b,_0x29f239);}return _0x38697d;}function parsePipfileLock(_0x39c3fc){const _0x39f50d={_0x2ca7f8:0x11c,_0x442538:0x17a,_0x3b00b3:0xf1,_0x1ac5cc:0x347,_0x163f47:0x352,_0x246136:0x1a1,_0x13780d:0x19e,_0x5185df:0x2fd,_0x466200:0x80,_0xecc81a:0x36b,_0x523702:0xf2,_0x6dc472:0xd9,_0x2e2d77:0x88,_0x14a762:0x320,_0x271348:0x2a8,_0xd4b8ae:0x36a,_0x53c198:0x257,_0x36d2ee:0x2ef,_0x116016:0x28e,_0x2ffb4b:0x29a,_0x31fcfe:0x33d,_0x1c3f57:0x2a0,_0x36a73e:0x285,_0x142103:0xe1,_0x4b0e99:0x165,_0x33fd5d:0x158,_0x5694cd:0x12b,_0x5401a8:0xcc,_0x4aabde:0x9b,_0x3ca606:0x11e,_0x3904ef:0x262,_0x4fd11a:0x174,_0x9a16e4:0x193,_0x3a7225:0x185,_0x394036:0x25c,_0xef3417:0x293,_0x5028e3:0x10e,_0x1b91fb:0x21,_0x566ad8:0x213,_0x78d1a8:0xa2,_0x472cd2:0x14f,_0x156361:0x17e,_0x552fba:0x380,_0x5c1286:0x66,_0x456376:0xc9,_0x431df6:0x349,_0x3029cb:0x1a3,_0x1e29f9:0x275,_0x1b03be:0x29b,_0x154fce:0x1fe,_0x4d74d0:0x247,_0x3f3c6b:0x1a4,_0x516503:0x30c,_0x621255:0x30a},_0x39dbcf={};_0x39dbcf[_0x9a1892(_0x39f50d._0x2ca7f8,0x11e)]='Hex',_0x39dbcf[_0x9a1892(_0x39f50d._0x442538,_0x39f50d._0x3b00b3)]=function(_0x52624f,_0xde31e4){return _0x52624f===_0xde31e4;},_0x39dbcf[_0x4be335(_0x39f50d._0x1ac5cc,_0x39f50d._0x163f47)]=_0x9a1892(_0x39f50d._0x246136,0x1c0)+'cal',_0x39dbcf[_0x9a1892(0x103,0xc9)]=function(_0x212238,_0x5af345){return _0x212238===_0x5af345;},_0x39dbcf['KjvrJ']=_0x9a1892(0x1af,0x1b0),_0x39dbcf[_0x9a1892(0x161,_0x39f50d._0x246136)]=_0x9a1892(0x1f5,_0x39f50d._0x13780d)+_0x4be335(_0x39f50d._0x5185df,0x35e),_0x39dbcf[_0x9a1892(-0x9,_0x39f50d._0x466200)]=function(_0x9e71e8,_0x14cd37){return _0x9e71e8===_0x14cd37;},_0x39dbcf[_0x4be335(0x38d,_0x39f50d._0xecc81a)]='low';function _0x4be335(_0x351b82,_0x579471){return _0x8e3072(_0x579471- -0x26f,_0x351b82);}_0x39dbcf[_0x9a1892(_0x39f50d._0x523702,_0x39f50d._0x6dc472)]=_0x9a1892(0x17,_0x39f50d._0x2e2d77)+'lt';function _0x9a1892(_0x2f30c8,_0x3fe9d2){return _0x23f211(_0x3fe9d2-0x266,_0x2f30c8);}_0x39dbcf[_0x4be335(_0x39f50d._0x14a762,_0x39f50d._0x271348)]=function(_0x21ec9b,_0x4fb7eb){return _0x21ec9b===_0x4fb7eb;},_0x39dbcf[_0x9a1892(0x157,0x165)]=_0x4be335(0x375,_0x39f50d._0xd4b8ae),_0x39dbcf[_0x4be335(_0x39f50d._0x53c198,0x2c8)]=_0x4be335(_0x39f50d._0x36d2ee,0x37d),_0x39dbcf['TbHXr']=_0x9a1892(0x1c4,0x158),_0x39dbcf[_0x4be335(_0x39f50d._0x116016,_0x39f50d._0x2ffb4b)]=_0x4be335(0x358,_0x39f50d._0x31fcfe),_0x39dbcf[_0x4be335(0x292,0x24d)]=_0x4be335(0x2ca,0x2ee);const _0x3e2923=_0x39dbcf,_0xc120cb=[],_0x180ecc=JSON['parse'](_0x39c3fc);for(const _0x41f14e of[_0x3e2923[_0x4be335(0x278,_0x39f50d._0x1c3f57)],_0x4be335(_0x39f50d._0x36a73e,0x30b)+'op']){const _0x1d4d72=_0x180ecc[_0x41f14e];if(!_0x1d4d72)continue;for(const [_0x18df93,_0x1b4045]of Object['entri'+'es'](_0x1d4d72)){if(_0x3e2923[_0x9a1892(0x118,_0x39f50d._0x142103)](_0x3e2923[_0x9a1892(0x209,_0x39f50d._0x4b0e99)],_0x3e2923['uOiQf'])){const _0x3e69ec={};_0x3e69ec[_0x9a1892(_0x39f50d._0x33fd5d,_0x39f50d._0x5694cd)]=_0xf3e6f9[0xb8c+0x112a+-0x1cb5],_0x3e69ec[_0x9a1892(0x30,_0x39f50d._0x5401a8)+'on']=_0xfb0dd1[-0x2591+0x29*0x26+0x1f7e],_0x3e69ec['ecosy'+'stem']=_0x3e2923[_0x9a1892(_0x39f50d._0x4aabde,_0x39f50d._0x3ca606)],_0x2ae1de[_0x4be335(_0x39f50d._0x3904ef,0x277)](_0x3e69ec);}else{const _0x2de368=_0x1b4045;if(_0x2de368[_0x9a1892(_0x39f50d._0x4fd11a,0xcc)+'on']){if(_0x3e2923[_0x9a1892(_0x39f50d._0x9a16e4,_0x39f50d._0x3a7225)]!==_0x3e2923['GmtlV']){const _0x58d16b=_0x2de368[_0x4be335(_0x39f50d._0x394036,_0x39f50d._0xef3417)+'on'][_0x9a1892(_0x39f50d._0x5028e3,0x81)+'ce'](/^==/,''),_0x50b341={};_0x50b341['name']=_0x18df93,_0x50b341[_0x4be335(0x31c,_0x39f50d._0xef3417)+'on']=_0x58d16b,_0x50b341['ecosy'+_0x9a1892(0x257,0x1b7)]=_0x3e2923[_0x9a1892(_0x39f50d._0x1b91fb,0x86)],_0xc120cb[_0x4be335(_0x39f50d._0x566ad8,0x277)](_0x50b341);}else{const _0x45b6a4=_0x29f07f[_0x9a1892(_0x39f50d._0x78d1a8,_0x39f50d._0x472cd2)+_0x9a1892(0x72,0xc0)+_0x9a1892(0x1ca,_0x39f50d._0x156361)+'ic'][_0x9a1892(_0x39f50d._0x142103,0x76)+'ity']['toLow'+_0x4be335(0x263,0x308)+'e']();if(_0x3e2923['XMLgb'](_0x45b6a4,_0x3e2923[_0x9a1892(0x1df,0x18b)]))return _0x3e2923[_0x4be335(_0x39f50d._0x552fba,_0x39f50d._0x163f47)];if(_0x3e2923[_0x9a1892(_0x39f50d._0x5c1286,_0x39f50d._0x456376)](_0x45b6a4,'high'))return _0x3e2923[_0x4be335(0x32b,_0x39f50d._0x431df6)];if(_0x45b6a4===_0x3e2923[_0x9a1892(_0x39f50d._0x3029cb,0x1a1)]||_0x3e2923[_0x4be335(_0x39f50d._0x1e29f9,0x290)](_0x45b6a4,_0x4be335(_0x39f50d._0x1b03be,0x2b7)+'m'))return'mediu'+'m';if(_0x3e2923[_0x4be335(_0x39f50d._0x154fce,_0x39f50d._0x4d74d0)](_0x45b6a4,_0x3e2923[_0x9a1892(0x105,_0x39f50d._0x3f3c6b)]))return _0x4be335(_0x39f50d._0x516503,_0x39f50d._0x621255);}}}}}return _0xc120cb;}function parseGoSum(_0x33ea73){const _0x4e92f4={_0x439dbe:0x232,_0x34ddd1:0x26e,_0x3ec0b1:0x248,_0x2603b6:0xe,_0x1f28fd:0x20,_0x344755:0x1fd,_0x367922:0xdb,_0x12bc1c:0x1e7,_0x53d9c8:0x55,_0x5c9e75:0x57,_0x450124:0x8a,_0x149629:0x68,_0x2feb76:0x16e,_0x1e44d4:0x21f,_0x16e5bf:0x9a},_0x3cf12b={};function _0x23a990(_0x4023e2,_0x299a71){return _0x8e3072(_0x4023e2- -0x342,_0x299a71);}function _0x2d32b0(_0x26b144,_0x5531d9){return _0x23f211(_0x26b144-0x17d,_0x5531d9);}_0x3cf12b[_0x23a990(_0x4e92f4._0x439dbe,_0x4e92f4._0x34ddd1)]=function(_0x3659a5,_0x25da54){return _0x3659a5<_0x25da54;},_0x3cf12b[_0x23a990(0x274,_0x4e92f4._0x3ec0b1)]='/go.m'+'od',_0x3cf12b[_0x2d32b0(0x61,0x2d)]=function(_0x16efeb,_0xb54ef0){return _0x16efeb!==_0xb54ef0;},_0x3cf12b[_0x2d32b0(-_0x4e92f4._0x2603b6,_0x4e92f4._0x1f28fd)]=_0x23a990(0x18d,_0x4e92f4._0x344755);const _0x24f323=_0x3cf12b,_0x52c1be=[],_0x1cb93a=new Set();for(const _0x814ba1 of _0x33ea73[_0x2d32b0(_0x4e92f4._0x367922,0x14f)]('\x0a')){const _0x157a3e=_0x814ba1[_0x23a990(_0x4e92f4._0x12bc1c,0x1d7)]();if(!_0x157a3e)continue;const _0x2f64c3=_0x157a3e[_0x2d32b0(0xdb,0x69)](/\s+/);if(_0x24f323[_0x2d32b0(_0x4e92f4._0x53d9c8,-_0x4e92f4._0x5c9e75)](_0x2f64c3[_0x2d32b0(0x1,-_0x4e92f4._0x450124)+'h'],-0x11a3+0xda8+0x1*0x3fd))continue;const _0x3f2d2e=_0x2f64c3[0xd60+-0x74*-0x54+0x8*-0x66e];let _0x574228=_0x2f64c3[0x198e+0x4*-0x351+-0x25*0x55][_0x2d32b0(-_0x4e92f4._0x149629,-0xb4)+'ce'](_0x24f323[_0x23a990(0x274,0x2a1)],'');_0x574228=_0x574228[_0x23a990(0x175,0x120)+'ce'](/\+incompatible$/,'');const _0x2716e3=_0x3f2d2e+'@'+_0x574228;if(!_0x1cb93a['has'](_0x2716e3)){if(_0x24f323[_0x2d32b0(0x61,0x109)](_0x23a990(0x18d,0x1f4),_0x24f323[_0x23a990(0x1cf,0x15b)]))_0x3bfd00=_0x2dbd38[0x162d+-0x1*-0x2271+-0x3*0x12df];else{_0x1cb93a[_0x23a990(0x1b8,_0x4e92f4._0x2feb76)](_0x2716e3);const _0x25d3be={};_0x25d3be[_0x23a990(_0x4e92f4._0x1e44d4,0x1b2)]=_0x3f2d2e,_0x25d3be[_0x2d32b0(-0x1d,-_0x4e92f4._0x16e5bf)+'on']=_0x574228,_0x25d3be['ecosy'+'stem']='Go',_0x52c1be['push'](_0x25d3be);}}}return _0x52c1be;}function parseGemfileLock(_0x32af8a){const _0x5b558d={_0x4d744d:0x90,_0x3f2bf6:0x18,_0x4d5268:0x260,_0x3eb559:0x236,_0x8f75bb:0x151,_0x4dbc8d:0x348,_0x5577ed:0x352,_0x398724:0x79,_0x58b694:0x363,_0x341bcb:0x63,_0x513583:0xba,_0x247c5f:0x71,_0x14b948:0x182,_0x3e01e8:0x3df,_0x223007:0x286,_0x1df47c:0x315,_0x453c4b:0x283,_0x4085bc:0x2c3,_0x5bd235:0x2f4,_0xcd5fe1:0x308,_0x3238da:0x2e4,_0x5977ce:0x27a,_0x18d344:0x26c,_0x5baa77:0x2da,_0x482c7c:0x130,_0x3da7f2:0x13f,_0xea8cbd:0x382,_0xf5fb70:0x240,_0x30296d:0x119,_0x21556d:0xd9,_0xc046e8:0x333,_0x547ebf:0x386},_0x48acda={'wWPSm':'NuGet','PyMJX':function(_0x299083,_0x2cc540){return _0x299083(_0x2cc540);},'OYEVx':function(_0xc10cdd,_0x15f466,_0x226aa7){return _0xc10cdd(_0x15f466,_0x226aa7);},'BROGe':function(_0x1d955b,_0x2c05ac){return _0x1d955b(_0x2c05ac);},'NDNgG':function(_0x28cd20,_0x28bcf5){return _0x28cd20===_0x28bcf5;},'IIkbN':'TshYn','uFBhY':_0x3439ce(_0x5b558d._0x4d744d,_0x5b558d._0x3f2bf6),'LdQyD':function(_0x4db221,_0xf14842){return _0x4db221===_0xf14842;},'OovkT':function(_0x533922,_0x1ab012){return _0x533922!==_0x1ab012;},'OPqNg':_0x269cc1(_0x5b558d._0x4d5268,0x2d8),'BqtcZ':_0x269cc1(_0x5b558d._0x3eb559,0x280)+_0x3439ce(0x19d,_0x5b558d._0x8f75bb)},_0x19932b=[];let _0x4f6bf4=![];const _0x278f5a=/^\s{4}(\S+)\s+\(([^)]+)\)/;for(const _0x16f695 of _0x32af8a['split']('\x0a')){if(_0x48acda[_0x269cc1(_0x5b558d._0x4dbc8d,_0x5b558d._0x5577ed)](_0x48acda[_0x3439ce(0x6a,0x67)],_0x48acda[_0x3439ce(0xea,_0x5b558d._0x398724)])){if(_0x31dc78[_0x269cc1(0x3c2,_0x5b558d._0x58b694)+_0x3439ce(0x109,_0x5b558d._0x341bcb)]){const _0x41a94e={};_0x41a94e[_0x3439ce(0x119,0x15c)]=_0x57e8eb,_0x41a94e[_0x3439ce(_0x5b558d._0x513583,_0x5b558d._0x247c5f)+'on']=_0xd688e9[_0x3439ce(_0x5b558d._0x14b948,0x1da)+'ved'],_0x41a94e['ecosy'+'stem']=_0x48acda[_0x269cc1(_0x5b558d._0x3e01e8,0x330)],_0x2fdbe9['push'](_0x41a94e);}}else{if(_0x16f695['trim']()==='specs'+':'){_0x4f6bf4=!![];continue;}if(_0x4f6bf4){if(!_0x16f695[_0x3439ce(0x62,-0x24)+_0x269cc1(_0x5b558d._0x223007,_0x5b558d._0x1df47c)]('\x20\x20')||_0x48acda[_0x269cc1(_0x5b558d._0x453c4b,_0x5b558d._0x4085bc)](_0x16f695[_0x269cc1(0x302,0x2c2)](),'')){if(_0x48acda['OovkT'](_0x269cc1(_0x5b558d._0x5bd235,0x30f),_0x48acda['OPqNg'])){_0x4f6bf4=![];continue;}else{const _0xdaf94=_0x48acda['PyMJX'](_0x3c88df,_0x2ad02e),_0x3100e4=_0x371aee[_0xdaf94];if(!_0x3100e4)throw new _0x49972d(_0x269cc1(_0x5b558d._0xcd5fe1,_0x5b558d._0x3238da)+_0x269cc1(_0x5b558d._0x5977ce,_0x5b558d._0x18d344)+_0x3439ce(0x9d,0xd3)+_0x3439ce(0x73,0x92)+':\x20'+_0xdaf94+(_0x269cc1(_0x5b558d._0x5baa77,0x31b)+_0x3439ce(0x8b,_0x5b558d._0x482c7c)+'d:\x20')+_0x37f5fa[_0x3439ce(_0x5b558d._0x3da7f2,0x1c9)](_0x35059b)[_0x269cc1(_0x5b558d._0xea8cbd,0x33c)](',\x20'));const _0x12a441=_0x48acda[_0x269cc1(0x1fe,_0x5b558d._0xf5fb70)](_0x1ad9fd,_0x3022c9,_0x269cc1(0x27d,0x30c));return _0x48acda['BROGe'](_0x3100e4,_0x12a441);}}const _0xf6f10c=_0x278f5a[_0x3439ce(0x1b8,0x234)](_0x16f695);if(_0xf6f10c){const _0x4fcfe9={};_0x4fcfe9[_0x3439ce(_0x5b558d._0x30296d,0x1be)]=_0xf6f10c[-0x1a3*0x5+-0x16*-0x8e+-0x404],_0x4fcfe9[_0x3439ce(0xba,0x8a)+'on']=_0xf6f10c[0x2662+0x1*0x17b0+-0x3e10],_0x4fcfe9[_0x3439ce(_0x5b558d._0x21556d,0x65)+_0x269cc1(_0x5b558d._0xc046e8,_0x5b558d._0x547ebf)]=_0x48acda[_0x3439ce(0x130,0x135)],_0x19932b[_0x269cc1(0x2e0,0x27f)](_0x4fcfe9);}}}}function _0x3439ce(_0x489f48,_0x254fd9){return _0x23f211(_0x489f48-0x254,_0x254fd9);}function _0x269cc1(_0x392bde,_0x5f426c){return _0x8e3072(_0x5f426c- -0x267,_0x392bde);}return _0x19932b;}function _0x23f211(_0x403067,_0x555a30){return _0x3142(_0x403067- -0x392,_0x555a30);}function parseCargoLock(_0x286bda){const _0x25d5df={_0x371948:0xfc,_0x52a026:0x141,_0x2372b9:0x1c,_0x39c4d2:0x9,_0x5af927:0x13e,_0x2f28a8:0x1fd,_0x4b5bec:0x215,_0x3a2b0a:0x13,_0x517c48:0x195,_0x37bdd6:0x1a0,_0x455d2e:0xf2,_0x52766d:0x1e2,_0x3e9cf0:0x245,_0x3f32f3:0x73,_0x36928c:0xe5,_0x544a40:0xca,_0x9abc88:0xc6,_0x5c5fad:0x7d,_0x178694:0x19,_0x4e9d9e:0x1d8,_0x3e6a2f:0x264,_0x542608:0x185,_0x1d2961:0x15d},_0x308c84={_0x500ba6:0x313},_0x15dcc9={_0x41c569:0x5e7},_0x5b444e={};_0x5b444e[_0x2d8ccd(-_0x25d5df._0x371948,-_0x25d5df._0x52a026)]=function(_0x311587,_0x190f25){return _0x311587===_0x190f25;},_0x5b444e[_0x2d8ccd(-_0x25d5df._0x2372b9,_0x25d5df._0x39c4d2)]='[[pac'+_0x14db71(0xdf,_0x25d5df._0x5af927)+']',_0x5b444e['voehv']=function(_0x3e9c5b,_0x51d61e){return _0x3e9c5b&&_0x51d61e;},_0x5b444e['tPbYQ']='crate'+_0x14db71(_0x25d5df._0x2f28a8,_0x25d5df._0x4b5bec);const _0x1c0e5a=_0x5b444e,_0x121032=[];function _0x2d8ccd(_0x3b449f,_0x160ad9){return _0x8e3072(_0x160ad9- -_0x15dcc9._0x41c569,_0x3b449f);}let _0x146a20=null,_0x151bb7=null;function _0x14db71(_0x377142,_0x5a8379){return _0x23f211(_0x5a8379-_0x308c84._0x500ba6,_0x377142);}for(const _0x895913 of _0x286bda[_0x2d8ccd(-0x1c,_0x25d5df._0x3a2b0a)]('\x0a')){const _0x1b42f3=_0x895913[_0x14db71(_0x25d5df._0x517c48,_0x25d5df._0x37bdd6)]();if(_0x1c0e5a[_0x14db71(_0x25d5df._0x455d2e,0x11d)](_0x1b42f3,_0x1c0e5a[_0x14db71(_0x25d5df._0x52766d,0x267)])){if(_0x1c0e5a[_0x14db71(0x2b5,_0x25d5df._0x3e9cf0)](_0x146a20,_0x151bb7)){const _0x358b3e={};_0x358b3e[_0x2d8ccd(-0x39,-0x86)]=_0x146a20,_0x358b3e[_0x2d8ccd(-_0x25d5df._0x3f32f3,-_0x25d5df._0x36928c)+'on']=_0x151bb7,_0x358b3e[_0x2d8ccd(-_0x25d5df._0x544a40,-_0x25d5df._0x9abc88)+_0x2d8ccd(0xa1,0x6)]=_0x1c0e5a['tPbYQ'],_0x121032['push'](_0x358b3e);}_0x146a20=null,_0x151bb7=null;}const _0x4874dc=/^name\s*=\s*"([^"]+)"/[_0x2d8ccd(-_0x25d5df._0x5c5fad,_0x25d5df._0x178694)](_0x1b42f3);if(_0x4874dc)_0x146a20=_0x4874dc[0x402*0x2+-0xceb+0x4e8];const _0x466162=/^version\s*=\s*"([^"]+)"/['exec'](_0x1b42f3);if(_0x466162)_0x151bb7=_0x466162[0x3*-0x8dd+-0x578*0x3+0x2b00];}if(_0x146a20&&_0x151bb7){const _0x4695b9={};_0x4695b9[_0x14db71(0x15f,_0x25d5df._0x4e9d9e)]=_0x146a20,_0x4695b9['versi'+'on']=_0x151bb7,_0x4695b9[_0x14db71(0x19c,0x198)+_0x14db71(0x223,_0x25d5df._0x3e6a2f)]=_0x1c0e5a[_0x14db71(0x15e,0x1bb)],_0x121032[_0x14db71(_0x25d5df._0x542608,_0x25d5df._0x1d2961)](_0x4695b9);}return _0x121032;}function _0x3142(_0x367dd0,_0x4b602e){_0x367dd0=_0x367dd0-(0x3f+0x19b1*-0x1+0x1b07);const _0x1ec5c0=_0x295d();let _0x218153=_0x1ec5c0[_0x367dd0];if(_0x3142['DzkLtC']===undefined){var _0x3bfd00=function(_0x65146c){const _0x2cf927='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x122651='',_0x572ce8='';for(let _0x4d2c65=0x1b96+-0x1*-0x20ce+0x305*-0x14,_0x24eb3a,_0x512e30,_0x11d638=-0x1bf6+0x1*0x20d4+-0x4de;_0x512e30=_0x65146c['charAt'](_0x11d638++);~_0x512e30&&(_0x24eb3a=_0x4d2c65%(0x3*-0xc61+-0x13ef+0x3916)?_0x24eb3a*(-0xa0f+0x9e4+0x6b*0x1)+_0x512e30:_0x512e30,_0x4d2c65++%(-0x15b*-0x5+-0x3*-0x175+0x1db*-0x6))?_0x122651+=String['fromCharCode'](-0x147+0x1668+-0x3*0x6b6&_0x24eb3a>>(-(0x2*0x5fb+0x10c3+-0x1cb7*0x1)*_0x4d2c65&0x21e+-0xc20+0xa08)):-0x65*-0x1b+-0x15*-0x11+-0x1*0xc0c){_0x512e30=_0x2cf927['indexOf'](_0x512e30);}for(let _0x27a2c6=-0x16f*0x11+0x7e8+0x1077,_0x34f629=_0x122651['length'];_0x27a2c6<_0x34f629;_0x27a2c6++){_0x572ce8+='%'+('00'+_0x122651['charCodeAt'](_0x27a2c6)['toString'](0xb2e+-0x1d24+-0x2*-0x903))['slice'](-(0x5d*-0x4+0x5*-0xe4+-0x2*-0x2f5));}return decodeURIComponent(_0x572ce8);};_0x3142['fbENhh']=_0x3bfd00,_0x3142['CXRzhJ']={},_0x3142['DzkLtC']=!![];}const _0x2dbd38=_0x1ec5c0[0x4*-0x84c+0x10a4+0x108c],_0x2fdd39=_0x367dd0+_0x2dbd38,_0x40511b=_0x3142['CXRzhJ'][_0x2fdd39];return!_0x40511b?(_0x218153=_0x3142['fbENhh'](_0x218153),_0x3142['CXRzhJ'][_0x2fdd39]=_0x218153):_0x218153=_0x40511b,_0x218153;}function parseComposerLock(_0x26135b){const _0x1b2e64={_0x129ee0:0x49a,_0x4b5817:0x3c0,_0x17d70b:0x39a,_0x59e17d:0x2ec,_0x402b7a:0x312,_0x890f96:0x2cc,_0x17822f:0x2de,_0x4f7bbf:0x494,_0x4ab767:0x4ef,_0x54ba31:0x36a,_0x12018e:0x369,_0x3bd975:0x315,_0x436bad:0x3bb,_0x22c3bb:0x2de,_0x5d6931:0x358,_0x5b36fd:0x38f,_0x517b33:0x27c,_0x3bbf07:0x3b5,_0x1acc04:0x2da,_0x4d57c9:0x2ae,_0x12a3e1:0x3fa,_0x28a9cd:0x459,_0x45ac09:0x4ac,_0x6ab9a3:0x439,_0x21c211:0x44d},_0x214d2e={_0x40267c:0x594},_0x1c39f9={};_0x1c39f9[_0x425a14(_0x1b2e64._0x129ee0,0x487)]=_0x13b614(0x356,0x325),_0x1c39f9['OfoFK']=_0x13b614(0x374,_0x1b2e64._0x4b5817)+_0x13b614(_0x1b2e64._0x17d70b,_0x1b2e64._0x59e17d)+'ev';function _0x13b614(_0x75d2a3,_0x3ee5e9){return _0x23f211(_0x3ee5e9-0x464,_0x75d2a3);}_0x1c39f9[_0x13b614(_0x1b2e64._0x402b7a,_0x1b2e64._0x890f96)]=function(_0x4124ea,_0x5db087){return _0x4124ea===_0x5db087;},_0x1c39f9[_0x13b614(0x2f4,_0x1b2e64._0x17822f)]=_0x425a14(_0x1b2e64._0x4f7bbf,0x468),_0x1c39f9[_0x425a14(_0x1b2e64._0x4ab767,0x4a3)]=_0x13b614(_0x1b2e64._0x54ba31,0x35a)+_0x13b614(0x2f5,0x2bb);const _0xaa9efd=_0x1c39f9,_0x552dc8=[],_0x487309=JSON['parse'](_0x26135b);function _0x425a14(_0x39ecf5,_0x27e730){return _0x23f211(_0x39ecf5-_0x214d2e._0x40267c,_0x27e730);}for(const _0x2dc6c2 of[_0x13b614(0x3e9,_0x1b2e64._0x4b5817)+_0x13b614(0x347,_0x1b2e64._0x12018e),_0xaa9efd[_0x13b614(0x2c0,_0x1b2e64._0x3bd975)]]){const _0x19cda9=_0x487309[_0x2dc6c2];if(!Array[_0x13b614(0x322,_0x1b2e64._0x436bad)+'ay'](_0x19cda9))continue;for(const _0x1d37c5 of _0x19cda9){if(_0xaa9efd['urlLi'](_0xaa9efd[_0x13b614(0x381,_0x1b2e64._0x22c3bb)],_0x13b614(_0x1b2e64._0x5d6931,_0x1b2e64._0x5b36fd))){const _0xe199f9=_0x94c544[_0x425a14(0x3fa,0x488)+'on']['repla'+'ce'](/^==/,''),_0x4a8efd={};_0x4a8efd['name']=_0xf90984,_0x4a8efd['versi'+'on']=_0xe199f9,_0x4a8efd[_0x13b614(_0x1b2e64._0x517b33,0x2e9)+_0x13b614(0x3b4,_0x1b2e64._0x3bbf07)]=_0xaa9efd[_0x13b614(_0x1b2e64._0x1acc04,0x36a)],_0x47c708[_0x13b614(0x305,_0x1b2e64._0x4d57c9)](_0x4a8efd);}else{if(_0x1d37c5['name']&&_0x1d37c5['versi'+'on']){const _0x542cb9=_0x1d37c5[_0x425a14(_0x1b2e64._0x12a3e1,0x424)+'on'][_0x425a14(0x3af,0x3c3)+'ce'](/^v/,''),_0x3f0d85={};_0x3f0d85[_0x425a14(_0x1b2e64._0x28a9cd,_0x1b2e64._0x45ac09)]=_0x1d37c5['name'],_0x3f0d85['versi'+'on']=_0x542cb9,_0x3f0d85['ecosy'+_0x13b614(_0x1b2e64._0x6ab9a3,0x3b5)]=_0xaa9efd[_0x425a14(0x4ef,_0x1b2e64._0x21c211)],_0x552dc8[_0x425a14(0x3de,_0x1b2e64._0x21c211)](_0x3f0d85);}}}}return _0x552dc8;}function parseGradleLock(_0x37b2b5){const _0x2fa073={_0x1d9215:0x5f9,_0x154056:0x608,_0x14d395:0xd6,_0xf100c4:0x114,_0x1a4079:0x95,_0xed9419:0x4dd,_0x4dbede:0x53f,_0x3aed29:0xd5,_0x7f34da:0x14,_0x16d865:0x594,_0x1c2fa8:0x512,_0x37500d:0x138,_0x2d126d:0x24,_0x260e9e:0xf5,_0x2b90cd:0xc1,_0x5cdc08:0x12b,_0x1e7a35:0x167,_0x5d1395:0x5dc,_0x58af5b:0x614},_0x5f5666={_0x1c14e0:0x6cf},_0x1ebab3={};_0x1ebab3['JQilT']=_0x201479(-0x162,-0xb8),_0x1ebab3['ltpbB']='empty'+'=';function _0x276e8d(_0x1137fb,_0x4bc140){return _0x23f211(_0x1137fb-_0x5f5666._0x1c14e0,_0x4bc140);}_0x1ebab3['Hfvuk']=function(_0x471a90,_0x1773f0){return _0x471a90!==_0x1773f0;},_0x1ebab3[_0x276e8d(0x630,0x6b9)]='rwhqp',_0x1ebab3[_0x276e8d(_0x2fa073._0x1d9215,_0x2fa073._0x154056)]='GHRtp',_0x1ebab3['rhgfG']=_0x201479(-_0x2fa073._0x14d395,-0x72);const _0x203944=_0x1ebab3,_0x14bfb3=[];function _0x201479(_0x1a87e2,_0x23243a){return _0x23f211(_0x23243a-0x8b,_0x1a87e2);}for(const _0xa3b98d of _0x37b2b5[_0x201479(-0xb,-0x17)]('\x0a')){const _0x1aa912=_0xa3b98d['trim']();if(!_0x1aa912||_0x1aa912[_0x276e8d(0x4dd,0x49f)+_0x201479(-_0x2fa073._0xf100c4,-_0x2fa073._0x1a4079)]('#')||_0x1aa912[_0x276e8d(_0x2fa073._0xed9419,_0x2fa073._0x4dbede)+_0x276e8d(0x5af,0x65c)](_0x203944[_0x201479(-_0x2fa073._0x3aed29,-0xdc)]))continue;const _0x2844b9=/^([^:]+:[^:]+):([^=]+)=/['exec'](_0x1aa912);if(_0x2844b9){if(_0x203944['Hfvuk'](_0x203944[_0x201479(0x43,-_0x2fa073._0x7f34da)],_0x203944[_0x276e8d(0x5f9,0x581)])){const _0x11a1df={};_0x11a1df[_0x276e8d(_0x2fa073._0x16d865,_0x2fa073._0x1c2fa8)]=_0x2844b9[0x1540+-0x1289+-0x15b*0x2],_0x11a1df[_0x201479(-_0x2fa073._0x37500d,-0x10f)+'on']=_0x2844b9[-0xc4*0x22+-0x6d*0x53+-0x33b*-0x13],_0x11a1df['ecosy'+_0x201479(-0x7d,-_0x2fa073._0x2d126d)]=_0x203944[_0x201479(-_0x2fa073._0x260e9e,-_0x2fa073._0x2b90cd)],_0x14bfb3[_0x201479(-0xdb,-_0x2fa073._0x5cdc08)](_0x11a1df);}else for(const _0x255975 of _0x15ec39[_0x201479(-0x55,-0x34)+'es']){if(_0x255975[_0x201479(-0xe0,-_0x2fa073._0x1e7a35)+_0x276e8d(0x5af,0x5ac)](_0x203944[_0x276e8d(_0x2fa073._0x5d1395,_0x2fa073._0x58af5b)]))return _0x255975;}}}return _0x14bfb3;}function parseNuGetLock(_0xfd8545){const _0x152b54={_0x1bd029:0x4f5,_0x3ef4ae:0x4db,_0x211537:0x216,_0x22b428:0x4c7,_0x1017a0:0x4b3,_0x5c18eb:0x3a2,_0x4f761b:0x250,_0xb15a51:0x90,_0x988417:0x181,_0x3a0e57:0x7f,_0x46ae71:0x231,_0x215a21:0x191,_0x269e82:0x1c1,_0x5f03b8:0x55c,_0x37f8a4:0x1d8,_0x12a209:0x1d4,_0x10e470:0x490,_0x40eb9d:0x4b3,_0x3dc366:0x4f0},_0x5d4a56={};function _0x575994(_0x16587a,_0x276384){return _0x8e3072(_0x16587a- -0x91,_0x276384);}_0x5d4a56['REDiL']='PyPI',_0x5d4a56[_0x575994(_0x152b54._0x1bd029,0x4b3)]='KmjEG',_0x5d4a56[_0x575994(_0x152b54._0x3ef4ae,0x512)]=_0x349469(-0x195,-0x14f);const _0x3db48e=_0x5d4a56,_0x5a448f=[],_0x34606b=JSON[_0x349469(-0x197,-_0x152b54._0x211537)](_0xfd8545);function _0x349469(_0x319c4a,_0x3e12e4){return _0x8e3072(_0x3e12e4- -0x6e2,_0x319c4a);}if(_0x34606b['depen'+'denci'+'es'])for(const _0xd9d682 of Object[_0x575994(_0x152b54._0x22b428,0x510)+'s'](_0x34606b[_0x575994(0x4f2,_0x152b54._0x1017a0)+_0x575994(0x40e,_0x152b54._0x5c18eb)+'es'])){if(_0x3db48e['pyYuA']==='KmjEG'){const _0x245568=_0xd9d682;for(const [_0x582b40,_0x3ecd5d]of Object[_0x349469(-_0x152b54._0x4f761b,-0x1ac)+'es'](_0x245568)){if(_0x3ecd5d[_0x349469(-_0x152b54._0xb15a51,-0x118)+'ved']){const _0x37518a={};_0x37518a[_0x349469(-0x17f,-_0x152b54._0x988417)]=_0x582b40,_0x37518a[_0x349469(-0x22e,-0x1e0)+'on']=_0x3ecd5d[_0x349469(-_0x152b54._0x3a0e57,-0x118)+_0x349469(-_0x152b54._0x46ae71,-_0x152b54._0x215a21)],_0x37518a[_0x349469(-0x15f,-_0x152b54._0x269e82)+_0x575994(_0x152b54._0x5f03b8,0x518)]=_0x3db48e[_0x349469(-_0x152b54._0x37f8a4,-0x176)],_0x5a448f['push'](_0x37518a);}}}else{const _0x39008d={};_0x39008d['name']=_0x6e346d[-0x354+0x1822+-0x47*0x4b],_0x39008d[_0x349469(-_0x152b54._0x12a209,-0x1e0)+'on']=_0x1e8a30[0x2648+-0x1295*0x1+-0x47*0x47],_0x39008d[_0x575994(_0x152b54._0x10e470,_0x152b54._0x40eb9d)+_0x349469(-0x5d,-0xf5)]=_0x3db48e[_0x575994(_0x152b54._0x3dc366,0x534)],_0xe3ba24['push'](_0x39008d);}}return _0x5a448f;}function parsePubspecLock(_0x21e151){const _0x38a1f6={_0x145a1f:0xd4,_0x8f5e21:0x3e,_0x44f939:0x3e6,_0x30c5fe:0x47d,_0x5a1ec0:0x54c,_0x2e0ba6:0xd8,_0x2d8041:0xff,_0x333efd:0xde,_0x37cf4:0x40c,_0x4fe0b5:0x49a,_0xc72105:0x3e7,_0x382ee8:0x466,_0x31ee5c:0x433,_0x4eb15a:0x494,_0x32b083:0x425,_0x5ec500:0x1,_0x2256f5:0x50e,_0x268873:0x4a7,_0xe2a7c7:0x43e,_0x4895ce:0x4bb,_0x1eeba4:0x0,_0x259330:0x131,_0x523147:0xdf,_0x3bf82:0x100,_0x268650:0x551,_0x3d7624:0xc4,_0x5d59d2:0xda,_0xbbff1:0x544,_0x971a53:0x53e,_0x112442:0x46f,_0x27736f:0x7e,_0xad7921:0x3ef,_0x5b3de8:0x2a,_0x4df35a:0x146,_0x507b01:0xf9,_0x26ac90:0xda,_0xbc539f:0x127,_0x340a98:0x3d4},_0x5dcd6d={_0x4865e8:0xaf},_0x4da84f={};function _0x86a661(_0x3dde73,_0x3e5499){return _0x8e3072(_0x3e5499- -_0x5dcd6d._0x4865e8,_0x3dde73);}_0x4da84f[_0x3d16b6(-_0x38a1f6._0x145a1f,-0xca)]=_0x3d16b6(-0x5d,-0xd),_0x4da84f[_0x3d16b6(-0x3d,-_0x38a1f6._0x8f5e21)]=function(_0x1f9304,_0x2c2110){return _0x1f9304===_0x2c2110;},_0x4da84f[_0x3d16b6(0x2,-0x91)]='packa'+_0x86a661(_0x38a1f6._0x44f939,_0x38a1f6._0x30c5fe),_0x4da84f[_0x86a661(0x527,_0x38a1f6._0x5a1ec0)]='XllRZ',_0x4da84f[_0x3d16b6(-0xad,-_0x38a1f6._0x2e0ba6)]=_0x3d16b6(-_0x38a1f6._0x2d8041,-_0x38a1f6._0x333efd);function _0x3d16b6(_0x15074f,_0x4aab01){return _0x23f211(_0x4aab01-0xa1,_0x15074f);}_0x4da84f[_0x86a661(_0x38a1f6._0x37cf4,_0x38a1f6._0x4fe0b5)]=function(_0x2f811a,_0x575bb1){return _0x2f811a!==_0x575bb1;},_0x4da84f[_0x86a661(_0x38a1f6._0xc72105,_0x38a1f6._0x382ee8)]='wOAzy',_0x4da84f[_0x86a661(0x576,0x540)]=_0x86a661(_0x38a1f6._0x31ee5c,_0x38a1f6._0x4eb15a),_0x4da84f[_0x86a661(0x41d,_0x38a1f6._0x32b083)]='Pub';const _0x420a4a=_0x4da84f,_0x5d8125=[];let _0x16bf2b=null,_0x3d650b=![];for(const _0x58c3df of _0x21e151[_0x3d16b6(-0x4d,-_0x38a1f6._0x5ec500)]('\x0a')){if(_0x420a4a[_0x86a661(0x507,_0x38a1f6._0x2256f5)](_0x58c3df[_0x86a661(_0x38a1f6._0x268873,0x501)+'nd'](),_0x420a4a[_0x86a661(_0x38a1f6._0xe2a7c7,_0x38a1f6._0x4895ce)])){_0x3d650b=!![];continue;}if(!_0x3d650b)continue;const _0x73039a=/^ ([a-zA-Z0-9_-]+):$/['exec'](_0x58c3df);if(_0x73039a){if(_0x420a4a[_0x3d16b6(-0xc1,-0x3e)](_0x420a4a[_0x3d16b6(-0x56,_0x38a1f6._0x1eeba4)],_0x420a4a[_0x3d16b6(-_0x38a1f6._0x259330,-_0x38a1f6._0x2e0ba6)]))_0x9efc3f[_0x86a661(0x4ed,0x44b)](_0x5b3906['id']),_0x52f326[_0x3d16b6(-_0x38a1f6._0x523147,-_0x38a1f6._0x3bf82)](_0x16810d['id'],_0x2f4f6a);else{_0x16bf2b=_0x73039a[-0x1*0x3fe+0x5*-0x59d+0x2010];continue;}}if(_0x16bf2b){if(_0x420a4a['whlIM'](_0x420a4a['HruUH'],_0x420a4a[_0x86a661(0x4d2,0x466)])){let _0x1678fc=_0x43a73a['exec'](_0x652dbf);!_0x1678fc&&(_0x1678fc=_0x16e1c8[_0x86a661(0x507,_0x38a1f6._0x268650)](_0x5b2756));if(_0x1678fc){const _0x481ce6={};_0x481ce6[_0x86a661(0x4f2,0x4b2)]=_0x1678fc[-0xee2+-0x15b*-0xd+-0x46*0xa],_0x481ce6[_0x86a661(0x424,0x453)+'on']=_0x1678fc[0x2140*0x1+-0x2416+0x1a*0x1c],_0x481ce6[_0x3d16b6(-_0x38a1f6._0x3d7624,-_0x38a1f6._0x5d59d2)+_0x86a661(_0x38a1f6._0xbbff1,_0x38a1f6._0x971a53)]=_0x420a4a[_0x86a661(_0x38a1f6._0x112442,0x482)],_0x1b7c2a[_0x86a661(0x3a8,0x437)](_0x481ce6);}}else{const _0x3a3f5a=/^\s+version:\s+"([^"]+)"/[_0x3d16b6(-_0x38a1f6._0x27736f,0x5)](_0x58c3df);if(_0x3a3f5a){if(_0x420a4a['GmfZu'](_0x86a661(_0x38a1f6._0xad7921,0x497),_0x420a4a['csNlO']))_0x88eb02=_0x4c0800[_0x3d16b6(_0x38a1f6._0x5b3de8,0x5)](_0x206d6a);else{const _0x3c40d3={};_0x3c40d3[_0x3d16b6(-_0x38a1f6._0x4df35a,-0x9a)]=_0x16bf2b,_0x3c40d3[_0x3d16b6(-0xa9,-_0x38a1f6._0x507b01)+'on']=_0x3a3f5a[0x1073*0x1+-0x27b*0xa+0xa*0xd6],_0x3c40d3[_0x3d16b6(-0xce,-_0x38a1f6._0x26ac90)+_0x3d16b6(0xa1,-0xe)]=_0x420a4a[_0x3d16b6(-0xa4,-_0x38a1f6._0xbc539f)],_0x5d8125[_0x86a661(_0x38a1f6._0x340a98,0x437)](_0x3c40d3),_0x16bf2b=null;}}}}}return _0x5d8125;}function parseMixLock(_0x559f8c){const _0x4bc4b8={_0x163f1e:0xf,_0x18650d:0x1b,_0x151460:0x2,_0x30f98f:0x71,_0x1c91b1:0x7e,_0x510897:0x68,_0x4b44db:0xbe,_0x102cfb:0x3d,_0x159755:0x51,_0x29d60a:0x3,_0x1ebb10:0x185,_0x1666dc:0xb3,_0x2287a7:0x14,_0x4d2918:0x64},_0x4acc02={_0x2fb0eb:0xbd},_0x5a522a={};_0x5a522a[_0x3deb63(-0xf0,-0x3f)]='Hex',_0x5a522a[_0x3deb63(-_0x4bc4b8._0x163f1e,0x2a)]=function(_0x2caf36,_0x8ad262){return _0x2caf36!==_0x8ad262;},_0x5a522a['ycYlV']='ibgne';function _0x3deb63(_0x5ae325,_0x53d079){return _0x23f211(_0x53d079-0x13e,_0x5ae325);}const _0x5bfc98=_0x5a522a,_0x17bfc0=[],_0x2a9e75=/^\s*"([^"]+)":\s*\{:hex,\s*:([^,]+),\s*"([^"]+)"/;function _0x6b97d7(_0x9bd410,_0x380489){return _0x23f211(_0x9bd410-_0x4acc02._0x2fb0eb,_0x380489);}for(const _0x29424a of _0x559f8c[_0x6b97d7(_0x4bc4b8._0x18650d,_0x4bc4b8._0x151460)]('\x0a')){if(_0x5bfc98[_0x6b97d7(-0x57,0x59)](_0x5bfc98[_0x3deb63(-0xc3,-0xa4)],_0x5bfc98['ycYlV'])){const _0x2312e1=_0x54f351[_0x6b97d7(0x21,_0x4bc4b8._0x30f98f)](_0x4fb06b);if(_0x2312e1){const _0x48c832={};_0x48c832[_0x6b97d7(-_0x4bc4b8._0x1c91b1,-_0x4bc4b8._0x510897)]=_0x2312e1[-0xc1*0x16+-0x1*0x134d+-0x1*-0x23e4],_0x48c832['versi'+'on']=_0x2312e1[0xeed*-0x1+0x95*0x25+-0x699],_0x48c832[_0x6b97d7(-_0x4bc4b8._0x4b44db,-_0x4bc4b8._0x102cfb)+_0x3deb63(0xb8,0x8f)]=_0x5bfc98['nfaDt'],_0x1d035a[_0x6b97d7(-0xf9,-0x15b)](_0x48c832);}}else{const _0xcbe9b6=_0x2a9e75[_0x6b97d7(0x21,0xc8)](_0x29424a);if(_0xcbe9b6){const _0x513c34={};_0x513c34[_0x3deb63(_0x4bc4b8._0x159755,_0x4bc4b8._0x29d60a)]=_0xcbe9b6[0x2351+0x1*-0x1eaa+-0x4a6],_0x513c34[_0x6b97d7(-0xdd,-_0x4bc4b8._0x1ebb10)+'on']=_0xcbe9b6[0x1196*-0x1+0x1*-0x706+0x189f],_0x513c34[_0x6b97d7(-0xbe,-0x5b)+_0x3deb63(_0x4bc4b8._0x1666dc,0x8f)]=_0x5bfc98[_0x6b97d7(-0xc0,-_0x4bc4b8._0x2287a7)],_0x17bfc0[_0x3deb63(-_0x4bc4b8._0x4d2918,-0x78)](_0x513c34);}}}return _0x17bfc0;}const OSV_BATCH_URL='https'+_0x23f211(-0x1c0,-0x110)+_0x23f211(-0xcc,-0x91)+'.dev/'+_0x23f211(-0x1e9,-0x166)+_0x23f211(-0xe7,-0x107)+_0x8e3072(0x4ab,0x555),OSV_VULN_URL=_0x8e3072(0x4f7,0x463)+_0x23f211(-0x1c0,-0x249)+_0x23f211(-0xcc,-0x113)+_0x23f211(-0xef,-0x47)+'v1/vu'+'lns';function _0x8e3072(_0xc4d64d,_0xba7cd5){const _0xd5f2ce={_0x13aecb:0x30a};return _0x3142(_0xc4d64d-_0xd5f2ce._0x13aecb,_0xba7cd5);}const BATCH_SIZE=0x1f69+0x13*0x1e2+-0x3f47,FETCH_TIMEOUT_MS=0x203c+-0xec6*-0x3+-0x1*0x257e,MAX_CONCURRENT_FETCHES=-0xd17+-0x3bc*0x6+0x33b*0xb,vulnCache=new Map();async function fetchWithTimeout(_0x136e0f,_0x38943c={}){const _0x404999={_0x3fff4f:0xf,_0x19e492:0x1f5,_0x468e2f:0x17a,_0x46c02a:0x17a,_0x158c05:0x157,_0x5129c1:0x113,_0x35cb8e:0x9,_0x972cb8:0x128,_0x1d75eb:0x91,_0x641627:0xaf},_0x2a66c0={_0x324247:0x666},_0x36e1af={'KzkwY':'Maven','uHSQa':function(_0x355d14,_0x44195f,_0x454593){return _0x355d14(_0x44195f,_0x454593);},'RPury':_0x2939ab(-0x72,-0x10d),'DeTnD':'Orbwn','AJWNV':function(_0x541559,_0x3f852a,_0x4c0cd2){return _0x541559(_0x3f852a,_0x4c0cd2);},'DzoiE':function(_0x3c5e66,_0x3836cf){return _0x3c5e66(_0x3836cf);}};function _0xb006c8(_0x37d8da,_0x5645c5){return _0x8e3072(_0x37d8da- -0x634,_0x5645c5);}const _0x3f167e=new AbortController();function _0x2939ab(_0x32d87,_0x3943c3){return _0x8e3072(_0x32d87- -_0x2a66c0._0x324247,_0x3943c3);}const _0x745cb0=_0x36e1af[_0xb006c8(-0x81,_0x404999._0x3fff4f)](setTimeout,()=>_0x3f167e['abort'](),FETCH_TIMEOUT_MS);try{if(_0x36e1af['RPury']!==_0x36e1af[_0xb006c8(-0x164,-_0x404999._0x19e492)]){const _0x197f85={..._0x38943c};_0x197f85[_0x2939ab(-_0x404999._0x468e2f,-0x146)+'l']=_0x3f167e[_0x2939ab(-_0x404999._0x46c02a,-0x222)+'l'];const _0x59691c=await _0x36e1af[_0xb006c8(-0x171,-0xc3)](fetch,_0x136e0f,_0x197f85);return _0x59691c;}else{const _0x33a03a={};_0x33a03a[_0x2939ab(-0x105,-_0x404999._0x158c05)]=_0x182308[0x4*0x76d+-0x7*-0x250+-0x2de3],_0x33a03a[_0xb006c8(-0x132,-0x1d7)+'on']=_0x214e36[0x6*0x583+0x16d6+-0x37e6],_0x33a03a[_0xb006c8(-_0x404999._0x5129c1,-0x184)+_0xb006c8(-0x47,-_0x404999._0x35cb8e)]=_0x36e1af[_0xb006c8(-_0x404999._0x972cb8,-0xc3)],_0x184ca5[_0xb006c8(-0x14e,-0x1a3)](_0x33a03a);}}finally{_0x36e1af[_0x2939ab(-_0x404999._0x1d75eb,-_0x404999._0x641627)](clearTimeout,_0x745cb0);}}export async function queryOsv(_0x1f6034){const _0x4b7ac5={_0x3fa43f:0x32f,_0x135bca:0x30a,_0x3faf55:0x4e3,_0x1022fe:0x559,_0x3c4535:0x410,_0x1d4ef6:0x476,_0x157486:0x5b4,_0x5ed6c7:0x528,_0x4e15f9:0x272,_0x77bd4c:0x24a,_0x49a9cf:0x47e,_0x33899e:0x4d6,_0x54195d:0x564,_0x46f49f:0x57e,_0x4b4e58:0x4f3,_0x42b423:0x4d9,_0x159bdd:0x200,_0x5dea34:0x266,_0x1980ec:0x211,_0xc0f5f0:0x16d,_0x3e8e81:0x1e9,_0x3f7464:0x3ac,_0x4da371:0x315,_0x3839ef:0x301,_0xcdc4c8:0x2a9,_0xbb7adb:0x42d,_0x47932f:0x256,_0x35bd51:0x1cc,_0x394808:0x49a,_0x2fe369:0x59b,_0x4950aa:0x187,_0x45970e:0x28b,_0x2c7712:0x488,_0x41793d:0x4bc,_0x526da8:0x4cf,_0x5cd8e2:0x4bc,_0x27c382:0x466,_0x3bc67d:0x598,_0x43fa80:0x1fb,_0x192e8a:0x49e,_0x2d9c3b:0x2f5,_0x2653da:0x60a,_0x425745:0x49b,_0x5c51d8:0x449,_0x2560ac:0x59a,_0x328449:0x22a,_0x3d661f:0x4cb,_0x27c839:0x2f2,_0x2783dc:0x2e1,_0x26b41e:0x502,_0x5df33e:0x22d,_0x843348:0x2df,_0x1b3d94:0x152,_0xa689f9:0x540,_0x516316:0x4fd,_0x4f4b4c:0x3bf,_0x3b7c56:0x43e,_0x4bf485:0x4cb,_0x15fc6e:0x4c7,_0x195224:0x491,_0x2bd18b:0x198,_0x59f268:0x29d,_0x14960c:0x28a,_0x541ecf:0x53f,_0x3cf5c2:0x1dc,_0x4a1ac9:0x4ac,_0x22b1e7:0x522,_0x2923de:0x275,_0x5c28d9:0x568,_0x3f7956:0x57a,_0x267672:0x40b,_0x236c7d:0x2de,_0xad2da9:0x1e7,_0x202b5b:0x27d,_0x5d540c:0x536,_0x469fa0:0x49e,_0x150b51:0x4bd,_0x1a6745:0x5a9,_0x1f2952:0x3fd,_0x526fff:0x496,_0x347047:0x4d2,_0x59668a:0x209,_0x10d32a:0x21e,_0x33d10f:0x520,_0x3408ae:0x4bd,_0x567326:0x25d,_0x46c972:0x482,_0x117d3d:0x43b,_0x171562:0x4da,_0x10ebb4:0x43f,_0x409380:0x4ce,_0x4bf719:0x426,_0x7c7f55:0x517,_0x1f58d6:0x23c,_0x11e0fc:0x1e6,_0x4b6565:0x223,_0x4d516a:0x598,_0x4d21a1:0x56e,_0x14b48d:0x578,_0x2038fb:0x50b,_0x2fca2e:0x2be,_0x38a3b8:0x274,_0x1d9080:0x202,_0x201ccc:0x4ac,_0x80173d:0x4f4,_0x482480:0x453,_0x467bbf:0x485,_0x7303f:0x483,_0x2fdaaf:0x2bc,_0x481d37:0x2d6,_0x2a509e:0x1fc,_0xd1c1b7:0x1db,_0x5d6904:0x1fa,_0x306032:0x47e,_0x4f2994:0x4fd,_0x139cc4:0x38b,_0x484069:0x307,_0x4c1e76:0x2cc,_0x4731ba:0x4af,_0x371834:0x473,_0x463ff6:0x2a2,_0x19d820:0x524,_0x1d4a08:0x504,_0x5a0ec7:0x5b0,_0x435eb0:0x564,_0x1642f2:0x592,_0x13508:0x2db,_0x352ac4:0x242,_0x472bde:0x26b,_0x2f7c04:0x22e},_0x3b703a={_0x3552f7:0x638},_0x26542e={_0x33ee28:0x2e,_0x3fc516:0x45a},_0x1ad033={_0x42ec9c:0x3b8},_0x2133e3={'NALhR':_0x32ed42(_0x4b7ac5._0x3fa43f,_0x4b7ac5._0x135bca),'qNHky':function(_0x2cc4c5,_0x498d15){return _0x2cc4c5(_0x498d15);},'wCPkD':function(_0x43b84f,_0x18fed0){return _0x43b84f===_0x18fed0;},'aMMWa':function(_0x3cf1cb,_0x3a8491){return _0x3cf1cb<_0x3a8491;},'VgYVI':function(_0x240297,_0x4f0131){return _0x240297!==_0x4f0131;},'HMwpX':_0x5931c3(0x49a,_0x4b7ac5._0x3faf55),'ckhqi':function(_0x95165e,_0x3958bf,_0x188bd9){return _0x95165e(_0x3958bf,_0x188bd9);},'EuyTp':'POST','FWCxw':_0x5931c3(0x571,0x56f)+_0x5931c3(_0x4b7ac5._0x1022fe,0x591)+'n/jso'+'n','NNPoI':_0x5931c3(_0x4b7ac5._0x3c4535,_0x4b7ac5._0x1d4ef6),'pgIMA':function(_0x2d4fa2,_0xdefb54){return _0x2d4fa2===_0xdefb54;},'SPvpW':_0x5931c3(_0x4b7ac5._0x157486,_0x4b7ac5._0x5ed6c7)+_0x32ed42(_0x4b7ac5._0x4e15f9,_0x4b7ac5._0x77bd4c),'pVZdK':'GaUBg','fqDuy':_0x32ed42(0x256,0x2da)+_0x5931c3(_0x4b7ac5._0x49a9cf,0x4fe)+_0x5931c3(_0x4b7ac5._0x33899e,_0x4b7ac5._0x54195d)+'uest\x20'+_0x5931c3(_0x4b7ac5._0x46f49f,_0x4b7ac5._0x4b4e58)+_0x5931c3(0x514,_0x4b7ac5._0x42b423)+_0x32ed42(_0x4b7ac5._0x159bdd,_0x4b7ac5._0x5dea34)+_0x32ed42(_0x4b7ac5._0x1980ec,0x219)+_0x5931c3(0x5aa,0x535)+'ur\x20ne'+_0x32ed42(_0x4b7ac5._0xc0f5f0,_0x4b7ac5._0x3e8e81)+_0x5931c3(0x558,0x4af)+_0x32ed42(_0x4b7ac5._0x3f7464,_0x4b7ac5._0x4da371)+'n.','LqIVT':function(_0x15eb17,_0x2d2b22){return _0x15eb17 instanceof _0x2d2b22;},'sHQeC':function(_0x4eb660,_0x22c806){return _0x4eb660<_0x22c806;},'GtuQz':function(_0x60c5c9,_0x3819af){return _0x60c5c9>_0x3819af;},'Pkzzv':_0x32ed42(_0x4b7ac5._0x3839ef,_0x4b7ac5._0xcdc4c8),'GRjTt':'wwYKz','epwvv':_0x5931c3(_0x4b7ac5._0xbb7adb,0x461)+_0x32ed42(_0x4b7ac5._0x47932f,_0x4b7ac5._0x35bd51),'twItO':_0x5931c3(0x50b,_0x4b7ac5._0x394808),'LwHWe':function(_0x10bedd,_0x420b73){return _0x10bedd(_0x420b73);},'HdLXA':function(_0x43f412,_0xc98727,_0x5cfdfe){return _0x43f412(_0xc98727,_0x5cfdfe);},'pgGiC':function(_0x7cc292,_0x25fd5d){return _0x7cc292(_0x25fd5d);},'hUfBK':function(_0x42522f,_0x32ea46){return _0x42522f(_0x32ea46);},'WbpPN':_0x5931c3(0x487,0x50d)+_0x32ed42(0x2a6,0x2ce)+_0x5931c3(0x5a0,_0x4b7ac5._0x2fe369)+_0x32ed42(_0x4b7ac5._0x4950aa,0x1bd)+'able.'};if(_0x2133e3[_0x32ed42(0x2dd,_0x4b7ac5._0x45970e)](_0x1f6034[_0x5931c3(_0x4b7ac5._0x2c7712,_0x4b7ac5._0x41793d)+'h'],-0xa45+0x223b+0x17f6*-0x1))return[];function _0x32ed42(_0x2d0541,_0x46b7ae){return _0x23f211(_0x46b7ae-_0x1ad033._0x42ec9c,_0x2d0541);}const _0x2f4dbf=[],_0x4d496c=new Set(),_0x1e1f75=new Map();for(let _0x609d82=0x1*-0x101+-0x13b+-0x4*-0x8f;_0x2133e3[_0x5931c3(0x42b,_0x4b7ac5._0x526da8)](_0x609d82,_0x1f6034[_0x5931c3(0x4fe,_0x4b7ac5._0x5cd8e2)+'h']);_0x609d82+=BATCH_SIZE){if(_0x2133e3['VgYVI'](_0x5931c3(0x473,0x525),_0x5931c3(0x49b,0x4be))){const _0x48bc74=_0x1f6034[_0x5931c3(0x432,_0x4b7ac5._0x27c382)](_0x609d82,_0x609d82+BATCH_SIZE),_0x379dfa={'queries':_0x48bc74[_0x5931c3(0x5cf,_0x4b7ac5._0x3bc67d)](_0x438fde=>({'package':{'name':_0x438fde[_0x32ed42(0x2ef,0x27d)],'ecosystem':_0x438fde[_0x5931c3(0x50b,0x4bd)+_0x5931c3(0x4f5,0x589)]},'version':_0x438fde['versi'+'on']}))};let _0x1e8d77;try{if(_0x2133e3['VgYVI'](_0x2133e3['HMwpX'],_0x32ed42(0x2fd,0x263))){const _0x285c83=_0x22e3ea+'@'+_0x5ea0d0[-0x1fcd+0x399+0x3*0x967];if(!_0x5a61f6['has'](_0x285c83)){_0x11c2a6['add'](_0x285c83);const _0x21ca3a={};_0x21ca3a[_0x32ed42(_0x4b7ac5._0x43fa80,0x27d)]=_0x56a63f,_0x21ca3a[_0x5931c3(0x506,_0x4b7ac5._0x192e8a)+'on']=_0x56934e[-0x1*-0x734+0x3c+-0x76f],_0x21ca3a[_0x5931c3(0x446,0x4bd)+'stem']=_0x2133e3[_0x32ed42(_0x4b7ac5._0x2d9c3b,0x25d)],_0x1fd734['push'](_0x21ca3a);}_0x44f2c0=null;}else{const _0x39f8b3=await _0x2133e3['ckhqi'](fetchWithTimeout,OSV_BATCH_URL,{'method':_0x2133e3[_0x5931c3(_0x4b7ac5._0x2653da,0x56e)],'headers':{'Content-Type':_0x2133e3[_0x5931c3(_0x4b7ac5._0x425745,_0x4b7ac5._0x5c51d8)]},'body':JSON[_0x5931c3(0x55e,_0x4b7ac5._0x2560ac)+_0x5931c3(0x415,0x445)](_0x379dfa)});if(!_0x39f8b3['ok'])throw new Error(_0x32ed42(_0x4b7ac5._0x328449,0x2c2)+_0x5931c3(_0x4b7ac5._0x3d661f,0x536)+_0x32ed42(_0x4b7ac5._0x27c839,_0x4b7ac5._0x2783dc)+'d\x20'+_0x39f8b3[_0x5931c3(_0x4b7ac5._0x26b41e,0x55f)+'s']+':\x20'+_0x39f8b3[_0x32ed42(_0x4b7ac5._0x5df33e,_0x4b7ac5._0x843348)+_0x32ed42(0x201,0x255)]);_0x1e8d77=await _0x39f8b3['json']();}}catch(_0x2bdcfc){if(_0x2133e3[_0x32ed42(_0x4b7ac5._0x1b3d94,0x1cb)]!==_0x32ed42(0x1bf,0x1ed)){if(_0x2bdcfc instanceof DOMException&&_0x2133e3[_0x5931c3(0x4ad,_0x4b7ac5._0xa689f9)](_0x2bdcfc[_0x5931c3(0x45b,_0x4b7ac5._0x516316)],_0x2133e3[_0x5931c3(0x46b,0x4de)])){if(_0x2133e3[_0x5931c3(_0x4b7ac5._0x4f4b4c,_0x4b7ac5._0x3b7c56)]===_0x5931c3(0x453,_0x4b7ac5._0x4bf485))throw new Error(_0x2133e3['fqDuy']);else throw new _0x4b08f5(_0x5931c3(_0x4b7ac5._0x15fc6e,0x4e7)+_0x5931c3(_0x4b7ac5._0x195224,0x46f)+_0x32ed42(_0x4b7ac5._0x2bd18b,0x201)+'kfile'+':\x20'+_0x3abef2+(_0x5931c3(0x5a0,0x51e)+'porte'+_0x32ed42(_0x4b7ac5._0x59f268,_0x4b7ac5._0x14960c))+_0xfc0e0b[_0x32ed42(0x1ff,0x2a3)](_0x5532d0)[_0x5931c3(0x545,_0x4b7ac5._0x541ecf)](',\x20'));}throw new Error('Faile'+_0x32ed42(0x1c1,_0x4b7ac5._0x3cf5c2)+'query'+'\x20OSV.'+_0x5931c3(0x452,_0x4b7ac5._0x4a1ac9)+(_0x2133e3[_0x5931c3(0x625,0x57f)](_0x2bdcfc,Error)?_0x2bdcfc[_0x5931c3(_0x4b7ac5._0x22b1e7,0x51a)+'ge']:_0x2133e3[_0x32ed42(0x1d4,0x1bf)](String,_0x2bdcfc)));}else{if(_0x19115e['start'+'sWith'](_0x32ed42(0x24f,_0x4b7ac5._0x2923de)))return _0x7a6d2d;}}for(let _0x585360=0x420+0x352+-0x772;_0x2133e3[_0x32ed42(0x28f,0x28c)](_0x585360,_0x1e8d77[_0x5931c3(_0x4b7ac5._0x5c28d9,_0x4b7ac5._0x3f7956)+'ts'][_0x5931c3(_0x4b7ac5._0x267672,0x4bc)+'h']);_0x585360++){const _0x49fce3=_0x1e8d77['resul'+'ts'][_0x585360];if(_0x49fce3[_0x32ed42(0x301,0x303)]&&_0x2133e3['GtuQz'](_0x49fce3[_0x32ed42(_0x4b7ac5._0x236c7d,0x303)]['lengt'+'h'],-0x2701+0x2b3*-0x4+0x31cd)){const _0x3b1746=_0x48bc74[_0x585360];for(const _0x1cf045 of _0x49fce3['vulns']){if(_0x2133e3[_0x32ed42(0x20d,_0x4b7ac5._0xad2da9)](_0x2133e3[_0x32ed42(0x1e3,0x1d9)],_0x2133e3['Pkzzv'])){const _0x221f4c={};_0x221f4c[_0x32ed42(0x2b2,_0x4b7ac5._0x202b5b)]=_0x374ac1,_0x221f4c[_0x5931c3(_0x4b7ac5._0x5d540c,_0x4b7ac5._0x469fa0)+'on']=_0x5d68e0,_0x221f4c[_0x5931c3(0x450,_0x4b7ac5._0x150b51)+_0x5931c3(_0x4b7ac5._0x1a6745,0x589)]=_0x32ed42(0x25a,0x304)+'s.io',_0x1b752e['push'](_0x221f4c);}else _0x4d496c[_0x5931c3(_0x4b7ac5._0x1f2952,_0x4b7ac5._0x526fff)](_0x1cf045['id']),_0x1e1f75['set'](_0x1cf045['id'],_0x3b1746);}}}}else for(const [_0x18caa8,_0x4a98df]of _0x324629[_0x5931c3(0x4fc,_0x4b7ac5._0x347047)+'es'](_0x20e412)){const _0x585a40=_0x4a98df;if(_0x585a40[_0x32ed42(_0x4b7ac5._0x59668a,_0x4b7ac5._0x10d32a)+'on']){const _0x1c8098={};_0x1c8098['name']=_0x18caa8,_0x1c8098[_0x32ed42(0x1a8,0x21e)+'on']=_0x585a40['versi'+'on'],_0x1c8098[_0x5931c3(_0x4b7ac5._0x33d10f,_0x4b7ac5._0x3408ae)+_0x5931c3(0x4df,0x589)]=_0x2133e3[_0x32ed42(0x2db,_0x4b7ac5._0x567326)],_0x31640d[_0x5931c3(0x46d,_0x4b7ac5._0x46c972)](_0x1c8098);}_0x585a40['depen'+_0x5931c3(0x47f,_0x4b7ac5._0x117d3d)+'es']&&_0x2133e3[_0x5931c3(_0x4b7ac5._0x171562,_0x4b7ac5._0x10ebb4)](_0x4cc65b,_0x585a40[_0x5931c3(_0x4b7ac5._0x409380,0x51f)+_0x5931c3(_0x4b7ac5._0x4bf719,0x43b)+'es']);}}if(_0x2133e3[_0x32ed42(0x26b,0x2c0)](_0x4d496c[_0x32ed42(0x1cd,0x238)],0xa45*0x2+0x11ab+-0x2635*0x1))return[];const _0x290af8=Array[_0x5931c3(0x582,_0x4b7ac5._0x7c7f55)](_0x4d496c),_0x2d0920=[];for(let _0x4554a3=0x1*-0x1f+0xbb8+-0xb99*0x1;_0x2133e3['aMMWa'](_0x4554a3,_0x290af8[_0x32ed42(0x23b,_0x4b7ac5._0x1f58d6)+'h']);_0x4554a3+=MAX_CONCURRENT_FETCHES){const _0x517191=_0x290af8[_0x32ed42(0x1ba,_0x4b7ac5._0x11e0fc)](_0x4554a3,_0x4554a3+MAX_CONCURRENT_FETCHES),_0x2224b0=await Promise[_0x32ed42(0x1d6,_0x4b7ac5._0x4b6565)+_0x5931c3(0x4dc,0x479)](_0x517191[_0x5931c3(0x5df,_0x4b7ac5._0x4d516a)](async _0x37d23c=>{function _0x72eb90(_0x40e136,_0xf7ef85){return _0x5931c3(_0xf7ef85,_0x40e136- -0xbc);}if(vulnCache['has'](_0x37d23c))return vulnCache['get'](_0x37d23c);function _0x3cd049(_0x13d686,_0x202f09){return _0x32ed42(_0x202f09,_0x13d686- -0x2db);}const _0x104f62=await _0x2133e3['qNHky'](fetchWithTimeout,OSV_VULN_URL+'/'+_0x37d23c);if(!_0x104f62['ok'])return null;const _0x64e722=await _0x104f62[_0x3cd049(-0x83,_0x26542e._0x33ee28)]();return vulnCache[_0x72eb90(0x3db,_0x26542e._0x3fc516)](_0x37d23c,_0x64e722),_0x64e722;}));for(const _0x101d53 of _0x2224b0){if(_0x2133e3[_0x5931c3(_0x4b7ac5._0x4d21a1,_0x4b7ac5._0x14b48d)]===_0x2133e3['GRjTt'])_0x2133e3[_0x5931c3(0x4ab,_0x4b7ac5._0x2038fb)](_0x101d53['statu'+'s'],_0x2133e3['epwvv'])&&_0x101d53[_0x32ed42(_0x4b7ac5._0x2fca2e,_0x4b7ac5._0x38a3b8)]&&_0x2d0920[_0x32ed42(0x271,_0x4b7ac5._0x1d9080)](_0x101d53[_0x5931c3(_0x4b7ac5._0x201ccc,_0x4b7ac5._0x80173d)]);else for(const _0x4bf767 of _0x56a73a[_0x5931c3(_0x4b7ac5._0x482480,_0x4b7ac5._0x467bbf)+'s']){if(_0x4bf767[_0x5931c3(0x57c,0x504)])return _0x4bf767[_0x5931c3(_0x4b7ac5._0x7303f,0x504)];}}}for(const _0x196530 of _0x2d0920){if(_0x2133e3[_0x32ed42(0x273,0x1e7)](_0x5931c3(0x4f0,0x544),_0x2133e3[_0x32ed42(0x22d,0x1c0)])){const _0x22ac1d=_0x1e1f75['get'](_0x196530['id']);if(!_0x22ac1d)continue;const _0x5019e7=_0x2133e3[_0x32ed42(0x22e,_0x4b7ac5._0x2fdaaf)](mapOsvSeverity,_0x196530),_0x3e55a0=_0x2133e3[_0x32ed42(0x2e5,0x2e5)](extractFixedVersion,_0x196530,_0x22ac1d),_0x3946ae=_0x2133e3['pgGiC'](extractAdvisoryUrl,_0x196530),_0x30ff9d=_0x196530['alias'+'es']??[],_0x158b64=_0x2133e3['hUfBK'](extractCwe,_0x196530);_0x2f4dbf['push']({'id':_0x196530['id'],'severity':_0x5019e7,'cwe':_0x158b64,'title':_0x196530['summa'+'ry']??_0x32ed42(_0x4b7ac5._0x481d37,0x2fe)+_0x32ed42(0x27c,_0x4b7ac5._0x2a509e)+_0x32ed42(_0x4b7ac5._0xd1c1b7,_0x4b7ac5._0x5d6904)+'n\x20'+_0x22ac1d[_0x5931c3(_0x4b7ac5._0x306032,_0x4b7ac5._0x4f2994)],'description':_0x196530[_0x32ed42(_0x4b7ac5._0x139cc4,_0x4b7ac5._0x484069)+'ls']?.['slice'](0x1*-0x1723+0x4f*0x25+0xbb8,-0x1029+-0x8d*-0x3b+-0xe62)??_0x196530[_0x32ed42(_0x4b7ac5._0x4c1e76,0x230)+'ry']??_0x2133e3[_0x5931c3(0x524,0x48d)],'packageName':_0x22ac1d['name'],'installedVersion':_0x22ac1d[_0x32ed42(0x1eb,_0x4b7ac5._0x10d32a)+'on'],'fixedVersion':_0x3e55a0,'advisoryUrl':_0x3946ae,'aliases':_0x30ff9d});}else for(const _0x48c275 of _0x401c0a[_0x5931c3(_0x4b7ac5._0x4731ba,_0x4b7ac5._0x371834)+'s']){for(const _0xb77157 of _0x48c275[_0x32ed42(_0x4b7ac5._0x463ff6,0x205)+'s']){if(_0xb77157[_0x5931c3(_0x4b7ac5._0x19d820,_0x4b7ac5._0x1d4a08)])return _0xb77157[_0x5931c3(_0x4b7ac5._0x5a0ec7,0x504)];}}}const _0x1e348a={};_0x1e348a[_0x5931c3(_0x4b7ac5._0x435eb0,_0x4b7ac5._0x1642f2)+'cal']=0x0;function _0x5931c3(_0x2669e5,_0x58f549){return _0x23f211(_0x58f549-_0x3b703a._0x3552f7,_0x2669e5);}_0x1e348a['high']=0x1,_0x1e348a[_0x32ed42(_0x4b7ac5._0x13508,_0x4b7ac5._0x352ac4)+'m']=0x2,_0x1e348a[_0x32ed42(_0x4b7ac5._0x472bde,0x295)]=0x3,_0x1e348a[_0x32ed42(0x25c,_0x4b7ac5._0x2f7c04)]=0x4;const _0xc1fca5=_0x1e348a;return _0x2f4dbf[_0x32ed42(0x2a6,0x1fe)]((_0x567357,_0x3c7424)=>_0xc1fca5[_0x567357[_0x32ed42(0x1e5,0x1c8)+_0x5931c3(0x572,0x534)]]-_0xc1fca5[_0x3c7424['sever'+_0x5931c3(0x5c4,0x534)]]),_0x2f4dbf;}function mapOsvSeverity(_0x11ac6c){const _0x141336={_0x3b2511:0x552,_0x45600f:0x4fd,_0x1e45e2:0x51a,_0x1660f9:0x52c,_0x484fee:0x4dc,_0x155c3a:0x54f,_0x429a60:0x4bc,_0x4fb3b2:0x438,_0x33387a:0x462,_0x4fab1b:0x5da,_0x536945:0x557,_0x4c9271:0x4a5,_0x27d9fe:0x532,_0x26629a:0x4e2,_0x112714:0x439,_0x368f04:0x415,_0x3adce4:0x41e,_0x1115b3:0x594,_0x15bd97:0x561,_0x19cdc1:0x464,_0x23d375:0x5cb,_0x39d976:0x53c,_0xb44015:0x4b8,_0x2aaad2:0x4d4,_0x22a625:0x444,_0x32bfc9:0x482,_0x35c736:0x4d5,_0x2d1433:0x55a,_0x58cb79:0x4ac,_0x50db15:0x4a5,_0x4a444b:0x589,_0x2248af:0x4d1,_0x586cc8:0x4b9,_0x228bb2:0x641,_0x3cb30d:0x5d3,_0x2e3003:0x45c,_0x2e718f:0x481,_0x1c81eb:0x604,_0x212c5d:0x4dc,_0x5d746a:0x4bd,_0x3311d5:0x4f6,_0x262c0b:0x52e,_0xb7c0f1:0x635,_0x1a5d8f:0x4fa,_0x35bc46:0x442,_0x8489de:0x552,_0x1f8818:0x49a,_0x31e856:0x41e,_0x3d1fe4:0x577,_0x60afc4:0x3e0,_0x2c2cbe:0x3fb,_0x453d6f:0x528,_0x14890b:0x579,_0x30d2f0:0x4b4,_0x2535e4:0x452,_0x4425d4:0x3ac,_0x5d47db:0x4ca,_0x5b7dcc:0x4f4,_0x3df150:0x606,_0x3206a5:0x56b,_0x335141:0x3b1,_0x3526ef:0x414,_0x17503:0x5a7,_0x1f4a42:0x5c1,_0x36ca0e:0x4de,_0x17aa85:0x477,_0x3d0c1f:0x59f,_0x4d32ca:0x5d3,_0x201a47:0x456},_0x264722={_0x557011:0xa4},_0x26d88f={'EWkGQ':_0x59bf6c(0x426,0x410)+'V3','aKVDf':function(_0x2b78a3,_0x30df78){return _0x2b78a3===_0x30df78;},'SYcGW':'CVSS_'+'V2','XXOZF':function(_0x4351c8,_0x31b9cb){return _0x4351c8(_0x31b9cb);},'vMBoP':function(_0x164bfa,_0x5460b6){return _0x164bfa!==_0x5460b6;},'IImNu':function(_0x3f4797,_0xcb0570){return _0x3f4797>=_0xcb0570;},'mUqPC':_0x59bf6c(0x603,_0x141336._0x3b2511)+'cal','XyZUN':function(_0x3f71f9,_0x812caa){return _0x3f71f9>=_0x812caa;},'YbGjD':'high','lDLOs':_0x3fc650(_0x141336._0x45600f,_0x141336._0x1e45e2)+'m','EXmLu':_0x3fc650(0x537,0x56d),'OBXya':_0x3fc650(_0x141336._0x1660f9,0x5bf)+_0x3fc650(0x45f,0x4bb)+']','dFJMd':function(_0x375e77,_0x53bb51){return _0x375e77&&_0x53bb51;},'hstZp':function(_0x3f38b7,_0x1adb35){return _0x3f38b7(_0x1adb35);},'XXuBO':function(_0xc5c544,_0x3cda39){return _0xc5c544===_0x3cda39;},'hPGHy':'PuDeA','iUcaS':function(_0xfd6237,_0x51a214){return _0xfd6237===_0x51a214;},'lDNIy':function(_0x872551,_0x3a2b54){return _0x872551!==_0x3a2b54;},'rNdNi':function(_0x3b1b43,_0x7a970d){return _0x3b1b43!==_0x7a970d;},'amgZa':function(_0x226adf,_0x379d34){return _0x226adf!==_0x379d34;},'iGrTI':'txfJT','rZhpp':'aUcOZ','tzwQp':function(_0x16f968,_0x125f56){return _0x16f968>=_0x125f56;},'wIaPU':function(_0x450ff9,_0x43d18a){return _0x450ff9===_0x43d18a;}};function _0x3fc650(_0x5108cd,_0x1eda51){return _0x8e3072(_0x1eda51- -0xc,_0x5108cd);}if(_0x11ac6c[_0x3fc650(0x40b,0x4a0)+_0x3fc650(0x5a3,0x58c)])for(const _0x5c601b of _0x11ac6c[_0x59bf6c(0x3e8,0x408)+_0x59bf6c(_0x141336._0x484fee,0x4f4)]){if(_0x26d88f[_0x3fc650(0x55e,_0x141336._0x155c3a)](_0x26d88f[_0x3fc650(_0x141336._0x429a60,0x4fa)],_0x26d88f[_0x59bf6c(_0x141336._0x4fb3b2,_0x141336._0x33387a)])){if(_0x26d88f['iUcaS'](_0x5c601b[_0x59bf6c(_0x141336._0x4fab1b,0x532)],_0x26d88f[_0x3fc650(_0x141336._0x536945,_0x141336._0x4c9271)])||_0x5c601b[_0x59bf6c(0x58a,_0x141336._0x27d9fe)]===_0x26d88f[_0x3fc650(_0x141336._0x26629a,0x4de)]){if(_0x26d88f[_0x59bf6c(0x3e3,0x461)](_0x59bf6c(_0x141336._0x112714,_0x141336._0x368f04),'iaMBq')){const _0x7ce86d=_0x26d88f[_0x59bf6c(0x40e,_0x141336._0x3adce4)](parseCvssScore,_0x5c601b[_0x3fc650(_0x141336._0x1115b3,0x569)]);if(_0x26d88f[_0x59bf6c(_0x141336._0x15bd97,0x4c7)](_0x7ce86d,null)){if(_0x26d88f['amgZa'](_0x26d88f[_0x59bf6c(0x49e,_0x141336._0x19cdc1)],_0x26d88f[_0x59bf6c(_0x141336._0x23d375,_0x141336._0x39d976)])){if(_0x26d88f[_0x59bf6c(0x41c,0x435)](_0x7ce86d,0x2548+0x3c5+0x96*-0x46))return _0x26d88f[_0x3fc650(0x4fd,_0x141336._0xb44015)];if(_0x7ce86d>=0x202e+-0xb02+0x1525*-0x1)return _0x26d88f[_0x59bf6c(_0x141336._0x2aaad2,_0x141336._0x22a625)];if(_0x26d88f[_0x3fc650(0x577,0x4ed)](_0x7ce86d,-0x14d7*0x1+-0x13*0x6a+0x1cb9))return _0x59bf6c(0x44d,_0x141336._0x32bfc9)+'m';return _0x59bf6c(_0x141336._0x4c9271,_0x141336._0x35c736);}else for(const _0x1b531d of _0x13d4b1[_0x3fc650(0x4ef,0x4a0)+_0x59bf6c(_0x141336._0x2d1433,0x4f4)]){if(_0x1b531d['type']===_0x26d88f[_0x3fc650(_0x141336._0x58cb79,_0x141336._0x50db15)]||_0x26d88f[_0x3fc650(_0x141336._0x4a444b,0x5a2)](_0x1b531d[_0x3fc650(0x573,0x5ca)],_0x26d88f['SYcGW'])){const _0xc87c6c=_0x26d88f[_0x59bf6c(0x51f,0x516)](_0x4ef863,_0x1b531d[_0x59bf6c(0x48f,_0x141336._0x2248af)]);if(_0x26d88f['vMBoP'](_0xc87c6c,null)){if(_0x26d88f[_0x3fc650(_0x141336._0x586cc8,0x50c)](_0xc87c6c,-0x1*-0x13f0+-0xaca+-0x91d))return _0x26d88f[_0x3fc650(0x4b0,0x4b8)];if(_0x26d88f['XyZUN'](_0xc87c6c,-0xa9d+0x6*-0x25b+0x18c6))return _0x26d88f[_0x59bf6c(0x3ba,0x444)];if(_0xc87c6c>=-0x5*-0x767+-0x7a2*0x1+0x1*-0x1d5d)return _0x26d88f[_0x3fc650(_0x141336._0x228bb2,_0x141336._0x3cb30d)];return _0x26d88f[_0x59bf6c(_0x141336._0x2e3003,0x497)];}}}}}else{const _0x500c57=_0x3c0d16['trim']();if(_0x500c57===_0x26d88f[_0x59bf6c(0x49f,_0x141336._0x2e718f)]){if(_0x26d88f[_0x3fc650(_0x141336._0x1c81eb,0x5b8)](_0x59f97f,_0x5aa0f0)){const _0x4e0fe8={};_0x4e0fe8[_0x59bf6c(_0x141336._0x212c5d,_0x141336._0x5d746a)]=_0x3108c8,_0x4e0fe8[_0x3fc650(0x49d,_0x141336._0x3311d5)+'on']=_0x57a39a,_0x4e0fe8[_0x59bf6c(_0x141336._0x262c0b,0x47d)+'stem']=_0x3fc650(_0x141336._0xb7c0f1,0x5dc)+_0x59bf6c(0x534,_0x141336._0x1a5d8f),_0x28513c[_0x59bf6c(0x435,_0x141336._0x35bc46)](_0x4e0fe8);}_0xf62542=null,_0xf05fe5=null;}const _0x5c042f=/^name\s*=\s*"([^"]+)"/[_0x59bf6c(_0x141336._0x8489de,0x55c)](_0x500c57);if(_0x5c042f)_0x25ecf2=_0x5c042f[0x1*0xd42+0x11*0x143+0x4*-0x8ad];const _0x3e27f8=/^version\s*=\s*"([^"]+)"/[_0x3fc650(0x5b1,0x5f4)](_0x500c57);if(_0x3e27f8)_0x5dfa89=_0x3e27f8[-0x17*-0xbf+0x8f*0x33+-0x30b*0xf];}}}else _0x26d88f[_0x59bf6c(_0x141336._0x1f8818,_0x141336._0x31e856)](_0x5c0efe,_0x1e371a[_0x3fc650(0x5e3,_0x141336._0x3d1fe4)+_0x59bf6c(_0x141336._0x60afc4,_0x141336._0x2c2cbe)+'es']);}function _0x59bf6c(_0x119129,_0x1bb134){return _0x8e3072(_0x1bb134- -_0x264722._0x557011,_0x119129);}if(_0x11ac6c[_0x3fc650(_0x141336._0x453d6f,_0x141336._0x14890b)+_0x59bf6c(_0x141336._0x30d2f0,_0x141336._0x2535e4)+'pecif'+'ic']?.['sever'+'ity']){const _0x15c4d2=_0x11ac6c[_0x3fc650(0x5d6,_0x141336._0x14890b)+_0x59bf6c(_0x141336._0x4425d4,_0x141336._0x2535e4)+_0x59bf6c(0x57f,0x510)+'ic']['sever'+_0x59bf6c(_0x141336._0x5d47db,_0x141336._0x5b7dcc)][_0x3fc650(_0x141336._0x3df150,0x5d8)+_0x3fc650(0x518,_0x141336._0x3206a5)+'e']();if(_0x26d88f[_0x59bf6c(0x5a0,0x50a)](_0x15c4d2,_0x26d88f[_0x3fc650(0x430,0x4b8)]))return _0x3fc650(0x653,0x5ea)+_0x59bf6c(_0x141336._0x335141,_0x141336._0x3526ef);if(_0x26d88f[_0x3fc650(0x571,0x4ff)](_0x15c4d2,_0x59bf6c(_0x141336._0x17503,0x542)))return _0x3fc650(0x550,0x5da);if(_0x15c4d2===_0x3fc650(0x624,0x5c8)+_0x3fc650(0x58a,_0x141336._0x1f4a42)||_0x26d88f[_0x59bf6c(_0x141336._0x36ca0e,_0x141336._0x17aa85)](_0x15c4d2,_0x26d88f['lDLOs']))return _0x26d88f[_0x3fc650(_0x141336._0x3d0c1f,_0x141336._0x4d32ca)];if(_0x15c4d2===_0x26d88f['EXmLu'])return _0x26d88f[_0x59bf6c(_0x141336._0x201a47,0x497)];}return _0x3fc650(_0x141336._0x212c5d,0x51a)+'m';}function _0x295d(){const _0x26390e=['AgLNAa','DNvSBNm','y3jHDgu','zNvjq0m','CMvMzxi','zgv0ywK','s0THrgm','C3rLBq','BNbT','y3noBe8','yufKzMq','q2fYz28','z28UC3u','AxnbCNi','tfjuzfm','y2f0Aw8','y3jPDgK','B0X6uvy','CgfJA2e','zwn0Aw8','C3bSAxq','uuzhr1G','BwfW','wM9eq2q','C3rYAw4','DgLVBIa','zxHLyW','yMvSr2i','vxzSCe0','zgvUy2K','zxjHyMK','yxzHAwW','CfzAzeS','Cu5iA3K','DhDjDe8','ndi5EwfTzffs','Bvvxrfq','t1LfvNG','otq4ngDrDMLotG','z2LMEq','C3rHCNq','DgnO','C2v2zxi','rLDdEhC','mtv1Bunnuem','tK5qB0K','BgXLza','rvDRr1e','suLRyK4','DJeVCxu','q1ztu18','uvzfuu8','Bunfv1O','CMvWBge','y2fS','CfDhDMe','EwnzBfy','A2zPBgu','D1D2EKq','ugT6ENy','zgvMyxu','uw5hEhu','zcb0BYa','sM1nyMe','Ahn0wNa','quPxtLy','BvvXuem','zNvSzMK','ugLWzMK','A2fNzv0','zLvzwLe','DgvK','C2XPy2u','vMDzvKK','CgfYC2u','DhDVCMS','s0X6CKG','t29SEfK','rgvuBKq','sw5jBMK','t1jz','Cg9YDgu','Avnks0i','qLHIAha','rNzosKK','CMfUz2u','wezMzfG','whLAvu4','AKLtt0G','oI8VB3m','oI8Vyxa','DhrSzwq','Axr5igK','rLvWAfK','CMfIAwW','sg55zxm','C29YDa','DMzfBuK','rhHQBva','zcbSB2m','ChvZAa','uNvIEuC','wwjhAKq','zxzLBNq','u1LJr1C','tLHjvNy','C2LNBMe','C2vYlMW','twfJzhu','ChvIC3a','Bg9JAY4','v2jWue4','Cg5WBs0','z2LZDa','C2XNqxu','rM1otfy','yxnLx3m','Ahr0Chm','mdm1','DhP3uxa','ywrK','C2v0','B2nR','lIbdAgu','BvvYBwW','uhv1wxe','zNzSwuW','sgfXyM0','DMvYC2K','lMXVy2S','DxjStgK','BerosxK','AfbhshK','ywXSu2u','AuDYveK','r210Bfy','ie9tvI4','D0LHufu','s3PRD1K','ue5OCey','Ew9uwwq','z3HMqLm','zgv2oIa','zwDvqui','Aw5MBW','ignVBM4','C3vTBwe','shj1vuG','A1f0t3i','zxfQAeS','suLTtNu','q1Dflte','rMLMCgW','AvvJyvm','C2L6zq','sKf2q1K','AfbHwMK','BMzHrhq','BgvUz3q','zwnVC3K','zNvKCfq','wKvNvui','z2vZlwq','t0jyEwe','BwvKAxu','we1mz2i','ufbSBue','DhjPBq','tgrrEuq','Chr1C3K','z2vZoG','wKTJtuS','rxjYB3i','r2fvqMC','yMDsCvO','zLPQDfG','DuzcAfK','yu1nv2e','C0HtsLu','BhrWyKi','zw50CMK','Du9Puwy','su1Vu2K','C1rLEhq','q3D3rvO','rvHTthu','ANnVBG','ig91Dca','wgLbDu8','rePNChG','wfzOvxK','tKfmAfi','u1b2CfC','uw1bvhO','DfbIwve','vgTdCLy','CMTeAw0','A3LfsfC','zw5Jzxm','D2HSsu0','kdeWCYK','vw5ZDxa','tMfhu1y','t2zVrKS','s0Hpu3K','sNzSzhC','CMHNzKC','DMvK','BwL4lMW','qNbsuvK','Aw1mAK8','mtrJBfDmyvK','vLzLCKK','DgLTzwq','DMfSDwu','q1Dflq','mtCYndu0nZbyAg1QrKO','wfH1qK8','uer6zMy','uhLqsq','DwvZDca','mZKWnZyYnMfuBejgsW','zhP4qKu','BMfTzq','zxyGqva','ntCWody4uvf5s3vJ','vuXLEvC','BurVBNG','DxjS','C29U','zML4zwq','Bg9JAW','DxnLtLq','CK5KtMK','C0rsuve','DxiGBMu','zdOG','D0nqA0q','C0Hrzum','tM8Gzgu','qKTzBuO','DxrMltG','CNPVzeK','C2nVCMu','CKzdB2O','zxjdyxm','qNf0y1O','Bg93','zgv2zwW','zNjVBq','C1DPDgG','B2nRlMO','BwvZC2e','mJi1odqYnfHdshPVtG','A0vuu3i','uKveAuW','lIbtDxa','zgvWzw4','mJy3ntCYzvzjsLnq','zgf0ywi','ChLzDue','A2v5CW','sNj6rfi','y0vWCfG','C1jNA0G','suDRBgC','qwjVCNq','Ae9UA1a','ELLRuw0','ywzMzwm','D1fQyLC','rwvis0i','ugfJA2e','tNvhzxq','z2vZlMW','zwvUDeG','qMz0zuS','D1Dqu20','Axr5','y2SGEw8','ueKGCMu','s2zetMe','CMH6Bg8','z3jHzgW','CY5PBW','twf2zw4','thDiv2u','z2vZ','sK9RBLu','AM9PBG','CgDjtue','z2uTBg8','t1nwiee','DI5Kzxy','q3fvELC','sLfPBfq','BMrOtwS','v3zNsu0','vvv4tMK','lMrLDI8','yuTwrgy','BguUBg8','DhjPBuu','AwXVCuy','C2nYAxa','DuHtuwe','CgvJAwy','zxj5yMe','rwnIsMe','DhmUDhG','s2P2CKO','tKroz0C','wfHpwKy','vgjiwhi','zs5SB2m','r21MwNu','t1nwlMq','r2vTzMK','CuH6zMW','tLHvC0m','y2SUANm','C3rHDhu','zezktwq','DhvYBMu','AvHiAfC','CgXHv2m','ssbYzxe','sgrmwee','CMvZB2W','w1TWywm','CMvTzw4','yxrL','DM9LAhy','rMfPBgu','As5VC3y','vw1ZtLi','rxv5vha','yxbWBgK','Bw9Kzxi','rhPVAuu','DhLWzq','tfvLEey','DK9nwNe','EuD5tMu','zKTeugq','EwfYBI4','r1jQvhq','ywXPyxm','CMvZDwW','Bermt3m','CLPOCha','mteWndm2odHNvgXmuK4','vNvSBMu','thfjvLq','Dg9mB3C','zw1Z'];_0x295d=function(){return _0x26390e;};return _0x295d();}function parseCvssScore(_0x56eda7){const _0x380db3={_0x208224:0x1fb,_0x49d5f9:0x1a3,_0x1303a2:0x13f,_0x82f080:0x14d};function _0x4c0c2f(_0x16c1dd,_0x55af97){return _0x23f211(_0x55af97-0x123,_0x16c1dd);}function _0x5ae51a(_0x445bd6,_0xfecfa7){return _0x23f211(_0x445bd6-0x2c6,_0xfecfa7);}const _0x539f44={'iloqF':function(_0x72a5d,_0x1df7b8){return _0x72a5d(_0x1df7b8);},'vfEmI':function(_0x385f44,_0xb7d3ab){return _0x385f44>=_0xb7d3ab;},'PDzff':function(_0x332bfe,_0x11260d){return _0x332bfe<=_0x11260d;}},_0x5af4c4=_0x539f44[_0x5ae51a(0x1db,_0x380db3._0x208224)](parseFloat,_0x56eda7);if(!_0x539f44[_0x5ae51a(0x1db,_0x380db3._0x49d5f9)](isNaN,_0x5af4c4)&&_0x539f44[_0x5ae51a(0x10d,_0x380db3._0x1303a2)](_0x5af4c4,-0x240d+-0x2139+-0x22a3*-0x2)&&_0x539f44[_0x5ae51a(0x186,_0x380db3._0x82f080)](_0x5af4c4,0x1*-0xc6b+0x2635*0x1+-0x19c0))return _0x5af4c4;return null;}function extractFixedVersion(_0x130771,_0x58112c){const _0x515b2d={_0x8dfa44:0x3cf,_0x268017:0x291,_0x4b56fd:0x2c7,_0x30019d:0x26e,_0x25c164:0x2a4,_0x322b22:0x238,_0x4f3145:0x2ca,_0x80703a:0x38e,_0x3bd3c1:0x198,_0x209a61:0x25b,_0x5606b4:0x329,_0x4f12c6:0x4d1,_0x3bdf9a:0x277,_0xad48aa:0x2da,_0x31cc74:0x328,_0x37569a:0x371,_0x1d72a1:0x36a,_0x542e60:0x2cc,_0x4a8ccf:0x35c,_0x130c10:0x366,_0x31c64b:0x26c,_0x59155e:0x254,_0x4fed35:0x3bb,_0x1ae8d1:0x330,_0xaddb2a:0x238,_0x187e44:0x1b1,_0x120861:0x3a3,_0x4ee435:0x34f,_0x24edcf:0x230,_0x175e2a:0x440,_0x3b5be4:0x39c,_0x3c827a:0x3e8,_0x5e16ea:0x39c,_0x3b1f5b:0x29a,_0x3867ce:0x366,_0x29815f:0x3a4,_0xce9e97:0x2d1,_0x2033e7:0x321},_0x560272={_0x5ff690:0x415},_0x4819be={};function _0x51bcc0(_0x3869de,_0x492548){return _0x23f211(_0x3869de-_0x560272._0x5ff690,_0x492548);}function _0x47c92b(_0x53ea0d,_0x4d62fd){return _0x8e3072(_0x4d62fd- -0x1c5,_0x53ea0d);}_0x4819be['BKYmJ']=_0x47c92b(_0x515b2d._0x8dfa44,0x3cd)+_0x47c92b(_0x515b2d._0x268017,0x32e),_0x4819be[_0x51bcc0(0x25a,_0x515b2d._0x4b56fd)]=function(_0x5494e7,_0x3789ad){return _0x5494e7===_0x3789ad;},_0x4819be['SSHSe']=function(_0xc86783,_0x332161){return _0xc86783!==_0x332161;},_0x4819be[_0x51bcc0(_0x515b2d._0x30019d,0x2bc)]=_0x51bcc0(_0x515b2d._0x25c164,0x292),_0x4819be[_0x51bcc0(_0x515b2d._0x322b22,_0x515b2d._0x4f3145)]=_0x47c92b(0x3c3,0x391);const _0x147b8c=_0x4819be;if(!_0x130771[_0x47c92b(_0x515b2d._0x80703a,0x3ca)+_0x51bcc0(0x242,_0x515b2d._0x3bd3c1)])return null;for(const _0x28aa5c of _0x130771['affec'+_0x47c92b(_0x515b2d._0x209a61,0x304)]){if(_0x28aa5c[_0x51bcc0(0x371,_0x515b2d._0x5606b4)+'ge']&&_0x28aa5c[_0x47c92b(_0x515b2d._0x4f12c6,0x433)+'ge'][_0x51bcc0(0x2da,_0x515b2d._0x3bdf9a)]===_0x58112c[_0x51bcc0(_0x515b2d._0xad48aa,_0x515b2d._0x31cc74)]&&_0x147b8c['Hnyes'](_0x28aa5c[_0x51bcc0(_0x515b2d._0x37569a,0x326)+'ge']['ecosy'+_0x51bcc0(0x366,_0x515b2d._0x1d72a1)],_0x58112c[_0x47c92b(_0x515b2d._0x542e60,_0x515b2d._0x4a8ccf)+_0x51bcc0(_0x515b2d._0x130c10,0x2ce)])&&_0x28aa5c[_0x47c92b(0x33a,0x312)+'s'])for(const _0x2fa94d of _0x28aa5c[_0x47c92b(_0x515b2d._0x31c64b,0x312)+'s']){for(const _0x21183e of _0x2fa94d[_0x51bcc0(0x262,_0x515b2d._0x59155e)+'s']){if(_0x147b8c['SSHSe'](_0x147b8c[_0x47c92b(_0x515b2d._0x4fed35,_0x515b2d._0x1ae8d1)],_0x147b8c[_0x51bcc0(_0x515b2d._0xaddb2a,_0x515b2d._0x187e44)])){if(_0x21183e[_0x47c92b(0x392,_0x515b2d._0x120861)])return _0x21183e['fixed'];}else{if(_0x356f30['name']&&_0x1d7af8['versi'+'on']){const _0x1eee0f=_0x46709c[_0x47c92b(_0x515b2d._0x4ee435,0x33d)+'on'][_0x51bcc0(_0x515b2d._0x24edcf,0x2a1)+'ce'](/^v/,''),_0x227948={};_0x227948[_0x47c92b(_0x515b2d._0x175e2a,_0x515b2d._0x3b5be4)]=_0xe95c64[_0x47c92b(_0x515b2d._0x3c827a,_0x515b2d._0x5e16ea)],_0x227948['versi'+'on']=_0x1eee0f,_0x227948[_0x51bcc0(_0x515b2d._0x3b1f5b,0x223)+_0x51bcc0(_0x515b2d._0x3867ce,_0x515b2d._0x29815f)]=_0x147b8c[_0x47c92b(0x303,0x3ad)],_0x34dae6[_0x47c92b(_0x515b2d._0xce9e97,_0x515b2d._0x2033e7)](_0x227948);}}}}}return null;}function extractAdvisoryUrl(_0x29f560){const _0xf42fd2={_0x4aee3c:0x18c,_0x256748:0x50,_0x25552e:0x13,_0x53d843:0xb8,_0x44e2de:0xd6,_0x12e776:0x1cd,_0x1e9b99:0x101,_0xdfce0b:0x149,_0x3a50b7:0x1da,_0x319f2f:0x1e7,_0x135793:0x14f,_0x3ae0cf:0x130,_0x510231:0x44,_0x375eb1:0x5a,_0x15cb01:0xd6,_0x5bd2ac:0xb1,_0x5ee652:0xd5,_0x2b64e5:0xad,_0x1a6691:0x27b,_0x1eb3cb:0xd6,_0x234a36:0x26,_0x529dc4:0x146,_0x443df8:0x1aa,_0x202d8a:0xe0,_0x3f5013:0xcf,_0xa5c14a:0x3f,_0x493e99:0x193,_0x1b0fa5:0x206,_0x272a7f:0x5d,_0x234fb1:0x1b5,_0x55d22d:0x10c,_0x1c8578:0xa6},_0x2a5318={};_0x2a5318[_0x4aadf6(-0x1ab,-_0xf42fd2._0x4aee3c)]='CWE-',_0x2a5318[_0x41d911(_0xf42fd2._0x256748,-_0xf42fd2._0x25552e)]=function(_0x200848,_0x5b0861){return _0x200848!==_0x5b0861;},_0x2a5318[_0x41d911(_0xf42fd2._0x53d843,_0xf42fd2._0x44e2de)]=_0x4aadf6(-0x1d7,-0x136),_0x2a5318[_0x4aadf6(-_0xf42fd2._0x12e776,-0x216)]=function(_0x288b69,_0x1d4104){return _0x288b69===_0x1d4104;};function _0x4aadf6(_0x459aed,_0x4c0558){return _0x23f211(_0x459aed- -0x10,_0x4c0558);}_0x2a5318[_0x4aadf6(-_0xf42fd2._0x1e9b99,-_0xf42fd2._0xdfce0b)]='ADVIS'+_0x4aadf6(-_0xf42fd2._0x3a50b7,-_0xf42fd2._0x319f2f),_0x2a5318['JmMba']='WEB';const _0x14c9c1=_0x2a5318;if(_0x29f560[_0x41d911(_0xf42fd2._0x135793,0x1fd)+'ences']){if(_0x14c9c1['NXIVv'](_0x14c9c1[_0x41d911(_0xf42fd2._0x53d843,0x160)],'nJwAi')){for(const _0x41d05f of _0x29f560['refer'+_0x4aadf6(-0x164,-_0xf42fd2._0x3ae0cf)]){if(_0x14c9c1[_0x41d911(_0xf42fd2._0x510231,-_0xf42fd2._0x375eb1)](_0x41d05f[_0x4aadf6(-_0xf42fd2._0x15cb01,-_0xf42fd2._0x5bd2ac)],_0x14c9c1['WvgIM']))return _0x41d05f[_0x4aadf6(-0x146,-0xbb)];}for(const _0x523e8b of _0x29f560[_0x4aadf6(-0xc2,-_0xf42fd2._0x5ee652)+_0x41d911(_0xf42fd2._0x2b64e5,0x49)]){if(_0x14c9c1[_0x4aadf6(-0x1cd,-_0xf42fd2._0x1a6691)](_0x523e8b[_0x4aadf6(-_0xf42fd2._0x1eb3cb,-0xee)],_0x14c9c1[_0x41d911(_0xf42fd2._0x234a36,0xd7)]))return _0x523e8b[_0x4aadf6(-_0xf42fd2._0x529dc4,-_0xf42fd2._0x443df8)];}}else{if(_0x567fe6[_0x41d911(0x142,_0xf42fd2._0x202d8a)+'es'])for(const _0x4df232 of _0x3bb12f[_0x4aadf6(-_0xf42fd2._0x3f5013,-0xfa)+'es']){if(_0x4df232['start'+_0x41d911(0xe1,0x5a)](_0x14c9c1[_0x41d911(0x66,-_0xf42fd2._0xa5c14a)]))return _0x4df232;}return _0x4aadf6(-_0xf42fd2._0x493e99,-_0xf42fd2._0x1b0fa5)+_0x41d911(_0xf42fd2._0x272a7f,-_0xf42fd2._0xa5c14a);}}function _0x41d911(_0x1b78c0,_0x1c499b){return _0x23f211(_0x1b78c0-0x201,_0x1c499b);}return _0x4aadf6(-_0xf42fd2._0x234fb1,-0x20f)+_0x4aadf6(-0x1d1,-0x166)+_0x41d911(_0xf42fd2._0x55d22d,0x118)+'/vuln'+_0x41d911(0x5,_0xf42fd2._0x1c8578)+'lity/'+_0x29f560['id'];}function extractCwe(_0x55f1df){const _0x1cfe6e={_0x54390f:0xe1,_0x380ed1:0xc1,_0x40ac73:0x6e0,_0x1cfe8f:0xa,_0x3671b8:0xf4,_0x126277:0x44},_0x1fa28e={_0x42e22b:0x1e8},_0x32e139={_0x1ab4c7:0xcb},_0x441697={};function _0x29212e(_0x20dae3,_0x78c16c){return _0x8e3072(_0x20dae3-_0x32e139._0x1ab4c7,_0x78c16c);}_0x441697[_0x2e4a84(_0x1cfe6e._0x54390f,_0x1cfe6e._0x380ed1)]='CWE-';function _0x2e4a84(_0x44e9e9,_0x174f22){return _0x23f211(_0x44e9e9-_0x1fa28e._0x42e22b,_0x174f22);}const _0x5a9a9b=_0x441697;if(_0x55f1df['alias'+'es'])for(const _0x42672e of _0x55f1df[_0x29212e(0x6a8,_0x1cfe6e._0x40ac73)+'es']){if(_0x42672e[_0x2e4a84(-_0x1cfe6e._0x1cfe8f,-0xa3)+_0x2e4a84(0xc8,_0x1cfe6e._0x3671b8)](_0x5a9a9b[_0x2e4a84(_0x1cfe6e._0x54390f,0x140)]))return _0x42672e;}return _0x2e4a84(0x65,0x33)+_0x2e4a84(_0x1cfe6e._0x126277,0xc6);}