@mikrojs/quickjs 0.8.0-pr-115.g87a99f9 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deps/quickjs/api-test.c +127 -18
- package/deps/quickjs/builtin-array-fromasync.h +72 -72
- package/deps/quickjs/builtin-iterator-zip-keyed.h +233 -233
- package/deps/quickjs/builtin-iterator-zip.h +236 -236
- package/deps/quickjs/quickjs-atom.h +12 -0
- package/deps/quickjs/quickjs-libc.c +1 -1
- package/deps/quickjs/quickjs-opcode.h +9 -1
- package/deps/quickjs/quickjs.c +2705 -196
- package/deps/quickjs/quickjs.h +21 -38
- package/package.json +1 -1
package/deps/quickjs/api-test.c
CHANGED
|
@@ -7,6 +7,15 @@
|
|
|
7
7
|
#include "quickjs.h"
|
|
8
8
|
#include "cutils.h"
|
|
9
9
|
|
|
10
|
+
static JSRuntime *new_runtime(void)
|
|
11
|
+
{
|
|
12
|
+
JSRuntime *rt = JS_NewRuntime();
|
|
13
|
+
|
|
14
|
+
if (rt)
|
|
15
|
+
JS_SetDumpFlags(rt, JS_ABORT_ON_LEAKS);
|
|
16
|
+
return rt;
|
|
17
|
+
}
|
|
18
|
+
|
|
10
19
|
static JSValue eval(JSContext *ctx, const char *code)
|
|
11
20
|
{
|
|
12
21
|
return JS_Eval(ctx, code, strlen(code), "<input>", JS_EVAL_TYPE_GLOBAL);
|
|
@@ -46,7 +55,7 @@ static void cfunctions(void)
|
|
|
46
55
|
const char *s;
|
|
47
56
|
JSValue ret, stack;
|
|
48
57
|
|
|
49
|
-
JSRuntime *rt =
|
|
58
|
+
JSRuntime *rt = new_runtime();
|
|
50
59
|
JSContext *ctx = JS_NewContext(rt);
|
|
51
60
|
JSValue cfunc = JS_NewCFunction(ctx, cfunc_callback, "cfunc", 42);
|
|
52
61
|
JSValue cfuncdata =
|
|
@@ -179,7 +188,7 @@ static void sync_call(void)
|
|
|
179
188
|
} catch (e) {} \
|
|
180
189
|
})();";
|
|
181
190
|
|
|
182
|
-
JSRuntime *rt =
|
|
191
|
+
JSRuntime *rt = new_runtime();
|
|
183
192
|
JSContext *ctx = JS_NewContext(rt);
|
|
184
193
|
int time = 0;
|
|
185
194
|
JS_SetInterruptHandler(rt, timeout_interrupt_handler, &time);
|
|
@@ -206,7 +215,7 @@ static void async_call(void)
|
|
|
206
215
|
await loop().catch(() => {}); \
|
|
207
216
|
})();";
|
|
208
217
|
|
|
209
|
-
JSRuntime *rt =
|
|
218
|
+
JSRuntime *rt = new_runtime();
|
|
210
219
|
JSContext *ctx = JS_NewContext(rt);
|
|
211
220
|
int time = 0;
|
|
212
221
|
JS_SetInterruptHandler(rt, timeout_interrupt_handler, &time);
|
|
@@ -250,7 +259,7 @@ static void async_call_stack_overflow(void)
|
|
|
250
259
|
} \
|
|
251
260
|
})();";
|
|
252
261
|
|
|
253
|
-
JSRuntime *rt =
|
|
262
|
+
JSRuntime *rt = new_runtime();
|
|
254
263
|
JSContext *ctx = JS_NewContext(rt);
|
|
255
264
|
JSValue value = JS_UNDEFINED;
|
|
256
265
|
JS_SetContextOpaque(ctx, &value);
|
|
@@ -276,7 +285,7 @@ static void async_call_stack_overflow(void)
|
|
|
276
285
|
// https://github.com/quickjs-ng/quickjs/issues/914
|
|
277
286
|
static void raw_context_global_var(void)
|
|
278
287
|
{
|
|
279
|
-
JSRuntime *rt =
|
|
288
|
+
JSRuntime *rt = new_runtime();
|
|
280
289
|
JSContext *ctx = JS_NewContextRaw(rt);
|
|
281
290
|
JS_AddIntrinsicEval(ctx);
|
|
282
291
|
{
|
|
@@ -300,7 +309,7 @@ static void raw_context_global_var(void)
|
|
|
300
309
|
|
|
301
310
|
static void is_array(void)
|
|
302
311
|
{
|
|
303
|
-
JSRuntime *rt =
|
|
312
|
+
JSRuntime *rt = new_runtime();
|
|
304
313
|
JSContext *ctx = JS_NewContext(rt);
|
|
305
314
|
{
|
|
306
315
|
JSValue ret = eval(ctx, "[]");
|
|
@@ -347,7 +356,7 @@ static JSModuleDef *loader(JSContext *ctx, const char *name, void *opaque)
|
|
|
347
356
|
|
|
348
357
|
static void module_serde(void)
|
|
349
358
|
{
|
|
350
|
-
JSRuntime *rt =
|
|
359
|
+
JSRuntime *rt = new_runtime();
|
|
351
360
|
//JS_SetDumpFlags(rt, JS_DUMP_MODULE_RESOLVE);
|
|
352
361
|
JS_SetModuleLoaderFunc(rt, NULL, loader, NULL);
|
|
353
362
|
JSContext *ctx = JS_NewContext(rt);
|
|
@@ -384,7 +393,7 @@ static void module_serde(void)
|
|
|
384
393
|
|
|
385
394
|
static void runtime_cstring_free(void)
|
|
386
395
|
{
|
|
387
|
-
JSRuntime *rt =
|
|
396
|
+
JSRuntime *rt = new_runtime();
|
|
388
397
|
JSContext *ctx = JS_NewContext(rt);
|
|
389
398
|
// string -> cstring + JS_FreeCStringRT
|
|
390
399
|
{
|
|
@@ -422,7 +431,7 @@ static void runtime_cstring_free(void)
|
|
|
422
431
|
|
|
423
432
|
static void utf16_string(void)
|
|
424
433
|
{
|
|
425
|
-
JSRuntime *rt =
|
|
434
|
+
JSRuntime *rt = new_runtime();
|
|
426
435
|
JSContext *ctx = JS_NewContext(rt);
|
|
427
436
|
{
|
|
428
437
|
JSValue v = JS_NewStringUTF16(ctx, NULL, 0);
|
|
@@ -477,6 +486,17 @@ static void utf16_string(void)
|
|
|
477
486
|
JS_FreeCStringUTF16(ctx, u);
|
|
478
487
|
JS_FreeValue(ctx, v);
|
|
479
488
|
}
|
|
489
|
+
{
|
|
490
|
+
JSValue v = JS_NewStringUTF16(ctx, NULL, (size_t)INT_MAX + 1);
|
|
491
|
+
assert(JS_IsException(v));
|
|
492
|
+
JSValue e = JS_GetException(ctx);
|
|
493
|
+
assert(JS_IsError(e));
|
|
494
|
+
const char *s = JS_ToCString(ctx, e);
|
|
495
|
+
assert(s);
|
|
496
|
+
assert(strstr(s, "invalid string length") != NULL);
|
|
497
|
+
JS_FreeCString(ctx, s);
|
|
498
|
+
JS_FreeValue(ctx, e);
|
|
499
|
+
}
|
|
480
500
|
JS_FreeContext(ctx);
|
|
481
501
|
JS_FreeRuntime(rt);
|
|
482
502
|
}
|
|
@@ -493,7 +513,7 @@ function addItem() { \
|
|
|
493
513
|
}";
|
|
494
514
|
static const char test_code[] = "addItem()";
|
|
495
515
|
|
|
496
|
-
JSRuntime *rt =
|
|
516
|
+
JSRuntime *rt = new_runtime();
|
|
497
517
|
JSContext *ctx = JS_NewContext(rt);
|
|
498
518
|
|
|
499
519
|
JSValue ret = eval(ctx, init_code);
|
|
@@ -549,7 +569,7 @@ static void promise_hook(void)
|
|
|
549
569
|
{
|
|
550
570
|
int *cc = promise_hook_state.hook_type_call_count;
|
|
551
571
|
JSContext *unused;
|
|
552
|
-
JSRuntime *rt =
|
|
572
|
+
JSRuntime *rt = new_runtime();
|
|
553
573
|
//JS_SetDumpFlags(rt, JS_DUMP_PROMISE);
|
|
554
574
|
JS_SetPromiseHook(rt, promise_hook_cb, &promise_hook_state);
|
|
555
575
|
JSContext *ctx = JS_NewContext(rt);
|
|
@@ -693,7 +713,7 @@ static void dump_memory_usage(void)
|
|
|
693
713
|
JSRuntime *rt = NULL;
|
|
694
714
|
JSContext *ctx = NULL;
|
|
695
715
|
|
|
696
|
-
rt =
|
|
716
|
+
rt = new_runtime();
|
|
697
717
|
ctx = JS_NewContext(rt);
|
|
698
718
|
|
|
699
719
|
//JS_SetDumpFlags(rt, JS_DUMP_PROMISE);
|
|
@@ -734,7 +754,7 @@ static void new_errors(void)
|
|
|
734
754
|
};
|
|
735
755
|
const Entry *e;
|
|
736
756
|
|
|
737
|
-
JSRuntime *rt =
|
|
757
|
+
JSRuntime *rt = new_runtime();
|
|
738
758
|
JSContext *ctx = JS_NewContext(rt);
|
|
739
759
|
for (e = entries; e < endof(entries); e++) {
|
|
740
760
|
JSValue obj = (*e->func)(ctx, "the %s", "needle");
|
|
@@ -756,6 +776,37 @@ static void new_errors(void)
|
|
|
756
776
|
JS_FreeRuntime(rt);
|
|
757
777
|
}
|
|
758
778
|
|
|
779
|
+
static void backtrace_oom_current_exception(void)
|
|
780
|
+
{
|
|
781
|
+
static const char setup_code[] =
|
|
782
|
+
"globalThis.f = function() { missing; };\n"
|
|
783
|
+
"Object.defineProperty(f, 'name', { value: 'x'.repeat(2 * 1024 * 1024) });";
|
|
784
|
+
JSMemoryUsage stats;
|
|
785
|
+
JSValue ret, exception;
|
|
786
|
+
JSRuntime *rt;
|
|
787
|
+
JSContext *ctx;
|
|
788
|
+
|
|
789
|
+
rt = new_runtime();
|
|
790
|
+
ctx = JS_NewContext(rt);
|
|
791
|
+
|
|
792
|
+
ret = eval(ctx, setup_code);
|
|
793
|
+
assert(!JS_IsException(ret));
|
|
794
|
+
JS_FreeValue(ctx, ret);
|
|
795
|
+
|
|
796
|
+
JS_ComputeMemoryUsage(rt, &stats);
|
|
797
|
+
JS_SetMemoryLimit(rt, (size_t)stats.malloc_size + 128 * 1024);
|
|
798
|
+
|
|
799
|
+
ret = eval(ctx, "f()");
|
|
800
|
+
assert(JS_IsException(ret));
|
|
801
|
+
assert(JS_HasException(ctx));
|
|
802
|
+
exception = JS_GetException(ctx);
|
|
803
|
+
JS_FreeValue(ctx, exception);
|
|
804
|
+
JS_SetMemoryLimit(rt, 0);
|
|
805
|
+
|
|
806
|
+
JS_FreeContext(ctx);
|
|
807
|
+
JS_FreeRuntime(rt);
|
|
808
|
+
}
|
|
809
|
+
|
|
759
810
|
static int gop_get_own_property(JSContext *ctx, JSPropertyDescriptor *desc,
|
|
760
811
|
JSValueConst obj, JSAtom prop)
|
|
761
812
|
{
|
|
@@ -788,7 +839,7 @@ static void global_object_prototype(void)
|
|
|
788
839
|
int res;
|
|
789
840
|
|
|
790
841
|
{
|
|
791
|
-
rt =
|
|
842
|
+
rt = new_runtime();
|
|
792
843
|
ctx = JS_NewContext(rt);
|
|
793
844
|
proto = JS_NewObject(ctx);
|
|
794
845
|
assert(JS_IsObject(proto));
|
|
@@ -817,7 +868,7 @@ static void global_object_prototype(void)
|
|
|
817
868
|
.class_name = "Global Object",
|
|
818
869
|
.exotic = &exotic,
|
|
819
870
|
};
|
|
820
|
-
rt =
|
|
871
|
+
rt = new_runtime();
|
|
821
872
|
class_id = 0;
|
|
822
873
|
JS_NewClassID(rt, &class_id);
|
|
823
874
|
res = JS_NewClass(rt, class_id, &def);
|
|
@@ -845,7 +896,7 @@ static void global_object_prototype(void)
|
|
|
845
896
|
// https://github.com/quickjs-ng/quickjs/issues/1178
|
|
846
897
|
static void slice_string_tocstring(void)
|
|
847
898
|
{
|
|
848
|
-
JSRuntime *rt =
|
|
899
|
+
JSRuntime *rt = new_runtime();
|
|
849
900
|
JSContext *ctx = JS_NewContext(rt);
|
|
850
901
|
JSValue ret = eval(ctx, "'.'.repeat(16384).slice(1, -1)");
|
|
851
902
|
assert(!JS_IsException(ret));
|
|
@@ -865,7 +916,7 @@ static void immutable_array_buffer(void)
|
|
|
865
916
|
char buf[96];
|
|
866
917
|
int i, v;
|
|
867
918
|
|
|
868
|
-
JSRuntime *rt =
|
|
919
|
+
JSRuntime *rt = new_runtime();
|
|
869
920
|
JSContext *ctx = JS_NewContext(rt);
|
|
870
921
|
for (i = 0; i < 2; i++) {
|
|
871
922
|
obj = JS_NewObject(ctx);
|
|
@@ -907,7 +958,7 @@ static void immutable_array_buffer(void)
|
|
|
907
958
|
|
|
908
959
|
static void get_uint8array(void)
|
|
909
960
|
{
|
|
910
|
-
JSRuntime *rt =
|
|
961
|
+
JSRuntime *rt = new_runtime();
|
|
911
962
|
JSContext *ctx = JS_NewContext(rt);
|
|
912
963
|
JSValue val;
|
|
913
964
|
uint8_t *p;
|
|
@@ -962,6 +1013,62 @@ static void get_uint8array(void)
|
|
|
962
1013
|
JS_FreeRuntime(rt);
|
|
963
1014
|
}
|
|
964
1015
|
|
|
1016
|
+
static void new_symbol(void)
|
|
1017
|
+
{
|
|
1018
|
+
JSRuntime *rt = new_runtime();
|
|
1019
|
+
JSContext *ctx = JS_NewContext(rt);
|
|
1020
|
+
JSValue global = JS_GetGlobalObject(ctx);
|
|
1021
|
+
JSValue sym, ret;
|
|
1022
|
+
|
|
1023
|
+
/* Local symbol with NULL description -> Symbol() */
|
|
1024
|
+
sym = JS_NewSymbol(ctx, NULL, false);
|
|
1025
|
+
assert(!JS_IsException(sym));
|
|
1026
|
+
assert(JS_IsSymbol(sym));
|
|
1027
|
+
JS_SetPropertyStr(ctx, global, "sym_local_null", sym);
|
|
1028
|
+
|
|
1029
|
+
ret = eval(ctx, "typeof sym_local_null === 'symbol' && sym_local_null.description === undefined && Symbol.keyFor(sym_local_null) === undefined");
|
|
1030
|
+
assert(JS_IsBool(ret));
|
|
1031
|
+
assert(JS_VALUE_GET_BOOL(ret));
|
|
1032
|
+
JS_FreeValue(ctx, ret);
|
|
1033
|
+
|
|
1034
|
+
/* Global symbol with NULL description -> Symbol.for() -> Symbol.for('undefined') */
|
|
1035
|
+
sym = JS_NewSymbol(ctx, NULL, true);
|
|
1036
|
+
assert(!JS_IsException(sym));
|
|
1037
|
+
assert(JS_IsSymbol(sym));
|
|
1038
|
+
JS_SetPropertyStr(ctx, global, "sym_global_null", sym);
|
|
1039
|
+
|
|
1040
|
+
ret = eval(ctx, "typeof sym_global_null === 'symbol' && sym_global_null.description === 'undefined' && Symbol.keyFor(sym_global_null) === 'undefined'");
|
|
1041
|
+
assert(JS_IsBool(ret));
|
|
1042
|
+
assert(JS_VALUE_GET_BOOL(ret));
|
|
1043
|
+
JS_FreeValue(ctx, ret);
|
|
1044
|
+
|
|
1045
|
+
/* Local symbol with description -> Symbol('test_local') */
|
|
1046
|
+
sym = JS_NewSymbol(ctx, "test_local", false);
|
|
1047
|
+
assert(!JS_IsException(sym));
|
|
1048
|
+
assert(JS_IsSymbol(sym));
|
|
1049
|
+
JS_SetPropertyStr(ctx, global, "sym_local_str", sym);
|
|
1050
|
+
|
|
1051
|
+
ret = eval(ctx, "sym_local_str.description === 'test_local' && Symbol.keyFor(sym_local_str) === undefined");
|
|
1052
|
+
assert(JS_IsBool(ret));
|
|
1053
|
+
assert(JS_VALUE_GET_BOOL(ret));
|
|
1054
|
+
JS_FreeValue(ctx, ret);
|
|
1055
|
+
|
|
1056
|
+
/* Global symbol with description -> Symbol.for('test_global') */
|
|
1057
|
+
sym = JS_NewSymbol(ctx, "test_global", true);
|
|
1058
|
+
assert(!JS_IsException(sym));
|
|
1059
|
+
assert(JS_IsSymbol(sym));
|
|
1060
|
+
JS_SetPropertyStr(ctx, global, "sym_global_str", sym);
|
|
1061
|
+
|
|
1062
|
+
ret = eval(ctx, "sym_global_str.description === 'test_global' && Symbol.keyFor(sym_global_str) === 'test_global'");
|
|
1063
|
+
assert(JS_IsBool(ret));
|
|
1064
|
+
assert(JS_VALUE_GET_BOOL(ret));
|
|
1065
|
+
JS_FreeValue(ctx, ret);
|
|
1066
|
+
|
|
1067
|
+
JS_FreeValue(ctx, global);
|
|
1068
|
+
JS_FreeContext(ctx);
|
|
1069
|
+
JS_FreeRuntime(rt);
|
|
1070
|
+
}
|
|
1071
|
+
|
|
965
1072
|
int main(void)
|
|
966
1073
|
{
|
|
967
1074
|
cfunctions();
|
|
@@ -977,9 +1084,11 @@ int main(void)
|
|
|
977
1084
|
promise_hook();
|
|
978
1085
|
dump_memory_usage();
|
|
979
1086
|
new_errors();
|
|
1087
|
+
backtrace_oom_current_exception();
|
|
980
1088
|
global_object_prototype();
|
|
981
1089
|
slice_string_tocstring();
|
|
982
1090
|
immutable_array_buffer();
|
|
983
1091
|
get_uint8array();
|
|
1092
|
+
new_symbol();
|
|
984
1093
|
return 0;
|
|
985
1094
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
const uint32_t qjsc_builtin_array_fromasync_size = 875;
|
|
6
6
|
|
|
7
7
|
const uint8_t qjsc_builtin_array_fromasync[875] = {
|
|
8
|
-
|
|
8
|
+
0x1a, 0x29, 0xd1, 0x7b, 0x48, 0x0e, 0x01, 0x28,
|
|
9
9
|
0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0xb7, 0x61,
|
|
10
10
|
0x73, 0x79, 0x6e, 0x63, 0x49, 0x74, 0x65, 0x72,
|
|
11
11
|
0x61, 0x74, 0x6f, 0x72, 0x01, 0x2a, 0x4f, 0x62,
|
|
@@ -25,95 +25,95 @@ const uint8_t qjsc_builtin_array_fromasync[875] = {
|
|
|
25
25
|
0x08, 0x69, 0x74, 0x65, 0x72, 0x01, 0x1c, 0x6e,
|
|
26
26
|
0x6f, 0x74, 0x20, 0x61, 0x20, 0x66, 0x75, 0x6e,
|
|
27
27
|
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x01, 0x08, 0x63,
|
|
28
|
-
0x61, 0x6c, 0x6c, 0x0c, 0x00, 0x02, 0x00,
|
|
28
|
+
0x61, 0x6c, 0x6c, 0x0c, 0x00, 0x02, 0x00, 0xa8,
|
|
29
29
|
0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01,
|
|
30
|
-
0x04, 0x01,
|
|
30
|
+
0x04, 0x01, 0xaa, 0x01, 0x00, 0x00, 0x00, 0x0c,
|
|
31
31
|
0x43, 0x02, 0x01, 0x00, 0x05, 0x00, 0x05, 0x01,
|
|
32
|
-
0x05, 0x00, 0x01, 0x03, 0x05,
|
|
33
|
-
0x01, 0x40, 0x03,
|
|
34
|
-
0x00,
|
|
35
|
-
0x03, 0x00, 0x01, 0x40, 0x04,
|
|
36
|
-
0x01, 0x40, 0x02, 0x0c, 0x60, 0x02, 0x01,
|
|
37
|
-
|
|
38
|
-
0x86, 0x04, 0x11,
|
|
39
|
-
|
|
40
|
-
0x01, 0x00,
|
|
41
|
-
0xff, 0x0f, 0x20,
|
|
42
|
-
|
|
43
|
-
0x00, 0x20,
|
|
44
|
-
0x03, 0x02, 0x05, 0x20,
|
|
45
|
-
0x20,
|
|
46
|
-
0x08, 0x20,
|
|
47
|
-
0x03, 0x0a, 0x08, 0x30,
|
|
48
|
-
0x20,
|
|
49
|
-
0x01, 0x00,
|
|
50
|
-
0x02, 0x01,
|
|
51
|
-
0x00, 0x01,
|
|
32
|
+
0x05, 0x00, 0x01, 0x03, 0x05, 0xbe, 0x02, 0x00,
|
|
33
|
+
0x01, 0x40, 0x03, 0xb4, 0x03, 0x00, 0x01, 0x40,
|
|
34
|
+
0x00, 0xe4, 0x03, 0x00, 0x01, 0x40, 0x01, 0xe6,
|
|
35
|
+
0x03, 0x00, 0x01, 0x40, 0x04, 0xe8, 0x03, 0x00,
|
|
36
|
+
0x01, 0x40, 0x02, 0x0c, 0x60, 0x02, 0x01, 0x88,
|
|
37
|
+
0x02, 0x03, 0x0e, 0x01, 0x06, 0x00, 0x05, 0x00,
|
|
38
|
+
0x86, 0x04, 0x11, 0xea, 0x03, 0x00, 0x01, 0x00,
|
|
39
|
+
0xec, 0x03, 0x00, 0x01, 0x00, 0xee, 0x03, 0x00,
|
|
40
|
+
0x01, 0x00, 0xea, 0x03, 0x01, 0xff, 0xff, 0xff,
|
|
41
|
+
0xff, 0x0f, 0x20, 0xec, 0x03, 0x01, 0x01, 0x20,
|
|
42
|
+
0xee, 0x03, 0x01, 0x02, 0x20, 0xf0, 0x03, 0x02,
|
|
43
|
+
0x00, 0x20, 0xf2, 0x03, 0x02, 0x04, 0x20, 0xf4,
|
|
44
|
+
0x03, 0x02, 0x05, 0x20, 0xf6, 0x03, 0x02, 0x06,
|
|
45
|
+
0x20, 0xf8, 0x03, 0x02, 0x07, 0x20, 0x66, 0x06,
|
|
46
|
+
0x08, 0x20, 0x88, 0x01, 0x07, 0x09, 0x20, 0xfa,
|
|
47
|
+
0x03, 0x0a, 0x08, 0x30, 0x88, 0x01, 0x0d, 0x0b,
|
|
48
|
+
0x20, 0xe2, 0x01, 0x0d, 0x0c, 0x20, 0x10, 0x00,
|
|
49
|
+
0x01, 0x00, 0xb4, 0x03, 0x01, 0x01, 0xe4, 0x03,
|
|
50
|
+
0x02, 0x01, 0xe8, 0x03, 0x04, 0x01, 0xbe, 0x02,
|
|
51
|
+
0x00, 0x01, 0xe6, 0x03, 0x03, 0x01, 0x08, 0xc8,
|
|
52
52
|
0x0d, 0x60, 0x02, 0x00, 0x60, 0x01, 0x00, 0x60,
|
|
53
|
-
0x00, 0x00,
|
|
54
|
-
0x08, 0x0e, 0x38,
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
0x00, 0x00, 0xd7, 0xcf, 0xd8, 0x11, 0xf8, 0xf0,
|
|
54
|
+
0x08, 0x0e, 0x38, 0x49, 0x00, 0x00, 0x00, 0xe0,
|
|
55
|
+
0xd0, 0xd9, 0x11, 0xf8, 0xf0, 0x08, 0x0e, 0x38,
|
|
56
|
+
0x49, 0x00, 0x00, 0x00, 0xe1, 0xd1, 0x60, 0x07,
|
|
57
57
|
0x00, 0x60, 0x06, 0x00, 0x60, 0x05, 0x00, 0x60,
|
|
58
|
-
0x04, 0x00, 0x60, 0x03, 0x00,
|
|
59
|
-
0x00, 0x00, 0x00, 0xae,
|
|
60
|
-
0x04, 0x1b, 0x00, 0x00, 0x00, 0xae,
|
|
61
|
-
|
|
62
|
-
0x01, 0x00, 0x30, 0x06,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
0x07, 0xab,
|
|
66
|
-
0x00, 0x0e,
|
|
58
|
+
0x04, 0x00, 0x60, 0x03, 0x00, 0xd8, 0x38, 0x49,
|
|
59
|
+
0x00, 0x00, 0x00, 0xae, 0xf0, 0x16, 0xd8, 0x96,
|
|
60
|
+
0x04, 0x1b, 0x00, 0x00, 0x00, 0xae, 0xf0, 0x0c,
|
|
61
|
+
0xe3, 0x11, 0x04, 0xfe, 0x00, 0x00, 0x00, 0x21,
|
|
62
|
+
0x01, 0x00, 0x30, 0x06, 0xd2, 0xba, 0xc8, 0x04,
|
|
63
|
+
0xc7, 0x0d, 0xfb, 0xc8, 0x05, 0x09, 0xc8, 0x06,
|
|
64
|
+
0xd7, 0xe4, 0x46, 0xc8, 0x07, 0x61, 0x07, 0x00,
|
|
65
|
+
0x07, 0xab, 0xf0, 0x0f, 0x0a, 0x11, 0x62, 0x06,
|
|
66
|
+
0x00, 0x0e, 0xd7, 0xe5, 0x46, 0x11, 0x62, 0x07,
|
|
67
67
|
0x00, 0x0e, 0x61, 0x07, 0x00, 0x07, 0xab, 0x68,
|
|
68
68
|
0xa6, 0x00, 0x00, 0x00, 0x60, 0x08, 0x00, 0x06,
|
|
69
|
-
0x11,
|
|
70
|
-
0x00, 0x00,
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
0x0e, 0x61, 0x05, 0x00,
|
|
74
|
-
0x11, 0x61, 0x08, 0x00, 0x21, 0x01, 0x00,
|
|
75
|
-
0x06,
|
|
69
|
+
0x11, 0xf8, 0xf1, 0x0c, 0x70, 0x41, 0x33, 0x00,
|
|
70
|
+
0x00, 0x00, 0xc8, 0x08, 0x0e, 0xf2, 0x05, 0x0e,
|
|
71
|
+
0xd7, 0xf2, 0xf2, 0x61, 0x08, 0x00, 0x8c, 0x11,
|
|
72
|
+
0xf1, 0x03, 0x0e, 0xba, 0x11, 0x62, 0x08, 0x00,
|
|
73
|
+
0x0e, 0x61, 0x05, 0x00, 0xf0, 0x0c, 0xc7, 0x0d,
|
|
74
|
+
0x11, 0x61, 0x08, 0x00, 0x21, 0x01, 0x00, 0xf2,
|
|
75
|
+
0x06, 0xe6, 0x61, 0x08, 0x00, 0xf5, 0x11, 0x62,
|
|
76
76
|
0x03, 0x00, 0x0e, 0x61, 0x04, 0x00, 0x61, 0x08,
|
|
77
77
|
0x00, 0xa5, 0x68, 0x2a, 0x01, 0x00, 0x00, 0x60,
|
|
78
|
-
0x09, 0x00,
|
|
79
|
-
0x09, 0x61, 0x06, 0x00,
|
|
80
|
-
0x00, 0x8a, 0x11, 0x62, 0x09, 0x00, 0x0e,
|
|
81
|
-
|
|
82
|
-
|
|
78
|
+
0x09, 0x00, 0xd7, 0x61, 0x04, 0x00, 0x46, 0xc8,
|
|
79
|
+
0x09, 0x61, 0x06, 0x00, 0xf0, 0x0a, 0x61, 0x09,
|
|
80
|
+
0x00, 0x8a, 0x11, 0x62, 0x09, 0x00, 0x0e, 0xd8,
|
|
81
|
+
0xf0, 0x17, 0xd8, 0x41, 0xff, 0x00, 0x00, 0x00,
|
|
82
|
+
0xd9, 0x61, 0x09, 0x00, 0x61, 0x04, 0x00, 0x24,
|
|
83
83
|
0x03, 0x00, 0x8a, 0x11, 0x62, 0x09, 0x00, 0x0e,
|
|
84
84
|
0x5d, 0x04, 0x00, 0x61, 0x03, 0x00, 0x61, 0x04,
|
|
85
85
|
0x00, 0x90, 0x62, 0x04, 0x00, 0x0b, 0x61, 0x09,
|
|
86
|
-
0x00, 0x4b,
|
|
87
|
-
|
|
88
|
-
0x00, 0x00,
|
|
89
|
-
0x00, 0x61, 0x07, 0x00, 0x41,
|
|
90
|
-
0x00,
|
|
91
|
-
0x05, 0x00,
|
|
92
|
-
0x00, 0x00,
|
|
86
|
+
0x00, 0x4b, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x4b,
|
|
87
|
+
0x41, 0x00, 0x00, 0x00, 0x0a, 0x4b, 0x42, 0x00,
|
|
88
|
+
0x00, 0x00, 0xf7, 0x0e, 0xf2, 0x9e, 0x60, 0x0a,
|
|
89
|
+
0x00, 0x61, 0x07, 0x00, 0x41, 0xff, 0x00, 0x00,
|
|
90
|
+
0x00, 0xd7, 0x24, 0x01, 0x00, 0xc8, 0x0a, 0x61,
|
|
91
|
+
0x05, 0x00, 0xf0, 0x09, 0xc7, 0x0d, 0x11, 0x21,
|
|
92
|
+
0x00, 0x00, 0xf2, 0x03, 0xe6, 0xf4, 0x11, 0x62,
|
|
93
93
|
0x03, 0x00, 0x0e, 0x6b, 0x8c, 0x00, 0x00, 0x00,
|
|
94
94
|
0x60, 0x0c, 0x00, 0x60, 0x0b, 0x00, 0x06, 0x11,
|
|
95
|
-
|
|
96
|
-
0x00,
|
|
97
|
-
|
|
98
|
-
0x00, 0x41,
|
|
99
|
-
0x00, 0x8a,
|
|
100
|
-
0x4e, 0x61, 0x06, 0x00,
|
|
101
|
-
0x00, 0x8a, 0x11, 0x62, 0x0b, 0x00, 0x0e,
|
|
102
|
-
|
|
103
|
-
|
|
95
|
+
0xf8, 0xf1, 0x13, 0x70, 0x41, 0x44, 0x00, 0x00,
|
|
96
|
+
0x00, 0xc8, 0x0b, 0x41, 0x71, 0x00, 0x00, 0x00,
|
|
97
|
+
0xc8, 0x0c, 0x0e, 0xf2, 0x10, 0x0e, 0x61, 0x0a,
|
|
98
|
+
0x00, 0x41, 0x72, 0x00, 0x00, 0x00, 0x24, 0x00,
|
|
99
|
+
0x00, 0x8a, 0xf2, 0xe0, 0x61, 0x0c, 0x00, 0xf1,
|
|
100
|
+
0x4e, 0x61, 0x06, 0x00, 0xf0, 0x0a, 0x61, 0x0b,
|
|
101
|
+
0x00, 0x8a, 0x11, 0x62, 0x0b, 0x00, 0x0e, 0xd8,
|
|
102
|
+
0xf0, 0x17, 0xd8, 0x41, 0xff, 0x00, 0x00, 0x00,
|
|
103
|
+
0xd9, 0x61, 0x0b, 0x00, 0x61, 0x04, 0x00, 0x24,
|
|
104
104
|
0x03, 0x00, 0x8a, 0x11, 0x62, 0x0b, 0x00, 0x0e,
|
|
105
105
|
0x5d, 0x04, 0x00, 0x61, 0x03, 0x00, 0x61, 0x04,
|
|
106
106
|
0x00, 0x90, 0x62, 0x04, 0x00, 0x0b, 0x61, 0x0b,
|
|
107
|
-
0x00, 0x4b,
|
|
108
|
-
|
|
109
|
-
0x00, 0x00,
|
|
110
|
-
0x6c, 0x0d, 0x00, 0x00, 0x00, 0x0e,
|
|
107
|
+
0x00, 0x4b, 0x44, 0x00, 0x00, 0x00, 0x0a, 0x4b,
|
|
108
|
+
0x41, 0x00, 0x00, 0x00, 0x0a, 0x4b, 0x42, 0x00,
|
|
109
|
+
0x00, 0x00, 0xf7, 0x0e, 0xf2, 0x83, 0x0e, 0x06,
|
|
110
|
+
0x6c, 0x0d, 0x00, 0x00, 0x00, 0x0e, 0xf2, 0x1e,
|
|
111
111
|
0x6c, 0x05, 0x00, 0x00, 0x00, 0x30, 0x61, 0x0a,
|
|
112
|
-
0x00, 0x40, 0x06, 0x00, 0x00, 0x00,
|
|
112
|
+
0x00, 0x40, 0x06, 0x00, 0x00, 0x00, 0xf0, 0x0d,
|
|
113
113
|
0x61, 0x0a, 0x00, 0x41, 0x06, 0x00, 0x00, 0x00,
|
|
114
114
|
0x24, 0x00, 0x00, 0x0e, 0x6d, 0x61, 0x03, 0x00,
|
|
115
|
-
0x61, 0x04, 0x00, 0x42,
|
|
116
|
-
0x61, 0x03, 0x00, 0x2f,
|
|
117
|
-
0x00,
|
|
115
|
+
0x61, 0x04, 0x00, 0x42, 0x33, 0x00, 0x00, 0x00,
|
|
116
|
+
0x61, 0x03, 0x00, 0x2f, 0xc5, 0x00, 0x28, 0xc5,
|
|
117
|
+
0x00, 0xd3, 0x28,
|
|
118
118
|
};
|
|
119
119
|
|