feat(test): automatically generate test image (#4976)

Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
This commit is contained in:
Neo Xu 2024-01-19 17:38:30 +08:00 committed by GitHub
parent 7c1cb04dee
commit 214d72da88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
223 changed files with 2032 additions and 1901 deletions

View File

@ -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

1
.gitignore vendored
View File

@ -28,3 +28,4 @@ tests/report/
.vscode
.idea
*.bak
tests/test_images/

View File

@ -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

View File

@ -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

View File

@ -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`.

View File

@ -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:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,
};

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,
};

Some files were not shown because too many files have changed in this diff Show More