multi_compress 0.1.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +13 -0
- data/LICENSE.txt +21 -0
- data/README.md +116 -0
- data/ext/multi_compress/extconf.rb +171 -0
- data/ext/multi_compress/multi_compress.c +1534 -0
- data/ext/multi_compress/vendor/brotli/c/common/constants.c +15 -0
- data/ext/multi_compress/vendor/brotli/c/common/constants.h +201 -0
- data/ext/multi_compress/vendor/brotli/c/common/context.c +156 -0
- data/ext/multi_compress/vendor/brotli/c/common/context.h +113 -0
- data/ext/multi_compress/vendor/brotli/c/common/dictionary.c +5916 -0
- data/ext/multi_compress/vendor/brotli/c/common/dictionary.h +64 -0
- data/ext/multi_compress/vendor/brotli/c/common/platform.c +23 -0
- data/ext/multi_compress/vendor/brotli/c/common/platform.h +541 -0
- data/ext/multi_compress/vendor/brotli/c/common/shared_dictionary.c +521 -0
- data/ext/multi_compress/vendor/brotli/c/common/shared_dictionary_internal.h +75 -0
- data/ext/multi_compress/vendor/brotli/c/common/transform.c +291 -0
- data/ext/multi_compress/vendor/brotli/c/common/transform.h +85 -0
- data/ext/multi_compress/vendor/brotli/c/common/version.h +51 -0
- data/ext/multi_compress/vendor/brotli/c/dec/bit_reader.c +78 -0
- data/ext/multi_compress/vendor/brotli/c/dec/bit_reader.h +423 -0
- data/ext/multi_compress/vendor/brotli/c/dec/decode.c +2875 -0
- data/ext/multi_compress/vendor/brotli/c/dec/huffman.c +342 -0
- data/ext/multi_compress/vendor/brotli/c/dec/huffman.h +122 -0
- data/ext/multi_compress/vendor/brotli/c/dec/prefix.h +733 -0
- data/ext/multi_compress/vendor/brotli/c/dec/state.c +183 -0
- data/ext/multi_compress/vendor/brotli/c/dec/state.h +400 -0
- data/ext/multi_compress/vendor/brotli/c/enc/backward_references.c +207 -0
- data/ext/multi_compress/vendor/brotli/c/enc/backward_references.h +40 -0
- data/ext/multi_compress/vendor/brotli/c/enc/backward_references_hq.c +939 -0
- data/ext/multi_compress/vendor/brotli/c/enc/backward_references_hq.h +96 -0
- data/ext/multi_compress/vendor/brotli/c/enc/backward_references_inc.h +189 -0
- data/ext/multi_compress/vendor/brotli/c/enc/bit_cost.c +36 -0
- data/ext/multi_compress/vendor/brotli/c/enc/bit_cost.h +64 -0
- data/ext/multi_compress/vendor/brotli/c/enc/bit_cost_inc.h +127 -0
- data/ext/multi_compress/vendor/brotli/c/enc/block_encoder_inc.h +34 -0
- data/ext/multi_compress/vendor/brotli/c/enc/block_splitter.c +217 -0
- data/ext/multi_compress/vendor/brotli/c/enc/block_splitter.h +52 -0
- data/ext/multi_compress/vendor/brotli/c/enc/block_splitter_inc.h +481 -0
- data/ext/multi_compress/vendor/brotli/c/enc/brotli_bit_stream.c +1336 -0
- data/ext/multi_compress/vendor/brotli/c/enc/brotli_bit_stream.h +89 -0
- data/ext/multi_compress/vendor/brotli/c/enc/cluster.c +57 -0
- data/ext/multi_compress/vendor/brotli/c/enc/cluster.h +49 -0
- data/ext/multi_compress/vendor/brotli/c/enc/cluster_inc.h +325 -0
- data/ext/multi_compress/vendor/brotli/c/enc/command.c +28 -0
- data/ext/multi_compress/vendor/brotli/c/enc/command.h +191 -0
- data/ext/multi_compress/vendor/brotli/c/enc/compound_dictionary.c +207 -0
- data/ext/multi_compress/vendor/brotli/c/enc/compound_dictionary.h +74 -0
- data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment.c +800 -0
- data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment.h +86 -0
- data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment_two_pass.c +657 -0
- data/ext/multi_compress/vendor/brotli/c/enc/compress_fragment_two_pass.h +72 -0
- data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash.c +1848 -0
- data/ext/multi_compress/vendor/brotli/c/enc/dictionary_hash.h +25 -0
- data/ext/multi_compress/vendor/brotli/c/enc/encode.c +1996 -0
- data/ext/multi_compress/vendor/brotli/c/enc/encoder_dict.c +640 -0
- data/ext/multi_compress/vendor/brotli/c/enc/encoder_dict.h +157 -0
- data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode.c +504 -0
- data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode.h +123 -0
- data/ext/multi_compress/vendor/brotli/c/enc/entropy_encode_static.h +542 -0
- data/ext/multi_compress/vendor/brotli/c/enc/fast_log.c +105 -0
- data/ext/multi_compress/vendor/brotli/c/enc/fast_log.h +67 -0
- data/ext/multi_compress/vendor/brotli/c/enc/find_match_length.h +72 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash.h +728 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash_composite_inc.h +140 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash_forgetful_chain_inc.h +295 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match64_inc.h +262 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_inc.h +258 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash_longest_match_quickly_inc.h +266 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash_rolling_inc.h +212 -0
- data/ext/multi_compress/vendor/brotli/c/enc/hash_to_binary_tree_inc.h +330 -0
- data/ext/multi_compress/vendor/brotli/c/enc/histogram.c +100 -0
- data/ext/multi_compress/vendor/brotli/c/enc/histogram.h +64 -0
- data/ext/multi_compress/vendor/brotli/c/enc/histogram_inc.h +51 -0
- data/ext/multi_compress/vendor/brotli/c/enc/literal_cost.c +180 -0
- data/ext/multi_compress/vendor/brotli/c/enc/literal_cost.h +32 -0
- data/ext/multi_compress/vendor/brotli/c/enc/memory.c +194 -0
- data/ext/multi_compress/vendor/brotli/c/enc/memory.h +131 -0
- data/ext/multi_compress/vendor/brotli/c/enc/metablock.c +677 -0
- data/ext/multi_compress/vendor/brotli/c/enc/metablock.h +106 -0
- data/ext/multi_compress/vendor/brotli/c/enc/metablock_inc.h +185 -0
- data/ext/multi_compress/vendor/brotli/c/enc/params.h +47 -0
- data/ext/multi_compress/vendor/brotli/c/enc/prefix.h +54 -0
- data/ext/multi_compress/vendor/brotli/c/enc/quality.h +202 -0
- data/ext/multi_compress/vendor/brotli/c/enc/ringbuffer.h +168 -0
- data/ext/multi_compress/vendor/brotli/c/enc/state.h +104 -0
- data/ext/multi_compress/vendor/brotli/c/enc/static_dict.c +542 -0
- data/ext/multi_compress/vendor/brotli/c/enc/static_dict.h +41 -0
- data/ext/multi_compress/vendor/brotli/c/enc/static_dict_lut.h +5866 -0
- data/ext/multi_compress/vendor/brotli/c/enc/utf8_util.c +85 -0
- data/ext/multi_compress/vendor/brotli/c/enc/utf8_util.h +33 -0
- data/ext/multi_compress/vendor/brotli/c/enc/write_bits.h +88 -0
- data/ext/multi_compress/vendor/brotli/c/include/brotli/decode.h +409 -0
- data/ext/multi_compress/vendor/brotli/c/include/brotli/encode.h +501 -0
- data/ext/multi_compress/vendor/brotli/c/include/brotli/port.h +305 -0
- data/ext/multi_compress/vendor/brotli/c/include/brotli/shared_dictionary.h +100 -0
- data/ext/multi_compress/vendor/brotli/c/include/brotli/types.h +83 -0
- data/ext/multi_compress/vendor/lz4/lib/LICENSE +24 -0
- data/ext/multi_compress/vendor/lz4/lib/Makefile +244 -0
- data/ext/multi_compress/vendor/lz4/lib/README.md +193 -0
- data/ext/multi_compress/vendor/lz4/lib/dll/example/Makefile +63 -0
- data/ext/multi_compress/vendor/lz4/lib/dll/example/README.md +69 -0
- data/ext/multi_compress/vendor/lz4/lib/dll/example/fullbench-dll.sln +25 -0
- data/ext/multi_compress/vendor/lz4/lib/dll/example/fullbench-dll.vcxproj +182 -0
- data/ext/multi_compress/vendor/lz4/lib/liblz4-dll.rc.in +35 -0
- data/ext/multi_compress/vendor/lz4/lib/liblz4.pc.in +14 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4.c +2829 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4.h +884 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4file.c +341 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4file.h +93 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4frame.c +2136 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4frame.h +751 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4frame_static.h +47 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4hc.c +2192 -0
- data/ext/multi_compress/vendor/lz4/lib/lz4hc.h +414 -0
- data/ext/multi_compress/vendor/lz4/lib/xxhash.c +1030 -0
- data/ext/multi_compress/vendor/lz4/lib/xxhash.h +328 -0
- data/ext/multi_compress/vendor/zstd/lib/BUCK +232 -0
- data/ext/multi_compress/vendor/zstd/lib/Makefile +369 -0
- data/ext/multi_compress/vendor/zstd/lib/README.md +237 -0
- data/ext/multi_compress/vendor/zstd/lib/common/allocations.h +55 -0
- data/ext/multi_compress/vendor/zstd/lib/common/bits.h +200 -0
- data/ext/multi_compress/vendor/zstd/lib/common/bitstream.h +457 -0
- data/ext/multi_compress/vendor/zstd/lib/common/compiler.h +450 -0
- data/ext/multi_compress/vendor/zstd/lib/common/cpu.h +249 -0
- data/ext/multi_compress/vendor/zstd/lib/common/debug.c +30 -0
- data/ext/multi_compress/vendor/zstd/lib/common/debug.h +116 -0
- data/ext/multi_compress/vendor/zstd/lib/common/entropy_common.c +340 -0
- data/ext/multi_compress/vendor/zstd/lib/common/error_private.c +63 -0
- data/ext/multi_compress/vendor/zstd/lib/common/error_private.h +168 -0
- data/ext/multi_compress/vendor/zstd/lib/common/fse.h +640 -0
- data/ext/multi_compress/vendor/zstd/lib/common/fse_decompress.c +313 -0
- data/ext/multi_compress/vendor/zstd/lib/common/huf.h +286 -0
- data/ext/multi_compress/vendor/zstd/lib/common/mem.h +426 -0
- data/ext/multi_compress/vendor/zstd/lib/common/pool.c +371 -0
- data/ext/multi_compress/vendor/zstd/lib/common/pool.h +90 -0
- data/ext/multi_compress/vendor/zstd/lib/common/portability_macros.h +158 -0
- data/ext/multi_compress/vendor/zstd/lib/common/threading.c +182 -0
- data/ext/multi_compress/vendor/zstd/lib/common/threading.h +150 -0
- data/ext/multi_compress/vendor/zstd/lib/common/xxhash.c +18 -0
- data/ext/multi_compress/vendor/zstd/lib/common/xxhash.h +7020 -0
- data/ext/multi_compress/vendor/zstd/lib/common/zstd_common.c +48 -0
- data/ext/multi_compress/vendor/zstd/lib/common/zstd_deps.h +111 -0
- data/ext/multi_compress/vendor/zstd/lib/common/zstd_internal.h +392 -0
- data/ext/multi_compress/vendor/zstd/lib/common/zstd_trace.h +163 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/clevels.h +134 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/fse_compress.c +625 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/hist.c +181 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/hist.h +75 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/huf_compress.c +1464 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress.c +7153 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_internal.h +1534 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_literals.c +235 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_literals.h +39 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_sequences.c +442 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_sequences.h +54 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_superblock.c +688 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_compress_superblock.h +32 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_cwksp.h +748 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_double_fast.c +770 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_double_fast.h +50 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_fast.c +968 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_fast.h +38 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_lazy.c +2199 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_lazy.h +202 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm.c +730 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm.h +117 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_ldm_geartab.h +106 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_opt.c +1576 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstd_opt.h +80 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstdmt_compress.c +1882 -0
- data/ext/multi_compress/vendor/zstd/lib/compress/zstdmt_compress.h +113 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/huf_decompress.c +1944 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/huf_decompress_amd64.S +595 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_ddict.c +244 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_ddict.h +44 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress.c +2407 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_block.c +2215 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_block.h +73 -0
- data/ext/multi_compress/vendor/zstd/lib/decompress/zstd_decompress_internal.h +240 -0
- data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff.h +214 -0
- data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_common.c +26 -0
- data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_compress.c +167 -0
- data/ext/multi_compress/vendor/zstd/lib/deprecated/zbuff_decompress.c +77 -0
- data/ext/multi_compress/vendor/zstd/lib/dictBuilder/cover.c +1261 -0
- data/ext/multi_compress/vendor/zstd/lib/dictBuilder/cover.h +152 -0
- data/ext/multi_compress/vendor/zstd/lib/dictBuilder/divsufsort.c +1913 -0
- data/ext/multi_compress/vendor/zstd/lib/dictBuilder/divsufsort.h +67 -0
- data/ext/multi_compress/vendor/zstd/lib/dictBuilder/fastcover.c +766 -0
- data/ext/multi_compress/vendor/zstd/lib/dictBuilder/zdict.c +1133 -0
- data/ext/multi_compress/vendor/zstd/lib/dll/example/Makefile +48 -0
- data/ext/multi_compress/vendor/zstd/lib/dll/example/README.md +63 -0
- data/ext/multi_compress/vendor/zstd/lib/dll/example/build_package.bat +20 -0
- data/ext/multi_compress/vendor/zstd/lib/dll/example/fullbench-dll.sln +25 -0
- data/ext/multi_compress/vendor/zstd/lib/dll/example/fullbench-dll.vcxproj +181 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_legacy.h +452 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v01.c +2127 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v01.h +94 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v02.c +3465 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v02.h +93 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v03.c +3105 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v03.h +93 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v04.c +3598 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v04.h +142 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v05.c +4005 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v05.h +162 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v06.c +4106 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v06.h +172 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v07.c +4490 -0
- data/ext/multi_compress/vendor/zstd/lib/legacy/zstd_v07.h +187 -0
- data/ext/multi_compress/vendor/zstd/lib/libzstd.mk +237 -0
- data/ext/multi_compress/vendor/zstd/lib/libzstd.pc.in +16 -0
- data/ext/multi_compress/vendor/zstd/lib/module.modulemap +35 -0
- data/ext/multi_compress/vendor/zstd/lib/zdict.h +474 -0
- data/ext/multi_compress/vendor/zstd/lib/zstd.h +3089 -0
- data/ext/multi_compress/vendor/zstd/lib/zstd_errors.h +114 -0
- data/lib/multi_compress/version.rb +5 -0
- data/lib/multi_compress.rb +329 -0
- metadata +322 -0
|
@@ -0,0 +1,733 @@
|
|
|
1
|
+
/* Copyright 2013 Google Inc. All Rights Reserved.
|
|
2
|
+
|
|
3
|
+
Distributed under MIT license.
|
|
4
|
+
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* Lookup tables to map prefix codes to value ranges. This is used during
|
|
8
|
+
decoding of the block lengths, literal insertion lengths and copy lengths. */
|
|
9
|
+
|
|
10
|
+
#ifndef BROTLI_DEC_PREFIX_H_
|
|
11
|
+
#define BROTLI_DEC_PREFIX_H_
|
|
12
|
+
|
|
13
|
+
#include <brotli/types.h>
|
|
14
|
+
|
|
15
|
+
#include "../common/constants.h"
|
|
16
|
+
|
|
17
|
+
typedef struct CmdLutElement {
|
|
18
|
+
uint8_t insert_len_extra_bits;
|
|
19
|
+
uint8_t copy_len_extra_bits;
|
|
20
|
+
int8_t distance_code;
|
|
21
|
+
uint8_t context;
|
|
22
|
+
uint16_t insert_len_offset;
|
|
23
|
+
uint16_t copy_len_offset;
|
|
24
|
+
} CmdLutElement;
|
|
25
|
+
|
|
26
|
+
static const CmdLutElement kCmdLut[BROTLI_NUM_COMMAND_SYMBOLS] = {
|
|
27
|
+
{ 0x00, 0x00, 0, 0x00, 0x0000, 0x0002 },
|
|
28
|
+
{ 0x00, 0x00, 0, 0x01, 0x0000, 0x0003 },
|
|
29
|
+
{ 0x00, 0x00, 0, 0x02, 0x0000, 0x0004 },
|
|
30
|
+
{ 0x00, 0x00, 0, 0x03, 0x0000, 0x0005 },
|
|
31
|
+
{ 0x00, 0x00, 0, 0x03, 0x0000, 0x0006 },
|
|
32
|
+
{ 0x00, 0x00, 0, 0x03, 0x0000, 0x0007 },
|
|
33
|
+
{ 0x00, 0x00, 0, 0x03, 0x0000, 0x0008 },
|
|
34
|
+
{ 0x00, 0x00, 0, 0x03, 0x0000, 0x0009 },
|
|
35
|
+
{ 0x00, 0x00, 0, 0x00, 0x0001, 0x0002 },
|
|
36
|
+
{ 0x00, 0x00, 0, 0x01, 0x0001, 0x0003 },
|
|
37
|
+
{ 0x00, 0x00, 0, 0x02, 0x0001, 0x0004 },
|
|
38
|
+
{ 0x00, 0x00, 0, 0x03, 0x0001, 0x0005 },
|
|
39
|
+
{ 0x00, 0x00, 0, 0x03, 0x0001, 0x0006 },
|
|
40
|
+
{ 0x00, 0x00, 0, 0x03, 0x0001, 0x0007 },
|
|
41
|
+
{ 0x00, 0x00, 0, 0x03, 0x0001, 0x0008 },
|
|
42
|
+
{ 0x00, 0x00, 0, 0x03, 0x0001, 0x0009 },
|
|
43
|
+
{ 0x00, 0x00, 0, 0x00, 0x0002, 0x0002 },
|
|
44
|
+
{ 0x00, 0x00, 0, 0x01, 0x0002, 0x0003 },
|
|
45
|
+
{ 0x00, 0x00, 0, 0x02, 0x0002, 0x0004 },
|
|
46
|
+
{ 0x00, 0x00, 0, 0x03, 0x0002, 0x0005 },
|
|
47
|
+
{ 0x00, 0x00, 0, 0x03, 0x0002, 0x0006 },
|
|
48
|
+
{ 0x00, 0x00, 0, 0x03, 0x0002, 0x0007 },
|
|
49
|
+
{ 0x00, 0x00, 0, 0x03, 0x0002, 0x0008 },
|
|
50
|
+
{ 0x00, 0x00, 0, 0x03, 0x0002, 0x0009 },
|
|
51
|
+
{ 0x00, 0x00, 0, 0x00, 0x0003, 0x0002 },
|
|
52
|
+
{ 0x00, 0x00, 0, 0x01, 0x0003, 0x0003 },
|
|
53
|
+
{ 0x00, 0x00, 0, 0x02, 0x0003, 0x0004 },
|
|
54
|
+
{ 0x00, 0x00, 0, 0x03, 0x0003, 0x0005 },
|
|
55
|
+
{ 0x00, 0x00, 0, 0x03, 0x0003, 0x0006 },
|
|
56
|
+
{ 0x00, 0x00, 0, 0x03, 0x0003, 0x0007 },
|
|
57
|
+
{ 0x00, 0x00, 0, 0x03, 0x0003, 0x0008 },
|
|
58
|
+
{ 0x00, 0x00, 0, 0x03, 0x0003, 0x0009 },
|
|
59
|
+
{ 0x00, 0x00, 0, 0x00, 0x0004, 0x0002 },
|
|
60
|
+
{ 0x00, 0x00, 0, 0x01, 0x0004, 0x0003 },
|
|
61
|
+
{ 0x00, 0x00, 0, 0x02, 0x0004, 0x0004 },
|
|
62
|
+
{ 0x00, 0x00, 0, 0x03, 0x0004, 0x0005 },
|
|
63
|
+
{ 0x00, 0x00, 0, 0x03, 0x0004, 0x0006 },
|
|
64
|
+
{ 0x00, 0x00, 0, 0x03, 0x0004, 0x0007 },
|
|
65
|
+
{ 0x00, 0x00, 0, 0x03, 0x0004, 0x0008 },
|
|
66
|
+
{ 0x00, 0x00, 0, 0x03, 0x0004, 0x0009 },
|
|
67
|
+
{ 0x00, 0x00, 0, 0x00, 0x0005, 0x0002 },
|
|
68
|
+
{ 0x00, 0x00, 0, 0x01, 0x0005, 0x0003 },
|
|
69
|
+
{ 0x00, 0x00, 0, 0x02, 0x0005, 0x0004 },
|
|
70
|
+
{ 0x00, 0x00, 0, 0x03, 0x0005, 0x0005 },
|
|
71
|
+
{ 0x00, 0x00, 0, 0x03, 0x0005, 0x0006 },
|
|
72
|
+
{ 0x00, 0x00, 0, 0x03, 0x0005, 0x0007 },
|
|
73
|
+
{ 0x00, 0x00, 0, 0x03, 0x0005, 0x0008 },
|
|
74
|
+
{ 0x00, 0x00, 0, 0x03, 0x0005, 0x0009 },
|
|
75
|
+
{ 0x01, 0x00, 0, 0x00, 0x0006, 0x0002 },
|
|
76
|
+
{ 0x01, 0x00, 0, 0x01, 0x0006, 0x0003 },
|
|
77
|
+
{ 0x01, 0x00, 0, 0x02, 0x0006, 0x0004 },
|
|
78
|
+
{ 0x01, 0x00, 0, 0x03, 0x0006, 0x0005 },
|
|
79
|
+
{ 0x01, 0x00, 0, 0x03, 0x0006, 0x0006 },
|
|
80
|
+
{ 0x01, 0x00, 0, 0x03, 0x0006, 0x0007 },
|
|
81
|
+
{ 0x01, 0x00, 0, 0x03, 0x0006, 0x0008 },
|
|
82
|
+
{ 0x01, 0x00, 0, 0x03, 0x0006, 0x0009 },
|
|
83
|
+
{ 0x01, 0x00, 0, 0x00, 0x0008, 0x0002 },
|
|
84
|
+
{ 0x01, 0x00, 0, 0x01, 0x0008, 0x0003 },
|
|
85
|
+
{ 0x01, 0x00, 0, 0x02, 0x0008, 0x0004 },
|
|
86
|
+
{ 0x01, 0x00, 0, 0x03, 0x0008, 0x0005 },
|
|
87
|
+
{ 0x01, 0x00, 0, 0x03, 0x0008, 0x0006 },
|
|
88
|
+
{ 0x01, 0x00, 0, 0x03, 0x0008, 0x0007 },
|
|
89
|
+
{ 0x01, 0x00, 0, 0x03, 0x0008, 0x0008 },
|
|
90
|
+
{ 0x01, 0x00, 0, 0x03, 0x0008, 0x0009 },
|
|
91
|
+
{ 0x00, 0x01, 0, 0x03, 0x0000, 0x000a },
|
|
92
|
+
{ 0x00, 0x01, 0, 0x03, 0x0000, 0x000c },
|
|
93
|
+
{ 0x00, 0x02, 0, 0x03, 0x0000, 0x000e },
|
|
94
|
+
{ 0x00, 0x02, 0, 0x03, 0x0000, 0x0012 },
|
|
95
|
+
{ 0x00, 0x03, 0, 0x03, 0x0000, 0x0016 },
|
|
96
|
+
{ 0x00, 0x03, 0, 0x03, 0x0000, 0x001e },
|
|
97
|
+
{ 0x00, 0x04, 0, 0x03, 0x0000, 0x0026 },
|
|
98
|
+
{ 0x00, 0x04, 0, 0x03, 0x0000, 0x0036 },
|
|
99
|
+
{ 0x00, 0x01, 0, 0x03, 0x0001, 0x000a },
|
|
100
|
+
{ 0x00, 0x01, 0, 0x03, 0x0001, 0x000c },
|
|
101
|
+
{ 0x00, 0x02, 0, 0x03, 0x0001, 0x000e },
|
|
102
|
+
{ 0x00, 0x02, 0, 0x03, 0x0001, 0x0012 },
|
|
103
|
+
{ 0x00, 0x03, 0, 0x03, 0x0001, 0x0016 },
|
|
104
|
+
{ 0x00, 0x03, 0, 0x03, 0x0001, 0x001e },
|
|
105
|
+
{ 0x00, 0x04, 0, 0x03, 0x0001, 0x0026 },
|
|
106
|
+
{ 0x00, 0x04, 0, 0x03, 0x0001, 0x0036 },
|
|
107
|
+
{ 0x00, 0x01, 0, 0x03, 0x0002, 0x000a },
|
|
108
|
+
{ 0x00, 0x01, 0, 0x03, 0x0002, 0x000c },
|
|
109
|
+
{ 0x00, 0x02, 0, 0x03, 0x0002, 0x000e },
|
|
110
|
+
{ 0x00, 0x02, 0, 0x03, 0x0002, 0x0012 },
|
|
111
|
+
{ 0x00, 0x03, 0, 0x03, 0x0002, 0x0016 },
|
|
112
|
+
{ 0x00, 0x03, 0, 0x03, 0x0002, 0x001e },
|
|
113
|
+
{ 0x00, 0x04, 0, 0x03, 0x0002, 0x0026 },
|
|
114
|
+
{ 0x00, 0x04, 0, 0x03, 0x0002, 0x0036 },
|
|
115
|
+
{ 0x00, 0x01, 0, 0x03, 0x0003, 0x000a },
|
|
116
|
+
{ 0x00, 0x01, 0, 0x03, 0x0003, 0x000c },
|
|
117
|
+
{ 0x00, 0x02, 0, 0x03, 0x0003, 0x000e },
|
|
118
|
+
{ 0x00, 0x02, 0, 0x03, 0x0003, 0x0012 },
|
|
119
|
+
{ 0x00, 0x03, 0, 0x03, 0x0003, 0x0016 },
|
|
120
|
+
{ 0x00, 0x03, 0, 0x03, 0x0003, 0x001e },
|
|
121
|
+
{ 0x00, 0x04, 0, 0x03, 0x0003, 0x0026 },
|
|
122
|
+
{ 0x00, 0x04, 0, 0x03, 0x0003, 0x0036 },
|
|
123
|
+
{ 0x00, 0x01, 0, 0x03, 0x0004, 0x000a },
|
|
124
|
+
{ 0x00, 0x01, 0, 0x03, 0x0004, 0x000c },
|
|
125
|
+
{ 0x00, 0x02, 0, 0x03, 0x0004, 0x000e },
|
|
126
|
+
{ 0x00, 0x02, 0, 0x03, 0x0004, 0x0012 },
|
|
127
|
+
{ 0x00, 0x03, 0, 0x03, 0x0004, 0x0016 },
|
|
128
|
+
{ 0x00, 0x03, 0, 0x03, 0x0004, 0x001e },
|
|
129
|
+
{ 0x00, 0x04, 0, 0x03, 0x0004, 0x0026 },
|
|
130
|
+
{ 0x00, 0x04, 0, 0x03, 0x0004, 0x0036 },
|
|
131
|
+
{ 0x00, 0x01, 0, 0x03, 0x0005, 0x000a },
|
|
132
|
+
{ 0x00, 0x01, 0, 0x03, 0x0005, 0x000c },
|
|
133
|
+
{ 0x00, 0x02, 0, 0x03, 0x0005, 0x000e },
|
|
134
|
+
{ 0x00, 0x02, 0, 0x03, 0x0005, 0x0012 },
|
|
135
|
+
{ 0x00, 0x03, 0, 0x03, 0x0005, 0x0016 },
|
|
136
|
+
{ 0x00, 0x03, 0, 0x03, 0x0005, 0x001e },
|
|
137
|
+
{ 0x00, 0x04, 0, 0x03, 0x0005, 0x0026 },
|
|
138
|
+
{ 0x00, 0x04, 0, 0x03, 0x0005, 0x0036 },
|
|
139
|
+
{ 0x01, 0x01, 0, 0x03, 0x0006, 0x000a },
|
|
140
|
+
{ 0x01, 0x01, 0, 0x03, 0x0006, 0x000c },
|
|
141
|
+
{ 0x01, 0x02, 0, 0x03, 0x0006, 0x000e },
|
|
142
|
+
{ 0x01, 0x02, 0, 0x03, 0x0006, 0x0012 },
|
|
143
|
+
{ 0x01, 0x03, 0, 0x03, 0x0006, 0x0016 },
|
|
144
|
+
{ 0x01, 0x03, 0, 0x03, 0x0006, 0x001e },
|
|
145
|
+
{ 0x01, 0x04, 0, 0x03, 0x0006, 0x0026 },
|
|
146
|
+
{ 0x01, 0x04, 0, 0x03, 0x0006, 0x0036 },
|
|
147
|
+
{ 0x01, 0x01, 0, 0x03, 0x0008, 0x000a },
|
|
148
|
+
{ 0x01, 0x01, 0, 0x03, 0x0008, 0x000c },
|
|
149
|
+
{ 0x01, 0x02, 0, 0x03, 0x0008, 0x000e },
|
|
150
|
+
{ 0x01, 0x02, 0, 0x03, 0x0008, 0x0012 },
|
|
151
|
+
{ 0x01, 0x03, 0, 0x03, 0x0008, 0x0016 },
|
|
152
|
+
{ 0x01, 0x03, 0, 0x03, 0x0008, 0x001e },
|
|
153
|
+
{ 0x01, 0x04, 0, 0x03, 0x0008, 0x0026 },
|
|
154
|
+
{ 0x01, 0x04, 0, 0x03, 0x0008, 0x0036 },
|
|
155
|
+
{ 0x00, 0x00, -1, 0x00, 0x0000, 0x0002 },
|
|
156
|
+
{ 0x00, 0x00, -1, 0x01, 0x0000, 0x0003 },
|
|
157
|
+
{ 0x00, 0x00, -1, 0x02, 0x0000, 0x0004 },
|
|
158
|
+
{ 0x00, 0x00, -1, 0x03, 0x0000, 0x0005 },
|
|
159
|
+
{ 0x00, 0x00, -1, 0x03, 0x0000, 0x0006 },
|
|
160
|
+
{ 0x00, 0x00, -1, 0x03, 0x0000, 0x0007 },
|
|
161
|
+
{ 0x00, 0x00, -1, 0x03, 0x0000, 0x0008 },
|
|
162
|
+
{ 0x00, 0x00, -1, 0x03, 0x0000, 0x0009 },
|
|
163
|
+
{ 0x00, 0x00, -1, 0x00, 0x0001, 0x0002 },
|
|
164
|
+
{ 0x00, 0x00, -1, 0x01, 0x0001, 0x0003 },
|
|
165
|
+
{ 0x00, 0x00, -1, 0x02, 0x0001, 0x0004 },
|
|
166
|
+
{ 0x00, 0x00, -1, 0x03, 0x0001, 0x0005 },
|
|
167
|
+
{ 0x00, 0x00, -1, 0x03, 0x0001, 0x0006 },
|
|
168
|
+
{ 0x00, 0x00, -1, 0x03, 0x0001, 0x0007 },
|
|
169
|
+
{ 0x00, 0x00, -1, 0x03, 0x0001, 0x0008 },
|
|
170
|
+
{ 0x00, 0x00, -1, 0x03, 0x0001, 0x0009 },
|
|
171
|
+
{ 0x00, 0x00, -1, 0x00, 0x0002, 0x0002 },
|
|
172
|
+
{ 0x00, 0x00, -1, 0x01, 0x0002, 0x0003 },
|
|
173
|
+
{ 0x00, 0x00, -1, 0x02, 0x0002, 0x0004 },
|
|
174
|
+
{ 0x00, 0x00, -1, 0x03, 0x0002, 0x0005 },
|
|
175
|
+
{ 0x00, 0x00, -1, 0x03, 0x0002, 0x0006 },
|
|
176
|
+
{ 0x00, 0x00, -1, 0x03, 0x0002, 0x0007 },
|
|
177
|
+
{ 0x00, 0x00, -1, 0x03, 0x0002, 0x0008 },
|
|
178
|
+
{ 0x00, 0x00, -1, 0x03, 0x0002, 0x0009 },
|
|
179
|
+
{ 0x00, 0x00, -1, 0x00, 0x0003, 0x0002 },
|
|
180
|
+
{ 0x00, 0x00, -1, 0x01, 0x0003, 0x0003 },
|
|
181
|
+
{ 0x00, 0x00, -1, 0x02, 0x0003, 0x0004 },
|
|
182
|
+
{ 0x00, 0x00, -1, 0x03, 0x0003, 0x0005 },
|
|
183
|
+
{ 0x00, 0x00, -1, 0x03, 0x0003, 0x0006 },
|
|
184
|
+
{ 0x00, 0x00, -1, 0x03, 0x0003, 0x0007 },
|
|
185
|
+
{ 0x00, 0x00, -1, 0x03, 0x0003, 0x0008 },
|
|
186
|
+
{ 0x00, 0x00, -1, 0x03, 0x0003, 0x0009 },
|
|
187
|
+
{ 0x00, 0x00, -1, 0x00, 0x0004, 0x0002 },
|
|
188
|
+
{ 0x00, 0x00, -1, 0x01, 0x0004, 0x0003 },
|
|
189
|
+
{ 0x00, 0x00, -1, 0x02, 0x0004, 0x0004 },
|
|
190
|
+
{ 0x00, 0x00, -1, 0x03, 0x0004, 0x0005 },
|
|
191
|
+
{ 0x00, 0x00, -1, 0x03, 0x0004, 0x0006 },
|
|
192
|
+
{ 0x00, 0x00, -1, 0x03, 0x0004, 0x0007 },
|
|
193
|
+
{ 0x00, 0x00, -1, 0x03, 0x0004, 0x0008 },
|
|
194
|
+
{ 0x00, 0x00, -1, 0x03, 0x0004, 0x0009 },
|
|
195
|
+
{ 0x00, 0x00, -1, 0x00, 0x0005, 0x0002 },
|
|
196
|
+
{ 0x00, 0x00, -1, 0x01, 0x0005, 0x0003 },
|
|
197
|
+
{ 0x00, 0x00, -1, 0x02, 0x0005, 0x0004 },
|
|
198
|
+
{ 0x00, 0x00, -1, 0x03, 0x0005, 0x0005 },
|
|
199
|
+
{ 0x00, 0x00, -1, 0x03, 0x0005, 0x0006 },
|
|
200
|
+
{ 0x00, 0x00, -1, 0x03, 0x0005, 0x0007 },
|
|
201
|
+
{ 0x00, 0x00, -1, 0x03, 0x0005, 0x0008 },
|
|
202
|
+
{ 0x00, 0x00, -1, 0x03, 0x0005, 0x0009 },
|
|
203
|
+
{ 0x01, 0x00, -1, 0x00, 0x0006, 0x0002 },
|
|
204
|
+
{ 0x01, 0x00, -1, 0x01, 0x0006, 0x0003 },
|
|
205
|
+
{ 0x01, 0x00, -1, 0x02, 0x0006, 0x0004 },
|
|
206
|
+
{ 0x01, 0x00, -1, 0x03, 0x0006, 0x0005 },
|
|
207
|
+
{ 0x01, 0x00, -1, 0x03, 0x0006, 0x0006 },
|
|
208
|
+
{ 0x01, 0x00, -1, 0x03, 0x0006, 0x0007 },
|
|
209
|
+
{ 0x01, 0x00, -1, 0x03, 0x0006, 0x0008 },
|
|
210
|
+
{ 0x01, 0x00, -1, 0x03, 0x0006, 0x0009 },
|
|
211
|
+
{ 0x01, 0x00, -1, 0x00, 0x0008, 0x0002 },
|
|
212
|
+
{ 0x01, 0x00, -1, 0x01, 0x0008, 0x0003 },
|
|
213
|
+
{ 0x01, 0x00, -1, 0x02, 0x0008, 0x0004 },
|
|
214
|
+
{ 0x01, 0x00, -1, 0x03, 0x0008, 0x0005 },
|
|
215
|
+
{ 0x01, 0x00, -1, 0x03, 0x0008, 0x0006 },
|
|
216
|
+
{ 0x01, 0x00, -1, 0x03, 0x0008, 0x0007 },
|
|
217
|
+
{ 0x01, 0x00, -1, 0x03, 0x0008, 0x0008 },
|
|
218
|
+
{ 0x01, 0x00, -1, 0x03, 0x0008, 0x0009 },
|
|
219
|
+
{ 0x00, 0x01, -1, 0x03, 0x0000, 0x000a },
|
|
220
|
+
{ 0x00, 0x01, -1, 0x03, 0x0000, 0x000c },
|
|
221
|
+
{ 0x00, 0x02, -1, 0x03, 0x0000, 0x000e },
|
|
222
|
+
{ 0x00, 0x02, -1, 0x03, 0x0000, 0x0012 },
|
|
223
|
+
{ 0x00, 0x03, -1, 0x03, 0x0000, 0x0016 },
|
|
224
|
+
{ 0x00, 0x03, -1, 0x03, 0x0000, 0x001e },
|
|
225
|
+
{ 0x00, 0x04, -1, 0x03, 0x0000, 0x0026 },
|
|
226
|
+
{ 0x00, 0x04, -1, 0x03, 0x0000, 0x0036 },
|
|
227
|
+
{ 0x00, 0x01, -1, 0x03, 0x0001, 0x000a },
|
|
228
|
+
{ 0x00, 0x01, -1, 0x03, 0x0001, 0x000c },
|
|
229
|
+
{ 0x00, 0x02, -1, 0x03, 0x0001, 0x000e },
|
|
230
|
+
{ 0x00, 0x02, -1, 0x03, 0x0001, 0x0012 },
|
|
231
|
+
{ 0x00, 0x03, -1, 0x03, 0x0001, 0x0016 },
|
|
232
|
+
{ 0x00, 0x03, -1, 0x03, 0x0001, 0x001e },
|
|
233
|
+
{ 0x00, 0x04, -1, 0x03, 0x0001, 0x0026 },
|
|
234
|
+
{ 0x00, 0x04, -1, 0x03, 0x0001, 0x0036 },
|
|
235
|
+
{ 0x00, 0x01, -1, 0x03, 0x0002, 0x000a },
|
|
236
|
+
{ 0x00, 0x01, -1, 0x03, 0x0002, 0x000c },
|
|
237
|
+
{ 0x00, 0x02, -1, 0x03, 0x0002, 0x000e },
|
|
238
|
+
{ 0x00, 0x02, -1, 0x03, 0x0002, 0x0012 },
|
|
239
|
+
{ 0x00, 0x03, -1, 0x03, 0x0002, 0x0016 },
|
|
240
|
+
{ 0x00, 0x03, -1, 0x03, 0x0002, 0x001e },
|
|
241
|
+
{ 0x00, 0x04, -1, 0x03, 0x0002, 0x0026 },
|
|
242
|
+
{ 0x00, 0x04, -1, 0x03, 0x0002, 0x0036 },
|
|
243
|
+
{ 0x00, 0x01, -1, 0x03, 0x0003, 0x000a },
|
|
244
|
+
{ 0x00, 0x01, -1, 0x03, 0x0003, 0x000c },
|
|
245
|
+
{ 0x00, 0x02, -1, 0x03, 0x0003, 0x000e },
|
|
246
|
+
{ 0x00, 0x02, -1, 0x03, 0x0003, 0x0012 },
|
|
247
|
+
{ 0x00, 0x03, -1, 0x03, 0x0003, 0x0016 },
|
|
248
|
+
{ 0x00, 0x03, -1, 0x03, 0x0003, 0x001e },
|
|
249
|
+
{ 0x00, 0x04, -1, 0x03, 0x0003, 0x0026 },
|
|
250
|
+
{ 0x00, 0x04, -1, 0x03, 0x0003, 0x0036 },
|
|
251
|
+
{ 0x00, 0x01, -1, 0x03, 0x0004, 0x000a },
|
|
252
|
+
{ 0x00, 0x01, -1, 0x03, 0x0004, 0x000c },
|
|
253
|
+
{ 0x00, 0x02, -1, 0x03, 0x0004, 0x000e },
|
|
254
|
+
{ 0x00, 0x02, -1, 0x03, 0x0004, 0x0012 },
|
|
255
|
+
{ 0x00, 0x03, -1, 0x03, 0x0004, 0x0016 },
|
|
256
|
+
{ 0x00, 0x03, -1, 0x03, 0x0004, 0x001e },
|
|
257
|
+
{ 0x00, 0x04, -1, 0x03, 0x0004, 0x0026 },
|
|
258
|
+
{ 0x00, 0x04, -1, 0x03, 0x0004, 0x0036 },
|
|
259
|
+
{ 0x00, 0x01, -1, 0x03, 0x0005, 0x000a },
|
|
260
|
+
{ 0x00, 0x01, -1, 0x03, 0x0005, 0x000c },
|
|
261
|
+
{ 0x00, 0x02, -1, 0x03, 0x0005, 0x000e },
|
|
262
|
+
{ 0x00, 0x02, -1, 0x03, 0x0005, 0x0012 },
|
|
263
|
+
{ 0x00, 0x03, -1, 0x03, 0x0005, 0x0016 },
|
|
264
|
+
{ 0x00, 0x03, -1, 0x03, 0x0005, 0x001e },
|
|
265
|
+
{ 0x00, 0x04, -1, 0x03, 0x0005, 0x0026 },
|
|
266
|
+
{ 0x00, 0x04, -1, 0x03, 0x0005, 0x0036 },
|
|
267
|
+
{ 0x01, 0x01, -1, 0x03, 0x0006, 0x000a },
|
|
268
|
+
{ 0x01, 0x01, -1, 0x03, 0x0006, 0x000c },
|
|
269
|
+
{ 0x01, 0x02, -1, 0x03, 0x0006, 0x000e },
|
|
270
|
+
{ 0x01, 0x02, -1, 0x03, 0x0006, 0x0012 },
|
|
271
|
+
{ 0x01, 0x03, -1, 0x03, 0x0006, 0x0016 },
|
|
272
|
+
{ 0x01, 0x03, -1, 0x03, 0x0006, 0x001e },
|
|
273
|
+
{ 0x01, 0x04, -1, 0x03, 0x0006, 0x0026 },
|
|
274
|
+
{ 0x01, 0x04, -1, 0x03, 0x0006, 0x0036 },
|
|
275
|
+
{ 0x01, 0x01, -1, 0x03, 0x0008, 0x000a },
|
|
276
|
+
{ 0x01, 0x01, -1, 0x03, 0x0008, 0x000c },
|
|
277
|
+
{ 0x01, 0x02, -1, 0x03, 0x0008, 0x000e },
|
|
278
|
+
{ 0x01, 0x02, -1, 0x03, 0x0008, 0x0012 },
|
|
279
|
+
{ 0x01, 0x03, -1, 0x03, 0x0008, 0x0016 },
|
|
280
|
+
{ 0x01, 0x03, -1, 0x03, 0x0008, 0x001e },
|
|
281
|
+
{ 0x01, 0x04, -1, 0x03, 0x0008, 0x0026 },
|
|
282
|
+
{ 0x01, 0x04, -1, 0x03, 0x0008, 0x0036 },
|
|
283
|
+
{ 0x02, 0x00, -1, 0x00, 0x000a, 0x0002 },
|
|
284
|
+
{ 0x02, 0x00, -1, 0x01, 0x000a, 0x0003 },
|
|
285
|
+
{ 0x02, 0x00, -1, 0x02, 0x000a, 0x0004 },
|
|
286
|
+
{ 0x02, 0x00, -1, 0x03, 0x000a, 0x0005 },
|
|
287
|
+
{ 0x02, 0x00, -1, 0x03, 0x000a, 0x0006 },
|
|
288
|
+
{ 0x02, 0x00, -1, 0x03, 0x000a, 0x0007 },
|
|
289
|
+
{ 0x02, 0x00, -1, 0x03, 0x000a, 0x0008 },
|
|
290
|
+
{ 0x02, 0x00, -1, 0x03, 0x000a, 0x0009 },
|
|
291
|
+
{ 0x02, 0x00, -1, 0x00, 0x000e, 0x0002 },
|
|
292
|
+
{ 0x02, 0x00, -1, 0x01, 0x000e, 0x0003 },
|
|
293
|
+
{ 0x02, 0x00, -1, 0x02, 0x000e, 0x0004 },
|
|
294
|
+
{ 0x02, 0x00, -1, 0x03, 0x000e, 0x0005 },
|
|
295
|
+
{ 0x02, 0x00, -1, 0x03, 0x000e, 0x0006 },
|
|
296
|
+
{ 0x02, 0x00, -1, 0x03, 0x000e, 0x0007 },
|
|
297
|
+
{ 0x02, 0x00, -1, 0x03, 0x000e, 0x0008 },
|
|
298
|
+
{ 0x02, 0x00, -1, 0x03, 0x000e, 0x0009 },
|
|
299
|
+
{ 0x03, 0x00, -1, 0x00, 0x0012, 0x0002 },
|
|
300
|
+
{ 0x03, 0x00, -1, 0x01, 0x0012, 0x0003 },
|
|
301
|
+
{ 0x03, 0x00, -1, 0x02, 0x0012, 0x0004 },
|
|
302
|
+
{ 0x03, 0x00, -1, 0x03, 0x0012, 0x0005 },
|
|
303
|
+
{ 0x03, 0x00, -1, 0x03, 0x0012, 0x0006 },
|
|
304
|
+
{ 0x03, 0x00, -1, 0x03, 0x0012, 0x0007 },
|
|
305
|
+
{ 0x03, 0x00, -1, 0x03, 0x0012, 0x0008 },
|
|
306
|
+
{ 0x03, 0x00, -1, 0x03, 0x0012, 0x0009 },
|
|
307
|
+
{ 0x03, 0x00, -1, 0x00, 0x001a, 0x0002 },
|
|
308
|
+
{ 0x03, 0x00, -1, 0x01, 0x001a, 0x0003 },
|
|
309
|
+
{ 0x03, 0x00, -1, 0x02, 0x001a, 0x0004 },
|
|
310
|
+
{ 0x03, 0x00, -1, 0x03, 0x001a, 0x0005 },
|
|
311
|
+
{ 0x03, 0x00, -1, 0x03, 0x001a, 0x0006 },
|
|
312
|
+
{ 0x03, 0x00, -1, 0x03, 0x001a, 0x0007 },
|
|
313
|
+
{ 0x03, 0x00, -1, 0x03, 0x001a, 0x0008 },
|
|
314
|
+
{ 0x03, 0x00, -1, 0x03, 0x001a, 0x0009 },
|
|
315
|
+
{ 0x04, 0x00, -1, 0x00, 0x0022, 0x0002 },
|
|
316
|
+
{ 0x04, 0x00, -1, 0x01, 0x0022, 0x0003 },
|
|
317
|
+
{ 0x04, 0x00, -1, 0x02, 0x0022, 0x0004 },
|
|
318
|
+
{ 0x04, 0x00, -1, 0x03, 0x0022, 0x0005 },
|
|
319
|
+
{ 0x04, 0x00, -1, 0x03, 0x0022, 0x0006 },
|
|
320
|
+
{ 0x04, 0x00, -1, 0x03, 0x0022, 0x0007 },
|
|
321
|
+
{ 0x04, 0x00, -1, 0x03, 0x0022, 0x0008 },
|
|
322
|
+
{ 0x04, 0x00, -1, 0x03, 0x0022, 0x0009 },
|
|
323
|
+
{ 0x04, 0x00, -1, 0x00, 0x0032, 0x0002 },
|
|
324
|
+
{ 0x04, 0x00, -1, 0x01, 0x0032, 0x0003 },
|
|
325
|
+
{ 0x04, 0x00, -1, 0x02, 0x0032, 0x0004 },
|
|
326
|
+
{ 0x04, 0x00, -1, 0x03, 0x0032, 0x0005 },
|
|
327
|
+
{ 0x04, 0x00, -1, 0x03, 0x0032, 0x0006 },
|
|
328
|
+
{ 0x04, 0x00, -1, 0x03, 0x0032, 0x0007 },
|
|
329
|
+
{ 0x04, 0x00, -1, 0x03, 0x0032, 0x0008 },
|
|
330
|
+
{ 0x04, 0x00, -1, 0x03, 0x0032, 0x0009 },
|
|
331
|
+
{ 0x05, 0x00, -1, 0x00, 0x0042, 0x0002 },
|
|
332
|
+
{ 0x05, 0x00, -1, 0x01, 0x0042, 0x0003 },
|
|
333
|
+
{ 0x05, 0x00, -1, 0x02, 0x0042, 0x0004 },
|
|
334
|
+
{ 0x05, 0x00, -1, 0x03, 0x0042, 0x0005 },
|
|
335
|
+
{ 0x05, 0x00, -1, 0x03, 0x0042, 0x0006 },
|
|
336
|
+
{ 0x05, 0x00, -1, 0x03, 0x0042, 0x0007 },
|
|
337
|
+
{ 0x05, 0x00, -1, 0x03, 0x0042, 0x0008 },
|
|
338
|
+
{ 0x05, 0x00, -1, 0x03, 0x0042, 0x0009 },
|
|
339
|
+
{ 0x05, 0x00, -1, 0x00, 0x0062, 0x0002 },
|
|
340
|
+
{ 0x05, 0x00, -1, 0x01, 0x0062, 0x0003 },
|
|
341
|
+
{ 0x05, 0x00, -1, 0x02, 0x0062, 0x0004 },
|
|
342
|
+
{ 0x05, 0x00, -1, 0x03, 0x0062, 0x0005 },
|
|
343
|
+
{ 0x05, 0x00, -1, 0x03, 0x0062, 0x0006 },
|
|
344
|
+
{ 0x05, 0x00, -1, 0x03, 0x0062, 0x0007 },
|
|
345
|
+
{ 0x05, 0x00, -1, 0x03, 0x0062, 0x0008 },
|
|
346
|
+
{ 0x05, 0x00, -1, 0x03, 0x0062, 0x0009 },
|
|
347
|
+
{ 0x02, 0x01, -1, 0x03, 0x000a, 0x000a },
|
|
348
|
+
{ 0x02, 0x01, -1, 0x03, 0x000a, 0x000c },
|
|
349
|
+
{ 0x02, 0x02, -1, 0x03, 0x000a, 0x000e },
|
|
350
|
+
{ 0x02, 0x02, -1, 0x03, 0x000a, 0x0012 },
|
|
351
|
+
{ 0x02, 0x03, -1, 0x03, 0x000a, 0x0016 },
|
|
352
|
+
{ 0x02, 0x03, -1, 0x03, 0x000a, 0x001e },
|
|
353
|
+
{ 0x02, 0x04, -1, 0x03, 0x000a, 0x0026 },
|
|
354
|
+
{ 0x02, 0x04, -1, 0x03, 0x000a, 0x0036 },
|
|
355
|
+
{ 0x02, 0x01, -1, 0x03, 0x000e, 0x000a },
|
|
356
|
+
{ 0x02, 0x01, -1, 0x03, 0x000e, 0x000c },
|
|
357
|
+
{ 0x02, 0x02, -1, 0x03, 0x000e, 0x000e },
|
|
358
|
+
{ 0x02, 0x02, -1, 0x03, 0x000e, 0x0012 },
|
|
359
|
+
{ 0x02, 0x03, -1, 0x03, 0x000e, 0x0016 },
|
|
360
|
+
{ 0x02, 0x03, -1, 0x03, 0x000e, 0x001e },
|
|
361
|
+
{ 0x02, 0x04, -1, 0x03, 0x000e, 0x0026 },
|
|
362
|
+
{ 0x02, 0x04, -1, 0x03, 0x000e, 0x0036 },
|
|
363
|
+
{ 0x03, 0x01, -1, 0x03, 0x0012, 0x000a },
|
|
364
|
+
{ 0x03, 0x01, -1, 0x03, 0x0012, 0x000c },
|
|
365
|
+
{ 0x03, 0x02, -1, 0x03, 0x0012, 0x000e },
|
|
366
|
+
{ 0x03, 0x02, -1, 0x03, 0x0012, 0x0012 },
|
|
367
|
+
{ 0x03, 0x03, -1, 0x03, 0x0012, 0x0016 },
|
|
368
|
+
{ 0x03, 0x03, -1, 0x03, 0x0012, 0x001e },
|
|
369
|
+
{ 0x03, 0x04, -1, 0x03, 0x0012, 0x0026 },
|
|
370
|
+
{ 0x03, 0x04, -1, 0x03, 0x0012, 0x0036 },
|
|
371
|
+
{ 0x03, 0x01, -1, 0x03, 0x001a, 0x000a },
|
|
372
|
+
{ 0x03, 0x01, -1, 0x03, 0x001a, 0x000c },
|
|
373
|
+
{ 0x03, 0x02, -1, 0x03, 0x001a, 0x000e },
|
|
374
|
+
{ 0x03, 0x02, -1, 0x03, 0x001a, 0x0012 },
|
|
375
|
+
{ 0x03, 0x03, -1, 0x03, 0x001a, 0x0016 },
|
|
376
|
+
{ 0x03, 0x03, -1, 0x03, 0x001a, 0x001e },
|
|
377
|
+
{ 0x03, 0x04, -1, 0x03, 0x001a, 0x0026 },
|
|
378
|
+
{ 0x03, 0x04, -1, 0x03, 0x001a, 0x0036 },
|
|
379
|
+
{ 0x04, 0x01, -1, 0x03, 0x0022, 0x000a },
|
|
380
|
+
{ 0x04, 0x01, -1, 0x03, 0x0022, 0x000c },
|
|
381
|
+
{ 0x04, 0x02, -1, 0x03, 0x0022, 0x000e },
|
|
382
|
+
{ 0x04, 0x02, -1, 0x03, 0x0022, 0x0012 },
|
|
383
|
+
{ 0x04, 0x03, -1, 0x03, 0x0022, 0x0016 },
|
|
384
|
+
{ 0x04, 0x03, -1, 0x03, 0x0022, 0x001e },
|
|
385
|
+
{ 0x04, 0x04, -1, 0x03, 0x0022, 0x0026 },
|
|
386
|
+
{ 0x04, 0x04, -1, 0x03, 0x0022, 0x0036 },
|
|
387
|
+
{ 0x04, 0x01, -1, 0x03, 0x0032, 0x000a },
|
|
388
|
+
{ 0x04, 0x01, -1, 0x03, 0x0032, 0x000c },
|
|
389
|
+
{ 0x04, 0x02, -1, 0x03, 0x0032, 0x000e },
|
|
390
|
+
{ 0x04, 0x02, -1, 0x03, 0x0032, 0x0012 },
|
|
391
|
+
{ 0x04, 0x03, -1, 0x03, 0x0032, 0x0016 },
|
|
392
|
+
{ 0x04, 0x03, -1, 0x03, 0x0032, 0x001e },
|
|
393
|
+
{ 0x04, 0x04, -1, 0x03, 0x0032, 0x0026 },
|
|
394
|
+
{ 0x04, 0x04, -1, 0x03, 0x0032, 0x0036 },
|
|
395
|
+
{ 0x05, 0x01, -1, 0x03, 0x0042, 0x000a },
|
|
396
|
+
{ 0x05, 0x01, -1, 0x03, 0x0042, 0x000c },
|
|
397
|
+
{ 0x05, 0x02, -1, 0x03, 0x0042, 0x000e },
|
|
398
|
+
{ 0x05, 0x02, -1, 0x03, 0x0042, 0x0012 },
|
|
399
|
+
{ 0x05, 0x03, -1, 0x03, 0x0042, 0x0016 },
|
|
400
|
+
{ 0x05, 0x03, -1, 0x03, 0x0042, 0x001e },
|
|
401
|
+
{ 0x05, 0x04, -1, 0x03, 0x0042, 0x0026 },
|
|
402
|
+
{ 0x05, 0x04, -1, 0x03, 0x0042, 0x0036 },
|
|
403
|
+
{ 0x05, 0x01, -1, 0x03, 0x0062, 0x000a },
|
|
404
|
+
{ 0x05, 0x01, -1, 0x03, 0x0062, 0x000c },
|
|
405
|
+
{ 0x05, 0x02, -1, 0x03, 0x0062, 0x000e },
|
|
406
|
+
{ 0x05, 0x02, -1, 0x03, 0x0062, 0x0012 },
|
|
407
|
+
{ 0x05, 0x03, -1, 0x03, 0x0062, 0x0016 },
|
|
408
|
+
{ 0x05, 0x03, -1, 0x03, 0x0062, 0x001e },
|
|
409
|
+
{ 0x05, 0x04, -1, 0x03, 0x0062, 0x0026 },
|
|
410
|
+
{ 0x05, 0x04, -1, 0x03, 0x0062, 0x0036 },
|
|
411
|
+
{ 0x00, 0x05, -1, 0x03, 0x0000, 0x0046 },
|
|
412
|
+
{ 0x00, 0x05, -1, 0x03, 0x0000, 0x0066 },
|
|
413
|
+
{ 0x00, 0x06, -1, 0x03, 0x0000, 0x0086 },
|
|
414
|
+
{ 0x00, 0x07, -1, 0x03, 0x0000, 0x00c6 },
|
|
415
|
+
{ 0x00, 0x08, -1, 0x03, 0x0000, 0x0146 },
|
|
416
|
+
{ 0x00, 0x09, -1, 0x03, 0x0000, 0x0246 },
|
|
417
|
+
{ 0x00, 0x0a, -1, 0x03, 0x0000, 0x0446 },
|
|
418
|
+
{ 0x00, 0x18, -1, 0x03, 0x0000, 0x0846 },
|
|
419
|
+
{ 0x00, 0x05, -1, 0x03, 0x0001, 0x0046 },
|
|
420
|
+
{ 0x00, 0x05, -1, 0x03, 0x0001, 0x0066 },
|
|
421
|
+
{ 0x00, 0x06, -1, 0x03, 0x0001, 0x0086 },
|
|
422
|
+
{ 0x00, 0x07, -1, 0x03, 0x0001, 0x00c6 },
|
|
423
|
+
{ 0x00, 0x08, -1, 0x03, 0x0001, 0x0146 },
|
|
424
|
+
{ 0x00, 0x09, -1, 0x03, 0x0001, 0x0246 },
|
|
425
|
+
{ 0x00, 0x0a, -1, 0x03, 0x0001, 0x0446 },
|
|
426
|
+
{ 0x00, 0x18, -1, 0x03, 0x0001, 0x0846 },
|
|
427
|
+
{ 0x00, 0x05, -1, 0x03, 0x0002, 0x0046 },
|
|
428
|
+
{ 0x00, 0x05, -1, 0x03, 0x0002, 0x0066 },
|
|
429
|
+
{ 0x00, 0x06, -1, 0x03, 0x0002, 0x0086 },
|
|
430
|
+
{ 0x00, 0x07, -1, 0x03, 0x0002, 0x00c6 },
|
|
431
|
+
{ 0x00, 0x08, -1, 0x03, 0x0002, 0x0146 },
|
|
432
|
+
{ 0x00, 0x09, -1, 0x03, 0x0002, 0x0246 },
|
|
433
|
+
{ 0x00, 0x0a, -1, 0x03, 0x0002, 0x0446 },
|
|
434
|
+
{ 0x00, 0x18, -1, 0x03, 0x0002, 0x0846 },
|
|
435
|
+
{ 0x00, 0x05, -1, 0x03, 0x0003, 0x0046 },
|
|
436
|
+
{ 0x00, 0x05, -1, 0x03, 0x0003, 0x0066 },
|
|
437
|
+
{ 0x00, 0x06, -1, 0x03, 0x0003, 0x0086 },
|
|
438
|
+
{ 0x00, 0x07, -1, 0x03, 0x0003, 0x00c6 },
|
|
439
|
+
{ 0x00, 0x08, -1, 0x03, 0x0003, 0x0146 },
|
|
440
|
+
{ 0x00, 0x09, -1, 0x03, 0x0003, 0x0246 },
|
|
441
|
+
{ 0x00, 0x0a, -1, 0x03, 0x0003, 0x0446 },
|
|
442
|
+
{ 0x00, 0x18, -1, 0x03, 0x0003, 0x0846 },
|
|
443
|
+
{ 0x00, 0x05, -1, 0x03, 0x0004, 0x0046 },
|
|
444
|
+
{ 0x00, 0x05, -1, 0x03, 0x0004, 0x0066 },
|
|
445
|
+
{ 0x00, 0x06, -1, 0x03, 0x0004, 0x0086 },
|
|
446
|
+
{ 0x00, 0x07, -1, 0x03, 0x0004, 0x00c6 },
|
|
447
|
+
{ 0x00, 0x08, -1, 0x03, 0x0004, 0x0146 },
|
|
448
|
+
{ 0x00, 0x09, -1, 0x03, 0x0004, 0x0246 },
|
|
449
|
+
{ 0x00, 0x0a, -1, 0x03, 0x0004, 0x0446 },
|
|
450
|
+
{ 0x00, 0x18, -1, 0x03, 0x0004, 0x0846 },
|
|
451
|
+
{ 0x00, 0x05, -1, 0x03, 0x0005, 0x0046 },
|
|
452
|
+
{ 0x00, 0x05, -1, 0x03, 0x0005, 0x0066 },
|
|
453
|
+
{ 0x00, 0x06, -1, 0x03, 0x0005, 0x0086 },
|
|
454
|
+
{ 0x00, 0x07, -1, 0x03, 0x0005, 0x00c6 },
|
|
455
|
+
{ 0x00, 0x08, -1, 0x03, 0x0005, 0x0146 },
|
|
456
|
+
{ 0x00, 0x09, -1, 0x03, 0x0005, 0x0246 },
|
|
457
|
+
{ 0x00, 0x0a, -1, 0x03, 0x0005, 0x0446 },
|
|
458
|
+
{ 0x00, 0x18, -1, 0x03, 0x0005, 0x0846 },
|
|
459
|
+
{ 0x01, 0x05, -1, 0x03, 0x0006, 0x0046 },
|
|
460
|
+
{ 0x01, 0x05, -1, 0x03, 0x0006, 0x0066 },
|
|
461
|
+
{ 0x01, 0x06, -1, 0x03, 0x0006, 0x0086 },
|
|
462
|
+
{ 0x01, 0x07, -1, 0x03, 0x0006, 0x00c6 },
|
|
463
|
+
{ 0x01, 0x08, -1, 0x03, 0x0006, 0x0146 },
|
|
464
|
+
{ 0x01, 0x09, -1, 0x03, 0x0006, 0x0246 },
|
|
465
|
+
{ 0x01, 0x0a, -1, 0x03, 0x0006, 0x0446 },
|
|
466
|
+
{ 0x01, 0x18, -1, 0x03, 0x0006, 0x0846 },
|
|
467
|
+
{ 0x01, 0x05, -1, 0x03, 0x0008, 0x0046 },
|
|
468
|
+
{ 0x01, 0x05, -1, 0x03, 0x0008, 0x0066 },
|
|
469
|
+
{ 0x01, 0x06, -1, 0x03, 0x0008, 0x0086 },
|
|
470
|
+
{ 0x01, 0x07, -1, 0x03, 0x0008, 0x00c6 },
|
|
471
|
+
{ 0x01, 0x08, -1, 0x03, 0x0008, 0x0146 },
|
|
472
|
+
{ 0x01, 0x09, -1, 0x03, 0x0008, 0x0246 },
|
|
473
|
+
{ 0x01, 0x0a, -1, 0x03, 0x0008, 0x0446 },
|
|
474
|
+
{ 0x01, 0x18, -1, 0x03, 0x0008, 0x0846 },
|
|
475
|
+
{ 0x06, 0x00, -1, 0x00, 0x0082, 0x0002 },
|
|
476
|
+
{ 0x06, 0x00, -1, 0x01, 0x0082, 0x0003 },
|
|
477
|
+
{ 0x06, 0x00, -1, 0x02, 0x0082, 0x0004 },
|
|
478
|
+
{ 0x06, 0x00, -1, 0x03, 0x0082, 0x0005 },
|
|
479
|
+
{ 0x06, 0x00, -1, 0x03, 0x0082, 0x0006 },
|
|
480
|
+
{ 0x06, 0x00, -1, 0x03, 0x0082, 0x0007 },
|
|
481
|
+
{ 0x06, 0x00, -1, 0x03, 0x0082, 0x0008 },
|
|
482
|
+
{ 0x06, 0x00, -1, 0x03, 0x0082, 0x0009 },
|
|
483
|
+
{ 0x07, 0x00, -1, 0x00, 0x00c2, 0x0002 },
|
|
484
|
+
{ 0x07, 0x00, -1, 0x01, 0x00c2, 0x0003 },
|
|
485
|
+
{ 0x07, 0x00, -1, 0x02, 0x00c2, 0x0004 },
|
|
486
|
+
{ 0x07, 0x00, -1, 0x03, 0x00c2, 0x0005 },
|
|
487
|
+
{ 0x07, 0x00, -1, 0x03, 0x00c2, 0x0006 },
|
|
488
|
+
{ 0x07, 0x00, -1, 0x03, 0x00c2, 0x0007 },
|
|
489
|
+
{ 0x07, 0x00, -1, 0x03, 0x00c2, 0x0008 },
|
|
490
|
+
{ 0x07, 0x00, -1, 0x03, 0x00c2, 0x0009 },
|
|
491
|
+
{ 0x08, 0x00, -1, 0x00, 0x0142, 0x0002 },
|
|
492
|
+
{ 0x08, 0x00, -1, 0x01, 0x0142, 0x0003 },
|
|
493
|
+
{ 0x08, 0x00, -1, 0x02, 0x0142, 0x0004 },
|
|
494
|
+
{ 0x08, 0x00, -1, 0x03, 0x0142, 0x0005 },
|
|
495
|
+
{ 0x08, 0x00, -1, 0x03, 0x0142, 0x0006 },
|
|
496
|
+
{ 0x08, 0x00, -1, 0x03, 0x0142, 0x0007 },
|
|
497
|
+
{ 0x08, 0x00, -1, 0x03, 0x0142, 0x0008 },
|
|
498
|
+
{ 0x08, 0x00, -1, 0x03, 0x0142, 0x0009 },
|
|
499
|
+
{ 0x09, 0x00, -1, 0x00, 0x0242, 0x0002 },
|
|
500
|
+
{ 0x09, 0x00, -1, 0x01, 0x0242, 0x0003 },
|
|
501
|
+
{ 0x09, 0x00, -1, 0x02, 0x0242, 0x0004 },
|
|
502
|
+
{ 0x09, 0x00, -1, 0x03, 0x0242, 0x0005 },
|
|
503
|
+
{ 0x09, 0x00, -1, 0x03, 0x0242, 0x0006 },
|
|
504
|
+
{ 0x09, 0x00, -1, 0x03, 0x0242, 0x0007 },
|
|
505
|
+
{ 0x09, 0x00, -1, 0x03, 0x0242, 0x0008 },
|
|
506
|
+
{ 0x09, 0x00, -1, 0x03, 0x0242, 0x0009 },
|
|
507
|
+
{ 0x0a, 0x00, -1, 0x00, 0x0442, 0x0002 },
|
|
508
|
+
{ 0x0a, 0x00, -1, 0x01, 0x0442, 0x0003 },
|
|
509
|
+
{ 0x0a, 0x00, -1, 0x02, 0x0442, 0x0004 },
|
|
510
|
+
{ 0x0a, 0x00, -1, 0x03, 0x0442, 0x0005 },
|
|
511
|
+
{ 0x0a, 0x00, -1, 0x03, 0x0442, 0x0006 },
|
|
512
|
+
{ 0x0a, 0x00, -1, 0x03, 0x0442, 0x0007 },
|
|
513
|
+
{ 0x0a, 0x00, -1, 0x03, 0x0442, 0x0008 },
|
|
514
|
+
{ 0x0a, 0x00, -1, 0x03, 0x0442, 0x0009 },
|
|
515
|
+
{ 0x0c, 0x00, -1, 0x00, 0x0842, 0x0002 },
|
|
516
|
+
{ 0x0c, 0x00, -1, 0x01, 0x0842, 0x0003 },
|
|
517
|
+
{ 0x0c, 0x00, -1, 0x02, 0x0842, 0x0004 },
|
|
518
|
+
{ 0x0c, 0x00, -1, 0x03, 0x0842, 0x0005 },
|
|
519
|
+
{ 0x0c, 0x00, -1, 0x03, 0x0842, 0x0006 },
|
|
520
|
+
{ 0x0c, 0x00, -1, 0x03, 0x0842, 0x0007 },
|
|
521
|
+
{ 0x0c, 0x00, -1, 0x03, 0x0842, 0x0008 },
|
|
522
|
+
{ 0x0c, 0x00, -1, 0x03, 0x0842, 0x0009 },
|
|
523
|
+
{ 0x0e, 0x00, -1, 0x00, 0x1842, 0x0002 },
|
|
524
|
+
{ 0x0e, 0x00, -1, 0x01, 0x1842, 0x0003 },
|
|
525
|
+
{ 0x0e, 0x00, -1, 0x02, 0x1842, 0x0004 },
|
|
526
|
+
{ 0x0e, 0x00, -1, 0x03, 0x1842, 0x0005 },
|
|
527
|
+
{ 0x0e, 0x00, -1, 0x03, 0x1842, 0x0006 },
|
|
528
|
+
{ 0x0e, 0x00, -1, 0x03, 0x1842, 0x0007 },
|
|
529
|
+
{ 0x0e, 0x00, -1, 0x03, 0x1842, 0x0008 },
|
|
530
|
+
{ 0x0e, 0x00, -1, 0x03, 0x1842, 0x0009 },
|
|
531
|
+
{ 0x18, 0x00, -1, 0x00, 0x5842, 0x0002 },
|
|
532
|
+
{ 0x18, 0x00, -1, 0x01, 0x5842, 0x0003 },
|
|
533
|
+
{ 0x18, 0x00, -1, 0x02, 0x5842, 0x0004 },
|
|
534
|
+
{ 0x18, 0x00, -1, 0x03, 0x5842, 0x0005 },
|
|
535
|
+
{ 0x18, 0x00, -1, 0x03, 0x5842, 0x0006 },
|
|
536
|
+
{ 0x18, 0x00, -1, 0x03, 0x5842, 0x0007 },
|
|
537
|
+
{ 0x18, 0x00, -1, 0x03, 0x5842, 0x0008 },
|
|
538
|
+
{ 0x18, 0x00, -1, 0x03, 0x5842, 0x0009 },
|
|
539
|
+
{ 0x02, 0x05, -1, 0x03, 0x000a, 0x0046 },
|
|
540
|
+
{ 0x02, 0x05, -1, 0x03, 0x000a, 0x0066 },
|
|
541
|
+
{ 0x02, 0x06, -1, 0x03, 0x000a, 0x0086 },
|
|
542
|
+
{ 0x02, 0x07, -1, 0x03, 0x000a, 0x00c6 },
|
|
543
|
+
{ 0x02, 0x08, -1, 0x03, 0x000a, 0x0146 },
|
|
544
|
+
{ 0x02, 0x09, -1, 0x03, 0x000a, 0x0246 },
|
|
545
|
+
{ 0x02, 0x0a, -1, 0x03, 0x000a, 0x0446 },
|
|
546
|
+
{ 0x02, 0x18, -1, 0x03, 0x000a, 0x0846 },
|
|
547
|
+
{ 0x02, 0x05, -1, 0x03, 0x000e, 0x0046 },
|
|
548
|
+
{ 0x02, 0x05, -1, 0x03, 0x000e, 0x0066 },
|
|
549
|
+
{ 0x02, 0x06, -1, 0x03, 0x000e, 0x0086 },
|
|
550
|
+
{ 0x02, 0x07, -1, 0x03, 0x000e, 0x00c6 },
|
|
551
|
+
{ 0x02, 0x08, -1, 0x03, 0x000e, 0x0146 },
|
|
552
|
+
{ 0x02, 0x09, -1, 0x03, 0x000e, 0x0246 },
|
|
553
|
+
{ 0x02, 0x0a, -1, 0x03, 0x000e, 0x0446 },
|
|
554
|
+
{ 0x02, 0x18, -1, 0x03, 0x000e, 0x0846 },
|
|
555
|
+
{ 0x03, 0x05, -1, 0x03, 0x0012, 0x0046 },
|
|
556
|
+
{ 0x03, 0x05, -1, 0x03, 0x0012, 0x0066 },
|
|
557
|
+
{ 0x03, 0x06, -1, 0x03, 0x0012, 0x0086 },
|
|
558
|
+
{ 0x03, 0x07, -1, 0x03, 0x0012, 0x00c6 },
|
|
559
|
+
{ 0x03, 0x08, -1, 0x03, 0x0012, 0x0146 },
|
|
560
|
+
{ 0x03, 0x09, -1, 0x03, 0x0012, 0x0246 },
|
|
561
|
+
{ 0x03, 0x0a, -1, 0x03, 0x0012, 0x0446 },
|
|
562
|
+
{ 0x03, 0x18, -1, 0x03, 0x0012, 0x0846 },
|
|
563
|
+
{ 0x03, 0x05, -1, 0x03, 0x001a, 0x0046 },
|
|
564
|
+
{ 0x03, 0x05, -1, 0x03, 0x001a, 0x0066 },
|
|
565
|
+
{ 0x03, 0x06, -1, 0x03, 0x001a, 0x0086 },
|
|
566
|
+
{ 0x03, 0x07, -1, 0x03, 0x001a, 0x00c6 },
|
|
567
|
+
{ 0x03, 0x08, -1, 0x03, 0x001a, 0x0146 },
|
|
568
|
+
{ 0x03, 0x09, -1, 0x03, 0x001a, 0x0246 },
|
|
569
|
+
{ 0x03, 0x0a, -1, 0x03, 0x001a, 0x0446 },
|
|
570
|
+
{ 0x03, 0x18, -1, 0x03, 0x001a, 0x0846 },
|
|
571
|
+
{ 0x04, 0x05, -1, 0x03, 0x0022, 0x0046 },
|
|
572
|
+
{ 0x04, 0x05, -1, 0x03, 0x0022, 0x0066 },
|
|
573
|
+
{ 0x04, 0x06, -1, 0x03, 0x0022, 0x0086 },
|
|
574
|
+
{ 0x04, 0x07, -1, 0x03, 0x0022, 0x00c6 },
|
|
575
|
+
{ 0x04, 0x08, -1, 0x03, 0x0022, 0x0146 },
|
|
576
|
+
{ 0x04, 0x09, -1, 0x03, 0x0022, 0x0246 },
|
|
577
|
+
{ 0x04, 0x0a, -1, 0x03, 0x0022, 0x0446 },
|
|
578
|
+
{ 0x04, 0x18, -1, 0x03, 0x0022, 0x0846 },
|
|
579
|
+
{ 0x04, 0x05, -1, 0x03, 0x0032, 0x0046 },
|
|
580
|
+
{ 0x04, 0x05, -1, 0x03, 0x0032, 0x0066 },
|
|
581
|
+
{ 0x04, 0x06, -1, 0x03, 0x0032, 0x0086 },
|
|
582
|
+
{ 0x04, 0x07, -1, 0x03, 0x0032, 0x00c6 },
|
|
583
|
+
{ 0x04, 0x08, -1, 0x03, 0x0032, 0x0146 },
|
|
584
|
+
{ 0x04, 0x09, -1, 0x03, 0x0032, 0x0246 },
|
|
585
|
+
{ 0x04, 0x0a, -1, 0x03, 0x0032, 0x0446 },
|
|
586
|
+
{ 0x04, 0x18, -1, 0x03, 0x0032, 0x0846 },
|
|
587
|
+
{ 0x05, 0x05, -1, 0x03, 0x0042, 0x0046 },
|
|
588
|
+
{ 0x05, 0x05, -1, 0x03, 0x0042, 0x0066 },
|
|
589
|
+
{ 0x05, 0x06, -1, 0x03, 0x0042, 0x0086 },
|
|
590
|
+
{ 0x05, 0x07, -1, 0x03, 0x0042, 0x00c6 },
|
|
591
|
+
{ 0x05, 0x08, -1, 0x03, 0x0042, 0x0146 },
|
|
592
|
+
{ 0x05, 0x09, -1, 0x03, 0x0042, 0x0246 },
|
|
593
|
+
{ 0x05, 0x0a, -1, 0x03, 0x0042, 0x0446 },
|
|
594
|
+
{ 0x05, 0x18, -1, 0x03, 0x0042, 0x0846 },
|
|
595
|
+
{ 0x05, 0x05, -1, 0x03, 0x0062, 0x0046 },
|
|
596
|
+
{ 0x05, 0x05, -1, 0x03, 0x0062, 0x0066 },
|
|
597
|
+
{ 0x05, 0x06, -1, 0x03, 0x0062, 0x0086 },
|
|
598
|
+
{ 0x05, 0x07, -1, 0x03, 0x0062, 0x00c6 },
|
|
599
|
+
{ 0x05, 0x08, -1, 0x03, 0x0062, 0x0146 },
|
|
600
|
+
{ 0x05, 0x09, -1, 0x03, 0x0062, 0x0246 },
|
|
601
|
+
{ 0x05, 0x0a, -1, 0x03, 0x0062, 0x0446 },
|
|
602
|
+
{ 0x05, 0x18, -1, 0x03, 0x0062, 0x0846 },
|
|
603
|
+
{ 0x06, 0x01, -1, 0x03, 0x0082, 0x000a },
|
|
604
|
+
{ 0x06, 0x01, -1, 0x03, 0x0082, 0x000c },
|
|
605
|
+
{ 0x06, 0x02, -1, 0x03, 0x0082, 0x000e },
|
|
606
|
+
{ 0x06, 0x02, -1, 0x03, 0x0082, 0x0012 },
|
|
607
|
+
{ 0x06, 0x03, -1, 0x03, 0x0082, 0x0016 },
|
|
608
|
+
{ 0x06, 0x03, -1, 0x03, 0x0082, 0x001e },
|
|
609
|
+
{ 0x06, 0x04, -1, 0x03, 0x0082, 0x0026 },
|
|
610
|
+
{ 0x06, 0x04, -1, 0x03, 0x0082, 0x0036 },
|
|
611
|
+
{ 0x07, 0x01, -1, 0x03, 0x00c2, 0x000a },
|
|
612
|
+
{ 0x07, 0x01, -1, 0x03, 0x00c2, 0x000c },
|
|
613
|
+
{ 0x07, 0x02, -1, 0x03, 0x00c2, 0x000e },
|
|
614
|
+
{ 0x07, 0x02, -1, 0x03, 0x00c2, 0x0012 },
|
|
615
|
+
{ 0x07, 0x03, -1, 0x03, 0x00c2, 0x0016 },
|
|
616
|
+
{ 0x07, 0x03, -1, 0x03, 0x00c2, 0x001e },
|
|
617
|
+
{ 0x07, 0x04, -1, 0x03, 0x00c2, 0x0026 },
|
|
618
|
+
{ 0x07, 0x04, -1, 0x03, 0x00c2, 0x0036 },
|
|
619
|
+
{ 0x08, 0x01, -1, 0x03, 0x0142, 0x000a },
|
|
620
|
+
{ 0x08, 0x01, -1, 0x03, 0x0142, 0x000c },
|
|
621
|
+
{ 0x08, 0x02, -1, 0x03, 0x0142, 0x000e },
|
|
622
|
+
{ 0x08, 0x02, -1, 0x03, 0x0142, 0x0012 },
|
|
623
|
+
{ 0x08, 0x03, -1, 0x03, 0x0142, 0x0016 },
|
|
624
|
+
{ 0x08, 0x03, -1, 0x03, 0x0142, 0x001e },
|
|
625
|
+
{ 0x08, 0x04, -1, 0x03, 0x0142, 0x0026 },
|
|
626
|
+
{ 0x08, 0x04, -1, 0x03, 0x0142, 0x0036 },
|
|
627
|
+
{ 0x09, 0x01, -1, 0x03, 0x0242, 0x000a },
|
|
628
|
+
{ 0x09, 0x01, -1, 0x03, 0x0242, 0x000c },
|
|
629
|
+
{ 0x09, 0x02, -1, 0x03, 0x0242, 0x000e },
|
|
630
|
+
{ 0x09, 0x02, -1, 0x03, 0x0242, 0x0012 },
|
|
631
|
+
{ 0x09, 0x03, -1, 0x03, 0x0242, 0x0016 },
|
|
632
|
+
{ 0x09, 0x03, -1, 0x03, 0x0242, 0x001e },
|
|
633
|
+
{ 0x09, 0x04, -1, 0x03, 0x0242, 0x0026 },
|
|
634
|
+
{ 0x09, 0x04, -1, 0x03, 0x0242, 0x0036 },
|
|
635
|
+
{ 0x0a, 0x01, -1, 0x03, 0x0442, 0x000a },
|
|
636
|
+
{ 0x0a, 0x01, -1, 0x03, 0x0442, 0x000c },
|
|
637
|
+
{ 0x0a, 0x02, -1, 0x03, 0x0442, 0x000e },
|
|
638
|
+
{ 0x0a, 0x02, -1, 0x03, 0x0442, 0x0012 },
|
|
639
|
+
{ 0x0a, 0x03, -1, 0x03, 0x0442, 0x0016 },
|
|
640
|
+
{ 0x0a, 0x03, -1, 0x03, 0x0442, 0x001e },
|
|
641
|
+
{ 0x0a, 0x04, -1, 0x03, 0x0442, 0x0026 },
|
|
642
|
+
{ 0x0a, 0x04, -1, 0x03, 0x0442, 0x0036 },
|
|
643
|
+
{ 0x0c, 0x01, -1, 0x03, 0x0842, 0x000a },
|
|
644
|
+
{ 0x0c, 0x01, -1, 0x03, 0x0842, 0x000c },
|
|
645
|
+
{ 0x0c, 0x02, -1, 0x03, 0x0842, 0x000e },
|
|
646
|
+
{ 0x0c, 0x02, -1, 0x03, 0x0842, 0x0012 },
|
|
647
|
+
{ 0x0c, 0x03, -1, 0x03, 0x0842, 0x0016 },
|
|
648
|
+
{ 0x0c, 0x03, -1, 0x03, 0x0842, 0x001e },
|
|
649
|
+
{ 0x0c, 0x04, -1, 0x03, 0x0842, 0x0026 },
|
|
650
|
+
{ 0x0c, 0x04, -1, 0x03, 0x0842, 0x0036 },
|
|
651
|
+
{ 0x0e, 0x01, -1, 0x03, 0x1842, 0x000a },
|
|
652
|
+
{ 0x0e, 0x01, -1, 0x03, 0x1842, 0x000c },
|
|
653
|
+
{ 0x0e, 0x02, -1, 0x03, 0x1842, 0x000e },
|
|
654
|
+
{ 0x0e, 0x02, -1, 0x03, 0x1842, 0x0012 },
|
|
655
|
+
{ 0x0e, 0x03, -1, 0x03, 0x1842, 0x0016 },
|
|
656
|
+
{ 0x0e, 0x03, -1, 0x03, 0x1842, 0x001e },
|
|
657
|
+
{ 0x0e, 0x04, -1, 0x03, 0x1842, 0x0026 },
|
|
658
|
+
{ 0x0e, 0x04, -1, 0x03, 0x1842, 0x0036 },
|
|
659
|
+
{ 0x18, 0x01, -1, 0x03, 0x5842, 0x000a },
|
|
660
|
+
{ 0x18, 0x01, -1, 0x03, 0x5842, 0x000c },
|
|
661
|
+
{ 0x18, 0x02, -1, 0x03, 0x5842, 0x000e },
|
|
662
|
+
{ 0x18, 0x02, -1, 0x03, 0x5842, 0x0012 },
|
|
663
|
+
{ 0x18, 0x03, -1, 0x03, 0x5842, 0x0016 },
|
|
664
|
+
{ 0x18, 0x03, -1, 0x03, 0x5842, 0x001e },
|
|
665
|
+
{ 0x18, 0x04, -1, 0x03, 0x5842, 0x0026 },
|
|
666
|
+
{ 0x18, 0x04, -1, 0x03, 0x5842, 0x0036 },
|
|
667
|
+
{ 0x06, 0x05, -1, 0x03, 0x0082, 0x0046 },
|
|
668
|
+
{ 0x06, 0x05, -1, 0x03, 0x0082, 0x0066 },
|
|
669
|
+
{ 0x06, 0x06, -1, 0x03, 0x0082, 0x0086 },
|
|
670
|
+
{ 0x06, 0x07, -1, 0x03, 0x0082, 0x00c6 },
|
|
671
|
+
{ 0x06, 0x08, -1, 0x03, 0x0082, 0x0146 },
|
|
672
|
+
{ 0x06, 0x09, -1, 0x03, 0x0082, 0x0246 },
|
|
673
|
+
{ 0x06, 0x0a, -1, 0x03, 0x0082, 0x0446 },
|
|
674
|
+
{ 0x06, 0x18, -1, 0x03, 0x0082, 0x0846 },
|
|
675
|
+
{ 0x07, 0x05, -1, 0x03, 0x00c2, 0x0046 },
|
|
676
|
+
{ 0x07, 0x05, -1, 0x03, 0x00c2, 0x0066 },
|
|
677
|
+
{ 0x07, 0x06, -1, 0x03, 0x00c2, 0x0086 },
|
|
678
|
+
{ 0x07, 0x07, -1, 0x03, 0x00c2, 0x00c6 },
|
|
679
|
+
{ 0x07, 0x08, -1, 0x03, 0x00c2, 0x0146 },
|
|
680
|
+
{ 0x07, 0x09, -1, 0x03, 0x00c2, 0x0246 },
|
|
681
|
+
{ 0x07, 0x0a, -1, 0x03, 0x00c2, 0x0446 },
|
|
682
|
+
{ 0x07, 0x18, -1, 0x03, 0x00c2, 0x0846 },
|
|
683
|
+
{ 0x08, 0x05, -1, 0x03, 0x0142, 0x0046 },
|
|
684
|
+
{ 0x08, 0x05, -1, 0x03, 0x0142, 0x0066 },
|
|
685
|
+
{ 0x08, 0x06, -1, 0x03, 0x0142, 0x0086 },
|
|
686
|
+
{ 0x08, 0x07, -1, 0x03, 0x0142, 0x00c6 },
|
|
687
|
+
{ 0x08, 0x08, -1, 0x03, 0x0142, 0x0146 },
|
|
688
|
+
{ 0x08, 0x09, -1, 0x03, 0x0142, 0x0246 },
|
|
689
|
+
{ 0x08, 0x0a, -1, 0x03, 0x0142, 0x0446 },
|
|
690
|
+
{ 0x08, 0x18, -1, 0x03, 0x0142, 0x0846 },
|
|
691
|
+
{ 0x09, 0x05, -1, 0x03, 0x0242, 0x0046 },
|
|
692
|
+
{ 0x09, 0x05, -1, 0x03, 0x0242, 0x0066 },
|
|
693
|
+
{ 0x09, 0x06, -1, 0x03, 0x0242, 0x0086 },
|
|
694
|
+
{ 0x09, 0x07, -1, 0x03, 0x0242, 0x00c6 },
|
|
695
|
+
{ 0x09, 0x08, -1, 0x03, 0x0242, 0x0146 },
|
|
696
|
+
{ 0x09, 0x09, -1, 0x03, 0x0242, 0x0246 },
|
|
697
|
+
{ 0x09, 0x0a, -1, 0x03, 0x0242, 0x0446 },
|
|
698
|
+
{ 0x09, 0x18, -1, 0x03, 0x0242, 0x0846 },
|
|
699
|
+
{ 0x0a, 0x05, -1, 0x03, 0x0442, 0x0046 },
|
|
700
|
+
{ 0x0a, 0x05, -1, 0x03, 0x0442, 0x0066 },
|
|
701
|
+
{ 0x0a, 0x06, -1, 0x03, 0x0442, 0x0086 },
|
|
702
|
+
{ 0x0a, 0x07, -1, 0x03, 0x0442, 0x00c6 },
|
|
703
|
+
{ 0x0a, 0x08, -1, 0x03, 0x0442, 0x0146 },
|
|
704
|
+
{ 0x0a, 0x09, -1, 0x03, 0x0442, 0x0246 },
|
|
705
|
+
{ 0x0a, 0x0a, -1, 0x03, 0x0442, 0x0446 },
|
|
706
|
+
{ 0x0a, 0x18, -1, 0x03, 0x0442, 0x0846 },
|
|
707
|
+
{ 0x0c, 0x05, -1, 0x03, 0x0842, 0x0046 },
|
|
708
|
+
{ 0x0c, 0x05, -1, 0x03, 0x0842, 0x0066 },
|
|
709
|
+
{ 0x0c, 0x06, -1, 0x03, 0x0842, 0x0086 },
|
|
710
|
+
{ 0x0c, 0x07, -1, 0x03, 0x0842, 0x00c6 },
|
|
711
|
+
{ 0x0c, 0x08, -1, 0x03, 0x0842, 0x0146 },
|
|
712
|
+
{ 0x0c, 0x09, -1, 0x03, 0x0842, 0x0246 },
|
|
713
|
+
{ 0x0c, 0x0a, -1, 0x03, 0x0842, 0x0446 },
|
|
714
|
+
{ 0x0c, 0x18, -1, 0x03, 0x0842, 0x0846 },
|
|
715
|
+
{ 0x0e, 0x05, -1, 0x03, 0x1842, 0x0046 },
|
|
716
|
+
{ 0x0e, 0x05, -1, 0x03, 0x1842, 0x0066 },
|
|
717
|
+
{ 0x0e, 0x06, -1, 0x03, 0x1842, 0x0086 },
|
|
718
|
+
{ 0x0e, 0x07, -1, 0x03, 0x1842, 0x00c6 },
|
|
719
|
+
{ 0x0e, 0x08, -1, 0x03, 0x1842, 0x0146 },
|
|
720
|
+
{ 0x0e, 0x09, -1, 0x03, 0x1842, 0x0246 },
|
|
721
|
+
{ 0x0e, 0x0a, -1, 0x03, 0x1842, 0x0446 },
|
|
722
|
+
{ 0x0e, 0x18, -1, 0x03, 0x1842, 0x0846 },
|
|
723
|
+
{ 0x18, 0x05, -1, 0x03, 0x5842, 0x0046 },
|
|
724
|
+
{ 0x18, 0x05, -1, 0x03, 0x5842, 0x0066 },
|
|
725
|
+
{ 0x18, 0x06, -1, 0x03, 0x5842, 0x0086 },
|
|
726
|
+
{ 0x18, 0x07, -1, 0x03, 0x5842, 0x00c6 },
|
|
727
|
+
{ 0x18, 0x08, -1, 0x03, 0x5842, 0x0146 },
|
|
728
|
+
{ 0x18, 0x09, -1, 0x03, 0x5842, 0x0246 },
|
|
729
|
+
{ 0x18, 0x0a, -1, 0x03, 0x5842, 0x0446 },
|
|
730
|
+
{ 0x18, 0x18, -1, 0x03, 0x5842, 0x0846 },
|
|
731
|
+
};
|
|
732
|
+
|
|
733
|
+
#endif /* BROTLI_DEC_PREFIX_H_ */
|