How to use uint8ClampedArray method in fast-check-monorepo

Best JavaScript code snippet using fast-check-monorepo

test-bi-typedarray-proto-subarray.js

Source:test-bi-typedarray-proto-subarray.js Github

copy

Full Screen

1/*2 * TypedArray subarray() method3 */4/*@include util-buffer.js@*/5/*===6basic test78 bytes: 101112131415161788 bytes: 10111213141516179object true102 bytes: 131411object true128 bytes: 101112dead151617138 bytes: 101112dead151617142 bytes: dead15===*/16function subarrayBasicTest() {17 var i;18 var b = new ArrayBuffer(8);19 var v0 = new Uint8Array(b);20 for (i = 0; i < 8; i++) {21 v0[i] = 0x10 + i;22 }23 printBuffer(b);24 var v1 = new Uint8Array(b);25 printBuffer(v1);26 print(typeof v1.buffer, v1.buffer === b);27 var v2 = v1.subarray(3, 5);28 printBuffer(v2);29 print(typeof v2.buffer, v2.buffer === b);30 v2[0] = 0xde; // ok, map to b[3]31 v2[1] = 0xad; // ok, map to b[4]32 v2[2] = 0xbe; // out of subarray, becomes a concrete property on v233 v2[3] = 0xef; // out of subarray, becomes a concrete property on v234 printBuffer(b);35 printBuffer(v1);36 printBuffer(v2);37}38try {39 print('basic test');40 subarrayBasicTest();41} catch (e) {42 print(e.stack || e);43}44/*===45bruteforce test460 0 0 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f470 0 1 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f480 0 2 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f490 0 3 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f500 0 4 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f510 0 5 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f520 0 6 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f530 0 7 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f540 1 0 [object Int8Array] 5d5e5f550 1 1 [object Int8Array] 560 1 2 [object Int8Array] 5d5e570 1 3 [object Int8Array] 580 1 4 [object Int8Array] 590 1 5 [object Int8Array] 600 1 6 [object Int8Array] 610 1 7 [object Int8Array] 620 2 0 [object Int8Array] 5f630 2 1 [object Int8Array] 640 2 2 [object Int8Array] 650 2 3 [object Int8Array] 660 2 4 [object Int8Array] 670 2 5 [object Int8Array] 680 2 6 [object Int8Array] 690 2 7 [object Int8Array] 700 3 0 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f710 3 1 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c720 3 2 [object Int8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e730 3 3 [object Int8Array] 740 3 4 [object Int8Array] 40750 3 5 [object Int8Array] 4041760 3 6 [object Int8Array] 404142770 3 7 [object Int8Array] 40414243444546474849780 4 0 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f790 4 1 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c800 4 2 [object Int8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e810 4 3 [object Int8Array] 820 4 4 [object Int8Array] 830 4 5 [object Int8Array] 41840 4 6 [object Int8Array] 4142850 4 7 [object Int8Array] 414243444546474849860 5 0 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f870 5 1 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c880 5 2 [object Int8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e890 5 3 [object Int8Array] 900 5 4 [object Int8Array] 910 5 5 [object Int8Array] 920 5 6 [object Int8Array] 42930 5 7 [object Int8Array] 4243444546474849940 6 0 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f950 6 1 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c960 6 2 [object Int8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e970 6 3 [object Int8Array] 980 6 4 [object Int8Array] 990 6 5 [object Int8Array] 1000 6 6 [object Int8Array] 1010 6 7 [object Int8Array] 434445464748491020 7 0 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1030 7 1 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c1040 7 2 [object Int8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e1050 7 3 [object Int8Array] 1060 7 4 [object Int8Array] 1070 7 5 [object Int8Array] 1080 7 6 [object Int8Array] 1090 7 7 [object Int8Array] 1101 0 0 [object Int8Array] 45464748494a4b4c4d4e4f50511111 0 1 [object Int8Array] 45464748494a4b4c4d4e4f50511121 0 2 [object Int8Array] 45464748494a4b4c4d4e4f50511131 0 3 [object Int8Array] 45464748494a4b4c4d4e4f50511141 0 4 [object Int8Array] 45464748494a4b4c4d4e4f50511151 0 5 [object Int8Array] 45464748494a4b4c4d4e4f50511161 0 6 [object Int8Array] 45464748494a4b4c4d4e4f50511171 0 7 [object Int8Array] 45464748494a4b4c4d4e4f50511181 1 0 [object Int8Array] 4f50511191 1 1 [object Int8Array] 1201 1 2 [object Int8Array] 4f501211 1 3 [object Int8Array] 1221 1 4 [object Int8Array] 1231 1 5 [object Int8Array] 1241 1 6 [object Int8Array] 1251 1 7 [object Int8Array] 1261 2 0 [object Int8Array] 511271 2 1 [object Int8Array] 1281 2 2 [object Int8Array] 1291 2 3 [object Int8Array] 1301 2 4 [object Int8Array] 1311 2 5 [object Int8Array] 1321 2 6 [object Int8Array] 1331 2 7 [object Int8Array] 1341 3 0 [object Int8Array] 45464748494a4b4c4d4e4f50511351 3 1 [object Int8Array] 45464748494a4b4c4d4e1361 3 2 [object Int8Array] 45464748494a4b4c4d4e4f501371 3 3 [object Int8Array] 1381 3 4 [object Int8Array] 451391 3 5 [object Int8Array] 45461401 3 6 [object Int8Array] 4546471411 3 7 [object Int8Array] 45464748494a4b4c4d4e1421 4 0 [object Int8Array] 464748494a4b4c4d4e4f50511431 4 1 [object Int8Array] 464748494a4b4c4d4e1441 4 2 [object Int8Array] 464748494a4b4c4d4e4f501451 4 3 [object Int8Array] 1461 4 4 [object Int8Array] 1471 4 5 [object Int8Array] 461481 4 6 [object Int8Array] 46471491 4 7 [object Int8Array] 464748494a4b4c4d4e1501 5 0 [object Int8Array] 4748494a4b4c4d4e4f50511511 5 1 [object Int8Array] 4748494a4b4c4d4e1521 5 2 [object Int8Array] 4748494a4b4c4d4e4f501531 5 3 [object Int8Array] 1541 5 4 [object Int8Array] 1551 5 5 [object Int8Array] 1561 5 6 [object Int8Array] 471571 5 7 [object Int8Array] 4748494a4b4c4d4e1581 6 0 [object Int8Array] 48494a4b4c4d4e4f50511591 6 1 [object Int8Array] 48494a4b4c4d4e1601 6 2 [object Int8Array] 48494a4b4c4d4e4f501611 6 3 [object Int8Array] 1621 6 4 [object Int8Array] 1631 6 5 [object Int8Array] 1641 6 6 [object Int8Array] 1651 6 7 [object Int8Array] 48494a4b4c4d4e1661 7 0 [object Int8Array] 4f50511671 7 1 [object Int8Array] 1681 7 2 [object Int8Array] 4f501691 7 3 [object Int8Array] 1701 7 4 [object Int8Array] 1711 7 5 [object Int8Array] 1721 7 6 [object Int8Array] 1731 7 7 [object Int8Array] 1742 0 0 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1752 0 1 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1762 0 2 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1772 0 3 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1782 0 4 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1792 0 5 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1802 0 6 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1812 0 7 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1822 1 0 [object Uint8Array] 5d5e5f1832 1 1 [object Uint8Array] 1842 1 2 [object Uint8Array] 5d5e1852 1 3 [object Uint8Array] 1862 1 4 [object Uint8Array] 1872 1 5 [object Uint8Array] 1882 1 6 [object Uint8Array] 1892 1 7 [object Uint8Array] 1902 2 0 [object Uint8Array] 5f1912 2 1 [object Uint8Array] 1922 2 2 [object Uint8Array] 1932 2 3 [object Uint8Array] 1942 2 4 [object Uint8Array] 1952 2 5 [object Uint8Array] 1962 2 6 [object Uint8Array] 1972 2 7 [object Uint8Array] 1982 3 0 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f1992 3 1 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c2002 3 2 [object Uint8Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2012 3 3 [object Uint8Array] 2022 3 4 [object Uint8Array] 402032 3 5 [object Uint8Array] 40412042 3 6 [object Uint8Array] 4041422052 3 7 [object Uint8Array] 404142434445464748492062 4 0 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2072 4 1 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c2082 4 2 [object Uint8Array] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2092 4 3 [object Uint8Array] 2102 4 4 [object Uint8Array] 2112 4 5 [object Uint8Array] 412122 4 6 [object Uint8Array] 41422132 4 7 [object Uint8Array] 4142434445464748492142 5 0 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2152 5 1 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c2162 5 2 [object Uint8Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2172 5 3 [object Uint8Array] 2182 5 4 [object Uint8Array] 2192 5 5 [object Uint8Array] 2202 5 6 [object Uint8Array] 422212 5 7 [object Uint8Array] 42434445464748492222 6 0 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2232 6 1 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c2242 6 2 [object Uint8Array] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e2252 6 3 [object Uint8Array] 2262 6 4 [object Uint8Array] 2272 6 5 [object Uint8Array] 2282 6 6 [object Uint8Array] 2292 6 7 [object Uint8Array] 434445464748492302 7 0 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f2312 7 1 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c2322 7 2 [object Uint8Array] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e2332 7 3 [object Uint8Array] 2342 7 4 [object Uint8Array] 2352 7 5 [object Uint8Array] 2362 7 6 [object Uint8Array] 2372 7 7 [object Uint8Array] 2383 0 0 [object Uint8Array] 45464748494a4b4c4d4e4f50512393 0 1 [object Uint8Array] 45464748494a4b4c4d4e4f50512403 0 2 [object Uint8Array] 45464748494a4b4c4d4e4f50512413 0 3 [object Uint8Array] 45464748494a4b4c4d4e4f50512423 0 4 [object Uint8Array] 45464748494a4b4c4d4e4f50512433 0 5 [object Uint8Array] 45464748494a4b4c4d4e4f50512443 0 6 [object Uint8Array] 45464748494a4b4c4d4e4f50512453 0 7 [object Uint8Array] 45464748494a4b4c4d4e4f50512463 1 0 [object Uint8Array] 4f50512473 1 1 [object Uint8Array] 2483 1 2 [object Uint8Array] 4f502493 1 3 [object Uint8Array] 2503 1 4 [object Uint8Array] 2513 1 5 [object Uint8Array] 2523 1 6 [object Uint8Array] 2533 1 7 [object Uint8Array] 2543 2 0 [object Uint8Array] 512553 2 1 [object Uint8Array] 2563 2 2 [object Uint8Array] 2573 2 3 [object Uint8Array] 2583 2 4 [object Uint8Array] 2593 2 5 [object Uint8Array] 2603 2 6 [object Uint8Array] 2613 2 7 [object Uint8Array] 2623 3 0 [object Uint8Array] 45464748494a4b4c4d4e4f50512633 3 1 [object Uint8Array] 45464748494a4b4c4d4e2643 3 2 [object Uint8Array] 45464748494a4b4c4d4e4f502653 3 3 [object Uint8Array] 2663 3 4 [object Uint8Array] 452673 3 5 [object Uint8Array] 45462683 3 6 [object Uint8Array] 4546472693 3 7 [object Uint8Array] 45464748494a4b4c4d4e2703 4 0 [object Uint8Array] 464748494a4b4c4d4e4f50512713 4 1 [object Uint8Array] 464748494a4b4c4d4e2723 4 2 [object Uint8Array] 464748494a4b4c4d4e4f502733 4 3 [object Uint8Array] 2743 4 4 [object Uint8Array] 2753 4 5 [object Uint8Array] 462763 4 6 [object Uint8Array] 46472773 4 7 [object Uint8Array] 464748494a4b4c4d4e2783 5 0 [object Uint8Array] 4748494a4b4c4d4e4f50512793 5 1 [object Uint8Array] 4748494a4b4c4d4e2803 5 2 [object Uint8Array] 4748494a4b4c4d4e4f502813 5 3 [object Uint8Array] 2823 5 4 [object Uint8Array] 2833 5 5 [object Uint8Array] 2843 5 6 [object Uint8Array] 472853 5 7 [object Uint8Array] 4748494a4b4c4d4e2863 6 0 [object Uint8Array] 48494a4b4c4d4e4f50512873 6 1 [object Uint8Array] 48494a4b4c4d4e2883 6 2 [object Uint8Array] 48494a4b4c4d4e4f502893 6 3 [object Uint8Array] 2903 6 4 [object Uint8Array] 2913 6 5 [object Uint8Array] 2923 6 6 [object Uint8Array] 2933 6 7 [object Uint8Array] 48494a4b4c4d4e2943 7 0 [object Uint8Array] 4f50512953 7 1 [object Uint8Array] 2963 7 2 [object Uint8Array] 4f502973 7 3 [object Uint8Array] 2983 7 4 [object Uint8Array] 2993 7 5 [object Uint8Array] 3003 7 6 [object Uint8Array] 3013 7 7 [object Uint8Array] 3024 0 0 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3034 0 1 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3044 0 2 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3054 0 3 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3064 0 4 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3074 0 5 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3084 0 6 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3094 0 7 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3104 1 0 [object Uint8ClampedArray] 5d5e5f3114 1 1 [object Uint8ClampedArray] 3124 1 2 [object Uint8ClampedArray] 5d5e3134 1 3 [object Uint8ClampedArray] 3144 1 4 [object Uint8ClampedArray] 3154 1 5 [object Uint8ClampedArray] 3164 1 6 [object Uint8ClampedArray] 3174 1 7 [object Uint8ClampedArray] 3184 2 0 [object Uint8ClampedArray] 5f3194 2 1 [object Uint8ClampedArray] 3204 2 2 [object Uint8ClampedArray] 3214 2 3 [object Uint8ClampedArray] 3224 2 4 [object Uint8ClampedArray] 3234 2 5 [object Uint8ClampedArray] 3244 2 6 [object Uint8ClampedArray] 3254 2 7 [object Uint8ClampedArray] 3264 3 0 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3274 3 1 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c3284 3 2 [object Uint8ClampedArray] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3294 3 3 [object Uint8ClampedArray] 3304 3 4 [object Uint8ClampedArray] 403314 3 5 [object Uint8ClampedArray] 40413324 3 6 [object Uint8ClampedArray] 4041423334 3 7 [object Uint8ClampedArray] 404142434445464748493344 4 0 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3354 4 1 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c3364 4 2 [object Uint8ClampedArray] 4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3374 4 3 [object Uint8ClampedArray] 3384 4 4 [object Uint8ClampedArray] 3394 4 5 [object Uint8ClampedArray] 413404 4 6 [object Uint8ClampedArray] 41423414 4 7 [object Uint8ClampedArray] 4142434445464748493424 5 0 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3434 5 1 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c3444 5 2 [object Uint8ClampedArray] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3454 5 3 [object Uint8ClampedArray] 3464 5 4 [object Uint8ClampedArray] 3474 5 5 [object Uint8ClampedArray] 3484 5 6 [object Uint8ClampedArray] 423494 5 7 [object Uint8ClampedArray] 42434445464748493504 6 0 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3514 6 1 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c3524 6 2 [object Uint8ClampedArray] 434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e3534 6 3 [object Uint8ClampedArray] 3544 6 4 [object Uint8ClampedArray] 3554 6 5 [object Uint8ClampedArray] 3564 6 6 [object Uint8ClampedArray] 3574 6 7 [object Uint8ClampedArray] 434445464748493584 7 0 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e5f3594 7 1 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c3604 7 2 [object Uint8ClampedArray] 4a4b4c4d4e4f505152535455565758595a5b5c5d5e3614 7 3 [object Uint8ClampedArray] 3624 7 4 [object Uint8ClampedArray] 3634 7 5 [object Uint8ClampedArray] 3644 7 6 [object Uint8ClampedArray] 3654 7 7 [object Uint8ClampedArray] 3665 0 0 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513675 0 1 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513685 0 2 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513695 0 3 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513705 0 4 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513715 0 5 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513725 0 6 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513735 0 7 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513745 1 0 [object Uint8ClampedArray] 4f50513755 1 1 [object Uint8ClampedArray] 3765 1 2 [object Uint8ClampedArray] 4f503775 1 3 [object Uint8ClampedArray] 3785 1 4 [object Uint8ClampedArray] 3795 1 5 [object Uint8ClampedArray] 3805 1 6 [object Uint8ClampedArray] 3815 1 7 [object Uint8ClampedArray] 3825 2 0 [object Uint8ClampedArray] 513835 2 1 [object Uint8ClampedArray] 3845 2 2 [object Uint8ClampedArray] 3855 2 3 [object Uint8ClampedArray] 3865 2 4 [object Uint8ClampedArray] 3875 2 5 [object Uint8ClampedArray] 3885 2 6 [object Uint8ClampedArray] 3895 2 7 [object Uint8ClampedArray] 3905 3 0 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f50513915 3 1 [object Uint8ClampedArray] 45464748494a4b4c4d4e3925 3 2 [object Uint8ClampedArray] 45464748494a4b4c4d4e4f503935 3 3 [object Uint8ClampedArray] 3945 3 4 [object Uint8ClampedArray] 453955 3 5 [object Uint8ClampedArray] 45463965 3 6 [object Uint8ClampedArray] 4546473975 3 7 [object Uint8ClampedArray] 45464748494a4b4c4d4e3985 4 0 [object Uint8ClampedArray] 464748494a4b4c4d4e4f50513995 4 1 [object Uint8ClampedArray] 464748494a4b4c4d4e4005 4 2 [object Uint8ClampedArray] 464748494a4b4c4d4e4f504015 4 3 [object Uint8ClampedArray] 4025 4 4 [object Uint8ClampedArray] 4035 4 5 [object Uint8ClampedArray] 464045 4 6 [object Uint8ClampedArray] 46474055 4 7 [object Uint8ClampedArray] 464748494a4b4c4d4e4065 5 0 [object Uint8ClampedArray] 4748494a4b4c4d4e4f50514075 5 1 [object Uint8ClampedArray] 4748494a4b4c4d4e4085 5 2 [object Uint8ClampedArray] 4748494a4b4c4d4e4f504095 5 3 [object Uint8ClampedArray] 4105 5 4 [object Uint8ClampedArray] 4115 5 5 [object Uint8ClampedArray] 4125 5 6 [object Uint8ClampedArray] 474135 5 7 [object Uint8ClampedArray] 4748494a4b4c4d4e4145 6 0 [object Uint8ClampedArray] 48494a4b4c4d4e4f50514155 6 1 [object Uint8ClampedArray] 48494a4b4c4d4e4165 6 2 [object Uint8ClampedArray] 48494a4b4c4d4e4f504175 6 3 [object Uint8ClampedArray] 4185 6 4 [object Uint8ClampedArray] 4195 6 5 [object Uint8ClampedArray] 4205 6 6 [object Uint8ClampedArray] 4215 6 7 [object Uint8ClampedArray] 48494a4b4c4d4e4225 7 0 [object Uint8ClampedArray] 4f50514235 7 1 [object Uint8ClampedArray] 4245 7 2 [object Uint8ClampedArray] 4f504255 7 3 [object Uint8ClampedArray] 4265 7 4 [object Uint8ClampedArray] 4275 7 5 [object Uint8ClampedArray] 4285 7 6 [object Uint8ClampedArray] 4295 7 7 [object Uint8ClampedArray] 4306 0 0 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4316 0 1 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4326 0 2 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4336 0 3 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4346 0 4 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4356 0 5 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4366 0 6 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4376 0 7 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4386 1 0 [object Int16Array] 5a5b5c5d5e5f4396 1 1 [object Int16Array] 4406 1 2 [object Int16Array] 5a5b5c5d4416 1 3 [object Int16Array] 4426 1 4 [object Int16Array] 4436 1 5 [object Int16Array] 4446 1 6 [object Int16Array] 4456 1 7 [object Int16Array] 4466 2 0 [object Int16Array] 5e5f4476 2 1 [object Int16Array] 4486 2 2 [object Int16Array] 4496 2 3 [object Int16Array] 4506 2 4 [object Int16Array] 4516 2 5 [object Int16Array] 4526 2 6 [object Int16Array] 4536 2 7 [object Int16Array] 4546 3 0 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4556 3 1 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758594566 3 2 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4576 3 3 [object Int16Array] 4586 3 4 [object Int16Array] 40414596 3 5 [object Int16Array] 404142434606 3 6 [object Int16Array] 4041424344454616 3 7 [object Int16Array] 404142434445464748494a4b4c4d4e4f505152534626 4 0 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4636 4 1 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758594646 4 2 [object Int16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4656 4 3 [object Int16Array] 4666 4 4 [object Int16Array] 4676 4 5 [object Int16Array] 42434686 4 6 [object Int16Array] 424344454696 4 7 [object Int16Array] 42434445464748494a4b4c4d4e4f505152534706 5 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4716 5 1 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758594726 5 2 [object Int16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d4736 5 3 [object Int16Array] 4746 5 4 [object Int16Array] 4756 5 5 [object Int16Array] 4766 5 6 [object Int16Array] 44454776 5 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152534786 6 0 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f4796 6 1 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758594806 6 2 [object Int16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d4816 6 3 [object Int16Array] 4826 6 4 [object Int16Array] 4836 6 5 [object Int16Array] 4846 6 6 [object Int16Array] 4856 6 7 [object Int16Array] 464748494a4b4c4d4e4f505152534866 7 0 [object Int16Array] 5455565758595a5b5c5d5e5f4876 7 1 [object Int16Array] 5455565758594886 7 2 [object Int16Array] 5455565758595a5b5c5d4896 7 3 [object Int16Array] 4906 7 4 [object Int16Array] 4916 7 5 [object Int16Array] 4926 7 6 [object Int16Array] 4936 7 7 [object Int16Array] 4947 0 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152534957 0 1 [object Int16Array] 4445464748494a4b4c4d4e4f505152534967 0 2 [object Int16Array] 4445464748494a4b4c4d4e4f505152534977 0 3 [object Int16Array] 4445464748494a4b4c4d4e4f505152534987 0 4 [object Int16Array] 4445464748494a4b4c4d4e4f505152534997 0 5 [object Int16Array] 4445464748494a4b4c4d4e4f505152535007 0 6 [object Int16Array] 4445464748494a4b4c4d4e4f505152535017 0 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152535027 1 0 [object Int16Array] 4e4f505152535037 1 1 [object Int16Array] 5047 1 2 [object Int16Array] 4e4f50515057 1 3 [object Int16Array] 5067 1 4 [object Int16Array] 5077 1 5 [object Int16Array] 5087 1 6 [object Int16Array] 5097 1 7 [object Int16Array] 4e4f505152535107 2 0 [object Int16Array] 52535117 2 1 [object Int16Array] 5127 2 2 [object Int16Array] 5137 2 3 [object Int16Array] 5147 2 4 [object Int16Array] 5157 2 5 [object Int16Array] 5167 2 6 [object Int16Array] 5177 2 7 [object Int16Array] 52535187 3 0 [object Int16Array] 4445464748494a4b4c4d4e4f505152535197 3 1 [object Int16Array] 4445464748494a4b4c4d5207 3 2 [object Int16Array] 4445464748494a4b4c4d4e4f50515217 3 3 [object Int16Array] 5227 3 4 [object Int16Array] 44455237 3 5 [object Int16Array] 444546475247 3 6 [object Int16Array] 4445464748495257 3 7 [object Int16Array] 4445464748494a4b4c4d4e4f505152535267 4 0 [object Int16Array] 464748494a4b4c4d4e4f505152535277 4 1 [object Int16Array] 464748494a4b4c4d5287 4 2 [object Int16Array] 464748494a4b4c4d4e4f50515297 4 3 [object Int16Array] 5307 4 4 [object Int16Array] 5317 4 5 [object Int16Array] 46475327 4 6 [object Int16Array] 464748495337 4 7 [object Int16Array] 464748494a4b4c4d4e4f505152535347 5 0 [object Int16Array] 48494a4b4c4d4e4f505152535357 5 1 [object Int16Array] 48494a4b4c4d5367 5 2 [object Int16Array] 48494a4b4c4d4e4f50515377 5 3 [object Int16Array] 5387 5 4 [object Int16Array] 5397 5 5 [object Int16Array] 5407 5 6 [object Int16Array] 48495417 5 7 [object Int16Array] 48494a4b4c4d4e4f505152535427 6 0 [object Int16Array] 4a4b4c4d4e4f505152535437 6 1 [object Int16Array] 4a4b4c4d5447 6 2 [object Int16Array] 4a4b4c4d4e4f50515457 6 3 [object Int16Array] 5467 6 4 [object Int16Array] 5477 6 5 [object Int16Array] 5487 6 6 [object Int16Array] 5497 6 7 [object Int16Array] 4a4b4c4d4e4f505152535507 7 0 [object Int16Array] 5517 7 1 [object Int16Array] 5527 7 2 [object Int16Array] 5537 7 3 [object Int16Array] 5547 7 4 [object Int16Array] 5557 7 5 [object Int16Array] 5567 7 6 [object Int16Array] 5577 7 7 [object Int16Array] 5588 0 0 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5598 0 1 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5608 0 2 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5618 0 3 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5628 0 4 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5638 0 5 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5648 0 6 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5658 0 7 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5668 1 0 [object Uint16Array] 5a5b5c5d5e5f5678 1 1 [object Uint16Array] 5688 1 2 [object Uint16Array] 5a5b5c5d5698 1 3 [object Uint16Array] 5708 1 4 [object Uint16Array] 5718 1 5 [object Uint16Array] 5728 1 6 [object Uint16Array] 5738 1 7 [object Uint16Array] 5748 2 0 [object Uint16Array] 5e5f5758 2 1 [object Uint16Array] 5768 2 2 [object Uint16Array] 5778 2 3 [object Uint16Array] 5788 2 4 [object Uint16Array] 5798 2 5 [object Uint16Array] 5808 2 6 [object Uint16Array] 5818 2 7 [object Uint16Array] 5828 3 0 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5838 3 1 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595848 3 2 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5858 3 3 [object Uint16Array] 5868 3 4 [object Uint16Array] 40415878 3 5 [object Uint16Array] 404142435888 3 6 [object Uint16Array] 4041424344455898 3 7 [object Uint16Array] 404142434445464748494a4b4c4d4e4f505152535908 4 0 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5918 4 1 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595928 4 2 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5938 4 3 [object Uint16Array] 5948 4 4 [object Uint16Array] 5958 4 5 [object Uint16Array] 42435968 4 6 [object Uint16Array] 424344455978 4 7 [object Uint16Array] 42434445464748494a4b4c4d4e4f505152535988 5 0 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f5998 5 1 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758596008 5 2 [object Uint16Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d6018 5 3 [object Uint16Array] 6028 5 4 [object Uint16Array] 6038 5 5 [object Uint16Array] 6048 5 6 [object Uint16Array] 44456058 5 7 [object Uint16Array] 4445464748494a4b4c4d4e4f505152536068 6 0 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f6078 6 1 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758596088 6 2 [object Uint16Array] 464748494a4b4c4d4e4f505152535455565758595a5b5c5d6098 6 3 [object Uint16Array] 6108 6 4 [object Uint16Array] 6118 6 5 [object Uint16Array] 6128 6 6 [object Uint16Array] 6138 6 7 [object Uint16Array] 464748494a4b4c4d4e4f505152536148 7 0 [object Uint16Array] 5455565758595a5b5c5d5e5f6158 7 1 [object Uint16Array] 5455565758596168 7 2 [object Uint16Array] 5455565758595a5b5c5d6178 7 3 [object Uint16Array] 6188 7 4 [object Uint16Array] 6198 7 5 [object Uint16Array] 6208 7 6 [object Uint16Array] 6218 7 7 [object Uint16Array] 6229 0 0 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6239 0 1 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6249 0 2 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6259 0 3 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6269 0 4 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6279 0 5 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6289 0 6 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6299 0 7 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6309 1 0 [object Uint16Array] 565758595a5b6319 1 1 [object Uint16Array] 6329 1 2 [object Uint16Array] 565758596339 1 3 [object Uint16Array] 6349 1 4 [object Uint16Array] 6359 1 5 [object Uint16Array] 6369 1 6 [object Uint16Array] 6379 1 7 [object Uint16Array] 565758595a5b6389 2 0 [object Uint16Array] 5a5b6399 2 1 [object Uint16Array] 6409 2 2 [object Uint16Array] 6419 2 3 [object Uint16Array] 6429 2 4 [object Uint16Array] 6439 2 5 [object Uint16Array] 6449 2 6 [object Uint16Array] 6459 2 7 [object Uint16Array] 5a5b6469 3 0 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6479 3 1 [object Uint16Array] 4c4d4e4f5051525354556489 3 2 [object Uint16Array] 4c4d4e4f505152535455565758596499 3 3 [object Uint16Array] 6509 3 4 [object Uint16Array] 4c4d6519 3 5 [object Uint16Array] 4c4d4e4f6529 3 6 [object Uint16Array] 4c4d4e4f50516539 3 7 [object Uint16Array] 4c4d4e4f505152535455565758595a5b6549 4 0 [object Uint16Array] 4e4f505152535455565758595a5b6559 4 1 [object Uint16Array] 4e4f5051525354556569 4 2 [object Uint16Array] 4e4f505152535455565758596579 4 3 [object Uint16Array] 6589 4 4 [object Uint16Array] 6599 4 5 [object Uint16Array] 4e4f6609 4 6 [object Uint16Array] 4e4f50516619 4 7 [object Uint16Array] 4e4f505152535455565758595a5b6629 5 0 [object Uint16Array] 505152535455565758595a5b6639 5 1 [object Uint16Array] 5051525354556649 5 2 [object Uint16Array] 505152535455565758596659 5 3 [object Uint16Array] 6669 5 4 [object Uint16Array] 6679 5 5 [object Uint16Array] 6689 5 6 [object Uint16Array] 50516699 5 7 [object Uint16Array] 505152535455565758595a5b6709 6 0 [object Uint16Array] 52535455565758595a5b6719 6 1 [object Uint16Array] 525354556729 6 2 [object Uint16Array] 52535455565758596739 6 3 [object Uint16Array] 6749 6 4 [object Uint16Array] 6759 6 5 [object Uint16Array] 6769 6 6 [object Uint16Array] 6779 6 7 [object Uint16Array] 52535455565758595a5b6789 7 0 [object Uint16Array] 6799 7 1 [object Uint16Array] 6809 7 2 [object Uint16Array] 6819 7 3 [object Uint16Array] 6829 7 4 [object Uint16Array] 6839 7 5 [object Uint16Array] 6849 7 6 [object Uint16Array] 6859 7 7 [object Uint16Array] 68610 0 0 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68710 0 1 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68810 0 2 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f68910 0 3 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69010 0 4 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69110 0 5 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69210 0 6 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69310 0 7 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f69410 1 0 [object Int32Array] 5455565758595a5b5c5d5e5f69510 1 1 [object Int32Array] 69610 1 2 [object Int32Array] 5455565758595a5b69710 1 3 [object Int32Array] 69810 1 4 [object Int32Array] 69910 1 5 [object Int32Array] 70010 1 6 [object Int32Array] 70110 1 7 [object Int32Array] 5455565758595a5b5c5d5e5f70210 2 0 [object Int32Array] 5c5d5e5f70310 2 1 [object Int32Array] 70410 2 2 [object Int32Array] 70510 2 3 [object Int32Array] 70610 2 4 [object Int32Array] 70710 2 5 [object Int32Array] 70810 2 6 [object Int32Array] 70910 2 7 [object Int32Array] 5c5d5e5f71010 3 0 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71110 3 1 [object Int32Array] 404142434445464748494a4b4c4d4e4f5051525371210 3 2 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b71310 3 3 [object Int32Array] 71410 3 4 [object Int32Array] 4041424371510 3 5 [object Int32Array] 404142434445464771610 3 6 [object Int32Array] 404142434445464748494a4b71710 3 7 [object Int32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71810 4 0 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f71910 4 1 [object Int32Array] 4445464748494a4b4c4d4e4f5051525372010 4 2 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b72110 4 3 [object Int32Array] 72210 4 4 [object Int32Array] 72310 4 5 [object Int32Array] 4445464772410 4 6 [object Int32Array] 4445464748494a4b72510 4 7 [object Int32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f72610 5 0 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f72710 5 1 [object Int32Array] 48494a4b4c4d4e4f5051525372810 5 2 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b72910 5 3 [object Int32Array] 73010 5 4 [object Int32Array] 73110 5 5 [object Int32Array] 73210 5 6 [object Int32Array] 48494a4b73310 5 7 [object Int32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f73410 6 0 [object Int32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f73510 6 1 [object Int32Array] 4c4d4e4f5051525373610 6 2 [object Int32Array] 4c4d4e4f505152535455565758595a5b73710 6 3 [object Int32Array] 73810 6 4 [object Int32Array] 73910 6 5 [object Int32Array] 74010 6 6 [object Int32Array] 74110 6 7 [object Int32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f74210 7 0 [object Int32Array] 74310 7 1 [object Int32Array] 74410 7 2 [object Int32Array] 74510 7 3 [object Int32Array] 74610 7 4 [object Int32Array] 74710 7 5 [object Int32Array] 74810 7 6 [object Int32Array] 74910 7 7 [object Int32Array] 75011 0 0 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375111 0 1 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375211 0 2 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375311 0 3 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375411 0 4 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375511 0 5 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375611 0 6 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375711 0 7 [object Int32Array] 4445464748494a4b4c4d4e4f5051525375811 1 0 [object Int32Array] 48494a4b4c4d4e4f5051525375911 1 1 [object Int32Array] 76011 1 2 [object Int32Array] 48494a4b4c4d4e4f76111 1 3 [object Int32Array] 76211 1 4 [object Int32Array] 76311 1 5 [object Int32Array] 48494a4b76411 1 6 [object Int32Array] 48494a4b4c4d4e4f76511 1 7 [object Int32Array] 48494a4b4c4d4e4f5051525376611 2 0 [object Int32Array] 5051525376711 2 1 [object Int32Array] 76811 2 2 [object Int32Array] 76911 2 3 [object Int32Array] 77011 2 4 [object Int32Array] 77111 2 5 [object Int32Array] 77211 2 6 [object Int32Array] 77311 2 7 [object Int32Array] 5051525377411 3 0 [object Int32Array] 4445464748494a4b4c4d4e4f5051525377511 3 1 [object Int32Array] 4445464777611 3 2 [object Int32Array] 4445464748494a4b4c4d4e4f77711 3 3 [object Int32Array] 77811 3 4 [object Int32Array] 4445464777911 3 5 [object Int32Array] 4445464748494a4b78011 3 6 [object Int32Array] 4445464748494a4b4c4d4e4f78111 3 7 [object Int32Array] 4445464748494a4b4c4d4e4f5051525378211 4 0 [object Int32Array] 48494a4b4c4d4e4f5051525378311 4 1 [object Int32Array] 78411 4 2 [object Int32Array] 48494a4b4c4d4e4f78511 4 3 [object Int32Array] 78611 4 4 [object Int32Array] 78711 4 5 [object Int32Array] 48494a4b78811 4 6 [object Int32Array] 48494a4b4c4d4e4f78911 4 7 [object Int32Array] 48494a4b4c4d4e4f5051525379011 5 0 [object Int32Array] 4c4d4e4f5051525379111 5 1 [object Int32Array] 79211 5 2 [object Int32Array] 4c4d4e4f79311 5 3 [object Int32Array] 79411 5 4 [object Int32Array] 79511 5 5 [object Int32Array] 79611 5 6 [object Int32Array] 4c4d4e4f79711 5 7 [object Int32Array] 4c4d4e4f5051525379811 6 0 [object Int32Array] 5051525379911 6 1 [object Int32Array] 80011 6 2 [object Int32Array] 80111 6 3 [object Int32Array] 80211 6 4 [object Int32Array] 80311 6 5 [object Int32Array] 80411 6 6 [object Int32Array] 80511 6 7 [object Int32Array] 5051525380611 7 0 [object Int32Array] 80711 7 1 [object Int32Array] 80811 7 2 [object Int32Array] 80911 7 3 [object Int32Array] 81011 7 4 [object Int32Array] 81111 7 5 [object Int32Array] 81211 7 6 [object Int32Array] 81311 7 7 [object Int32Array] 81412 0 0 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81512 0 1 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81612 0 2 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81712 0 3 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81812 0 4 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f81912 0 5 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82012 0 6 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82112 0 7 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f82212 1 0 [object Uint32Array] 5455565758595a5b5c5d5e5f82312 1 1 [object Uint32Array] 82412 1 2 [object Uint32Array] 5455565758595a5b82512 1 3 [object Uint32Array] 82612 1 4 [object Uint32Array] 82712 1 5 [object Uint32Array] 82812 1 6 [object Uint32Array] 82912 1 7 [object Uint32Array] 5455565758595a5b5c5d5e5f83012 2 0 [object Uint32Array] 5c5d5e5f83112 2 1 [object Uint32Array] 83212 2 2 [object Uint32Array] 83312 2 3 [object Uint32Array] 83412 2 4 [object Uint32Array] 83512 2 5 [object Uint32Array] 83612 2 6 [object Uint32Array] 83712 2 7 [object Uint32Array] 5c5d5e5f83812 3 0 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f83912 3 1 [object Uint32Array] 404142434445464748494a4b4c4d4e4f5051525384012 3 2 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b84112 3 3 [object Uint32Array] 84212 3 4 [object Uint32Array] 4041424384312 3 5 [object Uint32Array] 404142434445464784412 3 6 [object Uint32Array] 404142434445464748494a4b84512 3 7 [object Uint32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f84612 4 0 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f84712 4 1 [object Uint32Array] 4445464748494a4b4c4d4e4f5051525384812 4 2 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b84912 4 3 [object Uint32Array] 85012 4 4 [object Uint32Array] 85112 4 5 [object Uint32Array] 4445464785212 4 6 [object Uint32Array] 4445464748494a4b85312 4 7 [object Uint32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f85412 5 0 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f85512 5 1 [object Uint32Array] 48494a4b4c4d4e4f5051525385612 5 2 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b85712 5 3 [object Uint32Array] 85812 5 4 [object Uint32Array] 85912 5 5 [object Uint32Array] 86012 5 6 [object Uint32Array] 48494a4b86112 5 7 [object Uint32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f86212 6 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f86312 6 1 [object Uint32Array] 4c4d4e4f5051525386412 6 2 [object Uint32Array] 4c4d4e4f505152535455565758595a5b86512 6 3 [object Uint32Array] 86612 6 4 [object Uint32Array] 86712 6 5 [object Uint32Array] 86812 6 6 [object Uint32Array] 86912 6 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f87012 7 0 [object Uint32Array] 87112 7 1 [object Uint32Array] 87212 7 2 [object Uint32Array] 87312 7 3 [object Uint32Array] 87412 7 4 [object Uint32Array] 87512 7 5 [object Uint32Array] 87612 7 6 [object Uint32Array] 87712 7 7 [object Uint32Array] 87813 0 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b87913 0 1 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88013 0 2 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88113 0 3 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88213 0 4 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88313 0 5 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88413 0 6 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88513 0 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b88613 1 0 [object Uint32Array] 505152535455565758595a5b88713 1 1 [object Uint32Array] 88813 1 2 [object Uint32Array] 505152535455565788913 1 3 [object Uint32Array] 89013 1 4 [object Uint32Array] 89113 1 5 [object Uint32Array] 5051525389213 1 6 [object Uint32Array] 505152535455565789313 1 7 [object Uint32Array] 505152535455565758595a5b89413 2 0 [object Uint32Array] 58595a5b89513 2 1 [object Uint32Array] 89613 2 2 [object Uint32Array] 89713 2 3 [object Uint32Array] 89813 2 4 [object Uint32Array] 89913 2 5 [object Uint32Array] 90013 2 6 [object Uint32Array] 90113 2 7 [object Uint32Array] 58595a5b90213 3 0 [object Uint32Array] 4c4d4e4f505152535455565758595a5b90313 3 1 [object Uint32Array] 4c4d4e4f90413 3 2 [object Uint32Array] 4c4d4e4f505152535455565790513 3 3 [object Uint32Array] 90613 3 4 [object Uint32Array] 4c4d4e4f90713 3 5 [object Uint32Array] 4c4d4e4f5051525390813 3 6 [object Uint32Array] 4c4d4e4f505152535455565790913 3 7 [object Uint32Array] 4c4d4e4f505152535455565758595a5b91013 4 0 [object Uint32Array] 505152535455565758595a5b91113 4 1 [object Uint32Array] 91213 4 2 [object Uint32Array] 505152535455565791313 4 3 [object Uint32Array] 91413 4 4 [object Uint32Array] 91513 4 5 [object Uint32Array] 5051525391613 4 6 [object Uint32Array] 505152535455565791713 4 7 [object Uint32Array] 505152535455565758595a5b91813 5 0 [object Uint32Array] 5455565758595a5b91913 5 1 [object Uint32Array] 92013 5 2 [object Uint32Array] 5455565792113 5 3 [object Uint32Array] 92213 5 4 [object Uint32Array] 92313 5 5 [object Uint32Array] 92413 5 6 [object Uint32Array] 5455565792513 5 7 [object Uint32Array] 5455565758595a5b92613 6 0 [object Uint32Array] 58595a5b92713 6 1 [object Uint32Array] 92813 6 2 [object Uint32Array] 92913 6 3 [object Uint32Array] 93013 6 4 [object Uint32Array] 93113 6 5 [object Uint32Array] 93213 6 6 [object Uint32Array] 93313 6 7 [object Uint32Array] 58595a5b93413 7 0 [object Uint32Array] 93513 7 1 [object Uint32Array] 93613 7 2 [object Uint32Array] 93713 7 3 [object Uint32Array] 93813 7 4 [object Uint32Array] 93913 7 5 [object Uint32Array] 94013 7 6 [object Uint32Array] 94113 7 7 [object Uint32Array] 94214 0 0 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94314 0 1 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94414 0 2 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94514 0 3 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94614 0 4 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94714 0 5 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94814 0 6 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f94914 0 7 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f95014 1 0 [object Float32Array] 5455565758595a5b5c5d5e5f95114 1 1 [object Float32Array] 95214 1 2 [object Float32Array] 5455565758595a5b95314 1 3 [object Float32Array] 95414 1 4 [object Float32Array] 95514 1 5 [object Float32Array] 95614 1 6 [object Float32Array] 95714 1 7 [object Float32Array] 5455565758595a5b5c5d5e5f95814 2 0 [object Float32Array] 5c5d5e5f95914 2 1 [object Float32Array] 96014 2 2 [object Float32Array] 96114 2 3 [object Float32Array] 96214 2 4 [object Float32Array] 96314 2 5 [object Float32Array] 96414 2 6 [object Float32Array] 96514 2 7 [object Float32Array] 5c5d5e5f96614 3 0 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f96714 3 1 [object Float32Array] 404142434445464748494a4b4c4d4e4f5051525396814 3 2 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b96914 3 3 [object Float32Array] 97014 3 4 [object Float32Array] 4041424397114 3 5 [object Float32Array] 404142434445464797214 3 6 [object Float32Array] 404142434445464748494a4b97314 3 7 [object Float32Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f97414 4 0 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f97514 4 1 [object Float32Array] 4445464748494a4b4c4d4e4f5051525397614 4 2 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b97714 4 3 [object Float32Array] 97814 4 4 [object Float32Array] 97914 4 5 [object Float32Array] 4445464798014 4 6 [object Float32Array] 4445464748494a4b98114 4 7 [object Float32Array] 4445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f98214 5 0 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f98314 5 1 [object Float32Array] 48494a4b4c4d4e4f5051525398414 5 2 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b98514 5 3 [object Float32Array] 98614 5 4 [object Float32Array] 98714 5 5 [object Float32Array] 98814 5 6 [object Float32Array] 48494a4b98914 5 7 [object Float32Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f99014 6 0 [object Float32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f99114 6 1 [object Float32Array] 4c4d4e4f5051525399214 6 2 [object Float32Array] 4c4d4e4f505152535455565758595a5b99314 6 3 [object Float32Array] 99414 6 4 [object Float32Array] 99514 6 5 [object Float32Array] 99614 6 6 [object Float32Array] 99714 6 7 [object Float32Array] 4c4d4e4f505152535455565758595a5b5c5d5e5f99814 7 0 [object Float32Array] 99914 7 1 [object Float32Array] 100014 7 2 [object Float32Array] 100114 7 3 [object Float32Array] 100214 7 4 [object Float32Array] 100314 7 5 [object Float32Array] 100414 7 6 [object Float32Array] 100514 7 7 [object Float32Array] 100615 0 0 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100715 0 1 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100815 0 2 [object Float32Array] 4445464748494a4b4c4d4e4f50515253100915 0 3 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101015 0 4 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101115 0 5 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101215 0 6 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101315 0 7 [object Float32Array] 4445464748494a4b4c4d4e4f50515253101415 1 0 [object Float32Array] 48494a4b4c4d4e4f50515253101515 1 1 [object Float32Array] 101615 1 2 [object Float32Array] 48494a4b4c4d4e4f101715 1 3 [object Float32Array] 101815 1 4 [object Float32Array] 101915 1 5 [object Float32Array] 48494a4b102015 1 6 [object Float32Array] 48494a4b4c4d4e4f102115 1 7 [object Float32Array] 48494a4b4c4d4e4f50515253102215 2 0 [object Float32Array] 50515253102315 2 1 [object Float32Array] 102415 2 2 [object Float32Array] 102515 2 3 [object Float32Array] 102615 2 4 [object Float32Array] 102715 2 5 [object Float32Array] 102815 2 6 [object Float32Array] 102915 2 7 [object Float32Array] 50515253103015 3 0 [object Float32Array] 4445464748494a4b4c4d4e4f50515253103115 3 1 [object Float32Array] 44454647103215 3 2 [object Float32Array] 4445464748494a4b4c4d4e4f103315 3 3 [object Float32Array] 103415 3 4 [object Float32Array] 44454647103515 3 5 [object Float32Array] 4445464748494a4b103615 3 6 [object Float32Array] 4445464748494a4b4c4d4e4f103715 3 7 [object Float32Array] 4445464748494a4b4c4d4e4f50515253103815 4 0 [object Float32Array] 48494a4b4c4d4e4f50515253103915 4 1 [object Float32Array] 104015 4 2 [object Float32Array] 48494a4b4c4d4e4f104115 4 3 [object Float32Array] 104215 4 4 [object Float32Array] 104315 4 5 [object Float32Array] 48494a4b104415 4 6 [object Float32Array] 48494a4b4c4d4e4f104515 4 7 [object Float32Array] 48494a4b4c4d4e4f50515253104615 5 0 [object Float32Array] 4c4d4e4f50515253104715 5 1 [object Float32Array] 104815 5 2 [object Float32Array] 4c4d4e4f104915 5 3 [object Float32Array] 105015 5 4 [object Float32Array] 105115 5 5 [object Float32Array] 105215 5 6 [object Float32Array] 4c4d4e4f105315 5 7 [object Float32Array] 4c4d4e4f50515253105415 6 0 [object Float32Array] 50515253105515 6 1 [object Float32Array] 105615 6 2 [object Float32Array] 105715 6 3 [object Float32Array] 105815 6 4 [object Float32Array] 105915 6 5 [object Float32Array] 106015 6 6 [object Float32Array] 106115 6 7 [object Float32Array] 50515253106215 7 0 [object Float32Array] 106315 7 1 [object Float32Array] 106415 7 2 [object Float32Array] 106515 7 3 [object Float32Array] 106615 7 4 [object Float32Array] 106715 7 5 [object Float32Array] 106815 7 6 [object Float32Array] 106915 7 7 [object Float32Array] 107016 0 0 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107116 0 1 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107216 0 2 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107316 0 3 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107416 0 4 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107516 0 5 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107616 0 6 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107716 0 7 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107816 1 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f107916 1 1 [object Float64Array] 108016 1 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657108116 1 3 [object Float64Array] 108216 1 4 [object Float64Array] 108316 1 5 [object Float64Array] 48494a4b4c4d4e4f108416 1 6 [object Float64Array] 48494a4b4c4d4e4f5051525354555657108516 1 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f108616 2 0 [object Float64Array] 58595a5b5c5d5e5f108716 2 1 [object Float64Array] 108816 2 2 [object Float64Array] 108916 2 3 [object Float64Array] 109016 2 4 [object Float64Array] 109116 2 5 [object Float64Array] 109216 2 6 [object Float64Array] 109316 2 7 [object Float64Array] 58595a5b5c5d5e5f109416 3 0 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f109516 3 1 [object Float64Array] 4041424344454647109616 3 2 [object Float64Array] 404142434445464748494a4b4c4d4e4f5051525354555657109716 3 3 [object Float64Array] 109816 3 4 [object Float64Array] 4041424344454647109916 3 5 [object Float64Array] 404142434445464748494a4b4c4d4e4f110016 3 6 [object Float64Array] 404142434445464748494a4b4c4d4e4f5051525354555657110116 3 7 [object Float64Array] 404142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f110216 4 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f110316 4 1 [object Float64Array] 110416 4 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657110516 4 3 [object Float64Array] 110616 4 4 [object Float64Array] 110716 4 5 [object Float64Array] 48494a4b4c4d4e4f110816 4 6 [object Float64Array] 48494a4b4c4d4e4f5051525354555657110916 4 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f111016 5 0 [object Float64Array] 505152535455565758595a5b5c5d5e5f111116 5 1 [object Float64Array] 111216 5 2 [object Float64Array] 5051525354555657111316 5 3 [object Float64Array] 111416 5 4 [object Float64Array] 111516 5 5 [object Float64Array] 111616 5 6 [object Float64Array] 5051525354555657111716 5 7 [object Float64Array] 505152535455565758595a5b5c5d5e5f111816 6 0 [object Float64Array] 58595a5b5c5d5e5f111916 6 1 [object Float64Array] 112016 6 2 [object Float64Array] 112116 6 3 [object Float64Array] 112216 6 4 [object Float64Array] 112316 6 5 [object Float64Array] 112416 6 6 [object Float64Array] 112516 6 7 [object Float64Array] 58595a5b5c5d5e5f112616 7 0 [object Float64Array] 112716 7 1 [object Float64Array] 112816 7 2 [object Float64Array] 112916 7 3 [object Float64Array] 113016 7 4 [object Float64Array] 113116 7 5 [object Float64Array] 113216 7 6 [object Float64Array] 113316 7 7 [object Float64Array] 113417 0 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113517 0 1 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113617 0 2 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113717 0 3 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113817 0 4 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f113917 0 5 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114017 0 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114117 0 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114217 1 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114317 1 1 [object Float64Array] 114417 1 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657114517 1 3 [object Float64Array] 114617 1 4 [object Float64Array] 48494a4b4c4d4e4f114717 1 5 [object Float64Array] 48494a4b4c4d4e4f5051525354555657114817 1 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f114917 1 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f115017 2 0 [object Float64Array] 58595a5b5c5d5e5f115117 2 1 [object Float64Array] 115217 2 2 [object Float64Array] 115317 2 3 [object Float64Array] 115417 2 4 [object Float64Array] 115517 2 5 [object Float64Array] 115617 2 6 [object Float64Array] 58595a5b5c5d5e5f115717 2 7 [object Float64Array] 58595a5b5c5d5e5f115817 3 0 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f115917 3 1 [object Float64Array] 116017 3 2 [object Float64Array] 48494a4b4c4d4e4f5051525354555657116117 3 3 [object Float64Array] 116217 3 4 [object Float64Array] 48494a4b4c4d4e4f116317 3 5 [object Float64Array] 48494a4b4c4d4e4f5051525354555657116417 3 6 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f116517 3 7 [object Float64Array] 48494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f116617 4 0 [object Float64Array] 505152535455565758595a5b5c5d5e5f116717 4 1 [object Float64Array] 116817 4 2 [object Float64Array] 5051525354555657116917 4 3 [object Float64Array] 117017 4 4 [object Float64Array] 117117 4 5 [object Float64Array] 5051525354555657117217 4 6 [object Float64Array] 505152535455565758595a5b5c5d5e5f117317 4 7 [object Float64Array] 505152535455565758595a5b5c5d5e5f117417 5 0 [object Float64Array] 58595a5b5c5d5e5f117517 5 1 [object Float64Array] 117617 5 2 [object Float64Array] 117717 5 3 [object Float64Array] 117817 5 4 [object Float64Array] 117917 5 5 [object Float64Array] 118017 5 6 [object Float64Array] 58595a5b5c5d5e5f118117 5 7 [object Float64Array] 58595a5b5c5d5e5f118217 6 0 [object Float64Array] 118317 6 1 [object Float64Array] 118417 6 2 [object Float64Array] 118517 6 3 [object Float64Array] 118617 6 4 [object Float64Array] 118717 6 5 [object Float64Array] 118817 6 6 [object Float64Array] 118917 6 7 [object Float64Array] 119017 7 0 [object Float64Array] 119117 7 1 [object Float64Array] 119217 7 2 [object Float64Array] 119317 7 3 [object Float64Array] 119417 7 4 [object Float64Array] 119517 7 5 [object Float64Array] 119617 7 6 [object Float64Array] 119717 7 7 [object Float64Array] 1198===*/1199function subarrayBruteforceTest() {1200 var buf = new ArrayBuffer(32);1201 var tmp;1202 var i;1203 tmp = new Uint8Array(buf);1204 for (i = 0; i < tmp.length; i++) {1205 tmp[i] = 0x40 + i;1206 }1207 // Include both 1:1 mapped views and offsetted views, we want to test1208 // both with subarray().1209 var views = [1210 new Int8Array(buf),1211 new Int8Array(buf, 5, 13),1212 new Uint8Array(buf),1213 new Uint8Array(buf, 5, 13),1214 new Uint8ClampedArray(buf),1215 new Uint8ClampedArray(buf, 5, 13),1216 new Int16Array(buf),1217 new Int16Array(buf, 4, 8),1218 new Uint16Array(buf),1219 new Uint16Array(buf, 12, 8),1220 new Int32Array(buf),1221 new Int32Array(buf, 4, 4),1222 new Uint32Array(buf),1223 new Uint32Array(buf, 12, 4),1224 new Float32Array(buf),1225 new Float32Array(buf, 4, 4),1226 new Float64Array(buf),1227 new Float64Array(buf, 8, 3),1228 ];1229 var offsets = [1230 'NONE', -3, -1, 0, 1, 2, '3', 101231 ];1232 views.forEach(function (view, idx1) {1233 offsets.forEach(function (start, idx2) {1234 offsets.forEach(function (end, idx3) {1235 var sub;1236 try {1237 if (start === 'NONE') {1238 sub = view.subarray();1239 } else if (end === 'NONE') {1240 sub = view.subarray(start);1241 } else {1242 sub = view.subarray(start, end);1243 }1244 print(idx1, idx2, idx3, Object.prototype.toString.call(sub), printableBuffer(sub));1245 } catch (e) {1246 print(idx1, idx2, idx3, Object.prototype.toString.call(sub), e.name, printableBuffer(sub));1247 }1248 });1249 });1250 });1251}1252try {1253 print('bruteforce test');1254 subarrayBruteforceTest();1255} catch (e) {1256 print(e.stack || e);...

Full Screen

Full Screen

Uint8ClampedArray.js

Source:Uint8ClampedArray.js Github

copy

Full Screen

1//-------------------------------------------------------------------------------------------------------2// Copyright (C) Microsoft. All rights reserved.3// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.4//-------------------------------------------------------------------------------------------------------5if (this.WScript && this.WScript.LoadScriptFile) { // Check for running in ch6 this.WScript.LoadScriptFile("..\\UnitTestFramework\\UnitTestFramework.js");7 this.WScript.LoadScriptFile("util.js");8}9var tests = [10 {11 name: "Uint8ClampedArray constructor exists and has expected properties",12 body: function () {13 assert.areNotEqual(undefined, Uint8ClampedArray, "Uint8ClampedArray constructor exists");14 15 assert.isTrue(Uint8ClampedArray.hasOwnProperty("BYTES_PER_ELEMENT"), "Uint8ClampedArray constructor should have a BYTES_PER_ELEMENT property");16 assert.areEqual(1, Uint8ClampedArray.BYTES_PER_ELEMENT, "Uint8ClampedArray.BYTES_PER_ELEMENT === 8");17 18 var descriptor = Object.getOwnPropertyDescriptor(Uint8ClampedArray, 'BYTES_PER_ELEMENT');19 assert.isFalse(descriptor.writable, "Uint8ClampedArray.BYTES_PER_ELEMENT.descriptor.writable === false");20 assert.isFalse(descriptor.enumerable, "Uint8ClampedArray.BYTES_PER_ELEMENT.descriptor.enumerable === false");21 assert.isFalse(descriptor.configurable, "Uint8ClampedArray.BYTES_PER_ELEMENT.descriptor.configurable === false");22 }23 },24 {25 name: "Uint8ClampedArray prototype has expected fields",26 body: function() {27 var descriptor = Object.getOwnPropertyDescriptor(Uint8ClampedArray, 'prototype');28 assert.isFalse(descriptor.writable, "Uint8ClampedArray.prototype.descriptor.writable === false");29 assert.isFalse(descriptor.enumerable, "Uint8ClampedArray.prototype.descriptor.enumerable === false");30 assert.isFalse(descriptor.configurable, "Uint8ClampedArray.prototype.descriptor.configurable === false");31 32 assert.isTrue(Uint8ClampedArray.prototype.hasOwnProperty("set"), "Uint8ClampedArray prototype should have a set method");33 assert.isTrue(Uint8ClampedArray.prototype.hasOwnProperty("subarray"), "Uint8ClampedArray prototype should have a subarray method");34 35 assert.isTrue(Uint8ClampedArray.prototype.set.length === 2, "set method has length of 2");36 assert.isTrue(Uint8ClampedArray.prototype.subarray.length === 2, "subarray method has length of 2");37 }38 },39 {40 name: "Uint8ClampedArray clamping functionality",41 body: function() {42 var arr = new Uint8ClampedArray(100);43 44 arr[0] = 0;45 arr[1] = 0.0;46 arr[2] = -1;47 arr[3] = -1.0;48 arr[4] = 254;49 arr[5] = 255;50 arr[6] = 256;51 arr[7] = 257;52 arr[8] = 254.0;53 arr[9] = 254.4;54 arr[10] = 254.5;55 arr[11] = 254.6;56 arr[12] = 254.9999;57 arr[13] = 255.0;58 arr[14] = 255.5;59 arr[15] = 256.0;60 arr[16] = 2000;61 arr[17] = 2000.0;62 arr[18] = 99999999999999999999999;63 arr[19] = -99999999999999999999999;64 arr[20] = 1.5;65 arr[21] = 253.5;66 arr[22] = 1.4999;67 arr[23] = 0.33333 * 3;68 arr[24] = 0.33333 * 3 + 0.5;69 arr[25] = -20000.0;70 arr[26] = -20000;71 arr[27] = false;72 arr[28] = true;73 arr[29] = "256.0";74 arr[30] = "-256.0";75 arr[31] = undefined;76 arr[32] = null;77 arr[33] = NaN;78 arr[34] = Number.NEGATIVE_INFINITY;79 arr[35] = (-Number.MAX_VALUE)*2;80 arr[36] = Number.POSITIVE_INFINITY;81 arr[37] = Number.MAX_VALUE*2;82 arr[38] = 0.5;83 arr[39] = 1.5;84 arr[40] = 2.5;85 arr[41] = 3.5;86 arr[42] = 4.5;87 arr[43] = 10.5;88 arr[44] = 11.5;89 90 assert.areEqual(0, arr[0], "clamped(0) === 0");91 assert.areEqual(0, arr[1], "clamped(0.0) === 0");92 assert.areEqual(0, arr[2], "clamped(-1) === 0");93 assert.areEqual(0, arr[3], "clamped(-1.0) === 0");94 assert.areEqual(254, arr[4], "clamped(254) === 254");95 assert.areEqual(255, arr[5], "clamped(255) === 255");96 assert.areEqual(255, arr[6], "clamped(256) === 255");97 assert.areEqual(255, arr[7], "clamped(257) === 255");98 assert.areEqual(254, arr[8], "clamped(254.0) === 254");99 assert.areEqual(254, arr[9], "clamped(254.4) === 254");100 assert.areEqual(254, arr[10], "clamped(254.5) === 254");101 assert.areEqual(255, arr[11], "clamped(254.6) === 255");102 assert.areEqual(255, arr[12], "clamped(254.9999) === 255");103 assert.areEqual(255, arr[13], "clamped(255.0) === 255");104 assert.areEqual(255, arr[14], "clamped(255.5) === 255");105 assert.areEqual(255, arr[15], "clamped(256.0) === 255");106 assert.areEqual(255, arr[16], "clamped(2000) === 255");107 assert.areEqual(255, arr[17], "clamped(2000.0) === 255");108 assert.areEqual(255, arr[18], "clamped(99999999999999999999999) === 255");109 assert.areEqual(0, arr[19], "clamped(-99999999999999999999999) === 0");110 assert.areEqual(2, arr[20], "clamped(1.5) === 2");111 assert.areEqual(254, arr[21], "clamped(253.5) === 254");112 assert.areEqual(1, arr[22], "clamped(1.4999) === 1");113 assert.areEqual(1, arr[23], "clamped(0.33333 * 3) === 1");114 assert.areEqual(1, arr[24], "clamped(0.33333 * 3 + 0.5) === 1");115 assert.areEqual(0, arr[25], "clamped(-20000.0) === 0");116 assert.areEqual(0, arr[26], "clamped(-20000) === 0");117 assert.areEqual(0, arr[27], "clamped(false) === 0");118 assert.areEqual(1, arr[28], "clamped(true) === 1");119 assert.areEqual(255, arr[29], "clamped('256.0') === 255");120 assert.areEqual(0, arr[30], "clamped('-256.0') === 0");121 assert.areEqual(0, arr[31], "clamped(undefined) === 0");122 assert.areEqual(0, arr[32], "clamped(null) === 0");123 assert.areEqual(0, arr[33], "clamped(NaN) === 0");124 assert.areEqual(0, arr[34], "clamped(Number.NEGATIVE_INFINITY) === 0");125 assert.areEqual(0, arr[35], "clamped((-Number.MAX_VALUE)*2) === 0");126 assert.areEqual(255, arr[36], "clamped(Number.POSITIVE_INFINITY) === 255");127 assert.areEqual(255, arr[37], "clamped(Number.MAX_VALUE*2) === 255");128 assert.areEqual(0, arr[38], "clamped(0.5) === 0");129 assert.areEqual(2, arr[39], "clamped(1.5) === 2");130 assert.areEqual(2, arr[40], "clamped(2.5) === 2");131 assert.areEqual(4, arr[41], "clamped(3.5) === 4");132 assert.areEqual(4, arr[42], "clamped(4.5) === 4");133 assert.areEqual(10, arr[43], "clamped(10.5) === 10");134 assert.areEqual(12, arr[44], "clamped(11.5) === 12");135 }136 },137 {138 name: "ToString works correctly for Uint8Clamped array",139 body: function() {140 var arr = new Uint8ClampedArray(100);141 142 assert.areEqual("[object Uint8ClampedArray]", arr.toString(), 'arr.toString == "[object Uint8ClampedArray]"');143 }144 },145 {146 name: "Uint8ClampedArray.subarray functional test",147 body: function() {148 var arr = new Uint8ClampedArray([0,1,2,3,4,5]);149 150 assert.areEqual(arr, arr.subarray(0,arr.length), 'arr.subarray(0,arr.length) == arr');151 assert.areEqual([], arr.subarray(0,0), 'arr.subarray(0,0) == []');152 assert.areEqual([1], arr.subarray(1,2), 'arr.subarray(1,2) == [1]');153 assert.areEqual([], arr.subarray(3,2), 'arr.subarray(3,2) == []');154 assert.areEqual([1,2,3], arr.subarray(1,4), 'arr.subarray(1,4) == [1,2,3]');155 156 assert.throws(function () { arr.subarray(); }, RangeError, "Invalid begin/end value in typed array subarray method", "Invalid begin/end value in typed array subarray method");157 }158 },159 {160 name: "Uint8ClampedArray.set functional test",161 body: function() {162 var arr = new Uint8ClampedArray([0,1,2,3,4,5]);163 164 var dst = new Uint8ClampedArray(10);165 dst.set(arr);166 assert.areEqual([0,1,2,3,4,5,0,0,0,0], dst, 'dst.set(arr) == [0,1,2,3,4,5,0,0,0,0]');167 var dst = new Uint8ClampedArray(10);168 dst.set(arr,0);169 assert.areEqual([0,1,2,3,4,5,0,0,0,0], dst, 'dst.set(arr,0) == [0,1,2,3,4,5,0,0,0,0]');170 var dst = new Uint8ClampedArray(10);171 dst.set(arr,4);172 assert.areEqual([0,0,0,0,0,1,2,3,4,5], dst, 'dst.set(arr,4) == [0,0,0,0,0,1,2,3,4,5]');173 174 assert.throws(function () { arr.set(); }, TypeError, "Invalid source in typed array set", "Invalid source in typed array set");175 assert.throws(function () { new Uint8ClampedArray(3).set(arr); }, TypeError, "Invalid offset/length when creating typed array", "Invalid offset/length when creating typed array");176 assert.throws(function () { new Uint8ClampedArray(3).set(arr,0); }, TypeError, "Invalid offset/length when creating typed array", "Invalid offset/length when creating typed array");177 assert.throws(function () { new Uint8ClampedArray(3).set(arr,10); }, TypeError, "Invalid offset/length when creating typed array", "Invalid offset/length when creating typed array");178 assert.throws(function () { new Uint8ClampedArray(3).set(arr,10); }, TypeError, "Invalid offset/length when creating typed array", "Invalid offset/length when creating typed array");179 }180 }181];182testRunner.runTests(tests);183WScript.Echo("test2");184testSetWithInt(-1, 2, new Uint8ClampedArray(3), new Uint8ClampedArray(3), new Uint8ClampedArray(3));185testSetWithFloat(-1, 2, new Uint8ClampedArray(3), new Uint8ClampedArray(3), new Uint8ClampedArray(3));186testSetWithObj(-1, 2, new Uint8ClampedArray(3), new Uint8ClampedArray(3), new Uint8ClampedArray(3));187WScript.Echo("test2 JIT");188testSetWithInt(-1, 2, new Uint8ClampedArray(3), new Uint8ClampedArray(3), new Uint8ClampedArray(3));189testSetWithFloat(-1, 2, new Uint8ClampedArray(3), new Uint8ClampedArray(3), new Uint8ClampedArray(3));190testSetWithObj(-1, 2, new Uint8ClampedArray(3), new Uint8ClampedArray(3), new Uint8ClampedArray(3));191WScript.Echo("test3");192testIndexValueForSet(new Uint8ClampedArray(5));193WScript.Echo("test3 JIT");...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require("fast-check");2const { uint8ClampedArray } = require("fast-check/lib/types/Uint8ClampedArray");3const { array } = require("fast-check/lib/types/Array");4const { nat } = require("fast-check/lib/types/Nat");5const { tuple } = require("fast-check/lib/types/Tuple");6const { record } = require("fast-check/lib/types/Record");7const { integer } = require("fast-check/lib/types/Integer");8const { string } = require("fast-check/lib/types/String");9const { option } = require("fast-check/lib/types/Option");10const { float } = require("fast-check/lib/types/Float");11const { char } = require("fast-check/lib/types/Char");12const { bigInt } = require("fast-check/lib/types/BigInt");13const { date } = require("fast-check/lib/types/Date");14const { json } = require("fast-check/lib/types/Json");15const { anyObject } = require("fast-check/lib/types/AnyObject");16const { any } = require("fast-check/lib/types/Any");17const { constantFrom } = require("fast-check/lib/types/ConstantFrom");18const { constant } = require("fast-check/lib/types/Constant");19const { unicode } = require("fast-check/lib/types/Unicode");20const { unicodeJson } = require("fast-check/lib/types/UnicodeJson");21const { webSafeJson } = require("fast-check/lib/types/WebSafeJson");22const { webSafeUnicodeJson } = require("fast-check/lib/types/WebSafeUnicodeJson");23const { frequency } = require("fast-check/lib/types/Frequency");24const { oneof } = require("fast-check/lib/types/OneOf");25const { dictionary } = require("fast-check/lib/types/Dictionary");26const { set } = require("fast-check/lib/types/Set");27const { map } = require("fast-check/lib/types/Map");28const { recordToTuple } = require("fast-check/lib/types/RecordToTuple");29const { tupleToObject } = require("fast-check/lib/types/TupleToObject");30const { tupleToRecord } = require("fast-check/lib/types/TupleToRecord");31const { tupleToUnorderedTuple } = require("fast-check/lib/types/TupleToUnorderedTuple");32const { tupleToUnorderedObject } = require("fast-check/lib/types/TupleToUnorderedObject");33const { unorderedObjectToUnordered

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const uint8ClampedArrayArb = fc.uint8ClampedArray();3fc.assert(4 fc.property(uint8ClampedArrayArb, (arr) => {5 return arr.every((v) => v >= 0 && v <= 255);6 })7);

Full Screen

Using AI Code Generation

copy

Full Screen

1const {uint8ClampedArray} = require('fast-check');2const fc = require('fast-check');3function test3() {4 fc.assert(5 fc.property(uint8ClampedArray(), (t) => {6 console.log(t);7 return true;8 })9 );10}11test3();12const {uint8ClampedArray} = require('fast-check');13const fc = require('fast-check');14function test4() {15 fc.assert(16 fc.property(uint8ClampedArray(), (t) => {17 console.log(t);18 return true;19 })20 );21}22test4();23const {uint8ClampedArray} = require('fast-check');24const fc = require('fast-check');25function test5() {26 fc.assert(27 fc.property(uint8ClampedArray(), (t) => {28 console.log(t);29 return true;30 })31 );32}33test5();34const {uint8ClampedArray} = require('fast-check');35const fc = require('fast-check');36function test6() {37 fc.assert(38 fc.property(uint8ClampedArray(), (t) => {39 console.log(t);40 return true;41 })42 );43}44test6();45const {uint8ClampedArray} = require('fast-check');46const fc = require('fast-check');47function test7() {48 fc.assert(49 fc.property(uint8ClampedArray(), (t) => {50 console.log(t);51 return true;52 })53 );54}55test7();

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const uint8 = fc.uint8ClampedArray({ minLength: 10, maxLength: 10 });3const uint8Ar = uint8.generate(fc.random(1));4console.log(uint8Ar);5const fc = require('fast-check');6const uint16 = fc.uint16Array({ minLength: 10, maxLength: 10 });7const uint16Ar = uint16.generate(fc.random(1));8console.log(uint16Ar);9const fc = require('fast-check');10const uint32 = fc.uint32Array({ minLength: 10, maxLength: 10 });11const uint32Ar = uint32.generate(fc.random(1));12console.log(uint32Ar);13const fc = require('fast-check');14const int8 = fc.int8Array({ minLength: 10, maxLength: 10 });15const int8Ar = int8.generate(fc.random(1));16console.log(int8Ar);17const fc = require('fast-check');18const int16 = fc.int16Array({ minLength: 10, maxLength: 10 });19const int16Ar = int16.generate(fc.random(1));20console.log(int16Ar);21const fc = require('fast-check');22const int32 = fc.int32Array({ minLength: 10, maxLength: 10 });23const int32Ar = int32.generate(fc.random(1));24console.log(int32Ar);25const fc = require('fast-check');26const float32 = fc.float32Array({ minLength: 10, maxLength: 10 });27const float32Ar = float32.generate(fc.random(1));28console.log(float32Ar);29const fc = require('fast-check');30const float64 = fc.float64Array({ minLength:

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check');2const { uint8ClampedArray } = require('fast-check/lib/check/arbitrary/ArrayArbitrary.js');3const { convertToTypedArray } = require('fast-check/lib/check/arbitrary/TypedArrayArbitrary.js');4const uint8ClampedArrayArb = uint8ClampedArray();5const uint8ClampedArrayArb2 = uint8ClampedArrayArb.map(convertToTypedArray);6fc.assert(7 fc.property(uint8ClampedArrayArb2, (t) => {8 return t.every((v) => v >= 0 && v <= 255);9 })10);11const fc = require('fast-check');12const { uint8ClampedArray } = require('fast-check/lib/check/arbitrary/ArrayArbitrary.js');13const { convertToTypedArray } = require('fast-check/lib/check/arbitrary/TypedArrayArbitrary.js');14const uint8ClampedArrayArb = uint8ClampedArray();15const uint8ClampedArrayArb2 = uint8ClampedArrayArb.map(convertToTypedArray);16fc.assert(17 fc.property(uint8ClampedArrayArb2, (t) => {18 return t.every((v) => v >= 0 && v <= 255);19 })20);21const fc = require('fast-check');22const { uint8ClampedArray } = require('fast-check/lib/check/arbitrary/ArrayArbitrary.js');23const { convertToTypedArray } = require('fast-check/lib/check/arbitrary/TypedArrayArbitrary.js');24const uint8ClampedArrayArb = uint8ClampedArray();25const uint8ClampedArrayArb2 = uint8ClampedArrayArb.map(convertToTypedArray);26fc.assert(27 fc.property(uint8ClampedArrayArb2, (t) => {28 return t.every((v) => v >= 0 && v <= 255);29 })30);

Full Screen

Using AI Code Generation

copy

Full Screen

1const fc = require('fast-check-monorepo');2const test3 = require('./test3.js');3const assert = require('assert');4console.log('test3.js: running test3.js');5console.log('test3.js: test3(1,2,3,4,5,6,7,8,9,10,11,12) = ', test3(1,2,3,4,5,6,7,8,9,10,11,12));6console.log('test3.js: test3(1,2,3,4,5,6,7,8,9,10,11,12) = ', test3(1,2,3,4,5,6,7,8,9,10,11,12));7console.log('test3.js: test3(1,2,3,4,5,6,7,8,9,10,11,12) = ', test3(1,2,3,4,5,6,7,8,9,10,11,12));8console.log('test3.js: fc.assert(fc.property(fc.integer(), fc.integer(), fc.integer(), fc.integer(), fc.integer(), fc.intege

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run fast-check-monorepo automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful