diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index c52eb34af..9aa83d631 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -36,7 +36,7 @@ jobs: - name: Install prerequisites run: scripts/install-prerequisites.sh - name: Run tests - run: python tests/main.py --report test + run: python tests/main.py --report --update-image test - name: Archive screenshot errors if: failure() uses: actions/upload-artifact@v4 @@ -95,7 +95,9 @@ jobs: install: | apt-get update -y - apt-get install build-essential ccache libgcc-10-dev python3 libpng-dev ruby-full gcovr cmake libjpeg62-turbo-dev libfreetype6-dev libasan6 -q -y + apt-get install build-essential ccache libgcc-10-dev python3 libpng-dev ruby-full gcovr cmake libjpeg62-turbo-dev libfreetype6-dev libasan6 pngquant python3-pip + -q -y + pip install pypng lz4 /usr/sbin/update-ccache-symlinks echo 'export PATH="/usr/lib/ccache:$PATH"' | tee -a ~/.bashrc diff --git a/.gitignore b/.gitignore index f2aa39038..7d49d36ef 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ tests/report/ .vscode .idea *.bak +tests/test_images/ diff --git a/scripts/LVGLImage.py b/scripts/LVGLImage.py index 31a6071f1..3c96646d3 100755 --- a/scripts/LVGLImage.py +++ b/scripts/LVGLImage.py @@ -591,6 +591,8 @@ class LVGLImage: header = f''' #if defined(LV_LVGL_H_INCLUDE_SIMPLE) #include "lvgl.h" +#elif defined(LV_BUILD_TEST) +#include "../lvgl.h" #else #include "lvgl/lvgl.h" #endif diff --git a/scripts/install-prerequisites.sh b/scripts/install-prerequisites.sh index a39efc4c7..c2382a5db 100755 --- a/scripts/install-prerequisites.sh +++ b/scripts/install-prerequisites.sh @@ -6,4 +6,5 @@ # # Note: This script is run by the CI workflows. sudo apt update -sudo apt install gcc python3 libpng-dev ruby-full gcovr cmake libjpeg-turbo8-dev libfreetype6-dev +sudo apt install gcc python3 libpng-dev ruby-full gcovr cmake libjpeg-turbo8-dev libfreetype6-dev pngquant +pip3 install pypng lz4 diff --git a/tests/README.md b/tests/README.md index b7a157133..b0d946b82 100644 --- a/tests/README.md +++ b/tests/README.md @@ -18,6 +18,12 @@ scripts/install-prerequisites.sh 3. Clean prior test build, build all build-only tests, run executable tests, and generate code coverage report `./tests/main.py --clean --report build test`. +4. You can re-generate the test images by adding option `--update-image`. + It relies on scripts/LVGLImage.py, which requires pngquant and pypng. + You can run below command firstly and follow instructions in logs to install them. + `./tests/main.py --update-image test` + Note that different version of pngquant may generate different images. + As of now the generated image on CI uses pngquant 2.13.1-1. For full information on running tests run: `./tests/main.py --help`. diff --git a/tests/main.py b/tests/main.py index e6d70455e..6461cf5b4 100755 --- a/tests/main.py +++ b/tests/main.py @@ -7,8 +7,13 @@ import subprocess import sys import os from itertools import chain +from pathlib import Path lvgl_test_dir = os.path.dirname(os.path.realpath(__file__)) +lvgl_script_path = os.path.join(lvgl_test_dir, "../scripts") +sys.path.append(lvgl_script_path) + +from LVGLImage import LVGLImage, ColorFormat, CompressMethod # Key values must match variable names in CMakeLists.txt. build_only_options = { @@ -139,6 +144,31 @@ def generate_code_coverage_report(): print("Done: See %s" % html_report_file, flush=True) +def generate_test_images(): + invalids = (ColorFormat.UNKNOWN, ColorFormat.TRUECOLOR, ColorFormat.TRUECOLOR_ALPHA) + formats = [i for i in ColorFormat if i not in invalids] + png_path = os.path.join(lvgl_test_dir, "test_images/pngs") + pngs = list(Path(png_path).rglob("*.[pP][nN][gG]")) + print(f"png files: {pngs}") + + align_options = [1, 64] + + for align in align_options: + for compress in CompressMethod: + compress_name = compress.name if compress != CompressMethod.NONE else "UNCOMPRESSED" + outputs = os.path.join(lvgl_test_dir, f"test_images/stride_align{align}/{compress_name}/") + os.makedirs(outputs, exist_ok=True) + for fmt in formats: + for png in pngs: + img = LVGLImage().from_png(png, cf=fmt, background=0xffffff) + img.adjust_stride(align=16) + output = os.path.join(outputs, f"{Path(png).stem}_{fmt.name}.bin") + img.to_bin(output, compress=compress) + output = os.path.join(outputs, f"{Path(png).stem}_{fmt.name}_{compress.name}_align{align}.c") + img.to_c_array(output, compress=compress) + print(f"converting {os.path.basename(png)}, format: {fmt.name}, compress: {compress_name}") + + if __name__ == "__main__": epilog = '''This program builds and optionally runs the LVGL test programs. There are two types of LVGL tests: "build", and "test". The build-only @@ -161,9 +191,14 @@ if __name__ == "__main__": help='build: compile build tests, test: compile/run executable tests.') parser.add_argument('--test-suite', default=None, help='select test suite to run') + parser.add_argument('--update-image', action='store_true', default=False, + help='Update test image using LVGLImage.py script') args = parser.parse_args() + if args.update_image: + generate_test_images() + if args.build_options: options_to_build = args.build_options else: diff --git a/tests/ref_imgs/draw/bin_image_stride1_LZ4_recolor.png b/tests/ref_imgs/draw/bin_image_stride1_LZ4_recolor.png index 13c4cf7a6..66780c9f4 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_LZ4_recolor.png and b/tests/ref_imgs/draw/bin_image_stride1_LZ4_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate.png b/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate.png index 3a1ab45ba..3e3607228 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate.png and b/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate_recolor.png b/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate_recolor.png index 16924e41b..3a3486aaa 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate_recolor.png and b/tests/ref_imgs/draw/bin_image_stride1_LZ4_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_LZ4_simple.png b/tests/ref_imgs/draw/bin_image_stride1_LZ4_simple.png index e3d4b6955..183f026ec 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_LZ4_simple.png and b/tests/ref_imgs/draw/bin_image_stride1_LZ4_simple.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_RLE_recolor.png b/tests/ref_imgs/draw/bin_image_stride1_RLE_recolor.png index 13c4cf7a6..66780c9f4 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_RLE_recolor.png and b/tests/ref_imgs/draw/bin_image_stride1_RLE_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate.png b/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate.png index 3a1ab45ba..3e3607228 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate.png and b/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate_recolor.png b/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate_recolor.png index 16924e41b..3a3486aaa 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate_recolor.png and b/tests/ref_imgs/draw/bin_image_stride1_RLE_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_RLE_simple.png b/tests/ref_imgs/draw/bin_image_stride1_RLE_simple.png index e3d4b6955..183f026ec 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_RLE_simple.png and b/tests/ref_imgs/draw/bin_image_stride1_RLE_simple.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_recolor.png b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_recolor.png index 13c4cf7a6..66780c9f4 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_recolor.png and b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate.png b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate.png index 3a1ab45ba..3e3607228 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate.png and b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate_recolor.png b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate_recolor.png index 16924e41b..3a3486aaa 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate_recolor.png and b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_simple.png b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_simple.png index e3d4b6955..183f026ec 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_simple.png and b/tests/ref_imgs/draw/bin_image_stride1_UNCOMPRESSED_simple.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_LZ4_recolor.png b/tests/ref_imgs/draw/bin_image_stride64_LZ4_recolor.png index 13c4cf7a6..66780c9f4 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_LZ4_recolor.png and b/tests/ref_imgs/draw/bin_image_stride64_LZ4_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate.png b/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate.png index 3a1ab45ba..3e3607228 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate.png and b/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate_recolor.png b/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate_recolor.png index 16924e41b..3a3486aaa 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate_recolor.png and b/tests/ref_imgs/draw/bin_image_stride64_LZ4_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_LZ4_simple.png b/tests/ref_imgs/draw/bin_image_stride64_LZ4_simple.png index e3d4b6955..183f026ec 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_LZ4_simple.png and b/tests/ref_imgs/draw/bin_image_stride64_LZ4_simple.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_RLE_recolor.png b/tests/ref_imgs/draw/bin_image_stride64_RLE_recolor.png index 13c4cf7a6..66780c9f4 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_RLE_recolor.png and b/tests/ref_imgs/draw/bin_image_stride64_RLE_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate.png b/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate.png index 3a1ab45ba..3e3607228 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate.png and b/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate_recolor.png b/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate_recolor.png index 16924e41b..3a3486aaa 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate_recolor.png and b/tests/ref_imgs/draw/bin_image_stride64_RLE_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_RLE_simple.png b/tests/ref_imgs/draw/bin_image_stride64_RLE_simple.png index e3d4b6955..183f026ec 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_RLE_simple.png and b/tests/ref_imgs/draw/bin_image_stride64_RLE_simple.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_recolor.png b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_recolor.png index 13c4cf7a6..66780c9f4 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_recolor.png and b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate.png b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate.png index 3a1ab45ba..3e3607228 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate.png and b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate_recolor.png b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate_recolor.png index 16924e41b..3a3486aaa 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate_recolor.png and b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_simple.png b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_simple.png index e3d4b6955..183f026ec 100644 Binary files a/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_simple.png and b/tests/ref_imgs/draw/bin_image_stride64_UNCOMPRESSED_simple.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_recolor.png b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_recolor.png index 3bd38b627..a86a880a3 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate.png b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate.png index d2a1e9d3f..f9fab6edb 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate.png and b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate_recolor.png b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate_recolor.png index 331afbb22..8e1d37d6e 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_simple.png b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_simple.png index 4c8f18bfd..f86a46f06 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_LZ4_simple.png and b/tests/ref_imgs/draw/c_array_image_stride1_LZ4_simple.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_RLE_recolor.png b/tests/ref_imgs/draw/c_array_image_stride1_RLE_recolor.png index 2c9f0c32d..4a9905278 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_RLE_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride1_RLE_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate.png b/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate.png index 8aea1327c..05f9ad3b8 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate.png and b/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate_recolor.png b/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate_recolor.png index b8909e30e..4a57801db 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride1_RLE_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_RLE_simple.png b/tests/ref_imgs/draw/c_array_image_stride1_RLE_simple.png index dfc41a8f4..faef4c8a5 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_RLE_simple.png and b/tests/ref_imgs/draw/c_array_image_stride1_RLE_simple.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_recolor.png b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_recolor.png index 0245fd8ea..7f44cf354 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate.png b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate.png index a387f4672..78e787150 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate.png and b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate_recolor.png b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate_recolor.png index ce8708e29..5844ab880 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_simple.png b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_simple.png index 8379f7db8..1067dad5a 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_simple.png and b/tests/ref_imgs/draw/c_array_image_stride1_UNCOMPRESSED_simple.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_recolor.png b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_recolor.png index 3bd38b627..a86a880a3 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate.png b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate.png index d2a1e9d3f..f9fab6edb 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate.png and b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate_recolor.png b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate_recolor.png index 331afbb22..8e1d37d6e 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_simple.png b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_simple.png index 4c8f18bfd..f86a46f06 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_LZ4_simple.png and b/tests/ref_imgs/draw/c_array_image_stride64_LZ4_simple.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_RLE_recolor.png b/tests/ref_imgs/draw/c_array_image_stride64_RLE_recolor.png index 2c9f0c32d..4a9905278 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_RLE_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride64_RLE_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate.png b/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate.png index 8aea1327c..05f9ad3b8 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate.png and b/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate_recolor.png b/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate_recolor.png index b8909e30e..4a57801db 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride64_RLE_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_RLE_simple.png b/tests/ref_imgs/draw/c_array_image_stride64_RLE_simple.png index dfc41a8f4..faef4c8a5 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_RLE_simple.png and b/tests/ref_imgs/draw/c_array_image_stride64_RLE_simple.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_recolor.png b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_recolor.png index 0245fd8ea..7f44cf354 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate.png b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate.png index a387f4672..78e787150 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate.png and b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate_recolor.png b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate_recolor.png index ce8708e29..5844ab880 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate_recolor.png and b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_rotate_recolor.png differ diff --git a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_simple.png b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_simple.png index 8379f7db8..1067dad5a 100644 Binary files a/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_simple.png and b/tests/ref_imgs/draw/c_array_image_stride64_UNCOMPRESSED_simple.png differ diff --git a/tests/test_images/pngs/test.png b/tests/test_images/pngs/test.png new file mode 100644 index 000000000..506c6997f Binary files /dev/null and b/tests/test_images/pngs/test.png differ diff --git a/tests/test_images/stride_align1/LZ4/test_A1.bin b/tests/test_images/stride_align1/LZ4/test_A1.bin index 9b8c3faf1..1a9d4ac4c 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_A1.bin and b/tests/test_images/stride_align1/LZ4/test_A1.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_A1_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_A1_LZ4_align1.c index e1c4ce4a9..7135c8776 100644 --- a/tests/test_images/stride_align1/LZ4/test_A1_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_A1_LZ4_align1.c @@ -46,6 +46,7 @@ uint8_t test_A1_LZ4_align1_map[] = { }; const lv_img_dsc_t test_A1_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_A2.bin b/tests/test_images/stride_align1/LZ4/test_A2.bin index b5b6b5ace..1b0ea270a 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_A2.bin and b/tests/test_images/stride_align1/LZ4/test_A2.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_A2_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_A2_LZ4_align1.c index 580d9f0a9..0ff0c015b 100644 --- a/tests/test_images/stride_align1/LZ4/test_A2_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_A2_LZ4_align1.c @@ -59,6 +59,7 @@ uint8_t test_A2_LZ4_align1_map[] = { }; const lv_img_dsc_t test_A2_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_A4.bin b/tests/test_images/stride_align1/LZ4/test_A4.bin index 72c5b629e..0a1c3fe94 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_A4.bin and b/tests/test_images/stride_align1/LZ4/test_A4.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_A4_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_A4_LZ4_align1.c index 17c8a15b9..328be6d41 100644 --- a/tests/test_images/stride_align1/LZ4/test_A4_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_A4_LZ4_align1.c @@ -79,6 +79,7 @@ uint8_t test_A4_LZ4_align1_map[] = { }; const lv_img_dsc_t test_A4_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_A8.bin b/tests/test_images/stride_align1/LZ4/test_A8.bin index fb851eb18..398933fcd 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_A8.bin and b/tests/test_images/stride_align1/LZ4/test_A8.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_A8_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_A8_LZ4_align1.c index 99b19f098..8b7cf8380 100644 --- a/tests/test_images/stride_align1/LZ4/test_A8_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_A8_LZ4_align1.c @@ -112,6 +112,7 @@ uint8_t test_A8_LZ4_align1_map[] = { }; const lv_img_dsc_t test_A8_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_ARGB8888.bin b/tests/test_images/stride_align1/LZ4/test_ARGB8888.bin index be0492189..2141a16d3 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_ARGB8888.bin and b/tests/test_images/stride_align1/LZ4/test_ARGB8888.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_ARGB8888_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_ARGB8888_LZ4_align1.c index 3898a5f87..7d89c1e55 100644 --- a/tests/test_images/stride_align1/LZ4/test_ARGB8888_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_ARGB8888_LZ4_align1.c @@ -206,6 +206,7 @@ uint8_t test_ARGB8888_LZ4_align1_map[] = { }; const lv_img_dsc_t test_ARGB8888_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_ARGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_I1.bin b/tests/test_images/stride_align1/LZ4/test_I1.bin index da21dcae0..9cc366b7e 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_I1.bin and b/tests/test_images/stride_align1/LZ4/test_I1.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_I1_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_I1_LZ4_align1.c index eb5d78c03..ad675a1ba 100644 --- a/tests/test_images/stride_align1/LZ4/test_I1_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_I1_LZ4_align1.c @@ -20,42 +20,43 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I1_LZ4_align1_map[] = { - 0x02,0x00,0x00,0x00,0x8c,0x01,0x00,0x00,0xc8,0x03,0x00,0x00,0x9b,0x3f,0xe3,0x94, - 0xee,0x66,0x0f,0x0f,0x44,0x00,0x01,0x00,0x22,0x7f,0xff,0x01,0x00,0x13,0xfc,0x18, + 0x02,0x00,0x00,0x00,0x93,0x01,0x00,0x00,0xc8,0x03,0x00,0x00,0x9b,0x56,0x82,0x0a, + 0xfa,0x43,0xbe,0xeb,0x3b,0x00,0x01,0x00,0x22,0x7f,0xff,0x01,0x00,0x13,0xfc,0x18, 0x00,0x0c,0x10,0x00,0x93,0x60,0x00,0x1f,0xff,0xff,0xff,0xe0,0x00,0x0c,0x20,0x00, - 0x96,0x60,0x00,0x1f,0xf9,0xff,0xff,0xef,0xff,0xec,0x10,0x00,0x66,0xc0,0x3f,0xef, - 0xe8,0x00,0x2c,0x10,0x00,0x66,0x80,0x1f,0xe3,0xeb,0xff,0xac,0x10,0x00,0x56,0x00, - 0x0f,0xc7,0xea,0x00,0x10,0x00,0x69,0x1e,0x00,0x07,0xef,0xea,0xfe,0x10,0x00,0x3b, - 0xff,0xea,0x82,0x10,0x00,0x16,0xba,0x10,0x00,0x69,0x1c,0x00,0x03,0xf7,0xea,0xaa, - 0x10,0x00,0x18,0xc3,0x20,0x00,0x4b,0x1e,0x00,0x07,0x81,0x40,0x00,0x1b,0x00,0x60, - 0x00,0x18,0x01,0x80,0x00,0x49,0x1f,0x00,0x0f,0x81,0xa0,0x00,0x39,0x80,0x1f,0xc1, - 0xc0,0x00,0x36,0xc0,0x3f,0xe7,0xe0,0x00,0x48,0x7f,0xff,0xff,0xf8,0x00,0x01,0x0c, - 0x20,0x01,0x0e,0x10,0x00,0x11,0xf8,0xfa,0x00,0x04,0x30,0x01,0x2a,0x7e,0x07,0x60, - 0x01,0x2a,0x78,0x01,0x10,0x00,0x2b,0x70,0x00,0x10,0x00,0x12,0xf0,0x52,0x00,0x11, - 0xfc,0x46,0x00,0x68,0x00,0x00,0x71,0xf8,0x7f,0xf4,0x10,0x00,0x57,0x79,0xf8,0x7f, - 0xc0,0x3f,0x10,0x00,0x58,0x7f,0xf8,0x7f,0xc6,0x1f,0x10,0x00,0x83,0x00,0x7f,0xcf, - 0x1f,0xff,0xff,0xad,0xdc,0x40,0x00,0x57,0x7c,0x00,0x7f,0xff,0x9f,0x20,0x00,0x48, - 0x70,0x28,0x7f,0xff,0x30,0x00,0x75,0x70,0xf8,0x7f,0xe0,0x1f,0xf0,0x7f,0x70,0x00, - 0x75,0x70,0xf8,0x7f,0xc7,0x1f,0xf7,0x7f,0x40,0x00,0x76,0x61,0xf8,0x7f,0x8f,0x1f, - 0xff,0x3f,0x20,0x00,0x57,0xf0,0x7f,0x8f,0x9f,0xf8,0x10,0x00,0x47,0x00,0x1f,0x87, - 0x0f,0x30,0x00,0x66,0x78,0x08,0x1f,0xc0,0x07,0xf3,0x20,0x00,0x75,0x7c,0x1c,0x1f, - 0xe1,0x87,0xf9,0x3f,0x50,0x00,0x02,0xde,0x00,0x06,0xd0,0x00,0x0c,0x10,0x00,0x11, - 0x60,0xb8,0x00,0x15,0x5f,0x70,0x00,0x01,0x10,0x00,0x2a,0x05,0x55,0x10,0x00,0x2a, - 0x12,0xbf,0x10,0x00,0x2a,0x04,0xaa,0x10,0x00,0x2a,0x2a,0xb7,0x10,0x00,0x2a,0x00, - 0xaf,0x10,0x00,0x2a,0x2b,0x75,0x10,0x00,0x1b,0x04,0x20,0x00,0x1b,0x22,0x40,0x00, - 0x2a,0x0a,0xae,0x30,0x00,0x2a,0x11,0x5b,0x10,0x00,0x1b,0x42,0x30,0x00,0x2a,0x15, - 0x5d,0x20,0x00,0x25,0x00,0x2b,0x10,0x00,0x0c,0xf0,0x00,0x0f,0x10,0x00,0x0d,0x07, - 0x02,0x00,0x50,0x00,0x00,0x00,0x00,0x00, + 0x96,0x60,0x00,0x1f,0xf0,0xff,0xff,0xef,0xff,0xec,0x10,0x00,0x66,0xc0,0x3f,0xe7, + 0xe8,0x00,0x2c,0x10,0x00,0x69,0x00,0x0f,0xc3,0xeb,0xff,0xac,0x10,0x00,0x26,0xea, + 0x00,0x10,0x00,0x69,0x1e,0x00,0x07,0xe7,0xea,0xfe,0x10,0x00,0x36,0xff,0xea,0x82, + 0x10,0x00,0x69,0x1c,0x00,0x03,0xff,0xea,0xba,0x10,0x00,0x39,0xc3,0xea,0xaa,0x10, + 0x00,0x1b,0x81,0x20,0x00,0x18,0x00,0x40,0x00,0x4b,0x1e,0x00,0x07,0x00,0x60,0x00, + 0x18,0x00,0x80,0x00,0x4a,0x1f,0x00,0x07,0x00,0xa0,0x00,0x29,0x1f,0x81,0xc0,0x00, + 0x36,0xc0,0x1f,0xc3,0xe0,0x00,0x57,0x7f,0xff,0xff,0xf0,0x7f,0x00,0x01,0x0c,0x20, + 0x01,0x0e,0x10,0x00,0x11,0xf8,0xfa,0x00,0x04,0x30,0x01,0x2a,0x7c,0x03,0x60,0x01, + 0x2c,0x70,0x00,0x10,0x00,0x02,0x42,0x00,0x11,0xfc,0x36,0x00,0x4b,0x00,0x00,0x70, + 0xf0,0x10,0x00,0x21,0xf8,0x7f,0x12,0x00,0x04,0x20,0x00,0x57,0x71,0xf8,0x3f,0xc0, + 0x3f,0x10,0x00,0x57,0x7f,0xf8,0x7f,0xc4,0x1f,0x10,0x00,0x93,0x7e,0x00,0x3f,0xcf, + 0x0f,0xff,0xff,0xad,0xdc,0x50,0x00,0x57,0x78,0x00,0x7f,0xcf,0x0f,0x20,0x00,0x49, + 0x70,0x00,0x3f,0xfd,0x10,0x00,0x65,0xf8,0x7f,0xe0,0x0f,0xf0,0x7f,0x60,0x00,0x75, + 0x60,0xf8,0x3f,0xc1,0x0f,0xf3,0x3f,0x40,0x00,0x76,0x60,0xf8,0x7f,0x87,0x0f,0xfe, + 0x3f,0x20,0x00,0x56,0xf0,0x3f,0x8f,0x0f,0xf0,0x10,0x00,0x48,0x70,0x00,0x1f,0x86, + 0x30,0x00,0x66,0x70,0x00,0x1f,0x80,0x07,0xf2,0x20,0x00,0x75,0x78,0x1c,0x1f,0xc1, + 0x87,0xf0,0x1f,0x50,0x00,0x02,0xde,0x00,0x07,0xc0,0x00,0x02,0x0f,0x01,0x06,0x60, + 0x00,0x56,0x00,0x00,0x00,0x01,0x7f,0x20,0x00,0x7a,0x60,0x00,0x00,0x00,0x00,0x01, + 0x5f,0x20,0x00,0x29,0x56,0xd7,0x10,0x00,0x3a,0x00,0x0a,0xbf,0x10,0x00,0x2a,0xaa, + 0xab,0x10,0x00,0x0b,0x20,0x00,0x3a,0x02,0xaa,0xd6,0x20,0x00,0x1a,0x15,0x60,0x00, + 0x3a,0x00,0xaa,0xb7,0x20,0x00,0x29,0x05,0x6d,0x10,0x00,0x2b,0x01,0x55,0x30,0x00, + 0x29,0x2a,0xbb,0x20,0x00,0x3a,0x00,0x95,0xae,0x10,0x00,0x16,0x56,0xd0,0x00,0x0f, + 0x00,0x01,0x0d,0x0c,0x20,0x00,0x07,0x02,0x00,0x50,0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I1_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 16, - .data_size = 408, + .data_size = 415, .data = test_I1_LZ4_align1_map, }; diff --git a/tests/test_images/stride_align1/LZ4/test_I2.bin b/tests/test_images/stride_align1/LZ4/test_I2.bin index 0883419a8..9ab13e0b2 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_I2.bin and b/tests/test_images/stride_align1/LZ4/test_I2.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_I2_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_I2_LZ4_align1.c index e5b4790e2..edb39e33e 100644 --- a/tests/test_images/stride_align1/LZ4/test_I2_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_I2_LZ4_align1.c @@ -20,54 +20,57 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I2_LZ4_align1_map[] = { - 0x02,0x00,0x00,0x00,0x52,0x02,0x00,0x00,0x90,0x07,0x00,0x00,0xfd,0x01,0x5a,0x00, - 0x3d,0xf4,0x23,0xaf,0xaf,0x08,0x60,0xff,0xf7,0xdf,0x37,0xff,0x18,0xff,0x01,0x00, - 0x29,0xfc,0x00,0x01,0x00,0x2b,0xd5,0x55,0x01,0x00,0x19,0x5c,0x1f,0x00,0x0f,0x20, - 0x00,0x0e,0x53,0xd4,0x00,0x02,0xaa,0xa9,0x43,0x00,0x5b,0x54,0x00,0x00,0x00,0x00, - 0x40,0x00,0x02,0x20,0x00,0xbf,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x55,0x55,0x55, - 0x54,0x20,0x00,0x02,0xbf,0x40,0x00,0x01,0x55,0x54,0x15,0x54,0x40,0x00,0x00,0x04, - 0x20,0x00,0x02,0xbf,0x00,0x00,0x00,0x55,0x50,0x05,0x54,0x45,0x55,0x55,0x44,0x20, - 0x00,0x01,0xbf,0x54,0x00,0x00,0x00,0x15,0x50,0x05,0x54,0x44,0x00,0x00,0x20,0x00, - 0x07,0x6f,0x54,0x15,0x54,0x44,0x55,0x54,0x20,0x00,0x02,0xbf,0x50,0x00,0x00,0x00, - 0x05,0x55,0x55,0x54,0x44,0x40,0x04,0x20,0x00,0x0b,0x2c,0x45,0x44,0x20,0x00,0x51, - 0xd6,0xaa,0xa8,0x00,0x01,0x40,0x00,0x5f,0x50,0x05,0x54,0x44,0x44,0x20,0x00,0x08, - 0x2f,0x40,0x01,0x40,0x00,0x0b,0x2f,0x00,0x00,0x80,0x00,0x01,0x06,0x60,0x00,0x2f, + 0x02,0x00,0x00,0x00,0x67,0x02,0x00,0x00,0x90,0x07,0x00,0x00,0xfd,0x01,0x5a,0x00, + 0x3d,0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff,0x01,0x00, + 0x29,0xfc,0x00,0x01,0x00,0x2b,0xea,0xaa,0x01,0x00,0x19,0xac,0x1f,0x00,0x0f,0x20, + 0x00,0x0e,0x53,0xe8,0x00,0x01,0x55,0x56,0x43,0x00,0x5b,0xa8,0x00,0x00,0x00,0x00, + 0x40,0x00,0x02,0x20,0x00,0xbf,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0xaa,0xaa,0xaa, + 0xa8,0x20,0x00,0x02,0xbf,0x80,0x00,0x02,0xaa,0xa8,0x2a,0xa8,0x80,0x00,0x00,0x08, + 0x20,0x00,0x02,0xbf,0x00,0x00,0x00,0xaa,0xa0,0x0a,0xa8,0x8a,0xaa,0xaa,0x88,0x20, + 0x00,0x01,0xbf,0xa8,0x00,0x00,0x00,0x2a,0xa0,0x0a,0xa8,0x88,0x00,0x00,0x20,0x00, + 0x07,0x6f,0xa8,0x2a,0xa8,0x88,0xaa,0xa8,0x20,0x00,0x02,0xbf,0xa0,0x00,0x00,0x00, + 0x0a,0xaa,0xaa,0xa8,0x88,0x80,0x08,0x20,0x00,0x0b,0x2c,0x8a,0x88,0x20,0x00,0x51, + 0xe9,0x55,0x54,0x00,0x02,0x40,0x00,0x5f,0xa0,0x0a,0xa8,0x88,0x88,0x20,0x00,0x08, + 0x2f,0x80,0x02,0x40,0x00,0x0b,0x2f,0x00,0x00,0x80,0x00,0x01,0x06,0x60,0x00,0x2f, 0x00,0x00,0xc0,0x00,0x01,0x01,0x20,0x00,0x01,0x00,0x01,0x2f,0x00,0x00,0x00,0x01, - 0x01,0x09,0x20,0x00,0x0f,0x40,0x01,0x00,0x01,0x20,0x00,0x7f,0x55,0x00,0x00,0x00, - 0x55,0x40,0x01,0x80,0x01,0x01,0x02,0x20,0x00,0x6f,0x40,0x00,0x01,0x55,0x50,0x05, + 0x01,0x09,0x20,0x00,0x0f,0x40,0x01,0x00,0x01,0x20,0x00,0x7f,0xaa,0x00,0x00,0x00, + 0xaa,0x80,0x02,0x80,0x01,0x01,0x02,0x20,0x00,0x6f,0x80,0x00,0x02,0xaa,0xa0,0x0a, 0xc0,0x01,0x01,0x02,0x20,0x02,0x03,0xe0,0x01,0x0f,0x00,0x02,0x00,0x02,0x20,0x00, - 0x07,0x02,0x00,0x0b,0xc0,0x01,0x0f,0x20,0x00,0x12,0x17,0x40,0x94,0x02,0x0c,0x40, - 0x00,0x37,0x50,0x00,0x05,0x5e,0x00,0x0e,0x60,0x00,0x3f,0x00,0x00,0x00,0x20,0x00, - 0x0d,0x18,0x15,0x21,0x00,0x0c,0x60,0x00,0x21,0x00,0x55,0xbc,0x02,0x05,0x02,0x00, - 0x0e,0x20,0x00,0x23,0x40,0x05,0x00,0x01,0x01,0x02,0x00,0x0c,0x20,0x00,0x81,0x01, - 0x55,0x40,0x05,0x55,0x50,0x00,0x01,0x1d,0x00,0x0f,0x20,0x00,0x00,0x6f,0x55,0x55, - 0x40,0x05,0x55,0x40,0x20,0x00,0x07,0x72,0x54,0x00,0x00,0x05,0x55,0x50,0x55,0xc5, - 0x00,0x3c,0x44,0x51,0x51,0x60,0x00,0x18,0x40,0x20,0x00,0x0f,0x60,0x00,0x00,0x02, - 0xdb,0x02,0x5f,0x40,0x00,0x55,0x55,0x50,0x20,0x00,0x01,0x31,0xd4,0x00,0x15,0xa0, - 0x00,0x23,0x00,0x55,0xe8,0x00,0x0b,0x60,0x00,0x22,0xd4,0x00,0xa0,0x00,0x5f,0x00, - 0x55,0x55,0x05,0x05,0x80,0x00,0x00,0x03,0x20,0x00,0x51,0x15,0x00,0x55,0x55,0x54, - 0x89,0x01,0x0d,0x40,0x00,0x92,0x14,0x00,0x05,0x55,0x40,0x55,0x00,0x55,0x55,0xa9, - 0x01,0x0b,0x20,0x00,0xbf,0xd5,0x00,0x00,0x00,0x01,0x55,0x40,0x04,0x00,0x55,0x54, - 0x60,0x00,0x02,0x21,0xd5,0x00,0x9c,0x02,0x5f,0x00,0x00,0x15,0x55,0x04,0x60,0x00, - 0x01,0xdf,0xd5,0x40,0x00,0x40,0x01,0x55,0x50,0x00,0x40,0x15,0x55,0x00,0x01,0xa0, - 0x00,0x00,0x0f,0x60,0x02,0x12,0x08,0x02,0x00,0x0b,0xa0,0x00,0x11,0xd7,0x41,0x05, - 0x8e,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x60,0x01,0x02,0x20,0x00,0x11,0xfb, - 0x20,0x00,0x3f,0x9a,0x66,0x66,0x40,0x00,0x04,0x11,0xee,0x20,0x00,0x2f,0xa6,0x66, - 0x40,0x00,0x0b,0x4f,0xaa,0x99,0x99,0x95,0x80,0x00,0x03,0x02,0x40,0x00,0x1f,0x66, - 0x40,0x00,0x0c,0x4f,0xa9,0x99,0x99,0x65,0x40,0x00,0x09,0x1f,0x9a,0x40,0x00,0x0f, - 0x0f,0x80,0x00,0x2a,0x1f,0xaa,0x80,0x00,0x0c,0x1f,0x99,0x40,0x01,0x0c,0x0f,0x00, - 0x01,0x2d,0x2e,0xaa,0x99,0x80,0x01,0x0f,0x00,0x02,0x2d,0x0f,0x40,0x00,0x0d,0x01, - 0x1f,0x02,0x08,0x02,0x00,0x06,0x60,0x07,0x50,0x00,0x00,0x00,0x00,0x00, + 0x07,0x02,0x00,0x0b,0xc0,0x01,0x0f,0x20,0x00,0x12,0x17,0x80,0x94,0x02,0x0c,0x40, + 0x00,0x37,0xa0,0x00,0x0a,0x5e,0x00,0x0e,0x60,0x00,0x3f,0x00,0x00,0x00,0x20,0x00, + 0x0d,0x18,0x2a,0x21,0x00,0x0c,0x60,0x00,0x21,0x00,0xaa,0xbc,0x02,0x05,0x02,0x00, + 0x0e,0x20,0x00,0x23,0x80,0x0a,0x00,0x01,0x01,0x02,0x00,0x0c,0x20,0x00,0x81,0x02, + 0xaa,0x80,0x0a,0xaa,0xa0,0x00,0x02,0x1d,0x00,0x0f,0x20,0x00,0x00,0x6f,0xaa,0xaa, + 0x80,0x0a,0xaa,0x80,0x20,0x00,0x07,0x72,0xa8,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0xc5, + 0x00,0x3c,0x88,0xa2,0xa2,0x60,0x00,0x18,0x80,0x20,0x00,0x0f,0x60,0x00,0x00,0x02, + 0xdb,0x02,0x5f,0x80,0x00,0xaa,0xaa,0xa0,0x20,0x00,0x01,0x31,0xe8,0x00,0x2a,0xa0, + 0x00,0x23,0x00,0xaa,0xe8,0x00,0x0b,0x60,0x00,0x11,0xe8,0xe0,0x00,0x7f,0x80,0x00, + 0x00,0xaa,0xaa,0x0a,0x0a,0x80,0x00,0x00,0x03,0x20,0x00,0x51,0x2a,0x00,0xaa,0xaa, + 0xa8,0x89,0x01,0x0d,0x40,0x00,0x92,0x28,0x00,0x0a,0xaa,0x80,0xaa,0x00,0xaa,0xaa, + 0xa9,0x01,0x0b,0x20,0x00,0xbf,0xea,0x00,0x00,0x00,0x02,0xaa,0x80,0x08,0x00,0xaa, + 0xa8,0x60,0x00,0x02,0x21,0xea,0x00,0x9c,0x02,0x5f,0x00,0x00,0x2a,0xaa,0x08,0x60, + 0x00,0x01,0xdf,0xea,0x80,0x00,0x80,0x02,0xaa,0xa0,0x00,0x80,0x2a,0xaa,0x00,0x02, + 0xa0,0x00,0x00,0x0f,0x60,0x02,0x12,0x08,0x02,0x00,0x0b,0xa0,0x00,0x11,0xeb,0x41, + 0x05,0x8e,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x60,0x01,0x02,0x20,0x00,0x11, + 0xdd,0x20,0x00,0x3f,0x65,0x99,0x99,0x40,0x00,0x0c,0x1f,0x6a,0x20,0x00,0x04,0x13, + 0xfd,0x40,0x00,0x2f,0xa6,0x6a,0x80,0x00,0x03,0x02,0x60,0x00,0x2f,0x59,0x9a,0x40, + 0x00,0x05,0x02,0xa0,0x00,0x1f,0x95,0x80,0x00,0x06,0x03,0x40,0x00,0x1f,0x99,0xc0, + 0x00,0x05,0x02,0x40,0x00,0x4f,0x56,0x66,0x99,0x9a,0x80,0x00,0x08,0x2f,0x56,0x65, + 0x40,0x00,0x0c,0x1f,0x59,0x80,0x00,0x0c,0x0f,0x40,0x01,0x07,0x02,0x80,0x00,0x2f, + 0x65,0x99,0x80,0x00,0x0a,0x0f,0xc0,0x00,0x11,0x0d,0x60,0x01,0x0f,0x00,0x02,0x2d, + 0x0f,0x40,0x00,0x0d,0x01,0x1f,0x02,0x08,0x02,0x00,0x06,0x60,0x07,0x50,0x00,0x00, + 0x00,0x00,0x00, }; const lv_img_dsc_t test_I2_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 32, - .data_size = 606, + .data_size = 627, .data = test_I2_LZ4_align1_map, }; diff --git a/tests/test_images/stride_align1/LZ4/test_I4.bin b/tests/test_images/stride_align1/LZ4/test_I4.bin index 8023886d5..88e2e4ff6 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_I4.bin and b/tests/test_images/stride_align1/LZ4/test_I4.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_I4_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_I4_LZ4_align1.c index 865ded013..0009bd14e 100644 --- a/tests/test_images/stride_align1/LZ4/test_I4_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_I4_LZ4_align1.c @@ -20,87 +20,85 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I4_LZ4_align1_map[] = { - 0x02,0x00,0x00,0x00,0x64,0x04,0x00,0x00,0x80,0x0b,0x00,0x00,0xff,0x32,0x4c,0x70, - 0x47,0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0xfc,0x00,0xff,0xf7,0xf4,0x00,0xff, - 0xff,0x65,0x00,0xff,0xff,0xa9,0x41,0xa5,0xa5,0x30,0x00,0x00,0x00,0x75,0x00,0x00, - 0x00,0xc2,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xff,0xff,0xff,0xff,0x00,0xff, - 0x88,0xff,0xcc,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x01, + 0x02,0x00,0x00,0x00,0x31,0x04,0x00,0x00,0x80,0x0b,0x00,0x00,0xff,0x32,0x4c,0x70, + 0x47,0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc,0x3e,0x8f, + 0x8f,0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60,0x00,0xff, + 0xff,0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff,0xff,0xff, + 0xff,0xff,0x00,0xff,0x7f,0xff,0x77,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x01, 0x00,0x0f,0x27,0xa0,0x00,0x01,0x00,0x09,0x0d,0x00,0x0f,0x02,0x00,0x03,0x09,0x23, 0x00,0x09,0x0d,0x00,0x0f,0x02,0x00,0x03,0x09,0x23,0x00,0xab,0xa0,0x01,0x11,0x11, - 0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x2d,0x00,0x11,0x0f,0xbf,0x00,0x3f,0xff,0xff,0xff, - 0x30,0x00,0x08,0x44,0x69,0x22,0x22,0x96,0x37,0x00,0x13,0x0f,0x09,0x00,0x1f,0x0f, + 0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x2d,0x00,0x11,0x0f,0xbb,0x00,0x3f,0xff,0xff,0xff, + 0x30,0x00,0x08,0x44,0x49,0x22,0x22,0x94,0x37,0x00,0x13,0x0f,0x09,0x00,0x1f,0x0f, 0x30,0x00,0x07,0xe3,0x09,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x00,0x92,0x29,0x00, 0x00,0x0f,0x61,0x00,0x0f,0x30,0x00,0x08,0xe2,0x92,0x22,0x22,0x22,0x22,0x29,0x00, 0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x61,0x00,0x1f,0x0f,0x30,0x00,0x07,0x01,0x5f, - 0x00,0x01,0x61,0x00,0x02,0x30,0x00,0x01,0x61,0x00,0x0f,0x30,0x00,0x08,0x21,0x62, - 0x22,0x01,0x00,0x14,0x26,0x90,0x00,0x5f,0x0f,0x00,0x00,0x00,0x0f,0x30,0x00,0x08, + 0x00,0x01,0x61,0x00,0x02,0x30,0x00,0x01,0x61,0x00,0x0f,0x30,0x00,0x08,0x21,0x42, + 0x22,0x01,0x00,0x14,0x24,0x90,0x00,0x5f,0x0f,0x00,0x00,0x00,0x0f,0x30,0x00,0x08, 0x01,0x8f,0x00,0x02,0x91,0x00,0x02,0x2a,0x00,0x3f,0x0f,0xff,0xff,0x30,0x00,0x09, 0x01,0x5e,0x00,0x31,0x22,0x22,0x22,0x2f,0x00,0x52,0x00,0x0f,0x0f,0x0f,0x0f,0x05, - 0x00,0x0a,0x50,0x01,0xa1,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x2d, - 0x00,0x81,0x22,0x22,0x22,0x00,0x06,0x92,0x29,0x60,0x2b,0x00,0x01,0x02,0x00,0x0b, - 0x50,0x01,0x0f,0x30,0x00,0x00,0x41,0x62,0x22,0x22,0x26,0x30,0x00,0x02,0x05,0x00, + 0x00,0x0a,0x50,0x01,0xa1,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x2d, + 0x00,0x81,0x22,0x22,0x22,0x00,0x04,0x92,0x29,0x40,0x2b,0x00,0x01,0x02,0x00,0x0b, + 0x50,0x01,0x0f,0x30,0x00,0x00,0x41,0x42,0x22,0x22,0x24,0x30,0x00,0x02,0x05,0x00, 0x0f,0x60,0x00,0x0e,0x41,0x92,0x22,0x22,0x29,0x2b,0x00,0x0f,0xc0,0x00,0x01,0x06, 0x60,0x00,0x05,0xf0,0x00,0x41,0x22,0x22,0x22,0x22,0x1a,0x01,0x0f,0x20,0x01,0x01, 0x06,0x30,0x00,0x05,0x50,0x01,0x04,0x30,0x00,0x0f,0x80,0x01,0x02,0x06,0x30,0x00, 0x05,0xb0,0x01,0x03,0x90,0x00,0x01,0x28,0x01,0x0f,0xf0,0x00,0x08,0x02,0x91,0x00, - 0x24,0x29,0x00,0xf0,0x00,0x01,0x9e,0x02,0x1f,0xff,0xf0,0x00,0x07,0x23,0x00,0x69, + 0x24,0x29,0x00,0xf0,0x00,0x01,0x9e,0x02,0x1f,0xff,0xf0,0x00,0x07,0x23,0x00,0x49, 0x0f,0x02,0x02,0x50,0x01,0x01,0x5f,0x00,0x0e,0xa0,0x02,0x03,0x17,0x00,0x01,0x02, 0x00,0x09,0xd0,0x02,0x02,0x5f,0x00,0x0d,0x00,0x03,0x01,0x29,0x00,0x0f,0x02,0x00, - 0x0a,0x0a,0x80,0x01,0x0f,0x2b,0x00,0x0a,0x01,0x02,0x00,0x0d,0x30,0x00,0x8f,0x06, - 0x66,0x00,0x00,0x00,0x00,0x01,0x11,0x01,0x00,0x03,0x0a,0x53,0x00,0x81,0xa0,0x00, - 0x06,0x78,0x11,0x11,0x18,0x70,0x4a,0x00,0x0f,0x02,0x00,0x03,0x0b,0x60,0x00,0x6f, - 0x81,0x11,0x11,0x11,0x11,0x18,0x2b,0x00,0x03,0x01,0x02,0x00,0x0b,0x30,0x00,0x02, - 0x86,0x00,0x11,0x80,0x1b,0x00,0x0f,0x02,0x00,0x02,0x0d,0x30,0x00,0x5f,0x60,0x06, - 0x81,0x11,0x16,0x2b,0x00,0x02,0x01,0x02,0x00,0x0b,0x30,0x00,0xf1,0x00,0x81,0x18, - 0x00,0x00,0x71,0x11,0x17,0x00,0x00,0x00,0x00,0x07,0x88,0x18,0x86,0x23,0x00,0x09, - 0x02,0x00,0x0b,0x30,0x00,0x51,0x88,0x87,0x00,0x00,0x01,0x30,0x00,0x5e,0x07,0x11, - 0x11,0x11,0x11,0xfa,0x00,0x0b,0x30,0x00,0x02,0x4c,0x01,0x8f,0x17,0x00,0x00,0x00, - 0x07,0x11,0x17,0x78,0x99,0x00,0x00,0x02,0x23,0x00,0x03,0x02,0x00,0x73,0xa0,0x00, - 0x00,0x78,0x11,0x11,0x11,0x60,0x00,0x21,0x60,0x00,0x09,0x00,0x03,0x02,0x00,0x6c, - 0x01,0x01,0x00,0x10,0x00,0x10,0x80,0x01,0x24,0x68,0x11,0x30,0x00,0x5e,0x06,0x88, - 0x00,0x00,0x81,0x5a,0x01,0x0b,0x60,0x00,0x53,0x11,0x11,0x11,0x88,0x81,0x57,0x00, - 0x22,0x77,0x77,0x8a,0x01,0x33,0x07,0x77,0x60,0x64,0x00,0x0d,0x30,0x00,0x43,0x07, - 0x11,0x11,0x70,0xf0,0x00,0x24,0x00,0x71,0xba,0x01,0x18,0x11,0xc7,0x00,0x0a,0x60, - 0x00,0x36,0x08,0x11,0x18,0x20,0x01,0x13,0x18,0x60,0x00,0x3f,0x17,0x07,0x18,0xc0, - 0x00,0x05,0x01,0x30,0x00,0x11,0x61,0x90,0x00,0x33,0x01,0x11,0x70,0xc0,0x00,0x27, - 0x67,0x77,0xc7,0x00,0x0c,0x60,0x00,0x32,0x11,0x70,0x67,0x20,0x01,0x15,0x61,0x30, - 0x00,0x2f,0x81,0x88,0x30,0x00,0x06,0x01,0xa5,0x01,0x31,0x11,0x11,0x11,0xb6,0x01, - 0xaf,0x87,0x78,0x11,0x18,0x60,0x00,0x00,0x07,0x18,0x06,0x90,0x00,0x06,0x61,0x00, - 0x81,0x11,0x11,0x11,0x88,0x61,0x00,0x02,0x3b,0x00,0x76,0x10,0x00,0x00,0x07,0x18, - 0x78,0x18,0x21,0x01,0x0a,0x90,0x00,0x61,0x00,0x07,0x11,0x11,0x17,0x07,0x30,0x00, - 0xef,0x00,0x71,0x11,0x17,0x71,0x11,0x10,0x00,0x00,0x00,0x81,0x17,0x11,0x80,0xf0, - 0x00,0x04,0x41,0x00,0x00,0x06,0x76,0x67,0x01,0x41,0x00,0x00,0x00,0x00,0x69,0x03, - 0x0c,0x02,0x00,0x0b,0x60,0x00,0x0c,0x1f,0x00,0x0d,0x02,0x00,0x09,0x23,0x00,0xfd, - 0x11,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0xc3, - 0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x46,0x46,0x66, - 0x60,0xe0,0x01,0xe9,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa,0xaa,0xca,0xca,0xcc, - 0xcc,0x3c,0x30,0x00,0x4f,0x44,0x64,0x66,0x06,0x30,0x00,0x00,0x51,0xde,0xee,0xee, - 0xee,0xae,0x60,0x00,0x11,0xc3,0x60,0x00,0xef,0x35,0x35,0x35,0x55,0x55,0x45,0x45, - 0x44,0x44,0x64,0x66,0x40,0x60,0x60,0x90,0x00,0x00,0x0c,0x60,0x00,0x22,0x53,0x53, - 0x90,0x00,0x0f,0x60,0x00,0x04,0x07,0xc0,0x00,0x0a,0x90,0x00,0x3f,0x64,0x64,0x04, - 0x90,0x00,0x01,0x21,0xdd,0xed,0x90,0x00,0x24,0xca,0xca,0xf0,0x00,0x61,0x53,0x55, - 0x55,0x54,0x55,0x45,0x60,0x00,0x0f,0xf0,0x00,0x02,0x11,0xee,0xf0,0x00,0x05,0xc0, - 0x00,0xcf,0x33,0x35,0x35,0x35,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x60,0x00, - 0x02,0x11,0xdd,0x50,0x01,0x05,0x20,0x01,0x02,0xf0,0x00,0x6f,0x55,0x44,0x44,0x46, - 0x46,0x46,0x30,0x00,0x01,0x15,0xde,0x60,0x00,0x08,0x50,0x01,0x02,0x60,0x00,0x0f, - 0x90,0x00,0x02,0x33,0xdd,0xee,0xee,0x80,0x01,0x01,0x50,0x01,0x01,0xb0,0x01,0x01, - 0xc0,0x00,0x2f,0x46,0x64,0x50,0x01,0x02,0x01,0x2f,0x00,0x06,0xc0,0x00,0x32,0x35, - 0x35,0x53,0x2f,0x00,0x4f,0x64,0x64,0x06,0x00,0xb0,0x01,0x00,0x07,0x20,0x01,0x02, - 0x50,0x01,0x13,0x53,0x60,0x00,0x4f,0x46,0x46,0x46,0x66,0x30,0x00,0x01,0x0d,0xc0, - 0x00,0x02,0x2f,0x00,0x5f,0x44,0x64,0x64,0x06,0x00,0xe0,0x01,0x01,0x11,0xde,0x20, - 0x01,0x24,0xaa,0xac,0xc0,0x00,0x04,0x31,0x00,0x3e,0x46,0x46,0x66,0x60,0x00,0x0d, - 0xbf,0x02,0x0d,0x02,0x00,0x0a,0xd0,0x02,0x0d,0x1f,0x00,0x0d,0x02,0x00,0x0f,0x30, - 0x00,0x2a,0x0f,0x0f,0x0b,0x0f,0x14,0xaa,0x60,0x00,0x50,0x00,0x00,0x00,0x00,0x00, + 0x0a,0x0a,0x80,0x01,0x0f,0x2b,0x00,0x0a,0x01,0x02,0x00,0x0d,0x30,0x00,0x8f,0x04, + 0x44,0x00,0x00,0x00,0x00,0x01,0x11,0x01,0x00,0x03,0x0a,0x53,0x00,0x81,0xa0,0x00, + 0x04,0x61,0x11,0x11,0x16,0x60,0x4a,0x00,0x0f,0x02,0x00,0x03,0x0b,0x60,0x00,0x6f, + 0x61,0x11,0x11,0x11,0x11,0x16,0x2b,0x00,0x03,0x01,0x02,0x00,0x0b,0x30,0x00,0x02, + 0x86,0x00,0x0f,0x61,0x00,0x08,0x0d,0x30,0x00,0x51,0x40,0x04,0x11,0x11,0x14,0x4b, + 0x00,0x0f,0x02,0x00,0x02,0x0c,0x30,0x00,0x42,0x16,0x00,0x00,0x41,0x91,0x00,0x4e, + 0x06,0x61,0x11,0x64,0x33,0x00,0x0b,0x30,0x00,0x51,0x61,0x16,0x00,0x00,0x01,0x30, + 0x00,0x1f,0x04,0x99,0x00,0x03,0x0b,0x30,0x00,0x02,0x4c,0x01,0x8f,0x16,0x00,0x00, + 0x00,0x06,0x11,0x16,0x61,0x99,0x00,0x00,0x02,0x23,0x00,0x03,0x02,0x00,0x44,0xa0, + 0x00,0x00,0x46,0x21,0x01,0x31,0x06,0x11,0x40,0x9e,0x00,0x04,0x02,0x00,0x6c,0x01, + 0x01,0x00,0x10,0x00,0x10,0x80,0x01,0x02,0xa8,0x01,0x79,0x16,0x00,0x00,0x00,0x04, + 0x66,0x00,0x30,0x00,0x03,0x02,0x00,0x0b,0x60,0x00,0x51,0x11,0x11,0x11,0x66,0x61, + 0xc0,0x00,0x42,0x00,0x00,0x66,0x66,0x09,0x00,0x33,0x06,0x66,0x40,0x2d,0x00,0x0d, + 0x30,0x00,0x43,0x06,0x11,0x11,0x60,0xf0,0x00,0x24,0x00,0x61,0xba,0x01,0x09,0x60, + 0x01,0x0a,0x60,0x00,0x34,0x06,0x11,0x11,0x20,0x01,0x33,0x06,0x11,0x16,0x60,0x00, + 0x3f,0x16,0x06,0x16,0xc0,0x00,0x05,0x01,0x1b,0x01,0x02,0x80,0x01,0x51,0x01,0x11, + 0x60,0x00,0x61,0x1a,0x02,0x31,0x44,0x66,0x11,0x8b,0x00,0x01,0x02,0x00,0x0d,0x60, + 0x00,0x22,0x60,0x46,0xf0,0x00,0x15,0x41,0x20,0x01,0x2f,0x11,0x11,0x30,0x00,0x09, + 0x01,0x02,0x00,0xff,0x01,0x14,0x00,0x00,0x01,0x11,0x14,0x61,0x11,0x11,0x40,0x00, + 0x00,0x06,0x16,0x04,0x11,0x90,0x00,0x05,0x01,0xe5,0x00,0x11,0x61,0x61,0x00,0x11, + 0x06,0x39,0x00,0x76,0x10,0x00,0x00,0x06,0x11,0x66,0x11,0x21,0x01,0x0a,0x90,0x00, + 0x61,0x00,0x06,0x11,0x11,0x16,0x06,0x30,0x00,0xef,0x00,0x61,0x11,0x14,0x61,0x11, + 0x10,0x00,0x00,0x00,0x61,0x16,0x11,0x60,0xf0,0x00,0x04,0x04,0x5f,0x03,0x01,0x02, + 0x00,0x01,0x69,0x03,0x41,0x00,0x00,0x00,0x04,0x06,0x00,0x03,0x02,0x00,0x0b,0x60, + 0x00,0x03,0x16,0x00,0x0f,0x02,0x00,0x07,0x09,0x23,0x00,0xfd,0x11,0xa0,0x0b,0xbb, + 0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x33, + 0x38,0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x44,0x44,0x04,0xe0,0x01,0xff, + 0x10,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0x3d,0x33, + 0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40, + 0x30,0x00,0x00,0x21,0xbb,0xee,0x30,0x00,0x53,0xda,0xdd,0xdd,0xd3,0xd3,0x60,0x00, + 0x9f,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x60,0x00,0x0c,0x01,0x30,0x00, + 0x11,0x83,0x90,0x00,0x2f,0x75,0x77,0x60,0x00,0x08,0x21,0xee,0xaa,0x90,0x00,0x11, + 0xd3,0x90,0x00,0x02,0x60,0x00,0x1f,0x57,0x60,0x00,0x09,0x22,0xae,0xae,0xf0,0x00, + 0x04,0x60,0x00,0x0f,0xc0,0x00,0x0d,0x62,0xee,0xaa,0xaa,0xaa,0xda,0xda,0x2f,0x00, + 0x03,0x20,0x01,0x0f,0xc0,0x00,0x0e,0x23,0xaa,0xdd,0x51,0x01,0x02,0x20,0x01,0x0f, + 0xc0,0x00,0x0a,0x04,0x20,0x01,0x04,0x80,0x01,0x0f,0xc0,0x00,0x0d,0x03,0xf0,0x00, + 0x05,0x60,0x00,0x1f,0x85,0x80,0x01,0x10,0x13,0xaa,0xef,0x00,0x03,0x20,0x01,0x0f, + 0xc0,0x00,0x0a,0x0c,0x60,0x00,0x02,0xb0,0x01,0x0f,0xe0,0x01,0x0f,0x04,0xc0,0x00, + 0x03,0x40,0x02,0x0f,0xe0,0x01,0x03,0x12,0xbb,0x60,0x00,0x24,0xaa,0xdd,0x91,0x00, + 0x01,0x60,0x00,0x01,0x40,0x02,0x1e,0x44,0x40,0x02,0x0f,0xc8,0x02,0x07,0x04,0x02, + 0x00,0x0a,0xd0,0x02,0x04,0x16,0x00,0x0f,0x02,0x00,0x07,0x0f,0x30,0x00,0x2a,0x0f, + 0x0f,0x0b,0x0f,0x14,0xaa,0x60,0x00,0x50,0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I4_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 48, - .data_size = 1136, + .data_size = 1085, .data = test_I4_LZ4_align1_map, }; diff --git a/tests/test_images/stride_align1/LZ4/test_I8.bin b/tests/test_images/stride_align1/LZ4/test_I8.bin index 4d92c2c4f..489e86159 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_I8.bin and b/tests/test_images/stride_align1/LZ4/test_I8.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_I8_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_I8_LZ4_align1.c index b2cf5466d..e4e29eaad 100644 --- a/tests/test_images/stride_align1/LZ4/test_I8_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_I8_LZ4_align1.c @@ -20,175 +20,176 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I8_LZ4_align1_map[] = { - 0x02,0x00,0x00,0x00,0xdd,0x09,0x00,0x00,0xc0,0x16,0x00,0x00,0xf2,0xff,0xff,0xff, - 0x61,0x4c,0x70,0x47,0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff, - 0x58,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xb6,0x00,0xff,0xff, + 0x02,0x00,0x00,0x00,0xd7,0x09,0x00,0x00,0xc0,0x16,0x00,0x00,0xf1,0xff,0xff,0xff, + 0x11,0x4c,0x70,0x47,0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff, + 0x58,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff, 0x1c,0x00,0xff,0xff,0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff, 0xd0,0x00,0xff,0xff,0x94,0x00,0xff,0xff,0x13,0x00,0xff,0xff,0x3e,0x00,0xff,0xff, 0xc7,0x00,0xff,0xff,0x72,0x00,0xff,0xff,0x47,0x00,0xff,0xff,0x0b,0x00,0xff,0xff, 0x4f,0x00,0xff,0xff,0xfb,0x00,0xff,0xff,0x83,0x00,0xff,0xff,0xbf,0x00,0xff,0xff, 0x36,0x00,0xff,0xff,0xae,0x00,0xff,0xff,0x9d,0x00,0xff,0xff,0x60,0x00,0xff,0xff, - 0x24,0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0xff,0x00,0x00,0x93,0x00,0xff,0xff, - 0x8b,0x00,0x00,0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00, + 0x24,0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0x00,0xff,0xff,0x8b,0xff,0x00,0x00, + 0x93,0x00,0x00,0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00, 0xd6,0xff,0x00,0x00,0x96,0xff,0x00,0x00,0xf9,0xff,0x00,0x00,0x40,0xff,0x00,0x00, 0xac,0xff,0x00,0x00,0xf2,0x00,0xff,0xff,0xd8,0x00,0xff,0xff,0xd9,0x00,0xff,0xff, 0x25,0x00,0xff,0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00, - 0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00,0x00, - 0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xde,0x00,0x00,0x00,0x14,0x00,0x00,0x00, - 0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00,0x00, - 0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x0a,0x00,0xff,0xff, - 0x50,0xff,0x00,0x00,0xa7,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xd3,0x00,0x00,0x00, - 0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xfa,0x00,0x00,0x00, - 0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf7,0x00,0x00,0x00,0xd0,0x00,0xff,0xff, - 0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x95,0x00,0x00,0x00, - 0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00, - 0x08,0x00,0x00,0x00,0xc5,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00,0x00,0x00, - 0x0d,0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0xe1,0x00,0x00,0x00, - 0xfc,0x00,0x00,0x00,0xf9,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00, - 0x2a,0x00,0x00,0x00,0x6f,0x00,0xff,0xff,0x3f,0x00,0x00,0x00,0x34,0x00,0x00,0x00, - 0x3c,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0xa9,0x00,0x00,0x00, - 0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xe7,0x00,0x00,0x00, + 0xfa,0x00,0x00,0x00,0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff, + 0xad,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xdf,0x00,0x00,0x00, + 0x14,0x00,0x00,0x00,0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00, + 0xd4,0x00,0x00,0x00,0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff, + 0x50,0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xa7,0xff,0x00,0x00, + 0xd3,0x00,0x00,0x00,0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00, + 0xc5,0x00,0x00,0x00,0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x00, + 0xd0,0x00,0xff,0xff,0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0x3b,0x00,0x00,0x00, + 0xdd,0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00, + 0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00, + 0x8c,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0xb5,0x00,0x00,0x00,0xe1,0x00,0x00,0x00, + 0xfc,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x6f,0x00,0x00,0x00, + 0x2a,0x00,0xff,0xff,0x3f,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0xa9,0x00,0x00,0x00, + 0x0c,0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00, + 0x43,0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x52,0x00,0x00,0x00,0x89,0x00,0x00,0x00, 0x5c,0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00, - 0x7a,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x9d,0x00,0x00,0x00, - 0x55,0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00, - 0xe0,0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00, - 0x0e,0x00,0x00,0x00,0x89,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x92,0x00,0x00,0x00, - 0xc4,0x00,0xff,0xff,0x03,0x00,0x00,0x00,0x28,0x00,0xff,0xff,0xf3,0x00,0xff,0xff, - 0x57,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0x4e,0x00,0x00,0x00,0x72,0x00,0x00,0x00, - 0x4c,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0x44,0x00,0x00,0x00, - 0xc8,0x00,0x00,0x00,0xb2,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca,0x00,0x00,0x00, - 0x52,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x53,0x00,0x00,0x00,0x97,0x00,0x00,0x00, - 0x76,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x88,0x00,0x00,0x00, - 0x58,0x00,0x00,0x00,0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00, + 0x26,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x40,0x00,0x00,0x00, + 0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0,0x00,0x00,0x00, + 0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e,0x00,0xff,0xff,0x93,0x00,0x00,0x00, + 0x33,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x92,0x00,0xff,0xff,0x57,0x00,0xff,0xff, + 0xf3,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0xf6,0x00,0x00,0x00, + 0x4e,0x00,0x00,0x00,0x4c,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x18,0x00,0x00,0x00, + 0xc8,0x00,0x00,0x00,0x35,0x00,0x00,0x00,0xb3,0x00,0x00,0x00,0xe9,0x00,0x00,0x00, + 0xca,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x7b,0x00,0x00,0x00,0x97,0x00,0x00,0x00, + 0xda,0x00,0x00,0x00,0x76,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x55,0x00,0x00,0x00, + 0x7a,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x56,0x00,0x00,0x00,0x58,0x00,0x00,0x00, + 0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xd9,0x00,0x00,0x00, 0xcc,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff, 0xff,0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xc3,0xff,0x00,0xff,0x00,0xff,0x87, 0xff,0x00,0xff,0x0f,0xff,0x02,0xff,0x00,0xff,0x00,0xff,0xee,0xff,0x5c,0xff,0x00, 0xff,0x4b,0xff,0x00,0xff,0x00,0xff,0x98,0xff,0x00,0xff,0x76,0xff,0x00,0xff,0x20, - 0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0x00,0xff,0x54,0xff,0xb2,0xff,0x00, + 0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0xb2,0xff,0x00,0xff,0x00,0xff,0x54, 0xff,0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff,0xdd, 0xff,0x00,0xff,0x31,0xff,0x00,0xff,0xcc,0xff,0xe5,0xff,0x00,0xff,0xa1,0xff,0x00, - 0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x6d,0xff,0x00,0xff,0x90,0xff,0x00, - 0xff,0x8f,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x24,0xff,0x00, - 0xff,0x00,0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00, - 0xff,0xf6,0xff,0x00,0xff,0xf7,0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x14,0xff,0x00, - 0xff,0x00,0xff,0xcb,0xff,0x35,0xff,0x00,0xff,0x00,0xff,0xdc,0xff,0x00,0xff,0x43, - 0xff,0xe6,0xff,0x00,0xff,0xb1,0xff,0x00,0xff,0x00,0xff,0x53,0xff,0x17,0xff,0x00, - 0xff,0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x00,0xff,0x21, - 0xff,0x00,0xff,0x99,0xff,0x5d,0xff,0x00,0xff,0x47,0xff,0x00,0xff,0x28,0xff,0x00, - 0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xeb,0x00, - 0x0f,0x0c,0x00,0x7a,0x1f,0x9d,0x01,0x00,0x33,0x14,0x00,0x01,0x00,0x14,0x9d,0x09, - 0x00,0x0f,0x02,0x00,0x2a,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02,0x00,0x29,0x06, - 0x46,0x00,0x43,0x9d,0x00,0x00,0x9c,0x01,0x00,0x13,0x9f,0x01,0x00,0x0f,0x59,0x00, - 0x0d,0x1c,0xa0,0x01,0x00,0x01,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x07,0x83, - 0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x29,0x00,0x06,0x02,0x00,0x16,0xa0,0x0b, - 0x00,0x01,0x02,0x00,0x11,0xa0,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x05,0x33, - 0x1d,0x1e,0x9e,0x01,0x00,0x22,0x1e,0x1d,0x2b,0x00,0x41,0x45,0x21,0x21,0x45,0x0a, - 0x00,0x29,0xa0,0x00,0xa1,0x00,0x0f,0x50,0x00,0x12,0x23,0x1d,0x40,0x4e,0x00,0x42, - 0x9e,0x9e,0x9e,0x40,0x51,0x00,0x44,0x21,0x9e,0x9e,0x21,0x50,0x00,0x01,0x08,0x00, - 0x02,0x02,0x00,0x0f,0x50,0x00,0x13,0x05,0x9e,0x00,0x51,0x9e,0x9e,0x9e,0x9e,0x1e, - 0x3a,0x00,0x09,0x50,0x00,0x05,0xa2,0x00,0x0f,0x50,0x00,0x13,0x12,0x22,0x49,0x00, - 0x04,0x02,0x00,0x01,0x44,0x01,0x08,0xf0,0x00,0x05,0xa2,0x00,0x03,0x0c,0x00,0x0f, - 0xe0,0x01,0x0d,0x14,0x24,0x4a,0x00,0x02,0x02,0x00,0x11,0x24,0xa1,0x00,0x04,0x02, - 0x00,0x02,0x44,0x00,0x01,0xa2,0x00,0x01,0x4e,0x00,0x0f,0x40,0x01,0x10,0x12,0x23, - 0x48,0x00,0x04,0x02,0x00,0x14,0x23,0x4b,0x00,0x01,0x02,0x00,0x03,0x50,0x00,0x08, - 0x0a,0x00,0x09,0xa0,0x00,0x03,0x77,0x02,0x13,0x9f,0x87,0x02,0x54,0x9c,0x00,0x00, - 0x00,0x25,0x4a,0x00,0x02,0x02,0x00,0xb7,0x25,0x00,0x00,0x00,0x26,0x27,0x28,0x28, - 0x27,0x26,0x00,0x46,0x00,0x06,0x02,0x00,0x01,0xeb,0x05,0x02,0x02,0x00,0x0f,0x50, - 0x00,0x15,0x87,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x50,0x00,0x0f,0xa0,0x00, - 0x18,0x0e,0xf0,0x00,0x12,0x27,0xaa,0x00,0x16,0x27,0x50,0x00,0x0f,0x40,0x01,0x06, - 0x0f,0xf0,0x00,0x00,0x0e,0x90,0x01,0x12,0x28,0x50,0x00,0x15,0x28,0x50,0x00,0x02, - 0xdf,0x00,0x02,0xf4,0x00,0x0f,0xf0,0x00,0x0e,0x0e,0x30,0x02,0x0c,0x50,0x00,0x01, - 0xdf,0x01,0x04,0xa2,0x00,0x0f,0x50,0x00,0x0e,0x0e,0xd0,0x02,0x0b,0xf0,0x00,0x02, - 0x9e,0x00,0x04,0x9e,0x01,0x0f,0x50,0x00,0x0f,0x0d,0x70,0x03,0x0a,0x90,0x01,0x01, - 0x9b,0x00,0x03,0x02,0x00,0x0d,0x70,0x03,0x0f,0x40,0x01,0x00,0x0f,0x10,0x04,0x00, - 0x08,0x30,0x02,0x02,0x9a,0x00,0x04,0x02,0x00,0x0c,0xa0,0x00,0x0f,0x02,0x00,0x04, - 0x0f,0xb0,0x04,0x07,0x03,0x99,0x00,0x05,0x02,0x00,0x01,0x76,0x02,0x03,0x02,0x00, - 0x06,0xda,0x02,0x0f,0x02,0x00,0x29,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02,0x00, - 0x29,0x06,0x46,0x00,0x04,0x0a,0x00,0x54,0x2f,0x81,0x62,0x70,0x53,0x53,0x00,0x04, - 0x7a,0x03,0x0f,0x02,0x00,0x14,0x06,0x46,0x00,0x03,0x0a,0x00,0xb4,0x62,0x4e,0x35, - 0x9c,0x9c,0x9c,0x9c,0x46,0x7f,0x6b,0x4f,0x53,0x00,0x0f,0x02,0x00,0x1b,0x04,0x96, - 0x00,0x02,0x0a,0x00,0x16,0x8c,0x88,0x00,0x2f,0x3b,0x43,0x49,0x00,0x1b,0x03,0x02, - 0x00,0x0a,0x50,0x00,0x71,0x8d,0x9c,0x9c,0x9c,0x9c,0x55,0x46,0x56,0x00,0x13,0x66, - 0x22,0x00,0x0f,0x02,0x00,0x1b,0x0a,0x50,0x00,0x81,0x50,0x9c,0x9c,0x50,0x75,0x53, - 0x34,0x63,0xf5,0x00,0x1f,0x5f,0x4a,0x00,0x1b,0x02,0x02,0x00,0x0a,0x50,0x00,0xe2, - 0x5a,0x9c,0x9c,0x38,0x00,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x60,0x22,0x00, - 0xa4,0x00,0x00,0x36,0x93,0x3b,0x35,0x50,0x3a,0x72,0x51,0x10,0x00,0x0f,0x02,0x00, - 0x09,0x0a,0x50,0x00,0xe3,0x74,0x4d,0x4d,0x37,0x00,0x00,0x00,0x00,0x53,0x9c,0x9c, - 0x9c,0x9c,0x7c,0x38,0x00,0x21,0x91,0x49,0x00,0x01,0x33,0x9c,0x55,0x6f,0x11,0x00, - 0x0f,0x02,0x00,0x09,0x0a,0x50,0x00,0x02,0x02,0x00,0x82,0x7b,0x36,0x36,0x9c,0x9c, - 0x9c,0x9c,0x20,0x0e,0x00,0xbf,0x00,0x37,0x9c,0x9c,0x77,0x56,0x3c,0x78,0x9c,0x9c, - 0x9c,0xa2,0x00,0x10,0x0b,0x50,0x00,0x42,0x4f,0x8f,0x38,0x6e,0x8f,0x01,0x06,0x50, - 0x00,0xb3,0x95,0x9c,0x9c,0x59,0x00,0x00,0x2f,0x52,0x9c,0x9c,0x56,0x62,0x00,0x0a, - 0x02,0x00,0x72,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x04,0x00,0x0a,0x50,0x00,0x22, - 0x6d,0x8e,0xdb,0x00,0x01,0x02,0x00,0x04,0xa0,0x00,0x8f,0x59,0x38,0x38,0x2f,0x00, - 0x00,0x00,0x54,0xf3,0x01,0x12,0x09,0x50,0x00,0x11,0x57,0xd8,0x01,0x48,0x6a,0x47, - 0x67,0x67,0xa0,0x00,0xb4,0x00,0x00,0x2f,0x73,0x6f,0x56,0x20,0x50,0x9c,0x9c,0x33, - 0x99,0x00,0x54,0x36,0x98,0x7a,0x37,0x68,0x0d,0x00,0x09,0x02,0x00,0x09,0x50,0x00, - 0x73,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x34,0x68,0x03,0x04,0xa0,0x00,0x23,0x4f,0x94, - 0x91,0x01,0x05,0x50,0x00,0x79,0x2f,0x49,0x55,0x5a,0x5b,0x5c,0x59,0x49,0x00,0x03, - 0x02,0x00,0x09,0x50,0x00,0x51,0x3b,0x9c,0x9c,0x9c,0x3a,0x19,0x00,0x08,0xa0,0x00, - 0x86,0x3c,0x9c,0x9c,0x9c,0x3b,0x76,0x96,0x6e,0xa0,0x00,0x71,0x2f,0x9c,0x7a,0x00, - 0x99,0x9c,0x58,0x2a,0x00,0x0f,0x40,0x01,0x09,0xa7,0x4a,0x9c,0x9c,0x9c,0x8b,0x00, - 0x00,0x00,0x00,0x5f,0x50,0x00,0x96,0x34,0x52,0x9c,0x9c,0x76,0x00,0x00,0x00,0x47, - 0x50,0x00,0x73,0x34,0x9a,0x75,0x5d,0x3c,0x9c,0x4a,0x50,0x00,0x09,0x02,0x00,0x09, - 0xa0,0x00,0x11,0x58,0xc7,0x02,0x92,0x88,0x68,0x37,0x6c,0x9c,0x9c,0x9c,0x9c,0x4e, - 0x29,0x00,0x96,0x90,0x9c,0x9c,0x9c,0x73,0x00,0x00,0x34,0x3a,0x50,0x00,0x5f,0x2f, - 0x9b,0x9c,0x35,0x78,0x50,0x00,0x10,0x28,0x39,0x9c,0x01,0x00,0xf3,0x04,0x5b,0x4d, - 0x87,0x00,0x00,0x00,0x00,0x48,0x49,0x9c,0x9c,0x3a,0x97,0x5d,0x54,0x9c,0x9c,0x9c, - 0x47,0x84,0x01,0x55,0x37,0x9c,0x38,0x00,0x79,0x50,0x00,0x0f,0x30,0x02,0x07,0x23, - 0x69,0x47,0x50,0x00,0x21,0x58,0x54,0x09,0x00,0x11,0x39,0xa2,0x00,0x11,0x4e,0x0c, - 0x00,0x71,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x65,0x12,0x00,0x81,0x39,0x9c,0x3a,0x39, - 0x74,0x9c,0x35,0x70,0x0d,0x00,0x0a,0x02,0x00,0x09,0xf0,0x00,0xb1,0x00,0x43,0x7e, - 0x49,0x9c,0x9c,0x9c,0x52,0x3c,0x69,0x86,0x44,0x00,0x02,0x50,0x00,0x86,0x48,0x92, - 0x46,0x9c,0x9c,0x6c,0x6b,0x5d,0x50,0x00,0x82,0x53,0x3b,0x9c,0x5b,0x3c,0x5c,0x9c, - 0x72,0x4b,0x00,0x0f,0xa0,0x00,0x07,0x7d,0x00,0x00,0x00,0x43,0x89,0x85,0x63,0xfa, - 0x04,0x41,0x7b,0x51,0x79,0x48,0x1e,0x00,0x05,0x02,0x00,0x25,0x36,0x7b,0x0b,0x00, - 0x0a,0x02,0x00,0x0a,0xa0,0x00,0x0f,0x02,0x00,0x2f,0x09,0x50,0x00,0xf4,0x30,0xc5, - 0xb6,0xad,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab, - 0xb4,0xcb,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1, - 0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05, - 0x4c,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0xe6,0x05, - 0x02,0x02,0x00,0x05,0x50,0x00,0x17,0xbc,0x50,0x00,0x12,0xb1,0x50,0x00,0x24,0xb0, - 0xc8,0x50,0x00,0x61,0x1c,0x04,0x29,0x0b,0x64,0x44,0x50,0x00,0xbf,0x1f,0x15,0x05, - 0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x50,0x00,0x04,0x95,0xc4,0xb6,0xad,0xa2, - 0xaf,0xb7,0xbc,0xbe,0xba,0xa0,0x00,0x87,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0, - 0xa0,0x00,0x84,0x29,0x0b,0x0f,0x44,0x06,0x32,0x01,0x31,0x50,0x00,0x01,0xa0,0x00, - 0x1f,0x1b,0xa0,0x00,0x07,0x31,0xb7,0xbb,0xb9,0xf0,0x00,0x64,0xc2,0xa5,0xa4,0xab, - 0xc6,0xcb,0x50,0x00,0x11,0xca,0xf0,0x00,0x32,0x41,0x82,0x1c,0x50,0x00,0x66,0x18, - 0x01,0x19,0x0c,0x1f,0x3d,0xa0,0x00,0x3f,0x1b,0x07,0x5e,0xf0,0x00,0x00,0x72,0xc4, - 0xb6,0xad,0xa2,0xcd,0xc1,0xbb,0xa0,0x00,0x18,0xc7,0xa0,0x00,0x09,0xf0,0x00,0x03, - 0x40,0x01,0x03,0x50,0x00,0x1f,0x13,0xf0,0x00,0x07,0x01,0x90,0x01,0x92,0xb7,0xbb, - 0xb9,0xbd,0xd5,0xa8,0xb2,0xd7,0xc2,0x90,0x01,0x5a,0xb8,0xaa,0xa3,0xa9,0xd1,0x40, - 0x01,0x42,0x0f,0x16,0x06,0x32,0x40,0x01,0x35,0x4c,0x08,0x2c,0x90,0x01,0x1f,0x3e, - 0x90,0x01,0x04,0x04,0xf0,0x00,0x02,0xa0,0x00,0x1f,0xce,0xe0,0x01,0x03,0x87,0x32, - 0x01,0x19,0x0c,0x2e,0x3d,0x05,0x10,0x50,0x00,0x0f,0xf0,0x00,0x01,0x52,0xcc,0xad, - 0xa2,0xcd,0xb7,0xe0,0x01,0x12,0xbf,0x50,0x00,0x02,0x40,0x01,0x13,0xd0,0x40,0x01, - 0x02,0x30,0x02,0x17,0x64,0x90,0x01,0x03,0xa0,0x00,0x5e,0x1b,0x07,0x5e,0x3e,0x80, - 0x30,0x02,0x11,0xcc,0xe0,0x01,0xa4,0xb9,0xba,0xa7,0xa8,0xb2,0xbf,0xc2,0xa5,0xa4, - 0xd3,0x50,0x00,0x04,0x90,0x01,0x34,0x14,0x0a,0x1c,0x80,0x02,0x4f,0x31,0x0c,0x2e, - 0x15,0xa0,0x00,0x0d,0x01,0x40,0x01,0x13,0xc1,0x50,0x00,0x97,0xc7,0xa5,0xa4,0xd3, - 0xc6,0xcb,0xae,0xc0,0xd2,0x30,0x02,0x61,0x41,0x0a,0x1c,0x04,0x2a,0x84,0x90,0x01, - 0x01,0x30,0x02,0x01,0x40,0x01,0x5f,0x4b,0x0e,0x30,0x09,0x1b,0x40,0x01,0x02,0x01, - 0x80,0x02,0x11,0xc1,0x80,0x02,0x13,0xc9,0xf0,0x00,0x19,0xce,0x80,0x02,0x18,0x41, - 0x20,0x03,0x04,0xe0,0x01,0x21,0x4b,0x61,0x50,0x00,0x0f,0x40,0x01,0x02,0x14,0xd8, - 0x70,0x03,0x21,0xc9,0xbf,0x80,0x02,0x22,0xb1,0xce,0xa0,0x00,0x16,0xc8,0x40,0x01, - 0x04,0xe0,0x01,0x11,0x7d,0xf0,0x00,0x4f,0x1a,0x03,0x3f,0x4b,0xd0,0x02,0x06,0x03, - 0x90,0x01,0x26,0xb9,0xba,0x50,0x00,0x02,0x90,0x01,0x04,0x30,0x02,0x21,0x41,0x0a, - 0xd0,0x02,0x05,0xc0,0x03,0x07,0x90,0x01,0x0f,0xc0,0x03,0x01,0x01,0xf0,0x00,0x64, - 0xb7,0xbb,0xb9,0xba,0xa7,0xd6,0xa0,0x00,0x66,0xae,0xc0,0xaa,0xa3,0xd4,0xd1,0x70, - 0x03,0x0c,0x90,0x01,0x51,0x1a,0x83,0x3f,0x11,0x61,0xa0,0x00,0x0f,0x80,0x02,0x00, - 0x0f,0x02,0x00,0x30,0x09,0xb0,0x04,0x0f,0x02,0x00,0x30,0x0f,0x50,0x00,0x48,0x0f, - 0x70,0x12,0x37,0x50,0x00,0x00,0x00,0x00,0x00, + 0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x8f,0xff,0x00,0xff,0x6d,0xff,0x00, + 0xff,0x90,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x00,0xff,0x64, + 0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff,0xf6,0xff,0x00, + 0xff,0x00,0xff,0x32,0xff,0x24,0xff,0x00,0xff,0x14,0xff,0x00,0xff,0xf7,0x64,0x00, + 0x31,0xcb,0xff,0x35,0x08,0x00,0xb1,0xdc,0xff,0x00,0xff,0x43,0xff,0xe6,0xff,0x00, + 0xff,0xb1,0x10,0x00,0x31,0x53,0xff,0x17,0x08,0x00,0xb1,0xbb,0xff,0x00,0xff,0xaa, + 0xff,0x00,0xff,0x75,0xff,0x25,0x10,0x00,0xf1,0x05,0x21,0xff,0x00,0xff,0x99,0xff, + 0x47,0xff,0x00,0xff,0x5d,0xff,0x00,0xff,0x28,0xff,0x00,0xff,0xd5,0xff,0xec,0x00, + 0x1f,0x00,0x04,0x00,0x81,0x1f,0x9d,0x01,0x00,0x33,0x14,0x00,0x01,0x00,0x14,0x9d, + 0x09,0x00,0x0f,0x02,0x00,0x2a,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02,0x00,0x29, + 0x06,0x46,0x00,0x43,0x9d,0x00,0x00,0x9c,0x01,0x00,0x13,0x9f,0x01,0x00,0x0f,0x59, + 0x00,0x0d,0x1c,0xa0,0x01,0x00,0x01,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x07, + 0x83,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x29,0x00,0x06,0x02,0x00,0x16,0xa0, + 0x0b,0x00,0x01,0x02,0x00,0x11,0xa0,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x05, + 0x33,0x1d,0x1f,0x9e,0x01,0x00,0x22,0x1f,0x1d,0x2b,0x00,0x41,0x46,0x21,0x21,0x46, + 0x0a,0x00,0x29,0xa0,0x00,0xa1,0x00,0x0f,0x50,0x00,0x12,0x23,0x1d,0x42,0x4e,0x00, + 0x42,0x9e,0x9e,0x9e,0x42,0x51,0x00,0x44,0x21,0x9e,0x9e,0x21,0x50,0x00,0x01,0x08, + 0x00,0x02,0x02,0x00,0x0f,0x50,0x00,0x13,0x05,0x9e,0x00,0x51,0x9e,0x9e,0x9e,0x9e, + 0x1f,0x3a,0x00,0x09,0x50,0x00,0x05,0xa2,0x00,0x0f,0x50,0x00,0x13,0x12,0x22,0x49, + 0x00,0x04,0x02,0x00,0x01,0x44,0x01,0x08,0xf0,0x00,0x05,0xa2,0x00,0x03,0x0c,0x00, + 0x0f,0xe0,0x01,0x0d,0x14,0x24,0x4a,0x00,0x02,0x02,0x00,0x11,0x24,0xa1,0x00,0x04, + 0x02,0x00,0x02,0x44,0x00,0x01,0xa2,0x00,0x01,0x4e,0x00,0x0f,0x40,0x01,0x10,0x12, + 0x23,0x48,0x00,0x04,0x02,0x00,0x14,0x23,0x4b,0x00,0x01,0x02,0x00,0x03,0x50,0x00, + 0x08,0x0a,0x00,0x09,0xa0,0x00,0x03,0x77,0x02,0x13,0x9f,0x87,0x02,0x54,0x9c,0x00, + 0x00,0x00,0x25,0x4a,0x00,0x02,0x02,0x00,0xb7,0x25,0x00,0x00,0x00,0x26,0x27,0x28, + 0x28,0x27,0x26,0x00,0x46,0x00,0x06,0x02,0x00,0x01,0xf3,0x05,0x02,0x02,0x00,0x0f, + 0x50,0x00,0x15,0x87,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x50,0x00,0x0f,0xa0, + 0x00,0x18,0x0e,0xf0,0x00,0x12,0x27,0xaa,0x00,0x16,0x27,0x50,0x00,0x0f,0x40,0x01, + 0x06,0x0f,0xf0,0x00,0x00,0x0e,0x90,0x01,0x12,0x28,0x50,0x00,0x15,0x28,0x50,0x00, + 0x02,0xdf,0x00,0x02,0xf4,0x00,0x0f,0xf0,0x00,0x0e,0x0e,0x30,0x02,0x0c,0x50,0x00, + 0x01,0xdf,0x01,0x04,0xa2,0x00,0x0f,0x50,0x00,0x0e,0x0e,0xd0,0x02,0x0b,0xf0,0x00, + 0x02,0x9e,0x00,0x04,0x9e,0x01,0x0f,0x50,0x00,0x0f,0x0d,0x70,0x03,0x0a,0x90,0x01, + 0x01,0x9b,0x00,0x03,0x02,0x00,0x0d,0x70,0x03,0x0f,0x40,0x01,0x00,0x0f,0x10,0x04, + 0x00,0x08,0x30,0x02,0x02,0x9a,0x00,0x04,0x02,0x00,0x0c,0xa0,0x00,0x0f,0x02,0x00, + 0x04,0x0f,0xb0,0x04,0x07,0x03,0x99,0x00,0x05,0x02,0x00,0x01,0x76,0x02,0x03,0x02, + 0x00,0x06,0xda,0x02,0x0f,0x02,0x00,0x29,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02, + 0x00,0x29,0x06,0x46,0x00,0x04,0x0a,0x00,0x54,0x30,0x7c,0x7b,0x6f,0x55,0x53,0x00, + 0x04,0x7a,0x03,0x0f,0x02,0x00,0x14,0x06,0x46,0x00,0x03,0x0a,0x00,0xb4,0x88,0x50, + 0x4f,0x9c,0x9c,0x9c,0x9c,0x2f,0x47,0x6b,0x51,0x53,0x00,0x0f,0x02,0x00,0x1b,0x04, + 0x96,0x00,0x02,0x0a,0x00,0x16,0x89,0x88,0x00,0x2f,0x3c,0x44,0x49,0x00,0x1b,0x03, + 0x02,0x00,0x0a,0x50,0x00,0x71,0x8a,0x9c,0x9c,0x9c,0x9c,0x56,0x2f,0x56,0x00,0x13, + 0x62,0x22,0x00,0x0f,0x02,0x00,0x1b,0x0a,0x50,0x00,0x81,0x52,0x9c,0x9c,0x52,0x74, + 0x55,0x35,0x4e,0xf5,0x00,0x1f,0x5f,0x4a,0x00,0x1b,0x02,0x02,0x00,0x0a,0x50,0x00, + 0xe2,0x5a,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x67,0x9c,0x9c,0x9c,0x9c,0x5e,0x22, + 0x00,0xa4,0x00,0x00,0x37,0x90,0x3c,0x4f,0x52,0x3b,0x70,0x53,0x10,0x00,0x0f,0x02, + 0x00,0x09,0x0a,0x50,0x00,0xe3,0x73,0x4f,0x4f,0x38,0x00,0x00,0x00,0x00,0x55,0x9c, + 0x9c,0x9c,0x9c,0x6a,0x38,0x00,0x21,0x69,0x4a,0x00,0x01,0x33,0x9c,0x56,0x8d,0x11, + 0x00,0x0f,0x02,0x00,0x09,0x0a,0x50,0x00,0x02,0x02,0x00,0x82,0x79,0x37,0x37,0x9c, + 0x9c,0x9c,0x9c,0x20,0x0e,0x00,0xbf,0x00,0x38,0x9c,0x9c,0x76,0x57,0x3d,0x8f,0x9c, + 0x9c,0x9c,0xa2,0x00,0x10,0x0b,0x50,0x00,0x42,0x51,0x69,0x39,0x6e,0x8f,0x01,0x06, + 0x50,0x00,0xb3,0x91,0x9c,0x9c,0x72,0x00,0x00,0x30,0x54,0x9c,0x9c,0x57,0x62,0x00, + 0x0a,0x02,0x00,0x72,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x04,0x00,0x0a,0x50,0x00, + 0x22,0x6d,0x8b,0xdb,0x00,0x01,0x02,0x00,0x04,0xa0,0x00,0x8f,0x72,0x39,0x39,0x30, + 0x00,0x00,0x00,0x47,0xf3,0x01,0x12,0x09,0x50,0x00,0x11,0x58,0xd8,0x01,0x48,0x68, + 0x48,0x64,0x64,0xa0,0x00,0xb4,0x00,0x00,0x30,0x92,0x93,0x57,0x20,0x52,0x9c,0x9c, + 0x34,0x99,0x00,0x54,0x37,0x97,0x78,0x38,0x65,0x0d,0x00,0x09,0x02,0x00,0x09,0x50, + 0x00,0x73,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x35,0x68,0x03,0x04,0xa0,0x00,0x23,0x51, + 0x94,0x91,0x01,0x05,0x50,0x00,0x79,0x30,0x4a,0x56,0x5a,0x5b,0x2f,0x67,0x49,0x00, + 0x03,0x02,0x00,0x09,0x50,0x00,0x51,0x3c,0x9c,0x9c,0x9c,0x3b,0x19,0x00,0x08,0xa0, + 0x00,0x86,0x3d,0x9c,0x9c,0x9c,0x3c,0x57,0x6a,0x6e,0xa0,0x00,0x71,0x30,0x9c,0x78, + 0x00,0x98,0x9c,0x59,0x2a,0x00,0x0f,0x40,0x01,0x09,0xa7,0x4b,0x9c,0x9c,0x9c,0x87, + 0x00,0x00,0x00,0x00,0x5f,0x50,0x00,0x96,0x35,0x54,0x9c,0x9c,0x75,0x00,0x00,0x00, + 0x48,0x50,0x00,0x73,0x35,0x99,0x74,0x5c,0x3d,0x9c,0x4b,0x50,0x00,0x09,0x02,0x00, + 0x09,0xa0,0x00,0x11,0x59,0xc7,0x02,0x92,0x86,0x65,0x38,0x6c,0x9c,0x9c,0x9c,0x9c, + 0x50,0x29,0x00,0x96,0x8c,0x9c,0x9c,0x9c,0x95,0x00,0x00,0x35,0x3b,0x50,0x00,0x5f, + 0x30,0x9b,0x9c,0x36,0x9a,0x50,0x00,0x10,0x11,0x3a,0xd8,0x01,0x04,0x02,0x00,0xf3, + 0x04,0x2f,0x4f,0x84,0x00,0x00,0x00,0x00,0x49,0x4a,0x9c,0x9c,0x3b,0x96,0x5c,0x47, + 0x9c,0x9c,0x9c,0x48,0x84,0x01,0x55,0x38,0x9c,0x39,0x00,0x77,0x50,0x00,0x0f,0x30, + 0x02,0x07,0x23,0x66,0x48,0x4c,0x00,0x21,0x89,0x47,0x09,0x00,0x11,0x3a,0xa2,0x00, + 0x11,0x50,0x0c,0x00,0x71,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x63,0x12,0x00,0x81,0x3a, + 0x9c,0x3b,0x3a,0x73,0x9c,0x36,0x6f,0x0d,0x00,0x0a,0x02,0x00,0x09,0xf0,0x00,0xb1, + 0x00,0x44,0x7d,0x82,0x9c,0x9c,0x9c,0x54,0x3d,0x66,0x85,0x44,0x00,0x02,0x50,0x00, + 0x86,0x49,0x8e,0x2f,0x9c,0x9c,0x6c,0x6b,0x5c,0x50,0x00,0x82,0x55,0x3c,0x9c,0x2f, + 0x3d,0x2f,0x9c,0x70,0x4b,0x00,0x0f,0xa0,0x00,0x07,0x7d,0x00,0x00,0x00,0x44,0x4e, + 0x83,0x4e,0xfa,0x04,0x41,0x79,0x53,0x77,0x49,0x1e,0x00,0x05,0x02,0x00,0x25,0x37, + 0x79,0x0b,0x00,0x0a,0x02,0x00,0x0a,0xa0,0x00,0x0f,0x02,0x00,0x2f,0x09,0x50,0x00, + 0xf4,0x30,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf, + 0xa5,0xa4,0xab,0xb4,0xcb,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1, + 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c, + 0x2e,0x15,0x04,0x4d,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12, + 0x02,0xe6,0x05,0x02,0x02,0x00,0x05,0x50,0x00,0x17,0xba,0x50,0x00,0x12,0xb1,0x50, + 0x00,0x24,0xb0,0xc8,0x50,0x00,0x61,0x1c,0x05,0x29,0x0b,0x61,0x45,0x50,0x00,0xbf, + 0x1e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x50,0x00,0x04,0x95,0xc3, + 0xb6,0xad,0xa2,0xae,0xb7,0xba,0xbe,0xbb,0xa0,0x00,0x87,0xb1,0xaf,0xb8,0xaa,0xa3, + 0xa9,0xac,0xb0,0xa0,0x00,0x84,0x29,0x0b,0x0f,0x45,0x06,0x33,0x01,0x32,0x50,0x00, + 0x01,0xa0,0x00,0x1f,0x1b,0xa0,0x00,0x07,0x31,0xb7,0xbc,0xb9,0xf0,0x00,0x64,0xc1, + 0xa5,0xa4,0xab,0xc4,0xcb,0x50,0x00,0x11,0xca,0xf0,0x00,0x32,0x41,0x7f,0x1c,0x50, + 0x00,0x66,0x18,0x01,0x19,0x0c,0x1e,0x3e,0xa0,0x00,0x3f,0x1b,0x07,0x5d,0xf0,0x00, + 0x00,0x72,0xc3,0xb6,0xad,0xa2,0xcd,0xc0,0xbc,0xa0,0x00,0x18,0xc6,0xa0,0x00,0x09, + 0xf0,0x00,0x03,0x40,0x01,0x03,0x50,0x00,0x1f,0x13,0xf0,0x00,0x07,0x01,0x90,0x01, + 0x92,0xb7,0xbc,0xb9,0xbd,0xd7,0xa8,0xb2,0xd8,0xc1,0x90,0x01,0x5a,0xb8,0xaa,0xa3, + 0xa9,0xd1,0x40,0x01,0x42,0x0f,0x16,0x06,0x33,0x40,0x01,0x35,0x4d,0x08,0x2c,0x90, + 0x01,0x1f,0x40,0x90,0x01,0x04,0x04,0xf0,0x00,0x02,0xa0,0x00,0x1f,0xce,0xe0,0x01, + 0x03,0x87,0x33,0x01,0x19,0x0c,0x2e,0x3e,0x04,0x10,0x50,0x00,0x0f,0xf0,0x00,0x01, + 0x52,0xcc,0xad,0xa2,0xcd,0xb7,0xe0,0x01,0x12,0xd3,0x50,0x00,0x02,0x40,0x01,0x13, + 0xd0,0x40,0x01,0x02,0x30,0x02,0x17,0x61,0x90,0x01,0x03,0xa0,0x00,0x5e,0x1b,0x07, + 0x5d,0x40,0x80,0x30,0x02,0x11,0xcc,0xe0,0x01,0xa4,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5, + 0xc1,0xa5,0xa4,0xd4,0x50,0x00,0x04,0x90,0x01,0x34,0x14,0x0a,0x1c,0x80,0x02,0x4f, + 0x32,0x0c,0x2e,0x15,0xa0,0x00,0x0d,0x01,0x40,0x01,0x13,0xc0,0x50,0x00,0x97,0xc6, + 0xa5,0xa4,0xd4,0xc4,0xcb,0xaf,0xbf,0xd2,0x30,0x02,0x61,0x41,0x0a,0x1c,0x05,0x2a, + 0x81,0x90,0x01,0x01,0x30,0x02,0x01,0x40,0x01,0x5f,0x4c,0x0e,0x31,0x09,0x1b,0x40, + 0x01,0x02,0x01,0x80,0x02,0x11,0xc0,0x80,0x02,0x22,0xc9,0xc5,0xf0,0x00,0x19,0xce, + 0x80,0x02,0x18,0x41,0x20,0x03,0x04,0xe0,0x01,0x21,0x4c,0x60,0x50,0x00,0x1e,0x12, + 0x90,0x01,0x34,0xc3,0xcc,0xd9,0x70,0x03,0x92,0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4, + 0xb1,0xce,0xa0,0x00,0x16,0xc8,0x40,0x01,0x04,0xe0,0x01,0x11,0x7a,0xf0,0x00,0x4f, + 0x1a,0x03,0x3f,0x4c,0xd0,0x02,0x06,0x03,0x90,0x01,0x26,0xb9,0xbb,0x50,0x00,0x02, + 0x90,0x01,0x04,0x30,0x02,0x21,0x41,0x0a,0xd0,0x02,0x05,0xc0,0x03,0x07,0x90,0x01, + 0x0f,0xc0,0x03,0x01,0x01,0xf0,0x00,0x82,0xb7,0xbc,0xb9,0xbb,0xa7,0xd6,0xc9,0xd3, + 0xa0,0x00,0x66,0xaf,0xbf,0xaa,0xa3,0xd5,0xd1,0x70,0x03,0x0c,0x90,0x01,0x51,0x1a, + 0x7e,0x3f,0x11,0x60,0xa0,0x00,0x0f,0x80,0x02,0x00,0x0f,0x02,0x00,0x30,0x09,0xb0, + 0x04,0x0f,0x02,0x00,0x30,0x0f,0x50,0x00,0x48,0x0f,0x70,0x12,0x37,0x50,0x00,0x00, + 0x00,0x00,0x00, }; const lv_img_dsc_t test_I8_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 80, - .data_size = 2537, + .data_size = 2531, .data = test_I8_LZ4_align1_map, }; diff --git a/tests/test_images/stride_align1/LZ4/test_L8.bin b/tests/test_images/stride_align1/LZ4/test_L8.bin index c8ac21d2a..ad6f79458 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_L8.bin and b/tests/test_images/stride_align1/LZ4/test_L8.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_L8_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_L8_LZ4_align1.c index cf7bec38d..337e09d01 100644 --- a/tests/test_images/stride_align1/LZ4/test_L8_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_L8_LZ4_align1.c @@ -101,6 +101,7 @@ uint8_t test_L8_LZ4_align1_map[] = { }; const lv_img_dsc_t test_L8_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_L8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_RGB565.bin b/tests/test_images/stride_align1/LZ4/test_RGB565.bin index 5fe292507..83b95daad 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_RGB565.bin and b/tests/test_images/stride_align1/LZ4/test_RGB565.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_RGB565A8.bin b/tests/test_images/stride_align1/LZ4/test_RGB565A8.bin index 3c6491e56..87aa2489b 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_RGB565A8.bin and b/tests/test_images/stride_align1/LZ4/test_RGB565A8.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_RGB565A8_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_RGB565A8_LZ4_align1.c index 48ee95b1e..c1d99d03b 100644 --- a/tests/test_images/stride_align1/LZ4/test_RGB565A8_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_RGB565A8_LZ4_align1.c @@ -153,6 +153,7 @@ uint8_t test_RGB565A8_LZ4_align1_map[] = { }; const lv_img_dsc_t test_RGB565A8_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_RGB565_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_RGB565_LZ4_align1.c index e4f432af1..b558611e4 100644 --- a/tests/test_images/stride_align1/LZ4/test_RGB565_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_RGB565_LZ4_align1.c @@ -124,6 +124,7 @@ uint8_t test_RGB565_LZ4_align1_map[] = { }; const lv_img_dsc_t test_RGB565_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_RGB888.bin b/tests/test_images/stride_align1/LZ4/test_RGB888.bin index 8283494b6..54e2d0c95 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_RGB888.bin and b/tests/test_images/stride_align1/LZ4/test_RGB888.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_RGB888_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_RGB888_LZ4_align1.c index e5d48c1af..716d81956 100644 --- a/tests/test_images/stride_align1/LZ4/test_RGB888_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_RGB888_LZ4_align1.c @@ -199,6 +199,7 @@ uint8_t test_RGB888_LZ4_align1_map[] = { }; const lv_img_dsc_t test_RGB888_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/LZ4/test_XRGB8888.bin b/tests/test_images/stride_align1/LZ4/test_XRGB8888.bin index 81a02d18c..7d84aa42c 100644 Binary files a/tests/test_images/stride_align1/LZ4/test_XRGB8888.bin and b/tests/test_images/stride_align1/LZ4/test_XRGB8888.bin differ diff --git a/tests/test_images/stride_align1/LZ4/test_XRGB8888_LZ4_align1.c b/tests/test_images/stride_align1/LZ4/test_XRGB8888_LZ4_align1.c index 125e21eac..65e49c953 100644 --- a/tests/test_images/stride_align1/LZ4/test_XRGB8888_LZ4_align1.c +++ b/tests/test_images/stride_align1/LZ4/test_XRGB8888_LZ4_align1.c @@ -217,6 +217,7 @@ uint8_t test_XRGB8888_LZ4_align1_map[] = { }; const lv_img_dsc_t test_XRGB8888_LZ4_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_XRGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_A1.bin b/tests/test_images/stride_align1/RLE/test_A1.bin index 584e3f671..59272de64 100644 Binary files a/tests/test_images/stride_align1/RLE/test_A1.bin and b/tests/test_images/stride_align1/RLE/test_A1.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_A1_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_A1_RLE_align1.c index 389b6f16c..e5d7429d5 100644 --- a/tests/test_images/stride_align1/RLE/test_A1_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_A1_RLE_align1.c @@ -86,6 +86,7 @@ uint8_t test_A1_RLE_align1_map[] = { }; const lv_img_dsc_t test_A1_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_A2.bin b/tests/test_images/stride_align1/RLE/test_A2.bin index 584183911..cf3d55cad 100644 Binary files a/tests/test_images/stride_align1/RLE/test_A2.bin and b/tests/test_images/stride_align1/RLE/test_A2.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_A2_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_A2_RLE_align1.c index 37a042b67..ae9e974de 100644 --- a/tests/test_images/stride_align1/RLE/test_A2_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_A2_RLE_align1.c @@ -145,6 +145,7 @@ uint8_t test_A2_RLE_align1_map[] = { }; const lv_img_dsc_t test_A2_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_A4.bin b/tests/test_images/stride_align1/RLE/test_A4.bin index 003d7eaf9..953e091c3 100644 Binary files a/tests/test_images/stride_align1/RLE/test_A4.bin and b/tests/test_images/stride_align1/RLE/test_A4.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_A4_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_A4_RLE_align1.c index dc2d40f3f..f506b2e5e 100644 --- a/tests/test_images/stride_align1/RLE/test_A4_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_A4_RLE_align1.c @@ -180,6 +180,7 @@ uint8_t test_A4_RLE_align1_map[] = { }; const lv_img_dsc_t test_A4_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_A8.bin b/tests/test_images/stride_align1/RLE/test_A8.bin index 9ecc58cbe..cd40f55ce 100644 Binary files a/tests/test_images/stride_align1/RLE/test_A8.bin and b/tests/test_images/stride_align1/RLE/test_A8.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_A8_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_A8_RLE_align1.c index 3ae6fd6af..07fe97f4c 100644 --- a/tests/test_images/stride_align1/RLE/test_A8_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_A8_RLE_align1.c @@ -226,6 +226,7 @@ uint8_t test_A8_RLE_align1_map[] = { }; const lv_img_dsc_t test_A8_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_ARGB8888.bin b/tests/test_images/stride_align1/RLE/test_ARGB8888.bin index bc3236fd3..5d87e5331 100644 Binary files a/tests/test_images/stride_align1/RLE/test_ARGB8888.bin and b/tests/test_images/stride_align1/RLE/test_ARGB8888.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_ARGB8888_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_ARGB8888_RLE_align1.c index 6825e9bf6..d8b328635 100644 --- a/tests/test_images/stride_align1/RLE/test_ARGB8888_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_ARGB8888_RLE_align1.c @@ -796,6 +796,7 @@ uint8_t test_ARGB8888_RLE_align1_map[] = { }; const lv_img_dsc_t test_ARGB8888_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_ARGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_I1.bin b/tests/test_images/stride_align1/RLE/test_I1.bin index 861269288..4c582739c 100644 Binary files a/tests/test_images/stride_align1/RLE/test_I1.bin and b/tests/test_images/stride_align1/RLE/test_I1.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_I1_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_I1_RLE_align1.c index 8e8734d8c..11711344d 100644 --- a/tests/test_images/stride_align1/RLE/test_I1_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_I1_RLE_align1.c @@ -20,64 +20,64 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I1_RLE_align1_map[] = { - 0x01,0x00,0x00,0x00,0xbc,0x03,0x00,0x00,0xc9,0x03,0x00,0x00,0xff,0x3f,0xe3,0x94, - 0xee,0x66,0x0f,0x0f,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x01,0x00,0x00,0x00,0xbc,0x03,0x00,0x00,0xc9,0x03,0x00,0x00,0xff,0x56,0x82,0x0a, + 0xfa,0x43,0xbe,0xeb,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xff,0xff,0xff,0xe0,0x00,0x0c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xf9,0xff,0xff,0xef,0xff,0xec,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x3f,0xef,0xe8,0x00,0x2c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x80,0x1f,0xe3,0xeb,0xff,0xac,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0xc7,0xea,0xff,0x00,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xef,0xea,0xfe,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xf0,0xff,0xff,0xef,0xff,0xec,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xe8,0x00,0x2c,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0xc3,0xeb,0xff,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0xc3,0xea,0xff,0x00,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xe7,0xea,0xfe,0xac,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0x82,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0xba,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xf7,0xea,0xaa,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xba,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x81,0xea,0x82,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xff,0xea,0xba,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xaa,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0x81,0xea,0xba,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0x00,0xea,0x82,0xac,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x00,0xea,0xfe,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x01,0xff,0xea,0x00,0xac, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0x81,0xeb,0xff,0xac, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x80,0x1f,0xc1,0xe8,0x00,0x2c, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xef,0xff,0xec, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xf8,0xff,0xff,0xe0,0x00,0x0c, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x00,0xff,0xea,0x00,0xac, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x07,0x00,0xeb,0xff,0xac, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x1f,0x81,0xe8,0x00,0x2c, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x1f,0xc3,0xef,0xff,0xec, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xf0,0x7f,0xff,0xe0,0x00,0x0c, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xf8,0x00,0x00,0x00,0x00,0x00,0x0c, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x01,0xff,0xff,0xff,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0xff,0xff,0xff,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x7f,0xff,0xff,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x71,0xf8,0x7f,0xf4,0xff,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0xf8,0x7f,0xc0,0x3f,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xf8,0x7f,0xc6,0x1f,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x7f,0xcf,0x1f,0xff,0xff,0xad, - 0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x7f,0xff,0xff,0x9f,0xff,0xff, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x28,0x7f,0xff,0x1f,0xff,0xff, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xe0,0x1f,0xf0,0x7f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xc7,0x1f,0xf7,0x7f, - 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0xf8,0x7f,0x8f,0x1f,0xff,0x3f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x7f,0x8f,0x9f,0xf8,0x3f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x1f,0x87,0x0f,0xf7,0x7f, - 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x1f,0xc0,0x07,0xf3,0x3f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x1c,0x1f,0xff,0xe1,0x87,0xf9, - 0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xf0,0x7f,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x71,0xf8,0x3f,0xc0,0x3f,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xf8,0x7f,0xc4,0x1f,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x00,0x3f,0xcf,0x0f,0xff,0xff,0xad, + 0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x7f,0xcf,0xff,0x0f,0xff,0xff, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x3f,0xfd,0x0f,0xff,0xff, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xe0,0x0f,0xf0,0x7f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xf8,0x3f,0xc1,0x0f,0xf3,0x3f, + 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xf8,0x7f,0x87,0x0f,0xfe,0x3f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xf0,0x3f,0x8f,0x0f,0xf0,0x3f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x1f,0x86,0x0f,0xf3,0x3f, + 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x1f,0x80,0x07,0xf2,0x3f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x1c,0x1f,0xff,0xc1,0x87,0xf0, + 0x1f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00, - 0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x05, - 0x55,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x12, - 0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x04, - 0xaa,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x2a, - 0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xff,0x00,0x00,0x00, - 0x00,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x2b,0x75,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x04,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x22,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x0a,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x11,0x5b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x42,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x15,0x5d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xb9,0x00,0x00,0x00, - 0x00,0x00,0x2b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, + 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x01,0x7f, + 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x01, + 0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x01,0x56, + 0xd7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x0a, + 0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0xaa, + 0xab,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xff,0x00,0x00,0x00, + 0x0a,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x02, + 0xaa,0xd6,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x15,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0xaa,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x05,0x6d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x01, + 0x55,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x2a,0xbb,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x95,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xb9,0x00,0x00,0x00, + 0x00,0x56,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x17,0x00, @@ -85,6 +85,7 @@ uint8_t test_I1_RLE_align1_map[] = { }; const lv_img_dsc_t test_I1_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_I2.bin b/tests/test_images/stride_align1/RLE/test_I2.bin index 9d69bd70f..7524038bb 100644 Binary files a/tests/test_images/stride_align1/RLE/test_I2.bin and b/tests/test_images/stride_align1/RLE/test_I2.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_I2_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_I2_RLE_align1.c index 13d83ce47..dd9c4e8c3 100644 --- a/tests/test_images/stride_align1/RLE/test_I2_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_I2_RLE_align1.c @@ -21,124 +21,124 @@ LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I2_RLE_align1_map[] = { 0x01,0x00,0x00,0x00,0x92,0x07,0x00,0x00,0x91,0x07,0x00,0x00,0x90,0x5a,0x00,0x3d, - 0xf4,0x23,0xaf,0xaf,0x08,0x60,0xff,0xf7,0xdf,0x37,0xff,0x18,0xff,0x11,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4, - 0x00,0x02,0xaa,0xa9,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x00,0x00,0x00, - 0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4, - 0x00,0x02,0xaa,0xa9,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x55,0x55,0x55,0xff, - 0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x40,0x00,0x01,0x55,0x54,0x15,0x54,0x40,0x00,0x00, - 0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x00,0x00,0x00,0x55,0x50,0x05,0x54,0x45,0x55,0x55, - 0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x50,0x05,0x54,0x44,0x00,0x00, - 0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x54,0x15,0x54,0x44,0x55,0xff, - 0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x40, - 0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x45, - 0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x50,0x05,0x54,0x44,0x44, - 0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x40,0x01,0x54,0x44,0xff, - 0x45,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44, - 0x40,0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44, - 0x55,0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0x44, - 0x00,0x00,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0xff, - 0x45,0x55,0x55,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x55,0x00,0x00,0x00,0x55,0x40,0x01,0x54, - 0x40,0x00,0x00,0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x55,0x40,0x00,0x01,0x55,0x50,0x05,0x54, - 0x55,0x55,0x55,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54, - 0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x40,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x50,0x00,0x05,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x55,0x40,0x05,0x55,0x54,0x00,0x15,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x01,0x55,0x40,0x05,0x55,0x50,0x00,0x01,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x40,0x05,0x55,0x40,0x00,0x01,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x54,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55, - 0x55,0x55,0x55,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x40,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x05,0x55,0x55,0x40,0x00,0xff, - 0x55,0x55,0x50,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x15,0x40,0x05,0x55,0x50,0x00,0x00, - 0x55,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x00,0x00, - 0x55,0x55,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x15,0x00, - 0x55,0x55,0x54,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x14,0x00,0x05,0x55,0x40,0x55,0xff, - 0x00,0x55,0x55,0x00,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x01,0x55,0x40,0x04, - 0x00,0x55,0x54,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x00,0x55,0x40,0x00, - 0x00,0x15,0x55,0x04,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x40,0x00,0x40,0x01,0x55,0x50,0x00, - 0x40,0x15,0x55,0x00,0x01,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff,0xfb, - 0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x66,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff,0xff, - 0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0xa6,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x55,0x55,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff, - 0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff, - 0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff, - 0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x66,0x55,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0xfe, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00, + 0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff,0x11,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8, + 0x00,0x01,0x55,0x56,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x00,0x00,0x00, + 0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8, + 0x00,0x01,0x55,0x56,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0xaa,0xaa,0xaa,0xff, + 0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x80,0x00,0x02,0xaa,0xa8,0x2a,0xa8,0x80,0x00,0x00, + 0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x00,0x00,0x00,0xaa,0xa0,0x0a,0xa8,0x8a,0xaa,0xaa, + 0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa0,0x0a,0xa8,0x88,0x00,0x00, + 0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa8,0x2a,0xa8,0x88,0xaa,0xff, + 0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x80, + 0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x8a, + 0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0xa0,0x0a,0xa8,0x88,0x88, + 0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x80,0x02,0xa8,0x88,0xff, + 0x8a,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88, + 0x80,0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88, + 0xaa,0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0x88, + 0x00,0x00,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0xff, + 0x8a,0xaa,0xaa,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xaa,0x00,0x00,0x00,0xaa,0x80,0x02,0xa8, + 0x80,0x00,0x00,0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xaa,0x80,0x00,0x02,0xaa,0xa0,0x0a,0xa8, + 0xaa,0xaa,0xaa,0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8, + 0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0x80,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0xa0,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x00,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x00,0xaa,0x80,0x0a,0xaa,0xa8,0x00,0x2a,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x02,0xaa,0x80,0x0a,0xaa,0xa0,0x00,0x02,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x02,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xa8,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa, + 0xaa,0xaa,0xaa,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x80,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x0a,0xaa,0xaa,0x80,0x00,0xff, + 0xaa,0xaa,0xa0,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0x2a,0x80,0x0a,0xaa,0xa0,0x00,0x00, + 0xaa,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x00, + 0xaa,0xaa,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x2a,0x00, + 0xaa,0xaa,0xa8,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0x28,0x00,0x0a,0xaa,0x80,0xaa,0xff, + 0x00,0xaa,0xaa,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x02,0xaa,0x80,0x08, + 0x00,0xaa,0xa8,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x00,0xaa,0x80,0x00, + 0x00,0x2a,0xaa,0x08,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x80,0x00,0x80,0x02,0xaa,0xa0,0x00, + 0x80,0x2a,0xaa,0x00,0x02,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff,0xf7, + 0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff,0xdd, + 0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff,0xff, + 0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xfd,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0xa6,0x6a,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x9a,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xf7,0x55,0x55,0x55,0x55,0x55,0x95,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0x9a,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xdd,0x55,0x55,0x55,0x55,0x56,0x65,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff, + 0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0x9a,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff, + 0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff, + 0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0xaa,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xfe, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -146,6 +146,7 @@ uint8_t test_I2_RLE_align1_map[] = { }; const lv_img_dsc_t test_I2_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_I4.bin b/tests/test_images/stride_align1/RLE/test_I4.bin index 2ac8b025c..49db9be4b 100644 Binary files a/tests/test_images/stride_align1/RLE/test_I4.bin and b/tests/test_images/stride_align1/RLE/test_I4.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_I4_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_I4_RLE_align1.c index 742d9d431..0628e84d5 100644 --- a/tests/test_images/stride_align1/RLE/test_I4_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_I4_RLE_align1.c @@ -20,175 +20,177 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I4_RLE_align1_map[] = { - 0x01,0x00,0x00,0x00,0xd8,0x09,0x00,0x00,0x81,0x0b,0x00,0x00,0xc1,0x4c,0x70,0x47, - 0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0xfc,0x00,0xff,0xf7,0xf4,0x00,0xff,0xff, - 0x65,0x00,0xff,0xff,0xa9,0x41,0xa5,0xa5,0x30,0x00,0x00,0x00,0x75,0x00,0x00,0x00, - 0xc2,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0x88, - 0xff,0xcc,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x22,0xaa, + 0x01,0x00,0x00,0x00,0xe9,0x09,0x00,0x00,0x81,0x0b,0x00,0x00,0xc1,0x4c,0x70,0x47, + 0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc,0x3e,0x8f,0x8f, + 0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60,0x00,0xff,0xff, + 0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff, + 0xff,0x00,0xff,0x7f,0xff,0x77,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x22,0xaa, 0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00, 0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x21,0x00,0xff,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x69, - 0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x49, + 0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x09,0x22, + 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x09,0x22, 0x22,0x22,0x22,0x90,0xff,0x00,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0xff,0xff, 0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x92, + 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x92, 0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x00,0x00, 0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x09,0x22, + 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x09,0x22, 0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x0f,0xff, 0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0xff,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x62, - 0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f, + 0x00,0x00,0x00,0xa0,0xff,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x42, + 0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f, 0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x92, + 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x92, 0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f, 0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x22, + 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x22, 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f, 0x0f,0x00,0x0f,0x0f,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00, - 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x06,0x92,0x29,0x60,0x00,0x0f,0x0f, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00, + 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x04,0x92,0x29,0x40,0x00,0x0f,0x0f, 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00, - 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x62,0x22,0x22,0x26,0x00,0x0f,0x0f, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00, + 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x42,0x22,0x22,0x24,0x00,0x0f,0x0f, 0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00, 0x22,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0x22,0x00,0x92,0x22,0x22,0x29,0x00,0x0f, 0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10, + 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10, 0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x22,0x22,0x22,0x22,0x00,0x0f, 0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10, - 0x00,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x22,0x22,0x22,0x22,0x00,0x0f, + 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10, + 0x00,0x42,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x22,0x22,0x22,0x22,0x00,0x0f, 0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11, + 0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11, 0x10,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x92,0x22,0x22,0x29,0x00, 0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11, - 0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x62,0x22,0x22,0x26,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11, + 0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x42,0x22,0x22,0x24,0x00, 0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11, - 0x10,0x00,0x00,0x69,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x06,0x92,0x29,0x60,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11, + 0x10,0x00,0x00,0x49,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x04,0x92,0x29,0x40,0x00, 0x0f,0x00,0x00,0x00,0xc5,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x69,0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x49,0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00,0x8f,0xa0,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00,0x99,0xa0, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, - 0x06,0x66,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x11,0x97,0x00,0xa0,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x06,0x78,0x11,0x11,0x18, - 0x70,0x00,0x1a,0x00,0x96,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x00,0x81,0x11,0x11,0x11,0x11,0x18,0x00,0x1a,0x00,0x97,0xa0,0x00, + 0x04,0x44,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x11,0x97,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x04,0x61,0x11,0x11,0x16, + 0x60,0x00,0x1a,0x00,0x96,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x00,0x61,0x11,0x11,0x11,0x11,0x16,0x00,0x1a,0x00,0x97,0xa0,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x11,0x11,0x11, - 0x11,0x11,0x11,0x80,0x00,0x19,0x00,0x97,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x11,0x11,0x60,0x06,0x81,0x11,0x16,0x00,0x19, + 0x11,0x11,0x11,0x60,0x00,0x19,0x00,0x97,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x11,0x11,0x40,0x04,0x11,0x11,0x14,0x00,0x19, 0x00,0x9f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0, - 0x00,0x81,0x18,0x00,0x00,0x71,0x11,0x17,0x00,0x00,0x00,0x00,0x07,0x88,0x18,0x86, + 0x00,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x61,0x11,0x64, 0x00,0x11,0x00,0xff,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xa0,0x00,0x88,0x87,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x11, - 0x11,0x11,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xa0,0x00,0x61,0x16,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x04,0x11,0x11, + 0x11,0x11,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x17, - 0x78,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x16, + 0x61,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xa0,0x00,0x00,0x78,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x60, - 0x00,0x11,0x17,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, + 0x00,0xa0,0x00,0x00,0x46,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x40, + 0x00,0x11,0x16,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, 0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x00,0x68,0x11,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x06,0x88, - 0x00,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x04,0x66, + 0x00,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x00,0x11,0x11,0x11,0x88,0x81,0x11,0x17,0x00,0x00,0x00,0x00,0x00, - 0x77,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x07,0x77,0x60,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x00,0x11,0x11,0x11,0x66,0x61,0x11,0x16,0x00,0x00,0x00,0x00,0x00, + 0x66,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x66,0x40,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0xff,0x07,0x11,0x11,0x70,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x00, - 0x71,0x11,0x11,0x11,0x18,0x00,0x00,0x00,0x00,0x11,0x11,0x16,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0xff,0x06,0x11,0x11,0x60,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x00, + 0x61,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x14,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x08,0x11,0x18,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07, - 0x11,0x18,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x17,0x07,0x18,0x00,0x00,0x00,0x01, + 0x00,0x00,0x00,0xa0,0x06,0x11,0x11,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06, + 0x11,0x16,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x16,0x06,0x16,0x00,0x00,0x00,0x01, 0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x08,0x11,0x18,0x00,0x00,0x61,0x11,0x17,0x00,0x00,0x00,0x01, - 0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x67,0x77,0x18,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xa0,0x01,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x01, + 0x11,0x60,0x00,0x61,0x16,0x00,0x00,0x00,0x00,0x44,0x66,0x11,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x08,0x11,0x11,0x70,0x67,0x11,0x11,0x17,0x00,0x00,0x00, - 0x61,0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x81,0x88,0x18,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xa0,0x06,0x11,0x11,0x60,0x46,0x11,0x11,0x16,0x00,0x00,0x00, + 0x41,0x11,0x40,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x07,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x87,0x00,0x00, - 0x01,0x11,0x87,0x78,0x11,0x18,0x60,0x00,0x00,0x07,0x18,0x06,0x18,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xa0,0x06,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x14,0x00,0x00, + 0x01,0x11,0x14,0x61,0x11,0x11,0x40,0x00,0x00,0x06,0x16,0x04,0x11,0x00,0x00,0x00, 0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x00,0x81,0x11,0x11,0x11,0x88,0x11,0x11,0x17,0x00,0x00, - 0x07,0x11,0x11,0xe1,0x11,0x11,0x11,0x10,0x00,0x00,0x07,0x18,0x78,0x18,0x60,0x00, + 0x00,0x00,0x00,0x00,0xa0,0x00,0x61,0x11,0x11,0x11,0x61,0x11,0x11,0x16,0x00,0x00, + 0x06,0x11,0x11,0xff,0x11,0x11,0x11,0x10,0x00,0x00,0x06,0x11,0x66,0x11,0x40,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x07,0x11,0x11,0x17,0x07,0x11,0x11,0x17,0x00, - 0x00,0x00,0x71,0x11,0x17,0x71,0x11,0x10,0x00,0x00,0x00,0x81,0x17,0x11,0x80,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x06,0x11,0x11,0x16,0x06,0x11,0x11,0x16,0x00, + 0x00,0x00,0x61,0x11,0x14,0x61,0x11,0x10,0x00,0x00,0x00,0x61,0x16,0x11,0x60,0x00, 0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x06,0x76,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x66,0x00,0x13,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00,0xff,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa, - 0xaa,0xaa,0xcc,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54, - 0x54,0x44,0x44,0x46,0x46,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa, - 0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54, - 0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xde,0xee,0xee,0xee,0xae,0xaa, - 0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0xff,0x33,0x35,0x35,0x35,0x55,0x55, - 0x45,0x45,0x44,0x44,0x64,0x66,0x40,0x60,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea, - 0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53,0x53,0x55,0x55, - 0x54,0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa, - 0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55, - 0x54,0x54,0x44,0x44,0x64,0x64,0x04,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xff,0x0d,0xdd,0xdd,0xed,0xee,0xee, - 0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x53,0x55,0x55, - 0x54,0x55,0x45,0x44,0x44,0x44,0x64,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea, - 0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x35, - 0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xee, - 0xaa,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55, - 0x55,0x45,0x55,0x44,0x44,0x46,0x46,0x46,0x06,0xff,0x00,0x00,0x00,0xa0,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xde,0xee,0xee, - 0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35, - 0x55,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x60,0x00,0x00,0x00,0xa0,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee, - 0xee,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35, - 0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x46,0x64,0x60,0x60,0x00,0x00,0xa0,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee, - 0xea,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0xff,0x33,0x33,0x33,0x33,0x35,0x35, - 0x53,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x00,0x00,0x00,0xa0,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xed, - 0xee,0xee,0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53, - 0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x46,0x66,0x00,0x00,0x00,0xa0,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee, - 0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35, - 0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x60,0x00,0x00,0xa0,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb4,0x00,0x00,0xa0,0x0d,0xdd,0xdd, - 0xde,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xac,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33, - 0x33,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x66,0x66,0x00,0x00,0x00,0xa0, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00, - 0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00, - 0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x21,0x00,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xaa,0x22,0xaa,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x84,0x00,0x00,0xa0,0x00,0x21,0x00,0xff,0xa0,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa, + 0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55, + 0x55,0x57,0x77,0x77,0x77,0x44,0x44,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea, + 0xaa,0xaa,0xad,0xad,0xdd,0xdd,0x3d,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55, + 0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea, + 0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0xd3,0x33,0x33,0x33,0xff,0x33,0x38,0x88,0x88,0x58, + 0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea, + 0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x85, + 0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee, + 0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xd3,0x3d,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58, + 0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xff,0x0b,0xbb,0xbe,0xbe,0xee, + 0xae,0xae,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88, + 0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee, + 0xee,0xaa,0xaa,0xaa,0xda,0xda,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88, + 0x85,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe,0xee, + 0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88, + 0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0xff,0x00,0x00,0x00,0xa0,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee, + 0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88, + 0x88,0x58,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe, + 0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88, + 0x88,0x85,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee, + 0xee,0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xd3,0x33,0xff,0x33,0x33,0x33,0x33,0x38, + 0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe, + 0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83, + 0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb, + 0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38, + 0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb4,0x00,0x00,0xa0,0x0b,0xbb, + 0xbb,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33, + 0x33,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x44,0x40,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21, + 0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0, + 0x00,0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xa0,0x00,0x21,0x00,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xaa,0x22,0xaa,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I4_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 48, - .data_size = 2532, + .data_size = 2549, .data = test_I4_RLE_align1_map, }; diff --git a/tests/test_images/stride_align1/RLE/test_I8.bin b/tests/test_images/stride_align1/RLE/test_I8.bin index e04337f42..39f378880 100644 Binary files a/tests/test_images/stride_align1/RLE/test_I8.bin and b/tests/test_images/stride_align1/RLE/test_I8.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_I8_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_I8_RLE_align1.c index f5dcd3aed..62aa8d97e 100644 --- a/tests/test_images/stride_align1/RLE/test_I8_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_I8_RLE_align1.c @@ -22,60 +22,60 @@ uint8_t test_I8_RLE_align1_map[] = { 0x01,0x00,0x00,0x00,0x32,0x12,0x00,0x00,0xc1,0x16,0x00,0x00,0xff,0x4c,0x70,0x47, 0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff,0x58,0x00,0xff,0xff, - 0xe1,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c,0x00,0xff,0xff, + 0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c,0x00,0xff,0xff, 0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff,0xd0,0x00,0xff,0xff, 0x94,0x00,0xff,0xff,0x13,0x00,0xff,0xff,0x3e,0x00,0xff,0xff,0xc7,0x00,0xff,0xff, 0x72,0x00,0xff,0xff,0x47,0x00,0xff,0xff,0x0b,0x00,0xff,0xff,0x4f,0x00,0xff,0xff, 0xfb,0x00,0xff,0xff,0x83,0x00,0xff,0xff,0xbf,0x00,0xff,0xff,0x36,0x00,0xff,0xff, 0xae,0x00,0xff,0xff,0x9d,0x00,0xff,0xff,0x60,0x00,0xff,0xff,0x24,0x00,0xff,0xff, - 0xea,0xff,0x00,0x00,0x1a,0xff,0x00,0x00,0x93,0x00,0xff,0xff,0xff,0x8b,0x00,0x00, + 0xea,0xff,0x00,0x00,0x1a,0x00,0xff,0xff,0x8b,0xff,0x00,0x00,0xff,0x93,0x00,0x00, 0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00,0xd6,0xff,0x00, 0x00,0x96,0xff,0x00,0x00,0xf9,0xff,0x00,0x00,0x40,0xff,0x00,0x00,0xac,0xff,0x00, 0x00,0xf2,0x00,0xff,0xff,0xd8,0x00,0xff,0xff,0xd9,0x00,0xff,0xff,0x25,0x00,0xff, - 0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0x12,0x00,0xff, - 0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00,0x00,0xac,0x00,0x00, - 0x00,0x02,0x00,0x00,0x00,0xde,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x6c,0x00,0x00, - 0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00,0x00,0xbc,0x00,0x00, - 0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0xff,0x50,0xff, - 0x00,0x00,0xa7,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xd3,0x00,0x00,0x00,0x0a,0x00, - 0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xfa,0x00,0x00,0x00,0xc1,0x00, - 0x00,0x00,0x06,0x00,0x00,0x00,0xf7,0x00,0x00,0x00,0xd0,0x00,0xff,0xff,0x46,0x00, - 0xff,0xff,0x71,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00, - 0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00, - 0x00,0x00,0xc5,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00,0x00,0x00,0x0d,0x00, - 0x00,0x00,0xb4,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc,0x00, - 0x00,0x00,0xf9,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0xff,0x00,0x00,0x2a, - 0x00,0x00,0x00,0x6f,0x00,0xff,0xff,0x3f,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x3c, - 0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0xb8, - 0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x5c, - 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x7a, - 0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x55, - 0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0, - 0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e, - 0x00,0x00,0x00,0x89,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x92,0xff,0x00,0x00,0x00, - 0xc4,0x00,0xff,0xff,0x03,0x00,0x00,0x00,0x28,0x00,0xff,0xff,0xf3,0x00,0xff,0xff, - 0x57,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0x4e,0x00,0x00,0x00,0x72,0x00,0x00,0x00, - 0x4c,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0x44,0x00,0x00,0x00, - 0xc8,0x00,0x00,0x00,0xb2,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca,0x00,0x00,0x00, - 0x52,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x53,0x00,0x00,0x00,0x97,0x00,0x00,0x00, - 0x76,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x88,0x00,0x00,0x00, - 0x58,0x00,0x00,0x00,0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00, + 0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0xfa,0x00,0x00, + 0x00,0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00, + 0x00,0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xdf,0x00,0x00,0x00,0x14,0x00,0x00, + 0x00,0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00, + 0x00,0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0xff,0x50,0x00, + 0xff,0xff,0x0a,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xa7,0xff,0x00,0x00,0xd3,0x00, + 0x00,0x00,0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xc5,0x00, + 0x00,0x00,0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xd0,0x00, + 0xff,0xff,0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0xdd,0x00, + 0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00, + 0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00, + 0x00,0x00,0x0d,0x00,0x00,0x00,0xb5,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc,0x00, + 0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x6f,0x00,0xff,0x00,0x00,0x2a, + 0x00,0xff,0xff,0x3f,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0x0c, + 0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x43, + 0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x52,0x00,0x00,0x00,0x89,0x00,0x00,0x00,0x5c, + 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x26, + 0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0xbe, + 0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x30, + 0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x33, + 0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x92,0x00,0xff,0xff,0x57,0xff,0x00,0xff,0xff, + 0xf3,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0xf6,0x00,0x00,0x00, + 0x4e,0x00,0x00,0x00,0x4c,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x18,0x00,0x00,0x00, + 0xc8,0x00,0x00,0x00,0x35,0x00,0x00,0x00,0xb3,0x00,0x00,0x00,0xe9,0x00,0x00,0x00, + 0xca,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x7b,0x00,0x00,0x00,0x97,0x00,0x00,0x00, + 0xda,0x00,0x00,0x00,0x76,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x55,0x00,0x00,0x00, + 0x7a,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x56,0x00,0x00,0x00,0x58,0x00,0x00,0x00, + 0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xd9,0x00,0x00,0x00, 0xcc,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff, 0xff,0xff,0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xc3,0xff,0x00,0xff,0x00,0xff, 0x87,0xff,0x00,0xff,0x0f,0xff,0x02,0xff,0x00,0xff,0x00,0xff,0xee,0xff,0x5c,0xff, 0x00,0xff,0x4b,0xff,0x00,0xff,0x00,0xff,0x98,0xff,0x00,0xff,0x76,0xff,0x00,0xff, - 0x20,0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0x00,0xff,0x54,0xff,0xb2,0xff, - 0x00,0xff,0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff, + 0x20,0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0xb2,0xff,0x00,0xff,0x00,0xff, + 0x54,0xff,0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff, 0xdd,0xff,0x00,0xff,0x31,0xff,0x00,0xff,0xcc,0xff,0xe5,0xff,0x00,0xff,0xa1,0xff, - 0x00,0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x6d,0xff,0x00,0xff,0x90,0xff, - 0x00,0xff,0x8f,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0xff,0x00,0xff,0x24, - 0xff,0x00,0xff,0x00,0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29, - 0xff,0x00,0xff,0xf6,0xff,0x00,0xff,0xf7,0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x14, + 0x00,0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x8f,0xff,0x00,0xff,0x6d,0xff, + 0x00,0xff,0x90,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0xff,0x00,0xff,0x00, + 0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff,0xf6, + 0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x24,0xff,0x00,0xff,0x14,0xff,0x00,0xff,0xf7, 0xff,0x00,0xff,0x00,0xff,0xcb,0xff,0x35,0xff,0x00,0xff,0x00,0xff,0xdc,0xff,0x00, 0xff,0x43,0xff,0xe6,0xff,0x00,0xff,0xb1,0xff,0x00,0xff,0x00,0xff,0x53,0xff,0x17, - 0xff,0x00,0xff,0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x00, - 0xff,0x21,0xff,0x00,0xff,0x99,0xff,0x5d,0xff,0x00,0xff,0x47,0xff,0x00,0xff,0x28, - 0xff,0x00,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff, + 0xff,0x00,0xff,0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x25, + 0xff,0x00,0xff,0x00,0xff,0x21,0xff,0x00,0xff,0x99,0xff,0x47,0xff,0x00,0xff,0x5d, + 0xff,0x00,0xff,0x28,0xff,0x00,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff, 0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, @@ -96,24 +96,24 @@ uint8_t test_I8_RLE_align1_map[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e, - 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0xff,0x1d,0x00,0x00,0x00,0x00,0x00,0x00, - 0x45,0x21,0x21,0x45,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0, + 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e, + 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0xff,0x1d,0x00,0x00,0x00,0x00,0x00,0x00, + 0x46,0x21,0x21,0x46,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0, 0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x40,0x9e, - 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x40,0x1d,0x00,0x00,0x00,0x00,0x00, + 0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x42,0x9e, + 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x42,0x1d,0x00,0x00,0x00,0x00,0x00, 0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0xff,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1e,0x9e, - 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x00,0x00,0x00,0x00, + 0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1f,0x9e, + 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x00,0x00,0x00,0x00, 0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0, 0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, 0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x22,0x9e,0x9e, 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x00, - 0x00,0x45,0x21,0x21,0x45,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0, + 0x00,0x46,0x21,0x21,0x46,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c, 0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x24,0x9e, @@ -133,7 +133,7 @@ uint8_t test_I8_RLE_align1_map[] = { 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9f,0x9f,0x9f, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00, 0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25, - 0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0, + 0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0, 0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9f,0x9f,0x9f, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00, @@ -152,18 +152,18 @@ uint8_t test_I8_RLE_align1_map[] = { 0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0, 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9f, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00, - 0x00,0x00,0x00,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, - 0x1e,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0xff,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00, + 0x00,0x00,0x00,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, + 0x1f,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0xff,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00, 0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00, 0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x00,0x00,0x00,0x00,0x1d,0x40,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, - 0x40,0x1d,0x00,0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x1d,0x42,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, + 0x42,0x1d,0x00,0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00, 0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00, 0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xc7,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, - 0x1e,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00, + 0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, + 0x1f,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00, 0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, 0x18,0x00,0xb8,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x00,0x00,0x00,0x00,0x00, @@ -171,143 +171,143 @@ uint8_t test_I8_RLE_align1_map[] = { 0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0x00,0x9d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0xa0,0x9d,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f, - 0x81,0x62,0x70,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x2e,0x9c,0x9d, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30, + 0x7c,0x7b,0x6f,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x2e,0x9c,0x9d, 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00, - 0x00,0x62,0x4e,0x35,0x9c,0x9c,0x9c,0x9c,0x46,0x7f,0x6b,0x4f,0x00,0x35,0x00,0x9c, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x8c,0x9c, - 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3b,0x43,0x00,0x34,0x00,0x9c,0x9d, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x8d,0x9c,0x9c, - 0x9c,0x9c,0x55,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x66,0x00,0x34,0x00,0x9d,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x50,0x9c,0x9c,0x50, - 0x75,0x53,0x34,0x63,0x35,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x33,0x00,0xad,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x38, - 0x00,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x60,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x36,0x93,0x3b,0x35,0x50,0x3a,0x72,0x51,0x00,0x23,0x00,0xae,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x74,0x4d,0x4d,0x37, - 0x00,0x00,0x00,0x00,0x53,0x9c,0x9c,0x9c,0x9c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x91,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x55,0x6f,0x00,0x22,0x00,0xaf,0x9d, + 0x00,0x88,0x50,0x4f,0x9c,0x9c,0x9c,0x9c,0x2f,0x47,0x6b,0x51,0x00,0x35,0x00,0x9c, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x89,0x9c, + 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3c,0x44,0x00,0x34,0x00,0x9c,0x9d, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x8a,0x9c,0x9c, + 0x9c,0x9c,0x56,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x62,0x00,0x34,0x00,0x9d,0x9d,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x52,0x9c,0x9c,0x52, + 0x74,0x55,0x35,0x4e,0x4f,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x33,0x00,0xad,0x9d,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x39, + 0x00,0x00,0x00,0x00,0x67,0x9c,0x9c,0x9c,0x9c,0x5e,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x37,0x90,0x3c,0x4f,0x52,0x3b,0x70,0x53,0x00,0x23,0x00,0xae,0x9d,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x73,0x4f,0x4f,0x38, + 0x00,0x00,0x00,0x00,0x55,0x9c,0x9c,0x9c,0x9c,0x6a,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x69,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x56,0x8d,0x00,0x22,0x00,0xaf,0x9d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x7b,0x36,0x36,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x37,0x9c,0x9c,0x77,0x56,0x3c,0x78,0x9c,0x9c,0x9c,0x51,0x00,0x21,0x00, + 0x00,0x00,0x00,0x79,0x37,0x37,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x38,0x9c,0x9c,0x76,0x57,0x3d,0x8f,0x9c,0x9c,0x9c,0x53,0x00,0x21,0x00, 0xaf,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00, - 0x4f,0x8f,0x38,0x6e,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x95,0x9c,0x9c,0x59,0x00,0x00,0x2f,0x52,0x9c,0x9c,0x56,0x00, + 0x51,0x69,0x39,0x6e,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x91,0x9c,0x9c,0x72,0x00,0x00,0x30,0x54,0x9c,0x9c,0x57,0x00, 0x14,0x00,0xbc,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x6d,0x8e, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x6d,0x8b, 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x59,0x38,0x38,0x2f,0x00,0x00,0x00,0x54,0x9c,0x9c,0x66,0x00,0x21, - 0x00,0xbc,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x57, - 0x35,0x9c,0x9c,0x9c,0x9c,0x6a,0x47,0x67,0x67,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x73,0x6f,0x56,0x20,0x50,0x9c,0x9c,0x33, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x98,0x7a,0x37,0x68,0x00,0x14,0x00, + 0x00,0x00,0x00,0x72,0x39,0x39,0x30,0x00,0x00,0x00,0x47,0x9c,0x9c,0x62,0x00,0x21, + 0x00,0xbc,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x58, + 0x4f,0x9c,0x9c,0x9c,0x9c,0x68,0x48,0x64,0x64,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x92,0x93,0x57,0x20,0x52,0x9c,0x9c,0x34, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x97,0x78,0x38,0x65,0x00,0x14,0x00, 0xbd,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x71,0x9c, - 0x9c,0x9c,0x9c,0x71,0x34,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x4f,0x94,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x33,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x49,0x55,0x5a,0x5b,0x5c,0x59,0x00,0x13,0x00, - 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x3b,0x9c, - 0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x3c,0x9c,0x9c,0x9c,0x3b,0x76,0x96,0x6e,0x9c,0x9c,0x33,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9c,0x7a,0x00,0x99,0x9c,0x58,0x00,0x00,0x00, + 0x9c,0x9c,0x9c,0x71,0x35,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x51,0x94,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x34,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x4a,0x56,0x5a,0x5b,0x2f,0x67,0x00,0x13,0x00, + 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x3c,0x9c, + 0x9c,0x9c,0x3b,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x3d,0x9c,0x9c,0x9c,0x3c,0x57,0x6a,0x6e,0x9c,0x9c,0x34,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9c,0x78,0x00,0x98,0x9c,0x59,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00, - 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x4a,0x9c, - 0x9c,0x9c,0x8b,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x34,0x52,0x9c,0x9c,0x76,0x00,0x00,0x00,0x47,0x9c,0x9c,0x33,0x00, - 0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x9a,0x75,0x5d,0x3c,0x9c,0x4a,0x00,0x13, - 0x00,0xbd,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x58, - 0x9c,0x9c,0x9c,0x9c,0x60,0x88,0x68,0x37,0x6c,0x9c,0x9c,0x9c,0x9c,0x4e,0x00,0x00, - 0x00,0x00,0x00,0x00,0x90,0x9c,0x9c,0x9c,0x73,0x00,0x00,0x34,0x3a,0x9c,0x9c,0x33, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9b,0x9c,0x35,0x78,0x9c,0x4a,0x00,0x13, - 0x00,0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x39, - 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5b,0x4d,0x87, - 0x00,0x00,0x00,0x00,0x48,0x49,0x9c,0x9c,0x3a,0x97,0x5d,0x54,0x9c,0x9c,0x9c,0x47, - 0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x9c,0x38,0x00,0x79,0x9c,0x4a,0x00,0x00, + 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x4b,0x9c, + 0x9c,0x9c,0x87,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x35,0x54,0x9c,0x9c,0x75,0x00,0x00,0x00,0x48,0x9c,0x9c,0x34,0x00, + 0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x99,0x74,0x5c,0x3d,0x9c,0x4b,0x00,0x13, + 0x00,0xbd,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x59, + 0x9c,0x9c,0x9c,0x9c,0x5e,0x86,0x65,0x38,0x6c,0x9c,0x9c,0x9c,0x9c,0x50,0x00,0x00, + 0x00,0x00,0x00,0x00,0x8c,0x9c,0x9c,0x9c,0x95,0x00,0x00,0x35,0x3b,0x9c,0x9c,0x34, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9b,0x9c,0x36,0x9a,0x9c,0x4b,0x00,0x13, + 0x00,0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x3a, + 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x2f,0x4f,0x84, + 0x00,0x00,0x00,0x00,0x49,0x4a,0x9c,0x9c,0x3b,0x96,0x5c,0x47,0x9c,0x9c,0x9c,0x48, + 0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x9c,0x39,0x00,0x77,0x9c,0x4b,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00, - 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x69, - 0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x58,0x54,0x9c,0x9c,0x9c,0x9c,0x9c,0x39, - 0x00,0x00,0x00,0x00,0x00,0x4e,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c, - 0x9c,0x8f,0x65,0x00,0x00,0x00,0x00,0x00,0x39,0x9c,0x3a,0x39,0x74,0x9c,0x35,0x70, + 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x66, + 0x48,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x89,0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x3a, + 0x00,0x00,0x00,0x00,0x00,0x50,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c, + 0x9c,0x8f,0x63,0x00,0x00,0x00,0x00,0x00,0x3a,0x9c,0x3b,0x3a,0x73,0x9c,0x36,0x6f, 0x00,0x12,0x00,0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0x00,0x43,0x7e,0x49,0x9c,0x9c,0x9c,0x52,0x3c,0x69,0x86,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x39,0x00,0x00,0x00,0x00,0x00,0x48,0x92,0x46,0x9c,0x9c,0x6c,0x6b,0x5d,0x9c, - 0x9c,0x9c,0x9c,0x65,0x00,0x00,0x00,0x00,0x00,0x53,0x3b,0x9c,0x5b,0x3c,0x5c,0x9c, - 0x72,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00, + 0x00,0x00,0x44,0x7d,0x82,0x9c,0x9c,0x9c,0x54,0x3d,0x66,0x85,0x9c,0x9c,0x9c,0x9c, + 0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x49,0x8e,0x2f,0x9c,0x9c,0x6c,0x6b,0x5c,0x9c, + 0x9c,0x9c,0x9c,0x63,0x00,0x00,0x00,0x00,0x00,0x55,0x3c,0x9c,0x2f,0x3d,0x2f,0x9c, + 0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00, 0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x43,0x89,0x85,0x63,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7b,0x51,0x79,0x48,0x00,0x00,0x00, - 0x00,0x00,0x00,0x8b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x7b,0x00,0x16, + 0x00,0x00,0x00,0x00,0x44,0x4e,0x83,0x4e,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0x53,0x77,0x49,0x00,0x00,0x00, + 0x00,0x00,0x00,0x8b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x79,0x00,0x16, 0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x44,0x00, - 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc5,0xb6, - 0xad,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4, - 0xcb,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, - 0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05,0x4c, + 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc7,0xb6, + 0xad,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4, + 0xcb,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, + 0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x04,0x4d, 0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00, - 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc5,0xb6, - 0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4, - 0xb1,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, - 0xff,0x0a,0x1c,0x04,0x29,0x0b,0x64,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x15,0x05, - 0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00, - 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc4, - 0xb6,0xad,0xa2,0xaf,0xb7,0xbc,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab, - 0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1, - 0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x44,0x06,0x32,0x01,0x31,0x0c,0x1f,0x15,0x05, + 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc7,0xb6, + 0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4, + 0xb1,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, + 0xff,0x0a,0x1c,0x05,0x29,0x0b,0x61,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x15,0x04, + 0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00, + 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc3, + 0xb6,0xad,0xa2,0xae,0xb7,0xba,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab, + 0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1, + 0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x45,0x06,0x33,0x01,0x32,0x0c,0x1e,0x15,0x04, 0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00, - 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc5, - 0xff,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc2,0xa5,0xa4, - 0xab,0xc6,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1, - 0xa1,0x41,0x82,0x1c,0x04,0x29,0x0b,0x0f,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d, - 0x05,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x1b,0x07,0x5e,0x12,0x02,0x00, + 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc7, + 0xff,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc1,0xa5,0xa4, + 0xab,0xc4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1, + 0xa1,0x41,0x7f,0x1c,0x05,0x29,0x0b,0x0f,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e, + 0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x1b,0x07,0x5d,0x12,0x02,0x00, 0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00, - 0xc4,0xb6,0xad,0xa2,0xcd,0xc1,0xbb,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5,0xa4, - 0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1, - 0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d, - 0xff,0x05,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02, + 0xc3,0xb6,0xad,0xa2,0xcd,0xc0,0xbc,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5,0xa4, + 0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1, + 0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e, + 0xff,0x04,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02, 0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xd5,0xa8,0xb2,0xd7,0xc2,0xa5, - 0xa4,0xab,0xb4,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1, - 0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c,0x1f, - 0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x3e,0x02, + 0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xd7,0xa8,0xb2,0xd8,0xc1,0xa5, + 0xa4,0xab,0xb4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1, + 0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c,0x1e, + 0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x40,0x02, 0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5, - 0xff,0xa4,0xab,0xb4,0xb1,0xce,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1, - 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c, - 0x2e,0x3d,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12, + 0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5, + 0xff,0xa4,0xab,0xb4,0xb1,0xce,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1, + 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c, + 0x2e,0x3e,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12, 0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d, - 0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xbf,0xc7, - 0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1, - 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x64,0x44,0x06,0x32,0x01,0x31,0x0c, - 0x1f,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5e,0x3e, + 0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xd3,0xc6, + 0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1, + 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x61,0x45,0x06,0x33,0x01,0x32,0x0c, + 0x1e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5d,0x40, 0xff,0x80,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xcc,0xad,0xa2,0xaf,0xb7,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf, - 0xc2,0xa5,0xa4,0xd3,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6, - 0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x31, - 0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d, + 0x9d,0x00,0x00,0xc7,0xcc,0xad,0xa2,0xae,0xb7,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5, + 0xc1,0xa5,0xa4,0xd4,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6, + 0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x32, + 0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d, 0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf, - 0xc7,0xa5,0xa4,0xd3,0xc6,0xcb,0xae,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6, - 0xff,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x2a,0x84,0x0f,0x16,0x06,0x18,0x01, - 0x31,0x0c,0x1f,0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x4b,0x0e,0x30,0x09,0x1b,0x07, - 0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xba,0xa7,0xa8,0xc9, - 0xbf,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3, - 0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01, - 0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x13,0x4b,0x61,0x30,0x09,0x1b,0x07, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5, + 0xc6,0xa5,0xa4,0xd4,0xc4,0xcb,0xaf,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6, + 0xff,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x2a,0x81,0x0f,0x16,0x06,0x18,0x01, + 0x32,0x0c,0x1e,0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x4c,0x0e,0x31,0x09,0x1b,0x07, + 0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbb,0xa7,0xa8,0xc9, + 0xc5,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3, + 0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01, + 0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x13,0x4c,0x60,0x31,0x09,0x1b,0x07, 0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0x00,0x9d,0x00,0x00,0xc4,0xcc,0xd8,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8, - 0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xce,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xc8, - 0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32, - 0x01,0x19,0x7d,0x2e,0x15,0x05,0x10,0x08,0x1a,0x03,0x3f,0x4b,0x0e,0x17,0x09,0x1b, + 0xff,0x00,0x9d,0x00,0x00,0xc3,0xcc,0xd9,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8, + 0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xce,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xc8, + 0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33, + 0x01,0x19,0x7a,0x2e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x4c,0x0e,0x17,0x09,0x1b, 0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x9d,0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xb9,0xba,0xa7,0xa8, - 0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8, - 0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18, - 0xf4,0x01,0x19,0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09, + 0x00,0x00,0x9d,0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xb9,0xbb,0xa7,0xa8, + 0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8, + 0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18, + 0xf4,0x01,0x19,0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09, 0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xba,0xa7, - 0xd6,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xc0,0xaa,0xa3,0xd4,0xd1,0xb0, - 0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06, - 0x18,0x01,0x31,0x0c,0x2e,0x15,0x05,0x10,0x08,0x1a,0x83,0x3f,0x11,0x61,0x17,0x09, - 0x1b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbb,0xa7, + 0xd6,0xc9,0xd3,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xbf,0xaa,0xa3,0xd5,0xd1,0xb0, + 0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06, + 0x18,0x01,0x32,0x0c,0x2e,0x15,0x04,0x10,0x08,0x1a,0x7e,0x3f,0x11,0x60,0x17,0x09, + 0x1b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x9d,0x00,0x44,0x00,0x8b,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -316,6 +316,7 @@ uint8_t test_I8_RLE_align1_map[] = { }; const lv_img_dsc_t test_I8_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_L8.bin b/tests/test_images/stride_align1/RLE/test_L8.bin index 830759bf9..3cdff0e37 100644 Binary files a/tests/test_images/stride_align1/RLE/test_L8.bin and b/tests/test_images/stride_align1/RLE/test_L8.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_L8_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_L8_RLE_align1.c index 78d1a6397..c7212e1ba 100644 --- a/tests/test_images/stride_align1/RLE/test_L8_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_L8_RLE_align1.c @@ -251,6 +251,7 @@ uint8_t test_L8_RLE_align1_map[] = { }; const lv_img_dsc_t test_L8_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_L8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_RGB565.bin b/tests/test_images/stride_align1/RLE/test_RGB565.bin index d6fabeb8b..1b299e807 100644 Binary files a/tests/test_images/stride_align1/RLE/test_RGB565.bin and b/tests/test_images/stride_align1/RLE/test_RGB565.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_RGB565A8.bin b/tests/test_images/stride_align1/RLE/test_RGB565A8.bin index 7e6da46be..31787f933 100644 Binary files a/tests/test_images/stride_align1/RLE/test_RGB565A8.bin and b/tests/test_images/stride_align1/RLE/test_RGB565A8.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_RGB565A8_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_RGB565A8_RLE_align1.c index 247ff6746..47f207ece 100644 --- a/tests/test_images/stride_align1/RLE/test_RGB565A8_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_RGB565A8_RLE_align1.c @@ -477,6 +477,7 @@ uint8_t test_RGB565A8_RLE_align1_map[] = { }; const lv_img_dsc_t test_RGB565A8_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_RGB565_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_RGB565_RLE_align1.c index a62ba8a09..eb78d738a 100644 --- a/tests/test_images/stride_align1/RLE/test_RGB565_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_RGB565_RLE_align1.c @@ -412,6 +412,7 @@ uint8_t test_RGB565_RLE_align1_map[] = { }; const lv_img_dsc_t test_RGB565_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_RGB888.bin b/tests/test_images/stride_align1/RLE/test_RGB888.bin index ebf249510..3ca9c54bc 100644 Binary files a/tests/test_images/stride_align1/RLE/test_RGB888.bin and b/tests/test_images/stride_align1/RLE/test_RGB888.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_RGB888_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_RGB888_RLE_align1.c index ba69fba02..8d5a119bd 100644 --- a/tests/test_images/stride_align1/RLE/test_RGB888_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_RGB888_RLE_align1.c @@ -636,6 +636,7 @@ uint8_t test_RGB888_RLE_align1_map[] = { }; const lv_img_dsc_t test_RGB888_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/RLE/test_XRGB8888.bin b/tests/test_images/stride_align1/RLE/test_XRGB8888.bin index bbef6da0d..fdc2b71a8 100644 Binary files a/tests/test_images/stride_align1/RLE/test_XRGB8888.bin and b/tests/test_images/stride_align1/RLE/test_XRGB8888.bin differ diff --git a/tests/test_images/stride_align1/RLE/test_XRGB8888_RLE_align1.c b/tests/test_images/stride_align1/RLE/test_XRGB8888_RLE_align1.c index 7b384bd28..577c288ab 100644 --- a/tests/test_images/stride_align1/RLE/test_XRGB8888_RLE_align1.c +++ b/tests/test_images/stride_align1/RLE/test_XRGB8888_RLE_align1.c @@ -794,6 +794,7 @@ uint8_t test_XRGB8888_RLE_align1_map[] = { }; const lv_img_dsc_t test_XRGB8888_RLE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_XRGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A1.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_A1.bin index 50cffa647..b8e752a41 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_A1.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_A1.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A1_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_A1_NONE_align1.c index a2586e2bb..12d98143f 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_A1_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_A1_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_A1_NONE_align1_map[] = { }; const lv_img_dsc_t test_A1_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A1, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A2.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_A2.bin index e80a931aa..44bf64e23 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_A2.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_A2.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A2_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_A2_NONE_align1.c index 945835c22..eca8e7c2f 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_A2_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_A2_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_A2_NONE_align1_map[] = { }; const lv_img_dsc_t test_A2_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A2, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A4.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_A4.bin index 40081d8b2..b417dd572 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_A4.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_A4.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A4_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_A4_NONE_align1.c index 1b4263dcc..44a78c427 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_A4_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_A4_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_A4_NONE_align1_map[] = { }; const lv_img_dsc_t test_A4_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A4, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A8.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_A8.bin index 71a801e05..5ecbb24b3 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_A8.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_A8.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_A8_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_A8_NONE_align1.c index 356029b54..24e3b449c 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_A8_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_A8_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_A8_NONE_align1_map[] = { }; const lv_img_dsc_t test_A8_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888.bin index ee1505f95..210835b69 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888_NONE_align1.c index a0abdbfdc..950774d0a 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_ARGB8888_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_ARGB8888_NONE_align1_map[] = { }; const lv_img_dsc_t test_ARGB8888_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_ARGB8888, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I1.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_I1.bin index 58c3015d6..b679e1ec3 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_I1.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_I1.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I1_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_I1_NONE_align1.c index 3d5b48ee6..979af1bbf 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_I1_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_I1_NONE_align1.c @@ -20,64 +20,64 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I1_NONE_align1_map[] = { - 0x3f,0xe3,0x94,0xee,0x66,0x0f,0x0f,0x44, + 0x56,0x82,0x0a,0xfa,0x43,0xbe,0xeb,0x3b, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x60,0x00,0x1f,0xff,0xff,0xff,0xe0,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0xf9,0xff,0xff,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0xc0,0x3f,0xef,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x80,0x1f,0xe3,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x00,0x0f,0xc7,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0xef,0xea,0xfe,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0xf0,0xff,0xff,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x0f,0xc3,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x0f,0xc3,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1e,0x00,0x07,0xe7,0xea,0xfe,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0x82,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1c,0x00,0x03,0xf7,0xea,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0x81,0xea,0x82,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0xff,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0x81,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0x00,0xea,0x82,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x60,0x00,0x1e,0x00,0x07,0x00,0xea,0xfe,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0x01,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x00,0x0f,0x81,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x80,0x1f,0xc1,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7f,0xff,0xff,0xf8,0xff,0xff,0xe0,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1e,0x00,0x07,0x00,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x07,0x00,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x1f,0x81,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0xc0,0x1f,0xc3,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7f,0xff,0xff,0xf0,0x7f,0xff,0xe0,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xf8,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7e,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x78,0x01,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7c,0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x70,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x70,0xf0,0x7f,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x71,0xf8,0x7f,0xf4,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x79,0xf8,0x7f,0xc0,0x3f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7f,0xf8,0x7f,0xc6,0x1f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7f,0x00,0x7f,0xcf,0x1f,0xff,0xff,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7c,0x00,0x7f,0xff,0x9f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0x28,0x7f,0xff,0x1f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0xf8,0x7f,0xe0,0x1f,0xf0,0x7f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0xf8,0x7f,0xc7,0x1f,0xf7,0x7f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x61,0xf8,0x7f,0x8f,0x1f,0xff,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0xf0,0x7f,0x8f,0x9f,0xf8,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0x00,0x1f,0x87,0x0f,0xf7,0x7f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x78,0x08,0x1f,0xc0,0x07,0xf3,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7c,0x1c,0x1f,0xe1,0x87,0xf9,0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0xf8,0x7f,0xf0,0x7f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x71,0xf8,0x3f,0xc0,0x3f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7f,0xf8,0x7f,0xc4,0x1f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7e,0x00,0x3f,0xcf,0x0f,0xff,0xff,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x78,0x00,0x7f,0xcf,0x0f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x3f,0xfd,0x0f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0xf8,0x7f,0xe0,0x0f,0xf0,0x7f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0xf8,0x3f,0xc1,0x0f,0xf3,0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0xf8,0x7f,0x87,0x0f,0xfe,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0xf0,0x3f,0x8f,0x0f,0xf0,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x1f,0x86,0x0f,0xf3,0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x1f,0x80,0x07,0xf2,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x78,0x1c,0x1f,0xc1,0x87,0xf0,0x1f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x00,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x05,0x55,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x12,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x04,0xaa,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x2a,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x00,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x2b,0x75,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x04,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x22,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x0a,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x11,0x5b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x42,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x15,0x5d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x00,0x2b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x01,0x7f,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x01,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x01,0x56,0xd7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x0a,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0xaa,0xab,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x0a,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x02,0xaa,0xd6,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x15,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0xaa,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x05,0x6d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x01,0x55,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x2a,0xbb,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x95,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x56,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -86,6 +86,7 @@ uint8_t test_I1_NONE_align1_map[] = { }; const lv_img_dsc_t test_I1_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I1, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I2.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_I2.bin index cd07bc283..2ac2f6426 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_I2.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_I2.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I2_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_I2_NONE_align1.c index 54265e7e7..1cbc1a9d6 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_I2_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_I2_NONE_align1.c @@ -20,72 +20,73 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I2_NONE_align1_map[] = { - 0x5a,0x00,0x3d,0xf4,0x23,0xaf,0xaf,0x08,0x60,0xff,0xf7,0xdf,0x37,0xff,0x18,0xff, + 0x5a,0x00,0x3d,0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x55,0x55,0x55,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x40,0x00,0x01,0x55,0x54,0x15,0x54,0x40,0x00,0x00,0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x00,0x00,0x00,0x55,0x50,0x05,0x54,0x45,0x55,0x55,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x50,0x05,0x54,0x44,0x00,0x00,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x54,0x15,0x54,0x44,0x55,0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x40,0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x45,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x50,0x05,0x54,0x44,0x44,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x40,0x01,0x54,0x44,0x45,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44,0x40,0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44,0x55,0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0x44,0x00,0x00,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0x45,0x55,0x55,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x55,0x00,0x00,0x00,0x55,0x40,0x01,0x54,0x40,0x00,0x00,0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x55,0x40,0x00,0x01,0x55,0x50,0x05,0x54,0x55,0x55,0x55,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x50,0x00,0x05,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x55,0x40,0x05,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x01,0x55,0x40,0x05,0x55,0x50,0x00,0x01,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x40,0x05,0x55,0x40,0x00,0x01,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x54,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55,0x55,0x55,0x55,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x40,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x05,0x55,0x55,0x40,0x00,0x55,0x55,0x50,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x15,0x40,0x05,0x55,0x50,0x00,0x00,0x55,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x00,0x00,0x55,0x55,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x15,0x00,0x55,0x55,0x54,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x14,0x00,0x05,0x55,0x40,0x55,0x00,0x55,0x55,0x00,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x01,0x55,0x40,0x04,0x00,0x55,0x54,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x00,0x55,0x40,0x00,0x00,0x15,0x55,0x04,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x40,0x00,0x40,0x01,0x55,0x50,0x00,0x40,0x15,0x55,0x00,0x01,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x66,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0xa6,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x66,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0xaa,0xaa,0xaa,0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x80,0x00,0x02,0xaa,0xa8,0x2a,0xa8,0x80,0x00,0x00,0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x00,0x00,0x00,0xaa,0xa0,0x0a,0xa8,0x8a,0xaa,0xaa,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa0,0x0a,0xa8,0x88,0x00,0x00,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa8,0x2a,0xa8,0x88,0xaa,0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x80,0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x8a,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0xa0,0x0a,0xa8,0x88,0x88,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x80,0x02,0xa8,0x88,0x8a,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88,0x80,0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88,0xaa,0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0x88,0x00,0x00,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0x8a,0xaa,0xaa,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xaa,0x00,0x00,0x00,0xaa,0x80,0x02,0xa8,0x80,0x00,0x00,0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xaa,0x80,0x00,0x02,0xaa,0xa0,0x0a,0xa8,0xaa,0xaa,0xaa,0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xa0,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0xaa,0x80,0x0a,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x02,0xaa,0x80,0x0a,0xaa,0xa0,0x00,0x02,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x02,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xa8,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x80,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x0a,0xaa,0xaa,0x80,0x00,0xaa,0xaa,0xa0,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x2a,0x80,0x0a,0xaa,0xa0,0x00,0x00,0xaa,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x00,0xaa,0xaa,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x2a,0x00,0xaa,0xaa,0xa8,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x28,0x00,0x0a,0xaa,0x80,0xaa,0x00,0xaa,0xaa,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x02,0xaa,0x80,0x08,0x00,0xaa,0xa8,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x00,0xaa,0x80,0x00,0x00,0x2a,0xaa,0x08,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x80,0x00,0x80,0x02,0xaa,0xa0,0x00,0x80,0x2a,0xaa,0x00,0x02,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xfd,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0xa6,0x6a,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x9a,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x95,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0x9a,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x56,0x65,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0x9a,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I2_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I2, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I4.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_I4.bin index 8bec5c7c9..d42b0587a 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_I4.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_I4.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I4_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_I4_NONE_align1.c index 90b5ded95..910a19be4 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_I4_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_I4_NONE_align1.c @@ -20,67 +20,67 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I4_NONE_align1_map[] = { - 0x4c,0x70,0x47,0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0xfc,0x00,0xff,0xf7,0xf4, - 0x00,0xff,0xff,0x65,0x00,0xff,0xff,0xa9,0x41,0xa5,0xa5,0x30,0x00,0x00,0x00,0x75, - 0x00,0x00,0x00,0xc2,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xff,0xff,0xff,0xff, - 0x00,0xff,0x88,0xff,0xcc,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x00,0x00,0xff,0xff, + 0x4c,0x70,0x47,0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc, + 0x3e,0x8f,0x8f,0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60, + 0x00,0xff,0xff,0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff, + 0xff,0xff,0xff,0xff,0x00,0xff,0x7f,0xff,0x77,0xff,0x00,0xff,0x00,0x00,0xff,0xff, 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x69,0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x09,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x06,0x92,0x29,0x60,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x62,0x22,0x22,0x26,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x62,0x22,0x22,0x26,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x00,0x69,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x06,0x92,0x29,0x60,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x69,0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x49,0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x09,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x42,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x04,0x92,0x29,0x40,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x42,0x22,0x22,0x24,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x42,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x42,0x22,0x22,0x24,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x00,0x49,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x04,0x92,0x29,0x40,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x00,0x06,0x66,0x00,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x06,0x78,0x11,0x11,0x18,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x81,0x11,0x11,0x11,0x11,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x11,0x11,0x60,0x06,0x81,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x81,0x18,0x00,0x00,0x71,0x11,0x17,0x00,0x00,0x00,0x00,0x07,0x88,0x18,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x88,0x87,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x11,0x11,0x11,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x17,0x78,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x78,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x60,0x00,0x11,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x68,0x11,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x06,0x88,0x00,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x11,0x11,0x11,0x88,0x81,0x11,0x17,0x00,0x00,0x00,0x00,0x00,0x77,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x07,0x77,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x07,0x11,0x11,0x70,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x00,0x71,0x11,0x11,0x11,0x18,0x00,0x00,0x00,0x00,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x08,0x11,0x18,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x18,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x17,0x07,0x18,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x08,0x11,0x18,0x00,0x00,0x61,0x11,0x17,0x00,0x00,0x00,0x01,0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x67,0x77,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x08,0x11,0x11,0x70,0x67,0x11,0x11,0x17,0x00,0x00,0x00,0x61,0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x81,0x88,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x07,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x87,0x00,0x00,0x01,0x11,0x87,0x78,0x11,0x18,0x60,0x00,0x00,0x07,0x18,0x06,0x18,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x81,0x11,0x11,0x11,0x88,0x11,0x11,0x17,0x00,0x00,0x07,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x07,0x18,0x78,0x18,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x07,0x11,0x11,0x17,0x07,0x11,0x11,0x17,0x00,0x00,0x00,0x71,0x11,0x17,0x71,0x11,0x10,0x00,0x00,0x00,0x81,0x17,0x11,0x80,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x06,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x04,0x44,0x00,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x04,0x61,0x11,0x11,0x16,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x61,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x11,0x40,0x04,0x11,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x61,0x11,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x61,0x16,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x04,0x11,0x11,0x11,0x11,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x16,0x61,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x46,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x40,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x04,0x66,0x00,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x11,0x11,0x66,0x61,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x66,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x66,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x60,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x00,0x61,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x16,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x16,0x06,0x16,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x01,0x11,0x60,0x00,0x61,0x16,0x00,0x00,0x00,0x00,0x44,0x66,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x60,0x46,0x11,0x11,0x16,0x00,0x00,0x00,0x41,0x11,0x40,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x14,0x00,0x00,0x01,0x11,0x14,0x61,0x11,0x11,0x40,0x00,0x00,0x06,0x16,0x04,0x11,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x61,0x11,0x11,0x11,0x61,0x11,0x11,0x16,0x00,0x00,0x06,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x06,0x11,0x66,0x11,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x06,0x11,0x11,0x16,0x06,0x11,0x11,0x16,0x00,0x00,0x00,0x61,0x11,0x14,0x61,0x11,0x10,0x00,0x00,0x00,0x61,0x16,0x11,0x60,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x46,0x46,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xde,0xee,0xee,0xee,0xae,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55,0x55,0x45,0x45,0x44,0x44,0x64,0x66,0x40,0x60,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53,0x53,0x55,0x55,0x54,0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x64,0x64,0x04,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xed,0xee,0xee,0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x53,0x55,0x55,0x54,0x55,0x45,0x44,0x44,0x44,0x64,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xee,0xaa,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55,0x55,0x45,0x55,0x44,0x44,0x46,0x46,0x46,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xde,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xee,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x46,0x64,0x60,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x35,0x35,0x53,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xed,0xee,0xee,0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x46,0x66,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xde,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xac,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x33,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x66,0x66,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x44,0x44,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0x3d,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0xd3,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x85,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xd3,0x3d,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xae,0xae,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xda,0xda,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x85,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x44,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -89,6 +89,7 @@ uint8_t test_I4_NONE_align1_map[] = { }; const lv_img_dsc_t test_I4_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I4, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I8.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_I8.bin index 29eb7e624..7006c7be1 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_I8.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_I8.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_I8_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_I8_NONE_align1.c index 97570cb6b..c6a137168 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_I8_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_I8_NONE_align1.c @@ -21,60 +21,60 @@ LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I8_NONE_align1_map[] = { 0x4c,0x70,0x47,0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff,0x58, - 0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c, + 0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c, 0x00,0xff,0xff,0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff,0xd0, 0x00,0xff,0xff,0x94,0x00,0xff,0xff,0x13,0x00,0xff,0xff,0x3e,0x00,0xff,0xff,0xc7, 0x00,0xff,0xff,0x72,0x00,0xff,0xff,0x47,0x00,0xff,0xff,0x0b,0x00,0xff,0xff,0x4f, 0x00,0xff,0xff,0xfb,0x00,0xff,0xff,0x83,0x00,0xff,0xff,0xbf,0x00,0xff,0xff,0x36, 0x00,0xff,0xff,0xae,0x00,0xff,0xff,0x9d,0x00,0xff,0xff,0x60,0x00,0xff,0xff,0x24, - 0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0xff,0x00,0x00,0x93,0x00,0xff,0xff,0x8b, + 0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0x00,0xff,0xff,0x8b,0xff,0x00,0x00,0x93, 0x00,0x00,0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00,0xd6, 0xff,0x00,0x00,0x96,0xff,0x00,0x00,0xf9,0xff,0x00,0x00,0x40,0xff,0x00,0x00,0xac, 0xff,0x00,0x00,0xf2,0x00,0xff,0xff,0xd8,0x00,0xff,0xff,0xd9,0x00,0xff,0xff,0x25, - 0x00,0xff,0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0x12, - 0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00,0x00,0xac, - 0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xde,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x6c, - 0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00,0x00,0xbc, - 0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0x50, - 0xff,0x00,0x00,0xa7,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xd3,0x00,0x00,0x00,0x0a, - 0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xfa,0x00,0x00,0x00,0xc1, - 0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf7,0x00,0x00,0x00,0xd0,0x00,0xff,0xff,0x46, - 0x00,0xff,0xff,0x71,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01, - 0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08, - 0x00,0x00,0x00,0xc5,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00,0x00,0x00,0x0d, - 0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc, - 0x00,0x00,0x00,0xf9,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x2a, - 0x00,0x00,0x00,0x6f,0x00,0xff,0xff,0x3f,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x3c, - 0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0xb8, - 0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x5c, - 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x7a, - 0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x55, - 0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0, - 0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e, - 0x00,0x00,0x00,0x89,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x92,0x00,0x00,0x00,0xc4, - 0x00,0xff,0xff,0x03,0x00,0x00,0x00,0x28,0x00,0xff,0xff,0xf3,0x00,0xff,0xff,0x57, - 0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0x4e,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x4c, - 0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0xc8, - 0x00,0x00,0x00,0xb2,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca,0x00,0x00,0x00,0x52, - 0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x53,0x00,0x00,0x00,0x97,0x00,0x00,0x00,0x76, - 0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x88,0x00,0x00,0x00,0x58, - 0x00,0x00,0x00,0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xcc, + 0x00,0xff,0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0xfa, + 0x00,0x00,0x00,0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad, + 0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xdf,0x00,0x00,0x00,0x14, + 0x00,0x00,0x00,0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4, + 0x00,0x00,0x00,0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x50, + 0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xa7,0xff,0x00,0x00,0xd3, + 0x00,0x00,0x00,0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xc5, + 0x00,0x00,0x00,0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xd0, + 0x00,0xff,0xff,0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0xdd, + 0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37, + 0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c, + 0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0xb5,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc, + 0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x6f,0x00,0x00,0x00,0x2a, + 0x00,0xff,0xff,0x3f,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0x0c, + 0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x43, + 0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x52,0x00,0x00,0x00,0x89,0x00,0x00,0x00,0x5c, + 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x26, + 0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0xbe, + 0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x30, + 0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x33, + 0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x92,0x00,0xff,0xff,0x57,0x00,0xff,0xff,0xf3, + 0x00,0xff,0xff,0x03,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0xf6,0x00,0x00,0x00,0x4e, + 0x00,0x00,0x00,0x4c,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0xc8, + 0x00,0x00,0x00,0x35,0x00,0x00,0x00,0xb3,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca, + 0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x7b,0x00,0x00,0x00,0x97,0x00,0x00,0x00,0xda, + 0x00,0x00,0x00,0x76,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x55,0x00,0x00,0x00,0x7a, + 0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x56,0x00,0x00,0x00,0x58,0x00,0x00,0x00,0x5e, + 0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xd9,0x00,0x00,0x00,0xcc, 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff, 0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xc3,0xff,0x00,0xff,0x00,0xff,0x87,0xff, 0x00,0xff,0x0f,0xff,0x02,0xff,0x00,0xff,0x00,0xff,0xee,0xff,0x5c,0xff,0x00,0xff, 0x4b,0xff,0x00,0xff,0x00,0xff,0x98,0xff,0x00,0xff,0x76,0xff,0x00,0xff,0x20,0xff, - 0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0x00,0xff,0x54,0xff,0xb2,0xff,0x00,0xff, + 0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0xb2,0xff,0x00,0xff,0x00,0xff,0x54,0xff, 0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff,0xdd,0xff, 0x00,0xff,0x31,0xff,0x00,0xff,0xcc,0xff,0xe5,0xff,0x00,0xff,0xa1,0xff,0x00,0xff, - 0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x6d,0xff,0x00,0xff,0x90,0xff,0x00,0xff, - 0x8f,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x24,0xff,0x00,0xff, - 0x00,0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff, - 0xf6,0xff,0x00,0xff,0xf7,0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x14,0xff,0x00,0xff, + 0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x8f,0xff,0x00,0xff,0x6d,0xff,0x00,0xff, + 0x90,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x00,0xff,0x64,0xff, + 0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff,0xf6,0xff,0x00,0xff, + 0x00,0xff,0x32,0xff,0x24,0xff,0x00,0xff,0x14,0xff,0x00,0xff,0xf7,0xff,0x00,0xff, 0x00,0xff,0xcb,0xff,0x35,0xff,0x00,0xff,0x00,0xff,0xdc,0xff,0x00,0xff,0x43,0xff, 0xe6,0xff,0x00,0xff,0xb1,0xff,0x00,0xff,0x00,0xff,0x53,0xff,0x17,0xff,0x00,0xff, - 0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x00,0xff,0x21,0xff, - 0x00,0xff,0x99,0xff,0x5d,0xff,0x00,0xff,0x47,0xff,0x00,0xff,0x28,0xff,0x00,0xff, - 0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x25,0xff,0x00,0xff, + 0x00,0xff,0x21,0xff,0x00,0xff,0x99,0xff,0x47,0xff,0x00,0xff,0x5d,0xff,0x00,0xff, + 0x28,0xff,0x00,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, @@ -90,57 +90,57 @@ uint8_t test_I8_NONE_align1_map[] = { 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x45,0x21,0x21,0x45,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x40,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x40,0x1d,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x22,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x00,0x00,0x45,0x21,0x21,0x45,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x21,0x21,0x46,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x42,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x42,0x1d,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x22,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x00,0x00,0x46,0x21,0x21,0x46,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x24,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x23,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25,0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25,0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x23,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x23,0x00,0x00,0x27,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x24,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x24,0x00,0x00,0x28,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x28,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x22,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x28,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x28,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1d,0x40,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x40,0x1d,0x00,0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1d,0x42,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x42,0x1d,0x00,0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x81,0x62,0x70,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x62,0x4e,0x35,0x9c,0x9c,0x9c,0x9c,0x46,0x7f,0x6b,0x4f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x8c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3b,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x8d,0x9c,0x9c,0x9c,0x9c,0x55,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x50,0x9c,0x9c,0x50,0x75,0x53,0x34,0x63,0x35,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x38,0x00,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x93,0x3b,0x35,0x50,0x3a,0x72,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x74,0x4d,0x4d,0x37,0x00,0x00,0x00,0x00,0x53,0x9c,0x9c,0x9c,0x9c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x91,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x55,0x6f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7b,0x36,0x36,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x9c,0x9c,0x77,0x56,0x3c,0x78,0x9c,0x9c,0x9c,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x4f,0x8f,0x38,0x6e,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x95,0x9c,0x9c,0x59,0x00,0x00,0x2f,0x52,0x9c,0x9c,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x6d,0x8e,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x59,0x38,0x38,0x2f,0x00,0x00,0x00,0x54,0x9c,0x9c,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x57,0x35,0x9c,0x9c,0x9c,0x9c,0x6a,0x47,0x67,0x67,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x73,0x6f,0x56,0x20,0x50,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x98,0x7a,0x37,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x34,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4f,0x94,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x49,0x55,0x5a,0x5b,0x5c,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x3b,0x9c,0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x9c,0x9c,0x9c,0x3b,0x76,0x96,0x6e,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9c,0x7a,0x00,0x99,0x9c,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x4a,0x9c,0x9c,0x9c,0x8b,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x52,0x9c,0x9c,0x76,0x00,0x00,0x00,0x47,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x9a,0x75,0x5d,0x3c,0x9c,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x58,0x9c,0x9c,0x9c,0x9c,0x60,0x88,0x68,0x37,0x6c,0x9c,0x9c,0x9c,0x9c,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x9c,0x9c,0x9c,0x73,0x00,0x00,0x34,0x3a,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9b,0x9c,0x35,0x78,0x9c,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x39,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5b,0x4d,0x87,0x00,0x00,0x00,0x00,0x48,0x49,0x9c,0x9c,0x3a,0x97,0x5d,0x54,0x9c,0x9c,0x9c,0x47,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x9c,0x38,0x00,0x79,0x9c,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x69,0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x58,0x54,0x9c,0x9c,0x9c,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x00,0x4e,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x65,0x00,0x00,0x00,0x00,0x00,0x39,0x9c,0x3a,0x39,0x74,0x9c,0x35,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x43,0x7e,0x49,0x9c,0x9c,0x9c,0x52,0x3c,0x69,0x86,0x9c,0x9c,0x9c,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x00,0x48,0x92,0x46,0x9c,0x9c,0x6c,0x6b,0x5d,0x9c,0x9c,0x9c,0x9c,0x65,0x00,0x00,0x00,0x00,0x00,0x53,0x3b,0x9c,0x5b,0x3c,0x5c,0x9c,0x72,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x43,0x89,0x85,0x63,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7b,0x51,0x79,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x7c,0x7b,0x6f,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x88,0x50,0x4f,0x9c,0x9c,0x9c,0x9c,0x2f,0x47,0x6b,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x89,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x56,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x52,0x9c,0x9c,0x52,0x74,0x55,0x35,0x4e,0x4f,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x67,0x9c,0x9c,0x9c,0x9c,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x90,0x3c,0x4f,0x52,0x3b,0x70,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x73,0x4f,0x4f,0x38,0x00,0x00,0x00,0x00,0x55,0x9c,0x9c,0x9c,0x9c,0x6a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x69,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x56,0x8d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0x37,0x37,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x9c,0x9c,0x76,0x57,0x3d,0x8f,0x9c,0x9c,0x9c,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x51,0x69,0x39,0x6e,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x91,0x9c,0x9c,0x72,0x00,0x00,0x30,0x54,0x9c,0x9c,0x57,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x6d,0x8b,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x72,0x39,0x39,0x30,0x00,0x00,0x00,0x47,0x9c,0x9c,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x58,0x4f,0x9c,0x9c,0x9c,0x9c,0x68,0x48,0x64,0x64,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x92,0x93,0x57,0x20,0x52,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x97,0x78,0x38,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x35,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x51,0x94,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x4a,0x56,0x5a,0x5b,0x2f,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x3c,0x9c,0x9c,0x9c,0x3b,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3d,0x9c,0x9c,0x9c,0x3c,0x57,0x6a,0x6e,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9c,0x78,0x00,0x98,0x9c,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x4b,0x9c,0x9c,0x9c,0x87,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x54,0x9c,0x9c,0x75,0x00,0x00,0x00,0x48,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x99,0x74,0x5c,0x3d,0x9c,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x59,0x9c,0x9c,0x9c,0x9c,0x5e,0x86,0x65,0x38,0x6c,0x9c,0x9c,0x9c,0x9c,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x8c,0x9c,0x9c,0x9c,0x95,0x00,0x00,0x35,0x3b,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9b,0x9c,0x36,0x9a,0x9c,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x3a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x2f,0x4f,0x84,0x00,0x00,0x00,0x00,0x49,0x4a,0x9c,0x9c,0x3b,0x96,0x5c,0x47,0x9c,0x9c,0x9c,0x48,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x9c,0x39,0x00,0x77,0x9c,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x66,0x48,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x89,0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x50,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x63,0x00,0x00,0x00,0x00,0x00,0x3a,0x9c,0x3b,0x3a,0x73,0x9c,0x36,0x6f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x44,0x7d,0x82,0x9c,0x9c,0x9c,0x54,0x3d,0x66,0x85,0x9c,0x9c,0x9c,0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x49,0x8e,0x2f,0x9c,0x9c,0x6c,0x6b,0x5c,0x9c,0x9c,0x9c,0x9c,0x63,0x00,0x00,0x00,0x00,0x00,0x55,0x3c,0x9c,0x2f,0x3d,0x2f,0x9c,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x44,0x4e,0x83,0x4e,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0x53,0x77,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x79,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4,0xcb,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05,0x4c,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x64,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x15,0x05,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xb7,0xbc,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x44,0x06,0x32,0x01,0x31,0x0c,0x1f,0x15,0x05,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc2,0xa5,0xa4,0xab,0xc6,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x82,0x1c,0x04,0x29,0x0b,0x0f,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x1b,0x07,0x5e,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xcd,0xc1,0xbb,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xd5,0xa8,0xb2,0xd7,0xc2,0xa5,0xa4,0xab,0xb4,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c,0x1f,0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c,0x2e,0x3d,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xbf,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x64,0x44,0x06,0x32,0x01,0x31,0x0c,0x1f,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5e,0x3e,0x80,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xcc,0xad,0xa2,0xaf,0xb7,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf,0xc2,0xa5,0xa4,0xd3,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x31,0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf,0xc7,0xa5,0xa4,0xd3,0xc6,0xcb,0xae,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x2a,0x84,0x0f,0x16,0x06,0x18,0x01,0x31,0x0c,0x1f,0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x4b,0x0e,0x30,0x09,0x1b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xba,0xa7,0xa8,0xc9,0xbf,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x13,0x4b,0x61,0x30,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xcc,0xd8,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xce,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xc8,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x7d,0x2e,0x15,0x05,0x10,0x08,0x1a,0x03,0x3f,0x4b,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xb9,0xba,0xa7,0xa8,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xba,0xa7,0xd6,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xc0,0xaa,0xa3,0xd4,0xd1,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x31,0x0c,0x2e,0x15,0x05,0x10,0x08,0x1a,0x83,0x3f,0x11,0x61,0x17,0x09,0x1b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4,0xcb,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x04,0x4d,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x61,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xb7,0xba,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x45,0x06,0x33,0x01,0x32,0x0c,0x1e,0x15,0x04,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc1,0xa5,0xa4,0xab,0xc4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x7f,0x1c,0x05,0x29,0x0b,0x0f,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x1b,0x07,0x5d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xcd,0xc0,0xbc,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xd7,0xa8,0xb2,0xd8,0xc1,0xa5,0xa4,0xab,0xb4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c,0x1e,0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c,0x2e,0x3e,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xd3,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x61,0x45,0x06,0x33,0x01,0x32,0x0c,0x1e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5d,0x40,0x80,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xcc,0xad,0xa2,0xae,0xb7,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5,0xc1,0xa5,0xa4,0xd4,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x32,0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5,0xc6,0xa5,0xa4,0xd4,0xc4,0xcb,0xaf,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x2a,0x81,0x0f,0x16,0x06,0x18,0x01,0x32,0x0c,0x1e,0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x4c,0x0e,0x31,0x09,0x1b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbb,0xa7,0xa8,0xc9,0xc5,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x13,0x4c,0x60,0x31,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xcc,0xd9,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xce,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xc8,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x7a,0x2e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x4c,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xb9,0xbb,0xa7,0xa8,0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbb,0xa7,0xd6,0xc9,0xd3,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xbf,0xaa,0xa3,0xd5,0xd1,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x32,0x0c,0x2e,0x15,0x04,0x10,0x08,0x1a,0x7e,0x3f,0x11,0x60,0x17,0x09,0x1b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -149,6 +149,7 @@ uint8_t test_I8_NONE_align1_map[] = { }; const lv_img_dsc_t test_I8_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_L8.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_L8.bin index 18f9bd1c4..f1c2afa48 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_L8.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_L8.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_L8_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_L8_NONE_align1.c index ab6b425a4..caf81c8b9 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_L8_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_L8_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_L8_NONE_align1_map[] = { }; const lv_img_dsc_t test_L8_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_L8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565.bin index 2126b3862..ea3548198 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8.bin index b4141192e..8736efa26 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8_NONE_align1.c index 2e4470c19..256df7ff3 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565A8_NONE_align1.c @@ -114,6 +114,7 @@ uint8_t test_RGB565A8_NONE_align1_map[] = { }; const lv_img_dsc_t test_RGB565A8_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565A8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565_NONE_align1.c index a020e192b..8eef37520 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB565_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_RGB565_NONE_align1_map[] = { }; const lv_img_dsc_t test_RGB565_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888.bin index b2acb433b..ee94f519e 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888_NONE_align1.c index 92aba2b16..8d4254ed0 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_RGB888_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_RGB888_NONE_align1_map[] = { }; const lv_img_dsc_t test_RGB888_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB888, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888.bin b/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888.bin index b7342c3d6..678442d1b 100644 Binary files a/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888.bin and b/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888.bin differ diff --git a/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888_NONE_align1.c b/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888_NONE_align1.c index df6945065..2ef0320d8 100644 --- a/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888_NONE_align1.c +++ b/tests/test_images/stride_align1/UNCOMPRESSED/test_XRGB8888_NONE_align1.c @@ -84,6 +84,7 @@ uint8_t test_XRGB8888_NONE_align1_map[] = { }; const lv_img_dsc_t test_XRGB8888_NONE_align1 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_XRGB8888, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_A1.bin b/tests/test_images/stride_align64/LZ4/test_A1.bin index 9b8c3faf1..1a9d4ac4c 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_A1.bin and b/tests/test_images/stride_align64/LZ4/test_A1.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_A1_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_A1_LZ4_align64.c index fbe89162e..9f7838c41 100644 --- a/tests/test_images/stride_align64/LZ4/test_A1_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_A1_LZ4_align64.c @@ -46,6 +46,7 @@ uint8_t test_A1_LZ4_align64_map[] = { }; const lv_img_dsc_t test_A1_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_A2.bin b/tests/test_images/stride_align64/LZ4/test_A2.bin index b5b6b5ace..1b0ea270a 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_A2.bin and b/tests/test_images/stride_align64/LZ4/test_A2.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_A2_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_A2_LZ4_align64.c index b257e4956..5d7f3493c 100644 --- a/tests/test_images/stride_align64/LZ4/test_A2_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_A2_LZ4_align64.c @@ -59,6 +59,7 @@ uint8_t test_A2_LZ4_align64_map[] = { }; const lv_img_dsc_t test_A2_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_A4.bin b/tests/test_images/stride_align64/LZ4/test_A4.bin index 72c5b629e..0a1c3fe94 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_A4.bin and b/tests/test_images/stride_align64/LZ4/test_A4.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_A4_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_A4_LZ4_align64.c index 4df8cccd1..f65869786 100644 --- a/tests/test_images/stride_align64/LZ4/test_A4_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_A4_LZ4_align64.c @@ -79,6 +79,7 @@ uint8_t test_A4_LZ4_align64_map[] = { }; const lv_img_dsc_t test_A4_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_A8.bin b/tests/test_images/stride_align64/LZ4/test_A8.bin index fb851eb18..398933fcd 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_A8.bin and b/tests/test_images/stride_align64/LZ4/test_A8.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_A8_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_A8_LZ4_align64.c index 7add21d5f..472517727 100644 --- a/tests/test_images/stride_align64/LZ4/test_A8_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_A8_LZ4_align64.c @@ -112,6 +112,7 @@ uint8_t test_A8_LZ4_align64_map[] = { }; const lv_img_dsc_t test_A8_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_ARGB8888.bin b/tests/test_images/stride_align64/LZ4/test_ARGB8888.bin index be0492189..2141a16d3 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_ARGB8888.bin and b/tests/test_images/stride_align64/LZ4/test_ARGB8888.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_ARGB8888_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_ARGB8888_LZ4_align64.c index 4e95a6170..dd8fe41cd 100644 --- a/tests/test_images/stride_align64/LZ4/test_ARGB8888_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_ARGB8888_LZ4_align64.c @@ -206,6 +206,7 @@ uint8_t test_ARGB8888_LZ4_align64_map[] = { }; const lv_img_dsc_t test_ARGB8888_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_ARGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_I1.bin b/tests/test_images/stride_align64/LZ4/test_I1.bin index da21dcae0..9cc366b7e 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_I1.bin and b/tests/test_images/stride_align64/LZ4/test_I1.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_I1_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_I1_LZ4_align64.c index bff17f720..94338f084 100644 --- a/tests/test_images/stride_align64/LZ4/test_I1_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_I1_LZ4_align64.c @@ -20,42 +20,43 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I1_LZ4_align64_map[] = { - 0x02,0x00,0x00,0x00,0x8c,0x01,0x00,0x00,0xc8,0x03,0x00,0x00,0x9b,0x3f,0xe3,0x94, - 0xee,0x66,0x0f,0x0f,0x44,0x00,0x01,0x00,0x22,0x7f,0xff,0x01,0x00,0x13,0xfc,0x18, + 0x02,0x00,0x00,0x00,0x93,0x01,0x00,0x00,0xc8,0x03,0x00,0x00,0x9b,0x56,0x82,0x0a, + 0xfa,0x43,0xbe,0xeb,0x3b,0x00,0x01,0x00,0x22,0x7f,0xff,0x01,0x00,0x13,0xfc,0x18, 0x00,0x0c,0x10,0x00,0x93,0x60,0x00,0x1f,0xff,0xff,0xff,0xe0,0x00,0x0c,0x20,0x00, - 0x96,0x60,0x00,0x1f,0xf9,0xff,0xff,0xef,0xff,0xec,0x10,0x00,0x66,0xc0,0x3f,0xef, - 0xe8,0x00,0x2c,0x10,0x00,0x66,0x80,0x1f,0xe3,0xeb,0xff,0xac,0x10,0x00,0x56,0x00, - 0x0f,0xc7,0xea,0x00,0x10,0x00,0x69,0x1e,0x00,0x07,0xef,0xea,0xfe,0x10,0x00,0x3b, - 0xff,0xea,0x82,0x10,0x00,0x16,0xba,0x10,0x00,0x69,0x1c,0x00,0x03,0xf7,0xea,0xaa, - 0x10,0x00,0x18,0xc3,0x20,0x00,0x4b,0x1e,0x00,0x07,0x81,0x40,0x00,0x1b,0x00,0x60, - 0x00,0x18,0x01,0x80,0x00,0x49,0x1f,0x00,0x0f,0x81,0xa0,0x00,0x39,0x80,0x1f,0xc1, - 0xc0,0x00,0x36,0xc0,0x3f,0xe7,0xe0,0x00,0x48,0x7f,0xff,0xff,0xf8,0x00,0x01,0x0c, - 0x20,0x01,0x0e,0x10,0x00,0x11,0xf8,0xfa,0x00,0x04,0x30,0x01,0x2a,0x7e,0x07,0x60, - 0x01,0x2a,0x78,0x01,0x10,0x00,0x2b,0x70,0x00,0x10,0x00,0x12,0xf0,0x52,0x00,0x11, - 0xfc,0x46,0x00,0x68,0x00,0x00,0x71,0xf8,0x7f,0xf4,0x10,0x00,0x57,0x79,0xf8,0x7f, - 0xc0,0x3f,0x10,0x00,0x58,0x7f,0xf8,0x7f,0xc6,0x1f,0x10,0x00,0x83,0x00,0x7f,0xcf, - 0x1f,0xff,0xff,0xad,0xdc,0x40,0x00,0x57,0x7c,0x00,0x7f,0xff,0x9f,0x20,0x00,0x48, - 0x70,0x28,0x7f,0xff,0x30,0x00,0x75,0x70,0xf8,0x7f,0xe0,0x1f,0xf0,0x7f,0x70,0x00, - 0x75,0x70,0xf8,0x7f,0xc7,0x1f,0xf7,0x7f,0x40,0x00,0x76,0x61,0xf8,0x7f,0x8f,0x1f, - 0xff,0x3f,0x20,0x00,0x57,0xf0,0x7f,0x8f,0x9f,0xf8,0x10,0x00,0x47,0x00,0x1f,0x87, - 0x0f,0x30,0x00,0x66,0x78,0x08,0x1f,0xc0,0x07,0xf3,0x20,0x00,0x75,0x7c,0x1c,0x1f, - 0xe1,0x87,0xf9,0x3f,0x50,0x00,0x02,0xde,0x00,0x06,0xd0,0x00,0x0c,0x10,0x00,0x11, - 0x60,0xb8,0x00,0x15,0x5f,0x70,0x00,0x01,0x10,0x00,0x2a,0x05,0x55,0x10,0x00,0x2a, - 0x12,0xbf,0x10,0x00,0x2a,0x04,0xaa,0x10,0x00,0x2a,0x2a,0xb7,0x10,0x00,0x2a,0x00, - 0xaf,0x10,0x00,0x2a,0x2b,0x75,0x10,0x00,0x1b,0x04,0x20,0x00,0x1b,0x22,0x40,0x00, - 0x2a,0x0a,0xae,0x30,0x00,0x2a,0x11,0x5b,0x10,0x00,0x1b,0x42,0x30,0x00,0x2a,0x15, - 0x5d,0x20,0x00,0x25,0x00,0x2b,0x10,0x00,0x0c,0xf0,0x00,0x0f,0x10,0x00,0x0d,0x07, - 0x02,0x00,0x50,0x00,0x00,0x00,0x00,0x00, + 0x96,0x60,0x00,0x1f,0xf0,0xff,0xff,0xef,0xff,0xec,0x10,0x00,0x66,0xc0,0x3f,0xe7, + 0xe8,0x00,0x2c,0x10,0x00,0x69,0x00,0x0f,0xc3,0xeb,0xff,0xac,0x10,0x00,0x26,0xea, + 0x00,0x10,0x00,0x69,0x1e,0x00,0x07,0xe7,0xea,0xfe,0x10,0x00,0x36,0xff,0xea,0x82, + 0x10,0x00,0x69,0x1c,0x00,0x03,0xff,0xea,0xba,0x10,0x00,0x39,0xc3,0xea,0xaa,0x10, + 0x00,0x1b,0x81,0x20,0x00,0x18,0x00,0x40,0x00,0x4b,0x1e,0x00,0x07,0x00,0x60,0x00, + 0x18,0x00,0x80,0x00,0x4a,0x1f,0x00,0x07,0x00,0xa0,0x00,0x29,0x1f,0x81,0xc0,0x00, + 0x36,0xc0,0x1f,0xc3,0xe0,0x00,0x57,0x7f,0xff,0xff,0xf0,0x7f,0x00,0x01,0x0c,0x20, + 0x01,0x0e,0x10,0x00,0x11,0xf8,0xfa,0x00,0x04,0x30,0x01,0x2a,0x7c,0x03,0x60,0x01, + 0x2c,0x70,0x00,0x10,0x00,0x02,0x42,0x00,0x11,0xfc,0x36,0x00,0x4b,0x00,0x00,0x70, + 0xf0,0x10,0x00,0x21,0xf8,0x7f,0x12,0x00,0x04,0x20,0x00,0x57,0x71,0xf8,0x3f,0xc0, + 0x3f,0x10,0x00,0x57,0x7f,0xf8,0x7f,0xc4,0x1f,0x10,0x00,0x93,0x7e,0x00,0x3f,0xcf, + 0x0f,0xff,0xff,0xad,0xdc,0x50,0x00,0x57,0x78,0x00,0x7f,0xcf,0x0f,0x20,0x00,0x49, + 0x70,0x00,0x3f,0xfd,0x10,0x00,0x65,0xf8,0x7f,0xe0,0x0f,0xf0,0x7f,0x60,0x00,0x75, + 0x60,0xf8,0x3f,0xc1,0x0f,0xf3,0x3f,0x40,0x00,0x76,0x60,0xf8,0x7f,0x87,0x0f,0xfe, + 0x3f,0x20,0x00,0x56,0xf0,0x3f,0x8f,0x0f,0xf0,0x10,0x00,0x48,0x70,0x00,0x1f,0x86, + 0x30,0x00,0x66,0x70,0x00,0x1f,0x80,0x07,0xf2,0x20,0x00,0x75,0x78,0x1c,0x1f,0xc1, + 0x87,0xf0,0x1f,0x50,0x00,0x02,0xde,0x00,0x07,0xc0,0x00,0x02,0x0f,0x01,0x06,0x60, + 0x00,0x56,0x00,0x00,0x00,0x01,0x7f,0x20,0x00,0x7a,0x60,0x00,0x00,0x00,0x00,0x01, + 0x5f,0x20,0x00,0x29,0x56,0xd7,0x10,0x00,0x3a,0x00,0x0a,0xbf,0x10,0x00,0x2a,0xaa, + 0xab,0x10,0x00,0x0b,0x20,0x00,0x3a,0x02,0xaa,0xd6,0x20,0x00,0x1a,0x15,0x60,0x00, + 0x3a,0x00,0xaa,0xb7,0x20,0x00,0x29,0x05,0x6d,0x10,0x00,0x2b,0x01,0x55,0x30,0x00, + 0x29,0x2a,0xbb,0x20,0x00,0x3a,0x00,0x95,0xae,0x10,0x00,0x16,0x56,0xd0,0x00,0x0f, + 0x00,0x01,0x0d,0x0c,0x20,0x00,0x07,0x02,0x00,0x50,0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I1_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 16, - .data_size = 408, + .data_size = 415, .data = test_I1_LZ4_align64_map, }; diff --git a/tests/test_images/stride_align64/LZ4/test_I2.bin b/tests/test_images/stride_align64/LZ4/test_I2.bin index 0883419a8..9ab13e0b2 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_I2.bin and b/tests/test_images/stride_align64/LZ4/test_I2.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_I2_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_I2_LZ4_align64.c index 5527622aa..2104a093a 100644 --- a/tests/test_images/stride_align64/LZ4/test_I2_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_I2_LZ4_align64.c @@ -20,54 +20,57 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I2_LZ4_align64_map[] = { - 0x02,0x00,0x00,0x00,0x52,0x02,0x00,0x00,0x90,0x07,0x00,0x00,0xfd,0x01,0x5a,0x00, - 0x3d,0xf4,0x23,0xaf,0xaf,0x08,0x60,0xff,0xf7,0xdf,0x37,0xff,0x18,0xff,0x01,0x00, - 0x29,0xfc,0x00,0x01,0x00,0x2b,0xd5,0x55,0x01,0x00,0x19,0x5c,0x1f,0x00,0x0f,0x20, - 0x00,0x0e,0x53,0xd4,0x00,0x02,0xaa,0xa9,0x43,0x00,0x5b,0x54,0x00,0x00,0x00,0x00, - 0x40,0x00,0x02,0x20,0x00,0xbf,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x55,0x55,0x55, - 0x54,0x20,0x00,0x02,0xbf,0x40,0x00,0x01,0x55,0x54,0x15,0x54,0x40,0x00,0x00,0x04, - 0x20,0x00,0x02,0xbf,0x00,0x00,0x00,0x55,0x50,0x05,0x54,0x45,0x55,0x55,0x44,0x20, - 0x00,0x01,0xbf,0x54,0x00,0x00,0x00,0x15,0x50,0x05,0x54,0x44,0x00,0x00,0x20,0x00, - 0x07,0x6f,0x54,0x15,0x54,0x44,0x55,0x54,0x20,0x00,0x02,0xbf,0x50,0x00,0x00,0x00, - 0x05,0x55,0x55,0x54,0x44,0x40,0x04,0x20,0x00,0x0b,0x2c,0x45,0x44,0x20,0x00,0x51, - 0xd6,0xaa,0xa8,0x00,0x01,0x40,0x00,0x5f,0x50,0x05,0x54,0x44,0x44,0x20,0x00,0x08, - 0x2f,0x40,0x01,0x40,0x00,0x0b,0x2f,0x00,0x00,0x80,0x00,0x01,0x06,0x60,0x00,0x2f, + 0x02,0x00,0x00,0x00,0x67,0x02,0x00,0x00,0x90,0x07,0x00,0x00,0xfd,0x01,0x5a,0x00, + 0x3d,0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff,0x01,0x00, + 0x29,0xfc,0x00,0x01,0x00,0x2b,0xea,0xaa,0x01,0x00,0x19,0xac,0x1f,0x00,0x0f,0x20, + 0x00,0x0e,0x53,0xe8,0x00,0x01,0x55,0x56,0x43,0x00,0x5b,0xa8,0x00,0x00,0x00,0x00, + 0x40,0x00,0x02,0x20,0x00,0xbf,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0xaa,0xaa,0xaa, + 0xa8,0x20,0x00,0x02,0xbf,0x80,0x00,0x02,0xaa,0xa8,0x2a,0xa8,0x80,0x00,0x00,0x08, + 0x20,0x00,0x02,0xbf,0x00,0x00,0x00,0xaa,0xa0,0x0a,0xa8,0x8a,0xaa,0xaa,0x88,0x20, + 0x00,0x01,0xbf,0xa8,0x00,0x00,0x00,0x2a,0xa0,0x0a,0xa8,0x88,0x00,0x00,0x20,0x00, + 0x07,0x6f,0xa8,0x2a,0xa8,0x88,0xaa,0xa8,0x20,0x00,0x02,0xbf,0xa0,0x00,0x00,0x00, + 0x0a,0xaa,0xaa,0xa8,0x88,0x80,0x08,0x20,0x00,0x0b,0x2c,0x8a,0x88,0x20,0x00,0x51, + 0xe9,0x55,0x54,0x00,0x02,0x40,0x00,0x5f,0xa0,0x0a,0xa8,0x88,0x88,0x20,0x00,0x08, + 0x2f,0x80,0x02,0x40,0x00,0x0b,0x2f,0x00,0x00,0x80,0x00,0x01,0x06,0x60,0x00,0x2f, 0x00,0x00,0xc0,0x00,0x01,0x01,0x20,0x00,0x01,0x00,0x01,0x2f,0x00,0x00,0x00,0x01, - 0x01,0x09,0x20,0x00,0x0f,0x40,0x01,0x00,0x01,0x20,0x00,0x7f,0x55,0x00,0x00,0x00, - 0x55,0x40,0x01,0x80,0x01,0x01,0x02,0x20,0x00,0x6f,0x40,0x00,0x01,0x55,0x50,0x05, + 0x01,0x09,0x20,0x00,0x0f,0x40,0x01,0x00,0x01,0x20,0x00,0x7f,0xaa,0x00,0x00,0x00, + 0xaa,0x80,0x02,0x80,0x01,0x01,0x02,0x20,0x00,0x6f,0x80,0x00,0x02,0xaa,0xa0,0x0a, 0xc0,0x01,0x01,0x02,0x20,0x02,0x03,0xe0,0x01,0x0f,0x00,0x02,0x00,0x02,0x20,0x00, - 0x07,0x02,0x00,0x0b,0xc0,0x01,0x0f,0x20,0x00,0x12,0x17,0x40,0x94,0x02,0x0c,0x40, - 0x00,0x37,0x50,0x00,0x05,0x5e,0x00,0x0e,0x60,0x00,0x3f,0x00,0x00,0x00,0x20,0x00, - 0x0d,0x18,0x15,0x21,0x00,0x0c,0x60,0x00,0x21,0x00,0x55,0xbc,0x02,0x05,0x02,0x00, - 0x0e,0x20,0x00,0x23,0x40,0x05,0x00,0x01,0x01,0x02,0x00,0x0c,0x20,0x00,0x81,0x01, - 0x55,0x40,0x05,0x55,0x50,0x00,0x01,0x1d,0x00,0x0f,0x20,0x00,0x00,0x6f,0x55,0x55, - 0x40,0x05,0x55,0x40,0x20,0x00,0x07,0x72,0x54,0x00,0x00,0x05,0x55,0x50,0x55,0xc5, - 0x00,0x3c,0x44,0x51,0x51,0x60,0x00,0x18,0x40,0x20,0x00,0x0f,0x60,0x00,0x00,0x02, - 0xdb,0x02,0x5f,0x40,0x00,0x55,0x55,0x50,0x20,0x00,0x01,0x31,0xd4,0x00,0x15,0xa0, - 0x00,0x23,0x00,0x55,0xe8,0x00,0x0b,0x60,0x00,0x22,0xd4,0x00,0xa0,0x00,0x5f,0x00, - 0x55,0x55,0x05,0x05,0x80,0x00,0x00,0x03,0x20,0x00,0x51,0x15,0x00,0x55,0x55,0x54, - 0x89,0x01,0x0d,0x40,0x00,0x92,0x14,0x00,0x05,0x55,0x40,0x55,0x00,0x55,0x55,0xa9, - 0x01,0x0b,0x20,0x00,0xbf,0xd5,0x00,0x00,0x00,0x01,0x55,0x40,0x04,0x00,0x55,0x54, - 0x60,0x00,0x02,0x21,0xd5,0x00,0x9c,0x02,0x5f,0x00,0x00,0x15,0x55,0x04,0x60,0x00, - 0x01,0xdf,0xd5,0x40,0x00,0x40,0x01,0x55,0x50,0x00,0x40,0x15,0x55,0x00,0x01,0xa0, - 0x00,0x00,0x0f,0x60,0x02,0x12,0x08,0x02,0x00,0x0b,0xa0,0x00,0x11,0xd7,0x41,0x05, - 0x8e,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x60,0x01,0x02,0x20,0x00,0x11,0xfb, - 0x20,0x00,0x3f,0x9a,0x66,0x66,0x40,0x00,0x04,0x11,0xee,0x20,0x00,0x2f,0xa6,0x66, - 0x40,0x00,0x0b,0x4f,0xaa,0x99,0x99,0x95,0x80,0x00,0x03,0x02,0x40,0x00,0x1f,0x66, - 0x40,0x00,0x0c,0x4f,0xa9,0x99,0x99,0x65,0x40,0x00,0x09,0x1f,0x9a,0x40,0x00,0x0f, - 0x0f,0x80,0x00,0x2a,0x1f,0xaa,0x80,0x00,0x0c,0x1f,0x99,0x40,0x01,0x0c,0x0f,0x00, - 0x01,0x2d,0x2e,0xaa,0x99,0x80,0x01,0x0f,0x00,0x02,0x2d,0x0f,0x40,0x00,0x0d,0x01, - 0x1f,0x02,0x08,0x02,0x00,0x06,0x60,0x07,0x50,0x00,0x00,0x00,0x00,0x00, + 0x07,0x02,0x00,0x0b,0xc0,0x01,0x0f,0x20,0x00,0x12,0x17,0x80,0x94,0x02,0x0c,0x40, + 0x00,0x37,0xa0,0x00,0x0a,0x5e,0x00,0x0e,0x60,0x00,0x3f,0x00,0x00,0x00,0x20,0x00, + 0x0d,0x18,0x2a,0x21,0x00,0x0c,0x60,0x00,0x21,0x00,0xaa,0xbc,0x02,0x05,0x02,0x00, + 0x0e,0x20,0x00,0x23,0x80,0x0a,0x00,0x01,0x01,0x02,0x00,0x0c,0x20,0x00,0x81,0x02, + 0xaa,0x80,0x0a,0xaa,0xa0,0x00,0x02,0x1d,0x00,0x0f,0x20,0x00,0x00,0x6f,0xaa,0xaa, + 0x80,0x0a,0xaa,0x80,0x20,0x00,0x07,0x72,0xa8,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0xc5, + 0x00,0x3c,0x88,0xa2,0xa2,0x60,0x00,0x18,0x80,0x20,0x00,0x0f,0x60,0x00,0x00,0x02, + 0xdb,0x02,0x5f,0x80,0x00,0xaa,0xaa,0xa0,0x20,0x00,0x01,0x31,0xe8,0x00,0x2a,0xa0, + 0x00,0x23,0x00,0xaa,0xe8,0x00,0x0b,0x60,0x00,0x11,0xe8,0xe0,0x00,0x7f,0x80,0x00, + 0x00,0xaa,0xaa,0x0a,0x0a,0x80,0x00,0x00,0x03,0x20,0x00,0x51,0x2a,0x00,0xaa,0xaa, + 0xa8,0x89,0x01,0x0d,0x40,0x00,0x92,0x28,0x00,0x0a,0xaa,0x80,0xaa,0x00,0xaa,0xaa, + 0xa9,0x01,0x0b,0x20,0x00,0xbf,0xea,0x00,0x00,0x00,0x02,0xaa,0x80,0x08,0x00,0xaa, + 0xa8,0x60,0x00,0x02,0x21,0xea,0x00,0x9c,0x02,0x5f,0x00,0x00,0x2a,0xaa,0x08,0x60, + 0x00,0x01,0xdf,0xea,0x80,0x00,0x80,0x02,0xaa,0xa0,0x00,0x80,0x2a,0xaa,0x00,0x02, + 0xa0,0x00,0x00,0x0f,0x60,0x02,0x12,0x08,0x02,0x00,0x0b,0xa0,0x00,0x11,0xeb,0x41, + 0x05,0x8e,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x60,0x01,0x02,0x20,0x00,0x11, + 0xdd,0x20,0x00,0x3f,0x65,0x99,0x99,0x40,0x00,0x0c,0x1f,0x6a,0x20,0x00,0x04,0x13, + 0xfd,0x40,0x00,0x2f,0xa6,0x6a,0x80,0x00,0x03,0x02,0x60,0x00,0x2f,0x59,0x9a,0x40, + 0x00,0x05,0x02,0xa0,0x00,0x1f,0x95,0x80,0x00,0x06,0x03,0x40,0x00,0x1f,0x99,0xc0, + 0x00,0x05,0x02,0x40,0x00,0x4f,0x56,0x66,0x99,0x9a,0x80,0x00,0x08,0x2f,0x56,0x65, + 0x40,0x00,0x0c,0x1f,0x59,0x80,0x00,0x0c,0x0f,0x40,0x01,0x07,0x02,0x80,0x00,0x2f, + 0x65,0x99,0x80,0x00,0x0a,0x0f,0xc0,0x00,0x11,0x0d,0x60,0x01,0x0f,0x00,0x02,0x2d, + 0x0f,0x40,0x00,0x0d,0x01,0x1f,0x02,0x08,0x02,0x00,0x06,0x60,0x07,0x50,0x00,0x00, + 0x00,0x00,0x00, }; const lv_img_dsc_t test_I2_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 32, - .data_size = 606, + .data_size = 627, .data = test_I2_LZ4_align64_map, }; diff --git a/tests/test_images/stride_align64/LZ4/test_I4.bin b/tests/test_images/stride_align64/LZ4/test_I4.bin index 8023886d5..88e2e4ff6 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_I4.bin and b/tests/test_images/stride_align64/LZ4/test_I4.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_I4_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_I4_LZ4_align64.c index 261a9ce89..6841c3346 100644 --- a/tests/test_images/stride_align64/LZ4/test_I4_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_I4_LZ4_align64.c @@ -20,87 +20,85 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I4_LZ4_align64_map[] = { - 0x02,0x00,0x00,0x00,0x64,0x04,0x00,0x00,0x80,0x0b,0x00,0x00,0xff,0x32,0x4c,0x70, - 0x47,0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0xfc,0x00,0xff,0xf7,0xf4,0x00,0xff, - 0xff,0x65,0x00,0xff,0xff,0xa9,0x41,0xa5,0xa5,0x30,0x00,0x00,0x00,0x75,0x00,0x00, - 0x00,0xc2,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xff,0xff,0xff,0xff,0x00,0xff, - 0x88,0xff,0xcc,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x01, + 0x02,0x00,0x00,0x00,0x31,0x04,0x00,0x00,0x80,0x0b,0x00,0x00,0xff,0x32,0x4c,0x70, + 0x47,0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc,0x3e,0x8f, + 0x8f,0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60,0x00,0xff, + 0xff,0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff,0xff,0xff, + 0xff,0xff,0x00,0xff,0x7f,0xff,0x77,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x01, 0x00,0x0f,0x27,0xa0,0x00,0x01,0x00,0x09,0x0d,0x00,0x0f,0x02,0x00,0x03,0x09,0x23, 0x00,0x09,0x0d,0x00,0x0f,0x02,0x00,0x03,0x09,0x23,0x00,0xab,0xa0,0x01,0x11,0x11, - 0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x2d,0x00,0x11,0x0f,0xbf,0x00,0x3f,0xff,0xff,0xff, - 0x30,0x00,0x08,0x44,0x69,0x22,0x22,0x96,0x37,0x00,0x13,0x0f,0x09,0x00,0x1f,0x0f, + 0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x2d,0x00,0x11,0x0f,0xbb,0x00,0x3f,0xff,0xff,0xff, + 0x30,0x00,0x08,0x44,0x49,0x22,0x22,0x94,0x37,0x00,0x13,0x0f,0x09,0x00,0x1f,0x0f, 0x30,0x00,0x07,0xe3,0x09,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x00,0x92,0x29,0x00, 0x00,0x0f,0x61,0x00,0x0f,0x30,0x00,0x08,0xe2,0x92,0x22,0x22,0x22,0x22,0x29,0x00, 0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x61,0x00,0x1f,0x0f,0x30,0x00,0x07,0x01,0x5f, - 0x00,0x01,0x61,0x00,0x02,0x30,0x00,0x01,0x61,0x00,0x0f,0x30,0x00,0x08,0x21,0x62, - 0x22,0x01,0x00,0x14,0x26,0x90,0x00,0x5f,0x0f,0x00,0x00,0x00,0x0f,0x30,0x00,0x08, + 0x00,0x01,0x61,0x00,0x02,0x30,0x00,0x01,0x61,0x00,0x0f,0x30,0x00,0x08,0x21,0x42, + 0x22,0x01,0x00,0x14,0x24,0x90,0x00,0x5f,0x0f,0x00,0x00,0x00,0x0f,0x30,0x00,0x08, 0x01,0x8f,0x00,0x02,0x91,0x00,0x02,0x2a,0x00,0x3f,0x0f,0xff,0xff,0x30,0x00,0x09, 0x01,0x5e,0x00,0x31,0x22,0x22,0x22,0x2f,0x00,0x52,0x00,0x0f,0x0f,0x0f,0x0f,0x05, - 0x00,0x0a,0x50,0x01,0xa1,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x2d, - 0x00,0x81,0x22,0x22,0x22,0x00,0x06,0x92,0x29,0x60,0x2b,0x00,0x01,0x02,0x00,0x0b, - 0x50,0x01,0x0f,0x30,0x00,0x00,0x41,0x62,0x22,0x22,0x26,0x30,0x00,0x02,0x05,0x00, + 0x00,0x0a,0x50,0x01,0xa1,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x2d, + 0x00,0x81,0x22,0x22,0x22,0x00,0x04,0x92,0x29,0x40,0x2b,0x00,0x01,0x02,0x00,0x0b, + 0x50,0x01,0x0f,0x30,0x00,0x00,0x41,0x42,0x22,0x22,0x24,0x30,0x00,0x02,0x05,0x00, 0x0f,0x60,0x00,0x0e,0x41,0x92,0x22,0x22,0x29,0x2b,0x00,0x0f,0xc0,0x00,0x01,0x06, 0x60,0x00,0x05,0xf0,0x00,0x41,0x22,0x22,0x22,0x22,0x1a,0x01,0x0f,0x20,0x01,0x01, 0x06,0x30,0x00,0x05,0x50,0x01,0x04,0x30,0x00,0x0f,0x80,0x01,0x02,0x06,0x30,0x00, 0x05,0xb0,0x01,0x03,0x90,0x00,0x01,0x28,0x01,0x0f,0xf0,0x00,0x08,0x02,0x91,0x00, - 0x24,0x29,0x00,0xf0,0x00,0x01,0x9e,0x02,0x1f,0xff,0xf0,0x00,0x07,0x23,0x00,0x69, + 0x24,0x29,0x00,0xf0,0x00,0x01,0x9e,0x02,0x1f,0xff,0xf0,0x00,0x07,0x23,0x00,0x49, 0x0f,0x02,0x02,0x50,0x01,0x01,0x5f,0x00,0x0e,0xa0,0x02,0x03,0x17,0x00,0x01,0x02, 0x00,0x09,0xd0,0x02,0x02,0x5f,0x00,0x0d,0x00,0x03,0x01,0x29,0x00,0x0f,0x02,0x00, - 0x0a,0x0a,0x80,0x01,0x0f,0x2b,0x00,0x0a,0x01,0x02,0x00,0x0d,0x30,0x00,0x8f,0x06, - 0x66,0x00,0x00,0x00,0x00,0x01,0x11,0x01,0x00,0x03,0x0a,0x53,0x00,0x81,0xa0,0x00, - 0x06,0x78,0x11,0x11,0x18,0x70,0x4a,0x00,0x0f,0x02,0x00,0x03,0x0b,0x60,0x00,0x6f, - 0x81,0x11,0x11,0x11,0x11,0x18,0x2b,0x00,0x03,0x01,0x02,0x00,0x0b,0x30,0x00,0x02, - 0x86,0x00,0x11,0x80,0x1b,0x00,0x0f,0x02,0x00,0x02,0x0d,0x30,0x00,0x5f,0x60,0x06, - 0x81,0x11,0x16,0x2b,0x00,0x02,0x01,0x02,0x00,0x0b,0x30,0x00,0xf1,0x00,0x81,0x18, - 0x00,0x00,0x71,0x11,0x17,0x00,0x00,0x00,0x00,0x07,0x88,0x18,0x86,0x23,0x00,0x09, - 0x02,0x00,0x0b,0x30,0x00,0x51,0x88,0x87,0x00,0x00,0x01,0x30,0x00,0x5e,0x07,0x11, - 0x11,0x11,0x11,0xfa,0x00,0x0b,0x30,0x00,0x02,0x4c,0x01,0x8f,0x17,0x00,0x00,0x00, - 0x07,0x11,0x17,0x78,0x99,0x00,0x00,0x02,0x23,0x00,0x03,0x02,0x00,0x73,0xa0,0x00, - 0x00,0x78,0x11,0x11,0x11,0x60,0x00,0x21,0x60,0x00,0x09,0x00,0x03,0x02,0x00,0x6c, - 0x01,0x01,0x00,0x10,0x00,0x10,0x80,0x01,0x24,0x68,0x11,0x30,0x00,0x5e,0x06,0x88, - 0x00,0x00,0x81,0x5a,0x01,0x0b,0x60,0x00,0x53,0x11,0x11,0x11,0x88,0x81,0x57,0x00, - 0x22,0x77,0x77,0x8a,0x01,0x33,0x07,0x77,0x60,0x64,0x00,0x0d,0x30,0x00,0x43,0x07, - 0x11,0x11,0x70,0xf0,0x00,0x24,0x00,0x71,0xba,0x01,0x18,0x11,0xc7,0x00,0x0a,0x60, - 0x00,0x36,0x08,0x11,0x18,0x20,0x01,0x13,0x18,0x60,0x00,0x3f,0x17,0x07,0x18,0xc0, - 0x00,0x05,0x01,0x30,0x00,0x11,0x61,0x90,0x00,0x33,0x01,0x11,0x70,0xc0,0x00,0x27, - 0x67,0x77,0xc7,0x00,0x0c,0x60,0x00,0x32,0x11,0x70,0x67,0x20,0x01,0x15,0x61,0x30, - 0x00,0x2f,0x81,0x88,0x30,0x00,0x06,0x01,0xa5,0x01,0x31,0x11,0x11,0x11,0xb6,0x01, - 0xaf,0x87,0x78,0x11,0x18,0x60,0x00,0x00,0x07,0x18,0x06,0x90,0x00,0x06,0x61,0x00, - 0x81,0x11,0x11,0x11,0x88,0x61,0x00,0x02,0x3b,0x00,0x76,0x10,0x00,0x00,0x07,0x18, - 0x78,0x18,0x21,0x01,0x0a,0x90,0x00,0x61,0x00,0x07,0x11,0x11,0x17,0x07,0x30,0x00, - 0xef,0x00,0x71,0x11,0x17,0x71,0x11,0x10,0x00,0x00,0x00,0x81,0x17,0x11,0x80,0xf0, - 0x00,0x04,0x41,0x00,0x00,0x06,0x76,0x67,0x01,0x41,0x00,0x00,0x00,0x00,0x69,0x03, - 0x0c,0x02,0x00,0x0b,0x60,0x00,0x0c,0x1f,0x00,0x0d,0x02,0x00,0x09,0x23,0x00,0xfd, - 0x11,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0xc3, - 0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x46,0x46,0x66, - 0x60,0xe0,0x01,0xe9,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa,0xaa,0xca,0xca,0xcc, - 0xcc,0x3c,0x30,0x00,0x4f,0x44,0x64,0x66,0x06,0x30,0x00,0x00,0x51,0xde,0xee,0xee, - 0xee,0xae,0x60,0x00,0x11,0xc3,0x60,0x00,0xef,0x35,0x35,0x35,0x55,0x55,0x45,0x45, - 0x44,0x44,0x64,0x66,0x40,0x60,0x60,0x90,0x00,0x00,0x0c,0x60,0x00,0x22,0x53,0x53, - 0x90,0x00,0x0f,0x60,0x00,0x04,0x07,0xc0,0x00,0x0a,0x90,0x00,0x3f,0x64,0x64,0x04, - 0x90,0x00,0x01,0x21,0xdd,0xed,0x90,0x00,0x24,0xca,0xca,0xf0,0x00,0x61,0x53,0x55, - 0x55,0x54,0x55,0x45,0x60,0x00,0x0f,0xf0,0x00,0x02,0x11,0xee,0xf0,0x00,0x05,0xc0, - 0x00,0xcf,0x33,0x35,0x35,0x35,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x60,0x00, - 0x02,0x11,0xdd,0x50,0x01,0x05,0x20,0x01,0x02,0xf0,0x00,0x6f,0x55,0x44,0x44,0x46, - 0x46,0x46,0x30,0x00,0x01,0x15,0xde,0x60,0x00,0x08,0x50,0x01,0x02,0x60,0x00,0x0f, - 0x90,0x00,0x02,0x33,0xdd,0xee,0xee,0x80,0x01,0x01,0x50,0x01,0x01,0xb0,0x01,0x01, - 0xc0,0x00,0x2f,0x46,0x64,0x50,0x01,0x02,0x01,0x2f,0x00,0x06,0xc0,0x00,0x32,0x35, - 0x35,0x53,0x2f,0x00,0x4f,0x64,0x64,0x06,0x00,0xb0,0x01,0x00,0x07,0x20,0x01,0x02, - 0x50,0x01,0x13,0x53,0x60,0x00,0x4f,0x46,0x46,0x46,0x66,0x30,0x00,0x01,0x0d,0xc0, - 0x00,0x02,0x2f,0x00,0x5f,0x44,0x64,0x64,0x06,0x00,0xe0,0x01,0x01,0x11,0xde,0x20, - 0x01,0x24,0xaa,0xac,0xc0,0x00,0x04,0x31,0x00,0x3e,0x46,0x46,0x66,0x60,0x00,0x0d, - 0xbf,0x02,0x0d,0x02,0x00,0x0a,0xd0,0x02,0x0d,0x1f,0x00,0x0d,0x02,0x00,0x0f,0x30, - 0x00,0x2a,0x0f,0x0f,0x0b,0x0f,0x14,0xaa,0x60,0x00,0x50,0x00,0x00,0x00,0x00,0x00, + 0x0a,0x0a,0x80,0x01,0x0f,0x2b,0x00,0x0a,0x01,0x02,0x00,0x0d,0x30,0x00,0x8f,0x04, + 0x44,0x00,0x00,0x00,0x00,0x01,0x11,0x01,0x00,0x03,0x0a,0x53,0x00,0x81,0xa0,0x00, + 0x04,0x61,0x11,0x11,0x16,0x60,0x4a,0x00,0x0f,0x02,0x00,0x03,0x0b,0x60,0x00,0x6f, + 0x61,0x11,0x11,0x11,0x11,0x16,0x2b,0x00,0x03,0x01,0x02,0x00,0x0b,0x30,0x00,0x02, + 0x86,0x00,0x0f,0x61,0x00,0x08,0x0d,0x30,0x00,0x51,0x40,0x04,0x11,0x11,0x14,0x4b, + 0x00,0x0f,0x02,0x00,0x02,0x0c,0x30,0x00,0x42,0x16,0x00,0x00,0x41,0x91,0x00,0x4e, + 0x06,0x61,0x11,0x64,0x33,0x00,0x0b,0x30,0x00,0x51,0x61,0x16,0x00,0x00,0x01,0x30, + 0x00,0x1f,0x04,0x99,0x00,0x03,0x0b,0x30,0x00,0x02,0x4c,0x01,0x8f,0x16,0x00,0x00, + 0x00,0x06,0x11,0x16,0x61,0x99,0x00,0x00,0x02,0x23,0x00,0x03,0x02,0x00,0x44,0xa0, + 0x00,0x00,0x46,0x21,0x01,0x31,0x06,0x11,0x40,0x9e,0x00,0x04,0x02,0x00,0x6c,0x01, + 0x01,0x00,0x10,0x00,0x10,0x80,0x01,0x02,0xa8,0x01,0x79,0x16,0x00,0x00,0x00,0x04, + 0x66,0x00,0x30,0x00,0x03,0x02,0x00,0x0b,0x60,0x00,0x51,0x11,0x11,0x11,0x66,0x61, + 0xc0,0x00,0x42,0x00,0x00,0x66,0x66,0x09,0x00,0x33,0x06,0x66,0x40,0x2d,0x00,0x0d, + 0x30,0x00,0x43,0x06,0x11,0x11,0x60,0xf0,0x00,0x24,0x00,0x61,0xba,0x01,0x09,0x60, + 0x01,0x0a,0x60,0x00,0x34,0x06,0x11,0x11,0x20,0x01,0x33,0x06,0x11,0x16,0x60,0x00, + 0x3f,0x16,0x06,0x16,0xc0,0x00,0x05,0x01,0x1b,0x01,0x02,0x80,0x01,0x51,0x01,0x11, + 0x60,0x00,0x61,0x1a,0x02,0x31,0x44,0x66,0x11,0x8b,0x00,0x01,0x02,0x00,0x0d,0x60, + 0x00,0x22,0x60,0x46,0xf0,0x00,0x15,0x41,0x20,0x01,0x2f,0x11,0x11,0x30,0x00,0x09, + 0x01,0x02,0x00,0xff,0x01,0x14,0x00,0x00,0x01,0x11,0x14,0x61,0x11,0x11,0x40,0x00, + 0x00,0x06,0x16,0x04,0x11,0x90,0x00,0x05,0x01,0xe5,0x00,0x11,0x61,0x61,0x00,0x11, + 0x06,0x39,0x00,0x76,0x10,0x00,0x00,0x06,0x11,0x66,0x11,0x21,0x01,0x0a,0x90,0x00, + 0x61,0x00,0x06,0x11,0x11,0x16,0x06,0x30,0x00,0xef,0x00,0x61,0x11,0x14,0x61,0x11, + 0x10,0x00,0x00,0x00,0x61,0x16,0x11,0x60,0xf0,0x00,0x04,0x04,0x5f,0x03,0x01,0x02, + 0x00,0x01,0x69,0x03,0x41,0x00,0x00,0x00,0x04,0x06,0x00,0x03,0x02,0x00,0x0b,0x60, + 0x00,0x03,0x16,0x00,0x0f,0x02,0x00,0x07,0x09,0x23,0x00,0xfd,0x11,0xa0,0x0b,0xbb, + 0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x33, + 0x38,0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x44,0x44,0x04,0xe0,0x01,0xff, + 0x10,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0x3d,0x33, + 0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40, + 0x30,0x00,0x00,0x21,0xbb,0xee,0x30,0x00,0x53,0xda,0xdd,0xdd,0xd3,0xd3,0x60,0x00, + 0x9f,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x60,0x00,0x0c,0x01,0x30,0x00, + 0x11,0x83,0x90,0x00,0x2f,0x75,0x77,0x60,0x00,0x08,0x21,0xee,0xaa,0x90,0x00,0x11, + 0xd3,0x90,0x00,0x02,0x60,0x00,0x1f,0x57,0x60,0x00,0x09,0x22,0xae,0xae,0xf0,0x00, + 0x04,0x60,0x00,0x0f,0xc0,0x00,0x0d,0x62,0xee,0xaa,0xaa,0xaa,0xda,0xda,0x2f,0x00, + 0x03,0x20,0x01,0x0f,0xc0,0x00,0x0e,0x23,0xaa,0xdd,0x51,0x01,0x02,0x20,0x01,0x0f, + 0xc0,0x00,0x0a,0x04,0x20,0x01,0x04,0x80,0x01,0x0f,0xc0,0x00,0x0d,0x03,0xf0,0x00, + 0x05,0x60,0x00,0x1f,0x85,0x80,0x01,0x10,0x13,0xaa,0xef,0x00,0x03,0x20,0x01,0x0f, + 0xc0,0x00,0x0a,0x0c,0x60,0x00,0x02,0xb0,0x01,0x0f,0xe0,0x01,0x0f,0x04,0xc0,0x00, + 0x03,0x40,0x02,0x0f,0xe0,0x01,0x03,0x12,0xbb,0x60,0x00,0x24,0xaa,0xdd,0x91,0x00, + 0x01,0x60,0x00,0x01,0x40,0x02,0x1e,0x44,0x40,0x02,0x0f,0xc8,0x02,0x07,0x04,0x02, + 0x00,0x0a,0xd0,0x02,0x04,0x16,0x00,0x0f,0x02,0x00,0x07,0x0f,0x30,0x00,0x2a,0x0f, + 0x0f,0x0b,0x0f,0x14,0xaa,0x60,0x00,0x50,0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I4_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 48, - .data_size = 1136, + .data_size = 1085, .data = test_I4_LZ4_align64_map, }; diff --git a/tests/test_images/stride_align64/LZ4/test_I8.bin b/tests/test_images/stride_align64/LZ4/test_I8.bin index 4d92c2c4f..489e86159 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_I8.bin and b/tests/test_images/stride_align64/LZ4/test_I8.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_I8_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_I8_LZ4_align64.c index f0a1c7ac9..9b197ef06 100644 --- a/tests/test_images/stride_align64/LZ4/test_I8_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_I8_LZ4_align64.c @@ -20,175 +20,176 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I8_LZ4_align64_map[] = { - 0x02,0x00,0x00,0x00,0xdd,0x09,0x00,0x00,0xc0,0x16,0x00,0x00,0xf2,0xff,0xff,0xff, - 0x61,0x4c,0x70,0x47,0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff, - 0x58,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xb6,0x00,0xff,0xff, + 0x02,0x00,0x00,0x00,0xd7,0x09,0x00,0x00,0xc0,0x16,0x00,0x00,0xf1,0xff,0xff,0xff, + 0x11,0x4c,0x70,0x47,0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff, + 0x58,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff, 0x1c,0x00,0xff,0xff,0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff, 0xd0,0x00,0xff,0xff,0x94,0x00,0xff,0xff,0x13,0x00,0xff,0xff,0x3e,0x00,0xff,0xff, 0xc7,0x00,0xff,0xff,0x72,0x00,0xff,0xff,0x47,0x00,0xff,0xff,0x0b,0x00,0xff,0xff, 0x4f,0x00,0xff,0xff,0xfb,0x00,0xff,0xff,0x83,0x00,0xff,0xff,0xbf,0x00,0xff,0xff, 0x36,0x00,0xff,0xff,0xae,0x00,0xff,0xff,0x9d,0x00,0xff,0xff,0x60,0x00,0xff,0xff, - 0x24,0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0xff,0x00,0x00,0x93,0x00,0xff,0xff, - 0x8b,0x00,0x00,0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00, + 0x24,0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0x00,0xff,0xff,0x8b,0xff,0x00,0x00, + 0x93,0x00,0x00,0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00, 0xd6,0xff,0x00,0x00,0x96,0xff,0x00,0x00,0xf9,0xff,0x00,0x00,0x40,0xff,0x00,0x00, 0xac,0xff,0x00,0x00,0xf2,0x00,0xff,0xff,0xd8,0x00,0xff,0xff,0xd9,0x00,0xff,0xff, 0x25,0x00,0xff,0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00, - 0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00,0x00, - 0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xde,0x00,0x00,0x00,0x14,0x00,0x00,0x00, - 0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00,0x00, - 0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x0a,0x00,0xff,0xff, - 0x50,0xff,0x00,0x00,0xa7,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xd3,0x00,0x00,0x00, - 0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xfa,0x00,0x00,0x00, - 0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf7,0x00,0x00,0x00,0xd0,0x00,0xff,0xff, - 0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x95,0x00,0x00,0x00, - 0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00, - 0x08,0x00,0x00,0x00,0xc5,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00,0x00,0x00, - 0x0d,0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0xe1,0x00,0x00,0x00, - 0xfc,0x00,0x00,0x00,0xf9,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00, - 0x2a,0x00,0x00,0x00,0x6f,0x00,0xff,0xff,0x3f,0x00,0x00,0x00,0x34,0x00,0x00,0x00, - 0x3c,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0xa9,0x00,0x00,0x00, - 0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xe7,0x00,0x00,0x00, + 0xfa,0x00,0x00,0x00,0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff, + 0xad,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xdf,0x00,0x00,0x00, + 0x14,0x00,0x00,0x00,0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00, + 0xd4,0x00,0x00,0x00,0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff, + 0x50,0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xa7,0xff,0x00,0x00, + 0xd3,0x00,0x00,0x00,0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00, + 0xc5,0x00,0x00,0x00,0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x00, + 0xd0,0x00,0xff,0xff,0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0x3b,0x00,0x00,0x00, + 0xdd,0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00, + 0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00, + 0x8c,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0xb5,0x00,0x00,0x00,0xe1,0x00,0x00,0x00, + 0xfc,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x6f,0x00,0x00,0x00, + 0x2a,0x00,0xff,0xff,0x3f,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0xa9,0x00,0x00,0x00, + 0x0c,0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00, + 0x43,0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x52,0x00,0x00,0x00,0x89,0x00,0x00,0x00, 0x5c,0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00, - 0x7a,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x9d,0x00,0x00,0x00, - 0x55,0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00, - 0xe0,0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00, - 0x0e,0x00,0x00,0x00,0x89,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x92,0x00,0x00,0x00, - 0xc4,0x00,0xff,0xff,0x03,0x00,0x00,0x00,0x28,0x00,0xff,0xff,0xf3,0x00,0xff,0xff, - 0x57,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0x4e,0x00,0x00,0x00,0x72,0x00,0x00,0x00, - 0x4c,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0x44,0x00,0x00,0x00, - 0xc8,0x00,0x00,0x00,0xb2,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca,0x00,0x00,0x00, - 0x52,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x53,0x00,0x00,0x00,0x97,0x00,0x00,0x00, - 0x76,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x88,0x00,0x00,0x00, - 0x58,0x00,0x00,0x00,0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00, + 0x26,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x40,0x00,0x00,0x00, + 0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0,0x00,0x00,0x00, + 0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e,0x00,0xff,0xff,0x93,0x00,0x00,0x00, + 0x33,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x92,0x00,0xff,0xff,0x57,0x00,0xff,0xff, + 0xf3,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0xf6,0x00,0x00,0x00, + 0x4e,0x00,0x00,0x00,0x4c,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x18,0x00,0x00,0x00, + 0xc8,0x00,0x00,0x00,0x35,0x00,0x00,0x00,0xb3,0x00,0x00,0x00,0xe9,0x00,0x00,0x00, + 0xca,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x7b,0x00,0x00,0x00,0x97,0x00,0x00,0x00, + 0xda,0x00,0x00,0x00,0x76,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x55,0x00,0x00,0x00, + 0x7a,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x56,0x00,0x00,0x00,0x58,0x00,0x00,0x00, + 0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xd9,0x00,0x00,0x00, 0xcc,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff, 0xff,0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xc3,0xff,0x00,0xff,0x00,0xff,0x87, 0xff,0x00,0xff,0x0f,0xff,0x02,0xff,0x00,0xff,0x00,0xff,0xee,0xff,0x5c,0xff,0x00, 0xff,0x4b,0xff,0x00,0xff,0x00,0xff,0x98,0xff,0x00,0xff,0x76,0xff,0x00,0xff,0x20, - 0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0x00,0xff,0x54,0xff,0xb2,0xff,0x00, + 0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0xb2,0xff,0x00,0xff,0x00,0xff,0x54, 0xff,0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff,0xdd, 0xff,0x00,0xff,0x31,0xff,0x00,0xff,0xcc,0xff,0xe5,0xff,0x00,0xff,0xa1,0xff,0x00, - 0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x6d,0xff,0x00,0xff,0x90,0xff,0x00, - 0xff,0x8f,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x24,0xff,0x00, - 0xff,0x00,0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00, - 0xff,0xf6,0xff,0x00,0xff,0xf7,0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x14,0xff,0x00, - 0xff,0x00,0xff,0xcb,0xff,0x35,0xff,0x00,0xff,0x00,0xff,0xdc,0xff,0x00,0xff,0x43, - 0xff,0xe6,0xff,0x00,0xff,0xb1,0xff,0x00,0xff,0x00,0xff,0x53,0xff,0x17,0xff,0x00, - 0xff,0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x00,0xff,0x21, - 0xff,0x00,0xff,0x99,0xff,0x5d,0xff,0x00,0xff,0x47,0xff,0x00,0xff,0x28,0xff,0x00, - 0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xeb,0x00, - 0x0f,0x0c,0x00,0x7a,0x1f,0x9d,0x01,0x00,0x33,0x14,0x00,0x01,0x00,0x14,0x9d,0x09, - 0x00,0x0f,0x02,0x00,0x2a,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02,0x00,0x29,0x06, - 0x46,0x00,0x43,0x9d,0x00,0x00,0x9c,0x01,0x00,0x13,0x9f,0x01,0x00,0x0f,0x59,0x00, - 0x0d,0x1c,0xa0,0x01,0x00,0x01,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x07,0x83, - 0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x29,0x00,0x06,0x02,0x00,0x16,0xa0,0x0b, - 0x00,0x01,0x02,0x00,0x11,0xa0,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x05,0x33, - 0x1d,0x1e,0x9e,0x01,0x00,0x22,0x1e,0x1d,0x2b,0x00,0x41,0x45,0x21,0x21,0x45,0x0a, - 0x00,0x29,0xa0,0x00,0xa1,0x00,0x0f,0x50,0x00,0x12,0x23,0x1d,0x40,0x4e,0x00,0x42, - 0x9e,0x9e,0x9e,0x40,0x51,0x00,0x44,0x21,0x9e,0x9e,0x21,0x50,0x00,0x01,0x08,0x00, - 0x02,0x02,0x00,0x0f,0x50,0x00,0x13,0x05,0x9e,0x00,0x51,0x9e,0x9e,0x9e,0x9e,0x1e, - 0x3a,0x00,0x09,0x50,0x00,0x05,0xa2,0x00,0x0f,0x50,0x00,0x13,0x12,0x22,0x49,0x00, - 0x04,0x02,0x00,0x01,0x44,0x01,0x08,0xf0,0x00,0x05,0xa2,0x00,0x03,0x0c,0x00,0x0f, - 0xe0,0x01,0x0d,0x14,0x24,0x4a,0x00,0x02,0x02,0x00,0x11,0x24,0xa1,0x00,0x04,0x02, - 0x00,0x02,0x44,0x00,0x01,0xa2,0x00,0x01,0x4e,0x00,0x0f,0x40,0x01,0x10,0x12,0x23, - 0x48,0x00,0x04,0x02,0x00,0x14,0x23,0x4b,0x00,0x01,0x02,0x00,0x03,0x50,0x00,0x08, - 0x0a,0x00,0x09,0xa0,0x00,0x03,0x77,0x02,0x13,0x9f,0x87,0x02,0x54,0x9c,0x00,0x00, - 0x00,0x25,0x4a,0x00,0x02,0x02,0x00,0xb7,0x25,0x00,0x00,0x00,0x26,0x27,0x28,0x28, - 0x27,0x26,0x00,0x46,0x00,0x06,0x02,0x00,0x01,0xeb,0x05,0x02,0x02,0x00,0x0f,0x50, - 0x00,0x15,0x87,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x50,0x00,0x0f,0xa0,0x00, - 0x18,0x0e,0xf0,0x00,0x12,0x27,0xaa,0x00,0x16,0x27,0x50,0x00,0x0f,0x40,0x01,0x06, - 0x0f,0xf0,0x00,0x00,0x0e,0x90,0x01,0x12,0x28,0x50,0x00,0x15,0x28,0x50,0x00,0x02, - 0xdf,0x00,0x02,0xf4,0x00,0x0f,0xf0,0x00,0x0e,0x0e,0x30,0x02,0x0c,0x50,0x00,0x01, - 0xdf,0x01,0x04,0xa2,0x00,0x0f,0x50,0x00,0x0e,0x0e,0xd0,0x02,0x0b,0xf0,0x00,0x02, - 0x9e,0x00,0x04,0x9e,0x01,0x0f,0x50,0x00,0x0f,0x0d,0x70,0x03,0x0a,0x90,0x01,0x01, - 0x9b,0x00,0x03,0x02,0x00,0x0d,0x70,0x03,0x0f,0x40,0x01,0x00,0x0f,0x10,0x04,0x00, - 0x08,0x30,0x02,0x02,0x9a,0x00,0x04,0x02,0x00,0x0c,0xa0,0x00,0x0f,0x02,0x00,0x04, - 0x0f,0xb0,0x04,0x07,0x03,0x99,0x00,0x05,0x02,0x00,0x01,0x76,0x02,0x03,0x02,0x00, - 0x06,0xda,0x02,0x0f,0x02,0x00,0x29,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02,0x00, - 0x29,0x06,0x46,0x00,0x04,0x0a,0x00,0x54,0x2f,0x81,0x62,0x70,0x53,0x53,0x00,0x04, - 0x7a,0x03,0x0f,0x02,0x00,0x14,0x06,0x46,0x00,0x03,0x0a,0x00,0xb4,0x62,0x4e,0x35, - 0x9c,0x9c,0x9c,0x9c,0x46,0x7f,0x6b,0x4f,0x53,0x00,0x0f,0x02,0x00,0x1b,0x04,0x96, - 0x00,0x02,0x0a,0x00,0x16,0x8c,0x88,0x00,0x2f,0x3b,0x43,0x49,0x00,0x1b,0x03,0x02, - 0x00,0x0a,0x50,0x00,0x71,0x8d,0x9c,0x9c,0x9c,0x9c,0x55,0x46,0x56,0x00,0x13,0x66, - 0x22,0x00,0x0f,0x02,0x00,0x1b,0x0a,0x50,0x00,0x81,0x50,0x9c,0x9c,0x50,0x75,0x53, - 0x34,0x63,0xf5,0x00,0x1f,0x5f,0x4a,0x00,0x1b,0x02,0x02,0x00,0x0a,0x50,0x00,0xe2, - 0x5a,0x9c,0x9c,0x38,0x00,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x60,0x22,0x00, - 0xa4,0x00,0x00,0x36,0x93,0x3b,0x35,0x50,0x3a,0x72,0x51,0x10,0x00,0x0f,0x02,0x00, - 0x09,0x0a,0x50,0x00,0xe3,0x74,0x4d,0x4d,0x37,0x00,0x00,0x00,0x00,0x53,0x9c,0x9c, - 0x9c,0x9c,0x7c,0x38,0x00,0x21,0x91,0x49,0x00,0x01,0x33,0x9c,0x55,0x6f,0x11,0x00, - 0x0f,0x02,0x00,0x09,0x0a,0x50,0x00,0x02,0x02,0x00,0x82,0x7b,0x36,0x36,0x9c,0x9c, - 0x9c,0x9c,0x20,0x0e,0x00,0xbf,0x00,0x37,0x9c,0x9c,0x77,0x56,0x3c,0x78,0x9c,0x9c, - 0x9c,0xa2,0x00,0x10,0x0b,0x50,0x00,0x42,0x4f,0x8f,0x38,0x6e,0x8f,0x01,0x06,0x50, - 0x00,0xb3,0x95,0x9c,0x9c,0x59,0x00,0x00,0x2f,0x52,0x9c,0x9c,0x56,0x62,0x00,0x0a, - 0x02,0x00,0x72,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x04,0x00,0x0a,0x50,0x00,0x22, - 0x6d,0x8e,0xdb,0x00,0x01,0x02,0x00,0x04,0xa0,0x00,0x8f,0x59,0x38,0x38,0x2f,0x00, - 0x00,0x00,0x54,0xf3,0x01,0x12,0x09,0x50,0x00,0x11,0x57,0xd8,0x01,0x48,0x6a,0x47, - 0x67,0x67,0xa0,0x00,0xb4,0x00,0x00,0x2f,0x73,0x6f,0x56,0x20,0x50,0x9c,0x9c,0x33, - 0x99,0x00,0x54,0x36,0x98,0x7a,0x37,0x68,0x0d,0x00,0x09,0x02,0x00,0x09,0x50,0x00, - 0x73,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x34,0x68,0x03,0x04,0xa0,0x00,0x23,0x4f,0x94, - 0x91,0x01,0x05,0x50,0x00,0x79,0x2f,0x49,0x55,0x5a,0x5b,0x5c,0x59,0x49,0x00,0x03, - 0x02,0x00,0x09,0x50,0x00,0x51,0x3b,0x9c,0x9c,0x9c,0x3a,0x19,0x00,0x08,0xa0,0x00, - 0x86,0x3c,0x9c,0x9c,0x9c,0x3b,0x76,0x96,0x6e,0xa0,0x00,0x71,0x2f,0x9c,0x7a,0x00, - 0x99,0x9c,0x58,0x2a,0x00,0x0f,0x40,0x01,0x09,0xa7,0x4a,0x9c,0x9c,0x9c,0x8b,0x00, - 0x00,0x00,0x00,0x5f,0x50,0x00,0x96,0x34,0x52,0x9c,0x9c,0x76,0x00,0x00,0x00,0x47, - 0x50,0x00,0x73,0x34,0x9a,0x75,0x5d,0x3c,0x9c,0x4a,0x50,0x00,0x09,0x02,0x00,0x09, - 0xa0,0x00,0x11,0x58,0xc7,0x02,0x92,0x88,0x68,0x37,0x6c,0x9c,0x9c,0x9c,0x9c,0x4e, - 0x29,0x00,0x96,0x90,0x9c,0x9c,0x9c,0x73,0x00,0x00,0x34,0x3a,0x50,0x00,0x5f,0x2f, - 0x9b,0x9c,0x35,0x78,0x50,0x00,0x10,0x28,0x39,0x9c,0x01,0x00,0xf3,0x04,0x5b,0x4d, - 0x87,0x00,0x00,0x00,0x00,0x48,0x49,0x9c,0x9c,0x3a,0x97,0x5d,0x54,0x9c,0x9c,0x9c, - 0x47,0x84,0x01,0x55,0x37,0x9c,0x38,0x00,0x79,0x50,0x00,0x0f,0x30,0x02,0x07,0x23, - 0x69,0x47,0x50,0x00,0x21,0x58,0x54,0x09,0x00,0x11,0x39,0xa2,0x00,0x11,0x4e,0x0c, - 0x00,0x71,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x65,0x12,0x00,0x81,0x39,0x9c,0x3a,0x39, - 0x74,0x9c,0x35,0x70,0x0d,0x00,0x0a,0x02,0x00,0x09,0xf0,0x00,0xb1,0x00,0x43,0x7e, - 0x49,0x9c,0x9c,0x9c,0x52,0x3c,0x69,0x86,0x44,0x00,0x02,0x50,0x00,0x86,0x48,0x92, - 0x46,0x9c,0x9c,0x6c,0x6b,0x5d,0x50,0x00,0x82,0x53,0x3b,0x9c,0x5b,0x3c,0x5c,0x9c, - 0x72,0x4b,0x00,0x0f,0xa0,0x00,0x07,0x7d,0x00,0x00,0x00,0x43,0x89,0x85,0x63,0xfa, - 0x04,0x41,0x7b,0x51,0x79,0x48,0x1e,0x00,0x05,0x02,0x00,0x25,0x36,0x7b,0x0b,0x00, - 0x0a,0x02,0x00,0x0a,0xa0,0x00,0x0f,0x02,0x00,0x2f,0x09,0x50,0x00,0xf4,0x30,0xc5, - 0xb6,0xad,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab, - 0xb4,0xcb,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1, - 0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05, - 0x4c,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0xe6,0x05, - 0x02,0x02,0x00,0x05,0x50,0x00,0x17,0xbc,0x50,0x00,0x12,0xb1,0x50,0x00,0x24,0xb0, - 0xc8,0x50,0x00,0x61,0x1c,0x04,0x29,0x0b,0x64,0x44,0x50,0x00,0xbf,0x1f,0x15,0x05, - 0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x50,0x00,0x04,0x95,0xc4,0xb6,0xad,0xa2, - 0xaf,0xb7,0xbc,0xbe,0xba,0xa0,0x00,0x87,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0, - 0xa0,0x00,0x84,0x29,0x0b,0x0f,0x44,0x06,0x32,0x01,0x31,0x50,0x00,0x01,0xa0,0x00, - 0x1f,0x1b,0xa0,0x00,0x07,0x31,0xb7,0xbb,0xb9,0xf0,0x00,0x64,0xc2,0xa5,0xa4,0xab, - 0xc6,0xcb,0x50,0x00,0x11,0xca,0xf0,0x00,0x32,0x41,0x82,0x1c,0x50,0x00,0x66,0x18, - 0x01,0x19,0x0c,0x1f,0x3d,0xa0,0x00,0x3f,0x1b,0x07,0x5e,0xf0,0x00,0x00,0x72,0xc4, - 0xb6,0xad,0xa2,0xcd,0xc1,0xbb,0xa0,0x00,0x18,0xc7,0xa0,0x00,0x09,0xf0,0x00,0x03, - 0x40,0x01,0x03,0x50,0x00,0x1f,0x13,0xf0,0x00,0x07,0x01,0x90,0x01,0x92,0xb7,0xbb, - 0xb9,0xbd,0xd5,0xa8,0xb2,0xd7,0xc2,0x90,0x01,0x5a,0xb8,0xaa,0xa3,0xa9,0xd1,0x40, - 0x01,0x42,0x0f,0x16,0x06,0x32,0x40,0x01,0x35,0x4c,0x08,0x2c,0x90,0x01,0x1f,0x3e, - 0x90,0x01,0x04,0x04,0xf0,0x00,0x02,0xa0,0x00,0x1f,0xce,0xe0,0x01,0x03,0x87,0x32, - 0x01,0x19,0x0c,0x2e,0x3d,0x05,0x10,0x50,0x00,0x0f,0xf0,0x00,0x01,0x52,0xcc,0xad, - 0xa2,0xcd,0xb7,0xe0,0x01,0x12,0xbf,0x50,0x00,0x02,0x40,0x01,0x13,0xd0,0x40,0x01, - 0x02,0x30,0x02,0x17,0x64,0x90,0x01,0x03,0xa0,0x00,0x5e,0x1b,0x07,0x5e,0x3e,0x80, - 0x30,0x02,0x11,0xcc,0xe0,0x01,0xa4,0xb9,0xba,0xa7,0xa8,0xb2,0xbf,0xc2,0xa5,0xa4, - 0xd3,0x50,0x00,0x04,0x90,0x01,0x34,0x14,0x0a,0x1c,0x80,0x02,0x4f,0x31,0x0c,0x2e, - 0x15,0xa0,0x00,0x0d,0x01,0x40,0x01,0x13,0xc1,0x50,0x00,0x97,0xc7,0xa5,0xa4,0xd3, - 0xc6,0xcb,0xae,0xc0,0xd2,0x30,0x02,0x61,0x41,0x0a,0x1c,0x04,0x2a,0x84,0x90,0x01, - 0x01,0x30,0x02,0x01,0x40,0x01,0x5f,0x4b,0x0e,0x30,0x09,0x1b,0x40,0x01,0x02,0x01, - 0x80,0x02,0x11,0xc1,0x80,0x02,0x13,0xc9,0xf0,0x00,0x19,0xce,0x80,0x02,0x18,0x41, - 0x20,0x03,0x04,0xe0,0x01,0x21,0x4b,0x61,0x50,0x00,0x0f,0x40,0x01,0x02,0x14,0xd8, - 0x70,0x03,0x21,0xc9,0xbf,0x80,0x02,0x22,0xb1,0xce,0xa0,0x00,0x16,0xc8,0x40,0x01, - 0x04,0xe0,0x01,0x11,0x7d,0xf0,0x00,0x4f,0x1a,0x03,0x3f,0x4b,0xd0,0x02,0x06,0x03, - 0x90,0x01,0x26,0xb9,0xba,0x50,0x00,0x02,0x90,0x01,0x04,0x30,0x02,0x21,0x41,0x0a, - 0xd0,0x02,0x05,0xc0,0x03,0x07,0x90,0x01,0x0f,0xc0,0x03,0x01,0x01,0xf0,0x00,0x64, - 0xb7,0xbb,0xb9,0xba,0xa7,0xd6,0xa0,0x00,0x66,0xae,0xc0,0xaa,0xa3,0xd4,0xd1,0x70, - 0x03,0x0c,0x90,0x01,0x51,0x1a,0x83,0x3f,0x11,0x61,0xa0,0x00,0x0f,0x80,0x02,0x00, - 0x0f,0x02,0x00,0x30,0x09,0xb0,0x04,0x0f,0x02,0x00,0x30,0x0f,0x50,0x00,0x48,0x0f, - 0x70,0x12,0x37,0x50,0x00,0x00,0x00,0x00,0x00, + 0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x8f,0xff,0x00,0xff,0x6d,0xff,0x00, + 0xff,0x90,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x00,0xff,0x64, + 0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff,0xf6,0xff,0x00, + 0xff,0x00,0xff,0x32,0xff,0x24,0xff,0x00,0xff,0x14,0xff,0x00,0xff,0xf7,0x64,0x00, + 0x31,0xcb,0xff,0x35,0x08,0x00,0xb1,0xdc,0xff,0x00,0xff,0x43,0xff,0xe6,0xff,0x00, + 0xff,0xb1,0x10,0x00,0x31,0x53,0xff,0x17,0x08,0x00,0xb1,0xbb,0xff,0x00,0xff,0xaa, + 0xff,0x00,0xff,0x75,0xff,0x25,0x10,0x00,0xf1,0x05,0x21,0xff,0x00,0xff,0x99,0xff, + 0x47,0xff,0x00,0xff,0x5d,0xff,0x00,0xff,0x28,0xff,0x00,0xff,0xd5,0xff,0xec,0x00, + 0x1f,0x00,0x04,0x00,0x81,0x1f,0x9d,0x01,0x00,0x33,0x14,0x00,0x01,0x00,0x14,0x9d, + 0x09,0x00,0x0f,0x02,0x00,0x2a,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02,0x00,0x29, + 0x06,0x46,0x00,0x43,0x9d,0x00,0x00,0x9c,0x01,0x00,0x13,0x9f,0x01,0x00,0x0f,0x59, + 0x00,0x0d,0x1c,0xa0,0x01,0x00,0x01,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x07, + 0x83,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x29,0x00,0x06,0x02,0x00,0x16,0xa0, + 0x0b,0x00,0x01,0x02,0x00,0x11,0xa0,0x46,0x00,0x03,0x02,0x00,0x0f,0x50,0x00,0x05, + 0x33,0x1d,0x1f,0x9e,0x01,0x00,0x22,0x1f,0x1d,0x2b,0x00,0x41,0x46,0x21,0x21,0x46, + 0x0a,0x00,0x29,0xa0,0x00,0xa1,0x00,0x0f,0x50,0x00,0x12,0x23,0x1d,0x42,0x4e,0x00, + 0x42,0x9e,0x9e,0x9e,0x42,0x51,0x00,0x44,0x21,0x9e,0x9e,0x21,0x50,0x00,0x01,0x08, + 0x00,0x02,0x02,0x00,0x0f,0x50,0x00,0x13,0x05,0x9e,0x00,0x51,0x9e,0x9e,0x9e,0x9e, + 0x1f,0x3a,0x00,0x09,0x50,0x00,0x05,0xa2,0x00,0x0f,0x50,0x00,0x13,0x12,0x22,0x49, + 0x00,0x04,0x02,0x00,0x01,0x44,0x01,0x08,0xf0,0x00,0x05,0xa2,0x00,0x03,0x0c,0x00, + 0x0f,0xe0,0x01,0x0d,0x14,0x24,0x4a,0x00,0x02,0x02,0x00,0x11,0x24,0xa1,0x00,0x04, + 0x02,0x00,0x02,0x44,0x00,0x01,0xa2,0x00,0x01,0x4e,0x00,0x0f,0x40,0x01,0x10,0x12, + 0x23,0x48,0x00,0x04,0x02,0x00,0x14,0x23,0x4b,0x00,0x01,0x02,0x00,0x03,0x50,0x00, + 0x08,0x0a,0x00,0x09,0xa0,0x00,0x03,0x77,0x02,0x13,0x9f,0x87,0x02,0x54,0x9c,0x00, + 0x00,0x00,0x25,0x4a,0x00,0x02,0x02,0x00,0xb7,0x25,0x00,0x00,0x00,0x26,0x27,0x28, + 0x28,0x27,0x26,0x00,0x46,0x00,0x06,0x02,0x00,0x01,0xf3,0x05,0x02,0x02,0x00,0x0f, + 0x50,0x00,0x15,0x87,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x50,0x00,0x0f,0xa0, + 0x00,0x18,0x0e,0xf0,0x00,0x12,0x27,0xaa,0x00,0x16,0x27,0x50,0x00,0x0f,0x40,0x01, + 0x06,0x0f,0xf0,0x00,0x00,0x0e,0x90,0x01,0x12,0x28,0x50,0x00,0x15,0x28,0x50,0x00, + 0x02,0xdf,0x00,0x02,0xf4,0x00,0x0f,0xf0,0x00,0x0e,0x0e,0x30,0x02,0x0c,0x50,0x00, + 0x01,0xdf,0x01,0x04,0xa2,0x00,0x0f,0x50,0x00,0x0e,0x0e,0xd0,0x02,0x0b,0xf0,0x00, + 0x02,0x9e,0x00,0x04,0x9e,0x01,0x0f,0x50,0x00,0x0f,0x0d,0x70,0x03,0x0a,0x90,0x01, + 0x01,0x9b,0x00,0x03,0x02,0x00,0x0d,0x70,0x03,0x0f,0x40,0x01,0x00,0x0f,0x10,0x04, + 0x00,0x08,0x30,0x02,0x02,0x9a,0x00,0x04,0x02,0x00,0x0c,0xa0,0x00,0x0f,0x02,0x00, + 0x04,0x0f,0xb0,0x04,0x07,0x03,0x99,0x00,0x05,0x02,0x00,0x01,0x76,0x02,0x03,0x02, + 0x00,0x06,0xda,0x02,0x0f,0x02,0x00,0x29,0x06,0x46,0x00,0x06,0x0a,0x00,0x0f,0x02, + 0x00,0x29,0x06,0x46,0x00,0x04,0x0a,0x00,0x54,0x30,0x7c,0x7b,0x6f,0x55,0x53,0x00, + 0x04,0x7a,0x03,0x0f,0x02,0x00,0x14,0x06,0x46,0x00,0x03,0x0a,0x00,0xb4,0x88,0x50, + 0x4f,0x9c,0x9c,0x9c,0x9c,0x2f,0x47,0x6b,0x51,0x53,0x00,0x0f,0x02,0x00,0x1b,0x04, + 0x96,0x00,0x02,0x0a,0x00,0x16,0x89,0x88,0x00,0x2f,0x3c,0x44,0x49,0x00,0x1b,0x03, + 0x02,0x00,0x0a,0x50,0x00,0x71,0x8a,0x9c,0x9c,0x9c,0x9c,0x56,0x2f,0x56,0x00,0x13, + 0x62,0x22,0x00,0x0f,0x02,0x00,0x1b,0x0a,0x50,0x00,0x81,0x52,0x9c,0x9c,0x52,0x74, + 0x55,0x35,0x4e,0xf5,0x00,0x1f,0x5f,0x4a,0x00,0x1b,0x02,0x02,0x00,0x0a,0x50,0x00, + 0xe2,0x5a,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x67,0x9c,0x9c,0x9c,0x9c,0x5e,0x22, + 0x00,0xa4,0x00,0x00,0x37,0x90,0x3c,0x4f,0x52,0x3b,0x70,0x53,0x10,0x00,0x0f,0x02, + 0x00,0x09,0x0a,0x50,0x00,0xe3,0x73,0x4f,0x4f,0x38,0x00,0x00,0x00,0x00,0x55,0x9c, + 0x9c,0x9c,0x9c,0x6a,0x38,0x00,0x21,0x69,0x4a,0x00,0x01,0x33,0x9c,0x56,0x8d,0x11, + 0x00,0x0f,0x02,0x00,0x09,0x0a,0x50,0x00,0x02,0x02,0x00,0x82,0x79,0x37,0x37,0x9c, + 0x9c,0x9c,0x9c,0x20,0x0e,0x00,0xbf,0x00,0x38,0x9c,0x9c,0x76,0x57,0x3d,0x8f,0x9c, + 0x9c,0x9c,0xa2,0x00,0x10,0x0b,0x50,0x00,0x42,0x51,0x69,0x39,0x6e,0x8f,0x01,0x06, + 0x50,0x00,0xb3,0x91,0x9c,0x9c,0x72,0x00,0x00,0x30,0x54,0x9c,0x9c,0x57,0x62,0x00, + 0x0a,0x02,0x00,0x72,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x04,0x00,0x0a,0x50,0x00, + 0x22,0x6d,0x8b,0xdb,0x00,0x01,0x02,0x00,0x04,0xa0,0x00,0x8f,0x72,0x39,0x39,0x30, + 0x00,0x00,0x00,0x47,0xf3,0x01,0x12,0x09,0x50,0x00,0x11,0x58,0xd8,0x01,0x48,0x68, + 0x48,0x64,0x64,0xa0,0x00,0xb4,0x00,0x00,0x30,0x92,0x93,0x57,0x20,0x52,0x9c,0x9c, + 0x34,0x99,0x00,0x54,0x37,0x97,0x78,0x38,0x65,0x0d,0x00,0x09,0x02,0x00,0x09,0x50, + 0x00,0x73,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x35,0x68,0x03,0x04,0xa0,0x00,0x23,0x51, + 0x94,0x91,0x01,0x05,0x50,0x00,0x79,0x30,0x4a,0x56,0x5a,0x5b,0x2f,0x67,0x49,0x00, + 0x03,0x02,0x00,0x09,0x50,0x00,0x51,0x3c,0x9c,0x9c,0x9c,0x3b,0x19,0x00,0x08,0xa0, + 0x00,0x86,0x3d,0x9c,0x9c,0x9c,0x3c,0x57,0x6a,0x6e,0xa0,0x00,0x71,0x30,0x9c,0x78, + 0x00,0x98,0x9c,0x59,0x2a,0x00,0x0f,0x40,0x01,0x09,0xa7,0x4b,0x9c,0x9c,0x9c,0x87, + 0x00,0x00,0x00,0x00,0x5f,0x50,0x00,0x96,0x35,0x54,0x9c,0x9c,0x75,0x00,0x00,0x00, + 0x48,0x50,0x00,0x73,0x35,0x99,0x74,0x5c,0x3d,0x9c,0x4b,0x50,0x00,0x09,0x02,0x00, + 0x09,0xa0,0x00,0x11,0x59,0xc7,0x02,0x92,0x86,0x65,0x38,0x6c,0x9c,0x9c,0x9c,0x9c, + 0x50,0x29,0x00,0x96,0x8c,0x9c,0x9c,0x9c,0x95,0x00,0x00,0x35,0x3b,0x50,0x00,0x5f, + 0x30,0x9b,0x9c,0x36,0x9a,0x50,0x00,0x10,0x11,0x3a,0xd8,0x01,0x04,0x02,0x00,0xf3, + 0x04,0x2f,0x4f,0x84,0x00,0x00,0x00,0x00,0x49,0x4a,0x9c,0x9c,0x3b,0x96,0x5c,0x47, + 0x9c,0x9c,0x9c,0x48,0x84,0x01,0x55,0x38,0x9c,0x39,0x00,0x77,0x50,0x00,0x0f,0x30, + 0x02,0x07,0x23,0x66,0x48,0x4c,0x00,0x21,0x89,0x47,0x09,0x00,0x11,0x3a,0xa2,0x00, + 0x11,0x50,0x0c,0x00,0x71,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x63,0x12,0x00,0x81,0x3a, + 0x9c,0x3b,0x3a,0x73,0x9c,0x36,0x6f,0x0d,0x00,0x0a,0x02,0x00,0x09,0xf0,0x00,0xb1, + 0x00,0x44,0x7d,0x82,0x9c,0x9c,0x9c,0x54,0x3d,0x66,0x85,0x44,0x00,0x02,0x50,0x00, + 0x86,0x49,0x8e,0x2f,0x9c,0x9c,0x6c,0x6b,0x5c,0x50,0x00,0x82,0x55,0x3c,0x9c,0x2f, + 0x3d,0x2f,0x9c,0x70,0x4b,0x00,0x0f,0xa0,0x00,0x07,0x7d,0x00,0x00,0x00,0x44,0x4e, + 0x83,0x4e,0xfa,0x04,0x41,0x79,0x53,0x77,0x49,0x1e,0x00,0x05,0x02,0x00,0x25,0x37, + 0x79,0x0b,0x00,0x0a,0x02,0x00,0x0a,0xa0,0x00,0x0f,0x02,0x00,0x2f,0x09,0x50,0x00, + 0xf4,0x30,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf, + 0xa5,0xa4,0xab,0xb4,0xcb,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1, + 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c, + 0x2e,0x15,0x04,0x4d,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12, + 0x02,0xe6,0x05,0x02,0x02,0x00,0x05,0x50,0x00,0x17,0xba,0x50,0x00,0x12,0xb1,0x50, + 0x00,0x24,0xb0,0xc8,0x50,0x00,0x61,0x1c,0x05,0x29,0x0b,0x61,0x45,0x50,0x00,0xbf, + 0x1e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x50,0x00,0x04,0x95,0xc3, + 0xb6,0xad,0xa2,0xae,0xb7,0xba,0xbe,0xbb,0xa0,0x00,0x87,0xb1,0xaf,0xb8,0xaa,0xa3, + 0xa9,0xac,0xb0,0xa0,0x00,0x84,0x29,0x0b,0x0f,0x45,0x06,0x33,0x01,0x32,0x50,0x00, + 0x01,0xa0,0x00,0x1f,0x1b,0xa0,0x00,0x07,0x31,0xb7,0xbc,0xb9,0xf0,0x00,0x64,0xc1, + 0xa5,0xa4,0xab,0xc4,0xcb,0x50,0x00,0x11,0xca,0xf0,0x00,0x32,0x41,0x7f,0x1c,0x50, + 0x00,0x66,0x18,0x01,0x19,0x0c,0x1e,0x3e,0xa0,0x00,0x3f,0x1b,0x07,0x5d,0xf0,0x00, + 0x00,0x72,0xc3,0xb6,0xad,0xa2,0xcd,0xc0,0xbc,0xa0,0x00,0x18,0xc6,0xa0,0x00,0x09, + 0xf0,0x00,0x03,0x40,0x01,0x03,0x50,0x00,0x1f,0x13,0xf0,0x00,0x07,0x01,0x90,0x01, + 0x92,0xb7,0xbc,0xb9,0xbd,0xd7,0xa8,0xb2,0xd8,0xc1,0x90,0x01,0x5a,0xb8,0xaa,0xa3, + 0xa9,0xd1,0x40,0x01,0x42,0x0f,0x16,0x06,0x33,0x40,0x01,0x35,0x4d,0x08,0x2c,0x90, + 0x01,0x1f,0x40,0x90,0x01,0x04,0x04,0xf0,0x00,0x02,0xa0,0x00,0x1f,0xce,0xe0,0x01, + 0x03,0x87,0x33,0x01,0x19,0x0c,0x2e,0x3e,0x04,0x10,0x50,0x00,0x0f,0xf0,0x00,0x01, + 0x52,0xcc,0xad,0xa2,0xcd,0xb7,0xe0,0x01,0x12,0xd3,0x50,0x00,0x02,0x40,0x01,0x13, + 0xd0,0x40,0x01,0x02,0x30,0x02,0x17,0x61,0x90,0x01,0x03,0xa0,0x00,0x5e,0x1b,0x07, + 0x5d,0x40,0x80,0x30,0x02,0x11,0xcc,0xe0,0x01,0xa4,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5, + 0xc1,0xa5,0xa4,0xd4,0x50,0x00,0x04,0x90,0x01,0x34,0x14,0x0a,0x1c,0x80,0x02,0x4f, + 0x32,0x0c,0x2e,0x15,0xa0,0x00,0x0d,0x01,0x40,0x01,0x13,0xc0,0x50,0x00,0x97,0xc6, + 0xa5,0xa4,0xd4,0xc4,0xcb,0xaf,0xbf,0xd2,0x30,0x02,0x61,0x41,0x0a,0x1c,0x05,0x2a, + 0x81,0x90,0x01,0x01,0x30,0x02,0x01,0x40,0x01,0x5f,0x4c,0x0e,0x31,0x09,0x1b,0x40, + 0x01,0x02,0x01,0x80,0x02,0x11,0xc0,0x80,0x02,0x22,0xc9,0xc5,0xf0,0x00,0x19,0xce, + 0x80,0x02,0x18,0x41,0x20,0x03,0x04,0xe0,0x01,0x21,0x4c,0x60,0x50,0x00,0x1e,0x12, + 0x90,0x01,0x34,0xc3,0xcc,0xd9,0x70,0x03,0x92,0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4, + 0xb1,0xce,0xa0,0x00,0x16,0xc8,0x40,0x01,0x04,0xe0,0x01,0x11,0x7a,0xf0,0x00,0x4f, + 0x1a,0x03,0x3f,0x4c,0xd0,0x02,0x06,0x03,0x90,0x01,0x26,0xb9,0xbb,0x50,0x00,0x02, + 0x90,0x01,0x04,0x30,0x02,0x21,0x41,0x0a,0xd0,0x02,0x05,0xc0,0x03,0x07,0x90,0x01, + 0x0f,0xc0,0x03,0x01,0x01,0xf0,0x00,0x82,0xb7,0xbc,0xb9,0xbb,0xa7,0xd6,0xc9,0xd3, + 0xa0,0x00,0x66,0xaf,0xbf,0xaa,0xa3,0xd5,0xd1,0x70,0x03,0x0c,0x90,0x01,0x51,0x1a, + 0x7e,0x3f,0x11,0x60,0xa0,0x00,0x0f,0x80,0x02,0x00,0x0f,0x02,0x00,0x30,0x09,0xb0, + 0x04,0x0f,0x02,0x00,0x30,0x0f,0x50,0x00,0x48,0x0f,0x70,0x12,0x37,0x50,0x00,0x00, + 0x00,0x00,0x00, }; const lv_img_dsc_t test_I8_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 80, - .data_size = 2537, + .data_size = 2531, .data = test_I8_LZ4_align64_map, }; diff --git a/tests/test_images/stride_align64/LZ4/test_L8.bin b/tests/test_images/stride_align64/LZ4/test_L8.bin index c8ac21d2a..ad6f79458 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_L8.bin and b/tests/test_images/stride_align64/LZ4/test_L8.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_L8_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_L8_LZ4_align64.c index 2e2dee81b..38b99a28c 100644 --- a/tests/test_images/stride_align64/LZ4/test_L8_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_L8_LZ4_align64.c @@ -101,6 +101,7 @@ uint8_t test_L8_LZ4_align64_map[] = { }; const lv_img_dsc_t test_L8_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_L8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_RGB565.bin b/tests/test_images/stride_align64/LZ4/test_RGB565.bin index 5fe292507..83b95daad 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_RGB565.bin and b/tests/test_images/stride_align64/LZ4/test_RGB565.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_RGB565A8.bin b/tests/test_images/stride_align64/LZ4/test_RGB565A8.bin index 3c6491e56..87aa2489b 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_RGB565A8.bin and b/tests/test_images/stride_align64/LZ4/test_RGB565A8.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_RGB565A8_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_RGB565A8_LZ4_align64.c index 79848368a..107633a60 100644 --- a/tests/test_images/stride_align64/LZ4/test_RGB565A8_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_RGB565A8_LZ4_align64.c @@ -153,6 +153,7 @@ uint8_t test_RGB565A8_LZ4_align64_map[] = { }; const lv_img_dsc_t test_RGB565A8_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_RGB565_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_RGB565_LZ4_align64.c index 6dc3ec346..28714db13 100644 --- a/tests/test_images/stride_align64/LZ4/test_RGB565_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_RGB565_LZ4_align64.c @@ -124,6 +124,7 @@ uint8_t test_RGB565_LZ4_align64_map[] = { }; const lv_img_dsc_t test_RGB565_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_RGB888.bin b/tests/test_images/stride_align64/LZ4/test_RGB888.bin index 8283494b6..54e2d0c95 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_RGB888.bin and b/tests/test_images/stride_align64/LZ4/test_RGB888.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_RGB888_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_RGB888_LZ4_align64.c index 428909eb0..a7d28e62e 100644 --- a/tests/test_images/stride_align64/LZ4/test_RGB888_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_RGB888_LZ4_align64.c @@ -199,6 +199,7 @@ uint8_t test_RGB888_LZ4_align64_map[] = { }; const lv_img_dsc_t test_RGB888_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/LZ4/test_XRGB8888.bin b/tests/test_images/stride_align64/LZ4/test_XRGB8888.bin index 81a02d18c..7d84aa42c 100644 Binary files a/tests/test_images/stride_align64/LZ4/test_XRGB8888.bin and b/tests/test_images/stride_align64/LZ4/test_XRGB8888.bin differ diff --git a/tests/test_images/stride_align64/LZ4/test_XRGB8888_LZ4_align64.c b/tests/test_images/stride_align64/LZ4/test_XRGB8888_LZ4_align64.c index c246b1e62..28452f6d1 100644 --- a/tests/test_images/stride_align64/LZ4/test_XRGB8888_LZ4_align64.c +++ b/tests/test_images/stride_align64/LZ4/test_XRGB8888_LZ4_align64.c @@ -217,6 +217,7 @@ uint8_t test_XRGB8888_LZ4_align64_map[] = { }; const lv_img_dsc_t test_XRGB8888_LZ4_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_XRGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_A1.bin b/tests/test_images/stride_align64/RLE/test_A1.bin index 584e3f671..59272de64 100644 Binary files a/tests/test_images/stride_align64/RLE/test_A1.bin and b/tests/test_images/stride_align64/RLE/test_A1.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_A1_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_A1_RLE_align64.c index 065c3b40d..37072d864 100644 --- a/tests/test_images/stride_align64/RLE/test_A1_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_A1_RLE_align64.c @@ -86,6 +86,7 @@ uint8_t test_A1_RLE_align64_map[] = { }; const lv_img_dsc_t test_A1_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_A2.bin b/tests/test_images/stride_align64/RLE/test_A2.bin index 584183911..cf3d55cad 100644 Binary files a/tests/test_images/stride_align64/RLE/test_A2.bin and b/tests/test_images/stride_align64/RLE/test_A2.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_A2_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_A2_RLE_align64.c index 7cd97f828..fed371e0b 100644 --- a/tests/test_images/stride_align64/RLE/test_A2_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_A2_RLE_align64.c @@ -145,6 +145,7 @@ uint8_t test_A2_RLE_align64_map[] = { }; const lv_img_dsc_t test_A2_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_A4.bin b/tests/test_images/stride_align64/RLE/test_A4.bin index 003d7eaf9..953e091c3 100644 Binary files a/tests/test_images/stride_align64/RLE/test_A4.bin and b/tests/test_images/stride_align64/RLE/test_A4.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_A4_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_A4_RLE_align64.c index d64ffe28a..3e9da4e7c 100644 --- a/tests/test_images/stride_align64/RLE/test_A4_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_A4_RLE_align64.c @@ -180,6 +180,7 @@ uint8_t test_A4_RLE_align64_map[] = { }; const lv_img_dsc_t test_A4_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_A8.bin b/tests/test_images/stride_align64/RLE/test_A8.bin index 9ecc58cbe..cd40f55ce 100644 Binary files a/tests/test_images/stride_align64/RLE/test_A8.bin and b/tests/test_images/stride_align64/RLE/test_A8.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_A8_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_A8_RLE_align64.c index ec2eb8373..4cb68e561 100644 --- a/tests/test_images/stride_align64/RLE/test_A8_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_A8_RLE_align64.c @@ -226,6 +226,7 @@ uint8_t test_A8_RLE_align64_map[] = { }; const lv_img_dsc_t test_A8_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_ARGB8888.bin b/tests/test_images/stride_align64/RLE/test_ARGB8888.bin index bc3236fd3..5d87e5331 100644 Binary files a/tests/test_images/stride_align64/RLE/test_ARGB8888.bin and b/tests/test_images/stride_align64/RLE/test_ARGB8888.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_ARGB8888_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_ARGB8888_RLE_align64.c index 7ee9af1f8..6394bd329 100644 --- a/tests/test_images/stride_align64/RLE/test_ARGB8888_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_ARGB8888_RLE_align64.c @@ -796,6 +796,7 @@ uint8_t test_ARGB8888_RLE_align64_map[] = { }; const lv_img_dsc_t test_ARGB8888_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_ARGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_I1.bin b/tests/test_images/stride_align64/RLE/test_I1.bin index 861269288..4c582739c 100644 Binary files a/tests/test_images/stride_align64/RLE/test_I1.bin and b/tests/test_images/stride_align64/RLE/test_I1.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_I1_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_I1_RLE_align64.c index 1c72e31dd..919ae10e7 100644 --- a/tests/test_images/stride_align64/RLE/test_I1_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_I1_RLE_align64.c @@ -20,64 +20,64 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I1_RLE_align64_map[] = { - 0x01,0x00,0x00,0x00,0xbc,0x03,0x00,0x00,0xc9,0x03,0x00,0x00,0xff,0x3f,0xe3,0x94, - 0xee,0x66,0x0f,0x0f,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x01,0x00,0x00,0x00,0xbc,0x03,0x00,0x00,0xc9,0x03,0x00,0x00,0xff,0x56,0x82,0x0a, + 0xfa,0x43,0xbe,0xeb,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xff,0xff,0xff,0xe0,0x00,0x0c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xf9,0xff,0xff,0xef,0xff,0xec,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x3f,0xef,0xe8,0x00,0x2c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x80,0x1f,0xe3,0xeb,0xff,0xac,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0xc7,0xea,0xff,0x00,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xef,0xea,0xfe,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xf0,0xff,0xff,0xef,0xff,0xec,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xe8,0x00,0x2c,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0xc3,0xeb,0xff,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0xc3,0xea,0xff,0x00,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xe7,0xea,0xfe,0xac,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0x82,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0xba,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xf7,0xea,0xaa,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xba,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x81,0xea,0x82,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xff,0xea,0xba,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xaa,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0x81,0xea,0xba,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1c,0x00,0x03,0x00,0xea,0x82,0xac,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x00,0xea,0xfe,0xac,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x01,0xff,0xea,0x00,0xac, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x0f,0x81,0xeb,0xff,0xac, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x80,0x1f,0xc1,0xe8,0x00,0x2c, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xef,0xff,0xec, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xf8,0xff,0xff,0xe0,0x00,0x0c, + 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1e,0x00,0x07,0x00,0xff,0xea,0x00,0xac, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x07,0x00,0xeb,0xff,0xac, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0x00,0x1f,0x81,0xe8,0x00,0x2c, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x1f,0xc0,0x1f,0xc3,0xef,0xff,0xec, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xf0,0x7f,0xff,0xe0,0x00,0x0c, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xf8,0x00,0x00,0x00,0x00,0x00,0x0c, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x01,0xff,0xff,0xff,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0xff,0xff,0xff,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x7f,0xff,0xff,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x71,0xf8,0x7f,0xf4,0xff,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0xf8,0x7f,0xc0,0x3f,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xf8,0x7f,0xc6,0x1f,0xff,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x7f,0xcf,0x1f,0xff,0xff,0xad, - 0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x7f,0xff,0xff,0x9f,0xff,0xff, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x28,0x7f,0xff,0x1f,0xff,0xff, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xe0,0x1f,0xf0,0x7f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xc7,0x1f,0xf7,0x7f, - 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0xf8,0x7f,0x8f,0x1f,0xff,0x3f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x7f,0x8f,0x9f,0xf8,0x3f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x1f,0x87,0x0f,0xf7,0x7f, - 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x1f,0xc0,0x07,0xf3,0x3f, - 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x1c,0x1f,0xff,0xe1,0x87,0xf9, - 0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xf0,0x7f,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x71,0xf8,0x3f,0xc0,0x3f,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xf8,0x7f,0xc4,0x1f,0xff,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x00,0x3f,0xcf,0x0f,0xff,0xff,0xad, + 0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x7f,0xcf,0xff,0x0f,0xff,0xff, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x3f,0xfd,0x0f,0xff,0xff, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xf8,0x7f,0xe0,0x0f,0xf0,0x7f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xf8,0x3f,0xc1,0x0f,0xf3,0x3f, + 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xf8,0x7f,0x87,0x0f,0xfe,0x3f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xf0,0x3f,0x8f,0x0f,0xf0,0x3f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x1f,0x86,0x0f,0xf3,0x3f, + 0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x1f,0x80,0x07,0xf2,0x3f, + 0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x1c,0x1f,0xff,0xc1,0x87,0xf0, + 0x1f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00, - 0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x05, - 0x55,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x12, - 0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x04, - 0xaa,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x2a, - 0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xff,0x00,0x00,0x00, - 0x00,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x2b,0x75,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x04,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x22,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x0a,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x11,0x5b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x42,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, - 0x15,0x5d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xb9,0x00,0x00,0x00, - 0x00,0x00,0x2b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, + 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x01,0x7f, + 0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x01, + 0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x01,0x56, + 0xd7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x0a, + 0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0xaa, + 0xab,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xff,0x00,0x00,0x00, + 0x0a,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x02, + 0xaa,0xd6,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x15,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0xaa,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x05,0x6d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x01, + 0x55,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x2a,0xbb,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00, + 0x95,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xb9,0x00,0x00,0x00, + 0x00,0x56,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x17,0x00, @@ -85,6 +85,7 @@ uint8_t test_I1_RLE_align64_map[] = { }; const lv_img_dsc_t test_I1_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I1, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_I2.bin b/tests/test_images/stride_align64/RLE/test_I2.bin index 9d69bd70f..7524038bb 100644 Binary files a/tests/test_images/stride_align64/RLE/test_I2.bin and b/tests/test_images/stride_align64/RLE/test_I2.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_I2_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_I2_RLE_align64.c index c5df39e7a..2366b4bd3 100644 --- a/tests/test_images/stride_align64/RLE/test_I2_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_I2_RLE_align64.c @@ -21,124 +21,124 @@ LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I2_RLE_align64_map[] = { 0x01,0x00,0x00,0x00,0x92,0x07,0x00,0x00,0x91,0x07,0x00,0x00,0x90,0x5a,0x00,0x3d, - 0xf4,0x23,0xaf,0xaf,0x08,0x60,0xff,0xf7,0xdf,0x37,0xff,0x18,0xff,0x11,0xff,0xff, - 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4, - 0x00,0x02,0xaa,0xa9,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x00,0x00,0x00, - 0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4, - 0x00,0x02,0xaa,0xa9,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x55,0x55,0x55,0xff, - 0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x40,0x00,0x01,0x55,0x54,0x15,0x54,0x40,0x00,0x00, - 0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x00,0x00,0x00,0x55,0x50,0x05,0x54,0x45,0x55,0x55, - 0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x50,0x05,0x54,0x44,0x00,0x00, - 0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x54,0x15,0x54,0x44,0x55,0xff, - 0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x40, - 0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x45, - 0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x50,0x05,0x54,0x44,0x44, - 0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x40,0x01,0x54,0x44,0xff, - 0x45,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44, - 0x40,0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44, - 0x55,0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0x44, - 0x00,0x00,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0xff, - 0x45,0x55,0x55,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x55,0x00,0x00,0x00,0x55,0x40,0x01,0x54, - 0x40,0x00,0x00,0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd6,0xaa,0xa8,0x00,0x01,0x55,0x40,0x00,0x01,0x55,0x50,0x05,0x54, - 0x55,0x55,0x55,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54, - 0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x40,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x50,0x00,0x05,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x55,0x40,0x05,0x55,0x54,0x00,0x15,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xd5,0x01,0x55,0x40,0x05,0x55,0x50,0x00,0x01,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x40,0x05,0x55,0x40,0x00,0x01,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x54,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55, - 0x55,0x55,0x55,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x40,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x05,0x55,0x55,0x40,0x00,0xff, - 0x55,0x55,0x50,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x15,0x40,0x05,0x55,0x50,0x00,0x00, - 0x55,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x00,0x00, - 0x55,0x55,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x15,0x00, - 0x55,0x55,0x54,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd4,0x00,0x14,0x00,0x05,0x55,0x40,0x55,0xff, - 0x00,0x55,0x55,0x00,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x01,0x55,0x40,0x04, - 0x00,0x55,0x54,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0x00,0x55,0x40,0x00, - 0x00,0x15,0x55,0x04,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x40,0x00,0x40,0x01,0x55,0x50,0x00, - 0x40,0x15,0x55,0x00,0x01,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0xff, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0x55,0x55,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff,0xfb, - 0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x66,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff,0xff, - 0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0xa6,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff,0xff, - 0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff,0xff, - 0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x55,0x55,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff, - 0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff, - 0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd7,0xff,0xff,0xff, - 0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x66,0x55,0x55,0x5c,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55,0xfe, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd5,0x55,0x55, - 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00, + 0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff,0x11,0xff,0xff, + 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8, + 0x00,0x01,0x55,0x56,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x00,0x00,0x00, + 0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8, + 0x00,0x01,0x55,0x56,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0xaa,0xaa,0xaa,0xff, + 0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x80,0x00,0x02,0xaa,0xa8,0x2a,0xa8,0x80,0x00,0x00, + 0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x00,0x00,0x00,0xaa,0xa0,0x0a,0xa8,0x8a,0xaa,0xaa, + 0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa0,0x0a,0xa8,0x88,0x00,0x00, + 0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa8,0x2a,0xa8,0x88,0xaa,0xff, + 0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x80, + 0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x8a, + 0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0xa0,0x0a,0xa8,0x88,0x88, + 0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x80,0x02,0xa8,0x88,0xff, + 0x8a,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88, + 0x80,0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88, + 0xaa,0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0x88, + 0x00,0x00,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0xff, + 0x8a,0xaa,0xaa,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xaa,0x00,0x00,0x00,0xaa,0x80,0x02,0xa8, + 0x80,0x00,0x00,0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xe9,0x55,0x54,0x00,0x02,0xaa,0x80,0x00,0x02,0xaa,0xa0,0x0a,0xa8, + 0xaa,0xaa,0xaa,0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8, + 0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0x80,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0xa0,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x00,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x00,0xaa,0x80,0x0a,0xaa,0xa8,0x00,0x2a,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xea,0x02,0xaa,0x80,0x0a,0xaa,0xa0,0x00,0x02,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x02,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xa8,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa, + 0xaa,0xaa,0xaa,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x80,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x0a,0xaa,0xaa,0x80,0x00,0xff, + 0xaa,0xaa,0xa0,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0x2a,0x80,0x0a,0xaa,0xa0,0x00,0x00, + 0xaa,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x00, + 0xaa,0xaa,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x2a,0x00, + 0xaa,0xaa,0xa8,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x00,0x28,0x00,0x0a,0xaa,0x80,0xaa,0xff, + 0x00,0xaa,0xaa,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x02,0xaa,0x80,0x08, + 0x00,0xaa,0xa8,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x00,0x00,0x00,0x00,0xaa,0x80,0x00, + 0x00,0x2a,0xaa,0x08,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x80,0x00,0x80,0x02,0xaa,0xa0,0x00, + 0x80,0x2a,0xaa,0x00,0x02,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff,0xf7, + 0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff,0xdd, + 0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff,0xff, + 0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xfd,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0xa6,0x6a,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x9a,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xf7,0x55,0x55,0x55,0x55,0x55,0x95,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff,0xff, + 0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0x9a,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xdd,0x55,0x55,0x55,0x55,0x56,0x65,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,0xff, + 0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff, + 0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0x9a,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff, + 0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff, + 0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0xaa,0xaa,0xac,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xfe, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa, + 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -146,6 +146,7 @@ uint8_t test_I2_RLE_align64_map[] = { }; const lv_img_dsc_t test_I2_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I2, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_I4.bin b/tests/test_images/stride_align64/RLE/test_I4.bin index 2ac8b025c..49db9be4b 100644 Binary files a/tests/test_images/stride_align64/RLE/test_I4.bin and b/tests/test_images/stride_align64/RLE/test_I4.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_I4_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_I4_RLE_align64.c index 4369918a4..a14e066f9 100644 --- a/tests/test_images/stride_align64/RLE/test_I4_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_I4_RLE_align64.c @@ -20,175 +20,177 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I4_RLE_align64_map[] = { - 0x01,0x00,0x00,0x00,0xd8,0x09,0x00,0x00,0x81,0x0b,0x00,0x00,0xc1,0x4c,0x70,0x47, - 0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0xfc,0x00,0xff,0xf7,0xf4,0x00,0xff,0xff, - 0x65,0x00,0xff,0xff,0xa9,0x41,0xa5,0xa5,0x30,0x00,0x00,0x00,0x75,0x00,0x00,0x00, - 0xc2,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0x88, - 0xff,0xcc,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x22,0xaa, + 0x01,0x00,0x00,0x00,0xe9,0x09,0x00,0x00,0x81,0x0b,0x00,0x00,0xc1,0x4c,0x70,0x47, + 0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc,0x3e,0x8f,0x8f, + 0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60,0x00,0xff,0xff, + 0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff, + 0xff,0x00,0xff,0x7f,0xff,0x77,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0xaa,0x22,0xaa, 0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00, 0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x21,0x00,0xff,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x69, - 0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x49, + 0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x09,0x22, + 0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x09,0x22, 0x22,0x22,0x22,0x90,0xff,0x00,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0xff,0xff, 0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x92, + 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x92, 0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x00,0x00, 0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x09,0x22, + 0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x09,0x22, 0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x0f,0xff, 0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0xff,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x62, - 0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f, + 0x00,0x00,0x00,0xa0,0xff,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x42, + 0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f, 0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x92, + 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x92, 0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f, 0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x22, + 0x00,0x00,0x00,0x00,0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x22, 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f, 0x0f,0x00,0x0f,0x0f,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00, - 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x06,0x92,0x29,0x60,0x00,0x0f,0x0f, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00, + 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x04,0x92,0x29,0x40,0x00,0x0f,0x0f, 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00, - 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x62,0x22,0x22,0x26,0x00,0x0f,0x0f, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00, + 0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x42,0x22,0x22,0x24,0x00,0x0f,0x0f, 0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00, 0x22,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0x22,0x00,0x92,0x22,0x22,0x29,0x00,0x0f, 0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10, + 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10, 0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x22,0x22,0x22,0x22,0x00,0x0f, 0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10, - 0x00,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x22,0x22,0x22,0x22,0x00,0x0f, + 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10, + 0x00,0x42,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x22,0x22,0x22,0x22,0x00,0x0f, 0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11, + 0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11, 0x10,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x92,0x22,0x22,0x29,0x00, 0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11, - 0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x62,0x22,0x22,0x26,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11, + 0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x42,0x22,0x22,0x24,0x00, 0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11, - 0x10,0x00,0x00,0x69,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x06,0x92,0x29,0x60,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11, + 0x10,0x00,0x00,0x49,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x04,0x92,0x29,0x40,0x00, 0x0f,0x00,0x00,0x00,0xc5,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x69,0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x49,0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00,0x8f,0xa0,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00,0x99,0xa0, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, - 0x06,0x66,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x11,0x97,0x00,0xa0,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x06,0x78,0x11,0x11,0x18, - 0x70,0x00,0x1a,0x00,0x96,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x00,0x81,0x11,0x11,0x11,0x11,0x18,0x00,0x1a,0x00,0x97,0xa0,0x00, + 0x04,0x44,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x11,0x97,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x04,0x61,0x11,0x11,0x16, + 0x60,0x00,0x1a,0x00,0x96,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x00,0x61,0x11,0x11,0x11,0x11,0x16,0x00,0x1a,0x00,0x97,0xa0,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x11,0x11,0x11, - 0x11,0x11,0x11,0x80,0x00,0x19,0x00,0x97,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x11,0x11,0x60,0x06,0x81,0x11,0x16,0x00,0x19, + 0x11,0x11,0x11,0x60,0x00,0x19,0x00,0x97,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x11,0x11,0x40,0x04,0x11,0x11,0x14,0x00,0x19, 0x00,0x9f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0, - 0x00,0x81,0x18,0x00,0x00,0x71,0x11,0x17,0x00,0x00,0x00,0x00,0x07,0x88,0x18,0x86, + 0x00,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x61,0x11,0x64, 0x00,0x11,0x00,0xff,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xa0,0x00,0x88,0x87,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x11, - 0x11,0x11,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xa0,0x00,0x61,0x16,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x04,0x11,0x11, + 0x11,0x11,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x17, - 0x78,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x16, + 0x61,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xa0,0x00,0x00,0x78,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x60, - 0x00,0x11,0x17,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, + 0x00,0xa0,0x00,0x00,0x46,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x40, + 0x00,0x11,0x16,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, 0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x00,0x68,0x11,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x06,0x88, - 0x00,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x04,0x66, + 0x00,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0x00,0x11,0x11,0x11,0x88,0x81,0x11,0x17,0x00,0x00,0x00,0x00,0x00, - 0x77,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x07,0x77,0x60,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0x00,0x11,0x11,0x11,0x66,0x61,0x11,0x16,0x00,0x00,0x00,0x00,0x00, + 0x66,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x66,0x40,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xa0,0xff,0x07,0x11,0x11,0x70,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x00, - 0x71,0x11,0x11,0x11,0x18,0x00,0x00,0x00,0x00,0x11,0x11,0x16,0x00,0x00,0x00,0x00, + 0x00,0x00,0xa0,0xff,0x06,0x11,0x11,0x60,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x00, + 0x61,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x14,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x08,0x11,0x18,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07, - 0x11,0x18,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x17,0x07,0x18,0x00,0x00,0x00,0x01, + 0x00,0x00,0x00,0xa0,0x06,0x11,0x11,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06, + 0x11,0x16,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x16,0x06,0x16,0x00,0x00,0x00,0x01, 0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x08,0x11,0x18,0x00,0x00,0x61,0x11,0x17,0x00,0x00,0x00,0x01, - 0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x67,0x77,0x18,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xa0,0x01,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x01, + 0x11,0x60,0x00,0x61,0x16,0x00,0x00,0x00,0x00,0x44,0x66,0x11,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x08,0x11,0x11,0x70,0x67,0x11,0x11,0x17,0x00,0x00,0x00, - 0x61,0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x81,0x88,0x18,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xa0,0x06,0x11,0x11,0x60,0x46,0x11,0x11,0x16,0x00,0x00,0x00, + 0x41,0x11,0x40,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x07,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x87,0x00,0x00, - 0x01,0x11,0x87,0x78,0x11,0x18,0x60,0x00,0x00,0x07,0x18,0x06,0x18,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xa0,0x06,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x14,0x00,0x00, + 0x01,0x11,0x14,0x61,0x11,0x11,0x40,0x00,0x00,0x06,0x16,0x04,0x11,0x00,0x00,0x00, 0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xa0,0x00,0x81,0x11,0x11,0x11,0x88,0x11,0x11,0x17,0x00,0x00, - 0x07,0x11,0x11,0xe1,0x11,0x11,0x11,0x10,0x00,0x00,0x07,0x18,0x78,0x18,0x60,0x00, + 0x00,0x00,0x00,0x00,0xa0,0x00,0x61,0x11,0x11,0x11,0x61,0x11,0x11,0x16,0x00,0x00, + 0x06,0x11,0x11,0xff,0x11,0x11,0x11,0x10,0x00,0x00,0x06,0x11,0x66,0x11,0x40,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x07,0x11,0x11,0x17,0x07,0x11,0x11,0x17,0x00, - 0x00,0x00,0x71,0x11,0x17,0x71,0x11,0x10,0x00,0x00,0x00,0x81,0x17,0x11,0x80,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x06,0x11,0x11,0x16,0x06,0x11,0x11,0x16,0x00, + 0x00,0x00,0x61,0x11,0x14,0x61,0x11,0x10,0x00,0x00,0x00,0x61,0x16,0x11,0x60,0x00, 0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x06,0x76,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x66,0x00,0x13,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00,0xff,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa, - 0xaa,0xaa,0xcc,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54, - 0x54,0x44,0x44,0x46,0x46,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa, - 0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54, - 0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xde,0xee,0xee,0xee,0xae,0xaa, - 0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0xff,0x33,0x35,0x35,0x35,0x55,0x55, - 0x45,0x45,0x44,0x44,0x64,0x66,0x40,0x60,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea, - 0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53,0x53,0x55,0x55, - 0x54,0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa, - 0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55, - 0x54,0x54,0x44,0x44,0x64,0x64,0x04,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xff,0x0d,0xdd,0xdd,0xed,0xee,0xee, - 0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x53,0x55,0x55, - 0x54,0x55,0x45,0x44,0x44,0x44,0x64,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea, - 0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x35, - 0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xee, - 0xaa,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55, - 0x55,0x45,0x55,0x44,0x44,0x46,0x46,0x46,0x06,0xff,0x00,0x00,0x00,0xa0,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xde,0xee,0xee, - 0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35, - 0x55,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x60,0x00,0x00,0x00,0xa0,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xdd,0xee, - 0xee,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35, - 0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x46,0x64,0x60,0x60,0x00,0x00,0xa0,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee,0xee, - 0xea,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0xff,0x33,0x33,0x33,0x33,0x35,0x35, - 0x53,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x00,0x00,0x00,0xa0,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xed, - 0xee,0xee,0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53, - 0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x46,0x66,0x00,0x00,0x00,0xa0,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0d,0xdd,0xdd,0xee, - 0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35, - 0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x60,0x00,0x00,0xa0,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb4,0x00,0x00,0xa0,0x0d,0xdd,0xdd, - 0xde,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xac,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33, - 0x33,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x66,0x66,0x00,0x00,0x00,0xa0, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21,0x00, - 0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00, - 0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x21,0x00,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xaa,0x22,0xaa,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x84,0x00,0x00,0xa0,0x00,0x21,0x00,0xff,0xa0,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa, + 0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55, + 0x55,0x57,0x77,0x77,0x77,0x44,0x44,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea, + 0xaa,0xaa,0xad,0xad,0xdd,0xdd,0x3d,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55, + 0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea, + 0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0xd3,0x33,0x33,0x33,0xff,0x33,0x38,0x88,0x88,0x58, + 0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea, + 0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x85, + 0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee, + 0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xd3,0x3d,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58, + 0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xff,0x0b,0xbb,0xbe,0xbe,0xee, + 0xae,0xae,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88, + 0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee,0xee, + 0xee,0xaa,0xaa,0xaa,0xda,0xda,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88, + 0x85,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe,0xee, + 0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88, + 0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0xff,0x00,0x00,0x00,0xa0,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee, + 0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88, + 0x88,0x58,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe,0xbe, + 0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88, + 0x88,0x85,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb,0xee, + 0xee,0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xd3,0x33,0xff,0x33,0x33,0x33,0x33,0x38, + 0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbe, + 0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83, + 0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x0b,0xbb,0xbb, + 0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38, + 0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb4,0x00,0x00,0xa0,0x0b,0xbb, + 0xbb,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33, + 0x33,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x44,0x40,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x21, + 0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0, + 0x00,0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0xa0,0x00,0x21,0x00,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0xaa,0x22,0xaa,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I4_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I4, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, .header.h = 60, .header.stride = 48, - .data_size = 2532, + .data_size = 2549, .data = test_I4_RLE_align64_map, }; diff --git a/tests/test_images/stride_align64/RLE/test_I8.bin b/tests/test_images/stride_align64/RLE/test_I8.bin index e04337f42..39f378880 100644 Binary files a/tests/test_images/stride_align64/RLE/test_I8.bin and b/tests/test_images/stride_align64/RLE/test_I8.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_I8_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_I8_RLE_align64.c index 8a274732a..2eb112df1 100644 --- a/tests/test_images/stride_align64/RLE/test_I8_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_I8_RLE_align64.c @@ -22,60 +22,60 @@ uint8_t test_I8_RLE_align64_map[] = { 0x01,0x00,0x00,0x00,0x32,0x12,0x00,0x00,0xc1,0x16,0x00,0x00,0xff,0x4c,0x70,0x47, 0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff,0x58,0x00,0xff,0xff, - 0xe1,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c,0x00,0xff,0xff, + 0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c,0x00,0xff,0xff, 0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff,0xd0,0x00,0xff,0xff, 0x94,0x00,0xff,0xff,0x13,0x00,0xff,0xff,0x3e,0x00,0xff,0xff,0xc7,0x00,0xff,0xff, 0x72,0x00,0xff,0xff,0x47,0x00,0xff,0xff,0x0b,0x00,0xff,0xff,0x4f,0x00,0xff,0xff, 0xfb,0x00,0xff,0xff,0x83,0x00,0xff,0xff,0xbf,0x00,0xff,0xff,0x36,0x00,0xff,0xff, 0xae,0x00,0xff,0xff,0x9d,0x00,0xff,0xff,0x60,0x00,0xff,0xff,0x24,0x00,0xff,0xff, - 0xea,0xff,0x00,0x00,0x1a,0xff,0x00,0x00,0x93,0x00,0xff,0xff,0xff,0x8b,0x00,0x00, + 0xea,0xff,0x00,0x00,0x1a,0x00,0xff,0xff,0x8b,0xff,0x00,0x00,0xff,0x93,0x00,0x00, 0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00,0xd6,0xff,0x00, 0x00,0x96,0xff,0x00,0x00,0xf9,0xff,0x00,0x00,0x40,0xff,0x00,0x00,0xac,0xff,0x00, 0x00,0xf2,0x00,0xff,0xff,0xd8,0x00,0xff,0xff,0xd9,0x00,0xff,0xff,0x25,0x00,0xff, - 0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0x12,0x00,0xff, - 0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00,0x00,0xac,0x00,0x00, - 0x00,0x02,0x00,0x00,0x00,0xde,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x6c,0x00,0x00, - 0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00,0x00,0xbc,0x00,0x00, - 0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0xff,0x50,0xff, - 0x00,0x00,0xa7,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xd3,0x00,0x00,0x00,0x0a,0x00, - 0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xfa,0x00,0x00,0x00,0xc1,0x00, - 0x00,0x00,0x06,0x00,0x00,0x00,0xf7,0x00,0x00,0x00,0xd0,0x00,0xff,0xff,0x46,0x00, - 0xff,0xff,0x71,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00, - 0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00, - 0x00,0x00,0xc5,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00,0x00,0x00,0x0d,0x00, - 0x00,0x00,0xb4,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc,0x00, - 0x00,0x00,0xf9,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0xff,0x00,0x00,0x2a, - 0x00,0x00,0x00,0x6f,0x00,0xff,0xff,0x3f,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x3c, - 0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0xb8, - 0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x5c, - 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x7a, - 0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x55, - 0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0, - 0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e, - 0x00,0x00,0x00,0x89,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x92,0xff,0x00,0x00,0x00, - 0xc4,0x00,0xff,0xff,0x03,0x00,0x00,0x00,0x28,0x00,0xff,0xff,0xf3,0x00,0xff,0xff, - 0x57,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0x4e,0x00,0x00,0x00,0x72,0x00,0x00,0x00, - 0x4c,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0x44,0x00,0x00,0x00, - 0xc8,0x00,0x00,0x00,0xb2,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca,0x00,0x00,0x00, - 0x52,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x53,0x00,0x00,0x00,0x97,0x00,0x00,0x00, - 0x76,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x88,0x00,0x00,0x00, - 0x58,0x00,0x00,0x00,0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00, + 0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0xfa,0x00,0x00, + 0x00,0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00, + 0x00,0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xdf,0x00,0x00,0x00,0x14,0x00,0x00, + 0x00,0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00, + 0x00,0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0xff,0x50,0x00, + 0xff,0xff,0x0a,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xa7,0xff,0x00,0x00,0xd3,0x00, + 0x00,0x00,0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xc5,0x00, + 0x00,0x00,0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xd0,0x00, + 0xff,0xff,0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0xdd,0x00, + 0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00, + 0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00, + 0x00,0x00,0x0d,0x00,0x00,0x00,0xb5,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc,0x00, + 0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x6f,0x00,0xff,0x00,0x00,0x2a, + 0x00,0xff,0xff,0x3f,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0x0c, + 0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x43, + 0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x52,0x00,0x00,0x00,0x89,0x00,0x00,0x00,0x5c, + 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x26, + 0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0xbe, + 0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x30, + 0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x33, + 0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x92,0x00,0xff,0xff,0x57,0xff,0x00,0xff,0xff, + 0xf3,0x00,0xff,0xff,0x03,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0xf6,0x00,0x00,0x00, + 0x4e,0x00,0x00,0x00,0x4c,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x18,0x00,0x00,0x00, + 0xc8,0x00,0x00,0x00,0x35,0x00,0x00,0x00,0xb3,0x00,0x00,0x00,0xe9,0x00,0x00,0x00, + 0xca,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x7b,0x00,0x00,0x00,0x97,0x00,0x00,0x00, + 0xda,0x00,0x00,0x00,0x76,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x55,0x00,0x00,0x00, + 0x7a,0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x56,0x00,0x00,0x00,0x58,0x00,0x00,0x00, + 0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xd9,0x00,0x00,0x00, 0xcc,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff, 0xff,0xff,0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xc3,0xff,0x00,0xff,0x00,0xff, 0x87,0xff,0x00,0xff,0x0f,0xff,0x02,0xff,0x00,0xff,0x00,0xff,0xee,0xff,0x5c,0xff, 0x00,0xff,0x4b,0xff,0x00,0xff,0x00,0xff,0x98,0xff,0x00,0xff,0x76,0xff,0x00,0xff, - 0x20,0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0x00,0xff,0x54,0xff,0xb2,0xff, - 0x00,0xff,0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff, + 0x20,0xff,0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0xb2,0xff,0x00,0xff,0x00,0xff, + 0x54,0xff,0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff, 0xdd,0xff,0x00,0xff,0x31,0xff,0x00,0xff,0xcc,0xff,0xe5,0xff,0x00,0xff,0xa1,0xff, - 0x00,0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x6d,0xff,0x00,0xff,0x90,0xff, - 0x00,0xff,0x8f,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0xff,0x00,0xff,0x24, - 0xff,0x00,0xff,0x00,0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29, - 0xff,0x00,0xff,0xf6,0xff,0x00,0xff,0xf7,0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x14, + 0x00,0xff,0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x8f,0xff,0x00,0xff,0x6d,0xff, + 0x00,0xff,0x90,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0xff,0x00,0xff,0x00, + 0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff,0xf6, + 0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x24,0xff,0x00,0xff,0x14,0xff,0x00,0xff,0xf7, 0xff,0x00,0xff,0x00,0xff,0xcb,0xff,0x35,0xff,0x00,0xff,0x00,0xff,0xdc,0xff,0x00, 0xff,0x43,0xff,0xe6,0xff,0x00,0xff,0xb1,0xff,0x00,0xff,0x00,0xff,0x53,0xff,0x17, - 0xff,0x00,0xff,0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x00, - 0xff,0x21,0xff,0x00,0xff,0x99,0xff,0x5d,0xff,0x00,0xff,0x47,0xff,0x00,0xff,0x28, - 0xff,0x00,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff, + 0xff,0x00,0xff,0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x25, + 0xff,0x00,0xff,0x00,0xff,0x21,0xff,0x00,0xff,0x99,0xff,0x47,0xff,0x00,0xff,0x5d, + 0xff,0x00,0xff,0x28,0xff,0x00,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff, 0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, @@ -96,24 +96,24 @@ uint8_t test_I8_RLE_align64_map[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e, - 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0xff,0x1d,0x00,0x00,0x00,0x00,0x00,0x00, - 0x45,0x21,0x21,0x45,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0, + 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e, + 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0xff,0x1d,0x00,0x00,0x00,0x00,0x00,0x00, + 0x46,0x21,0x21,0x46,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0, 0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x40,0x9e, - 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x40,0x1d,0x00,0x00,0x00,0x00,0x00, + 0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x42,0x9e, + 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x42,0x1d,0x00,0x00,0x00,0x00,0x00, 0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0xff,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1e,0x9e, - 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x00,0x00,0x00,0x00, + 0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1f,0x9e, + 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x00,0x00,0x00,0x00, 0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0, 0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, 0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x22,0x9e,0x9e, 0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x00, - 0x00,0x45,0x21,0x21,0x45,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0, + 0x00,0x46,0x21,0x21,0x46,0x00,0x00,0x00,0xff,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c, 0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x24,0x9e, @@ -133,7 +133,7 @@ uint8_t test_I8_RLE_align64_map[] = { 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9f,0x9f,0x9f, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00, 0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25, - 0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0, + 0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0, 0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9f,0x9f,0x9f, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00, @@ -152,18 +152,18 @@ uint8_t test_I8_RLE_align64_map[] = { 0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0, 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x9f, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00, - 0x00,0x00,0x00,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, - 0x1e,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0xff,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00, + 0x00,0x00,0x00,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, + 0x1f,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0xff,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00, 0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00, 0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x00,0x00,0x00,0x00,0x1d,0x40,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, - 0x40,0x1d,0x00,0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x1d,0x42,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, + 0x42,0x1d,0x00,0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00, 0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00, 0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00, 0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0xc7,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, - 0x1e,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00, + 0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e, + 0x1f,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00, 0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, 0x18,0x00,0xb8,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x00,0x00,0x00,0x00,0x00, @@ -171,143 +171,143 @@ uint8_t test_I8_RLE_align64_map[] = { 0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0x00,0x9d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0xa0,0x9d,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f, - 0x81,0x62,0x70,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x2e,0x9c,0x9d, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30, + 0x7c,0x7b,0x6f,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x2e,0x9c,0x9d, 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00, - 0x00,0x62,0x4e,0x35,0x9c,0x9c,0x9c,0x9c,0x46,0x7f,0x6b,0x4f,0x00,0x35,0x00,0x9c, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x8c,0x9c, - 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3b,0x43,0x00,0x34,0x00,0x9c,0x9d, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x8d,0x9c,0x9c, - 0x9c,0x9c,0x55,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x66,0x00,0x34,0x00,0x9d,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x50,0x9c,0x9c,0x50, - 0x75,0x53,0x34,0x63,0x35,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x33,0x00,0xad,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x38, - 0x00,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x60,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x36,0x93,0x3b,0x35,0x50,0x3a,0x72,0x51,0x00,0x23,0x00,0xae,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x74,0x4d,0x4d,0x37, - 0x00,0x00,0x00,0x00,0x53,0x9c,0x9c,0x9c,0x9c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x91,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x55,0x6f,0x00,0x22,0x00,0xaf,0x9d, + 0x00,0x88,0x50,0x4f,0x9c,0x9c,0x9c,0x9c,0x2f,0x47,0x6b,0x51,0x00,0x35,0x00,0x9c, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x89,0x9c, + 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3c,0x44,0x00,0x34,0x00,0x9c,0x9d, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x8a,0x9c,0x9c, + 0x9c,0x9c,0x56,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x62,0x00,0x34,0x00,0x9d,0x9d,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x52,0x9c,0x9c,0x52, + 0x74,0x55,0x35,0x4e,0x4f,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x33,0x00,0xad,0x9d,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x39, + 0x00,0x00,0x00,0x00,0x67,0x9c,0x9c,0x9c,0x9c,0x5e,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x37,0x90,0x3c,0x4f,0x52,0x3b,0x70,0x53,0x00,0x23,0x00,0xae,0x9d,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x73,0x4f,0x4f,0x38, + 0x00,0x00,0x00,0x00,0x55,0x9c,0x9c,0x9c,0x9c,0x6a,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x69,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x56,0x8d,0x00,0x22,0x00,0xaf,0x9d, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x7b,0x36,0x36,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x37,0x9c,0x9c,0x77,0x56,0x3c,0x78,0x9c,0x9c,0x9c,0x51,0x00,0x21,0x00, + 0x00,0x00,0x00,0x79,0x37,0x37,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x38,0x9c,0x9c,0x76,0x57,0x3d,0x8f,0x9c,0x9c,0x9c,0x53,0x00,0x21,0x00, 0xaf,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00, - 0x4f,0x8f,0x38,0x6e,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x95,0x9c,0x9c,0x59,0x00,0x00,0x2f,0x52,0x9c,0x9c,0x56,0x00, + 0x51,0x69,0x39,0x6e,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x91,0x9c,0x9c,0x72,0x00,0x00,0x30,0x54,0x9c,0x9c,0x57,0x00, 0x14,0x00,0xbc,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x6d,0x8e, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x6d,0x8b, 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x59,0x38,0x38,0x2f,0x00,0x00,0x00,0x54,0x9c,0x9c,0x66,0x00,0x21, - 0x00,0xbc,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x57, - 0x35,0x9c,0x9c,0x9c,0x9c,0x6a,0x47,0x67,0x67,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x73,0x6f,0x56,0x20,0x50,0x9c,0x9c,0x33, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x98,0x7a,0x37,0x68,0x00,0x14,0x00, + 0x00,0x00,0x00,0x72,0x39,0x39,0x30,0x00,0x00,0x00,0x47,0x9c,0x9c,0x62,0x00,0x21, + 0x00,0xbc,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x58, + 0x4f,0x9c,0x9c,0x9c,0x9c,0x68,0x48,0x64,0x64,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x92,0x93,0x57,0x20,0x52,0x9c,0x9c,0x34, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x97,0x78,0x38,0x65,0x00,0x14,0x00, 0xbd,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x71,0x9c, - 0x9c,0x9c,0x9c,0x71,0x34,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x4f,0x94,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x33,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x49,0x55,0x5a,0x5b,0x5c,0x59,0x00,0x13,0x00, - 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x3b,0x9c, - 0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x3c,0x9c,0x9c,0x9c,0x3b,0x76,0x96,0x6e,0x9c,0x9c,0x33,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9c,0x7a,0x00,0x99,0x9c,0x58,0x00,0x00,0x00, + 0x9c,0x9c,0x9c,0x71,0x35,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x51,0x94,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x34,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x4a,0x56,0x5a,0x5b,0x2f,0x67,0x00,0x13,0x00, + 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x3c,0x9c, + 0x9c,0x9c,0x3b,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x3d,0x9c,0x9c,0x9c,0x3c,0x57,0x6a,0x6e,0x9c,0x9c,0x34,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9c,0x78,0x00,0x98,0x9c,0x59,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00, - 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x4a,0x9c, - 0x9c,0x9c,0x8b,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, - 0x00,0x00,0x00,0x34,0x52,0x9c,0x9c,0x76,0x00,0x00,0x00,0x47,0x9c,0x9c,0x33,0x00, - 0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x9a,0x75,0x5d,0x3c,0x9c,0x4a,0x00,0x13, - 0x00,0xbd,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x58, - 0x9c,0x9c,0x9c,0x9c,0x60,0x88,0x68,0x37,0x6c,0x9c,0x9c,0x9c,0x9c,0x4e,0x00,0x00, - 0x00,0x00,0x00,0x00,0x90,0x9c,0x9c,0x9c,0x73,0x00,0x00,0x34,0x3a,0x9c,0x9c,0x33, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9b,0x9c,0x35,0x78,0x9c,0x4a,0x00,0x13, - 0x00,0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x39, - 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5b,0x4d,0x87, - 0x00,0x00,0x00,0x00,0x48,0x49,0x9c,0x9c,0x3a,0x97,0x5d,0x54,0x9c,0x9c,0x9c,0x47, - 0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x9c,0x38,0x00,0x79,0x9c,0x4a,0x00,0x00, + 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x4b,0x9c, + 0x9c,0x9c,0x87,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00, + 0x00,0x00,0x00,0x35,0x54,0x9c,0x9c,0x75,0x00,0x00,0x00,0x48,0x9c,0x9c,0x34,0x00, + 0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x99,0x74,0x5c,0x3d,0x9c,0x4b,0x00,0x13, + 0x00,0xbd,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x59, + 0x9c,0x9c,0x9c,0x9c,0x5e,0x86,0x65,0x38,0x6c,0x9c,0x9c,0x9c,0x9c,0x50,0x00,0x00, + 0x00,0x00,0x00,0x00,0x8c,0x9c,0x9c,0x9c,0x95,0x00,0x00,0x35,0x3b,0x9c,0x9c,0x34, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9b,0x9c,0x36,0x9a,0x9c,0x4b,0x00,0x13, + 0x00,0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x3a, + 0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x2f,0x4f,0x84, + 0x00,0x00,0x00,0x00,0x49,0x4a,0x9c,0x9c,0x3b,0x96,0x5c,0x47,0x9c,0x9c,0x9c,0x48, + 0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x9c,0x39,0x00,0x77,0x9c,0x4b,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00, - 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x69, - 0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x58,0x54,0x9c,0x9c,0x9c,0x9c,0x9c,0x39, - 0x00,0x00,0x00,0x00,0x00,0x4e,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c, - 0x9c,0x8f,0x65,0x00,0x00,0x00,0x00,0x00,0x39,0x9c,0x3a,0x39,0x74,0x9c,0x35,0x70, + 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x66, + 0x48,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x89,0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x3a, + 0x00,0x00,0x00,0x00,0x00,0x50,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c, + 0x9c,0x8f,0x63,0x00,0x00,0x00,0x00,0x00,0x3a,0x9c,0x3b,0x3a,0x73,0x9c,0x36,0x6f, 0x00,0x12,0x00,0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0x00,0x43,0x7e,0x49,0x9c,0x9c,0x9c,0x52,0x3c,0x69,0x86,0x9c,0x9c,0x9c,0x9c, - 0x9c,0x39,0x00,0x00,0x00,0x00,0x00,0x48,0x92,0x46,0x9c,0x9c,0x6c,0x6b,0x5d,0x9c, - 0x9c,0x9c,0x9c,0x65,0x00,0x00,0x00,0x00,0x00,0x53,0x3b,0x9c,0x5b,0x3c,0x5c,0x9c, - 0x72,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00, + 0x00,0x00,0x44,0x7d,0x82,0x9c,0x9c,0x9c,0x54,0x3d,0x66,0x85,0x9c,0x9c,0x9c,0x9c, + 0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x49,0x8e,0x2f,0x9c,0x9c,0x6c,0x6b,0x5c,0x9c, + 0x9c,0x9c,0x9c,0x63,0x00,0x00,0x00,0x00,0x00,0x55,0x3c,0x9c,0x2f,0x3d,0x2f,0x9c, + 0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00, 0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0x00,0x00,0x00,0x43,0x89,0x85,0x63,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7b,0x51,0x79,0x48,0x00,0x00,0x00, - 0x00,0x00,0x00,0x8b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x7b,0x00,0x16, + 0x00,0x00,0x00,0x00,0x44,0x4e,0x83,0x4e,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0x53,0x77,0x49,0x00,0x00,0x00, + 0x00,0x00,0x00,0x8b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x79,0x00,0x16, 0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x44,0x00, - 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc5,0xb6, - 0xad,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4, - 0xcb,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, - 0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05,0x4c, + 0xff,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc7,0xb6, + 0xad,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4, + 0xcb,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, + 0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x04,0x4d, 0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00, - 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc5,0xb6, - 0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4, - 0xb1,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, - 0xff,0x0a,0x1c,0x04,0x29,0x0b,0x64,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x15,0x05, - 0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00, - 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc4, - 0xb6,0xad,0xa2,0xaf,0xb7,0xbc,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab, - 0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1, - 0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x44,0x06,0x32,0x01,0x31,0x0c,0x1f,0x15,0x05, + 0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc7,0xb6, + 0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4, + 0xb1,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14, + 0xff,0x0a,0x1c,0x05,0x29,0x0b,0x61,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x15,0x04, + 0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00, + 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc3, + 0xb6,0xad,0xa2,0xae,0xb7,0xba,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab, + 0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1, + 0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x45,0x06,0x33,0x01,0x32,0x0c,0x1e,0x15,0x04, 0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00, - 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc5, - 0xff,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc2,0xa5,0xa4, - 0xab,0xc6,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1, - 0xa1,0x41,0x82,0x1c,0x04,0x29,0x0b,0x0f,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d, - 0x05,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x1b,0x07,0x5e,0x12,0x02,0x00, + 0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0xc7, + 0xff,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc1,0xa5,0xa4, + 0xab,0xc4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1, + 0xa1,0x41,0x7f,0x1c,0x05,0x29,0x0b,0x0f,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e, + 0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x1b,0x07,0x5d,0x12,0x02,0x00, 0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00, - 0xc4,0xb6,0xad,0xa2,0xcd,0xc1,0xbb,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5,0xa4, - 0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1, - 0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d, - 0xff,0x05,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02, + 0xc3,0xb6,0xad,0xa2,0xcd,0xc0,0xbc,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5,0xa4, + 0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1, + 0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e, + 0xff,0x04,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02, 0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xd5,0xa8,0xb2,0xd7,0xc2,0xa5, - 0xa4,0xab,0xb4,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1, - 0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c,0x1f, - 0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x3e,0x02, + 0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xd7,0xa8,0xb2,0xd8,0xc1,0xa5, + 0xa4,0xab,0xb4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1, + 0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c,0x1e, + 0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x40,0x02, 0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00, - 0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5, - 0xff,0xa4,0xab,0xb4,0xb1,0xce,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1, - 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c, - 0x2e,0x3d,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12, + 0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5, + 0xff,0xa4,0xab,0xb4,0xb1,0xce,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1, + 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c, + 0x2e,0x3e,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12, 0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d, - 0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xbf,0xc7, - 0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1, - 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x64,0x44,0x06,0x32,0x01,0x31,0x0c, - 0x1f,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5e,0x3e, + 0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xd3,0xc6, + 0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1, + 0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x61,0x45,0x06,0x33,0x01,0x32,0x0c, + 0x1e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5d,0x40, 0xff,0x80,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xcc,0xad,0xa2,0xaf,0xb7,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf, - 0xc2,0xa5,0xa4,0xd3,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6, - 0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x31, - 0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d, + 0x9d,0x00,0x00,0xc7,0xcc,0xad,0xa2,0xae,0xb7,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5, + 0xc1,0xa5,0xa4,0xd4,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6, + 0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x32, + 0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d, 0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf, - 0xc7,0xa5,0xa4,0xd3,0xc6,0xcb,0xae,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6, - 0xff,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x2a,0x84,0x0f,0x16,0x06,0x18,0x01, - 0x31,0x0c,0x1f,0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x4b,0x0e,0x30,0x09,0x1b,0x07, - 0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xba,0xa7,0xa8,0xc9, - 0xbf,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3, - 0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01, - 0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x13,0x4b,0x61,0x30,0x09,0x1b,0x07, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5, + 0xc6,0xa5,0xa4,0xd4,0xc4,0xcb,0xaf,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6, + 0xff,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x2a,0x81,0x0f,0x16,0x06,0x18,0x01, + 0x32,0x0c,0x1e,0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x4c,0x0e,0x31,0x09,0x1b,0x07, + 0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbb,0xa7,0xa8,0xc9, + 0xc5,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3, + 0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01, + 0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x13,0x4c,0x60,0x31,0x09,0x1b,0x07, 0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0x00,0x9d,0x00,0x00,0xc4,0xcc,0xd8,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8, - 0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xce,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xc8, - 0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32, - 0x01,0x19,0x7d,0x2e,0x15,0x05,0x10,0x08,0x1a,0x03,0x3f,0x4b,0x0e,0x17,0x09,0x1b, + 0xff,0x00,0x9d,0x00,0x00,0xc3,0xcc,0xd9,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8, + 0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xce,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xc8, + 0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33, + 0x01,0x19,0x7a,0x2e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x4c,0x0e,0x17,0x09,0x1b, 0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x9d,0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xb9,0xba,0xa7,0xa8, - 0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8, - 0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18, - 0xf4,0x01,0x19,0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09, + 0x00,0x00,0x9d,0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xb9,0xbb,0xa7,0xa8, + 0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8, + 0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18, + 0xf4,0x01,0x19,0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09, 0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xba,0xa7, - 0xd6,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xc0,0xaa,0xa3,0xd4,0xd1,0xb0, - 0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06, - 0x18,0x01,0x31,0x0c,0x2e,0x15,0x05,0x10,0x08,0x1a,0x83,0x3f,0x11,0x61,0x17,0x09, - 0x1b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbb,0xa7, + 0xd6,0xc9,0xd3,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xbf,0xaa,0xa3,0xd5,0xd1,0xb0, + 0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06, + 0x18,0x01,0x32,0x0c,0x2e,0x15,0x04,0x10,0x08,0x1a,0x7e,0x3f,0x11,0x60,0x17,0x09, + 0x1b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x9d,0x00,0x44,0x00,0x8b,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -316,6 +316,7 @@ uint8_t test_I8_RLE_align64_map[] = { }; const lv_img_dsc_t test_I8_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_L8.bin b/tests/test_images/stride_align64/RLE/test_L8.bin index 830759bf9..3cdff0e37 100644 Binary files a/tests/test_images/stride_align64/RLE/test_L8.bin and b/tests/test_images/stride_align64/RLE/test_L8.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_L8_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_L8_RLE_align64.c index e4b8a08e7..daa27695e 100644 --- a/tests/test_images/stride_align64/RLE/test_L8_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_L8_RLE_align64.c @@ -251,6 +251,7 @@ uint8_t test_L8_RLE_align64_map[] = { }; const lv_img_dsc_t test_L8_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_L8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_RGB565.bin b/tests/test_images/stride_align64/RLE/test_RGB565.bin index d6fabeb8b..1b299e807 100644 Binary files a/tests/test_images/stride_align64/RLE/test_RGB565.bin and b/tests/test_images/stride_align64/RLE/test_RGB565.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_RGB565A8.bin b/tests/test_images/stride_align64/RLE/test_RGB565A8.bin index 7e6da46be..31787f933 100644 Binary files a/tests/test_images/stride_align64/RLE/test_RGB565A8.bin and b/tests/test_images/stride_align64/RLE/test_RGB565A8.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_RGB565A8_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_RGB565A8_RLE_align64.c index d64a6f588..d4b00ebb3 100644 --- a/tests/test_images/stride_align64/RLE/test_RGB565A8_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_RGB565A8_RLE_align64.c @@ -477,6 +477,7 @@ uint8_t test_RGB565A8_RLE_align64_map[] = { }; const lv_img_dsc_t test_RGB565A8_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565A8, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_RGB565_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_RGB565_RLE_align64.c index 9dfb39e49..a429197e9 100644 --- a/tests/test_images/stride_align64/RLE/test_RGB565_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_RGB565_RLE_align64.c @@ -412,6 +412,7 @@ uint8_t test_RGB565_RLE_align64_map[] = { }; const lv_img_dsc_t test_RGB565_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_RGB888.bin b/tests/test_images/stride_align64/RLE/test_RGB888.bin index ebf249510..3ca9c54bc 100644 Binary files a/tests/test_images/stride_align64/RLE/test_RGB888.bin and b/tests/test_images/stride_align64/RLE/test_RGB888.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_RGB888_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_RGB888_RLE_align64.c index ace03fd78..562dc86e1 100644 --- a/tests/test_images/stride_align64/RLE/test_RGB888_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_RGB888_RLE_align64.c @@ -636,6 +636,7 @@ uint8_t test_RGB888_RLE_align64_map[] = { }; const lv_img_dsc_t test_RGB888_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/RLE/test_XRGB8888.bin b/tests/test_images/stride_align64/RLE/test_XRGB8888.bin index bbef6da0d..fdc2b71a8 100644 Binary files a/tests/test_images/stride_align64/RLE/test_XRGB8888.bin and b/tests/test_images/stride_align64/RLE/test_XRGB8888.bin differ diff --git a/tests/test_images/stride_align64/RLE/test_XRGB8888_RLE_align64.c b/tests/test_images/stride_align64/RLE/test_XRGB8888_RLE_align64.c index bf6d9e4dc..c422a9619 100644 --- a/tests/test_images/stride_align64/RLE/test_XRGB8888_RLE_align64.c +++ b/tests/test_images/stride_align64/RLE/test_XRGB8888_RLE_align64.c @@ -794,6 +794,7 @@ uint8_t test_XRGB8888_RLE_align64_map[] = { }; const lv_img_dsc_t test_XRGB8888_RLE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_XRGB8888, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A1.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_A1.bin index 50cffa647..b8e752a41 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_A1.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_A1.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A1_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_A1_NONE_align64.c index 3704a2600..f375a0341 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_A1_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_A1_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_A1_NONE_align64_map[] = { }; const lv_img_dsc_t test_A1_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A1, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A2.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_A2.bin index e80a931aa..44bf64e23 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_A2.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_A2.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A2_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_A2_NONE_align64.c index 772124f6e..1f9ce81fa 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_A2_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_A2_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_A2_NONE_align64_map[] = { }; const lv_img_dsc_t test_A2_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A2, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A4.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_A4.bin index 40081d8b2..b417dd572 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_A4.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_A4.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A4_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_A4_NONE_align64.c index d29931525..29eaafa80 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_A4_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_A4_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_A4_NONE_align64_map[] = { }; const lv_img_dsc_t test_A4_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A4, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A8.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_A8.bin index 71a801e05..5ecbb24b3 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_A8.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_A8.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_A8_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_A8_NONE_align64.c index 3521f5718..8f10f992a 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_A8_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_A8_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_A8_NONE_align64_map[] = { }; const lv_img_dsc_t test_A8_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_A8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888.bin index ee1505f95..210835b69 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888_NONE_align64.c index 5b4cea9cd..0ea42c9ca 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_ARGB8888_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_ARGB8888_NONE_align64_map[] = { }; const lv_img_dsc_t test_ARGB8888_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_ARGB8888, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I1.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_I1.bin index 58c3015d6..b679e1ec3 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_I1.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_I1.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I1_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_I1_NONE_align64.c index 2c204c8ea..34f80769a 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_I1_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_I1_NONE_align64.c @@ -20,64 +20,64 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I1_NONE_align64_map[] = { - 0x3f,0xe3,0x94,0xee,0x66,0x0f,0x0f,0x44, + 0x56,0x82,0x0a,0xfa,0x43,0xbe,0xeb,0x3b, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x60,0x00,0x1f,0xff,0xff,0xff,0xe0,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0xf9,0xff,0xff,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0xc0,0x3f,0xef,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x80,0x1f,0xe3,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x00,0x0f,0xc7,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0xef,0xea,0xfe,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0xf0,0xff,0xff,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x0f,0xc3,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x0f,0xc3,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1e,0x00,0x07,0xe7,0xea,0xfe,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0x82,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0xff,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1c,0x00,0x03,0xf7,0xea,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0x81,0xea,0x82,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0xff,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0xc3,0xea,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0x81,0xea,0xba,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1c,0x00,0x03,0x00,0xea,0x82,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x60,0x00,0x1e,0x00,0x07,0x00,0xea,0xfe,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1e,0x00,0x07,0x01,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x00,0x0f,0x81,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0x80,0x1f,0xc1,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x1f,0xc0,0x3f,0xe7,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7f,0xff,0xff,0xf8,0xff,0xff,0xe0,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1e,0x00,0x07,0x00,0xea,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x07,0x00,0xeb,0xff,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0x00,0x1f,0x81,0xe8,0x00,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x1f,0xc0,0x1f,0xc3,0xef,0xff,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7f,0xff,0xff,0xf0,0x7f,0xff,0xe0,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xf8,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7e,0x07,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x78,0x01,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7c,0x03,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x70,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x7f,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x70,0xf0,0x7f,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x71,0xf8,0x7f,0xf4,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x79,0xf8,0x7f,0xc0,0x3f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7f,0xf8,0x7f,0xc6,0x1f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7f,0x00,0x7f,0xcf,0x1f,0xff,0xff,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7c,0x00,0x7f,0xff,0x9f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0x28,0x7f,0xff,0x1f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0xf8,0x7f,0xe0,0x1f,0xf0,0x7f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0xf8,0x7f,0xc7,0x1f,0xf7,0x7f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x61,0xf8,0x7f,0x8f,0x1f,0xff,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0xf0,0x7f,0x8f,0x9f,0xf8,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x70,0x00,0x1f,0x87,0x0f,0xf7,0x7f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x78,0x08,0x1f,0xc0,0x07,0xf3,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x7c,0x1c,0x1f,0xe1,0x87,0xf9,0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0xf8,0x7f,0xf0,0x7f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x71,0xf8,0x3f,0xc0,0x3f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7f,0xf8,0x7f,0xc4,0x1f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x7e,0x00,0x3f,0xcf,0x0f,0xff,0xff,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x78,0x00,0x7f,0xcf,0x0f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x3f,0xfd,0x0f,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0xf8,0x7f,0xe0,0x0f,0xf0,0x7f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0xf8,0x3f,0xc1,0x0f,0xf3,0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0xf8,0x7f,0x87,0x0f,0xfe,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0xf0,0x3f,0x8f,0x0f,0xf0,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x1f,0x86,0x0f,0xf3,0x3f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x70,0x00,0x1f,0x80,0x07,0xf2,0x3f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x78,0x1c,0x1f,0xc1,0x87,0xf0,0x1f,0xad,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x00,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x05,0x55,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x12,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x04,0xaa,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x2a,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x00,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x2b,0x75,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x04,0xaf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x22,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x0a,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x11,0x5b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x42,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x15,0x5d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x60,0x00,0x00,0x00,0x00,0x00,0x2b,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x01,0x7f,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x01,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x01,0x56,0xd7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x0a,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0xaa,0xab,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x0a,0xbf,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x02,0xaa,0xd6,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x15,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0xaa,0xb7,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x05,0x6d,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x01,0x55,0x5f,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x2a,0xbb,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x95,0xae,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x60,0x00,0x00,0x00,0x00,0x56,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -86,6 +86,7 @@ uint8_t test_I1_NONE_align64_map[] = { }; const lv_img_dsc_t test_I1_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I1, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I2.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_I2.bin index cd07bc283..2ac2f6426 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_I2.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_I2.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I2_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_I2_NONE_align64.c index 6be3d47e4..f1629e009 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_I2_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_I2_NONE_align64.c @@ -20,72 +20,73 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I2_NONE_align64_map[] = { - 0x5a,0x00,0x3d,0xf4,0x23,0xaf,0xaf,0x08,0x60,0xff,0xf7,0xdf,0x37,0xff,0x18,0xff, + 0x5a,0x00,0x3d,0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x55,0x55,0x55,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x40,0x00,0x01,0x55,0x54,0x15,0x54,0x40,0x00,0x00,0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x55,0x00,0x00,0x00,0x55,0x50,0x05,0x54,0x45,0x55,0x55,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x50,0x05,0x54,0x44,0x00,0x00,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x54,0x00,0x00,0x00,0x15,0x54,0x15,0x54,0x44,0x55,0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x40,0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x02,0xaa,0xa9,0x50,0x00,0x00,0x00,0x05,0x55,0x55,0x54,0x44,0x45,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x50,0x05,0x54,0x44,0x44,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x40,0x01,0x54,0x44,0x45,0x44,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44,0x40,0x04,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x50,0x00,0x00,0x00,0x05,0x00,0x00,0x54,0x44,0x55,0x54,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0x44,0x00,0x00,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x54,0x00,0x00,0x00,0x15,0x00,0x00,0x54,0x45,0x55,0x55,0x44,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x55,0x00,0x00,0x00,0x55,0x40,0x01,0x54,0x40,0x00,0x00,0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd6,0xaa,0xa8,0x00,0x01,0x55,0x40,0x00,0x01,0x55,0x50,0x05,0x54,0x55,0x55,0x55,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x54,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x50,0x00,0x05,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x55,0x40,0x05,0x55,0x54,0x00,0x15,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x01,0x55,0x40,0x05,0x55,0x50,0x00,0x01,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x40,0x05,0x55,0x40,0x00,0x01,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x54,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55,0x55,0x55,0x55,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x40,0x00,0x00,0x05,0x55,0x50,0x55,0x00,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x05,0x55,0x55,0x40,0x00,0x55,0x55,0x50,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x15,0x40,0x05,0x55,0x50,0x00,0x00,0x55,0x55,0x00,0x15,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x00,0x00,0x55,0x55,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x55,0x40,0x05,0x55,0x40,0x15,0x00,0x55,0x55,0x54,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd4,0x00,0x14,0x00,0x05,0x55,0x40,0x55,0x00,0x55,0x55,0x00,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x01,0x55,0x40,0x04,0x00,0x55,0x54,0x05,0x05,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x00,0x00,0x00,0x00,0x55,0x40,0x00,0x00,0x15,0x55,0x04,0x05,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x40,0x00,0x40,0x01,0x55,0x50,0x00,0x40,0x15,0x55,0x00,0x01,0x55,0x44,0x51,0x51,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x66,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0xa6,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x9a,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x65,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x99,0x95,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0x66,0x66,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd7,0xff,0xff,0xff,0xff,0xff,0xfb,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x99,0x66,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xd5,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0xaa,0xaa,0xaa,0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x80,0x00,0x02,0xaa,0xa8,0x2a,0xa8,0x80,0x00,0x00,0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xaa,0x00,0x00,0x00,0xaa,0xa0,0x0a,0xa8,0x8a,0xaa,0xaa,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa0,0x0a,0xa8,0x88,0x00,0x00,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa8,0x00,0x00,0x00,0x2a,0xa8,0x2a,0xa8,0x88,0xaa,0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x80,0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x01,0x55,0x56,0xa0,0x00,0x00,0x00,0x0a,0xaa,0xaa,0xa8,0x88,0x8a,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0xa0,0x0a,0xa8,0x88,0x88,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x80,0x02,0xa8,0x88,0x8a,0x88,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88,0x80,0x08,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa0,0x00,0x00,0x00,0x0a,0x00,0x00,0xa8,0x88,0xaa,0xa8,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0x88,0x00,0x00,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xa8,0x00,0x00,0x00,0x2a,0x00,0x00,0xa8,0x8a,0xaa,0xaa,0x88,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xaa,0x00,0x00,0x00,0xaa,0x80,0x02,0xa8,0x80,0x00,0x00,0x08,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe9,0x55,0x54,0x00,0x02,0xaa,0x80,0x00,0x02,0xaa,0xa0,0x0a,0xa8,0xaa,0xaa,0xaa,0xa8,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xa8,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xa0,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0xaa,0x80,0x0a,0xaa,0xa8,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x02,0xaa,0x80,0x0a,0xaa,0xa0,0x00,0x02,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x02,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xa8,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x80,0x00,0x00,0x0a,0xaa,0xa0,0xaa,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x0a,0xaa,0xaa,0x80,0x00,0xaa,0xaa,0xa0,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x2a,0x80,0x0a,0xaa,0xa0,0x00,0x00,0xaa,0xaa,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x00,0x00,0xaa,0xaa,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0xaa,0x80,0x0a,0xaa,0x80,0x2a,0x00,0xaa,0xaa,0xa8,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe8,0x00,0x28,0x00,0x0a,0xaa,0x80,0xaa,0x00,0xaa,0xaa,0x00,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x02,0xaa,0x80,0x08,0x00,0xaa,0xa8,0x0a,0x0a,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x00,0x00,0x00,0x00,0xaa,0x80,0x00,0x00,0x2a,0xaa,0x08,0x0a,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0x80,0x00,0x80,0x02,0xaa,0xa0,0x00,0x80,0x2a,0xaa,0x00,0x02,0xaa,0x88,0xa2,0xa2,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xfd,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0xa6,0x6a,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x9a,0x6a,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x95,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0x9a,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x56,0x65,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x65,0x99,0x99,0x9a,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xeb,0xff,0xff,0xff,0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xea,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; const lv_img_dsc_t test_I2_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I2, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I4.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_I4.bin index 8bec5c7c9..d42b0587a 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_I4.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_I4.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I4_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_I4_NONE_align64.c index b41717e16..b7ca4e593 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_I4_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_I4_NONE_align64.c @@ -20,67 +20,67 @@ static const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I4_NONE_align64_map[] = { - 0x4c,0x70,0x47,0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0x00,0xfc,0x00,0xff,0xf7,0xf4, - 0x00,0xff,0xff,0x65,0x00,0xff,0xff,0xa9,0x41,0xa5,0xa5,0x30,0x00,0x00,0x00,0x75, - 0x00,0x00,0x00,0xc2,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xff,0xff,0xff,0xff, - 0x00,0xff,0x88,0xff,0xcc,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x00,0x00,0xff,0xff, + 0x4c,0x70,0x47,0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc, + 0x3e,0x8f,0x8f,0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60, + 0x00,0xff,0xff,0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff, + 0xff,0xff,0xff,0xff,0x00,0xff,0x7f,0xff,0x77,0xff,0x00,0xff,0x00,0x00,0xff,0xff, 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x00,0x69,0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x09,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x01,0x11,0x11,0x11,0x1b,0xbb,0xbb,0xbb,0xb0,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x06,0x92,0x29,0x60,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x62,0x22,0x22,0x26,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x62,0x22,0x22,0x26,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0b,0xbb,0xbb,0xbb,0xb1,0x11,0x11,0x11,0x10,0x00,0x00,0x69,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x06,0x92,0x29,0x60,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x69,0x22,0x22,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x00,0x49,0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x09,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x22,0x22,0x00,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x42,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x00,0x92,0x29,0x00,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x11,0x11,0x1c,0xcc,0xcc,0xcc,0xc0,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x04,0x92,0x29,0x40,0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x42,0x22,0x22,0x24,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0x0f,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x0f,0x0f,0xff,0xff,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x29,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x0f,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x42,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x00,0x22,0x22,0x22,0x22,0x00,0x0f,0x0f,0x0f,0xff,0xff,0xff,0xff,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x09,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x00,0x92,0x22,0x22,0x29,0x00,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x00,0x92,0x22,0x22,0x22,0x22,0x29,0x00,0x00,0x42,0x22,0x22,0x24,0x00,0x0f,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0c,0xcc,0xcc,0xcc,0xc1,0x11,0x11,0x11,0x10,0x00,0x00,0x49,0x22,0x22,0x22,0x22,0x90,0x00,0x00,0x04,0x92,0x29,0x40,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x22,0x22,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x00,0x06,0x66,0x00,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x06,0x78,0x11,0x11,0x18,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x81,0x11,0x11,0x11,0x11,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x11,0x11,0x60,0x06,0x81,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x81,0x18,0x00,0x00,0x71,0x11,0x17,0x00,0x00,0x00,0x00,0x07,0x88,0x18,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x88,0x87,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x11,0x11,0x11,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x17,0x78,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x78,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x60,0x00,0x11,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x68,0x11,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0x06,0x88,0x00,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x11,0x11,0x11,0x88,0x81,0x11,0x17,0x00,0x00,0x00,0x00,0x00,0x77,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x07,0x77,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x07,0x11,0x11,0x70,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x00,0x71,0x11,0x11,0x11,0x18,0x00,0x00,0x00,0x00,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x08,0x11,0x18,0x00,0x00,0x01,0x11,0x17,0x00,0x00,0x00,0x07,0x11,0x18,0x77,0x11,0x18,0x00,0x00,0x00,0x00,0x17,0x07,0x18,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x08,0x11,0x18,0x00,0x00,0x61,0x11,0x17,0x00,0x00,0x00,0x01,0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x67,0x77,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x08,0x11,0x11,0x70,0x67,0x11,0x11,0x17,0x00,0x00,0x00,0x61,0x11,0x70,0x00,0x81,0x18,0x00,0x00,0x00,0x00,0x81,0x88,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x07,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x87,0x00,0x00,0x01,0x11,0x87,0x78,0x11,0x18,0x60,0x00,0x00,0x07,0x18,0x06,0x18,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x81,0x11,0x11,0x11,0x88,0x11,0x11,0x17,0x00,0x00,0x07,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x07,0x18,0x78,0x18,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x07,0x11,0x11,0x17,0x07,0x11,0x11,0x17,0x00,0x00,0x00,0x71,0x11,0x17,0x71,0x11,0x10,0x00,0x00,0x00,0x81,0x17,0x11,0x80,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x00,0x00,0x06,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x04,0x44,0x00,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x04,0x61,0x11,0x11,0x16,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x61,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x11,0x40,0x04,0x11,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x61,0x11,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x61,0x16,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x04,0x11,0x11,0x11,0x11,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x16,0x61,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x46,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x40,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x04,0x66,0x00,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x11,0x11,0x11,0x66,0x61,0x11,0x16,0x00,0x00,0x00,0x00,0x00,0x66,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x06,0x66,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x60,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x00,0x61,0x11,0x11,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x00,0x00,0x01,0x11,0x16,0x00,0x00,0x00,0x06,0x11,0x16,0x66,0x11,0x16,0x00,0x00,0x00,0x00,0x16,0x06,0x16,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x01,0x11,0x16,0x00,0x00,0x41,0x11,0x16,0x00,0x00,0x00,0x01,0x11,0x60,0x00,0x61,0x16,0x00,0x00,0x00,0x00,0x44,0x66,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x60,0x46,0x11,0x11,0x16,0x00,0x00,0x00,0x41,0x11,0x40,0x00,0x11,0x16,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x06,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x14,0x00,0x00,0x01,0x11,0x14,0x61,0x11,0x11,0x40,0x00,0x00,0x06,0x16,0x04,0x11,0x00,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x61,0x11,0x11,0x11,0x61,0x11,0x11,0x16,0x00,0x00,0x06,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x06,0x11,0x66,0x11,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x06,0x11,0x11,0x16,0x06,0x11,0x11,0x16,0x00,0x00,0x00,0x61,0x11,0x14,0x61,0x11,0x10,0x00,0x00,0x00,0x61,0x16,0x11,0x60,0x00,0x00,0x01,0x01,0x00,0x10,0x00,0x10,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x00,0x00,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x46,0x46,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xde,0xee,0xee,0xee,0xae,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55,0x55,0x45,0x45,0x44,0x44,0x64,0x66,0x40,0x60,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xea,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53,0x53,0x55,0x55,0x54,0x54,0x44,0x44,0x44,0x64,0x66,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x54,0x44,0x44,0x64,0x64,0x04,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xed,0xee,0xee,0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x53,0x55,0x55,0x54,0x55,0x45,0x44,0x44,0x44,0x64,0x66,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xee,0xaa,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x35,0x35,0x35,0x55,0x55,0x45,0x55,0x44,0x44,0x46,0x46,0x46,0x06,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xde,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x54,0x44,0x44,0x44,0x64,0x64,0x06,0x60,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xdd,0xee,0xee,0xea,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x35,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x46,0x64,0x60,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea,0xaa,0xaa,0xaa,0xaa,0xcc,0xcc,0xc3,0xc3,0x33,0x33,0x33,0x33,0x35,0x35,0x53,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xed,0xee,0xee,0xae,0xaa,0xaa,0xca,0xca,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x53,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x46,0x66,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xcc,0xcc,0xcc,0x3c,0x33,0x33,0x33,0x33,0x33,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x44,0x64,0x64,0x06,0x00,0x60,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xa0,0x0d,0xdd,0xdd,0xde,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xac,0xcc,0xcc,0xc3,0x33,0x33,0x33,0x33,0x33,0x33,0x35,0x55,0x55,0x55,0x45,0x44,0x44,0x46,0x46,0x66,0x66,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x44,0x44,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0x3d,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0xd3,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x85,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xd3,0x3d,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xae,0xae,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xee,0xaa,0xaa,0xaa,0xda,0xda,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x85,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xaa,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbe,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xad,0xad,0xdd,0xdd,0xdd,0x33,0x33,0x33,0x33,0x83,0x88,0x88,0x58,0x55,0x55,0x75,0x77,0x77,0x74,0x74,0x74,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xee,0xee,0xea,0xea,0xaa,0xaa,0xda,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x38,0x88,0x88,0x85,0x55,0x55,0x57,0x77,0x77,0x77,0x47,0x04,0x04,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xa0,0x0b,0xbb,0xbb,0xbe,0xee,0xee,0xaa,0xaa,0xaa,0xaa,0xdd,0xdd,0xdd,0xd3,0x33,0x33,0x33,0x33,0x33,0x88,0x88,0x58,0x55,0x55,0x57,0x57,0x77,0x74,0x74,0x44,0x40,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -89,6 +89,7 @@ uint8_t test_I4_NONE_align64_map[] = { }; const lv_img_dsc_t test_I4_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I4, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I8.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_I8.bin index 29eb7e624..7006c7be1 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_I8.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_I8.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_I8_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_I8_NONE_align64.c index 7c541d936..b72dd5e73 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_I8_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_I8_NONE_align64.c @@ -21,60 +21,60 @@ LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_DUST uint8_t test_I8_NONE_align64_map[] = { 0x4c,0x70,0x47,0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff,0x58, - 0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c, + 0x00,0xff,0xff,0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c, 0x00,0xff,0xff,0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff,0xd0, 0x00,0xff,0xff,0x94,0x00,0xff,0xff,0x13,0x00,0xff,0xff,0x3e,0x00,0xff,0xff,0xc7, 0x00,0xff,0xff,0x72,0x00,0xff,0xff,0x47,0x00,0xff,0xff,0x0b,0x00,0xff,0xff,0x4f, 0x00,0xff,0xff,0xfb,0x00,0xff,0xff,0x83,0x00,0xff,0xff,0xbf,0x00,0xff,0xff,0x36, 0x00,0xff,0xff,0xae,0x00,0xff,0xff,0x9d,0x00,0xff,0xff,0x60,0x00,0xff,0xff,0x24, - 0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0xff,0x00,0x00,0x93,0x00,0xff,0xff,0x8b, + 0x00,0xff,0xff,0xea,0xff,0x00,0x00,0x1a,0x00,0xff,0xff,0x8b,0xff,0x00,0x00,0x93, 0x00,0x00,0x00,0x90,0xff,0x00,0x00,0xdf,0xff,0x00,0x00,0x3f,0xff,0x00,0x00,0xd6, 0xff,0x00,0x00,0x96,0xff,0x00,0x00,0xf9,0xff,0x00,0x00,0x40,0xff,0x00,0x00,0xac, 0xff,0x00,0x00,0xf2,0x00,0xff,0xff,0xd8,0x00,0xff,0xff,0xd9,0x00,0xff,0xff,0x25, - 0x00,0xff,0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0x12, - 0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad,0x00,0x00,0x00,0xac, - 0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xde,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x6c, - 0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4,0x00,0x00,0x00,0xbc, - 0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0x50, - 0xff,0x00,0x00,0xa7,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xd3,0x00,0x00,0x00,0x0a, - 0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xfa,0x00,0x00,0x00,0xc1, - 0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf7,0x00,0x00,0x00,0xd0,0x00,0xff,0xff,0x46, - 0x00,0xff,0xff,0x71,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01, - 0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08, - 0x00,0x00,0x00,0xc5,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c,0x00,0x00,0x00,0x0d, - 0x00,0x00,0x00,0xb4,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc, - 0x00,0x00,0x00,0xf9,0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x2a, - 0x00,0x00,0x00,0x6f,0x00,0xff,0xff,0x3f,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x3c, - 0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0xb8, - 0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x5c, - 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x7a, - 0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x55, - 0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0, - 0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e, - 0x00,0x00,0x00,0x89,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x92,0x00,0x00,0x00,0xc4, - 0x00,0xff,0xff,0x03,0x00,0x00,0x00,0x28,0x00,0xff,0xff,0xf3,0x00,0xff,0xff,0x57, - 0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0x4e,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x4c, - 0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0xc8, - 0x00,0x00,0x00,0xb2,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca,0x00,0x00,0x00,0x52, - 0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x53,0x00,0x00,0x00,0x97,0x00,0x00,0x00,0x76, - 0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x88,0x00,0x00,0x00,0x58, - 0x00,0x00,0x00,0x5e,0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xcc, + 0x00,0xff,0xff,0x61,0x00,0xff,0xff,0xe9,0x00,0xff,0xff,0x8c,0x00,0x00,0x00,0xfa, + 0x00,0x00,0x00,0x12,0x00,0xff,0xff,0x35,0x00,0xff,0xff,0x9c,0x00,0xff,0xff,0xad, + 0x00,0x00,0x00,0xac,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xdf,0x00,0x00,0x00,0x14, + 0x00,0x00,0x00,0x6c,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x64,0x00,0x00,0x00,0xd4, + 0x00,0x00,0x00,0xbc,0x00,0x00,0x00,0x83,0x00,0xff,0xff,0x82,0x00,0xff,0xff,0x50, + 0x00,0xff,0xff,0x0a,0x00,0xff,0xff,0xfa,0xff,0x00,0x00,0xa7,0xff,0x00,0x00,0xd3, + 0x00,0x00,0x00,0x0a,0x00,0xff,0xff,0xbe,0xff,0x00,0x00,0x6a,0x00,0x00,0x00,0xc5, + 0x00,0x00,0x00,0xc1,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xd0, + 0x00,0xff,0xff,0x46,0x00,0xff,0xff,0x71,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0xdd, + 0x00,0x00,0x00,0x95,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0x37, + 0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x8c, + 0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0xb5,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0xfc, + 0x00,0x00,0x00,0x60,0x00,0xff,0xff,0x14,0x00,0x00,0x00,0x6f,0x00,0x00,0x00,0x2a, + 0x00,0xff,0xff,0x3f,0x00,0xff,0xff,0xc8,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0x0c, + 0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x43, + 0x00,0x00,0x00,0xe7,0x00,0x00,0x00,0x52,0x00,0x00,0x00,0x89,0x00,0x00,0x00,0x5c, + 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0x26, + 0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0xbe, + 0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x30, + 0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x0e,0x00,0xff,0xff,0x93,0x00,0x00,0x00,0x33, + 0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x92,0x00,0xff,0xff,0x57,0x00,0xff,0xff,0xf3, + 0x00,0xff,0xff,0x03,0x00,0xff,0xff,0xcf,0x00,0x00,0x00,0xf6,0x00,0x00,0x00,0x4e, + 0x00,0x00,0x00,0x4c,0x00,0x00,0x00,0x72,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0xc8, + 0x00,0x00,0x00,0x35,0x00,0x00,0x00,0xb3,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0xca, + 0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x7b,0x00,0x00,0x00,0x97,0x00,0x00,0x00,0xda, + 0x00,0x00,0x00,0x76,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x55,0x00,0x00,0x00,0x7a, + 0x00,0x00,0x00,0x81,0x00,0x00,0x00,0x56,0x00,0x00,0x00,0x58,0x00,0x00,0x00,0x5e, + 0x00,0x00,0x00,0x5d,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0xd9,0x00,0x00,0x00,0xcc, 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff, 0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xff,0xc3,0xff,0x00,0xff,0x00,0xff,0x87,0xff, 0x00,0xff,0x0f,0xff,0x02,0xff,0x00,0xff,0x00,0xff,0xee,0xff,0x5c,0xff,0x00,0xff, 0x4b,0xff,0x00,0xff,0x00,0xff,0x98,0xff,0x00,0xff,0x76,0xff,0x00,0xff,0x20,0xff, - 0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0x00,0xff,0x54,0xff,0xb2,0xff,0x00,0xff, + 0x00,0xff,0xa9,0xff,0xd4,0xff,0x00,0xff,0xb2,0xff,0x00,0xff,0x00,0xff,0x54,0xff, 0x00,0xff,0xba,0xff,0x00,0xff,0x42,0xff,0x3a,0xff,0x00,0xff,0x00,0xff,0xdd,0xff, 0x00,0xff,0x31,0xff,0x00,0xff,0xcc,0xff,0xe5,0xff,0x00,0xff,0xa1,0xff,0x00,0xff, - 0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x6d,0xff,0x00,0xff,0x90,0xff,0x00,0xff, - 0x8f,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x24,0xff,0x00,0xff, - 0x00,0xff,0x64,0xff,0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff, - 0xf6,0xff,0x00,0xff,0xf7,0xff,0x00,0xff,0x00,0xff,0x32,0xff,0x14,0xff,0x00,0xff, + 0x00,0xff,0x65,0xff,0x7e,0xff,0x00,0xff,0x8f,0xff,0x00,0xff,0x6d,0xff,0x00,0xff, + 0x90,0xff,0x00,0xff,0x6e,0xff,0x00,0xff,0x7f,0xff,0x00,0xff,0x00,0xff,0x64,0xff, + 0xa0,0xff,0x00,0xff,0x13,0xff,0x00,0xff,0x29,0xff,0x00,0xff,0xf6,0xff,0x00,0xff, + 0x00,0xff,0x32,0xff,0x24,0xff,0x00,0xff,0x14,0xff,0x00,0xff,0xf7,0xff,0x00,0xff, 0x00,0xff,0xcb,0xff,0x35,0xff,0x00,0xff,0x00,0xff,0xdc,0xff,0x00,0xff,0x43,0xff, 0xe6,0xff,0x00,0xff,0xb1,0xff,0x00,0xff,0x00,0xff,0x53,0xff,0x17,0xff,0x00,0xff, - 0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x00,0xff,0x21,0xff, - 0x00,0xff,0x99,0xff,0x5d,0xff,0x00,0xff,0x47,0xff,0x00,0xff,0x28,0xff,0x00,0xff, - 0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0x00,0xff,0xbb,0xff,0x00,0xff,0xaa,0xff,0x00,0xff,0x75,0xff,0x25,0xff,0x00,0xff, + 0x00,0xff,0x21,0xff,0x00,0xff,0x99,0xff,0x47,0xff,0x00,0xff,0x5d,0xff,0x00,0xff, + 0x28,0xff,0x00,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, @@ -90,57 +90,57 @@ uint8_t test_I8_NONE_align64_map[] = { 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x45,0x21,0x21,0x45,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x40,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x40,0x1d,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x22,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x00,0x00,0x45,0x21,0x21,0x45,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x21,0x21,0x46,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1d,0x42,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x42,0x1d,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x00,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x00,0x00,0x00,0x00,0x00,0x21,0x9e,0x9e,0x21,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x22,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x00,0x00,0x46,0x21,0x21,0x46,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x24,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x00,0x00,0x00,0x23,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25,0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x25,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x25,0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x23,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x23,0x00,0x00,0x27,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x24,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x24,0x00,0x00,0x28,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x28,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x22,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x22,0x00,0x00,0x28,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x28,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1d,0x40,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x40,0x1d,0x00,0x00,0x00,0x26,0x42,0x9e,0x9e,0x9e,0x9e,0x42,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1e,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x00,0x00,0x00,0x27,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x27,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x1d,0x42,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x42,0x1d,0x00,0x00,0x00,0x26,0x43,0x9e,0x9e,0x9e,0x9e,0x43,0x26,0x00,0x00,0x00,0xa0,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x00,0x00,0x00,0x1d,0x1f,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x1f,0x1d,0x00,0x00,0x00,0x00,0x00,0x26,0x27,0x28,0x28,0x27,0x26,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x24,0x23,0x25,0x25,0x23,0x24,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x81,0x62,0x70,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x62,0x4e,0x35,0x9c,0x9c,0x9c,0x9c,0x46,0x7f,0x6b,0x4f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x8c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3b,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x8d,0x9c,0x9c,0x9c,0x9c,0x55,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x50,0x9c,0x9c,0x50,0x75,0x53,0x34,0x63,0x35,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x38,0x00,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x93,0x3b,0x35,0x50,0x3a,0x72,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x74,0x4d,0x4d,0x37,0x00,0x00,0x00,0x00,0x53,0x9c,0x9c,0x9c,0x9c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x91,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x55,0x6f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7b,0x36,0x36,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x9c,0x9c,0x77,0x56,0x3c,0x78,0x9c,0x9c,0x9c,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x4f,0x8f,0x38,0x6e,0x46,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x95,0x9c,0x9c,0x59,0x00,0x00,0x2f,0x52,0x9c,0x9c,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x6d,0x8e,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x59,0x38,0x38,0x2f,0x00,0x00,0x00,0x54,0x9c,0x9c,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x57,0x35,0x9c,0x9c,0x9c,0x9c,0x6a,0x47,0x67,0x67,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x73,0x6f,0x56,0x20,0x50,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x98,0x7a,0x37,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x34,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4f,0x94,0x49,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x49,0x55,0x5a,0x5b,0x5c,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x3b,0x9c,0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x9c,0x9c,0x9c,0x3b,0x76,0x96,0x6e,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9c,0x7a,0x00,0x99,0x9c,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x4a,0x9c,0x9c,0x9c,0x8b,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x52,0x9c,0x9c,0x76,0x00,0x00,0x00,0x47,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x9a,0x75,0x5d,0x3c,0x9c,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x58,0x9c,0x9c,0x9c,0x9c,0x60,0x88,0x68,0x37,0x6c,0x9c,0x9c,0x9c,0x9c,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x9c,0x9c,0x9c,0x73,0x00,0x00,0x34,0x3a,0x9c,0x9c,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x9b,0x9c,0x35,0x78,0x9c,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x39,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5b,0x4d,0x87,0x00,0x00,0x00,0x00,0x48,0x49,0x9c,0x9c,0x3a,0x97,0x5d,0x54,0x9c,0x9c,0x9c,0x47,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x9c,0x38,0x00,0x79,0x9c,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x69,0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x58,0x54,0x9c,0x9c,0x9c,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x00,0x4e,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x65,0x00,0x00,0x00,0x00,0x00,0x39,0x9c,0x3a,0x39,0x74,0x9c,0x35,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x43,0x7e,0x49,0x9c,0x9c,0x9c,0x52,0x3c,0x69,0x86,0x9c,0x9c,0x9c,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x00,0x48,0x92,0x46,0x9c,0x9c,0x6c,0x6b,0x5d,0x9c,0x9c,0x9c,0x9c,0x65,0x00,0x00,0x00,0x00,0x00,0x53,0x3b,0x9c,0x5b,0x3c,0x5c,0x9c,0x72,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0x00,0x00,0x00,0x43,0x89,0x85,0x63,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7b,0x51,0x79,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x7c,0x7b,0x6f,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x88,0x50,0x4f,0x9c,0x9c,0x9c,0x9c,0x2f,0x47,0x6b,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x89,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x3c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x8a,0x9c,0x9c,0x9c,0x9c,0x56,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x52,0x9c,0x9c,0x52,0x74,0x55,0x35,0x4e,0x4f,0x9c,0x9c,0x9c,0x9c,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x5a,0x9c,0x9c,0x39,0x00,0x00,0x00,0x00,0x67,0x9c,0x9c,0x9c,0x9c,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x90,0x3c,0x4f,0x52,0x3b,0x70,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x73,0x4f,0x4f,0x38,0x00,0x00,0x00,0x00,0x55,0x9c,0x9c,0x9c,0x9c,0x6a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x69,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x56,0x8d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0x37,0x37,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x9c,0x9c,0x76,0x57,0x3d,0x8f,0x9c,0x9c,0x9c,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x51,0x69,0x39,0x6e,0x2f,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x91,0x9c,0x9c,0x72,0x00,0x00,0x30,0x54,0x9c,0x9c,0x57,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x6d,0x8b,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x72,0x39,0x39,0x30,0x00,0x00,0x00,0x47,0x9c,0x9c,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x58,0x4f,0x9c,0x9c,0x9c,0x9c,0x68,0x48,0x64,0x64,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x92,0x93,0x57,0x20,0x52,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x97,0x78,0x38,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x71,0x9c,0x9c,0x9c,0x9c,0x71,0x35,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x51,0x94,0x4a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x4a,0x56,0x5a,0x5b,0x2f,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x3c,0x9c,0x9c,0x9c,0x3b,0x00,0x00,0x00,0x00,0x00,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3d,0x9c,0x9c,0x9c,0x3c,0x57,0x6a,0x6e,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9c,0x78,0x00,0x98,0x9c,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x4b,0x9c,0x9c,0x9c,0x87,0x00,0x00,0x00,0x00,0x5f,0x9c,0x9c,0x9c,0x9c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x54,0x9c,0x9c,0x75,0x00,0x00,0x00,0x48,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x99,0x74,0x5c,0x3d,0x9c,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x59,0x9c,0x9c,0x9c,0x9c,0x5e,0x86,0x65,0x38,0x6c,0x9c,0x9c,0x9c,0x9c,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x8c,0x9c,0x9c,0x9c,0x95,0x00,0x00,0x35,0x3b,0x9c,0x9c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x9b,0x9c,0x36,0x9a,0x9c,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x3a,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x2f,0x4f,0x84,0x00,0x00,0x00,0x00,0x49,0x4a,0x9c,0x9c,0x3b,0x96,0x5c,0x47,0x9c,0x9c,0x9c,0x48,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x9c,0x39,0x00,0x77,0x9c,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x66,0x48,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x89,0x47,0x9c,0x9c,0x9c,0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x50,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x5a,0x9c,0x9c,0x9c,0x9c,0x63,0x00,0x00,0x00,0x00,0x00,0x3a,0x9c,0x3b,0x3a,0x73,0x9c,0x36,0x6f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x44,0x7d,0x82,0x9c,0x9c,0x9c,0x54,0x3d,0x66,0x85,0x9c,0x9c,0x9c,0x9c,0x9c,0x3a,0x00,0x00,0x00,0x00,0x00,0x49,0x8e,0x2f,0x9c,0x9c,0x6c,0x6b,0x5c,0x9c,0x9c,0x9c,0x9c,0x63,0x00,0x00,0x00,0x00,0x00,0x55,0x3c,0x9c,0x2f,0x3d,0x2f,0x9c,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x00,0x9c,0x00,0x00,0x9c,0x00,0x00,0x00,0x9c,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0x00,0x00,0x00,0x44,0x4e,0x83,0x4e,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x79,0x53,0x77,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x79,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4,0xcb,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05,0x4c,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xc0,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x64,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x15,0x05,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xb7,0xbc,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x44,0x06,0x32,0x01,0x31,0x0c,0x1f,0x15,0x05,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc2,0xa5,0xa4,0xab,0xc6,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x82,0x1c,0x04,0x29,0x0b,0x0f,0x44,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x30,0x09,0x1b,0x07,0x5e,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xcd,0xc1,0xbb,0xbe,0xba,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x30,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xd5,0xa8,0xb2,0xd7,0xc2,0xa5,0xa4,0xab,0xb4,0xcb,0xae,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c,0x1f,0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xbd,0xa7,0xa8,0xb2,0xc3,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xc0,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x0c,0x2e,0x3d,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xbf,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x2a,0x0b,0x64,0x44,0x06,0x32,0x01,0x31,0x0c,0x1f,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5e,0x3e,0x80,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xcc,0xad,0xa2,0xaf,0xb7,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf,0xc2,0xa5,0xa4,0xd3,0xb4,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x31,0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc5,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xb9,0xba,0xa7,0xa8,0xb2,0xbf,0xc7,0xa5,0xa4,0xd3,0xc6,0xcb,0xae,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x2a,0x84,0x0f,0x16,0x06,0x18,0x01,0x31,0x0c,0x1f,0x15,0x05,0x4c,0x08,0x2c,0x03,0x13,0x4b,0x0e,0x30,0x09,0x1b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xc1,0xbc,0xbe,0xba,0xa7,0xa8,0xc9,0xbf,0xc7,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1f,0x3d,0x05,0x10,0x08,0x1a,0x03,0x13,0x4b,0x61,0x30,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xcc,0xd8,0xa2,0xaf,0xc1,0xbb,0xbe,0xbd,0xa7,0xa8,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xce,0xc0,0xd2,0xa3,0xa9,0xac,0xb0,0xc8,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x04,0x29,0x0b,0x0f,0x16,0x06,0x32,0x01,0x19,0x7d,0x2e,0x15,0x05,0x10,0x08,0x1a,0x03,0x3f,0x4b,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xcc,0xad,0xa2,0xcd,0xb7,0xbc,0xb9,0xba,0xa7,0xa8,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x04,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x05,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x9d,0x00,0x00,0xc4,0xb6,0xad,0xa2,0xaf,0xb7,0xbb,0xb9,0xba,0xa7,0xd6,0xc9,0xbf,0xc2,0xa5,0xa4,0xab,0xc6,0xb1,0xae,0xc0,0xaa,0xa3,0xd4,0xd1,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x04,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x31,0x0c,0x2e,0x15,0x05,0x10,0x08,0x1a,0x83,0x3f,0x11,0x61,0x17,0x09,0x1b,0x07,0x0d,0x3e,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4,0xcb,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x04,0x4d,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xbf,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x61,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xb7,0xba,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xcf,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x45,0x06,0x33,0x01,0x32,0x0c,0x1e,0x15,0x04,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc1,0xa5,0xa4,0xab,0xc4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x7f,0x1c,0x05,0x29,0x0b,0x0f,0x45,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x3f,0x11,0x0e,0x31,0x09,0x1b,0x07,0x5d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xcd,0xc0,0xbc,0xbe,0xbb,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x13,0x11,0x0e,0x31,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xd7,0xa8,0xb2,0xd8,0xc1,0xa5,0xa4,0xab,0xb4,0xcb,0xaf,0xb8,0xaa,0xa3,0xa9,0xd1,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c,0x1e,0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbd,0xa7,0xa8,0xb2,0xc2,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xbf,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x0c,0x2e,0x3e,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xbe,0xbd,0xa7,0xa8,0xb2,0xd3,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xd0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x2a,0x0b,0x61,0x45,0x06,0x33,0x01,0x32,0x0c,0x1e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x5d,0x40,0x80,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xcc,0xad,0xa2,0xae,0xb7,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5,0xc1,0xa5,0xa4,0xd4,0xb4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x32,0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x2b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc7,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xb9,0xbb,0xa7,0xa8,0xb2,0xc5,0xc6,0xa5,0xa4,0xd4,0xc4,0xcb,0xaf,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x2a,0x81,0x0f,0x16,0x06,0x18,0x01,0x32,0x0c,0x1e,0x15,0x04,0x4d,0x08,0x2c,0x03,0x13,0x4c,0x0e,0x31,0x09,0x1b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xc0,0xba,0xbe,0xbb,0xa7,0xa8,0xc9,0xc5,0xc6,0xa5,0xa4,0xab,0xb4,0xb1,0xce,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x2d,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x1e,0x3e,0x04,0x10,0x08,0x1a,0x03,0x13,0x4c,0x60,0x31,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xcc,0xd9,0xa2,0xae,0xc0,0xbc,0xbe,0xbd,0xa7,0xa8,0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xce,0xbf,0xd2,0xa3,0xa9,0xac,0xb0,0xc8,0xca,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x2d,0x05,0x29,0x0b,0x0f,0x16,0x06,0x33,0x01,0x19,0x7a,0x2e,0x15,0x04,0x10,0x08,0x1a,0x03,0x3f,0x4c,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xcc,0xad,0xa2,0xcd,0xb7,0xba,0xb9,0xbb,0xa7,0xa8,0xc9,0xc5,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xb8,0xaa,0xa3,0xa9,0xac,0xb0,0xc8,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x41,0x0a,0x1c,0x05,0x29,0x0b,0x0f,0x16,0x06,0x18,0x01,0x19,0x0c,0x2e,0x15,0x04,0x10,0x08,0x2c,0x03,0x13,0x11,0x0e,0x17,0x09,0x1b,0x07,0x0d,0x12,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9d,0x00,0x00,0xc3,0xb6,0xad,0xa2,0xae,0xb7,0xbc,0xb9,0xbb,0xa7,0xd6,0xc9,0xd3,0xc1,0xa5,0xa4,0xab,0xc4,0xb1,0xaf,0xbf,0xaa,0xa3,0xd5,0xd1,0xb0,0xb5,0xb3,0xa6,0xa1,0xa1,0xa1,0xa1,0x14,0x0a,0x1c,0x05,0x2a,0x0b,0x0f,0x16,0x06,0x18,0x01,0x32,0x0c,0x2e,0x15,0x04,0x10,0x08,0x1a,0x7e,0x3f,0x11,0x60,0x17,0x09,0x1b,0x07,0x0d,0x40,0x02,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, @@ -149,6 +149,7 @@ uint8_t test_I8_NONE_align64_map[] = { }; const lv_img_dsc_t test_I8_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_I8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_L8.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_L8.bin index 18f9bd1c4..f1c2afa48 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_L8.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_L8.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_L8_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_L8_NONE_align64.c index 2a993303f..a703067c0 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_L8_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_L8_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_L8_NONE_align64_map[] = { }; const lv_img_dsc_t test_L8_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_L8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565.bin index 2126b3862..ea3548198 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8.bin index b4141192e..8736efa26 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8_NONE_align64.c index 8f87aab5c..497a9277a 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565A8_NONE_align64.c @@ -114,6 +114,7 @@ uint8_t test_RGB565A8_NONE_align64_map[] = { }; const lv_img_dsc_t test_RGB565A8_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565A8, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565_NONE_align64.c index 7f65a03f6..fa7f913d9 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB565_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_RGB565_NONE_align64_map[] = { }; const lv_img_dsc_t test_RGB565_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB565, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888.bin index b2acb433b..ee94f519e 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888_NONE_align64.c index f440cf73a..c0d1fa039 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_RGB888_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_RGB888_NONE_align64_map[] = { }; const lv_img_dsc_t test_RGB888_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_RGB888, .header.flags = 0, .header.w = 71, diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888.bin b/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888.bin index b7342c3d6..678442d1b 100644 Binary files a/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888.bin and b/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888.bin differ diff --git a/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888_NONE_align64.c b/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888_NONE_align64.c index f7e328a16..f802317a4 100644 --- a/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888_NONE_align64.c +++ b/tests/test_images/stride_align64/UNCOMPRESSED/test_XRGB8888_NONE_align64.c @@ -84,6 +84,7 @@ uint8_t test_XRGB8888_NONE_align64_map[] = { }; const lv_img_dsc_t test_XRGB8888_NONE_align64 = { + .header.magic = LV_IMAGE_HEADER_MAGIC, .header.cf = LV_COLOR_FORMAT_XRGB8888, .header.flags = 0, .header.w = 71,