@1agh/maude 0.21.0 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,624 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __returnValue = (v) => v;
3
+ function __exportSetter(name, newValue) {
4
+ this[name] = __returnValue.bind(null, newValue);
5
+ }
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: true,
11
+ configurable: true,
12
+ set: __exportSetter.bind(all, name)
13
+ });
14
+ };
15
+
16
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/decoding.js
17
+ var exports_decoding = {};
18
+ __export(exports_decoding, {
19
+ skip8: () => skip8,
20
+ readVarUint8Array: () => readVarUint8Array,
21
+ readVarUint: () => readVarUint,
22
+ readVarString: () => readVarString,
23
+ readVarInt: () => readVarInt,
24
+ readUint8Array: () => readUint8Array,
25
+ readUint8: () => readUint8,
26
+ readUint32BigEndian: () => readUint32BigEndian,
27
+ readUint32: () => readUint32,
28
+ readUint16: () => readUint16,
29
+ readTerminatedUint8Array: () => readTerminatedUint8Array,
30
+ readTerminatedString: () => readTerminatedString,
31
+ readTailAsUint8Array: () => readTailAsUint8Array,
32
+ readFromDataView: () => readFromDataView,
33
+ readFloat64: () => readFloat64,
34
+ readFloat32: () => readFloat32,
35
+ readBigUint64: () => readBigUint64,
36
+ readBigInt64: () => readBigInt64,
37
+ readAny: () => readAny,
38
+ peekVarUint: () => peekVarUint,
39
+ peekVarString: () => peekVarString,
40
+ peekVarInt: () => peekVarInt,
41
+ peekUint8: () => peekUint8,
42
+ peekUint32: () => peekUint32,
43
+ peekUint16: () => peekUint16,
44
+ hasContent: () => hasContent,
45
+ createDecoder: () => createDecoder,
46
+ clone: () => clone,
47
+ _readVarStringPolyfill: () => _readVarStringPolyfill,
48
+ _readVarStringNative: () => _readVarStringNative,
49
+ UintOptRleDecoder: () => UintOptRleDecoder,
50
+ StringDecoder: () => StringDecoder,
51
+ RleIntDiffDecoder: () => RleIntDiffDecoder,
52
+ RleDecoder: () => RleDecoder,
53
+ IntDiffOptRleDecoder: () => IntDiffOptRleDecoder,
54
+ IntDiffDecoder: () => IntDiffDecoder,
55
+ IncUintOptRleDecoder: () => IncUintOptRleDecoder,
56
+ Decoder: () => Decoder
57
+ });
58
+
59
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/binary.js
60
+ var BIT7 = 64;
61
+ var BIT8 = 128;
62
+ var BIT18 = 1 << 17;
63
+ var BIT19 = 1 << 18;
64
+ var BIT20 = 1 << 19;
65
+ var BIT21 = 1 << 20;
66
+ var BIT22 = 1 << 21;
67
+ var BIT23 = 1 << 22;
68
+ var BIT24 = 1 << 23;
69
+ var BIT25 = 1 << 24;
70
+ var BIT26 = 1 << 25;
71
+ var BIT27 = 1 << 26;
72
+ var BIT28 = 1 << 27;
73
+ var BIT29 = 1 << 28;
74
+ var BIT30 = 1 << 29;
75
+ var BIT31 = 1 << 30;
76
+ var BIT32 = 1 << 31;
77
+ var BITS6 = 63;
78
+ var BITS7 = 127;
79
+ var BITS17 = BIT18 - 1;
80
+ var BITS18 = BIT19 - 1;
81
+ var BITS19 = BIT20 - 1;
82
+ var BITS20 = BIT21 - 1;
83
+ var BITS21 = BIT22 - 1;
84
+ var BITS22 = BIT23 - 1;
85
+ var BITS23 = BIT24 - 1;
86
+ var BITS24 = BIT25 - 1;
87
+ var BITS25 = BIT26 - 1;
88
+ var BITS26 = BIT27 - 1;
89
+ var BITS27 = BIT28 - 1;
90
+ var BITS28 = BIT29 - 1;
91
+ var BITS29 = BIT30 - 1;
92
+ var BITS30 = BIT31 - 1;
93
+
94
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/math.js
95
+ var floor = Math.floor;
96
+ var min = (a, b) => a < b ? a : b;
97
+ var max = (a, b) => a > b ? a : b;
98
+ var isNegativeZero = (n) => n !== 0 ? n < 0 : 1 / n < 0;
99
+
100
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/number.js
101
+ var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER;
102
+ var MIN_SAFE_INTEGER = Number.MIN_SAFE_INTEGER;
103
+ var LOWEST_INT32 = 1 << 31;
104
+
105
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/string.js
106
+ var fromCharCode = String.fromCharCode;
107
+ var fromCodePoint = String.fromCodePoint;
108
+ var MAX_UTF16_CHARACTER = fromCharCode(65535);
109
+ var _encodeUtf8Polyfill = (str) => {
110
+ const encodedString = unescape(encodeURIComponent(str));
111
+ const len = encodedString.length;
112
+ const buf = new Uint8Array(len);
113
+ for (let i = 0;i < len; i++) {
114
+ buf[i] = encodedString.codePointAt(i);
115
+ }
116
+ return buf;
117
+ };
118
+ var utf8TextEncoder = typeof TextEncoder !== "undefined" ? new TextEncoder : null;
119
+ var _encodeUtf8Native = (str) => utf8TextEncoder.encode(str);
120
+ var encodeUtf8 = utf8TextEncoder ? _encodeUtf8Native : _encodeUtf8Polyfill;
121
+ var _decodeUtf8Polyfill = (buf) => {
122
+ let remainingLen = buf.length;
123
+ let encodedString = "";
124
+ let bufPos = 0;
125
+ while (remainingLen > 0) {
126
+ const nextLen = remainingLen < 1e4 ? remainingLen : 1e4;
127
+ const bytes = buf.subarray(bufPos, bufPos + nextLen);
128
+ bufPos += nextLen;
129
+ encodedString += String.fromCodePoint.apply(null, bytes);
130
+ remainingLen -= nextLen;
131
+ }
132
+ return decodeURIComponent(escape(encodedString));
133
+ };
134
+ var utf8TextDecoder = typeof TextDecoder === "undefined" ? null : new TextDecoder("utf-8", { fatal: true, ignoreBOM: true });
135
+ if (utf8TextDecoder && utf8TextDecoder.decode(new Uint8Array).length === 1) {
136
+ utf8TextDecoder = null;
137
+ }
138
+ var _decodeUtf8Native = (buf) => utf8TextDecoder.decode(buf);
139
+ var decodeUtf8 = utf8TextDecoder ? _decodeUtf8Native : _decodeUtf8Polyfill;
140
+
141
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/error.js
142
+ var create2 = (s) => new Error(s);
143
+
144
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/encoding.js
145
+ class Encoder {
146
+ constructor() {
147
+ this.cpos = 0;
148
+ this.cbuf = new Uint8Array(100);
149
+ this.bufs = [];
150
+ }
151
+ }
152
+ var createEncoder = () => new Encoder;
153
+ var length = (encoder) => {
154
+ let len = encoder.cpos;
155
+ for (let i = 0;i < encoder.bufs.length; i++) {
156
+ len += encoder.bufs[i].length;
157
+ }
158
+ return len;
159
+ };
160
+ var toUint8Array = (encoder) => {
161
+ const uint8arr = new Uint8Array(length(encoder));
162
+ let curPos = 0;
163
+ for (let i = 0;i < encoder.bufs.length; i++) {
164
+ const d = encoder.bufs[i];
165
+ uint8arr.set(d, curPos);
166
+ curPos += d.length;
167
+ }
168
+ uint8arr.set(new Uint8Array(encoder.cbuf.buffer, 0, encoder.cpos), curPos);
169
+ return uint8arr;
170
+ };
171
+ var write = (encoder, num) => {
172
+ const bufferLen = encoder.cbuf.length;
173
+ if (encoder.cpos === bufferLen) {
174
+ encoder.bufs.push(encoder.cbuf);
175
+ encoder.cbuf = new Uint8Array(bufferLen * 2);
176
+ encoder.cpos = 0;
177
+ }
178
+ encoder.cbuf[encoder.cpos++] = num;
179
+ };
180
+ var writeVarUint = (encoder, num) => {
181
+ while (num > BITS7) {
182
+ write(encoder, BIT8 | BITS7 & num);
183
+ num = floor(num / 128);
184
+ }
185
+ write(encoder, BITS7 & num);
186
+ };
187
+ var _strBuffer = new Uint8Array(30000);
188
+ var _maxStrBSize = _strBuffer.length / 3;
189
+ var _writeVarStringNative = (encoder, str) => {
190
+ if (str.length < _maxStrBSize) {
191
+ const written = utf8TextEncoder.encodeInto(str, _strBuffer).written || 0;
192
+ writeVarUint(encoder, written);
193
+ for (let i = 0;i < written; i++) {
194
+ write(encoder, _strBuffer[i]);
195
+ }
196
+ } else {
197
+ writeVarUint8Array(encoder, encodeUtf8(str));
198
+ }
199
+ };
200
+ var _writeVarStringPolyfill = (encoder, str) => {
201
+ const encodedString = unescape(encodeURIComponent(str));
202
+ const len = encodedString.length;
203
+ writeVarUint(encoder, len);
204
+ for (let i = 0;i < len; i++) {
205
+ write(encoder, encodedString.codePointAt(i));
206
+ }
207
+ };
208
+ var writeVarString = utf8TextEncoder && utf8TextEncoder.encodeInto ? _writeVarStringNative : _writeVarStringPolyfill;
209
+ var writeUint8Array = (encoder, uint8Array) => {
210
+ const bufferLen = encoder.cbuf.length;
211
+ const cpos = encoder.cpos;
212
+ const leftCopyLen = min(bufferLen - cpos, uint8Array.length);
213
+ const rightCopyLen = uint8Array.length - leftCopyLen;
214
+ encoder.cbuf.set(uint8Array.subarray(0, leftCopyLen), cpos);
215
+ encoder.cpos += leftCopyLen;
216
+ if (rightCopyLen > 0) {
217
+ encoder.bufs.push(encoder.cbuf);
218
+ encoder.cbuf = new Uint8Array(max(bufferLen * 2, rightCopyLen));
219
+ encoder.cbuf.set(uint8Array.subarray(leftCopyLen));
220
+ encoder.cpos = rightCopyLen;
221
+ }
222
+ };
223
+ var writeVarUint8Array = (encoder, uint8Array) => {
224
+ writeVarUint(encoder, uint8Array.byteLength);
225
+ writeUint8Array(encoder, uint8Array);
226
+ };
227
+ var floatTestBed = new DataView(new ArrayBuffer(4));
228
+
229
+ // ../../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/decoding.js
230
+ var errorUnexpectedEndOfArray = create2("Unexpected end of array");
231
+ var errorIntegerOutOfRange = create2("Integer out of Range");
232
+
233
+ class Decoder {
234
+ constructor(uint8Array) {
235
+ this.arr = uint8Array;
236
+ this.pos = 0;
237
+ }
238
+ }
239
+ var createDecoder = (uint8Array) => new Decoder(uint8Array);
240
+ var hasContent = (decoder) => decoder.pos !== decoder.arr.length;
241
+ var clone = (decoder, newPos = decoder.pos) => {
242
+ const _decoder = createDecoder(decoder.arr);
243
+ _decoder.pos = newPos;
244
+ return _decoder;
245
+ };
246
+ var readUint8Array = (decoder, len) => {
247
+ const view = new Uint8Array(decoder.arr.buffer, decoder.pos + decoder.arr.byteOffset, len);
248
+ decoder.pos += len;
249
+ return view;
250
+ };
251
+ var readVarUint8Array = (decoder) => readUint8Array(decoder, readVarUint(decoder));
252
+ var readTailAsUint8Array = (decoder) => readUint8Array(decoder, decoder.arr.length - decoder.pos);
253
+ var skip8 = (decoder) => decoder.pos++;
254
+ var readUint8 = (decoder) => decoder.arr[decoder.pos++];
255
+ var readUint16 = (decoder) => {
256
+ const uint = decoder.arr[decoder.pos] + (decoder.arr[decoder.pos + 1] << 8);
257
+ decoder.pos += 2;
258
+ return uint;
259
+ };
260
+ var readUint32 = (decoder) => {
261
+ const uint = decoder.arr[decoder.pos] + (decoder.arr[decoder.pos + 1] << 8) + (decoder.arr[decoder.pos + 2] << 16) + (decoder.arr[decoder.pos + 3] << 24) >>> 0;
262
+ decoder.pos += 4;
263
+ return uint;
264
+ };
265
+ var readUint32BigEndian = (decoder) => {
266
+ const uint = decoder.arr[decoder.pos + 3] + (decoder.arr[decoder.pos + 2] << 8) + (decoder.arr[decoder.pos + 1] << 16) + (decoder.arr[decoder.pos] << 24) >>> 0;
267
+ decoder.pos += 4;
268
+ return uint;
269
+ };
270
+ var peekUint8 = (decoder) => decoder.arr[decoder.pos];
271
+ var peekUint16 = (decoder) => decoder.arr[decoder.pos] + (decoder.arr[decoder.pos + 1] << 8);
272
+ var peekUint32 = (decoder) => decoder.arr[decoder.pos] + (decoder.arr[decoder.pos + 1] << 8) + (decoder.arr[decoder.pos + 2] << 16) + (decoder.arr[decoder.pos + 3] << 24) >>> 0;
273
+ var readVarUint = (decoder) => {
274
+ let num = 0;
275
+ let mult = 1;
276
+ const len = decoder.arr.length;
277
+ while (decoder.pos < len) {
278
+ const r = decoder.arr[decoder.pos++];
279
+ num = num + (r & BITS7) * mult;
280
+ mult *= 128;
281
+ if (r < BIT8) {
282
+ return num;
283
+ }
284
+ if (num > MAX_SAFE_INTEGER) {
285
+ throw errorIntegerOutOfRange;
286
+ }
287
+ }
288
+ throw errorUnexpectedEndOfArray;
289
+ };
290
+ var readVarInt = (decoder) => {
291
+ let r = decoder.arr[decoder.pos++];
292
+ let num = r & BITS6;
293
+ let mult = 64;
294
+ const sign = (r & BIT7) > 0 ? -1 : 1;
295
+ if ((r & BIT8) === 0) {
296
+ return sign * num;
297
+ }
298
+ const len = decoder.arr.length;
299
+ while (decoder.pos < len) {
300
+ r = decoder.arr[decoder.pos++];
301
+ num = num + (r & BITS7) * mult;
302
+ mult *= 128;
303
+ if (r < BIT8) {
304
+ return sign * num;
305
+ }
306
+ if (num > MAX_SAFE_INTEGER) {
307
+ throw errorIntegerOutOfRange;
308
+ }
309
+ }
310
+ throw errorUnexpectedEndOfArray;
311
+ };
312
+ var peekVarUint = (decoder) => {
313
+ const pos = decoder.pos;
314
+ const s = readVarUint(decoder);
315
+ decoder.pos = pos;
316
+ return s;
317
+ };
318
+ var peekVarInt = (decoder) => {
319
+ const pos = decoder.pos;
320
+ const s = readVarInt(decoder);
321
+ decoder.pos = pos;
322
+ return s;
323
+ };
324
+ var _readVarStringPolyfill = (decoder) => {
325
+ let remainingLen = readVarUint(decoder);
326
+ if (remainingLen === 0) {
327
+ return "";
328
+ } else {
329
+ let encodedString = String.fromCodePoint(readUint8(decoder));
330
+ if (--remainingLen < 100) {
331
+ while (remainingLen--) {
332
+ encodedString += String.fromCodePoint(readUint8(decoder));
333
+ }
334
+ } else {
335
+ while (remainingLen > 0) {
336
+ const nextLen = remainingLen < 1e4 ? remainingLen : 1e4;
337
+ const bytes = decoder.arr.subarray(decoder.pos, decoder.pos + nextLen);
338
+ decoder.pos += nextLen;
339
+ encodedString += String.fromCodePoint.apply(null, bytes);
340
+ remainingLen -= nextLen;
341
+ }
342
+ }
343
+ return decodeURIComponent(escape(encodedString));
344
+ }
345
+ };
346
+ var _readVarStringNative = (decoder) => utf8TextDecoder.decode(readVarUint8Array(decoder));
347
+ var readVarString = utf8TextDecoder ? _readVarStringNative : _readVarStringPolyfill;
348
+ var readTerminatedUint8Array = (decoder) => {
349
+ const encoder = createEncoder();
350
+ let b;
351
+ while (true) {
352
+ b = readUint8(decoder);
353
+ if (b === 0) {
354
+ return toUint8Array(encoder);
355
+ }
356
+ if (b === 1) {
357
+ b = readUint8(decoder);
358
+ }
359
+ write(encoder, b);
360
+ }
361
+ };
362
+ var readTerminatedString = (decoder) => decodeUtf8(readTerminatedUint8Array(decoder));
363
+ var peekVarString = (decoder) => {
364
+ const pos = decoder.pos;
365
+ const s = readVarString(decoder);
366
+ decoder.pos = pos;
367
+ return s;
368
+ };
369
+ var readFromDataView = (decoder, len) => {
370
+ const dv = new DataView(decoder.arr.buffer, decoder.arr.byteOffset + decoder.pos, len);
371
+ decoder.pos += len;
372
+ return dv;
373
+ };
374
+ var readFloat32 = (decoder) => readFromDataView(decoder, 4).getFloat32(0, false);
375
+ var readFloat64 = (decoder) => readFromDataView(decoder, 8).getFloat64(0, false);
376
+ var readBigInt64 = (decoder) => readFromDataView(decoder, 8).getBigInt64(0, false);
377
+ var readBigUint64 = (decoder) => readFromDataView(decoder, 8).getBigUint64(0, false);
378
+ var readAnyLookupTable = [
379
+ (decoder) => {
380
+ return;
381
+ },
382
+ (decoder) => null,
383
+ readVarInt,
384
+ readFloat32,
385
+ readFloat64,
386
+ readBigInt64,
387
+ (decoder) => false,
388
+ (decoder) => true,
389
+ readVarString,
390
+ (decoder) => {
391
+ const len = readVarUint(decoder);
392
+ const obj = {};
393
+ for (let i = 0;i < len; i++) {
394
+ const key = readVarString(decoder);
395
+ obj[key] = readAny(decoder);
396
+ }
397
+ return obj;
398
+ },
399
+ (decoder) => {
400
+ const len = readVarUint(decoder);
401
+ const arr = [];
402
+ for (let i = 0;i < len; i++) {
403
+ arr.push(readAny(decoder));
404
+ }
405
+ return arr;
406
+ },
407
+ readVarUint8Array
408
+ ];
409
+ var readAny = (decoder) => readAnyLookupTable[127 - readUint8(decoder)](decoder);
410
+
411
+ class RleDecoder extends Decoder {
412
+ constructor(uint8Array, reader) {
413
+ super(uint8Array);
414
+ this.reader = reader;
415
+ this.s = null;
416
+ this.count = 0;
417
+ }
418
+ read() {
419
+ if (this.count === 0) {
420
+ this.s = this.reader(this);
421
+ if (hasContent(this)) {
422
+ this.count = readVarUint(this) + 1;
423
+ } else {
424
+ this.count = -1;
425
+ }
426
+ }
427
+ this.count--;
428
+ return this.s;
429
+ }
430
+ }
431
+
432
+ class IntDiffDecoder extends Decoder {
433
+ constructor(uint8Array, start) {
434
+ super(uint8Array);
435
+ this.s = start;
436
+ }
437
+ read() {
438
+ this.s += readVarInt(this);
439
+ return this.s;
440
+ }
441
+ }
442
+
443
+ class RleIntDiffDecoder extends Decoder {
444
+ constructor(uint8Array, start) {
445
+ super(uint8Array);
446
+ this.s = start;
447
+ this.count = 0;
448
+ }
449
+ read() {
450
+ if (this.count === 0) {
451
+ this.s += readVarInt(this);
452
+ if (hasContent(this)) {
453
+ this.count = readVarUint(this) + 1;
454
+ } else {
455
+ this.count = -1;
456
+ }
457
+ }
458
+ this.count--;
459
+ return this.s;
460
+ }
461
+ }
462
+
463
+ class UintOptRleDecoder extends Decoder {
464
+ constructor(uint8Array) {
465
+ super(uint8Array);
466
+ this.s = 0;
467
+ this.count = 0;
468
+ }
469
+ read() {
470
+ if (this.count === 0) {
471
+ this.s = readVarInt(this);
472
+ const isNegative = isNegativeZero(this.s);
473
+ this.count = 1;
474
+ if (isNegative) {
475
+ this.s = -this.s;
476
+ this.count = readVarUint(this) + 2;
477
+ }
478
+ }
479
+ this.count--;
480
+ return this.s;
481
+ }
482
+ }
483
+
484
+ class IncUintOptRleDecoder extends Decoder {
485
+ constructor(uint8Array) {
486
+ super(uint8Array);
487
+ this.s = 0;
488
+ this.count = 0;
489
+ }
490
+ read() {
491
+ if (this.count === 0) {
492
+ this.s = readVarInt(this);
493
+ const isNegative = isNegativeZero(this.s);
494
+ this.count = 1;
495
+ if (isNegative) {
496
+ this.s = -this.s;
497
+ this.count = readVarUint(this) + 2;
498
+ }
499
+ }
500
+ this.count--;
501
+ return this.s++;
502
+ }
503
+ }
504
+
505
+ class IntDiffOptRleDecoder extends Decoder {
506
+ constructor(uint8Array) {
507
+ super(uint8Array);
508
+ this.s = 0;
509
+ this.count = 0;
510
+ this.diff = 0;
511
+ }
512
+ read() {
513
+ if (this.count === 0) {
514
+ const diff = readVarInt(this);
515
+ const hasCount = diff & 1;
516
+ this.diff = floor(diff / 2);
517
+ this.count = 1;
518
+ if (hasCount) {
519
+ this.count = readVarUint(this) + 2;
520
+ }
521
+ }
522
+ this.s += this.diff;
523
+ this.count--;
524
+ return this.s;
525
+ }
526
+ }
527
+
528
+ class StringDecoder {
529
+ constructor(uint8Array) {
530
+ this.decoder = new UintOptRleDecoder(uint8Array);
531
+ this.str = readVarString(this.decoder);
532
+ this.spos = 0;
533
+ }
534
+ read() {
535
+ const end = this.spos + this.decoder.read();
536
+ const res = this.str.slice(this.spos, end);
537
+ this.spos = end;
538
+ return res;
539
+ }
540
+ }
541
+
542
+ // synth:/home/runner/work/maude/maude/plugins/design/dev-server/.runtime-bundle-lib0_decoding-entry.tsx
543
+ var {
544
+ Decoder: Decoder2,
545
+ IncUintOptRleDecoder: IncUintOptRleDecoder2,
546
+ IntDiffDecoder: IntDiffDecoder2,
547
+ IntDiffOptRleDecoder: IntDiffOptRleDecoder2,
548
+ RleDecoder: RleDecoder2,
549
+ RleIntDiffDecoder: RleIntDiffDecoder2,
550
+ StringDecoder: StringDecoder2,
551
+ UintOptRleDecoder: UintOptRleDecoder2,
552
+ _readVarStringNative: _readVarStringNative2,
553
+ _readVarStringPolyfill: _readVarStringPolyfill2,
554
+ clone: clone2,
555
+ createDecoder: createDecoder2,
556
+ hasContent: hasContent2,
557
+ peekUint16: peekUint162,
558
+ peekUint32: peekUint322,
559
+ peekUint8: peekUint82,
560
+ peekVarInt: peekVarInt2,
561
+ peekVarString: peekVarString2,
562
+ peekVarUint: peekVarUint2,
563
+ readAny: readAny2,
564
+ readBigInt64: readBigInt642,
565
+ readBigUint64: readBigUint642,
566
+ readFloat32: readFloat322,
567
+ readFloat64: readFloat642,
568
+ readFromDataView: readFromDataView2,
569
+ readTailAsUint8Array: readTailAsUint8Array2,
570
+ readTerminatedString: readTerminatedString2,
571
+ readTerminatedUint8Array: readTerminatedUint8Array2,
572
+ readUint16: readUint162,
573
+ readUint32: readUint322,
574
+ readUint32BigEndian: readUint32BigEndian2,
575
+ readUint8: readUint82,
576
+ readUint8Array: readUint8Array2,
577
+ readVarInt: readVarInt2,
578
+ readVarString: readVarString2,
579
+ readVarUint: readVarUint2,
580
+ readVarUint8Array: readVarUint8Array2,
581
+ skip8: skip82
582
+ } = exports_decoding;
583
+ var __runtime_bundle_lib0_decoding_entry_default = exports_decoding;
584
+ export {
585
+ skip82 as skip8,
586
+ readVarUint8Array2 as readVarUint8Array,
587
+ readVarUint2 as readVarUint,
588
+ readVarString2 as readVarString,
589
+ readVarInt2 as readVarInt,
590
+ readUint8Array2 as readUint8Array,
591
+ readUint82 as readUint8,
592
+ readUint32BigEndian2 as readUint32BigEndian,
593
+ readUint322 as readUint32,
594
+ readUint162 as readUint16,
595
+ readTerminatedUint8Array2 as readTerminatedUint8Array,
596
+ readTerminatedString2 as readTerminatedString,
597
+ readTailAsUint8Array2 as readTailAsUint8Array,
598
+ readFromDataView2 as readFromDataView,
599
+ readFloat642 as readFloat64,
600
+ readFloat322 as readFloat32,
601
+ readBigUint642 as readBigUint64,
602
+ readBigInt642 as readBigInt64,
603
+ readAny2 as readAny,
604
+ peekVarUint2 as peekVarUint,
605
+ peekVarString2 as peekVarString,
606
+ peekVarInt2 as peekVarInt,
607
+ peekUint82 as peekUint8,
608
+ peekUint322 as peekUint32,
609
+ peekUint162 as peekUint16,
610
+ hasContent2 as hasContent,
611
+ __runtime_bundle_lib0_decoding_entry_default as default,
612
+ createDecoder2 as createDecoder,
613
+ clone2 as clone,
614
+ _readVarStringPolyfill2 as _readVarStringPolyfill,
615
+ _readVarStringNative2 as _readVarStringNative,
616
+ UintOptRleDecoder2 as UintOptRleDecoder,
617
+ StringDecoder2 as StringDecoder,
618
+ RleIntDiffDecoder2 as RleIntDiffDecoder,
619
+ RleDecoder2 as RleDecoder,
620
+ IntDiffOptRleDecoder2 as IntDiffOptRleDecoder,
621
+ IntDiffDecoder2 as IntDiffDecoder,
622
+ IncUintOptRleDecoder2 as IncUintOptRleDecoder,
623
+ Decoder2 as Decoder
624
+ };