mol_crypto2_lib 0.0.37 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.d.ts +235 -1
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +246 -9
- package/node.js.map +1 -1
- package/node.mjs +246 -9
- package/node.test.js +317 -15
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +65 -0
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +68 -1
- package/web.js.map +1 -1
- package/web.mjs +68 -1
- package/web.test.js +76 -6
- package/web.test.js.map +1 -1
package/node.d.ts
CHANGED
|
@@ -51,19 +51,33 @@ declare namespace $ {
|
|
|
51
51
|
static toString(): string;
|
|
52
52
|
getUint48(offset: number, LE?: boolean): number;
|
|
53
53
|
setUint48(offset: number, value: number, LE?: boolean): void;
|
|
54
|
+
/** 1-byte signed integer channel for offset. */
|
|
54
55
|
int8(offset: number, next?: number): number;
|
|
56
|
+
/** 1-byte unsigned integer channel for offset. */
|
|
55
57
|
uint8(offset: number, next?: number): number;
|
|
58
|
+
/** 2-byte signed integer little-endian channel for offset. */
|
|
56
59
|
int16(offset: number, next?: number): number;
|
|
60
|
+
/** 2-byte unsigned integer little-endian channel for offset. */
|
|
57
61
|
uint16(offset: number, next?: number): number;
|
|
62
|
+
/** 4-byte signed integer little-endian channel for offset. */
|
|
58
63
|
int32(offset: number, next?: number): number;
|
|
64
|
+
/** 4-byte unsigned integer little-endian channel for offset. */
|
|
59
65
|
uint32(offset: number, next?: number): number;
|
|
66
|
+
/** 8-byte signed integer little-endian channel for offset. */
|
|
60
67
|
int64(offset: number, next?: bigint): bigint;
|
|
68
|
+
/** 6-byte unsigned integer little-endian channel for offset. */
|
|
61
69
|
uint48(offset: number, next?: number): number;
|
|
70
|
+
/** 8-byte unsigned integer little-endian channel for offset. */
|
|
62
71
|
uint64(offset: number, next?: bigint): bigint;
|
|
72
|
+
/** 2-byte float little-endian channel for offset. */
|
|
63
73
|
float16(offset: number, next?: number): number;
|
|
74
|
+
/** 4-byte float little-endian channel for offset. */
|
|
64
75
|
float32(offset: number, next?: number): number;
|
|
76
|
+
/** 8-byte float little-endian channel for offset. */
|
|
65
77
|
float64(offset: number, next?: number): number;
|
|
78
|
+
/** A Uint8Array view for the same buffer. */
|
|
66
79
|
asArray(): Uint8Array<ArrayBuffer>;
|
|
80
|
+
/** base64ae string from buffer. */
|
|
67
81
|
toString(): string;
|
|
68
82
|
}
|
|
69
83
|
}
|
|
@@ -80,11 +94,17 @@ declare namespace $ {
|
|
|
80
94
|
|
|
81
95
|
declare namespace $ {
|
|
82
96
|
const $mol_ambient_ref: unique symbol;
|
|
97
|
+
/** @deprecated use $ instead */
|
|
83
98
|
type $mol_ambient_context = $;
|
|
84
99
|
function $mol_ambient(this: $ | void, overrides: Partial<$>): $;
|
|
85
100
|
}
|
|
86
101
|
|
|
87
102
|
declare namespace $ {
|
|
103
|
+
/**
|
|
104
|
+
* Proxy that delegates all to lazy returned target.
|
|
105
|
+
*
|
|
106
|
+
* $mol_delegate( Array.prototype , ()=> fetch_array() )
|
|
107
|
+
*/
|
|
88
108
|
function $mol_delegate<Value extends object>(proto: Value, target: () => Value): Value;
|
|
89
109
|
}
|
|
90
110
|
|
|
@@ -154,11 +174,15 @@ declare namespace $ {
|
|
|
154
174
|
}
|
|
155
175
|
|
|
156
176
|
declare namespace $ {
|
|
177
|
+
/** Base class for crypto keys. */
|
|
157
178
|
class $mol_crypto2_key extends $mol_buffer {
|
|
158
179
|
static size_str: number;
|
|
159
180
|
static size_bin: number;
|
|
181
|
+
/** Kakes key from different params. */
|
|
160
182
|
static from<This extends typeof $mol_buffer>(this: This, serial: number | string | ArrayBufferView<ArrayBuffer> | ArrayBuffer): InstanceType<This>;
|
|
183
|
+
/** Array view of public part. */
|
|
161
184
|
asArray(): Uint8Array<ArrayBuffer>;
|
|
185
|
+
/** String representation of public part. */
|
|
162
186
|
toString(): string;
|
|
163
187
|
}
|
|
164
188
|
}
|
|
@@ -219,57 +243,130 @@ declare namespace $ {
|
|
|
219
243
|
}
|
|
220
244
|
|
|
221
245
|
declare namespace $ {
|
|
246
|
+
/** Generates unique identifier. */
|
|
222
247
|
function $mol_guid(length?: number, exists?: (id: string) => boolean): string;
|
|
223
248
|
}
|
|
224
249
|
|
|
225
250
|
declare namespace $ {
|
|
251
|
+
/** Special status statuses. */
|
|
226
252
|
enum $mol_wire_cursor {
|
|
253
|
+
/** Update required. */
|
|
227
254
|
stale = -1,
|
|
255
|
+
/** Some of (transitive) pub update required. */
|
|
228
256
|
doubt = -2,
|
|
257
|
+
/** Actual state but may be dropped. */
|
|
229
258
|
fresh = -3,
|
|
259
|
+
/** State will never be changed. */
|
|
230
260
|
final = -4
|
|
231
261
|
}
|
|
232
262
|
}
|
|
233
263
|
|
|
234
264
|
declare namespace $ {
|
|
265
|
+
/**
|
|
266
|
+
* Collects subscribers in compact array. 28B
|
|
267
|
+
*/
|
|
235
268
|
class $mol_wire_pub extends Object {
|
|
236
269
|
constructor(id?: string);
|
|
237
270
|
[Symbol.toStringTag]: string;
|
|
238
271
|
data: unknown[];
|
|
239
272
|
static get [Symbol.species](): ArrayConstructor;
|
|
273
|
+
/**
|
|
274
|
+
* Index of first subscriber.
|
|
275
|
+
*/
|
|
240
276
|
protected sub_from: number;
|
|
277
|
+
/**
|
|
278
|
+
* All current subscribers.
|
|
279
|
+
*/
|
|
241
280
|
get sub_list(): readonly $mol_wire_sub[];
|
|
281
|
+
/**
|
|
282
|
+
* Has any subscribers or not.
|
|
283
|
+
*/
|
|
242
284
|
get sub_empty(): boolean;
|
|
285
|
+
/**
|
|
286
|
+
* Subscribe subscriber to this publisher events and return position of subscriber that required to unsubscribe.
|
|
287
|
+
*/
|
|
243
288
|
sub_on(sub: $mol_wire_pub, pub_pos: number): number;
|
|
289
|
+
/**
|
|
290
|
+
* Unsubscribe subscriber from this publisher events by subscriber position provided by `on(pub)`.
|
|
291
|
+
*/
|
|
244
292
|
sub_off(sub_pos: number): void;
|
|
293
|
+
/**
|
|
294
|
+
* Called when last sub was unsubscribed.
|
|
295
|
+
**/
|
|
245
296
|
reap(): void;
|
|
297
|
+
/**
|
|
298
|
+
* Autowire this publisher with current subscriber.
|
|
299
|
+
**/
|
|
246
300
|
promote(): void;
|
|
301
|
+
/**
|
|
302
|
+
* Enforce actualization. Should not throw errors.
|
|
303
|
+
*/
|
|
247
304
|
fresh(): void;
|
|
305
|
+
/**
|
|
306
|
+
* Allow to put data to caches in the subtree.
|
|
307
|
+
*/
|
|
248
308
|
complete(): void;
|
|
249
309
|
get incompleted(): boolean;
|
|
310
|
+
/**
|
|
311
|
+
* Notify subscribers about self changes.
|
|
312
|
+
*/
|
|
250
313
|
emit(quant?: $mol_wire_cursor): void;
|
|
314
|
+
/**
|
|
315
|
+
* Moves peer from one position to another. Doesn't clear data at old position!
|
|
316
|
+
*/
|
|
251
317
|
peer_move(from_pos: number, to_pos: number): void;
|
|
318
|
+
/**
|
|
319
|
+
* Updates self position in the peer.
|
|
320
|
+
*/
|
|
252
321
|
peer_repos(peer_pos: number, self_pos: number): void;
|
|
253
322
|
}
|
|
254
323
|
}
|
|
255
324
|
|
|
256
325
|
declare namespace $ {
|
|
326
|
+
/** Generic subscriber interface */
|
|
257
327
|
interface $mol_wire_sub extends $mol_wire_pub {
|
|
258
328
|
temp: boolean;
|
|
259
329
|
pub_list: $mol_wire_pub[];
|
|
330
|
+
/**
|
|
331
|
+
* Begin auto wire to publishers.
|
|
332
|
+
* Returns previous auto subscriber that must me transfer to the `end`.
|
|
333
|
+
*/
|
|
260
334
|
track_on(): $mol_wire_sub | null;
|
|
335
|
+
/**
|
|
336
|
+
* Returns next auto wired publisher. It can be easely repormoted.
|
|
337
|
+
* Or promotes next publisher to auto wire its togeter.
|
|
338
|
+
* Must be used only between `track_on` and `track_off`.
|
|
339
|
+
*/
|
|
261
340
|
track_next(pub?: $mol_wire_pub): $mol_wire_pub | null;
|
|
262
341
|
pub_off(pub_pos: number): void;
|
|
342
|
+
/**
|
|
343
|
+
* Unsubscribes from unpromoted publishers.
|
|
344
|
+
*/
|
|
263
345
|
track_cut(sub: $mol_wire_pub | null): void;
|
|
346
|
+
/**
|
|
347
|
+
* Ends auto wire to publishers.
|
|
348
|
+
*/
|
|
264
349
|
track_off(sub: $mol_wire_pub | null): void;
|
|
350
|
+
/**
|
|
351
|
+
* Receive notification about publisher changes.
|
|
352
|
+
*/
|
|
265
353
|
absorb(quant: $mol_wire_cursor, pos: number): void;
|
|
354
|
+
/**
|
|
355
|
+
* Unsubscribes from all publishers.
|
|
356
|
+
*/
|
|
266
357
|
destructor(): void;
|
|
267
358
|
}
|
|
268
359
|
}
|
|
269
360
|
|
|
270
361
|
declare namespace $ {
|
|
271
362
|
let $mol_wire_auto_sub: $mol_wire_sub | null;
|
|
363
|
+
/**
|
|
364
|
+
* When fulfilled, all publishers are promoted to this subscriber on access to its.
|
|
365
|
+
*/
|
|
272
366
|
function $mol_wire_auto(next?: $mol_wire_sub | null): $mol_wire_sub | null;
|
|
367
|
+
/**
|
|
368
|
+
* Affection queue. Used to prevent accidental stack overflow on emit.
|
|
369
|
+
*/
|
|
273
370
|
const $mol_wire_affected: ($mol_wire_sub | number)[];
|
|
274
371
|
}
|
|
275
372
|
|
|
@@ -302,6 +399,13 @@ declare namespace $ {
|
|
|
302
399
|
}
|
|
303
400
|
|
|
304
401
|
declare namespace $ {
|
|
402
|
+
/**
|
|
403
|
+
* Publisher that can auto collect other publishers. 32B
|
|
404
|
+
*
|
|
405
|
+
* P1 P2 P3 P4 S1 S2 S3
|
|
406
|
+
* ^ ^
|
|
407
|
+
* pubs_from subs_from
|
|
408
|
+
*/
|
|
305
409
|
class $mol_wire_pub_sub extends $mol_wire_pub implements $mol_wire_sub {
|
|
306
410
|
protected pub_from: number;
|
|
307
411
|
protected cursor: $mol_wire_cursor;
|
|
@@ -318,6 +422,9 @@ declare namespace $ {
|
|
|
318
422
|
complete_pubs(): void;
|
|
319
423
|
absorb(quant?: $mol_wire_cursor, pos?: number): void;
|
|
320
424
|
[$mol_dev_format_head](): any[];
|
|
425
|
+
/**
|
|
426
|
+
* Is subscribed to any publisher or not.
|
|
427
|
+
*/
|
|
321
428
|
get pub_empty(): boolean;
|
|
322
429
|
}
|
|
323
430
|
}
|
|
@@ -333,6 +440,13 @@ declare namespace $ {
|
|
|
333
440
|
}
|
|
334
441
|
|
|
335
442
|
declare namespace $ {
|
|
443
|
+
/**
|
|
444
|
+
* Suspendable task with support both sync/async api.
|
|
445
|
+
*
|
|
446
|
+
* A1 A2 A3 A4 P1 P2 P3 P4 S1 S2 S3
|
|
447
|
+
* ^ ^ ^
|
|
448
|
+
* args_from pubs_from subs_from
|
|
449
|
+
**/
|
|
336
450
|
abstract class $mol_wire_fiber<Host, Args extends readonly unknown[], Result> extends $mol_wire_pub_sub {
|
|
337
451
|
readonly task: (this: Host, ...args: Args) => Result;
|
|
338
452
|
readonly host?: Host | undefined;
|
|
@@ -359,7 +473,15 @@ declare namespace $ {
|
|
|
359
473
|
fresh(): this | undefined;
|
|
360
474
|
refresh(): void;
|
|
361
475
|
abstract put(next: Result | Error | Promise<Result | Error>): Result | Error | Promise<Result | Error>;
|
|
476
|
+
/**
|
|
477
|
+
* Synchronous execution. Throws Promise when waits async task (SuspenseAPI provider).
|
|
478
|
+
* Should be called inside SuspenseAPI consumer (ie fiber).
|
|
479
|
+
*/
|
|
362
480
|
sync(): Awaited<Result>;
|
|
481
|
+
/**
|
|
482
|
+
* Asynchronous execution.
|
|
483
|
+
* It's SuspenseAPI consumer. So SuspenseAPI providers can be called inside.
|
|
484
|
+
*/
|
|
363
485
|
async_raw(): Promise<Result>;
|
|
364
486
|
async(): Promise<Result> & {
|
|
365
487
|
destructor(): void;
|
|
@@ -371,31 +493,48 @@ declare namespace $ {
|
|
|
371
493
|
|
|
372
494
|
declare namespace $ {
|
|
373
495
|
let $mol_compare_deep_cache: WeakMap<any, WeakMap<any, boolean>>;
|
|
496
|
+
/**
|
|
497
|
+
* Deeply compares two values. Returns true if equal.
|
|
498
|
+
* Define `Symbol.toPrimitive` to customize.
|
|
499
|
+
*/
|
|
374
500
|
function $mol_compare_deep<Value>(left: Value, right: Value): boolean;
|
|
375
501
|
}
|
|
376
502
|
|
|
377
503
|
declare namespace $ {
|
|
504
|
+
/** Logger event data */
|
|
378
505
|
type $mol_log3_event<Fields> = {
|
|
379
506
|
[key in string]: unknown;
|
|
380
507
|
} & {
|
|
508
|
+
/** Time of event creation */
|
|
381
509
|
time?: string;
|
|
510
|
+
/** Place of event creation */
|
|
382
511
|
place: unknown;
|
|
512
|
+
/** Short description of event */
|
|
383
513
|
message: string;
|
|
384
514
|
} & Fields;
|
|
515
|
+
/** Logger function */
|
|
385
516
|
type $mol_log3_logger<Fields, Res = void> = (this: $, event: $mol_log3_event<Fields>) => Res;
|
|
517
|
+
/** Log begin of some task */
|
|
386
518
|
let $mol_log3_come: $mol_log3_logger<{}>;
|
|
519
|
+
/** Log end of some task */
|
|
387
520
|
let $mol_log3_done: $mol_log3_logger<{}>;
|
|
521
|
+
/** Log error */
|
|
388
522
|
let $mol_log3_fail: $mol_log3_logger<{}>;
|
|
523
|
+
/** Log warning message */
|
|
389
524
|
let $mol_log3_warn: $mol_log3_logger<{
|
|
390
525
|
hint: string;
|
|
391
526
|
}>;
|
|
527
|
+
/** Log some generic event */
|
|
392
528
|
let $mol_log3_rise: $mol_log3_logger<{}>;
|
|
529
|
+
/** Log begin of log group, returns func to close group */
|
|
393
530
|
let $mol_log3_area: $mol_log3_logger<{}, () => void>;
|
|
531
|
+
/** Log begin of collapsed group only when some logged inside, returns func to close group */
|
|
394
532
|
function $mol_log3_area_lazy(this: $, event: $mol_log3_event<{}>): () => void;
|
|
395
533
|
let $mol_log3_stack: (() => void)[];
|
|
396
534
|
}
|
|
397
535
|
|
|
398
536
|
declare namespace $ {
|
|
537
|
+
/** Position in any resource. */
|
|
399
538
|
class $mol_span extends $mol_object2 {
|
|
400
539
|
readonly uri: string;
|
|
401
540
|
readonly source: string;
|
|
@@ -403,9 +542,13 @@ declare namespace $ {
|
|
|
403
542
|
readonly col: number;
|
|
404
543
|
readonly length: number;
|
|
405
544
|
constructor(uri: string, source: string, row: number, col: number, length: number);
|
|
545
|
+
/** Span for begin of unknown resource */
|
|
406
546
|
static unknown: $mol_span;
|
|
547
|
+
/** Makes new span for begin of resource. */
|
|
407
548
|
static begin(uri: string, source?: string): $mol_span;
|
|
549
|
+
/** Makes new span for end of resource. */
|
|
408
550
|
static end(uri: string, source: string): $mol_span;
|
|
551
|
+
/** Makes new span for entire resource. */
|
|
409
552
|
static entire(uri: string, source: string): $mol_span;
|
|
410
553
|
toString(): string;
|
|
411
554
|
toJSON(): {
|
|
@@ -414,14 +557,19 @@ declare namespace $ {
|
|
|
414
557
|
col: number;
|
|
415
558
|
length: number;
|
|
416
559
|
};
|
|
560
|
+
/** Makes new error for this span. */
|
|
417
561
|
error(message: string, Class?: ErrorConstructor): Error;
|
|
562
|
+
/** Makes new span for same uri. */
|
|
418
563
|
span(row: number, col: number, length: number): $mol_span;
|
|
564
|
+
/** Makes new span after end of this. */
|
|
419
565
|
after(length?: number): $mol_span;
|
|
566
|
+
/** Makes new span between begin and end. */
|
|
420
567
|
slice(begin: number, end?: number): $mol_span;
|
|
421
568
|
}
|
|
422
569
|
}
|
|
423
570
|
|
|
424
571
|
declare namespace $ {
|
|
572
|
+
/** Serializes tree to string in tree format. */
|
|
425
573
|
function $mol_tree2_to_string(this: $, tree: $mol_tree2): string;
|
|
426
574
|
}
|
|
427
575
|
|
|
@@ -430,37 +578,74 @@ declare namespace $ {
|
|
|
430
578
|
}
|
|
431
579
|
|
|
432
580
|
declare namespace $ {
|
|
581
|
+
/** Path by types in tree. */
|
|
433
582
|
type $mol_tree2_path = Array<string | number | null>;
|
|
583
|
+
/** Hask tool for processing node. */
|
|
434
584
|
type $mol_tree2_hack<Context> = (input: $mol_tree2, belt: $mol_tree2_belt<Context>, context: Context) => readonly $mol_tree2[];
|
|
585
|
+
/** Collection of hask tools for processing tree. */
|
|
435
586
|
type $mol_tree2_belt<Context> = Record<string, $mol_tree2_hack<Context>>;
|
|
587
|
+
/**
|
|
588
|
+
* Abstract Syntax Tree with human readable serialization.
|
|
589
|
+
* Avoid direct instantiation. Use static factories instead.
|
|
590
|
+
* @see https://github.com/nin-jin/tree.d
|
|
591
|
+
*/
|
|
436
592
|
class $mol_tree2 extends Object {
|
|
593
|
+
/** Type of structural node, `value` should be empty */
|
|
437
594
|
readonly type: string;
|
|
595
|
+
/** Content of data node, `type` should be empty */
|
|
438
596
|
readonly value: string;
|
|
597
|
+
/** Child nodes */
|
|
439
598
|
readonly kids: readonly $mol_tree2[];
|
|
599
|
+
/** Position in most far source resource */
|
|
440
600
|
readonly span: $mol_span;
|
|
441
|
-
constructor(
|
|
601
|
+
constructor(
|
|
602
|
+
/** Type of structural node, `value` should be empty */
|
|
603
|
+
type: string,
|
|
604
|
+
/** Content of data node, `type` should be empty */
|
|
605
|
+
value: string,
|
|
606
|
+
/** Child nodes */
|
|
607
|
+
kids: readonly $mol_tree2[],
|
|
608
|
+
/** Position in most far source resource */
|
|
609
|
+
span: $mol_span);
|
|
610
|
+
/** Makes collection node. */
|
|
442
611
|
static list(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
612
|
+
/** Makes new derived collection node. */
|
|
443
613
|
list(kids: readonly $mol_tree2[]): $mol_tree2;
|
|
614
|
+
/** Makes data node for any string. */
|
|
444
615
|
static data(value: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
616
|
+
/** Makes new derived data node. */
|
|
445
617
|
data(value: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
618
|
+
/** Makes struct node. */
|
|
446
619
|
static struct(type: string, kids?: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
620
|
+
/** Makes new derived structural node. */
|
|
447
621
|
struct(type: string, kids?: readonly $mol_tree2[]): $mol_tree2;
|
|
622
|
+
/** Makes new derived node with different kids id defined. */
|
|
448
623
|
clone(kids: readonly $mol_tree2[], span?: $mol_span): $mol_tree2;
|
|
624
|
+
/** Returns multiline text content. */
|
|
449
625
|
text(): string;
|
|
626
|
+
/** Parses tree format. */
|
|
627
|
+
/** @deprecated Use $mol_tree2_from_string */
|
|
450
628
|
static fromString(str: string, uri?: string): $mol_tree2;
|
|
629
|
+
/** Serializes to tree format. */
|
|
451
630
|
toString(): string;
|
|
631
|
+
/** Makes new tree with node overrided by path. */
|
|
452
632
|
insert(value: $mol_tree2 | null, ...path: $mol_tree2_path): $mol_tree2;
|
|
633
|
+
/** Makes new tree with node overrided by path. */
|
|
453
634
|
update(value: readonly $mol_tree2[], ...path: $mol_tree2_path): readonly $mol_tree2[];
|
|
635
|
+
/** Query nodes by path. */
|
|
454
636
|
select(...path: $mol_tree2_path): $mol_tree2;
|
|
637
|
+
/** Filter kids by path or value. */
|
|
455
638
|
filter(path: string[], value?: string): $mol_tree2;
|
|
456
639
|
hack_self<Context extends {
|
|
457
640
|
span?: $mol_span;
|
|
458
641
|
[key: string]: unknown;
|
|
459
642
|
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): readonly $mol_tree2[];
|
|
643
|
+
/** Transform tree through context with transformers */
|
|
460
644
|
hack<Context extends {
|
|
461
645
|
span?: $mol_span;
|
|
462
646
|
[key: string]: unknown;
|
|
463
647
|
} = {}>(belt: $mol_tree2_belt<Context>, context?: Context): $mol_tree2[];
|
|
648
|
+
/** Makes Error with node coordinates. */
|
|
464
649
|
error(message: string, Class?: ErrorConstructor): Error;
|
|
465
650
|
}
|
|
466
651
|
class $mol_tree2_empty extends $mol_tree2 {
|
|
@@ -469,6 +654,7 @@ declare namespace $ {
|
|
|
469
654
|
}
|
|
470
655
|
|
|
471
656
|
declare namespace $ {
|
|
657
|
+
/** Syntax error with cordinates and source line snippet. */
|
|
472
658
|
class $mol_error_syntax extends SyntaxError {
|
|
473
659
|
reason: string;
|
|
474
660
|
line: string;
|
|
@@ -478,6 +664,7 @@ declare namespace $ {
|
|
|
478
664
|
}
|
|
479
665
|
|
|
480
666
|
declare namespace $ {
|
|
667
|
+
/** Parses tree format from string. */
|
|
481
668
|
function $mol_tree2_from_string(this: $, str: string, uri?: string): $mol_tree2;
|
|
482
669
|
}
|
|
483
670
|
|
|
@@ -490,6 +677,7 @@ declare namespace $ {
|
|
|
490
677
|
}
|
|
491
678
|
|
|
492
679
|
declare namespace $ {
|
|
680
|
+
/** Module for working with terminal. Text coloring when output in terminal */
|
|
493
681
|
class $mol_term_color {
|
|
494
682
|
static reset: (str: string) => string;
|
|
495
683
|
static bold: (str: string) => string;
|
|
@@ -521,6 +709,7 @@ declare namespace $ {
|
|
|
521
709
|
}
|
|
522
710
|
|
|
523
711
|
declare namespace $ {
|
|
712
|
+
/** One-shot fiber */
|
|
524
713
|
class $mol_wire_task<Host, Args extends readonly unknown[], Result> extends $mol_wire_fiber<Host, Args, Result> {
|
|
525
714
|
static getter<Host, Args extends readonly unknown[], Result>(task: (this: Host, ...args: Args) => Result): (host: Host, args: Args) => $mol_wire_task<Host, Args, Result>;
|
|
526
715
|
get temp(): boolean;
|
|
@@ -531,6 +720,10 @@ declare namespace $ {
|
|
|
531
720
|
}
|
|
532
721
|
|
|
533
722
|
declare namespace $ {
|
|
723
|
+
/**
|
|
724
|
+
* Convert asynchronous (promise-based) API to synchronous by wrapping function and method calls in a fiber.
|
|
725
|
+
* @see https://mol.hyoo.ru/#!section=docs/=1fcpsq_1wh0h2
|
|
726
|
+
*/
|
|
534
727
|
export function $mol_wire_sync<Host extends object>(obj: Host): ObjectOrFunctionResultAwaited<Host>;
|
|
535
728
|
type FunctionResultAwaited<Some> = Some extends (...args: infer Args) => infer Res ? (...args: Args) => Awaited<Res> : Some;
|
|
536
729
|
type ConstructorResultAwaited<Some> = Some extends new (...args: infer Args) => infer Res ? new (...args: Args) => Res : {};
|
|
@@ -581,47 +774,66 @@ declare namespace $ {
|
|
|
581
774
|
}
|
|
582
775
|
|
|
583
776
|
declare namespace $ {
|
|
777
|
+
/** Derived debuggable error with stack */
|
|
584
778
|
function $mol_crypto_restack(error: any): never;
|
|
585
779
|
}
|
|
586
780
|
|
|
587
781
|
declare namespace $ {
|
|
782
|
+
/** Ed25519 public key for sign verifying. */
|
|
588
783
|
class $mol_crypto2_auditor extends $mol_crypto2_key {
|
|
784
|
+
/** Native WebAPI public key. */
|
|
589
785
|
native(): Promise<CryptoKey>;
|
|
786
|
+
/** Verifies signature of data. */
|
|
590
787
|
verify(data: BufferSource, sign: BufferSource): Promise<boolean>;
|
|
591
788
|
}
|
|
592
789
|
}
|
|
593
790
|
|
|
594
791
|
declare namespace $ {
|
|
792
|
+
/** Ed25519 private key for data signing. */
|
|
595
793
|
class $mol_crypto2_signer extends $mol_crypto2_auditor {
|
|
596
794
|
static size_sign: number;
|
|
795
|
+
/** Generates new Signer. */
|
|
597
796
|
static generate(): Promise<$mol_crypto2_signer>;
|
|
797
|
+
/** Native WebAPI private key. */
|
|
598
798
|
nativePrivate(): Promise<CryptoKey>;
|
|
799
|
+
/** Array view of private part. */
|
|
599
800
|
asArrayPrivate(): Uint8Array<ArrayBuffer>;
|
|
801
|
+
/** String representation of private part. */
|
|
600
802
|
toStringPrivate(): string;
|
|
803
|
+
/** Returns Auditor from this Signer. */
|
|
601
804
|
auditor(): $mol_crypto2_auditor;
|
|
805
|
+
/** Makes Signature for data. */
|
|
602
806
|
sign(data: BufferSource): Promise<Uint8Array<ArrayBuffer>>;
|
|
603
807
|
}
|
|
604
808
|
}
|
|
605
809
|
|
|
606
810
|
declare namespace $ {
|
|
811
|
+
/** x25519 public key for data encryption. */
|
|
607
812
|
class $mol_crypto2_socket extends $mol_crypto2_key {
|
|
813
|
+
/** Native WebAPI public key. */
|
|
608
814
|
native(): Promise<CryptoKey>;
|
|
609
815
|
}
|
|
610
816
|
}
|
|
611
817
|
|
|
612
818
|
declare namespace $ {
|
|
819
|
+
/** 16 unique bytes. */
|
|
613
820
|
function $mol_crypto2_nonce(): Uint8Array<ArrayBuffer>;
|
|
614
821
|
}
|
|
615
822
|
|
|
616
823
|
declare namespace $ {
|
|
824
|
+
/** @deprecated Use $mol_crypto2_nonce */
|
|
617
825
|
let $mol_crypto_salt: typeof $mol_crypto2_nonce;
|
|
618
826
|
}
|
|
619
827
|
|
|
620
828
|
declare namespace $ {
|
|
621
829
|
type BufferSource = ArrayBufferView<ArrayBuffer> | ArrayBuffer;
|
|
830
|
+
/** Symmetric cipher with shortest payload. */
|
|
622
831
|
export class $mol_crypto_sacred extends $mol_buffer {
|
|
832
|
+
/** Key size in bytes. */
|
|
623
833
|
static size: 16;
|
|
834
|
+
/** Makes new random secret. */
|
|
624
835
|
static make(): $mol_crypto_sacred;
|
|
836
|
+
/** Makes from string of buffer view. */
|
|
625
837
|
static from<This extends typeof $mol_buffer>(this: This, serial: string | ArrayBufferView<ArrayBuffer>): InstanceType<This>;
|
|
626
838
|
static from_native(native: CryptoKey): Promise<$mol_crypto_sacred>;
|
|
627
839
|
constructor(buffer: ArrayBuffer, byteOffset?: number, byteLength?: number);
|
|
@@ -629,46 +841,68 @@ declare namespace $ {
|
|
|
629
841
|
_native: undefined | CryptoKey & {
|
|
630
842
|
type: 'secret';
|
|
631
843
|
};
|
|
844
|
+
/** Native crypto secret */
|
|
632
845
|
native(): Promise<CryptoKey & {
|
|
633
846
|
type: "secret";
|
|
634
847
|
}>;
|
|
848
|
+
/** Encrypt any binary message. 16n bytes */
|
|
635
849
|
encrypt(open: BufferSource, salt: BufferSource): Promise<Uint8Array<ArrayBuffer>>;
|
|
850
|
+
/** Decrypt any binary message. */
|
|
636
851
|
decrypt(closed: BufferSource, salt: BufferSource): Promise<Uint8Array<ArrayBuffer>>;
|
|
852
|
+
/** Encrypts 0xFF prefixed buffer. 16 bytes */
|
|
637
853
|
close(opened: DataView<ArrayBuffer>, salt: BufferSource): Promise<Uint8Array<ArrayBuffer>>;
|
|
854
|
+
/** Decrypts 0xFF prefixed buffer. 16 bytes */
|
|
638
855
|
open(closed: Uint8Array<ArrayBuffer>, salt: BufferSource): Promise<Uint8Array<ArrayBuffer>>;
|
|
639
856
|
}
|
|
640
857
|
export {};
|
|
641
858
|
}
|
|
642
859
|
|
|
643
860
|
declare namespace $ {
|
|
861
|
+
/** x25519 private key for data encryption. */
|
|
644
862
|
class $mol_crypto2_cipher extends $mol_crypto2_socket {
|
|
645
863
|
static size_secret: number;
|
|
864
|
+
/** Generates new Cipher. */
|
|
646
865
|
static generate(): Promise<$mol_crypto2_cipher>;
|
|
866
|
+
/** Native WebAPI private key. */
|
|
647
867
|
nativePrivate(): Promise<CryptoKey>;
|
|
868
|
+
/** Array view of private part. */
|
|
648
869
|
asArrayPrivate(): Uint8Array<ArrayBuffer>;
|
|
870
|
+
/** String representation of private part. */
|
|
649
871
|
toStringPrivate(): string;
|
|
872
|
+
/** Returns Socket from this Chipher. */
|
|
650
873
|
socket(): $mol_crypto2_socket;
|
|
874
|
+
/** Makes shared secret for combination of Chiper and Soacket. */
|
|
651
875
|
secret(pub: $mol_crypto2_socket): Promise<$mol_crypto_sacred>;
|
|
652
876
|
}
|
|
653
877
|
}
|
|
654
878
|
|
|
655
879
|
declare namespace $ {
|
|
880
|
+
/** Compose public key for verifying and encryption, based on Curve25519. */
|
|
656
881
|
class $mol_crypto2_public extends $mol_crypto2_key {
|
|
657
882
|
static size_str: number;
|
|
658
883
|
static size_bin: number;
|
|
884
|
+
/** Return Auditor part. */
|
|
659
885
|
auditor(): $mol_crypto2_auditor;
|
|
886
|
+
/** Return Socket part. */
|
|
660
887
|
socket(): $mol_crypto2_socket;
|
|
661
888
|
toString(): string;
|
|
662
889
|
}
|
|
663
890
|
}
|
|
664
891
|
|
|
665
892
|
declare namespace $ {
|
|
893
|
+
/** Compose private key for signing and encryption, based on Curve25519. */
|
|
666
894
|
class $mol_crypto2_private extends $mol_crypto2_public {
|
|
895
|
+
/** Generates new private key. */
|
|
667
896
|
static generate(): Promise<$mol_crypto2_private>;
|
|
897
|
+
/** Return Signer part. */
|
|
668
898
|
signer(): $mol_crypto2_signer;
|
|
899
|
+
/** Return Cipher part. */
|
|
669
900
|
cipher(): $mol_crypto2_cipher;
|
|
901
|
+
/** Return Public part. */
|
|
670
902
|
public(): $mol_crypto2_public;
|
|
903
|
+
/** Array view of private part. */
|
|
671
904
|
asArrayPrivate(): Uint8Array<ArrayBuffer>;
|
|
905
|
+
/** String representation of private part. */
|
|
672
906
|
toStringPrivate(): string;
|
|
673
907
|
}
|
|
674
908
|
}
|
package/node.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../mam.d.ts","../../../base64/encode/encode.d.ts","../../../base64/encode/encode.node.d.ts","../../../base64/decode/decode.d.ts","../../../base64/decode/decode.node.d.ts","../../../base64/ae/ae.d.ts","../../../func/name/name.d.ts","../../../fail/fail.d.ts","../../../buffer/buffer.d.ts","../../../base64/url/url.d.ts","../../../base64/url/url.node.d.ts","../../../ambient/ambient.d.ts","../../../delegate/delegate.d.ts","../../../owning/owning.d.ts","../../../fail/hidden/hidden.d.ts","../../../type/writable/writable.d.ts","../../../key/key.d.ts","../../../object2/object2.d.ts","../../../wrapper/wrapper.d.ts","../../../memo/memo.d.ts","../../key/key.d.ts","../../../../node/internal/check/check.node.d.ts","../../../promise/like/like.d.ts","../../../fail/catch/catch.d.ts","../../../try/try.d.ts","../../../fail/log/log.d.ts","../../../../node/autoinstall/autoinstall.node.d.ts","../../../../node/node.node.d.ts","../../../error/mix/mix.d.ts","../../../object/object.d.ts","../../../env/env.d.ts","../../../env/env.node.d.ts","../../../guid/guid.d.ts","../../../wire/cursor/cursor.d.ts","../../../wire/pub/pub.d.ts","../../../wire/sub/sub.d.ts","../../../wire/wire.d.ts","../../../dev/format/format.d.ts","../../../wire/pub/sub/sub.d.ts","../../../after/tick/tick.d.ts","../../../wire/fiber/fiber.d.ts","../../../compare/deep/deep.d.ts","../../../log3/log3.d.ts","../../../span/span.d.ts","../../../tree2/to/string/string.d.ts","../../../maybe/maybe.d.ts","../../../tree2/tree2.d.ts","../../../error/syntax/syntax.d.ts","../../../tree2/from/string/string.d.ts","../../../array/chunks/chunks.d.ts","../../../tree2/from/json/json.d.ts","../../../term/color/color.d.ts","../../../log3/log3.node.d.ts","../../../wire/task/task.d.ts","../../../wire/sync/sync.d.ts","../../../run/run.node.d.ts","../../../crypto/native/native.node.d.ts","../../../crypto/restack/restack.d.ts","../../auditor/auditor.d.ts","../../signer/signer.d.ts","../../socket/socket.d.ts","../../nonce/nonce.d.ts","../../../crypto/salt/salt.d.ts","../../../crypto/sacred/sacred.d.ts","../../cipher/cipher.d.ts","../../public/public.d.ts","../../private/private.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACfA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;
|
|
1
|
+
{"version":3,"sources":["../../../../mam.d.ts","../../../base64/encode/encode.d.ts","../../../base64/encode/encode.node.d.ts","../../../base64/decode/decode.d.ts","../../../base64/decode/decode.node.d.ts","../../../base64/ae/ae.d.ts","../../../func/name/name.d.ts","../../../fail/fail.d.ts","../../../buffer/buffer.d.ts","../../../base64/url/url.d.ts","../../../base64/url/url.node.d.ts","../../../ambient/ambient.d.ts","../../../delegate/delegate.d.ts","../../../owning/owning.d.ts","../../../fail/hidden/hidden.d.ts","../../../type/writable/writable.d.ts","../../../key/key.d.ts","../../../object2/object2.d.ts","../../../wrapper/wrapper.d.ts","../../../memo/memo.d.ts","../../key/key.d.ts","../../../../node/internal/check/check.node.d.ts","../../../promise/like/like.d.ts","../../../fail/catch/catch.d.ts","../../../try/try.d.ts","../../../fail/log/log.d.ts","../../../../node/autoinstall/autoinstall.node.d.ts","../../../../node/node.node.d.ts","../../../error/mix/mix.d.ts","../../../object/object.d.ts","../../../env/env.d.ts","../../../env/env.node.d.ts","../../../guid/guid.d.ts","../../../wire/cursor/cursor.d.ts","../../../wire/pub/pub.d.ts","../../../wire/sub/sub.d.ts","../../../wire/wire.d.ts","../../../dev/format/format.d.ts","../../../wire/pub/sub/sub.d.ts","../../../after/tick/tick.d.ts","../../../wire/fiber/fiber.d.ts","../../../compare/deep/deep.d.ts","../../../log3/log3.d.ts","../../../span/span.d.ts","../../../tree2/to/string/string.d.ts","../../../maybe/maybe.d.ts","../../../tree2/tree2.d.ts","../../../error/syntax/syntax.d.ts","../../../tree2/from/string/string.d.ts","../../../array/chunks/chunks.d.ts","../../../tree2/from/json/json.d.ts","../../../term/color/color.d.ts","../../../log3/log3.node.d.ts","../../../wire/task/task.d.ts","../../../wire/sync/sync.d.ts","../../../run/run.node.d.ts","../../../crypto/native/native.node.d.ts","../../../crypto/restack/restack.d.ts","../../auditor/auditor.d.ts","../../signer/signer.d.ts","../../socket/socket.d.ts","../../nonce/nonce.d.ts","../../../crypto/salt/salt.d.ts","../../../crypto/sacred/sacred.d.ts","../../cipher/cipher.d.ts","../../public/public.d.ts","../../private/private.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACfA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACrCA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACbA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;AACA;AACA;AACA;AACA;AACA;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACbA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;AACA;AACA;AACA;ACHA;AACA;AACA;ACFA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACbA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC5DA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACnCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACXA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC3BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC9BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACnDA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AChCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClCA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC3EA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC3BA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACdA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClCA;AACA;AACA;AACA;ACHA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}
|