MSG_POP_PIC.h 54.1 KB
Newer Older
时昊's avatar
时昊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
#ifndef MSG_POP_PIC_H__
#define MSG_POP_PIC_H__

#include "TYW_stdint.h"
#include "PIC_Comm.h"

#ifdef INNER_PIC_ON
    #define PIC_OFFSET_ADDR (0x00000000)
#else
    #define PIC_OFFSET_ADDR (0x10000000)
#endif

typedef struct{
    uint8_t* pu8Addr;
    uint16_t u16X;
    uint16_t u16Y;
}MSGPopPICAttrStruc_st_t;

typedef enum
{
    PIC_Number_10_white_0,
    PIC_Number_10_white_1,
    PIC_Number_10_white_2,
    PIC_Number_10_white_3,
    PIC_Number_10_white_4,
    PIC_Number_10_white_5,
    PIC_Number_10_white_6,
    PIC_Number_10_white_7,
    PIC_Number_10_white_8,
    PIC_Number_10_white_9,
    PIC_Number_10_white_Line,
    PIC_Number_10_white_point,
    PIC_Number_11_white_0,
    PIC_Number_11_white_1,
    PIC_Number_11_white_2,
    PIC_Number_11_white_3,
    PIC_Number_11_white_4,
    PIC_Number_11_white_5,
    PIC_Number_11_white_6,
    PIC_Number_11_white_7,
    PIC_Number_11_white_8,
    PIC_Number_11_white_9,
    PIC_Number_11_white_Line,
    PIC_Number_11_white_Piont,
    PIC_Number_12_white_0,
    PIC_Number_12_white_1,
    PIC_Number_12_white_2,
    PIC_Number_12_white_3,
    PIC_Number_12_white_4,
    PIC_Number_12_white_5,
    PIC_Number_12_white_6,
    PIC_Number_12_white_7,
    PIC_Number_12_white_8,
    PIC_Number_12_white_9,
    PIC_Number_12_white_Line,
    PIC_Number_12_white_point,
    PIC_Number_15_white_0,
    PIC_Number_15_white_1,
    PIC_Number_15_white_2,
    PIC_Number_15_white_3,
    PIC_Number_15_white_4,
    PIC_Number_15_white_5,
    PIC_Number_15_white_6,
    PIC_Number_15_white_7,
    PIC_Number_15_white_8,
    PIC_Number_15_white_9,
    PIC_Number_15_white_Line,
    PIC_Number_15_white_piont,
    PIC_Number_18_white_0,
    PIC_Number_18_white_1,
    PIC_Number_18_white_2,
    PIC_Number_18_white_3,
    PIC_Number_18_white_4,
    PIC_Number_18_white_5,
    PIC_Number_18_white_6,
    PIC_Number_18_white_7,
    PIC_Number_18_white_8,
    PIC_Number_18_white_9,
    PIC_Number_18_white_Line,
    PIC_Number_18_white_point,
    PIC_Number_20_white_0,
    PIC_Number_20_white_1,
    PIC_Number_20_white_2,
    PIC_Number_20_white_3,
    PIC_Number_20_white_4,
    PIC_Number_20_white_5,
    PIC_Number_20_white_6,
    PIC_Number_20_white_7,
    PIC_Number_20_white_8,
    PIC_Number_20_white_9,
    PIC_Number_20_white_Line,
    PIC_SOC_01_words_X216_Y50,
    PIC_SOC_grey_Left_02,
    PIC_SOC_grey_Right_04,
    PIC_SOC_white_Left_01,
    PIC_SOC_white_Right_03,
    PIC_LC_01_km,
    PIC_CX_ECO_02_X52_Y270,
    PIC_CX_Normal_01_X52_Y252,
    PIC_CX_words_03_X52_Y10,
    PIC_CX_words_04_X52_Y10,
    PIC_Gear_A1_X12_Y144,
    PIC_Gear_D_X12_Y144,
    PIC_Gear_Line_X12_Y143,
    PIC_Gear_M1_X12_Y144,
    PIC_Gear_N_X12_Y144,
    PIC_Gear_P_X12_Y144,
    PIC_Gear_R_X12_Y144,
    PIC_Line_01_X202_Y5,
    PIC_Line_02_X47_Y5,
    PIC_Battery_01_words_X77_Y103,
    PIC_Battery_02_words_X77_Y103,
    PIC_Battery_03_words_X77_Y103,
    PIC_Battery_000_X106_Y72,
    PIC_Battery_001_X106_Y72,
    PIC_Battery_002_X106_Y72,
    PIC_Battery_003_X106_Y72,
    PIC_Battery_004_X106_Y72,
    PIC_Battery_005_X106_Y72,
    PIC_Battery_006_X106_Y72,
    PIC_Battery_007_X106_Y72,
    PIC_Battery_008_X106_Y72,
    PIC_Battery_009_X106_Y72,
    PIC_Battery_010_X106_Y72,
    PIC_Battery_011_X106_Y72,
    PIC_Battery_012_X106_Y72,
    PIC_Battery_013_X106_Y72,
    PIC_Battery_014_X106_Y72,
    PIC_Battery_015_X106_Y72,
    PIC_Battery_016_X106_Y72,
    PIC_Battery_017_X106_Y72,
    PIC_Battery_018_X106_Y72,
    PIC_Battery_019_X106_Y72,
    PIC_Battery_020_X106_Y72,
    PIC_Battery_021_X106_Y72,
    PIC_Battery_022_X106_Y72,
    PIC_Battery_023_X106_Y72,
    PIC_Battery_024_X106_Y72,
    PIC_Battery_025_X106_Y72,
    PIC_Battery_026_X106_Y72,
    PIC_Battery_027_X106_Y72,
    PIC_Battery_028_X106_Y72,
    PIC_Battery_029_X106_Y72,
    PIC_Battery_030_X106_Y72,
    PIC_Battery_031_X106_Y72,
    PIC_Battery_032_X106_Y72,
    PIC_Battery_033_X106_Y72,
    PIC_Battery_034_X106_Y72,
    PIC_Battery_035_X106_Y72,
    PIC_Battery_036_X106_Y72,
    PIC_Battery_037_X106_Y72,
    PIC_Battery_038_X106_Y72,
    PIC_Battery_039_X106_Y72,
    PIC_Battery_040_X106_Y72,
    PIC_Battery_041_X106_Y72,
    PIC_Battery_042_X106_Y72,
    PIC_Battery_043_X106_Y72,
    PIC_Battery_044_X106_Y72,
    PIC_Battery_045_X106_Y72,
    PIC_Battery_046_X106_Y72,
    PIC_Battery_047_X106_Y72,
    PIC_Battery_048_X106_Y72,
    PIC_Battery_049_X106_Y72,
    PIC_Battery_050_X106_Y72,
    PIC_Battery_051_X106_Y72,
    PIC_Battery_052_X106_Y72,
    PIC_Battery_053_X106_Y72,
    PIC_Battery_054_X106_Y72,
    PIC_Battery_055_X106_Y72,
    PIC_Battery_056_X106_Y72,
    PIC_Battery_057_X106_Y72,
    PIC_Battery_058_X106_Y72,
    PIC_Battery_059_X106_Y72,
    PIC_Battery_060_X106_Y72,
    PIC_Battery_061_X106_Y72,
    PIC_Battery_062_X106_Y72,
    PIC_Battery_063_X106_Y72,
    PIC_Battery_064_X106_Y72,
    PIC_Battery_065_X106_Y72,
    PIC_Battery_066_X106_Y72,
    PIC_Battery_067_X106_Y72,
    PIC_Battery_068_X106_Y72,
    PIC_Battery_069_X106_Y72,
    PIC_Battery_070_X106_Y72,
    PIC_Battery_071_X106_Y72,
    PIC_Battery_072_X106_Y72,
    PIC_Battery_073_X106_Y72,
    PIC_Battery_074_X106_Y72,
    PIC_Battery_075_X106_Y72,
    PIC_Battery_076_X106_Y72,
    PIC_Battery_077_X106_Y72,
    PIC_Battery_078_X106_Y72,
    PIC_Battery_079_X106_Y72,
    PIC_Battery_080_X106_Y72,
    PIC_Battery_081_X106_Y72,
    PIC_Battery_082_X106_Y72,
    PIC_Battery_083_X106_Y72,
    PIC_Battery_084_X106_Y72,
    PIC_Battery_085_X106_Y72,
    PIC_Battery_086_X106_Y72,
    PIC_Battery_087_X106_Y72,
    PIC_Battery_088_X106_Y72,
    PIC_Battery_089_X106_Y72,
    PIC_Battery_090_X106_Y72,
    PIC_Battery_091_X106_Y72,
    PIC_Battery_092_X106_Y72,
    PIC_Battery_093_X106_Y72,
    PIC_Battery_094_X106_Y72,
    PIC_Battery_095_X106_Y72,
    PIC_Battery_096_X106_Y72,
    PIC_Battery_097_X106_Y72,
    PIC_Battery_098_X106_Y72,
    PIC_Battery_099_X106_Y72,
    PIC_Battery_100_X106_Y72,
    PIC_KJDH_Down_00_X0_Y103,
    PIC_KJDH_Left_00_X0_Y0,
    PIC_KJDH_Right_00_X0_Y212,
    PIC_KJDH_Up_00_X182_Y103,
    PIC_KJDH_00_X73_Y103,
    PIC_KJDH_01_X73_Y103,
    PIC_KJDH_02_X73_Y103,
    PIC_KJDH_03_X73_Y103,
    PIC_KJDH_04_X73_Y103,
    PIC_KJDH_05_X73_Y103,
    PIC_KJDH_06_X73_Y103,
    PIC_KJDH_07_X73_Y103,
    PIC_KJDH_08_X73_Y103,
    PIC_KJDH_09_X73_Y103,
    PIC_KJDH_10_X73_Y103,
    PIC_KJDH_11_X73_Y103,
    PIC_KJDH_12_X73_Y103,
    PIC_KJDH_13_X73_Y103,
    PIC_KJDH_14_X73_Y103,
    PIC_KJDH_15_X73_Y103,
    PIC_KJDH_16_X73_Y103,
    PIC_KJDH_17_X73_Y103,
    PIC_KJDH_18_X73_Y103,
    PIC_KJDH_19_X73_Y103,
    PIC_KJDH_20_X73_Y103,
    PIC_KJDH_21_X73_Y103,
    PIC_KJDH_22_X73_Y103,
    PIC_KJDH_23_X73_Y103,
    PIC_KJDH_24_X73_Y103,
    PIC_KJDH_25_X73_Y103,
    PIC_KJDH_26_X73_Y103,
    PIC_KJDH_27_X73_Y103,
    PIC_KJDH_28_X73_Y103,
    PIC_KJDH_29_X73_Y103,
    PIC_KJDH_30_X73_Y103,
    PIC_KJDH_31_X73_Y103,
    PIC_KJDH_32_X73_Y103,
    PIC_KJDH_33_X73_Y103,
    PIC_KJDH_34_X73_Y103,
    PIC_KJDH_35_X73_Y103,
    PIC_KJDH_36_X73_Y103,
    PIC_KJDH_37_X73_Y103,
    PIC_KJDH_38_X73_Y103,
    PIC_KJDH_39_X73_Y103,
    PIC_KJDH_40_X73_Y103,
    PIC_KJDH_41_X73_Y103,
    PIC_KJDH_42_X73_Y103,
    PIC_KJDH_43_X73_Y103,
    PIC_KJDH_44_X73_Y103,
    PIC_KJDH_45_X73_Y103,
    PIC_KJDH_46_X73_Y103,
    PIC_KJDH_47_X73_Y103,
    PIC_KJDH_48_X73_Y103,
    PIC_KJDH_49_X73_Y103,
    PIC_KJDH_50_X73_Y103,
    PIC_KJDH_51_X73_Y103,
    PIC_KJDH_52_X73_Y103,
    PIC_KJDH_53_X73_Y103,
    PIC_KJDH_54_X73_Y103,
    PIC_KJDH_55_X73_Y103,
    PIC_KJDH_56_X73_Y103,
    PIC_KJDH_57_X73_Y103,
    PIC_KJDH_58_X73_Y103,
    PIC_KJDH_59_X73_Y103,
    PIC_Alarm_01_Image_X113_Y112,
    PIC_Alarm_01_Text_X85_Y59,
    PIC_Alarm_02_Text_X85_Y59,
    PIC_Alarm_03_Text_X85_Y59,
    PIC_Alarm_04_Text_X85_Y59,
    PIC_Alarm_05_Text_X85_Y59,
    PIC_Alarm_06_Text_X85_Y59,
    PIC_Alarm_07_Text_X85_Y59,
    PIC_Alarm_08_Text_X85_Y59,
    PIC_Alarm_09_Text_X85_Y59,
    PIC_Alarm_100_Text_X85_Y59,
    PIC_Alarm_101_Text_X85_Y59,
    PIC_Alarm_102_Text_X85_Y59,
    PIC_Alarm_103_Text_X85_Y59,
    PIC_Alarm_104_Text_X85_Y59,
    PIC_Alarm_105_Text_X85_Y59,
    PIC_Alarm_106_Text_X85_Y59,
    PIC_Alarm_107_Text_X85_Y59,
    PIC_Alarm_108_Text_X85_Y59,
    PIC_Alarm_109_Text_X85_Y59,
    PIC_Alarm_10_Text_X85_Y59,
    PIC_Alarm_110_Text_X75_Y63,
    PIC_Alarm_111_Image_X113_Y112,
    PIC_Alarm_111_Text_X75_Y63,
    PIC_Alarm_112_Text_X75_Y63,
    PIC_Alarm_113_Text_X75_Y63,
    PIC_Alarm_114_Text_X75_Y63,
    PIC_Alarm_115_Image_X113_Y112,
    PIC_Alarm_115_Text_X75_Y63,
    PIC_Alarm_116_Image_X113_Y112,
    PIC_Alarm_116_Text_X75_Y63,
    PIC_Alarm_117_Text_X75_Y63,
    PIC_Alarm_118_Image_X113_Y112,
    PIC_Alarm_118_Text_X75_Y63,
    PIC_Alarm_119_Text_X75_Y63,
    PIC_Alarm_11_Image_X113_Y112,
    PIC_Alarm_11_Text_X85_Y59,
    PIC_Alarm_120_Text_X75_Y63,
    PIC_Alarm_121_Text_X75_Y63,
    PIC_Alarm_122_Text_X75_Y63,
    PIC_Alarm_123_Image_X113_Y112,
    PIC_Alarm_123_Text_X75_Y63,
    PIC_Alarm_124_Text_X75_Y63,
    PIC_Alarm_125_Image_X113_Y112,
    PIC_Alarm_125_Text_X75_Y63,
    PIC_Alarm_126_Text_X75_Y63,
    PIC_Alarm_127_Image_X113_Y112,
    PIC_Alarm_127_Text_X75_Y63,
    PIC_Alarm_128_Text_X75_Y63,
    PIC_Alarm_129_Text_X75_Y63,
    PIC_Alarm_12_Image_X113_Y112,
    PIC_Alarm_12_Text_X85_Y59,
    PIC_Alarm_130_Text_X75_Y63,
    PIC_Alarm_131_Text_X75_Y63,
    PIC_Alarm_132_Text_X75_Y63,
    PIC_Alarm_133_Text_X75_Y63,
    PIC_Alarm_134_Text_X75_Y63,
    PIC_Alarm_135_Text_X75_Y63,
    PIC_Alarm_136_Text_X75_Y63,
    PIC_Alarm_137_Text_X75_Y63,
    PIC_Alarm_138_Text_X75_Y63,
    PIC_Alarm_139_Text_X75_Y63,
    PIC_Alarm_13_Image_X113_Y112,
    PIC_Alarm_13_Text_X85_Y59,
    PIC_Alarm_140_Text_X75_Y63,
    PIC_Alarm_141_Text_X75_Y63,
    PIC_Alarm_142_Text_X75_Y63,
    PIC_Alarm_143_Text_X75_Y63,
    PIC_Alarm_144_Text_X75_Y63,
    PIC_Alarm_145_Text_X75_Y63,
    PIC_Alarm_146_Text_X75_Y63,
    PIC_Alarm_147_Text_X75_Y63,
    PIC_Alarm_148_Text_X75_Y63,
    PIC_Alarm_149_Text_X75_Y63,
    PIC_Alarm_14_Image_X113_Y112,
    PIC_Alarm_14_Text_X85_Y59,
    PIC_Alarm_150_Text_X75_Y63,
    PIC_Alarm_151_Text_X75_Y63,
    PIC_Alarm_152_Text_X75_Y63,
    PIC_Alarm_153_Text_X75_Y63,
    PIC_Alarm_154_Text_X75_Y63,
    PIC_Alarm_155_Text_X75_Y63,
    PIC_Alarm_156_Text_X75_Y63,
    PIC_Alarm_157_Text_X75_Y63,
    PIC_Alarm_158_Text_X75_Y63,
    PIC_Alarm_159_Text_X75_Y63,
    PIC_Alarm_15_Image_X113_Y112,
    PIC_Alarm_15_Text_X85_Y59,
    PIC_Alarm_160_Text_X75_Y63,
    PIC_Alarm_161_Text_X75_Y63,
    PIC_Alarm_162_Text_X75_Y63,
    PIC_Alarm_16_Image_X113_Y112,
    PIC_Alarm_16_Text_X85_Y59,
    PIC_Alarm_17_Image_X113_Y112,
    PIC_Alarm_17_Text_X85_Y59,
    PIC_Alarm_186_Image_X70_Y60,
    PIC_Alarm_187_Image_X71_Y65,
    PIC_Alarm_187_Text_X144_Y130,
    PIC_Alarm_188_Image_X71_Y65,
    PIC_Alarm_188_Text_X144_Y130,
    PIC_Alarm_189_Image_X71_Y65,
    PIC_Alarm_189_Text_X144_Y130,
    PIC_Alarm_18_Text_X85_Y59,
    PIC_Alarm_190_Image_X71_Y65,
    PIC_Alarm_190_Text_X144_Y130,
    PIC_Alarm_191_Image_X71_Y65,
    PIC_Alarm_191_Text_X144_Y130,
    PIC_Alarm_192_Image_X71_Y65,
    PIC_Alarm_192_Text_X144_Y130,
    PIC_Alarm_193_Image_X71_Y65,
    PIC_Alarm_193_Text_X144_Y130,
    PIC_Alarm_194_Image_X71_Y65,
    PIC_Alarm_194_Text_X144_Y130,
    PIC_Alarm_195_Image_X71_Y65,
    PIC_Alarm_195_Text_X144_Y130,
    PIC_Alarm_196_Image_X71_Y65,
    PIC_Alarm_196_Text_X144_Y130,
    PIC_Alarm_197_Image_X71_Y65,
    PIC_Alarm_197_Text_X144_Y130,
    PIC_Alarm_198_Image_X71_Y65,
    PIC_Alarm_198_Text_X144_Y130,
    PIC_Alarm_199_Image_X71_Y65,
    PIC_Alarm_199_Text_X144_Y130,
    PIC_Alarm_19_Image_X113_Y112,
    PIC_Alarm_19_Text_X85_Y59,
    PIC_Alarm_200_Image_X71_Y65,
    PIC_Alarm_200_Text_X144_Y130,
    PIC_Alarm_201_Image_X71_Y65,
    PIC_Alarm_201_Text_X144_Y130,
    PIC_Alarm_202_Image_X71_Y65,
    PIC_Alarm_202_Text_X144_Y130,
    PIC_Alarm_203_Image_X71_Y65,
    PIC_Alarm_203_Text_X144_Y130,
    PIC_Alarm_204_Image_X71_Y65,
    PIC_Alarm_204_Text_X144_Y130,
    PIC_Alarm_205_Image_X71_Y65,
    PIC_Alarm_205_Text_X144_Y130,
    PIC_Alarm_206_Image_X71_Y65,
    PIC_Alarm_206_Text_X144_Y130,
    PIC_Alarm_207_Image_X71_Y65,
    PIC_Alarm_207_Text_X144_Y130,
    PIC_Alarm_208_Image_X71_Y65,
    PIC_Alarm_208_Text_X144_Y130,
    PIC_Alarm_209_Image_X71_Y65,
    PIC_Alarm_209_Text_X144_Y130,
    PIC_Alarm_20_Text_X85_Y59,
    PIC_Alarm_210_Image_X78_Y128,
    PIC_Alarm_211_Image_X113_Y112,
    PIC_Alarm_211_Text_X75_Y63,
    PIC_Alarm_212_Image_X71_Y65,
    PIC_Alarm_212_Text_X144_Y130,
    PIC_Alarm_213_Image_X71_Y65,
    PIC_Alarm_213_Text_X144_Y130,
    PIC_Alarm_214_Image_X71_Y65,
    PIC_Alarm_214_Text_X144_Y130,
    PIC_Alarm_215_Image_X71_Y65,
    PIC_Alarm_215_Text_X144_Y130,
    PIC_Alarm_216_Image_X113_Y112,
    PIC_Alarm_216_Text_X85_Y59,
    PIC_Alarm_217_Image_X113_Y112,
    PIC_Alarm_217_Text_X85_Y59,
    PIC_Alarm_218_Text_X111_Y59,
    PIC_Alarm_21_Text_X85_Y59,
    PIC_Alarm_22_Text_X85_Y59,
    PIC_Alarm_23_Image_X113_Y112,
    PIC_Alarm_23_Text_X85_Y59,
    PIC_Alarm_24_Text_X85_Y59,
    PIC_Alarm_25_Text_X85_Y59,
    PIC_Alarm_26_Text_X85_Y59,
    PIC_Alarm_27_Text_X85_Y59,
    PIC_Alarm_28_Text_X85_Y59,
    PIC_Alarm_29_Text_X85_Y59,
    PIC_Alarm_30_Text_X85_Y59,
    PIC_Alarm_31_Text_X85_Y59,
    PIC_Alarm_32_Text_X85_Y59,
    PIC_Alarm_33_Text_X85_Y59,
    PIC_Alarm_34_Text_X85_Y59,
    PIC_Alarm_35_Text_X85_Y59,
    PIC_Alarm_36_Text_X85_Y59,
    PIC_Alarm_37_Text_X85_Y59,
    PIC_Alarm_38_Text_X85_Y59,
    PIC_Alarm_39_Text_X85_Y59,
    PIC_Alarm_40_Text_X85_Y59,
    PIC_Alarm_41_Text_X85_Y59,
    PIC_Alarm_42_Text_X85_Y59,
    PIC_Alarm_43_Text_X85_Y59,
    PIC_Alarm_44_Text_X85_Y59,
    PIC_Alarm_45_Text_X85_Y59,
    PIC_Alarm_46_Text_X85_Y59,
    PIC_Alarm_47_Image_X113_Y112,
    PIC_Alarm_47_Text_X85_Y59,
    PIC_Alarm_48_Image_X113_Y112,
    PIC_Alarm_48_Text_X85_Y59,
    PIC_Alarm_49_Image_X113_Y112,
    PIC_Alarm_49_Text_X85_Y59,
    PIC_Alarm_50_Image_X113_Y112,
    PIC_Alarm_50_Text_X85_Y59,
    PIC_Alarm_51_Image_X113_Y112,
    PIC_Alarm_51_Text_X85_Y59,
    PIC_Alarm_52_Image_X113_Y112,
    PIC_Alarm_52_Text_X85_Y59,
    PIC_Alarm_53_Image_X113_Y112,
    PIC_Alarm_53_Text_X85_Y59,
    PIC_Alarm_54_Image_X113_Y112,
    PIC_Alarm_54_Text_X85_Y59,
    PIC_Alarm_55_Image_X113_Y112,
    PIC_Alarm_55_Text_X85_Y59,
    PIC_Alarm_56_Image_X113_Y112,
    PIC_Alarm_56_Text_X85_Y59,
    PIC_Alarm_57_Image_X113_Y112,
    PIC_Alarm_57_Text_X85_Y59,
    PIC_Alarm_58_Image_X113_Y112,
    PIC_Alarm_58_Text_X85_Y59,
    PIC_Alarm_59_Text_X85_Y59,
    PIC_Alarm_60_Text_X85_Y59,
    PIC_Alarm_61_Text_X85_Y59,
    PIC_Alarm_62_Text_X85_Y59,
    PIC_Alarm_63_Text_X85_Y59,
    PIC_Alarm_64_Text_X85_Y59,
    PIC_Alarm_65_Text_X85_Y59,
    PIC_Alarm_66_Text_X85_Y59,
    PIC_Alarm_67_Text_X85_Y59,
    PIC_Alarm_68_Text_X85_Y59,
    PIC_Alarm_69_Image_X113_Y112,
    PIC_Alarm_69_Text_X85_Y59,
    PIC_Alarm_70_Text_X85_Y59,
    PIC_Alarm_71_Text_X85_Y59,
    PIC_Alarm_72_Text_X85_Y59,
    PIC_Alarm_73_Image_X113_Y112,
    PIC_Alarm_73_Text_X85_Y59,
    PIC_Alarm_74_Text_X85_Y59,
    PIC_Alarm_75_Text_X85_Y59,
    PIC_Alarm_76_Text_X85_Y59,
    PIC_Alarm_77_Text_X85_Y59,
    PIC_Alarm_78_Text_X85_Y59,
    PIC_Alarm_79_Text_X85_Y59,
    PIC_Alarm_80_Text_X85_Y59,
    PIC_Alarm_81_Text_X85_Y59,
    PIC_Alarm_82_Text_X85_Y59,
    PIC_Alarm_83_Text_X85_Y59,
    PIC_Alarm_84_Text_X85_Y59,
    PIC_Alarm_85_Image_X113_Y112,
    PIC_Alarm_85_Text_X85_Y59,
    PIC_Alarm_86_Text_X85_Y59,
    PIC_Alarm_87_Text_X85_Y59,
    PIC_Alarm_88_Image_X113_Y112,
    PIC_Alarm_88_Text_X85_Y59,
    PIC_Alarm_89_Text_X85_Y59,
    PIC_Alarm_90_Text_X85_Y59,
    PIC_Alarm_91_Image_X113_Y112,
    PIC_Alarm_91_Text_X85_Y59,
    PIC_Alarm_92_Image_X113_Y112,
    PIC_Alarm_92_Text_X85_Y59,
    PIC_Alarm_93_Text_X85_Y59,
    PIC_Alarm_94_Text_X85_Y59,
    PIC_Alarm_95_Text_X85_Y59,
    PIC_Alarm_96_Text_X85_Y59,
    PIC_Alarm_97_Text_X85_Y59,
    PIC_Alarm_98_Text_X85_Y59,
    PIC_Alarm_99_Text_X85_Y59,
    PIC_DoorOpen_Car_X115_Y139,
    PIC_DoorOpen_LB_01_X139_Y123,
    PIC_DoorOpen_LB_02_X139_Y123,
    PIC_DoorOpen_LF_01_X160_Y123,
    PIC_DoorOpen_LF_02_X160_Y123,
    PIC_DoorOpen_RB_01_X139_Y173,
    PIC_DoorOpen_RB_02_X139_Y173,
    PIC_DoorOpen_RF_01_X160_Y173,
    PIC_DoorOpen_RF_02_X160_Y173,
    PIC_DoorOpen_Text_01_X85_Y55,
    PIC_DoorOpen_Text_02_X85_Y55,
    PIC_DoorOpen_Trunk_01_X113_Y144,
    PIC_DoorOpen_Trunk_02_X113_Y144,
    PIC_DoorOpen_window_01_X124_Y146,
    PIC_DoorOpen_window_02_X124_Y146,
    PIC_Ldtj_Image_01_X96_Y75,
    PIC_Ldtj_Image_02_X96_Y225,
    PIC_Ldtj_Image_04_X122_Y80,
    PIC_Ldtj_Image_05_X122_Y80,
    PIC_Ldtj_Image_06_X122_Y80,
    PIC_Ldtj_Image_07_X122_Y80,
    PIC_Ldtj_Image_08_X122_Y80,
    PIC_Ldtj_Image_09_X122_Y80,
    PIC_Ldtj_Image_10_X122_Y80,
    PIC_Ldtj_Image_11_X122_Y80,
    PIC_Ldtj_Image_12_X122_Y80,
    PIC_Ldtj_Image_13_X122_Y80,
    PIC_Ldtj_Image_14_X122_Y80,
    PIC_Ldtj_Image_15_X122_Y80,
    PIC_Ldtj_Image_16_X122_Y80,
    PIC_Ldtj_Image_17_X122_Y80,
    PIC_Ldtj_Image_18_X122_Y80,
    PIC_Ldtj_Image_20_X122_Y80,
    PIC_Ldtj_words_19_X160_Y105,
    PIC_Byql_Image_01_X113_Y112,
    PIC_Byql_words_01_X85_Y85,
    PIC_Byql_words_02_X86_Y177,
    PIC_Byql_words_03_X75_Y63,
    PIC_Pjdh_words_01_X160_Y105,
    PIC_Ssdh_kwh_X0_Y0,
    PIC_Ssdh_words_01_X160_Y105,
    PIC_Xhlc_Image_01_X53_Y106,
    PIC_Xhlc_km_X53_Y186,
    PIC_Xhlc_words_01_X160_Y105,
    PIC_Xcxx_kmh_X92_Y50,
    PIC_Xcxx_km_X92_Y240,
    PIC_Xcxx_kwh100km_X92_Y115,
    PIC_Xcxx_words_01_X160_Y105,
    PIC_Xcxx_words_02_X160_Y105,
    PIC_Xssj_h_X102_Y95,
    PIC_Xssj_min_X102_Y179,
    PIC_Xssj_sec_X102_Y264,
    PIC_Xssj_words_01_X160_Y105,
    MSG_POP_PIC_MAX,
}MSG_POP_PIC_Enum;

const MSGPopPICAttrStruc_st_t  MSGPICAttrTable[MSG_POP_PIC_MAX] =
{
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_0),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_1),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_2),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_3),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_4),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_5),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_6),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_7),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_8),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_9),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_Line),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_10_white_point),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_0),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_1),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_2),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_3),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_4),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_5),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_6),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_7),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_8),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_9),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_Line),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_11_white_Piont),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_0),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_1),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_2),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_3),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_4),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_5),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_6),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_7),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_8),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_9),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_Line),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_12_white_point),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_0),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_1),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_2),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_3),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_4),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_5),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_6),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_7),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_8),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_9),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_Line),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_15_white_piont),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_0),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_1),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_2),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_3),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_4),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_5),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_6),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_7),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_8),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_9),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_Line),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_18_white_point),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_0),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_1),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_2),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_3),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_4),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_5),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_6),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_7),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_8),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_9),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + Number_20_white_Line),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + SOC_01_words_X216_Y50),216,50,
    //(uint8_t*)(PIC_OFFSET_ADDR + SOC_grey_Left_02),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + SOC_grey_Right_04),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + SOC_white_Left_01),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + SOC_white_Right_03),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + LC_01_km),65535,65535,
    //(uint8_t*)(PIC_OFFSET_ADDR + CX_ECO_02_X52_Y270),52,270,
    //(uint8_t*)(PIC_OFFSET_ADDR + CX_Normal_01_X52_Y252),52,252,
    //(uint8_t*)(PIC_OFFSET_ADDR + CX_words_03_X52_Y10),52,10,
    //(uint8_t*)(PIC_OFFSET_ADDR + CX_words_04_X52_Y10),52,10,
    //(uint8_t*)(PIC_OFFSET_ADDR + Gear_A1_X12_Y144),12,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + Gear_D_X12_Y144),12,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + Gear_Line_X12_Y143),12,143,
    //(uint8_t*)(PIC_OFFSET_ADDR + Gear_M1_X12_Y144),12,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + Gear_N_X12_Y144),12,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + Gear_P_X12_Y144),12,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + Gear_R_X12_Y144),12,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + Line_01_X202_Y5),202,5,
    //(uint8_t*)(PIC_OFFSET_ADDR + Line_02_X47_Y5),47,5,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_01_words_X77_Y103),77,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_02_words_X77_Y103),77,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_03_words_X77_Y103),77,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_000_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_001_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_002_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_003_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_004_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_005_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_006_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_007_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_008_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_009_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_010_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_011_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_012_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_013_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_014_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_015_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_016_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_017_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_018_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_019_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_020_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_021_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_022_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_023_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_024_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_025_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_026_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_027_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_028_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_029_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_030_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_031_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_032_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_033_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_034_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_035_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_036_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_037_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_038_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_039_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_040_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_041_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_042_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_043_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_044_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_045_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_046_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_047_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_048_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_049_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_050_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_051_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_052_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_053_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_054_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_055_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_056_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_057_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_058_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_059_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_060_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_061_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_062_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_063_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_064_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_065_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_066_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_067_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_068_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_069_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_070_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_071_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_072_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_073_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_074_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_075_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_076_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_077_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_078_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_079_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_080_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_081_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_082_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_083_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_084_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_085_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_086_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_087_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_088_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_089_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_090_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_091_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_092_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_093_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_094_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_095_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_096_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_097_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_098_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_099_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + Battery_100_X106_Y72),106,72,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_Down_00_X0_Y103),0,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_Left_00_X0_Y0),0,0,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_Right_00_X0_Y212),0,212,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_Up_00_X182_Y103),182,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_00_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_01_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_02_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_03_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_04_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_05_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_06_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_07_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_08_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_09_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_10_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_11_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_12_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_13_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_14_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_15_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_16_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_17_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_18_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_19_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_20_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_21_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_22_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_23_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_24_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_25_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_26_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_27_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_28_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_29_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_30_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_31_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_32_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_33_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_34_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_35_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_36_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_37_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_38_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_39_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_40_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_41_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_42_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_43_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_44_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_45_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_46_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_47_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_48_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_49_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_50_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_51_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_52_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_53_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_54_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_55_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_56_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_57_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_58_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + KJDH_59_X73_Y103),73,103,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_01_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_01_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_02_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_03_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_04_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_05_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_06_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_07_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_08_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_09_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_100_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_101_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_102_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_103_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_104_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_105_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_106_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_107_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_108_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_109_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_10_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_110_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_111_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_111_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_112_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_113_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_114_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_115_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_115_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_116_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_116_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_117_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_118_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_118_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_119_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_11_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_11_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_120_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_121_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_122_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_123_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_123_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_124_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_125_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_125_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_126_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_127_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_127_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_128_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_129_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_12_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_12_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_130_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_131_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_132_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_133_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_134_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_135_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_136_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_137_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_138_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_139_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_13_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_13_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_140_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_141_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_142_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_143_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_144_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_145_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_146_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_147_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_148_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_149_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_14_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_14_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_150_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_151_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_152_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_153_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_154_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_155_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_156_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_157_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_158_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_159_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_15_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_15_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_160_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_161_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_162_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_16_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_16_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_17_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_17_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_186_Image_X70_Y60),70,60,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_187_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_187_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_188_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_188_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_189_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_189_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_18_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_190_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_190_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_191_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_191_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_192_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_192_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_193_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_193_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_194_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_194_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_195_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_195_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_196_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_196_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_197_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_197_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_198_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_198_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_199_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_199_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_19_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_19_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_200_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_200_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_201_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_201_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_202_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_202_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_203_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_203_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_204_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_204_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_205_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_205_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_206_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_206_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_207_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_207_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_208_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_208_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_209_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_209_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_20_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_210_Image_X78_Y128),78,128,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_211_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_211_Text_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_212_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_212_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_213_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_213_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_214_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_214_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_215_Image_X71_Y65),71,65,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_215_Text_X144_Y130),144,130,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_216_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_216_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_217_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_217_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_218_Text_X111_Y59),111,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_21_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_22_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_23_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_23_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_24_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_25_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_26_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_27_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_28_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_29_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_30_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_31_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_32_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_33_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_34_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_35_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_36_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_37_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_38_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_39_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_40_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_41_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_42_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_43_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_44_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_45_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_46_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_47_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_47_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_48_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_48_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_49_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_49_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_50_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_50_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_51_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_51_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_52_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_52_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_53_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_53_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_54_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_54_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_55_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_55_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_56_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_56_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_57_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_57_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_58_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_58_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_59_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_60_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_61_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_62_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_63_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_64_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_65_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_66_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_67_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_68_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_69_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_69_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_70_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_71_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_72_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_73_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_73_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_74_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_75_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_76_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_77_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_78_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_79_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_80_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_81_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_82_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_83_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_84_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_85_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_85_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_86_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_87_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_88_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_88_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_89_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_90_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_91_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_91_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_92_Image_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_92_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_93_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_94_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_95_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_96_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_97_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_98_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + Alarm_99_Text_X85_Y59),85,59,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_Car_X115_Y139),115,139,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_LB_01_X139_Y123),139,123,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_LB_02_X139_Y123),139,123,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_LF_01_X160_Y123),160,123,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_LF_02_X160_Y123),160,123,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_RB_01_X139_Y173),139,173,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_RB_02_X139_Y173),139,173,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_RF_01_X160_Y173),160,173,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_RF_02_X160_Y173),160,173,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_Text_01_X85_Y55),85,55,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_Text_02_X85_Y55),85,55,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_Trunk_01_X113_Y144),113,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_Trunk_02_X113_Y144),113,144,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_window_01_X124_Y146),124,146,
    //(uint8_t*)(PIC_OFFSET_ADDR + DoorOpen_window_02_X124_Y146),124,146,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_01_X96_Y75),96,75,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_02_X96_Y225),96,225,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_04_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_05_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_06_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_07_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_08_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_09_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_10_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_11_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_12_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_13_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_14_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_15_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_16_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_17_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_18_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_Image_20_X122_Y80),122,80,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ldtj_words_19_X160_Y105),160,105,
    //(uint8_t*)(PIC_OFFSET_ADDR + Byql_Image_01_X113_Y112),113,112,
    //(uint8_t*)(PIC_OFFSET_ADDR + Byql_words_01_X85_Y85),85,85,
    //(uint8_t*)(PIC_OFFSET_ADDR + Byql_words_02_X86_Y177),86,177,
    //(uint8_t*)(PIC_OFFSET_ADDR + Byql_words_03_X75_Y63),75,63,
    //(uint8_t*)(PIC_OFFSET_ADDR + Pjdh_words_01_X160_Y105),160,105,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ssdh_kwh_X0_Y0),0,0,
    //(uint8_t*)(PIC_OFFSET_ADDR + Ssdh_words_01_X160_Y105),160,105,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xhlc_Image_01_X53_Y106),53,106,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xhlc_km_X53_Y186),53,186,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xhlc_words_01_X160_Y105),160,105,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xcxx_kmh_X92_Y50),92,50,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xcxx_km_X92_Y240),92,240,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xcxx_kwh100km_X92_Y115),92,115,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xcxx_words_01_X160_Y105),160,105,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xcxx_words_02_X160_Y105),160,105,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xssj_h_X102_Y95),102,95,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xssj_min_X102_Y179),102,179,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xssj_sec_X102_Y264),102,264,
    //(uint8_t*)(PIC_OFFSET_ADDR + Xssj_words_01_X160_Y105),160,105,
};

#endif