├── C64 MAZE.d64 ├── DejaVuSerif.ttf ├── screenshots ├── exit.png ├── maze.png ├── view.png ├── exit_s.png ├── step_in.png ├── mazeview.png ├── linestyles.png └── unix_first.jpg ├── compile.sh ├── .gitmodules ├── .gitignore ├── c64maze.vcxproj.user ├── Makefile ├── ports ├── z88dk.h ├── UNIX.h ├── C64.h ├── z88dk.c ├── UNIX.c └── C64.c ├── c64maze.h ├── c64maze.sln ├── c64maze.vcxproj.filters ├── README.md ├── c64maze.vcxproj ├── c64maze.c ├── vic_font.h ├── LICENSE └── sid_tune.h /C64 MAZE.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/C64 MAZE.d64 -------------------------------------------------------------------------------- /DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/DejaVuSerif.ttf -------------------------------------------------------------------------------- /screenshots/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/exit.png -------------------------------------------------------------------------------- /screenshots/maze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/maze.png -------------------------------------------------------------------------------- /screenshots/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/view.png -------------------------------------------------------------------------------- /screenshots/exit_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/exit_s.png -------------------------------------------------------------------------------- /screenshots/step_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/step_in.png -------------------------------------------------------------------------------- /screenshots/mazeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/mazeview.png -------------------------------------------------------------------------------- /screenshots/linestyles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/linestyles.png -------------------------------------------------------------------------------- /screenshots/unix_first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarwinNE/C64maze/HEAD/screenshots/unix_first.jpg -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cc65 -Oi -T -t c64 c64maze.c 3 | ca65 c64maze.s 4 | ld65 -o c64maze -t c64 c64maze.o c64.lib 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "ports/SDL_FontCache"] 2 | path = ports/SDL_FontCache 3 | url = https://github.com/Igor1101/SDL_FontCache.git 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | c64maze.s 2 | C64.s 3 | c64maze 4 | c64maze.o 5 | *.o 6 | .cproject 7 | .project 8 | .settings 9 | Debug 10 | .vs 11 | Release -------------------------------------------------------------------------------- /c64maze.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | PLATFORM?=C64 2 | TARGET=c64maze 3 | all: $(TARGET) 4 | 5 | CFLAGS += -I ./ -g -DP_C64=1 -DP_UNIX=2 6 | ifeq ($(PLATFORM),C64) 7 | #commodore 64 platform 8 | CC=cc65 9 | AS=ca65 10 | LD=ld65 11 | CFLAGS += -Os -DPLATFORM_MAZE=C64 -DP_CURRENT=P_C64 12 | endif 13 | ifeq ($(PLATFORM),UNIX) 14 | #unix platform 15 | CC=gcc 16 | AS=as 17 | LD=ld 18 | CFLAGS += -DPLATFORM_MAZE=UNIX -DP_CURRENT=P_UNIX 19 | endif 20 | 21 | 22 | $(TARGET): $(TARGET).c ports/$(PLATFORM).c 23 | ifeq ($(PLATFORM),C64) 24 | $(CC) $(CFLAGS) -Oi -T -t c64 $(TARGET).c 25 | $(AS) $(TARGET).s 26 | $(CC) $(CFLAGS) -Oi -T -t c64 ports/$(PLATFORM).c 27 | $(AS) ports/$(PLATFORM).s 28 | $(LD) -o $(TARGET) -t c64 $(TARGET).o ports/$(PLATFORM).o c64.lib 29 | endif 30 | ifeq ($(PLATFORM),UNIX) 31 | $(CC) $(CFLAGS) -o SDL_FontCache.o -c ports/SDL_FontCache/SDL_FontCache.c 32 | $(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c ports/$(PLATFORM).c SDL_FontCache.o -lSDL2 -lSDL2_ttf 33 | endif 34 | 35 | clean: 36 | -rm `find ./ -name *.o` 37 | -rm $(TARGET) 38 | -rm $(TARGET).s 39 | -rm ports/$(PLATFORM).s 40 | -------------------------------------------------------------------------------- /ports/z88dk.h: -------------------------------------------------------------------------------- 1 | #ifndef _Z88DK_H 2 | #define _Z88DK_H 3 | 4 | /* port variables */ 5 | /* port functions */ 6 | void port_pset(unsigned int x, unsigned int y); 7 | void port_clearMazeRegion(void); 8 | void port_fflushMazeRegion(void); 9 | int port_graphics_init(void); 10 | void port_vert_line(unsigned short x1, unsigned short y1, unsigned short y2); 11 | void port_diag_line(unsigned short x1, unsigned short y1, unsigned short ix, 12 | short incx, short incy); 13 | void port_hor_line(unsigned short x1, unsigned short x2, unsigned short y1); 14 | void port_printat(unsigned short x, unsigned short y, char *s); 15 | void port_line(unsigned short x1, unsigned short y1, 16 | unsigned short x2, unsigned short y2); 17 | unsigned long port_get_time(void); 18 | void port_colour_banner(void); 19 | long port_get_current_time(void); 20 | void port_clearHGRpage(void); 21 | unsigned char port_sound_irq(void); 22 | void port_start_sound(unsigned char *l1, unsigned char *l2, unsigned char *l3); 23 | void port_loadVICFont(unsigned char magnification); 24 | char port_getch(void); 25 | void port_music_on(void); 26 | void port_music_off(void); 27 | void port_font_magnification(unsigned char magnification); 28 | void port_exit(void); 29 | 30 | #endif /* _Z88DK_H*/ 31 | -------------------------------------------------------------------------------- /ports/UNIX.h: -------------------------------------------------------------------------------- 1 | #ifndef _UNIX_H 2 | #define _UNIX_H 3 | /* 4 | * here moved original c64 support 5 | */ 6 | 7 | /* port variables */ 8 | /* port functions */ 9 | void port_pset(unsigned int x, unsigned int y); 10 | void port_clearMazeRegion(void); 11 | void port_fflushMazeRegion(void); 12 | int port_graphics_init(void); 13 | void port_vert_line(unsigned short x1, unsigned short y1, unsigned short y2); 14 | void port_diag_line(unsigned short x1, unsigned short y1, unsigned short ix, 15 | short incx, short incy); 16 | void port_hor_line(unsigned short x1, unsigned short x2, unsigned short y1); 17 | void port_printat(unsigned short x, unsigned short y, char *s); 18 | void port_line(unsigned short x1, unsigned short y1, 19 | unsigned short x2, unsigned short y2); 20 | unsigned long port_get_time(void); 21 | void port_colour_banner(void); 22 | long port_get_current_time(void); 23 | void port_clearHGRpage(void); 24 | unsigned char port_sound_irq(void); 25 | void port_start_sound(unsigned char *l1, unsigned char *l2, unsigned char *l3); 26 | void port_loadVICFont(unsigned char magnification); 27 | char port_getch(void); 28 | void port_music_on(void); 29 | void port_music_off(void); 30 | void port_font_magnification(unsigned char magnification); 31 | void port_exit(void); 32 | 33 | #endif /* UNIX*/ 34 | -------------------------------------------------------------------------------- /ports/C64.h: -------------------------------------------------------------------------------- 1 | #ifndef _C64_H 2 | #define _C64_H 3 | /* 4 | * here moved original c64 support 5 | */ 6 | #include<6502.h> 7 | #include 8 | 9 | /* port variables */ 10 | /* port functions */ 11 | void port_pset(unsigned int x, unsigned int y); 12 | void port_clearMazeRegion(void); 13 | void port_graphics_init(void); 14 | void port_vert_line(unsigned short x1, unsigned short y1, unsigned short y2); 15 | void port_diag_line(unsigned short x1, unsigned short y1, unsigned short ix, 16 | short incx, short incy); 17 | void port_hor_line(unsigned short x1, unsigned short x2, unsigned short y1); 18 | void port_printat(unsigned short x, unsigned short y, char *s); 19 | void port_line(unsigned short x1, unsigned short y1, 20 | unsigned short x2, unsigned short y2); 21 | unsigned long port_get_time(void); 22 | void port_colour_banner(void); 23 | long port_get_current_time(void); 24 | void port_clearHGRpage(void); 25 | void port_fflushMazeRegion(void); 26 | unsigned char port_sound_irq(void); 27 | void port_start_sound(unsigned char *l1, unsigned char *l2, unsigned char *l3); 28 | void port_loadVICFont(unsigned char magnification); 29 | void port_font_magnification(unsigned char magnification); 30 | char port_getch(void); 31 | void port_music_on(void); 32 | void port_music_off(void); 33 | void port_exit(void); 34 | 35 | #endif /* C64 */ 36 | -------------------------------------------------------------------------------- /c64maze.h: -------------------------------------------------------------------------------- 1 | #ifndef _C64MAZE_H 2 | #define _C64MAZE_H 3 | 4 | #ifdef WIN32 5 | #define PLATFORM_MAZE UNIX 6 | #define P_C64 1 7 | #define P_CURRENT P_UNIX 8 | #endif 9 | 10 | 11 | #define a_abs(a) ((a)>0 ? (a):(-a)) 12 | #define a_max(a,b) (((a)>(b))?(a):(b)) 13 | #define a_sign(a) ((a)>0?1:((a)==0?0:(-1))) 14 | #define TRUE 0xFF 15 | #define FALSE 0x00 16 | 17 | #if (P_CURRENT == P_C64) 18 | #define SIZEX (200) 19 | #define SIZEY (199) 20 | #define STEPSIZEX (15) 21 | #define STEPSIZEY (15) 22 | #elif (P_CURRENT == P_UNIX) 23 | #define SIZEX (200 * 5) 24 | #define SIZEY (199 * 5) 25 | #define STEPSIZEX (15 * 5) 26 | #define STEPSIZEY (15 * 5) 27 | #elif P_CURRENT == P_STM_128x64 28 | #define SIZEX 128 29 | #define SIZEY 64 30 | #define STEPSIZEX 5 31 | #define STEPSIZEY 5 32 | #endif 33 | 34 | 35 | #define labyrinthSizeX 40 36 | #define labyrinthSizeY 17 37 | extern unsigned char style; 38 | 39 | /* dynamic display bounds */ 40 | typedef struct { 41 | unsigned short szx; 42 | unsigned short szy; 43 | unsigned short stepszx; 44 | unsigned short stepszy; 45 | unsigned short labyrinthx; 46 | unsigned short labyrinthy; 47 | unsigned short bannerx; 48 | unsigned short bannery; 49 | unsigned short bannerx_end; 50 | unsigned short bannery_end; 51 | } display_bounds_t; 52 | extern display_bounds_t disp_bounds; 53 | 54 | 55 | /* global procedures */ 56 | void game_exit(void); 57 | void draw_banner(void); 58 | 59 | #endif /* C64MAZE_H */ 60 | -------------------------------------------------------------------------------- /c64maze.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30611.23 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "c64maze", "c64maze.vcxproj", "{F1506C3C-64B8-4DF1-963E-96D56CF02D9F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Debug|x64.ActiveCfg = Debug|x64 17 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Debug|x64.Build.0 = Debug|x64 18 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Debug|x86.ActiveCfg = Debug|Win32 19 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Debug|x86.Build.0 = Debug|Win32 20 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Release|x64.ActiveCfg = Release|x64 21 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Release|x64.Build.0 = Release|x64 22 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Release|x86.ActiveCfg = Release|Win32 23 | {F1506C3C-64B8-4DF1-963E-96D56CF02D9F}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {E45E8B5C-C3AB-4E2A-B011-417DA10B3A2E} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /c64maze.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {1b1e0eb6-207a-4bbe-91cc-91cc32a1eac1} 18 | 19 | 20 | 21 | 22 | 헤더 파일 23 | 24 | 25 | 헤더 파일 26 | 27 | 28 | 소스 파일 29 | 30 | 31 | 소스 파일 32 | 33 | 34 | 소스 파일\FontCache 35 | 36 | 37 | 소스 파일 38 | 39 | 40 | 41 | 42 | 소스 파일 43 | 44 | 45 | 소스 파일 46 | 47 | 48 | 소스 파일\FontCache 49 | 50 | 51 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # C64maze 2 | ## A 3D maze game written in C 3 | 4 | ### Intro 5 | 6 | This project (distributed with the GPLv.3 license) is a very simple 3D maze originally written for 7 | the Commodore 64 computer, hence the name, and then ported to UNIX. The source code is written in C (with some inline 8 | assembly for the C64 version) and it is meant to be compiled with the cc65 compiler or gcc with the SDL2 library. 9 | 10 | The game started as an exercise in high resolution graphics on the C64 and was inspired to those old 3D maze games in BASIC that were popular at the time. However, the C language is much faster than BASIC and one can do some pretty nice things. Some routines are tweaked in assembly for better performances. 11 | 12 | ![Do you dare to enter The Maze?](https://github.com/DarwinNE/C64maze/raw/master/screenshots/step_in.png) 13 | 14 | The goal of the game is to find the exit of the maze in the shortest possible amount of time. The entrance of the maze is changed randomly each time the game is played. You can have a look at the maze map, but beware! Each time this is done, a penalty of 30s is applied: 15 | 16 | ![Maze map](https://github.com/DarwinNE/C64maze/raw/master/screenshots/mazeview.png) 17 | 18 | You should explore the maze to find the exit: 19 | 20 | ![Hey! You found the exit!](https://github.com/DarwinNE/C64maze/raw/master/screenshots/exit.png) 21 | 22 | And once you find your way through it, you will know how much time you needed: 23 | 24 | ![Game completed.](https://github.com/DarwinNE/C64maze/raw/master/screenshots/exit_s.png) 25 | 26 | Here is a screenshot of the game running on a Unix machine: 27 | 28 | ![UNIX PORT 1st version](./screenshots/unix_first.jpg "you must see it") 29 | 30 | ### Music 31 | The music is a 3-part reduction for the SID of J.S. Bach's "little" fugue in G minor, BWV578. Hommage to Wendy Carlos. The music driver is fully interrupt-driven and it is also written in C. 32 | 33 | ### How to build the game 34 | To build the game for UNIX\GNU linux install SDL2 library and type: 35 | ~~~~ 36 | make PLATFORM=UNIX 37 | ~~~~ 38 | 39 | To build for the Commodore 64, make sure you have CC65 installed and type: 40 | ~~~~ 41 | make PLATFORM=C64 42 | ~~~~ 43 | -------------------------------------------------------------------------------- /ports/z88dk.c: -------------------------------------------------------------------------------- 1 | 2 | // ZX 81 (with 32K + WRX mod) 3 | // zcc +zx81 -clib=wrx -subtype=_wrx -pragma-define:hrgpage=40000 -create-app -DSZ=7 -DGFXSCALEX=4/5 -DGFXSCALEY=4/5 -DNO_SOUND -lm -O3 -DPLATFORM_MAZE=z88dk c64maze.c ports/z88dk.c 4 | 5 | // ZX Spectrum 6 | // zcc +zx -lndos -create-app -DSZ=7 -DGFXSCALEX=4/5 -DGFXSCALEY=4/5 -DNO_SOUND -lm -DPLATFORM_MAZE=z88dk c64maze.c ports/z88dk.c 7 | 8 | // TS 2068 9 | // zcc +ts2068 -pragma-define:CLIB_DEFAULT_SCREEN_MODE=0x3e -lm -create-app -DPLATFORM_MAZE=z88dk -DSZ=7 -DGFXSCALEX=5/6 -DGFXSCALEY=5/6 -DNO_SOUND c64maze.c ports/z88dk.c 10 | 11 | // TRS80 Model4 (Montezuma CP/M, Graphyx Solution High Resolution Board) 12 | // zcc +cpm -subtype=montezuma -lm -create-app -DPLATFORM_MAZE=z88dk -DSZ=8 -DGFXSCALEX=2 -DGFXSCALEY=1 -DNO_SOUND -lgrafyx4 -DUSE_SPRITES c64maze.c ports/z88dk.c 13 | 14 | // Commodore 128 15 | // zcc +c128 -lgfx128hr -lm -create-app -DPLATFORM_MAZE=z88dk -DSZ=7 -DGFXSCALEX=9/4 -DGFXSCALEY=1 c64maze.c ports/z88dk.c 16 | 17 | // Microbee, 640px Ultra high resolution (add -subtype=microbee40 or microbee80 for Foppy Disk image file) 18 | // zcc +cpm -lm -create-app -DPLATFORM_MAZE=z88dk -DSZ=8 -DGFXSCALEX=2 -DGFXSCALEY=1 -DNO_SOUND -lgfxbee640 c64maze.c ports/z88dk.c 19 | 20 | // Microbee, 512px high resolution 21 | // zcc +cpm -lm -create-app -DPLATFORM_MAZE=z88dk -DSZ=7 -DGFXSCALEX=7/4 -DGFXSCALEY=1 -DNO_SOUND -lgfxbee512 c64maze.c ports/z88dk.c 22 | 23 | // Microbee, 320px high resolution 24 | // zcc +cpm -lm -create-app -DPLATFORM_MAZE=z88dk -DSZ=8 -DGFXSCALEX=1 -DGFXSCALEY=1 -DNO_SOUND -lgfxbee320 c64maze.c ports/z88dk.c 25 | 26 | 27 | 28 | #include 29 | #include 30 | #include 31 | #include 32 | #include 33 | #include 34 | #include 35 | 36 | //#define clear_area(a,b,c,d) stencil_init(bgi_stencil);stencil_add_side((a),(b),(a),(d),bgi_stencil);stencil_add_side((c),(b),(c),(d),bgi_stencil);stencil_render(bgi_stencil,0) 37 | 38 | //#define clear_area(a,b,c,d) clga((a)*GFXSCALEX,(b)*GFXSCALEY,((c)-(a))*GFXSCALEX,((d)-(b))*GFXSCALEY) 39 | 40 | #include "z88dk.h" 41 | #include "../c64maze.h" 42 | #include 43 | 44 | #ifdef __C128__ 45 | #include 46 | #include 47 | // 4 bytes: Hrs, Min, Sec, Ten 48 | unsigned char appTOD[4]; 49 | #endif 50 | 51 | 52 | /* local funcs defs */ 53 | static void port_process_voice(unsigned char **ptr, unsigned char *sid_pointer, 54 | unsigned char *wsh); 55 | 56 | /* funcs */ 57 | void port_pset(unsigned int x, unsigned int y) 58 | { 59 | plot(x, y); 60 | } 61 | 62 | void port_clearHGRpage(void) 63 | { 64 | clg(); 65 | } 66 | 67 | #ifdef USE_SPRITES 68 | char square[]={8,8,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff}; 69 | #endif 70 | 71 | void port_clearMazeRegion(void) 72 | { 73 | // in Turbo C you should use the histogram bar() element 74 | //clear_area(0,0,disp_bounds.labyrinthx,disp_bounds.labyrinthy); 75 | 76 | int x,y,maxx,maxy; 77 | 78 | maxx=disp_bounds.labyrinthx*GFXSCALEX; 79 | maxy=disp_bounds.labyrinthy*GFXSCALEY; 80 | 81 | #ifdef USE_SPRITES 82 | for (x=0;x 2 | #include 3 | #include 4 | #include "SDL_FontCache/SDL_FontCache.h" 5 | #include"vic_font.h" 6 | #include"sid_tune.h" 7 | #include"UNIX.h" 8 | #include 9 | #include 10 | #include 11 | /* local definitions */ 12 | #define VIC_II_START 53248U 13 | #define VIC_II_Y_SCROLL 53265U 14 | #define BMM 32 // Monochromatic high resolution mode 15 | #define VIC_II_SCREEN_CHAR 53272U 16 | #define SCREEN_BORDER 53280U 17 | 18 | #define BASE 0xA000U 19 | #define COLOR_MEM 0x8C00U 20 | 21 | 22 | /* local vars */ 23 | 24 | SDL_Rect drect; 25 | SDL_Renderer *ren; 26 | SDL_Event event; 27 | SDL_Window *win; 28 | 29 | static unsigned char pix_pos[]={0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x01}; 30 | unsigned int cnt; 31 | #define STACK_SIZE 256 32 | unsigned char stackSize[STACK_SIZE]; 33 | 34 | unsigned char *list1; 35 | unsigned char *ptr1; 36 | unsigned char wsh1; 37 | 38 | unsigned char *list2; 39 | unsigned char *ptr2; 40 | unsigned char wsh2; 41 | 42 | unsigned char *list3; 43 | unsigned char *ptr3; 44 | unsigned char wsh3; 45 | 46 | 47 | struct font{ 48 | unsigned char *pDesc; /* Pointer to the character raster array */ 49 | unsigned int pos[256]; /* Position of the symbol */ 50 | unsigned char incX; /* Increment in X (-1 means a proportional font) */ 51 | unsigned char incY; /* Increment in Y */ 52 | unsigned char magnification; /* Magnification */ 53 | }; 54 | 55 | struct font f; 56 | FC_Font *fc; 57 | 58 | /* local funcs defs */ 59 | static void port_process_voice(unsigned char **ptr, unsigned char *sid_pointer, 60 | unsigned char *wsh); 61 | /* funcs */ 62 | void port_pset(unsigned int x, unsigned int y) 63 | { 64 | SDL_RenderDrawPoint(ren, x, y); 65 | } 66 | 67 | void port_clearHGRpage(void) 68 | { 69 | SDL_SetRenderDrawColor(ren, 0, 0, 0, 0); 70 | SDL_RenderClear(ren); 71 | SDL_SetRenderDrawColor(ren, 0x00, 0x66, 0x00, 0xFF); 72 | } 73 | 74 | void port_clearMazeRegion(void) 75 | { 76 | SDL_SetRenderDrawColor(ren, 0, 0, 0, 0); 77 | SDL_Rect rect = { 78 | .x = 0, 79 | .y = 0, 80 | .w = disp_bounds.labyrinthx, 81 | .h = disp_bounds.labyrinthy 82 | }; 83 | SDL_RenderFillRect(ren, &rect); 84 | } 85 | 86 | /** Switch on the HGR monochrome graphic mode. 87 | */ 88 | int port_graphics_init(void) 89 | { 90 | if(SDL_Init( SDL_INIT_EVERYTHING ) == -1 ) { 91 | return -1; 92 | } 93 | TTF_Init(); 94 | win = SDL_CreateWindow("C64MAZE", 2, 2, 95 | SIZEX, 96 | SIZEY, 97 | SDL_WINDOW_SHOWN); 98 | if(win == NULL) { 99 | puts("error when creating window"); 100 | puts(SDL_GetError()); 101 | return -1; 102 | } 103 | ren = SDL_CreateRenderer(win, -1, 104 | SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC); 105 | if(ren == NULL) { 106 | puts("error when creating renderer"); 107 | puts(SDL_GetError()); 108 | return -1; 109 | } 110 | SDL_Rect rect; 111 | if (SDL_GetDisplayBounds(0, &rect) != 0) { 112 | SDL_Log("SDL_GetDisplayBounds failed: %s", SDL_GetError()); 113 | return -1; 114 | } 115 | if(rect.w / SIZEX < rect.h / SIZEY) { 116 | disp_bounds.szx = rect.w; 117 | disp_bounds.szy = rect.w * SIZEY / SIZEX; 118 | /* calculate labyrinth size */ 119 | disp_bounds.labyrinthx = rect.w * 2 / 3; 120 | disp_bounds.labyrinthy = disp_bounds.labyrinthx / SIZEX * SIZEY; 121 | } else { 122 | disp_bounds.szy = rect.h; 123 | disp_bounds.szx = rect.h * SIZEX / SIZEY; 124 | disp_bounds.labyrinthy = rect.h * 2 / 3; 125 | disp_bounds.labyrinthx = disp_bounds.labyrinthy * SIZEY / SIZEX; 126 | } 127 | disp_bounds.stepszx = disp_bounds.labyrinthx * STEPSIZEX / SIZEX; 128 | disp_bounds.stepszy = disp_bounds.labyrinthx * STEPSIZEY / SIZEX; 129 | /* set banner boundaries */ 130 | disp_bounds.bannerx = disp_bounds.labyrinthx + 1; 131 | disp_bounds.bannerx_end = disp_bounds.szx; 132 | disp_bounds.bannery = 1; 133 | disp_bounds.bannery_end = disp_bounds.szy; 134 | printf("display bounds: " 135 | "szx=%d, szy=%d," 136 | "labyrinth=%dx%d" 137 | "step=%dx%d" 138 | "banner=%dx%d to %dx%d", 139 | disp_bounds.szx, 140 | disp_bounds.szy, 141 | disp_bounds.labyrinthx, disp_bounds.labyrinthy, 142 | disp_bounds.stepszx, disp_bounds.stepszy, 143 | disp_bounds.bannerx, disp_bounds.bannery, 144 | disp_bounds.bannerx_end, disp_bounds.bannery_end); 145 | return 0; 146 | } 147 | 148 | void port_vert_line(unsigned short x1, unsigned short y1, unsigned short y2) 149 | { 150 | SDL_SetRenderDrawColor(ren, 0x00, 0x66, 0x00, 0xFF); 151 | SDL_RenderDrawLine(ren, x1,y1,x1,y2); 152 | } 153 | 154 | void port_diag_line(unsigned short x1, unsigned short y1, unsigned short ix, 155 | short incx, short incy) 156 | { 157 | SDL_SetRenderDrawColor(ren, 0x00, 0x66, 0x00, 0xFF); 158 | SDL_RenderDrawLine(ren, x1, y1, x1+incx, y1+incy); 159 | } 160 | 161 | void port_hor_line(unsigned short x1, unsigned short x2, unsigned short y1) 162 | { 163 | SDL_SetRenderDrawColor(ren, 0x00, 0x66, 0x00, 0xFF); 164 | SDL_RenderDrawLine(ren, x1, y1, x2, y1); 165 | } 166 | 167 | void port_printat(unsigned short x, unsigned short y, char *s) 168 | { 169 | static bool firsttime=true; 170 | if(firsttime) { 171 | SDL_Color c = { 255, 255, 255}; 172 | fc = FC_CreateFont(); 173 | FC_LoadFont(fc, ren, 174 | "DejaVuSerif.ttf", 175 | 20, FC_MakeColor(255, 255, 255, 255), TTF_STYLE_NORMAL); 176 | firsttime = false; 177 | } 178 | FC_Draw(fc, ren, x, y, s); 179 | //SDL_Delay(100); 180 | //SDL_RenderPresent(ren); 181 | } 182 | 183 | /* Plot a line using the Bresenham algorithm 184 | from Nelson Johnson, "Advanced Graphics in C" 185 | ed. Osborne, McGraw-Hill. 186 | Horizontal and vertical lines need to be considerably 187 | speeded up by using a direct access to video RAM. 188 | */ 189 | void port_line(unsigned short x1, unsigned short y1, 190 | unsigned short x2, unsigned short y2) 191 | { 192 | SDL_SetRenderDrawColor(ren, 0x00, 0x66, 0x00, 0xFF); 193 | SDL_RenderDrawLine(ren, x1, y1, x2, y2); 194 | } 195 | 196 | unsigned long port_get_time(void) 197 | { 198 | return time(NULL); 199 | } 200 | 201 | void port_colour_banner(void) 202 | { 203 | SDL_Rect rect = { 204 | .x = disp_bounds.bannerx, 205 | .y = disp_bounds.bannery, 206 | .w = disp_bounds.bannerx_end - disp_bounds.bannerx, 207 | .h = disp_bounds.bannery_end - disp_bounds.bannery 208 | }; 209 | SDL_SetRenderDrawColor(ren, 210, 10, 10, 255); 210 | SDL_RenderFillRect(ren, &rect); 211 | SDL_RenderPresent(ren); 212 | } 213 | 214 | long port_get_current_time(void) 215 | { 216 | return time(NULL); 217 | } 218 | 219 | static void port_process_voice(unsigned char **ptr, unsigned char *sid_pointer, 220 | unsigned char *wsh) 221 | { 222 | /* TODO */ 223 | } 224 | unsigned char port_sound_irq(void) 225 | { 226 | /* TODO */ 227 | return 0; 228 | } 229 | 230 | void port_start_sound(unsigned char *l1, unsigned char *l2, unsigned char *l3) 231 | { 232 | /* TODO */ 233 | } 234 | 235 | void port_loadVICFont(unsigned char magnification) 236 | { 237 | unsigned int i; 238 | /* Load the font tables */ 239 | for(i=0; i<256; ++i) 240 | f.pos[i]=0; 241 | 242 | for(i=' '; i<='~'; ++i) 243 | f.pos[i]=(i-' '+1)*8; 244 | 245 | f.pDesc=vic_font; 246 | f.incX=8; /* Increment in X (-1 would mean a proportional font) */ 247 | f.incY=8; /* Increment in Y */ 248 | f.magnification=magnification; 249 | } 250 | 251 | char port_getch(void) 252 | { 253 | SDL_WaitEvent(&event); 254 | SDL_PollEvent(&event); 255 | return event.key.keysym.sym; 256 | } 257 | 258 | void port_fflushMazeRegion(void) 259 | { 260 | SDL_SetRenderDrawColor(ren, 0x00, 0x66, 0x00, 0xFF); 261 | SDL_RenderPresent(ren); 262 | } 263 | void port_music_on(void){} 264 | void port_music_off(void){} 265 | void port_font_magnification(unsigned char magnification) 266 | { 267 | (void)magnification; 268 | } 269 | void port_exit(void) 270 | { 271 | SDL_DestroyRenderer(ren); 272 | SDL_DestroyWindow(win); 273 | TTF_Quit(); 274 | SDL_Quit(); 275 | exit(0); 276 | } 277 | -------------------------------------------------------------------------------- /c64maze.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | 16.0 23 | Win32Proj 24 | {f1506c3c-64b8-4df1-963e-96d56cf02d9f} 25 | HelloWorld 26 | 10.0 27 | 28 | 29 | 30 | Application 31 | true 32 | v142 33 | Unicode 34 | 35 | 36 | Application 37 | false 38 | v142 39 | true 40 | Unicode 41 | 42 | 43 | Application 44 | true 45 | v142 46 | Unicode 47 | 48 | 49 | Application 50 | false 51 | v142 52 | true 53 | Unicode 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | true 75 | 76 | 77 | false 78 | 79 | 80 | true 81 | 82 | 83 | false 84 | 85 | 86 | 87 | Level3 88 | true 89 | _CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 90 | true 91 | ./ 92 | 4244 93 | 94 | 95 | Console 96 | true 97 | 98 | 99 | 100 | 101 | Level3 102 | true 103 | true 104 | true 105 | _CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 106 | true 107 | ./ 108 | 4244 109 | 110 | 111 | Console 112 | true 113 | true 114 | true 115 | 116 | 117 | 118 | 119 | Level3 120 | true 121 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 122 | true 123 | 124 | 125 | Console 126 | true 127 | 128 | 129 | 130 | 131 | Level3 132 | true 133 | true 134 | true 135 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 136 | true 137 | 138 | 139 | Console 140 | true 141 | true 142 | true 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /ports/C64.c: -------------------------------------------------------------------------------- 1 | #include<6502.h> 2 | #include 3 | #include 4 | #include"vic_font.h" 5 | #include"sid_tune.h" 6 | #include"C64.h" 7 | /* local definitions */ 8 | #define VIC_II_START 53248U 9 | #define VIC_II_Y_SCROLL 53265U 10 | #define BMM 32 // Monochromatic high resolution mode 11 | #define VIC_II_SCREEN_CHAR 53272U 12 | #define SCREEN_BORDER 53280U 13 | 14 | #define BASE 0xA000U 15 | #define COLOR_MEM 0x8C00U 16 | 17 | 18 | #define POKE(addr,val) (*(unsigned char*) (addr) = (val)) 19 | #define PEEK(addr) (*(unsigned char*) (addr)) 20 | /* local vars */ 21 | static unsigned char pix_pos[]={0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x01}; 22 | unsigned int cnt; 23 | #define STACK_SIZE 256 24 | unsigned char stackSize[STACK_SIZE]; 25 | 26 | unsigned char *list1; 27 | unsigned char *ptr1; 28 | unsigned char wsh1; 29 | 30 | unsigned char *list2; 31 | unsigned char *ptr2; 32 | unsigned char wsh2; 33 | 34 | unsigned char *list3; 35 | unsigned char *ptr3; 36 | unsigned char wsh3; 37 | 38 | 39 | struct font{ 40 | unsigned char *pDesc; /* Pointer to the character raster array */ 41 | unsigned int pos[256]; /* Position of the symbol */ 42 | unsigned char incX; /* Increment in X (-1 means a proportional font) */ 43 | unsigned char incY; /* Increment in Y */ 44 | unsigned char magnification; /* Magnification */ 45 | }; 46 | 47 | struct font f; 48 | 49 | /* local funcs defs */ 50 | static void port_process_voice(unsigned char **ptr, unsigned char *sid_pointer, 51 | unsigned char *wsh); 52 | /* funcs */ 53 | void port_pset(unsigned int x, unsigned int y) 54 | { 55 | static unsigned int d; 56 | static unsigned int e; 57 | static unsigned int by; 58 | d=y&0xFFF8; 59 | e=d*40; 60 | by=BASE+e+(x&0xFFF8)+((unsigned char)y&7); 61 | POKE(by, PEEK(by) | pix_pos[(unsigned char)x&7]); 62 | } 63 | 64 | void port_clearHGRpage(void) 65 | { 66 | //unsigned int i; 67 | // Clear HGR page (too slow!) 68 | /*for(i=BASE;i0) 226 | ++x1; 227 | else 228 | --x1; 229 | if(incy>0) 230 | ++y1; 231 | else 232 | --y1; 233 | } 234 | } 235 | 236 | void port_hor_line(unsigned short x1, unsigned short x2, unsigned short y1) 237 | { 238 | static unsigned int d; 239 | static unsigned int e; 240 | static unsigned int by; 241 | d=y1&0xFFF8; 242 | e=d*40; 243 | by=BASE+e+((unsigned char)y1&7); 244 | for(;x1<=x2;++x1){ 245 | if((x1&7)==0 && (x1+7)<=x2) { 246 | POKE(by+(x1&0xFFF8),0xFF); 247 | x1+=7; // because the for statement will add 1. 248 | continue; 249 | } 250 | POKE(by+(x1&0xFFF8), PEEK(by+(x1&0xFFF8)) | 251 | pix_pos[(unsigned char)x1&7]); 252 | } 253 | } 254 | 255 | void port_printat(unsigned short x, unsigned short y, char *s) 256 | { 257 | unsigned char i,j,k; 258 | unsigned char a; 259 | unsigned char t; 260 | unsigned int p; 261 | unsigned char mm=f.magnification; 262 | unsigned char incrementx=f.incX*mm; 263 | unsigned char incrementy=f.incY*mm; 264 | unsigned int ppos; 265 | unsigned char q,r; 266 | 267 | unsigned int by; 268 | unsigned int d,e; 269 | unsigned int ix; 270 | unsigned int loc; 271 | for (i=0; s[i]!='\0';++i) { 272 | p=0; 273 | r=1; 274 | ppos=f.pos[s[i]]; 275 | x+=incrementx; 276 | for (j=0;j>=1; 296 | t=1; 297 | } else { 298 | ++t; 299 | } 300 | } 301 | } 302 | } 303 | } 304 | 305 | /* Plot a line using the Bresenham algorithm 306 | from Nelson Johnson, "Advanced Graphics in C" 307 | ed. Osborne, McGraw-Hill. 308 | Horizontal and vertical lines need to be considerably 309 | speeded up by using a direct access to video RAM. 310 | */ 311 | void port_line(unsigned short x1, unsigned short y1, 312 | unsigned short x2, unsigned short y2) 313 | { 314 | static short incx; 315 | static short incy; 316 | 317 | static unsigned short ix; 318 | static unsigned short iy; 319 | static unsigned short inc; 320 | 321 | static unsigned char changey; 322 | static short x, y; 323 | static unsigned char plot; 324 | 325 | static unsigned int d; 326 | static unsigned int e; 327 | static unsigned int by; 328 | static unsigned int ypos; 329 | static unsigned int i; 330 | static unsigned char style_mask; 331 | 332 | incx=x2>x1?1:-1; 333 | incy=y2>y1?1:-1; 334 | 335 | ix=incx>0?x2-x1:x1-x2; 336 | iy=incy>0?y2-y1:y1-y2; 337 | 338 | // If continuous lines have to be drawn, check if we can employ simplified 339 | // and faster code in certain particular cases. 340 | if(style==0x1) { 341 | if(ix==0) { 342 | if(incy>0) 343 | port_vert_line(x1, y1,y2); 344 | else 345 | port_vert_line(x1, y2,y1); 346 | return; 347 | } 348 | if(iy==0) { 349 | if(incx>0) 350 | port_hor_line(x1,x2,y1); 351 | else 352 | port_hor_line(x2,x1,y1); 353 | return; 354 | } 355 | if(ix==iy) { 356 | port_diag_line(x1,y1,ix,incx,incy); 357 | return; 358 | } 359 | } 360 | 361 | inc=a_max(ix, iy); 362 | style_mask=style; 363 | 364 | changey=TRUE; 365 | x=0; 366 | y=0; 367 | plot=FALSE; 368 | 369 | d=y1&0xFFF8; 370 | e=d*40; 371 | by=BASE+e+(x1&0xFFF8)+((unsigned char)y1&7); 372 | 373 | /* Plot the first pixel */ 374 | POKE(by, PEEK(by) | pix_pos[(unsigned char)x1&7]); 375 | 376 | /* Faster version with continuous line */ 377 | for(i=0; i<=inc; ++i) { 378 | x += ix; 379 | y += iy; 380 | if (x>inc) { 381 | plot=TRUE; 382 | x-=inc; 383 | x1 +=incx; 384 | } 385 | if (y>inc) { 386 | plot=TRUE; 387 | y-=inc; 388 | y1 +=incy; 389 | changey=TRUE; 390 | } 391 | if (plot && (style_mask&0x0001u)) { 392 | plot=FALSE; 393 | if(changey==TRUE) { 394 | /* Calculations for the position of the memory location to 395 | modify are more complicated in y than in x, so it is 396 | worth doing them only when necessary. That greatly 397 | improves speed for almost horisontal lines. */ 398 | changey=FALSE; 399 | d=y1&0xFFF8; 400 | e=d*40; 401 | ypos=BASE+e+((unsigned char)y1&0x07); 402 | } 403 | by=ypos+(x1&0xFFF8); 404 | POKE(by, PEEK(by) | pix_pos[(unsigned char)x1&0x07]); 405 | } 406 | style_mask >>= 1; 407 | if(style_mask==0) style_mask=style; 408 | } 409 | } 410 | 411 | unsigned long port_get_time(void) 412 | { 413 | return PEEK(160)+PEEK(161)*256; 414 | } 415 | 416 | void port_colour_banner(void) 417 | { 418 | unsigned char x; 419 | unsigned char y; 420 | 421 | for(x=25;x<40;++x) { 422 | for(y=0;y<25;++y) { 423 | POKE(COLOR_MEM+x+y*40,0x67); 424 | } 425 | } 426 | } 427 | 428 | long port_get_current_time(void) 429 | { 430 | long ctime=((char)PEEK(160)); 431 | ctime<<=8; 432 | ctime+=((char)PEEK(161)); 433 | ctime<<=8; 434 | ctime+=((char)PEEK(162)); 435 | return ctime; 436 | } 437 | 438 | static void port_process_voice(unsigned char **ptr, unsigned char *sid_pointer, 439 | unsigned char *wsh) 440 | { 441 | unsigned int timestamp=**ptr+ (*(*ptr+1)<<8); 442 | if(timestamp>cnt) { 443 | return; 444 | } 445 | ++*ptr; 446 | ++*ptr; 447 | switch(**ptr) { 448 | case NOTE_CODE: // Note event 449 | POKE(sid_pointer,*(++*ptr)); // Frequency lo 450 | POKE(sid_pointer+1,*(++*ptr)); // Frequency hi 451 | POKE(sid_pointer+4,0); 452 | POKE(sid_pointer+4,*wsh); // Note on 453 | ++*ptr; 454 | break; 455 | case PAUSE_CODE: // Pause event 456 | POKE(sid_pointer+4,0); // Note off 457 | ++*ptr; 458 | break; 459 | case ENVELOPE_CODE: // Change envelope 460 | *wsh=*(++*ptr); // Wave shape 461 | POKE(sid_pointer+2,*(++*ptr)); // Duty cycle lo 462 | POKE(sid_pointer+3,*(++*ptr)); // Dyty cycle hi 463 | POKE(sid_pointer+5,*(++*ptr)); // AD 464 | POKE(sid_pointer+6,*(++*ptr)); // SR 465 | ++*ptr; 466 | break; 467 | case REWIND_CODE: 468 | ptr1=list1; 469 | ptr2=list2; 470 | ptr3=list3; 471 | cnt=0; 472 | break; 473 | } 474 | } 475 | unsigned char port_sound_irq(void) 476 | { 477 | if(ptr1!=NULL) { 478 | port_process_voice(&ptr1, (unsigned char*)0xD400U, &wsh1); 479 | } 480 | if(ptr2!=NULL) { 481 | port_process_voice(&ptr2, (unsigned char*)0xD407U, &wsh2); 482 | } 483 | if(ptr3!=NULL) { 484 | port_process_voice(&ptr3, (unsigned char*)0xD40EU, &wsh3); 485 | } 486 | ++cnt; 487 | return (IRQ_NOT_HANDLED); 488 | } 489 | 490 | void port_start_sound(unsigned char *l1, unsigned char *l2, unsigned char *l3) 491 | { 492 | POKE(0xD418,15); 493 | ptr1=list1=l1; 494 | ptr2=list2=l2; 495 | ptr3=list3=l3; 496 | cnt=0; 497 | 498 | SEI(); 499 | set_irq(&port_sound_irq, stackSize, STACK_SIZE); 500 | CLI(); 501 | } 502 | 503 | void port_loadVICFont(unsigned char magnification) 504 | { 505 | unsigned int i; 506 | /* Load the font tables */ 507 | for(i=0; i<256; ++i) 508 | f.pos[i]=0; 509 | 510 | for(i=' '; i<='~'; ++i) 511 | f.pos[i]=(i-' '+1)*8; 512 | 513 | f.pDesc=vic_font; 514 | f.incX=8; /* Increment in X (-1 would mean a proportional font) */ 515 | f.incY=8; /* Increment in Y */ 516 | f.magnification=magnification; 517 | } 518 | 519 | void port_font_magnification(unsigned char magnification) 520 | { 521 | f.magnification = magnification; 522 | } 523 | 524 | char port_getch(void) 525 | { 526 | return cgetc(); 527 | } 528 | 529 | void port_fflushMazeRegion(void) 530 | { 531 | 532 | } 533 | 534 | void port_music_off(void) 535 | { 536 | POKE(0xD418,0); 537 | } 538 | void port_music_on(void) 539 | { 540 | POKE(0xD418,15); 541 | } 542 | 543 | void port_exit(void) 544 | { 545 | f.magnification = 1; 546 | port_printat(0,60, "We cant exit on this port!"); 547 | f.magnification = 2; 548 | } 549 | -------------------------------------------------------------------------------- /c64maze.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include "c64maze.h" 4 | #ifndef NO_SOUND 5 | #include"sid_tune.h" 6 | #endif 7 | #define EXPAND1(x) x 8 | #define EXPAND2(x, y) EXPAND1(x)y 9 | #define EXPAND3(x, y, z) EXPAND2(x, y)z 10 | 11 | #undef INCLUDE_NAME 12 | #define INCLUDE_NAME 13 | #include INCLUDE_NAME 14 | 15 | char labyrinth[] = "****************************************" 16 | "* * * * * * * *" 17 | "* **** * ******** * *** * *** ** ** **" 18 | "* * ** * * * * * * * * * *" 19 | "* * * * * *** ***** * * * * *** * *" 20 | "***** ** ** * *** * **** *" 21 | "* * ** **** * * * * *" 22 | "* * *********** * * * * ****** * * *" 23 | "* * * ** ** * * * * *" 24 | "***** ***** * * * * * * * **** ** * *" 25 | "* * * *** **** ** ** * * ****" 26 | "* * *** * * * * * * ** * * *" 27 | "* *** * ***** * ** **** * * **** **" 28 | "** ** * * * * * * * ** * *" 29 | "* * ** ******* * * *** * *** * ** ** *" 30 | "** * * * * * * * *" 31 | "****************************************"; 32 | 33 | char startx; 34 | char starty; 35 | char positionx; 36 | char positiony; 37 | unsigned char style=0x1; 38 | 39 | /*#if (P_CURRENT== P_C64) 40 | #define LABYRINTHSZX_DYN SIZEX 41 | #define LABYRINTHSZY_DYN SIZEY 42 | #define LABSTEPSZX_DYN STEPSIZEX 43 | #define LABSTEPSZY_DYN STEPSIZEY 44 | #else*/ 45 | display_bounds_t disp_bounds; 46 | #define LABYRINTHSZX_DYN disp_bounds.labyrinthx 47 | #define LABYRINTHSZY_DYN disp_bounds.labyrinthy 48 | #define LABSTEPSZX_DYN disp_bounds.stepszx 49 | #define LABSTEPSZY_DYN disp_bounds.stepszy 50 | //#endif 51 | 52 | 53 | char exitx=13; 54 | char exity=1; 55 | /* 0 = north 56 | 1 = west 57 | 2 = sud 58 | 3 = east 59 | */ 60 | char orientation=0; 61 | /* Turn on a pixel by accessing directly to the video RAM */ 62 | void pset(unsigned int x, unsigned int y) 63 | { 64 | port_pset(x, y); 65 | } 66 | 67 | /* printat prints a text at the given location unsing the font described 68 | by the structure font */ 69 | void printat(unsigned short x, unsigned short y, char *s) 70 | { 71 | port_printat(x, y, s); 72 | } 73 | 74 | void clearMazeRegion(void) 75 | { 76 | port_clearMazeRegion(); 77 | } 78 | 79 | void fflushMazeRegion(void) 80 | { 81 | port_fflushMazeRegion(); 82 | } 83 | 84 | void graphics_init(void) 85 | { 86 | port_graphics_init(); 87 | } 88 | 89 | void vert_line(unsigned short x1, unsigned short y1, unsigned short y2) 90 | { 91 | port_vert_line(x1, y1, y2); 92 | } 93 | 94 | void diag_line(unsigned short x1, unsigned short y1, unsigned short ix, 95 | short incx, short incy) 96 | { 97 | port_diag_line(x1, y1, ix, incx, incy); 98 | } 99 | 100 | void hor_line(unsigned short x1, unsigned short x2, unsigned short y1) 101 | { 102 | port_hor_line(x1, x2, y1); 103 | } 104 | 105 | void line(unsigned short x1, unsigned short y1, 106 | unsigned short x2, unsigned short y2) 107 | { 108 | port_line(x1, y1, x2, y2); 109 | } 110 | 111 | /* box draws a box given the coordinates of the two 112 | diagonal corners. From Nelson Johnson, "Advanced 113 | Graphics in C" ed. Osborne, McGraw-Hill 114 | */ 115 | void box(unsigned short x1, unsigned short y1, unsigned short x2, 116 | unsigned short y2) 117 | { 118 | static unsigned short xul; 119 | static unsigned short yul; 120 | static unsigned short xlr; 121 | static unsigned short ylr; 122 | 123 | xul=(x2>x1) ? x1 : x2; 124 | yul=(y2>y1) ? y1 : y2; 125 | xlr=(x2>x1) ? x2 : x1; 126 | ylr=(y2>y1) ? y2 : y1; 127 | // The simplified code does not handle every style lines, so one must check 128 | // for it. 129 | if(style==0x1) { 130 | hor_line(xul, xlr, yul); 131 | hor_line(xul, xlr, ylr); 132 | vert_line(xul, yul, ylr); 133 | vert_line(xlr, yul, ylr); 134 | } else { 135 | line(xul, yul, xlr, yul); 136 | line(xlr, yul, xlr, ylr); 137 | line(xlr, ylr, xul, ylr); 138 | line(xul, ylr, xul, yul); 139 | } 140 | } 141 | 142 | char getch(void) 143 | { 144 | return port_getch(); 145 | } 146 | 147 | unsigned long get_time(void) 148 | { 149 | return port_get_time(); 150 | } 151 | /** Choose randomly the starting position in the maze. 152 | */ 153 | void choose_start_position() 154 | { 155 | unsigned int time=get_time(); 156 | srand(time); 157 | do { 158 | startx=(labyrinthSizeX*(rand()/(RAND_MAX/100)))/100; 159 | starty=(labyrinthSizeY*(rand()/(RAND_MAX/100)))/100; 160 | } while(labyrinth[startx+starty*labyrinthSizeX]!=' '); 161 | positionx=startx; 162 | positiony=starty; 163 | } 164 | 165 | int leftx; 166 | int lefty; 167 | int rightx; 168 | int righty; 169 | int advancex; 170 | int advancey; 171 | 172 | void set_orientation(void) 173 | { 174 | switch(orientation) { 175 | case 0: 176 | leftx=-1; 177 | lefty=0; 178 | rightx=1; 179 | righty=0; 180 | advancex=0; 181 | advancey=-1; 182 | break; 183 | case 1: 184 | leftx=0; 185 | lefty=1; 186 | rightx=0; 187 | righty=-1; 188 | advancex=-1; 189 | advancey=0; 190 | break; 191 | case 2: 192 | leftx=1; 193 | lefty=0; 194 | rightx=-1; 195 | righty=0; 196 | advancex=0; 197 | advancey=1; 198 | break; 199 | case 3: 200 | leftx=0; 201 | lefty=-1; 202 | rightx=0; 203 | righty=1; 204 | advancex=1; 205 | advancey=0; 206 | break; 207 | } 208 | } 209 | 210 | /** In this function, the maze view is shown from the current point and 211 | orientation of the player (those are specified in global variables). 212 | */ 213 | void drawLabyrinthView() 214 | { 215 | unsigned char posx=positionx; 216 | unsigned char posy=positiony; 217 | unsigned char step=0; 218 | unsigned int sszx; 219 | unsigned int sszy; 220 | unsigned int sszxp1; 221 | unsigned int sszyp1; 222 | unsigned char wall=FALSE; 223 | unsigned char wayout=FALSE; 224 | 225 | style=0x1; 226 | set_orientation(); 227 | 228 | /* Draw the maze in isometric perspective starting from the position of 229 | the player and going progressively farther from him, until a wall is 230 | hit or until the distance becomes greater than 5 steps. 231 | */ 232 | for(step=0;(wall==FALSE)&&(step<6);++step) { 233 | /* Specify the line style so that walls and corners far from the 234 | player somewhat appears to be less definite, thus adding a certain 235 | 3D effect. 236 | */ 237 | switch(step) { 238 | case 3: 239 | style=0x2; 240 | break; 241 | case 4: 242 | style=0x8; 243 | break; 244 | case 5: 245 | style=0x20; 246 | break; 247 | default: 248 | style=0x1; 249 | break; 250 | } 251 | // We hit a wall! 252 | if(labyrinth[posx+posy*labyrinthSizeX]=='*') { 253 | break; 254 | } 255 | // Some pre-calculated data for wall and corner drawing. 256 | sszx=step*LABSTEPSZX_DYN; 257 | sszy=step*LABSTEPSZY_DYN; 258 | sszxp1=(step+1)*LABSTEPSZX_DYN; 259 | sszyp1=(step+1)*LABSTEPSZY_DYN; 260 | // Wall on the right? 261 | if(labyrinth[posx+rightx+(posy+righty)*labyrinthSizeX]=='*') { 262 | line(LABYRINTHSZX_DYN-sszx,sszy, 263 | LABYRINTHSZX_DYN-sszxp1,sszyp1); 264 | line(LABYRINTHSZX_DYN-sszx,LABYRINTHSZY_DYN-sszy, 265 | LABYRINTHSZX_DYN-sszxp1,LABYRINTHSZY_DYN-sszyp1); 266 | } else { 267 | // Closer vertical line 268 | line(LABYRINTHSZX_DYN-sszx,sszy, 269 | LABYRINTHSZX_DYN-sszx,LABYRINTHSZY_DYN-sszy); 270 | // Farther vertical line 271 | if(labyrinth[posx+advancex+(posy+advancey)*labyrinthSizeX]!='*') { 272 | line(LABYRINTHSZX_DYN-sszxp1,sszyp1, 273 | LABYRINTHSZX_DYN-sszxp1,LABYRINTHSZY_DYN-sszyp1); 274 | } 275 | // Upper horisontal line 276 | line(LABYRINTHSZX_DYN-sszxp1,sszyp1, 277 | LABYRINTHSZX_DYN-sszx,sszyp1); 278 | // Lower horisontal line 279 | line(LABYRINTHSZX_DYN-sszxp1,LABYRINTHSZY_DYN-sszyp1, 280 | LABYRINTHSZX_DYN-sszx,LABYRINTHSZY_DYN-sszyp1); 281 | } 282 | // Wall on the left? 283 | if(labyrinth[posx+leftx+(posy+lefty)*labyrinthSizeX]=='*') { 284 | line(sszx,sszy, 285 | sszxp1,sszyp1); 286 | line(sszx,LABYRINTHSZY_DYN-sszy, 287 | sszxp1,LABYRINTHSZY_DYN-sszyp1); 288 | } else { 289 | // Closer vertical line 290 | line(sszx,sszy, 291 | sszx,LABYRINTHSZY_DYN-sszy); 292 | // Farter vertical line 293 | if(labyrinth[posx+advancex+(posy+advancey)*labyrinthSizeX]!='*') { 294 | line(sszxp1,sszyp1, 295 | sszxp1,LABYRINTHSZY_DYN-sszyp1); 296 | } 297 | // Upper horisontal line 298 | line(sszxp1,sszyp1, 299 | sszx,sszyp1); 300 | // Lower horisontal line 301 | line(sszxp1,LABYRINTHSZY_DYN-sszyp1, 302 | sszx,LABYRINTHSZY_DYN-sszyp1); 303 | } 304 | // Advance one step farther from the player. 305 | posx+=advancex; 306 | posy+=advancey; 307 | // Exit is in sight! 308 | if (posx==exitx && posy==exity) { 309 | wall=TRUE; 310 | wayout=TRUE; 311 | } 312 | // A wall is in sight! 313 | if(labyrinth[posx+posy*labyrinthSizeX]=='*') { 314 | wall=TRUE; 315 | } 316 | } 317 | // We have a wall at the end of our sight 318 | if(wall==TRUE) 319 | box(step*LABSTEPSZX_DYN,step*LABSTEPSZY_DYN, 320 | LABYRINTHSZX_DYN-step*LABSTEPSZX_DYN,LABYRINTHSZY_DYN-step*LABSTEPSZY_DYN); 321 | // The exit is in sight! 322 | if(wayout) { 323 | ++step; 324 | box(step*LABSTEPSZX_DYN,step*LABSTEPSZY_DYN, 325 | LABYRINTHSZX_DYN-step*LABSTEPSZX_DYN,LABYRINTHSZY_DYN-step*LABSTEPSZY_DYN); 326 | line(step*LABSTEPSZX_DYN,step*LABSTEPSZY_DYN, 327 | LABYRINTHSZX_DYN-step*LABSTEPSZX_DYN,LABYRINTHSZY_DYN-step*LABSTEPSZY_DYN); 328 | line(LABYRINTHSZX_DYN-step*LABSTEPSZX_DYN,step*LABSTEPSZY_DYN, 329 | step*LABSTEPSZX_DYN,LABYRINTHSZY_DYN-step*LABSTEPSZY_DYN); 330 | } 331 | } 332 | 333 | /** Be sure that the current player position is correct. 334 | */ 335 | void validate_data() 336 | { 337 | if(positionx>=labyrinthSizeX) 338 | positionx=labyrinthSizeX-1; 339 | if(positiony>=labyrinthSizeY) 340 | positiony=labyrinthSizeY-1; 341 | if(positiony<=0) 342 | positiony=0; 343 | if(positiony<=0) 344 | positiony=0; 345 | } 346 | 347 | /** Advance in the forward direction, following the current orientation. 348 | */ 349 | void move_forward() 350 | { 351 | switch(orientation) { 352 | case 0: 353 | --positiony; 354 | break; 355 | case 1: 356 | --positionx; 357 | break; 358 | case 2: 359 | ++positiony; 360 | break; 361 | case 3: 362 | ++positionx; 363 | break; 364 | } 365 | validate_data(); 366 | } 367 | 368 | /** Go backwards one step, following the current orientation. 369 | */ 370 | void move_backwards() 371 | { 372 | switch(orientation) { 373 | case 0: 374 | ++positiony; 375 | break; 376 | case 1: 377 | ++positionx; 378 | break; 379 | case 2: 380 | --positiony; 381 | break; 382 | case 3: 383 | --positionx; 384 | break; 385 | } 386 | validate_data(); 387 | } 388 | 389 | /** Colour the right side banner in the screen view. 390 | */ 391 | void colour_banner(void) 392 | { 393 | port_colour_banner(); 394 | } 395 | 396 | /** Draw the banner on the right side of the screen. 397 | */ 398 | void draw_banner(void) 399 | { 400 | colour_banner(); 401 | port_loadVICFont(2); 402 | #if P_CURRENT == P_C64 403 | printat(204,17,"c64maze"); 404 | port_loadVICFont(1); 405 | box(251,53,278,84); 406 | printat(260,55,"t"); 407 | printat(252,65,"f+g"); 408 | printat(260,75,"v"); 409 | printat(207,100,"[p] view maze"); 410 | #ifndef NO_SOUND 411 | printat(207,110,"[m] music 1/0"); 412 | #endif 413 | printat(207,120,"[a] restart "); 414 | printat(207,170,"d. bucci 2017"); 415 | printat(207,160,"igor1101 2019"); 416 | port_loadVICFont(2); 417 | line(200,0,200,199); 418 | #elif (P_CURRENT == P_UNIX) 419 | unsigned short xoffset = disp_bounds.bannerx; 420 | unsigned short xbannersz = disp_bounds.bannerx_end - disp_bounds.bannerx; 421 | unsigned short xbannerhalfsz = xbannersz / 2; 422 | unsigned short xbanner13sz = xbannersz / 3; 423 | unsigned short xbanner23sz = xbannersz * 2 / 3; 424 | unsigned short xmiddle = xoffset + xbannerhalfsz; 425 | unsigned short xmiddletxt = xoffset + xbanner13sz; 426 | unsigned short xmiddletxt_end = xoffset + xbanner23sz; 427 | unsigned short ymiddle = disp_bounds.bannery_end / 2; 428 | unsigned short yend = disp_bounds.bannery_end; 429 | printat(xmiddletxt,17,"c64maze"); 430 | port_loadVICFont(1); 431 | box(xoffset, 0, xoffset + xbannersz, yend); 432 | box(xmiddletxt - 2,ymiddle - 40 ,xmiddletxt_end + 2,ymiddle + 40); 433 | printat(xmiddle,ymiddle - 20,"t"); 434 | printat(xmiddle - 18,ymiddle,"f+g"); 435 | printat(xmiddle,ymiddle + 20,"v"); 436 | printat(xoffset,ymiddle + 40,"[p] view maze"); 437 | #ifndef NO_SOUND 438 | printat(xoffset,ymiddle + 60,"[m] music 1/0"); 439 | #endif 440 | printat(xoffset,ymiddle + 80,"[a] restart "); 441 | printat(xoffset,ymiddle - 60,"d. bucci 2017"); 442 | printat(xoffset,ymiddle - 80,"igor1101 2019"); 443 | port_loadVICFont(2); 444 | line(xoffset,0,200,199); 445 | #endif /* platform == C64 */ 446 | } 447 | 448 | long start_time; 449 | 450 | long get_current_time(void) 451 | { 452 | return port_get_current_time(); 453 | } 454 | 455 | char *write_time(char *message, unsigned char start) 456 | { 457 | long approx=0; 458 | char thousands=0; 459 | char hundreds=0; 460 | char tens=0; 461 | char seconds=0; 462 | approx=get_current_time()-start_time; 463 | if(approx>60*1000) { 464 | thousands = approx/60l/1000l; 465 | approx-=thousands*60l*1000l; 466 | } 467 | if(approx>60*100) { 468 | hundreds= approx/60l/100l; 469 | approx-=hundreds*60l*100l; 470 | } 471 | if(approx>60*10) { 472 | tens= approx/60l/10l; 473 | approx-=tens*60l*10l; 474 | } 475 | if(approx>60) { 476 | seconds=approx/60l; 477 | approx-=seconds*60l; 478 | } 479 | 480 | message[start++]= thousands+'0'; 481 | message[start++]= hundreds+'0'; 482 | message[start++]= tens + '0'; 483 | message[start++]= seconds + '0'; 484 | return message; 485 | } 486 | 487 | /** Show the maze with the current position and orientation. 488 | */ 489 | void show_maze() 490 | { 491 | unsigned char x = 0; 492 | unsigned char y = 0; 493 | unsigned int by = 0; 494 | const char *pt = 0; 495 | 496 | char message[]="elapsed: s"; 497 | 498 | style=0x1; 499 | 500 | start_time-=60l*30l; // 30 seconds penalty. 501 | 502 | port_clearHGRpage(); 503 | /* findout appropriate box size */ 504 | for(y=0; y 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /sid_tune.h: -------------------------------------------------------------------------------- 1 | #define NOTE_CODE 0x01 2 | #define PAUSE_CODE 0x02 3 | #define ENVELOPE_CODE 0x03 4 | #define STOP_CODE 0xFE 5 | #define REWIND_CODE 0xFF 6 | 7 | // J.S. Bach, "Little" fugue in G minor BWV578. 8 | // Midi file from here: http://www.midiworld.com/bach.htm 9 | 10 | static unsigned char music_v1[]={ 11 | 0x00,0x00,ENVELOPE_CODE,0x21,0x00,0x00,0x1A,0x00, 12 | 0x00,0x00,NOTE_CODE,0x09,0x0d, 13 | 0x1e,0x00,NOTE_CODE,0x88,0x13, 14 | 0x3c,0x00,NOTE_CODE,0x81,0x0f, 15 | 0x69,0x00,NOTE_CODE,0xa2,0x0e, 16 | 0x78,0x00,NOTE_CODE,0x09,0x0d, 17 | 0x87,0x00,NOTE_CODE,0x81,0x0f, 18 | 0x96,0x00,NOTE_CODE,0xa2,0x0e, 19 | 0xa5,0x00,NOTE_CODE,0x09,0x0d, 20 | 0xb4,0x00,NOTE_CODE,0x4e,0x0c, 21 | 0xc3,0x00,NOTE_CODE,0xa2,0x0e, 22 | 0xd2,0x00,NOTE_CODE,0xc4,0x09, 23 | 0xf0,0x00,NOTE_CODE,0x09,0x0d, 24 | 0xff,0x00,NOTE_CODE,0xc4,0x09, 25 | 0x0e,0x01,NOTE_CODE,0xa2,0x0e, 26 | 0x1d,0x01,NOTE_CODE,0xc4,0x09, 27 | 0x2c,0x01,NOTE_CODE,0x81,0x0f, 28 | 0x3b,0x01,NOTE_CODE,0xa2,0x0e, 29 | 0x42,0x01,NOTE_CODE,0x09,0x0d, 30 | 0x4a,0x01,NOTE_CODE,0xa2,0x0e, 31 | 0x59,0x01,NOTE_CODE,0xc4,0x09, 32 | 0x68,0x01,NOTE_CODE,0x09,0x0d, 33 | 0x77,0x01,NOTE_CODE,0xc4,0x09, 34 | 0x7e,0x01,NOTE_CODE,0x09,0x0d, 35 | 0x86,0x01,NOTE_CODE,0xa2,0x0e, 36 | 0x95,0x01,NOTE_CODE,0xc4,0x09, 37 | 0x9c,0x01,NOTE_CODE,0xa2,0x0e, 38 | 0xa4,0x01,NOTE_CODE,0x81,0x0f, 39 | 0xb3,0x01,NOTE_CODE,0xa2,0x0e, 40 | 0xba,0x01,NOTE_CODE,0x09,0x0d, 41 | 0xc2,0x01,NOTE_CODE,0xa2,0x0e, 42 | 0xc9,0x01,NOTE_CODE,0xc4,0x09, 43 | 0xd1,0x01,NOTE_CODE,0x88,0x13, 44 | 0xd8,0x01,NOTE_CODE,0x67,0x11, 45 | 0xe0,0x01,NOTE_CODE,0x81,0x0f, 46 | 0xe7,0x01,NOTE_CODE,0xa2,0x0e, 47 | 0xef,0x01,NOTE_CODE,0x09,0x0d, 48 | 0xf6,0x01,NOTE_CODE,0x81,0x0f, 49 | 0xfe,0x01,NOTE_CODE,0xa2,0x0e, 50 | 0x05,0x02,NOTE_CODE,0x09,0x0d, 51 | 0x0d,0x02,NOTE_CODE,0x4e,0x0c, 52 | 0x14,0x02,NOTE_CODE,0xa2,0x0e, 53 | 0x1c,0x02,NOTE_CODE,0x09,0x0d, 54 | 0x23,0x02,NOTE_CODE,0xc4,0x09, 55 | 0x2b,0x02,NOTE_CODE,0x09,0x0d, 56 | 0x32,0x02,NOTE_CODE,0xa2,0x0e, 57 | 0x3a,0x02,NOTE_CODE,0x81,0x0f, 58 | 0x41,0x02,NOTE_CODE,0x67,0x11, 59 | 0x49,0x02,NOTE_CODE,0x88,0x13, 60 | 0x50,0x02,NOTE_CODE,0xed,0x15, 61 | 0x58,0x02,NOTE_CODE,0x3a,0x17, 62 | 0x5f,0x02,NOTE_CODE,0xed,0x15, 63 | 0x67,0x02,NOTE_CODE,0x88,0x13, 64 | 0x6e,0x02,NOTE_CODE,0x3a,0x17, 65 | 0x76,0x02,NOTE_CODE,0xed,0x15, 66 | 0x7d,0x02,NOTE_CODE,0x88,0x13, 67 | 0x85,0x02,NOTE_CODE,0x6f,0x12, 68 | 0x8c,0x02,NOTE_CODE,0xed,0x15, 69 | 0x94,0x02,NOTE_CODE,0x88,0x13, 70 | 0xa3,0x02,NOTE_CODE,0xa2,0x0e, 71 | 0xb2,0x02,NOTE_CODE,0x88,0x13, 72 | 0xc1,0x02,NOTE_CODE,0xed,0x15, 73 | 0xd0,0x02,NOTE_CODE,0x3a,0x17, 74 | 0xd7,0x02,NOTE_CODE,0x13,0x1a, 75 | 0xdf,0x02,NOTE_CODE,0x3a,0x17, 76 | 0xe6,0x02,NOTE_CODE,0x13,0x1a, 77 | 0xee,0x02,NOTE_CODE,0x44,0x1d, 78 | 0xf1,0x02,NOTE_CODE,0x13,0x1a, 79 | 0xf5,0x02,NOTE_CODE,0x44,0x1d, 80 | 0xf9,0x02,NOTE_CODE,0x13,0x1a, 81 | 0xfc,0x02,NOTE_CODE,0x44,0x1d, 82 | 0x00,0x03,NOTE_CODE,0x13,0x1a, 83 | 0x04,0x03,NOTE_CODE,0x3a,0x17, 84 | 0x08,0x03,NOTE_CODE,0x13,0x1a, 85 | 0x0b,0x03,NOTE_CODE,0x44,0x1d, 86 | 0x13,0x03,NOTE_CODE,0x13,0x1a, 87 | 0x1a,0x03,NOTE_CODE,0x44,0x1d, 88 | 0x22,0x03,NOTE_CODE,0x02,0x1f, 89 | 0x29,0x03,NOTE_CODE,0x44,0x1d, 90 | 0x31,0x03,NOTE_CODE,0x13,0x1a, 91 | 0x38,0x03,NOTE_CODE,0x3a,0x17, 92 | 0x40,0x03,NOTE_CODE,0xed,0x15, 93 | 0x47,0x03,NOTE_CODE,0x3a,0x17, 94 | 0x4f,0x03,NOTE_CODE,0x44,0x1d, 95 | 0x56,0x03,NOTE_CODE,0x13,0x1a, 96 | 0x5e,0x03,NOTE_CODE,0x44,0x1d, 97 | 0x65,0x03,NOTE_CODE,0x6f,0x12, 98 | 0x6d,0x03,NOTE_CODE,0x44,0x1d, 99 | 0x74,0x03,NOTE_CODE,0x13,0x1a, 100 | 0x7c,0x03,NOTE_CODE,0x44,0x1d, 101 | 0x83,0x03,NOTE_CODE,0x88,0x13, 102 | 0x8b,0x03,NOTE_CODE,0x44,0x1d, 103 | 0x92,0x03,NOTE_CODE,0x13,0x1a, 104 | 0x9a,0x03,NOTE_CODE,0x44,0x1d, 105 | 0xa1,0x03,NOTE_CODE,0x6f,0x12, 106 | 0xa9,0x03,NOTE_CODE,0x44,0x1d, 107 | 0xb0,0x03,NOTE_CODE,0x13,0x1a, 108 | 0xb8,0x03,NOTE_CODE,0x44,0x1d, 109 | 0xbf,0x03,NOTE_CODE,0x3a,0x17, 110 | 0xc7,0x03,NOTE_CODE,0x88,0x13, 111 | 0xce,0x03,NOTE_CODE,0x6f,0x12, 112 | 0xd6,0x03,NOTE_CODE,0x88,0x13, 113 | 0xdd,0x03,NOTE_CODE,0x13,0x1a, 114 | 0xe5,0x03,NOTE_CODE,0x88,0x13, 115 | 0xec,0x03,NOTE_CODE,0x6f,0x12, 116 | 0xf4,0x03,NOTE_CODE,0x88,0x13, 117 | 0xfb,0x03,NOTE_CODE,0x44,0x1d, 118 | 0x03,0x04,NOTE_CODE,0x88,0x13, 119 | 0x0a,0x04,NOTE_CODE,0x6f,0x12, 120 | 0x12,0x04,NOTE_CODE,0x88,0x13, 121 | 0x19,0x04,NOTE_CODE,0x13,0x1a, 122 | 0x21,0x04,NOTE_CODE,0x88,0x13, 123 | 0x28,0x04,NOTE_CODE,0x6f,0x12, 124 | 0x30,0x04,NOTE_CODE,0x88,0x13, 125 | 0x37,0x04,NOTE_CODE,0xa2,0x0e, 126 | 0x46,0x04,NOTE_CODE,0x3a,0x17, 127 | 0x55,0x04,NOTE_CODE,0x09,0x0d, 128 | 0x64,0x04,NOTE_CODE,0xed,0x15, 129 | 0x73,0x04,NOTE_CODE,0x9d,0x0b, 130 | 0x82,0x04,NOTE_CODE,0xa2,0x0e, 131 | 0x91,0x04,NOTE_CODE,0x88,0x13, 132 | 0xa0,0x04,NOTE_CODE,0x3a,0x17, 133 | 0xaf,0x04,NOTE_CODE,0xb2,0x14, 134 | 0xbe,0x04,NOTE_CODE,0x44,0x1d, 135 | 0xdc,0x04,NOTE_CODE,0xb2,0x14, 136 | 0xeb,0x04,NOTE_CODE,0x88,0x13, 137 | 0xfa,0x04,NOTE_CODE,0x13,0x1a, 138 | 0x18,0x05,NOTE_CODE,0x88,0x13, 139 | 0x27,0x05,NOTE_CODE,0x67,0x11, 140 | 0x2f,0x05,NOTE_CODE,0x81,0x0f, 141 | 0x36,0x05,NOTE_CODE,0x67,0x11, 142 | 0x3e,0x05,NOTE_CODE,0x88,0x13, 143 | 0x45,0x05,NOTE_CODE,0x67,0x11, 144 | 0x4d,0x05,NOTE_CODE,0x44,0x1d, 145 | 0x54,0x05,NOTE_CODE,0x13,0x1a, 146 | 0x5c,0x05,NOTE_CODE,0x44,0x1d, 147 | 0x63,0x05,NOTE_CODE,0x81,0x0f, 148 | 0x6b,0x05,NOTE_CODE,0x13,0x1a, 149 | 0x72,0x05,NOTE_CODE,0x9c,0x18, 150 | 0x7a,0x05,NOTE_CODE,0x13,0x1a, 151 | 0x81,0x05,NOTE_CODE,0xa2,0x0e, 152 | 0x89,0x05,NOTE_CODE,0x9c,0x18, 153 | 0x90,0x05,NOTE_CODE,0xed,0x15, 154 | 0x98,0x05,NOTE_CODE,0x9c,0x18, 155 | 0x9f,0x05,NOTE_CODE,0x13,0x1a, 156 | 0x53,0x06,NOTE_CODE,0x81,0x0f, 157 | 0x5b,0x06,NOTE_CODE,0x88,0x13, 158 | 0x62,0x06,NOTE_CODE,0x67,0x11, 159 | 0x6a,0x06,NOTE_CODE,0x88,0x13, 160 | 0x71,0x06,NOTE_CODE,0x4e,0x0c, 161 | 0x79,0x06,NOTE_CODE,0x88,0x13, 162 | 0x80,0x06,NOTE_CODE,0x67,0x11, 163 | 0x88,0x06,NOTE_CODE,0x88,0x13, 164 | 0x8f,0x06,NOTE_CODE,0x09,0x0d, 165 | 0x97,0x06,NOTE_CODE,0x88,0x13, 166 | 0x9e,0x06,NOTE_CODE,0x67,0x11, 167 | 0xa6,0x06,NOTE_CODE,0x88,0x13, 168 | 0xad,0x06,NOTE_CODE,0x4e,0x0c, 169 | 0xb5,0x06,NOTE_CODE,0x88,0x13, 170 | 0xbc,0x06,NOTE_CODE,0x67,0x11, 171 | 0xc4,0x06,NOTE_CODE,0x88,0x13, 172 | 0xcb,0x06,NOTE_CODE,0x81,0x0f, 173 | 0xe9,0x06,NOTE_CODE,0x67,0x11, 174 | 0x07,0x07,NOTE_CODE,0x88,0x13, 175 | 0x25,0x07,NOTE_CODE,0x67,0x11, 176 | 0x52,0x07,NOTE_CODE,0x81,0x0f, 177 | 0x70,0x07,NOTE_CODE,0xa2,0x0e, 178 | 0x8e,0x07,NOTE_CODE,0xc4,0x09, 179 | 0x9d,0x07,NOTE_CODE,0x09,0x0d, 180 | 0xa5,0x07,NOTE_CODE,0xa2,0x0e, 181 | 0xac,0x07,NOTE_CODE,0x81,0x0f, 182 | 0xb4,0x07,NOTE_CODE,0x09,0x0d, 183 | 0xbb,0x07,NOTE_CODE,0xa2,0x0e, 184 | 0xca,0x07,NOTE_CODE,0x88,0x13, 185 | 0xd9,0x07,NOTE_CODE,0x6f,0x12, 186 | 0xe8,0x07,NOTE_CODE,0xed,0x15, 187 | 0xf7,0x07,NOTE_CODE,0x44,0x1d, 188 | 0xff,0x07,NOTE_CODE,0x02,0x1f, 189 | 0x06,0x08,NOTE_CODE,0x44,0x1d, 190 | 0x0e,0x08,NOTE_CODE,0x13,0x1a, 191 | 0x15,0x08,NOTE_CODE,0x3a,0x17, 192 | 0x1d,0x08,NOTE_CODE,0xed,0x15, 193 | 0x24,0x08,NOTE_CODE,0x88,0x13, 194 | 0x2c,0x08,NOTE_CODE,0x6f,0x12, 195 | 0x33,0x08,NOTE_CODE,0x88,0x13, 196 | 0x51,0x08,NOTE_CODE,0x44,0x1d, 197 | 0x6f,0x08,NOTE_CODE,0xed,0x15, 198 | 0x9c,0x08,NOTE_CODE,0x44,0x1d, 199 | 0xab,0x08,NOTE_CODE,0x02,0x1f, 200 | 0xaf,0x08,NOTE_CODE,0x44,0x1d, 201 | 0xb3,0x08,NOTE_CODE,0x02,0x1f, 202 | 0xb7,0x08,NOTE_CODE,0x44,0x1d, 203 | 0xba,0x08,NOTE_CODE,0x02,0x1f, 204 | 0xbe,0x08,NOTE_CODE,0x44,0x1d, 205 | 0xc2,0x08,NOTE_CODE,0x02,0x1f, 206 | 0xc6,0x08,NOTE_CODE,0x44,0x1d, 207 | 0xc9,0x08,NOTE_CODE,0x02,0x1f, 208 | 0xcd,0x08,NOTE_CODE,0x44,0x1d, 209 | 0xd1,0x08,NOTE_CODE,0x02,0x1f, 210 | 0xd5,0x08,NOTE_CODE,0x44,0x1d, 211 | 0xd8,0x08,NOTE_CODE,0x02,0x1f, 212 | 0xdc,0x08,NOTE_CODE,0x44,0x1d, 213 | 0xe0,0x08,NOTE_CODE,0x02,0x1f, 214 | 0xe4,0x08,NOTE_CODE,0x44,0x1d, 215 | 0xe7,0x08,NOTE_CODE,0x02,0x1f, 216 | 0xeb,0x08,NOTE_CODE,0x44,0x1d, 217 | 0xef,0x08,NOTE_CODE,0x02,0x1f, 218 | 0xf3,0x08,NOTE_CODE,0x44,0x1d, 219 | 0xf6,0x08,NOTE_CODE,0x02,0x1f, 220 | 0xfa,0x08,NOTE_CODE,0x44,0x1d, 221 | 0xfe,0x08,NOTE_CODE,0x02,0x1f, 222 | 0x02,0x09,NOTE_CODE,0x44,0x1d, 223 | 0x05,0x09,NOTE_CODE,0x02,0x1f, 224 | 0x09,0x09,NOTE_CODE,0x44,0x1d, 225 | 0x0d,0x09,NOTE_CODE,0x02,0x1f, 226 | 0x11,0x09,NOTE_CODE,0x44,0x1d, 227 | 0x14,0x09,NOTE_CODE,0x02,0x1f, 228 | 0x18,0x09,NOTE_CODE,0x44,0x1d, 229 | 0x1c,0x09,NOTE_CODE,0x02,0x1f, 230 | 0x20,0x09,NOTE_CODE,0x44,0x1d, 231 | 0x23,0x09,NOTE_CODE,0x02,0x1f, 232 | 0x27,0x09,NOTE_CODE,0x44,0x1d, 233 | 0x2b,0x09,NOTE_CODE,0x02,0x1f, 234 | 0x2f,0x09,NOTE_CODE,0x44,0x1d, 235 | 0x32,0x09,NOTE_CODE,0x02,0x1f, 236 | 0x36,0x09,NOTE_CODE,0x44,0x1d, 237 | 0x3a,0x09,NOTE_CODE,0x02,0x1f, 238 | 0x3e,0x09,NOTE_CODE,0x44,0x1d, 239 | 0x41,0x09,NOTE_CODE,0x02,0x1f, 240 | 0x45,0x09,NOTE_CODE,0x44,0x1d, 241 | 0x49,0x09,NOTE_CODE,0x02,0x1f, 242 | 0x4d,0x09,NOTE_CODE,0x44,0x1d, 243 | 0x50,0x09,NOTE_CODE,0x02,0x1f, 244 | 0x54,0x09,NOTE_CODE,0x44,0x1d, 245 | 0x58,0x09,NOTE_CODE,0x02,0x1f, 246 | 0x5c,0x09,NOTE_CODE,0x44,0x1d, 247 | 0x60,0x09,NOTE_CODE,0x02,0x1f, 248 | 0x63,0x09,NOTE_CODE,0x44,0x1d, 249 | 0x67,0x09,NOTE_CODE,0x02,0x1f, 250 | 0x6b,0x09,NOTE_CODE,0x44,0x1d, 251 | 0x6f,0x09,NOTE_CODE,0x02,0x1f, 252 | 0x72,0x09,NOTE_CODE,0x44,0x1d, 253 | 0x76,0x09,NOTE_CODE,0x02,0x1f, 254 | 0x7a,0x09,NOTE_CODE,0x44,0x1d, 255 | 0x7e,0x09,NOTE_CODE,0x02,0x1f, 256 | 0x81,0x09,NOTE_CODE,0x44,0x1d, 257 | 0x85,0x09,NOTE_CODE,0x02,0x1f, 258 | 0x89,0x09,NOTE_CODE,0x44,0x1d, 259 | 0x8d,0x09,NOTE_CODE,0x02,0x1f, 260 | 0x90,0x09,NOTE_CODE,0x44,0x1d, 261 | 0x94,0x09,NOTE_CODE,0x02,0x1f, 262 | 0x98,0x09,NOTE_CODE,0x44,0x1d, 263 | 0x9c,0x09,NOTE_CODE,0x44,0x1d, 264 | 0xa3,0x09,NOTE_CODE,0x13,0x1a, 265 | 0xab,0x09,NOTE_CODE,0x44,0x1d, 266 | 0xb2,0x09,NOTE_CODE,0x02,0x1f, 267 | 0xba,0x09,NOTE_CODE,0x44,0x1d, 268 | 0xc1,0x09,NOTE_CODE,0x13,0x1a, 269 | 0xc9,0x09,NOTE_CODE,0x3a,0x17, 270 | 0xd0,0x09,NOTE_CODE,0xed,0x15, 271 | 0xd8,0x09,NOTE_CODE,0x3a,0x17, 272 | 0xe7,0x09,NOTE_CODE,0x3a,0x17, 273 | 0xe7,0x09,NOTE_CODE,0xa2,0x0e, 274 | 0xf6,0x09,NOTE_CODE,0x3a,0x17, 275 | 0xf6,0x09,NOTE_CODE,0x88,0x13, 276 | 0x05,0x0a,NOTE_CODE,0x67,0x11, 277 | 0x05,0x0a,NOTE_CODE,0x3a,0x17, 278 | 0x14,0x0a,NOTE_CODE,0x81,0x0f, 279 | 0x23,0x0a,NOTE_CODE,0x88,0x13, 280 | 0x32,0x0a,NOTE_CODE,0x13,0x1a, 281 | 0x41,0x0a,NOTE_CODE,0x3a,0x17, 282 | 0x50,0x0a,NOTE_CODE,0xb2,0x14, 283 | 0x8c,0x0a,NOTE_CODE,0xb2,0x14, 284 | 0x9b,0x0a,NOTE_CODE,0x67,0x11, 285 | 0xaa,0x0a,NOTE_CODE,0x3a,0x17, 286 | 0xb9,0x0a,NOTE_CODE,0xb2,0x14, 287 | 0xc8,0x0a,NOTE_CODE,0x88,0x13, 288 | 0xe6,0x0a,NOTE_CODE,0x88,0x13, 289 | 0xed,0x0a,NOTE_CODE,0x13,0x1a, 290 | 0xf5,0x0a,NOTE_CODE,0x9c,0x18, 291 | 0xfc,0x0a,NOTE_CODE,0x13,0x1a, 292 | 0x04,0x0b,NOTE_CODE,0x67,0x11, 293 | 0x22,0x0b,NOTE_CODE,0x67,0x11, 294 | 0x29,0x0b,NOTE_CODE,0x6d,0x10, 295 | 0x31,0x0b,NOTE_CODE,0xa2,0x0e, 296 | 0x38,0x0b,NOTE_CODE,0x67,0x11, 297 | 0x40,0x0b,NOTE_CODE,0x6d,0x10, 298 | 0x47,0x0b,NOTE_CODE,0xa2,0x0e, 299 | 0x4f,0x0b,NOTE_CODE,0x09,0x0d, 300 | 0x56,0x0b,NOTE_CODE,0x6d,0x10, 301 | 0x5e,0x0b,NOTE_CODE,0xa2,0x0e, 302 | 0x65,0x0b,NOTE_CODE,0x09,0x0d, 303 | 0x6d,0x0b,NOTE_CODE,0x4e,0x0c, 304 | 0x74,0x0b,NOTE_CODE,0xa2,0x0e, 305 | 0x7c,0x0b,NOTE_CODE,0x09,0x0d, 306 | 0x83,0x0b,NOTE_CODE,0xc4,0x09, 307 | 0x8b,0x0b,NOTE_CODE,0x59,0x0a, 308 | 0x92,0x0b,NOTE_CODE,0x9d,0x0b, 309 | 0x9a,0x0b,NOTE_CODE,0x09,0x0d, 310 | 0xa1,0x0b,NOTE_CODE,0xc4,0x09, 311 | 0xa9,0x0b,NOTE_CODE,0x09,0x0d, 312 | 0xb0,0x0b,NOTE_CODE,0xa2,0x0e, 313 | 0xb8,0x0b,NOTE_CODE,0x81,0x0f, 314 | 0xbf,0x0b,NOTE_CODE,0x09,0x0d, 315 | 0xc7,0x0b,NOTE_CODE,0x81,0x0f, 316 | 0xce,0x0b,NOTE_CODE,0x67,0x11, 317 | 0xd6,0x0b,NOTE_CODE,0x88,0x13, 318 | 0xdd,0x0b,NOTE_CODE,0xa2,0x0e, 319 | 0xe5,0x0b,NOTE_CODE,0x88,0x13, 320 | 0xec,0x0b,NOTE_CODE,0x67,0x11, 321 | 0xf4,0x0b,NOTE_CODE,0x81,0x0f, 322 | 0x21,0x0c,NOTE_CODE,0xa2,0x0e, 323 | 0x30,0x0c,NOTE_CODE,0x09,0x0d, 324 | 0x3f,0x0c,NOTE_CODE,0x81,0x0f, 325 | 0x4e,0x0c,NOTE_CODE,0xa2,0x0e, 326 | 0x5d,0x0c,NOTE_CODE,0x09,0x0d, 327 | 0x6c,0x0c,NOTE_CODE,0x4e,0x0c, 328 | 0x7b,0x0c,NOTE_CODE,0xa2,0x0e, 329 | 0x8a,0x0c,NOTE_CODE,0xc4,0x09, 330 | 0xa8,0x0c,NOTE_CODE,0x09,0x0d, 331 | 0xb7,0x0c,NOTE_CODE,0xc4,0x09, 332 | 0xc6,0x0c,NOTE_CODE,0xa2,0x0e, 333 | 0xd5,0x0c,NOTE_CODE,0xc4,0x09, 334 | 0xe4,0x0c,NOTE_CODE,0x81,0x0f, 335 | 0xf3,0x0c,NOTE_CODE,0xa2,0x0e, 336 | 0xfa,0x0c,NOTE_CODE,0x09,0x0d, 337 | 0x02,0x0d,NOTE_CODE,0xa2,0x0e, 338 | 0x11,0x0d,NOTE_CODE,0xc4,0x09, 339 | 0x20,0x0d,NOTE_CODE,0x09,0x0d, 340 | 0x2f,0x0d,NOTE_CODE,0xc4,0x09, 341 | 0x36,0x0d,NOTE_CODE,0x09,0x0d, 342 | 0x3e,0x0d,NOTE_CODE,0xa2,0x0e, 343 | 0x4d,0x0d,NOTE_CODE,0xc4,0x09, 344 | 0x54,0x0d,NOTE_CODE,0xa2,0x0e, 345 | 0x5c,0x0d,NOTE_CODE,0x81,0x0f, 346 | 0x6b,0x0d,NOTE_CODE,0xa2,0x0e, 347 | 0x72,0x0d,NOTE_CODE,0x09,0x0d, 348 | 0x7a,0x0d,NOTE_CODE,0xa2,0x0e, 349 | 0x81,0x0d,NOTE_CODE,0xc4,0x09, 350 | 0x89,0x0d,NOTE_CODE,0x88,0x13, 351 | 0x90,0x0d,NOTE_CODE,0x67,0x11, 352 | 0x98,0x0d,NOTE_CODE,0x81,0x0f, 353 | 0x9f,0x0d,NOTE_CODE,0xa2,0x0e, 354 | 0xa7,0x0d,NOTE_CODE,0x09,0x0d, 355 | 0xae,0x0d,NOTE_CODE,0x81,0x0f, 356 | 0xb6,0x0d,NOTE_CODE,0xa2,0x0e, 357 | 0xbd,0x0d,NOTE_CODE,0x09,0x0d, 358 | 0xc5,0x0d,NOTE_CODE,0x4e,0x0c, 359 | 0xcc,0x0d,NOTE_CODE,0xa2,0x0e, 360 | 0xd4,0x0d,NOTE_CODE,0x09,0x0d, 361 | 0xdb,0x0d,NOTE_CODE,0x81,0x0f, 362 | 0xe3,0x0d,NOTE_CODE,0x67,0x11, 363 | 0xea,0x0d,NOTE_CODE,0x88,0x13, 364 | 0xf2,0x0d,NOTE_CODE,0xb2,0x14, 365 | 0xf9,0x0d,NOTE_CODE,0x81,0x0f, 366 | 0x01,0x0e,NOTE_CODE,0xa2,0x0e, 367 | 0x08,0x0e,NOTE_CODE,0x09,0x0d, 368 | 0x10,0x0e,NOTE_CODE,0x4e,0x0c, 369 | 0x17,0x0e,NOTE_CODE,0xa2,0x0e, 370 | 0x1f,0x0e,NOTE_CODE,0x81,0x0f, 371 | 0x26,0x0e,NOTE_CODE,0x67,0x11, 372 | 0x2e,0x0e,NOTE_CODE,0x88,0x13, 373 | 0x35,0x0e,NOTE_CODE,0xa2,0x0e, 374 | 0x3d,0x0e,NOTE_CODE,0x09,0x0d, 375 | 0x44,0x0e,NOTE_CODE,0x9d,0x0b, 376 | 0x4c,0x0e,NOTE_CODE,0x59,0x0a, 377 | 0x53,0x0e,NOTE_CODE,0x09,0x0d, 378 | 0x5b,0x0e,NOTE_CODE,0xa2,0x0e, 379 | 0x62,0x0e,NOTE_CODE,0x81,0x0f, 380 | 0x6a,0x0e,NOTE_CODE,0x67,0x11, 381 | 0x71,0x0e,NOTE_CODE,0x09,0x0d, 382 | 0x79,0x0e,NOTE_CODE,0x9d,0x0b, 383 | 0x80,0x0e,NOTE_CODE,0xf6,0x0a, 384 | 0x88,0x0e,NOTE_CODE,0xc4,0x09, 385 | 0x8f,0x0e,NOTE_CODE,0x9d,0x0b, 386 | 0x97,0x0e,NOTE_CODE,0x09,0x0d, 387 | 0x9e,0x0e,NOTE_CODE,0xa2,0x0e, 388 | 0xa6,0x0e,NOTE_CODE,0x81,0x0f, 389 | 0xad,0x0e,NOTE_CODE,0x88,0x13, 390 | 0xb5,0x0e,NOTE_CODE,0x67,0x11, 391 | 0xbc,0x0e,NOTE_CODE,0x81,0x0f, 392 | 0xc4,0x0e,NOTE_CODE,0xa2,0x0e, 393 | 0xcb,0x0e,NOTE_CODE,0x67,0x11, 394 | 0xd3,0x0e,NOTE_CODE,0x88,0x13, 395 | 0xda,0x0e,NOTE_CODE,0xb2,0x14, 396 | 0xe2,0x0e,NOTE_CODE,0x3a,0x17, 397 | 0xe9,0x0e,NOTE_CODE,0x13,0x1a, 398 | 0xf1,0x0e,NOTE_CODE,0x3a,0x17, 399 | 0xf8,0x0e,NOTE_CODE,0xb2,0x14, 400 | 0x00,0x0f,NOTE_CODE,0x88,0x13, 401 | 0x07,0x0f,NOTE_CODE,0x3a,0x17, 402 | 0x0f,0x0f,NOTE_CODE,0xb2,0x14, 403 | 0x16,0x0f,NOTE_CODE,0x88,0x13, 404 | 0x1e,0x0f,NOTE_CODE,0x67,0x11, 405 | 0x25,0x0f,NOTE_CODE,0x81,0x0f, 406 | 0x2d,0x0f,NOTE_CODE,0xa2,0x0e, 407 | 0x34,0x0f,NOTE_CODE,0x67,0x11, 408 | 0x3c,0x0f,NOTE_CODE,0x81,0x0f, 409 | 0x43,0x0f,NOTE_CODE,0x9d,0x0b, 410 | 0x4b,0x0f,NOTE_CODE,0x09,0x0d, 411 | 0x52,0x0f,NOTE_CODE,0xa2,0x0e, 412 | 0x5a,0x0f,NOTE_CODE,0x81,0x0f, 413 | 0x61,0x0f,NOTE_CODE,0x67,0x11, 414 | 0x69,0x0f,NOTE_CODE,0x81,0x0f, 415 | 0x70,0x0f,NOTE_CODE,0x67,0x11, 416 | 0x78,0x0f,NOTE_CODE,0x88,0x13, 417 | 0x7f,0x0f,NOTE_CODE,0xed,0x15, 418 | 0x87,0x0f,NOTE_CODE,0x88,0x13, 419 | 0x8e,0x0f,NOTE_CODE,0xed,0x15, 420 | 0x96,0x0f,NOTE_CODE,0x3a,0x17, 421 | 0x99,0x0f,NOTE_CODE,0xed,0x15, 422 | 0x9d,0x0f,NOTE_CODE,0x3a,0x17, 423 | 0xa1,0x0f,NOTE_CODE,0xed,0x15, 424 | 0xa5,0x0f,NOTE_CODE,0x3a,0x17, 425 | 0xa8,0x0f,NOTE_CODE,0xed,0x15, 426 | 0xac,0x0f,NOTE_CODE,0x88,0x13, 427 | 0xb0,0x0f,NOTE_CODE,0xed,0x15, 428 | 0xb4,0x0f,NOTE_CODE,0x3a,0x17, 429 | 0xbb,0x0f,NOTE_CODE,0xb2,0x14, 430 | 0xc3,0x0f,NOTE_CODE,0x3a,0x17, 431 | 0xca,0x0f,NOTE_CODE,0x13,0x1a, 432 | 0xd2,0x0f,NOTE_CODE,0x3a,0x17, 433 | 0xd9,0x0f,NOTE_CODE,0xb2,0x14, 434 | 0xe1,0x0f,NOTE_CODE,0x88,0x13, 435 | 0xe8,0x0f,NOTE_CODE,0x67,0x11, 436 | 0xf0,0x0f,NOTE_CODE,0x88,0x13, 437 | 0xf7,0x0f,NOTE_CODE,0x3a,0x17, 438 | 0xff,0x0f,NOTE_CODE,0xb2,0x14, 439 | 0x06,0x10,NOTE_CODE,0x3a,0x17, 440 | 0x0e,0x10,NOTE_CODE,0xa2,0x0e, 441 | 0x15,0x10,NOTE_CODE,0x3a,0x17, 442 | 0x1d,0x10,NOTE_CODE,0xb2,0x14, 443 | 0x24,0x10,NOTE_CODE,0x3a,0x17, 444 | 0x2c,0x10,NOTE_CODE,0x81,0x0f, 445 | 0x33,0x10,NOTE_CODE,0x3a,0x17, 446 | 0x3b,0x10,NOTE_CODE,0xb2,0x14, 447 | 0x42,0x10,NOTE_CODE,0x3a,0x17, 448 | 0x4a,0x10,NOTE_CODE,0xa2,0x0e, 449 | 0x51,0x10,NOTE_CODE,0x3a,0x17, 450 | 0x59,0x10,NOTE_CODE,0xb2,0x14, 451 | 0x60,0x10,NOTE_CODE,0x3a,0x17, 452 | 0x68,0x10,NOTE_CODE,0x88,0x13, 453 | 0x6f,0x10,NOTE_CODE,0x81,0x0f, 454 | 0x77,0x10,NOTE_CODE,0xa2,0x0e, 455 | 0x7e,0x10,NOTE_CODE,0x81,0x0f, 456 | 0x86,0x10,NOTE_CODE,0xb2,0x14, 457 | 0x8d,0x10,NOTE_CODE,0x81,0x0f, 458 | 0x95,0x10,NOTE_CODE,0xa2,0x0e, 459 | 0x9c,0x10,NOTE_CODE,0x81,0x0f, 460 | 0xa4,0x10,NOTE_CODE,0x3a,0x17, 461 | 0xab,0x10,NOTE_CODE,0x81,0x0f, 462 | 0xb3,0x10,NOTE_CODE,0xa2,0x0e, 463 | 0xba,0x10,NOTE_CODE,0x81,0x0f, 464 | 0xc2,0x10,NOTE_CODE,0xb2,0x14, 465 | 0xc9,0x10,NOTE_CODE,0x81,0x0f, 466 | 0xd1,0x10,NOTE_CODE,0xa2,0x0e, 467 | 0xd8,0x10,NOTE_CODE,0x67,0x11, 468 | 0xe0,0x10,NOTE_CODE,0x81,0x0f, 469 | 0xe7,0x10,NOTE_CODE,0x67,0x11, 470 | 0xef,0x10,NOTE_CODE,0x88,0x13, 471 | 0xf6,0x10,NOTE_CODE,0x81,0x0f, 472 | 0xfe,0x10,NOTE_CODE,0xb2,0x14, 473 | 0x05,0x11,NOTE_CODE,0x88,0x13, 474 | 0x0d,0x11,NOTE_CODE,0x67,0x11, 475 | 0x14,0x11,NOTE_CODE,0xb2,0x14, 476 | 0x1c,0x11,NOTE_CODE,0x88,0x13, 477 | 0x23,0x11,NOTE_CODE,0x67,0x11, 478 | 0x2b,0x11,NOTE_CODE,0x88,0x13, 479 | 0x32,0x11,NOTE_CODE,0xb2,0x14, 480 | 0x3a,0x11,NOTE_CODE,0x88,0x13, 481 | 0x41,0x11,NOTE_CODE,0x67,0x11, 482 | 0x49,0x11,NOTE_CODE,0x81,0x0f, 483 | 0x50,0x11,NOTE_CODE,0x88,0x13, 484 | 0x58,0x11,NOTE_CODE,0x67,0x11, 485 | 0x5f,0x11,NOTE_CODE,0x81,0x0f, 486 | 0x67,0x11,NOTE_CODE,0x67,0x11, 487 | 0x6e,0x11,NOTE_CODE,0x88,0x13, 488 | 0x76,0x11,NOTE_CODE,0x67,0x11, 489 | 0x7d,0x11,NOTE_CODE,0x81,0x0f, 490 | 0x85,0x11,NOTE_CODE,0xa2,0x0e, 491 | 0x8c,0x11,NOTE_CODE,0x67,0x11, 492 | 0x94,0x11,NOTE_CODE,0x81,0x0f, 493 | 0x9b,0x11,NOTE_CODE,0xa2,0x0e, 494 | 0xa3,0x11,NOTE_CODE,0x81,0x0f, 495 | 0xaa,0x11,NOTE_CODE,0x67,0x11, 496 | 0xb2,0x11,NOTE_CODE,0x81,0x0f, 497 | 0xb9,0x11,NOTE_CODE,0xa2,0x0e, 498 | 0xc1,0x11,NOTE_CODE,0x09,0x0d, 499 | 0xc8,0x11,NOTE_CODE,0x81,0x0f, 500 | 0xd0,0x11,NOTE_CODE,0xa2,0x0e, 501 | 0xdf,0x11,NOTE_CODE,0x3a,0x17, 502 | 0xfd,0x11,NOTE_CODE,0xcf,0x0d, 503 | 0x0c,0x12,NOTE_CODE,0x09,0x0d, 504 | 0x1b,0x12,NOTE_CODE,0xb2,0x14, 505 | 0x39,0x12,NOTE_CODE,0x09,0x0d, 506 | 0x48,0x12,NOTE_CODE,0x9d,0x0b, 507 | 0x57,0x12,NOTE_CODE,0x88,0x13, 508 | 0x75,0x12,NOTE_CODE,0xa2,0x0e, 509 | 0x84,0x12,NOTE_CODE,0x09,0x0d, 510 | 0x8b,0x12,NOTE_CODE,0xa2,0x0e, 511 | 0x93,0x12,NOTE_CODE,0x67,0x11, 512 | 0x9a,0x12,NOTE_CODE,0x81,0x0f, 513 | 0xa2,0x12,NOTE_CODE,0xa2,0x0e, 514 | 0xa9,0x12,NOTE_CODE,0x09,0x0d, 515 | 0xb1,0x12,NOTE_CODE,0x9d,0x0b, 516 | 0xb8,0x12,NOTE_CODE,0x59,0x0a, 517 | 0xc0,0x12,NOTE_CODE,0xc4,0x09, 518 | 0xc7,0x12,NOTE_CODE,0x59,0x0a, 519 | 0xcf,0x12,NOTE_CODE,0x9d,0x0b, 520 | 0xd6,0x12,NOTE_CODE,0x09,0x0d, 521 | 0xde,0x12,NOTE_CODE,0xa2,0x0e, 522 | 0xe5,0x12,NOTE_CODE,0x81,0x0f, 523 | 0xed,0x12,NOTE_CODE,0x67,0x11, 524 | 0xf4,0x12,NOTE_CODE,0xa2,0x0e, 525 | 0xfc,0x12,NOTE_CODE,0x81,0x0f, 526 | 0x03,0x13,NOTE_CODE,0x9d,0x0b, 527 | 0x0b,0x13,NOTE_CODE,0x09,0x0d, 528 | 0x12,0x13,NOTE_CODE,0xa2,0x0e, 529 | 0x1a,0x13,NOTE_CODE,0x81,0x0f, 530 | 0x21,0x13,NOTE_CODE,0x67,0x11, 531 | 0x29,0x13,NOTE_CODE,0x81,0x0f, 532 | 0x30,0x13,NOTE_CODE,0x67,0x11, 533 | 0x38,0x13,NOTE_CODE,0xed,0x15, 534 | 0x3f,0x13,NOTE_CODE,0x88,0x13, 535 | 0x47,0x13,NOTE_CODE,0xed,0x15, 536 | 0x4e,0x13,NOTE_CODE,0x88,0x13, 537 | 0x56,0x13,NOTE_CODE,0x3a,0x17, 538 | 0x59,0x13,NOTE_CODE,0xed,0x15, 539 | 0x5d,0x13,NOTE_CODE,0x3a,0x17, 540 | 0x61,0x13,NOTE_CODE,0xed,0x15, 541 | 0x65,0x13,NOTE_CODE,0x3a,0x17, 542 | 0x68,0x13,NOTE_CODE,0xed,0x15, 543 | 0x6c,0x13,NOTE_CODE,0x88,0x13, 544 | 0x70,0x13,NOTE_CODE,0xed,0x15, 545 | 0x74,0x13,NOTE_CODE,0x3a,0x17, 546 | 0x7b,0x13,NOTE_CODE,0xb2,0x14, 547 | 0x83,0x13,NOTE_CODE,0x3a,0x17, 548 | 0x8a,0x13,NOTE_CODE,0x13,0x1a, 549 | 0x92,0x13,NOTE_CODE,0x3a,0x17, 550 | 0xa1,0x13,NOTE_CODE,0x3a,0x17, 551 | 0xb0,0x13,NOTE_CODE,0x13,0x1a, 552 | 0xb3,0x13,NOTE_CODE,0x3a,0x17, 553 | 0xb7,0x13,NOTE_CODE,0x13,0x1a, 554 | 0xbb,0x13,NOTE_CODE,0x3a,0x17, 555 | 0xbf,0x13,NOTE_CODE,0x13,0x1a, 556 | 0xc2,0x13,NOTE_CODE,0x3a,0x17, 557 | 0xc6,0x13,NOTE_CODE,0x13,0x1a, 558 | 0xca,0x13,NOTE_CODE,0x3a,0x17, 559 | 0xce,0x13,NOTE_CODE,0x13,0x1a, 560 | 0xd1,0x13,NOTE_CODE,0x3a,0x17, 561 | 0xd5,0x13,NOTE_CODE,0x13,0x1a, 562 | 0xd9,0x13,NOTE_CODE,0x3a,0x17, 563 | 0xdd,0x13,NOTE_CODE,0x13,0x1a, 564 | 0xe0,0x13,NOTE_CODE,0x3a,0x17, 565 | 0xe4,0x13,NOTE_CODE,0x13,0x1a, 566 | 0xe8,0x13,NOTE_CODE,0x3a,0x17, 567 | 0xec,0x13,NOTE_CODE,0x13,0x1a, 568 | 0xef,0x13,NOTE_CODE,0x3a,0x17, 569 | 0xf3,0x13,NOTE_CODE,0x13,0x1a, 570 | 0xf7,0x13,NOTE_CODE,0x3a,0x17, 571 | 0xfb,0x13,NOTE_CODE,0x13,0x1a, 572 | 0xfe,0x13,NOTE_CODE,0x3a,0x17, 573 | 0x02,0x14,NOTE_CODE,0x13,0x1a, 574 | 0x06,0x14,NOTE_CODE,0x3a,0x17, 575 | 0x0a,0x14,NOTE_CODE,0x13,0x1a, 576 | 0x0d,0x14,NOTE_CODE,0x3a,0x17, 577 | 0x11,0x14,NOTE_CODE,0x13,0x1a, 578 | 0x15,0x14,NOTE_CODE,0x3a,0x17, 579 | 0x19,0x14,NOTE_CODE,0x13,0x1a, 580 | 0x1c,0x14,NOTE_CODE,0x3a,0x17, 581 | 0x20,0x14,NOTE_CODE,0x13,0x1a, 582 | 0x24,0x14,NOTE_CODE,0x3a,0x17, 583 | 0x28,0x14,NOTE_CODE,0x13,0x1a, 584 | 0x2b,0x14,NOTE_CODE,0x3a,0x17, 585 | 0x2f,0x14,NOTE_CODE,0x13,0x1a, 586 | 0x33,0x14,NOTE_CODE,0x3a,0x17, 587 | 0x37,0x14,NOTE_CODE,0x13,0x1a, 588 | 0x3a,0x14,NOTE_CODE,0x3a,0x17, 589 | 0x3e,0x14,NOTE_CODE,0x13,0x1a, 590 | 0x42,0x14,NOTE_CODE,0x3a,0x17, 591 | 0x46,0x14,NOTE_CODE,0x13,0x1a, 592 | 0x49,0x14,NOTE_CODE,0x3a,0x17, 593 | 0x4d,0x14,NOTE_CODE,0x13,0x1a, 594 | 0x51,0x14,NOTE_CODE,0x3a,0x17, 595 | 0x55,0x14,NOTE_CODE,0x13,0x1a, 596 | 0x58,0x14,NOTE_CODE,0x3a,0x17, 597 | 0x5c,0x14,NOTE_CODE,0x13,0x1a, 598 | 0x60,0x14,NOTE_CODE,0x3a,0x17, 599 | 0x64,0x14,NOTE_CODE,0x13,0x1a, 600 | 0x67,0x14,NOTE_CODE,0x3a,0x17, 601 | 0x6b,0x14,NOTE_CODE,0x13,0x1a, 602 | 0x6f,0x14,NOTE_CODE,0x3a,0x17, 603 | 0x73,0x14,NOTE_CODE,0x13,0x1a, 604 | 0x76,0x14,NOTE_CODE,0x3a,0x17, 605 | 0x7a,0x14,NOTE_CODE,0x13,0x1a, 606 | 0x7e,0x14,NOTE_CODE,0x3a,0x17, 607 | 0x82,0x14,NOTE_CODE,0x13,0x1a, 608 | 0x85,0x14,NOTE_CODE,0x3a,0x17, 609 | 0x89,0x14,NOTE_CODE,0x13,0x1a, 610 | 0x8d,0x14,NOTE_CODE,0x3a,0x17, 611 | 0x91,0x14,NOTE_CODE,0x13,0x1a, 612 | 0x94,0x14,NOTE_CODE,0x3a,0x17, 613 | 0x98,0x14,NOTE_CODE,0xb2,0x14, 614 | 0x9c,0x14,NOTE_CODE,0x3a,0x17, 615 | 0xa0,0x14,NOTE_CODE,0x3a,0x17, 616 | 0xa7,0x14,NOTE_CODE,0xb2,0x14, 617 | 0xaf,0x14,NOTE_CODE,0x3a,0x17, 618 | 0xb6,0x14,NOTE_CODE,0x13,0x1a, 619 | 0xbe,0x14,NOTE_CODE,0x67,0x11, 620 | 0xd4,0x14,NOTE_CODE,0x44,0x1d, 621 | 0xdc,0x14,NOTE_CODE,0x02,0x1f, 622 | 0xe3,0x14,NOTE_CODE,0x44,0x1d, 623 | 0xeb,0x14,NOTE_CODE,0x02,0x1f, 624 | 0xf2,0x14,NOTE_CODE,0xce,0x22, 625 | 0xfa,0x14,NOTE_CODE,0x02,0x1f, 626 | 0x01,0x15,NOTE_CODE,0x44,0x1d, 627 | 0x09,0x15,NOTE_CODE,0x13,0x1a, 628 | 0x10,0x15,NOTE_CODE,0x3a,0x17, 629 | 0x18,0x15,NOTE_CODE,0xb2,0x14, 630 | 0x1f,0x15,NOTE_CODE,0x88,0x13, 631 | 0x27,0x15,NOTE_CODE,0xb2,0x14, 632 | 0x2e,0x15,NOTE_CODE,0x3a,0x17, 633 | 0x36,0x15,NOTE_CODE,0xb2,0x14, 634 | 0x3d,0x15,NOTE_CODE,0x88,0x13, 635 | 0x45,0x15,NOTE_CODE,0x67,0x11, 636 | 0x4c,0x15,NOTE_CODE,0x81,0x0f, 637 | 0x54,0x15,NOTE_CODE,0x44,0x1d, 638 | 0x5b,0x15,NOTE_CODE,0x13,0x1a, 639 | 0x63,0x15,NOTE_CODE,0x44,0x1d, 640 | 0x6a,0x15,NOTE_CODE,0x02,0x1f, 641 | 0x72,0x15,NOTE_CODE,0x44,0x1d, 642 | 0x79,0x15,NOTE_CODE,0x13,0x1a, 643 | 0x81,0x15,NOTE_CODE,0x3a,0x17, 644 | 0x88,0x15,NOTE_CODE,0xb2,0x14, 645 | 0x90,0x15,NOTE_CODE,0x88,0x13, 646 | 0x97,0x15,NOTE_CODE,0x67,0x11, 647 | 0x9f,0x15,NOTE_CODE,0x88,0x13, 648 | 0xa6,0x15,NOTE_CODE,0xb2,0x14, 649 | 0xae,0x15,NOTE_CODE,0x88,0x13, 650 | 0xb5,0x15,NOTE_CODE,0x67,0x11, 651 | 0xbd,0x15,NOTE_CODE,0x81,0x0f, 652 | 0xc4,0x15,NOTE_CODE,0xa2,0x0e, 653 | 0xcc,0x15,NOTE_CODE,0x13,0x1a, 654 | 0xd3,0x15,NOTE_CODE,0x3a,0x17, 655 | 0xdb,0x15,NOTE_CODE,0x13,0x1a, 656 | 0xe2,0x15,NOTE_CODE,0x9f,0x1b, 657 | 0xea,0x15,NOTE_CODE,0x13,0x1a, 658 | 0xf1,0x15,NOTE_CODE,0x3a,0x17, 659 | 0xf9,0x15,NOTE_CODE,0xb2,0x14, 660 | 0x00,0x16,NOTE_CODE,0x88,0x13, 661 | 0x08,0x16,NOTE_CODE,0x67,0x11, 662 | 0x0f,0x16,NOTE_CODE,0x6d,0x10, 663 | 0x17,0x16,NOTE_CODE,0x67,0x11, 664 | 0x1e,0x16,NOTE_CODE,0x88,0x13, 665 | 0x26,0x16,NOTE_CODE,0x67,0x11, 666 | 0x2d,0x16,NOTE_CODE,0x88,0x13, 667 | 0x35,0x16,NOTE_CODE,0xb2,0x14, 668 | 0x3c,0x16,NOTE_CODE,0x67,0x11, 669 | 0x44,0x16,NOTE_CODE,0x3a,0x17, 670 | 0x62,0x16,NOTE_CODE,0x3a,0x17, 671 | 0x69,0x16,NOTE_CODE,0x9f,0x1b, 672 | 0x71,0x16,NOTE_CODE,0x13,0x1a, 673 | 0x78,0x16,NOTE_CODE,0x3a,0x17, 674 | 0x80,0x16,NOTE_CODE,0xb2,0x14, 675 | 0xbc,0x16,NOTE_CODE,0xb2,0x14, 676 | 0xc3,0x16,NOTE_CODE,0x67,0x11, 677 | 0xcb,0x16,NOTE_CODE,0x88,0x13, 678 | 0xd2,0x16,NOTE_CODE,0xb2,0x14, 679 | 0xda,0x16,NOTE_CODE,0x3a,0x17, 680 | 0xe1,0x16,NOTE_CODE,0x13,0x1a, 681 | 0xe9,0x16,NOTE_CODE,0x9f,0x1b, 682 | 0xf0,0x16,NOTE_CODE,0x3a,0x17, 683 | 0xf8,0x16,NOTE_CODE,0x81,0x0f, 684 | 0xff,0x16,NOTE_CODE,0x67,0x11, 685 | 0x07,0x17,NOTE_CODE,0x88,0x13, 686 | 0x0e,0x17,NOTE_CODE,0x81,0x0f, 687 | 0x16,0x17,NOTE_CODE,0x09,0x0d, 688 | 0x34,0x17,NOTE_CODE,0x67,0x11, 689 | 0x52,0x17,NOTE_CODE,0x13,0x1a, 690 | 0x70,0x17,NOTE_CODE,0xb2,0x14, 691 | 0x9d,0x17,NOTE_CODE,0x88,0x13, 692 | 0xac,0x17,NOTE_CODE,0x67,0x11, 693 | 0xbb,0x17,NOTE_CODE,0xb2,0x14, 694 | 0xca,0x17,NOTE_CODE,0x88,0x13, 695 | 0xd9,0x17,NOTE_CODE,0x67,0x11, 696 | 0xe8,0x17,NOTE_CODE,0x6d,0x10, 697 | 0xf7,0x17,NOTE_CODE,0x88,0x13, 698 | 0x06,0x18,NOTE_CODE,0x09,0x0d, 699 | 0x24,0x18,NOTE_CODE,0x67,0x11, 700 | 0x33,0x18,NOTE_CODE,0x09,0x0d, 701 | 0x42,0x18,NOTE_CODE,0x88,0x13, 702 | 0x51,0x18,NOTE_CODE,0x09,0x0d, 703 | 0x60,0x18,NOTE_CODE,0xb2,0x14, 704 | 0x6f,0x18,NOTE_CODE,0x88,0x13, 705 | 0x76,0x18,NOTE_CODE,0x67,0x11, 706 | 0x7e,0x18,NOTE_CODE,0x88,0x13, 707 | 0x8d,0x18,NOTE_CODE,0x09,0x0d, 708 | 0x9c,0x18,NOTE_CODE,0x67,0x11, 709 | 0xab,0x18,NOTE_CODE,0x09,0x0d, 710 | 0xb2,0x18,NOTE_CODE,0x67,0x11, 711 | 0xba,0x18,NOTE_CODE,0x88,0x13, 712 | 0xc9,0x18,NOTE_CODE,0x09,0x0d, 713 | 0xd0,0x18,NOTE_CODE,0x88,0x13, 714 | 0xd8,0x18,NOTE_CODE,0xb2,0x14, 715 | 0xe7,0x18,NOTE_CODE,0x88,0x13, 716 | 0xee,0x18,NOTE_CODE,0x67,0x11, 717 | 0xf6,0x18,NOTE_CODE,0x88,0x13, 718 | 0xfd,0x18,NOTE_CODE,0x09,0x0d, 719 | 0x05,0x19,NOTE_CODE,0x13,0x1a, 720 | 0x0c,0x19,NOTE_CODE,0x3a,0x17, 721 | 0x14,0x19,NOTE_CODE,0xb2,0x14, 722 | 0x1b,0x19,NOTE_CODE,0x88,0x13, 723 | 0x23,0x19,NOTE_CODE,0x67,0x11, 724 | 0x2a,0x19,NOTE_CODE,0xb2,0x14, 725 | 0x32,0x19,NOTE_CODE,0x88,0x13, 726 | 0x39,0x19,NOTE_CODE,0x67,0x11, 727 | 0x41,0x19,NOTE_CODE,0x6d,0x10, 728 | 0x48,0x19,NOTE_CODE,0x88,0x13, 729 | 0x50,0x19,NOTE_CODE,0x67,0x11, 730 | 0x57,0x19,NOTE_CODE,0x13,0x1a, 731 | 0x5f,0x19,NOTE_CODE,0xb2,0x14, 732 | 0x66,0x19,NOTE_CODE,0x13,0x1a, 733 | 0x6e,0x19,NOTE_CODE,0x67,0x11, 734 | 0x75,0x19,NOTE_CODE,0xb2,0x14, 735 | 0x7d,0x19,NOTE_CODE,0x09,0x0d, 736 | 0x84,0x19,NOTE_CODE,0x81,0x0f, 737 | 0x8c,0x19,NOTE_CODE,0xa2,0x0e, 738 | 0x93,0x19,NOTE_CODE,0x67,0x11, 739 | 0x9b,0x19,NOTE_CODE,0xa2,0x0e, 740 | 0xa2,0x19,NOTE_CODE,0x67,0x11, 741 | 0xaa,0x19,NOTE_CODE,0x9d,0x0b, 742 | 0xb1,0x19,NOTE_CODE,0xa2,0x0e, 743 | 0xb9,0x19,NOTE_CODE,0xb3,0x08, 744 | 0xc0,0x19,NOTE_CODE,0x59,0x0a, 745 | 0xc8,0x19,NOTE_CODE,0xc4,0x09, 746 | 0xcf,0x19,NOTE_CODE,0x3a,0x17, 747 | 0xd7,0x19,NOTE_CODE,0x88,0x13, 748 | 0xde,0x19,NOTE_CODE,0x3a,0x17, 749 | 0xe6,0x19,NOTE_CODE,0x81,0x0f, 750 | 0xed,0x19,NOTE_CODE,0x88,0x13, 751 | 0xf5,0x19,NOTE_CODE,0x9d,0x0b, 752 | 0xfc,0x19,NOTE_CODE,0xa2,0x0e, 753 | 0x04,0x1a,NOTE_CODE,0x09,0x0d, 754 | 0x0b,0x1a,NOTE_CODE,0x81,0x0f, 755 | 0x13,0x1a,NOTE_CODE,0x09,0x0d, 756 | 0x1a,0x1a,NOTE_CODE,0x81,0x0f, 757 | 0x22,0x1a,NOTE_CODE,0x59,0x0a, 758 | 0x29,0x1a,NOTE_CODE,0x09,0x0d, 759 | 0x31,0x1a,NOTE_CODE,0xc0,0x07, 760 | 0x38,0x1a,NOTE_CODE,0xc4,0x09, 761 | 0x40,0x1a,NOTE_CODE,0xb3,0x08, 762 | 0x47,0x1a,NOTE_CODE,0xb2,0x14, 763 | 0x4f,0x1a,NOTE_CODE,0x67,0x11, 764 | 0x56,0x1a,NOTE_CODE,0xb2,0x14, 765 | 0x5e,0x1a,NOTE_CODE,0xa2,0x0e, 766 | 0x65,0x1a,NOTE_CODE,0x67,0x11, 767 | 0x6d,0x1a,NOTE_CODE,0xf6,0x0a, 768 | 0x74,0x1a,NOTE_CODE,0x09,0x0d, 769 | 0x7c,0x1a,NOTE_CODE,0x4e,0x0c, 770 | 0x83,0x1a,NOTE_CODE,0xa2,0x0e, 771 | 0x8b,0x1a,NOTE_CODE,0x4e,0x0c, 772 | 0x92,0x1a,NOTE_CODE,0xc4,0x09, 773 | 0x9a,0x1a,NOTE_CODE,0xf6,0x0a, 774 | 0xa1,0x1a,NOTE_CODE,0x51,0x07, 775 | 0xa9,0x1a,NOTE_CODE,0xb3,0x08, 776 | 0xb8,0x1a,NOTE_CODE,0xc0,0x07, 777 | 0xc7,0x1a,NOTE_CODE,0x09,0x0d, 778 | 0xd6,0x1a,NOTE_CODE,0x51,0x07, 779 | 0xe5,0x1a,NOTE_CODE,0x4e,0x0c, 780 | 0xf4,0x1a,NOTE_CODE,0x09,0x0d, 781 | 0x30,0x1b,NOTE_CODE,0x09,0x0d, 782 | 0x37,0x1b,NOTE_CODE,0x81,0x0f, 783 | 0x3f,0x1b,NOTE_CODE,0xa2,0x0e, 784 | 0x46,0x1b,NOTE_CODE,0x09,0x0d, 785 | 0x4e,0x1b,NOTE_CODE,0x88,0x13, 786 | 0x55,0x1b,NOTE_CODE,0xa2,0x0e, 787 | 0x5d,0x1b,NOTE_CODE,0xc4,0x09, 788 | 0x64,0x1b,NOTE_CODE,0x67,0x11, 789 | 0x6c,0x1b,NOTE_CODE,0x81,0x0f, 790 | 0x73,0x1b,NOTE_CODE,0x88,0x13, 791 | 0x7b,0x1b,NOTE_CODE,0x67,0x11, 792 | 0x82,0x1b,NOTE_CODE,0x81,0x0f, 793 | 0x8a,0x1b,NOTE_CODE,0x3a,0x17, 794 | 0x91,0x1b,NOTE_CODE,0x67,0x11, 795 | 0x99,0x1b,NOTE_CODE,0x9d,0x0b, 796 | 0xa0,0x1b,NOTE_CODE,0xb2,0x14, 797 | 0xa8,0x1b,NOTE_CODE,0x88,0x13, 798 | 0xaf,0x1b,NOTE_CODE,0x3a,0x17, 799 | 0xb7,0x1b,NOTE_CODE,0xb2,0x14, 800 | 0xbe,0x1b,NOTE_CODE,0x88,0x13, 801 | 0xc6,0x1b,NOTE_CODE,0x13,0x1a, 802 | 0xcd,0x1b,NOTE_CODE,0x88,0x13, 803 | 0xd5,0x1b,NOTE_CODE,0x09,0x0d, 804 | 0xdc,0x1b,NOTE_CODE,0x3a,0x17, 805 | 0xe4,0x1b,NOTE_CODE,0xed,0x15, 806 | 0xeb,0x1b,NOTE_CODE,0x13,0x1a, 807 | 0xf3,0x1b,NOTE_CODE,0x3a,0x17, 808 | 0xfa,0x1b,NOTE_CODE,0xed,0x15, 809 | 0x02,0x1c,NOTE_CODE,0x44,0x1d, 810 | 0x09,0x1c,NOTE_CODE,0xed,0x15, 811 | 0x11,0x1c,NOTE_CODE,0xa2,0x0e, 812 | 0x18,0x1c,NOTE_CODE,0x13,0x1a, 813 | 0x20,0x1c,NOTE_CODE,0x3a,0x17, 814 | 0x3e,0x1c,NOTE_CODE,0x13,0x1a, 815 | 0x4d,0x1c,NOTE_CODE,0x44,0x1d, 816 | 0x5c,0x1c,NOTE_CODE,0x02,0x1f, 817 | 0x98,0x1c,NOTE_CODE,0xb2,0x14, 818 | 0x98,0x1c,NOTE_CODE,0x02,0x1f, 819 | 0xb6,0x1c,NOTE_CODE,0x44,0x1d, 820 | 0xd4,0x1c,NOTE_CODE,0x88,0x13, 821 | 0xf2,0x1c,NOTE_CODE,0x13,0x1a, 822 | 0x10,0x1d,NOTE_CODE,0x67,0x11, 823 | 0x10,0x1d,NOTE_CODE,0x13,0x1a, 824 | 0x2e,0x1d,NOTE_CODE,0x9c,0x18, 825 | 0x4c,0x1d,NOTE_CODE,0x13,0x1a, 826 | 0x97,0x1d,NOTE_CODE,0x88,0x13, 827 | 0xa6,0x1d,NOTE_CODE,0x13,0x1a, 828 | 0xb5,0x1d,NOTE_CODE,0x44,0x1d, 829 | 0xc4,0x1d,NOTE_CODE,0x02,0x1f, 830 | 0xcb,0x1d,NOTE_CODE,0x44,0x1d, 831 | 0xd3,0x1d,NOTE_CODE,0x13,0x1a, 832 | 0xda,0x1d,NOTE_CODE,0x44,0x1d, 833 | 0xe2,0x1d,NOTE_CODE,0x9c,0x18, 834 | 0xe9,0x1d,NOTE_CODE,0x13,0x1a, 835 | 0xf1,0x1d,NOTE_CODE,0x9c,0x18, 836 | 0xf8,0x1d,NOTE_CODE,0x13,0x1a, 837 | 0x00,0x1e,NOTE_CODE,0x44,0x1d, 838 | 0x07,0x1e,NOTE_CODE,0x13,0x1a, 839 | 0x0f,0x1e,NOTE_CODE,0x9c,0x18, 840 | 0x16,0x1e,NOTE_CODE,0xed,0x15, 841 | 0x1e,0x1e,NOTE_CODE,0x88,0x13, 842 | 0x25,0x1e,NOTE_CODE,0x67,0x11, 843 | 0x2d,0x1e,NOTE_CODE,0x81,0x0f, 844 | 0x34,0x1e,NOTE_CODE,0xa2,0x0e, 845 | 0x3c,0x1e,NOTE_CODE,0x81,0x0f, 846 | 0x43,0x1e,NOTE_CODE,0x88,0x13, 847 | 0x4b,0x1e,NOTE_CODE,0x67,0x11, 848 | 0x52,0x1e,NOTE_CODE,0x88,0x13, 849 | 0x5a,0x1e,NOTE_CODE,0x4e,0x0c, 850 | 0x61,0x1e,NOTE_CODE,0x88,0x13, 851 | 0x69,0x1e,NOTE_CODE,0x67,0x11, 852 | 0x70,0x1e,NOTE_CODE,0x88,0x13, 853 | 0x78,0x1e,NOTE_CODE,0x81,0x0f, 854 | 0x7f,0x1e,NOTE_CODE,0x88,0x13, 855 | 0x87,0x1e,NOTE_CODE,0x67,0x11, 856 | 0x8e,0x1e,NOTE_CODE,0x88,0x13, 857 | 0x96,0x1e,NOTE_CODE,0x4e,0x0c, 858 | 0x9d,0x1e,NOTE_CODE,0x88,0x13, 859 | 0xa5,0x1e,NOTE_CODE,0x67,0x11, 860 | 0xac,0x1e,NOTE_CODE,0x88,0x13, 861 | 0xb4,0x1e,NOTE_CODE,0x81,0x0f, 862 | 0xbb,0x1e,NOTE_CODE,0x09,0x0d, 863 | 0xc3,0x1e,NOTE_CODE,0x4e,0x0c, 864 | 0xca,0x1e,NOTE_CODE,0x09,0x0d, 865 | 0xd2,0x1e,NOTE_CODE,0x67,0x11, 866 | 0xd9,0x1e,NOTE_CODE,0x09,0x0d, 867 | 0xe1,0x1e,NOTE_CODE,0x4e,0x0c, 868 | 0xe8,0x1e,NOTE_CODE,0x09,0x0d, 869 | 0xf0,0x1e,NOTE_CODE,0x88,0x13, 870 | 0xf7,0x1e,NOTE_CODE,0x09,0x0d, 871 | 0xff,0x1e,NOTE_CODE,0x4e,0x0c, 872 | 0x06,0x1f,NOTE_CODE,0x09,0x0d, 873 | 0x0e,0x1f,NOTE_CODE,0x67,0x11, 874 | 0x15,0x1f,NOTE_CODE,0x09,0x0d, 875 | 0x1d,0x1f,NOTE_CODE,0x4e,0x0c, 876 | 0x24,0x1f,NOTE_CODE,0x09,0x0d, 877 | 0x2c,0x1f,NOTE_CODE,0x81,0x0f, 878 | 0x3b,0x1f,NOTE_CODE,0x13,0x1a, 879 | 0x4a,0x1f,NOTE_CODE,0xa2,0x0e, 880 | 0x59,0x1f,NOTE_CODE,0x9c,0x18, 881 | 0x68,0x1f,NOTE_CODE,0x13,0x1a, 882 | 0xfe,0x1f,REWIND_CODE}; 883 | static unsigned char music_v2[]={ 884 | 0x00,0x00,ENVELOPE_CODE,0x11,0x00,0x00,0x1B,0x00, 885 | 0x58,0x02,NOTE_CODE,0xc4,0x09, 886 | 0x76,0x02,NOTE_CODE,0xa2,0x0e, 887 | 0x94,0x02,NOTE_CODE,0x9d,0x0b, 888 | 0xc1,0x02,NOTE_CODE,0xf6,0x0a, 889 | 0xd0,0x02,NOTE_CODE,0xc4,0x09, 890 | 0xdf,0x02,NOTE_CODE,0x9d,0x0b, 891 | 0xee,0x02,NOTE_CODE,0xf6,0x0a, 892 | 0xfc,0x02,NOTE_CODE,0xc4,0x09, 893 | 0x0b,0x03,NOTE_CODE,0x37,0x09, 894 | 0x1a,0x03,NOTE_CODE,0xf6,0x0a, 895 | 0x29,0x03,NOTE_CODE,0x51,0x07, 896 | 0x47,0x03,NOTE_CODE,0xc4,0x09, 897 | 0x56,0x03,NOTE_CODE,0x51,0x07, 898 | 0x65,0x03,NOTE_CODE,0xf6,0x0a, 899 | 0x74,0x03,NOTE_CODE,0x51,0x07, 900 | 0x83,0x03,NOTE_CODE,0x9d,0x0b, 901 | 0x92,0x03,NOTE_CODE,0xf6,0x0a, 902 | 0x9a,0x03,NOTE_CODE,0xc4,0x09, 903 | 0xa1,0x03,NOTE_CODE,0xf6,0x0a, 904 | 0xb0,0x03,NOTE_CODE,0x51,0x07, 905 | 0xbf,0x03,NOTE_CODE,0xc4,0x09, 906 | 0xce,0x03,NOTE_CODE,0x51,0x07, 907 | 0xd6,0x03,NOTE_CODE,0xc4,0x09, 908 | 0xdd,0x03,NOTE_CODE,0xf6,0x0a, 909 | 0xec,0x03,NOTE_CODE,0x51,0x07, 910 | 0xf4,0x03,NOTE_CODE,0xf6,0x0a, 911 | 0xfb,0x03,NOTE_CODE,0x9d,0x0b, 912 | 0x0a,0x04,NOTE_CODE,0xf6,0x0a, 913 | 0x12,0x04,NOTE_CODE,0xc4,0x09, 914 | 0x19,0x04,NOTE_CODE,0xf6,0x0a, 915 | 0x21,0x04,NOTE_CODE,0x51,0x07, 916 | 0x28,0x04,NOTE_CODE,0xa2,0x0e, 917 | 0x30,0x04,NOTE_CODE,0x09,0x0d, 918 | 0x37,0x04,NOTE_CODE,0x9d,0x0b, 919 | 0x3f,0x04,NOTE_CODE,0xf6,0x0a, 920 | 0x46,0x04,NOTE_CODE,0xc4,0x09, 921 | 0x4e,0x04,NOTE_CODE,0x9d,0x0b, 922 | 0x55,0x04,NOTE_CODE,0xf6,0x0a, 923 | 0x5d,0x04,NOTE_CODE,0xc4,0x09, 924 | 0x64,0x04,NOTE_CODE,0x37,0x09, 925 | 0x6c,0x04,NOTE_CODE,0xf6,0x0a, 926 | 0x73,0x04,NOTE_CODE,0xc4,0x09, 927 | 0x7b,0x04,NOTE_CODE,0x51,0x07, 928 | 0x82,0x04,NOTE_CODE,0xc4,0x09, 929 | 0x8a,0x04,NOTE_CODE,0xf6,0x0a, 930 | 0x91,0x04,NOTE_CODE,0x9d,0x0b, 931 | 0x99,0x04,NOTE_CODE,0x09,0x0d, 932 | 0xa0,0x04,NOTE_CODE,0xa2,0x0e, 933 | 0xa8,0x04,NOTE_CODE,0x6d,0x10, 934 | 0xaf,0x04,NOTE_CODE,0x67,0x11, 935 | 0xb7,0x04,NOTE_CODE,0x81,0x0f, 936 | 0xbe,0x04,NOTE_CODE,0x67,0x11, 937 | 0xc6,0x04,NOTE_CODE,0x88,0x13, 938 | 0xcd,0x04,NOTE_CODE,0x67,0x11, 939 | 0xd5,0x04,NOTE_CODE,0x81,0x0f, 940 | 0xdc,0x04,NOTE_CODE,0xa2,0x0e, 941 | 0xe4,0x04,NOTE_CODE,0x67,0x11, 942 | 0xeb,0x04,NOTE_CODE,0x81,0x0f, 943 | 0xf3,0x04,NOTE_CODE,0xa2,0x0e, 944 | 0xfa,0x04,NOTE_CODE,0x81,0x0f, 945 | 0x02,0x05,NOTE_CODE,0x67,0x11, 946 | 0x09,0x05,NOTE_CODE,0x81,0x0f, 947 | 0x11,0x05,NOTE_CODE,0xa2,0x0e, 948 | 0x18,0x05,NOTE_CODE,0x09,0x0d, 949 | 0x20,0x05,NOTE_CODE,0x81,0x0f, 950 | 0x27,0x05,NOTE_CODE,0xa2,0x0e, 951 | 0x36,0x05,NOTE_CODE,0x09,0x0d, 952 | 0x45,0x05,NOTE_CODE,0x4e,0x0c, 953 | 0x54,0x05,NOTE_CODE,0xc4,0x09, 954 | 0x63,0x05,NOTE_CODE,0x09,0x0d, 955 | 0xae,0x05,NOTE_CODE,0xc4,0x09, 956 | 0xbd,0x05,NOTE_CODE,0x09,0x0d, 957 | 0xcc,0x05,NOTE_CODE,0xa2,0x0e, 958 | 0xdb,0x05,NOTE_CODE,0x81,0x0f, 959 | 0xe3,0x05,NOTE_CODE,0x67,0x11, 960 | 0xea,0x05,NOTE_CODE,0x81,0x0f, 961 | 0xf2,0x05,NOTE_CODE,0x67,0x11, 962 | 0xf9,0x05,NOTE_CODE,0x88,0x13, 963 | 0xfd,0x05,NOTE_CODE,0x67,0x11, 964 | 0x01,0x06,NOTE_CODE,0x88,0x13, 965 | 0x05,0x06,NOTE_CODE,0x67,0x11, 966 | 0x08,0x06,NOTE_CODE,0x88,0x13, 967 | 0x0c,0x06,NOTE_CODE,0x67,0x11, 968 | 0x10,0x06,NOTE_CODE,0x81,0x0f, 969 | 0x14,0x06,NOTE_CODE,0x67,0x11, 970 | 0x17,0x06,NOTE_CODE,0x88,0x13, 971 | 0x1f,0x06,NOTE_CODE,0x67,0x11, 972 | 0x26,0x06,NOTE_CODE,0x88,0x13, 973 | 0x2e,0x06,NOTE_CODE,0xb2,0x14, 974 | 0x35,0x06,NOTE_CODE,0x88,0x13, 975 | 0x3d,0x06,NOTE_CODE,0x67,0x11, 976 | 0x44,0x06,NOTE_CODE,0x81,0x0f, 977 | 0x4c,0x06,NOTE_CODE,0xa2,0x0e, 978 | 0x53,0x06,NOTE_CODE,0xc4,0x09, 979 | 0x71,0x06,NOTE_CODE,0xc4,0x09, 980 | 0x8f,0x06,NOTE_CODE,0xc4,0x09, 981 | 0xad,0x06,NOTE_CODE,0xb3,0x08, 982 | 0xcb,0x06,NOTE_CODE,0x09,0x0d, 983 | 0xd3,0x06,NOTE_CODE,0x4e,0x0c, 984 | 0xda,0x06,NOTE_CODE,0x09,0x0d, 985 | 0xf1,0x06,NOTE_CODE,0x09,0x0d, 986 | 0xf8,0x06,NOTE_CODE,0x4e,0x0c, 987 | 0x00,0x07,NOTE_CODE,0x09,0x0d, 988 | 0x0f,0x07,NOTE_CODE,0x09,0x0d, 989 | 0x16,0x07,NOTE_CODE,0x4e,0x0c, 990 | 0x1e,0x07,NOTE_CODE,0x09,0x0d, 991 | 0x34,0x07,NOTE_CODE,0x09,0x0d, 992 | 0x3c,0x07,NOTE_CODE,0x4e,0x0c, 993 | 0x43,0x07,NOTE_CODE,0x09,0x0d, 994 | 0x4b,0x07,NOTE_CODE,0xc4,0x09, 995 | 0x69,0x07,NOTE_CODE,0xb3,0x08, 996 | 0x7f,0x07,NOTE_CODE,0xc0,0x07, 997 | 0x33,0x08,NOTE_CODE,0x9d,0x0b, 998 | 0x3b,0x08,NOTE_CODE,0x09,0x0d, 999 | 0x42,0x08,NOTE_CODE,0x9d,0x0b, 1000 | 0x4a,0x08,NOTE_CODE,0x09,0x0d, 1001 | 0x51,0x08,NOTE_CODE,0xa2,0x0e, 1002 | 0x55,0x08,NOTE_CODE,0x09,0x0d, 1003 | 0x59,0x08,NOTE_CODE,0xa2,0x0e, 1004 | 0x5d,0x08,NOTE_CODE,0x09,0x0d, 1005 | 0x60,0x08,NOTE_CODE,0xa2,0x0e, 1006 | 0x64,0x08,NOTE_CODE,0x09,0x0d, 1007 | 0x68,0x08,NOTE_CODE,0x9d,0x0b, 1008 | 0x6c,0x08,NOTE_CODE,0x09,0x0d, 1009 | 0x6f,0x08,NOTE_CODE,0xa2,0x0e, 1010 | 0x77,0x08,NOTE_CODE,0x09,0x0d, 1011 | 0x7e,0x08,NOTE_CODE,0xa2,0x0e, 1012 | 0x86,0x08,NOTE_CODE,0x81,0x0f, 1013 | 0x8d,0x08,NOTE_CODE,0xa2,0x0e, 1014 | 0x95,0x08,NOTE_CODE,0x09,0x0d, 1015 | 0x9c,0x08,NOTE_CODE,0x9d,0x0b, 1016 | 0xa4,0x08,NOTE_CODE,0xf6,0x0a, 1017 | 0xab,0x08,NOTE_CODE,0x9d,0x0b, 1018 | 0xb3,0x08,NOTE_CODE,0xa2,0x0e, 1019 | 0xba,0x08,NOTE_CODE,0x09,0x0d, 1020 | 0xc2,0x08,NOTE_CODE,0xa2,0x0e, 1021 | 0xc9,0x08,NOTE_CODE,0x37,0x09, 1022 | 0xd1,0x08,NOTE_CODE,0xa2,0x0e, 1023 | 0xd8,0x08,NOTE_CODE,0x09,0x0d, 1024 | 0xe0,0x08,NOTE_CODE,0xa2,0x0e, 1025 | 0xe7,0x08,NOTE_CODE,0xc4,0x09, 1026 | 0xef,0x08,NOTE_CODE,0xa2,0x0e, 1027 | 0xf6,0x08,NOTE_CODE,0x09,0x0d, 1028 | 0xfe,0x08,NOTE_CODE,0xa2,0x0e, 1029 | 0x05,0x09,NOTE_CODE,0x37,0x09, 1030 | 0x0d,0x09,NOTE_CODE,0xa2,0x0e, 1031 | 0x14,0x09,NOTE_CODE,0x09,0x0d, 1032 | 0x1c,0x09,NOTE_CODE,0xa2,0x0e, 1033 | 0x23,0x09,NOTE_CODE,0x9d,0x0b, 1034 | 0x2b,0x09,NOTE_CODE,0xc4,0x09, 1035 | 0x32,0x09,NOTE_CODE,0x37,0x09, 1036 | 0x3a,0x09,NOTE_CODE,0xc4,0x09, 1037 | 0x41,0x09,NOTE_CODE,0x09,0x0d, 1038 | 0x49,0x09,NOTE_CODE,0xc4,0x09, 1039 | 0x50,0x09,NOTE_CODE,0x37,0x09, 1040 | 0x58,0x09,NOTE_CODE,0xc4,0x09, 1041 | 0x60,0x09,NOTE_CODE,0xa2,0x0e, 1042 | 0x67,0x09,NOTE_CODE,0xc4,0x09, 1043 | 0x6f,0x09,NOTE_CODE,0x37,0x09, 1044 | 0x76,0x09,NOTE_CODE,0xc4,0x09, 1045 | 0x7e,0x09,NOTE_CODE,0x09,0x0d, 1046 | 0x85,0x09,NOTE_CODE,0xc4,0x09, 1047 | 0x8d,0x09,NOTE_CODE,0x37,0x09, 1048 | 0x94,0x09,NOTE_CODE,0xc4,0x09, 1049 | 0x9c,0x09,NOTE_CODE,0x9d,0x0b, 1050 | 0xa3,0x09,NOTE_CODE,0xf6,0x0a, 1051 | 0xa7,0x09,NOTE_CODE,0xc4,0x09, 1052 | 0xab,0x09,NOTE_CODE,0xc4,0x09, 1053 | 0xae,0x09,NOTE_CODE,0x37,0x09, 1054 | 0xb2,0x09,NOTE_CODE,0xc4,0x09, 1055 | 0xb6,0x09,NOTE_CODE,0x37,0x09, 1056 | 0xba,0x09,NOTE_CODE,0xc4,0x09, 1057 | 0xbd,0x09,NOTE_CODE,0x37,0x09, 1058 | 0xc1,0x09,NOTE_CODE,0xc4,0x09, 1059 | 0xc5,0x09,NOTE_CODE,0x37,0x09, 1060 | 0xc9,0x09,NOTE_CODE,0xc4,0x09, 1061 | 0xcc,0x09,NOTE_CODE,0x37,0x09, 1062 | 0xd0,0x09,NOTE_CODE,0x36,0x08, 1063 | 0xd4,0x09,NOTE_CODE,0x37,0x09, 1064 | 0xd8,0x09,NOTE_CODE,0xc4,0x09, 1065 | 0xdf,0x09,NOTE_CODE,0xb3,0x08, 1066 | 0xe7,0x09,NOTE_CODE,0xc4,0x09, 1067 | 0xee,0x09,NOTE_CODE,0xf6,0x0a, 1068 | 0xf6,0x09,NOTE_CODE,0xc4,0x09, 1069 | 0xfd,0x09,NOTE_CODE,0xb3,0x08, 1070 | 0x05,0x0a,NOTE_CODE,0xc0,0x07, 1071 | 0x0c,0x0a,NOTE_CODE,0x51,0x07, 1072 | 0x23,0x0a,NOTE_CODE,0x81,0x0f, 1073 | 0x50,0x0a,NOTE_CODE,0x81,0x0f, 1074 | 0x5f,0x0a,NOTE_CODE,0x09,0x0d, 1075 | 0x6e,0x0a,NOTE_CODE,0x67,0x11, 1076 | 0x7d,0x0a,NOTE_CODE,0x81,0x0f, 1077 | 0x8c,0x0a,NOTE_CODE,0xa2,0x0e, 1078 | 0xc8,0x0a,NOTE_CODE,0xa2,0x0e, 1079 | 0xe6,0x0a,NOTE_CODE,0x09,0x0d, 1080 | 0x22,0x0b,NOTE_CODE,0x4e,0x0c, 1081 | 0x40,0x0b,NOTE_CODE,0x09,0x0d, 1082 | 0x00,0x0f,NOTE_CODE,0xc0,0x07, 1083 | 0x1e,0x0f,NOTE_CODE,0x9d,0x0b, 1084 | 0x3c,0x0f,NOTE_CODE,0xc4,0x09, 1085 | 0x69,0x0f,NOTE_CODE,0xb3,0x08, 1086 | 0xe1,0x0f,NOTE_CODE,0x9d,0x0b, 1087 | 0xf0,0x0f,NOTE_CODE,0x9d,0x0b, 1088 | 0x68,0x10,NOTE_CODE,0x9d,0x0b, 1089 | 0xe0,0x10,NOTE_CODE,0x9d,0x0b, 1090 | 0xd0,0x11,NOTE_CODE,0x9d,0x0b, 1091 | 0xd7,0x11,NOTE_CODE,0x59,0x0a, 1092 | 0xdf,0x11,NOTE_CODE,0x9d,0x0b, 1093 | 0xe6,0x11,NOTE_CODE,0x09,0x0d, 1094 | 0xee,0x11,NOTE_CODE,0x9d,0x0b, 1095 | 0xf5,0x11,NOTE_CODE,0x59,0x0a, 1096 | 0xfd,0x11,NOTE_CODE,0xc4,0x09, 1097 | 0x04,0x12,NOTE_CODE,0x9d,0x0b, 1098 | 0x0c,0x12,NOTE_CODE,0x59,0x0a, 1099 | 0x13,0x12,NOTE_CODE,0xc4,0x09, 1100 | 0x1b,0x12,NOTE_CODE,0x59,0x0a, 1101 | 0x22,0x12,NOTE_CODE,0x9d,0x0b, 1102 | 0x2a,0x12,NOTE_CODE,0x59,0x0a, 1103 | 0x31,0x12,NOTE_CODE,0xc4,0x09, 1104 | 0x39,0x12,NOTE_CODE,0xb3,0x08, 1105 | 0x40,0x12,NOTE_CODE,0x59,0x0a, 1106 | 0x48,0x12,NOTE_CODE,0xc4,0x09, 1107 | 0x4f,0x12,NOTE_CODE,0xb3,0x08, 1108 | 0x57,0x12,NOTE_CODE,0xc4,0x09, 1109 | 0x5e,0x12,NOTE_CODE,0x59,0x0a, 1110 | 0x66,0x12,NOTE_CODE,0xc4,0x09, 1111 | 0x6d,0x12,NOTE_CODE,0xb3,0x08, 1112 | 0x75,0x12,NOTE_CODE,0xc0,0x07, 1113 | 0x7c,0x12,NOTE_CODE,0xc4,0x09, 1114 | 0x84,0x12,NOTE_CODE,0xb3,0x08, 1115 | 0x8b,0x12,NOTE_CODE,0xc0,0x07, 1116 | 0x93,0x12,NOTE_CODE,0xb3,0x08, 1117 | 0x9a,0x12,NOTE_CODE,0xc4,0x09, 1118 | 0xa2,0x12,NOTE_CODE,0xb3,0x08, 1119 | 0xa9,0x12,NOTE_CODE,0xc0,0x07, 1120 | 0xb1,0x12,NOTE_CODE,0x51,0x07, 1121 | 0xb8,0x12,NOTE_CODE,0xb3,0x08, 1122 | 0xc0,0x12,NOTE_CODE,0xc0,0x07, 1123 | 0xc7,0x12,NOTE_CODE,0xb3,0x08, 1124 | 0xcf,0x12,NOTE_CODE,0xc4,0x09, 1125 | 0xd6,0x12,NOTE_CODE,0xc0,0x07, 1126 | 0xde,0x12,NOTE_CODE,0xb3,0x08, 1127 | 0xe5,0x12,NOTE_CODE,0xc4,0x09, 1128 | 0xed,0x12,NOTE_CODE,0x59,0x0a, 1129 | 0xf4,0x12,NOTE_CODE,0xb3,0x08, 1130 | 0xfc,0x12,NOTE_CODE,0xc4,0x09, 1131 | 0x03,0x13,NOTE_CODE,0xb3,0x08, 1132 | 0x0b,0x13,NOTE_CODE,0xc0,0x07, 1133 | 0x12,0x13,NOTE_CODE,0xb3,0x08, 1134 | 0x1a,0x13,NOTE_CODE,0xc4,0x09, 1135 | 0x21,0x13,NOTE_CODE,0x59,0x0a, 1136 | 0x29,0x13,NOTE_CODE,0xc4,0x09, 1137 | 0x30,0x13,NOTE_CODE,0x59,0x0a, 1138 | 0x38,0x13,NOTE_CODE,0x9d,0x0b, 1139 | 0x3f,0x13,NOTE_CODE,0x09,0x0d, 1140 | 0x47,0x13,NOTE_CODE,0x9d,0x0b, 1141 | 0x4e,0x13,NOTE_CODE,0x09,0x0d, 1142 | 0x56,0x13,NOTE_CODE,0xa2,0x0e, 1143 | 0x59,0x13,NOTE_CODE,0x09,0x0d, 1144 | 0x5d,0x13,NOTE_CODE,0xa2,0x0e, 1145 | 0x61,0x13,NOTE_CODE,0x09,0x0d, 1146 | 0x65,0x13,NOTE_CODE,0xa2,0x0e, 1147 | 0x68,0x13,NOTE_CODE,0x09,0x0d, 1148 | 0x6c,0x13,NOTE_CODE,0x9d,0x0b, 1149 | 0x70,0x13,NOTE_CODE,0x09,0x0d, 1150 | 0x74,0x13,NOTE_CODE,0xa2,0x0e, 1151 | 0x7b,0x13,NOTE_CODE,0x09,0x0d, 1152 | 0x83,0x13,NOTE_CODE,0xa2,0x0e, 1153 | 0x8a,0x13,NOTE_CODE,0x81,0x0f, 1154 | 0x92,0x13,NOTE_CODE,0xa2,0x0e, 1155 | 0x99,0x13,NOTE_CODE,0x09,0x0d, 1156 | 0xa1,0x13,NOTE_CODE,0x9d,0x0b, 1157 | 0xa8,0x13,NOTE_CODE,0x59,0x0a, 1158 | 0xb0,0x13,NOTE_CODE,0xc4,0x09, 1159 | 0xb7,0x13,NOTE_CODE,0x9d,0x0b, 1160 | 0xbf,0x13,NOTE_CODE,0x59,0x0a, 1161 | 0xc6,0x13,NOTE_CODE,0x9d,0x0b, 1162 | 0xce,0x13,NOTE_CODE,0x51,0x07, 1163 | 0xd5,0x13,NOTE_CODE,0x9d,0x0b, 1164 | 0xdd,0x13,NOTE_CODE,0x59,0x0a, 1165 | 0xe4,0x13,NOTE_CODE,0x9d,0x0b, 1166 | 0xec,0x13,NOTE_CODE,0xc0,0x07, 1167 | 0xf3,0x13,NOTE_CODE,0x9d,0x0b, 1168 | 0xfb,0x13,NOTE_CODE,0x59,0x0a, 1169 | 0x02,0x14,NOTE_CODE,0x9d,0x0b, 1170 | 0x0a,0x14,NOTE_CODE,0x51,0x07, 1171 | 0x11,0x14,NOTE_CODE,0x9d,0x0b, 1172 | 0x19,0x14,NOTE_CODE,0x59,0x0a, 1173 | 0x20,0x14,NOTE_CODE,0x9d,0x0b, 1174 | 0x28,0x14,NOTE_CODE,0xc4,0x09, 1175 | 0x2f,0x14,NOTE_CODE,0x81,0x0f, 1176 | 0x37,0x14,NOTE_CODE,0xa2,0x0e, 1177 | 0x3e,0x14,NOTE_CODE,0x81,0x0f, 1178 | 0x46,0x14,NOTE_CODE,0x59,0x0a, 1179 | 0x4d,0x14,NOTE_CODE,0x81,0x0f, 1180 | 0x55,0x14,NOTE_CODE,0xa2,0x0e, 1181 | 0x5c,0x14,NOTE_CODE,0x81,0x0f, 1182 | 0x64,0x14,NOTE_CODE,0x9d,0x0b, 1183 | 0x6b,0x14,NOTE_CODE,0x81,0x0f, 1184 | 0x73,0x14,NOTE_CODE,0xa2,0x0e, 1185 | 0x7a,0x14,NOTE_CODE,0x81,0x0f, 1186 | 0x82,0x14,NOTE_CODE,0x59,0x0a, 1187 | 0x89,0x14,NOTE_CODE,0x81,0x0f, 1188 | 0x91,0x14,NOTE_CODE,0xa2,0x0e, 1189 | 0x98,0x14,NOTE_CODE,0x81,0x0f, 1190 | 0xa0,0x14,NOTE_CODE,0x81,0x0f, 1191 | 0xa7,0x14,NOTE_CODE,0x88,0x13, 1192 | 0xaf,0x14,NOTE_CODE,0x67,0x11, 1193 | 0xb6,0x14,NOTE_CODE,0x81,0x0f, 1194 | 0xbe,0x14,NOTE_CODE,0xa2,0x0e, 1195 | 0xc5,0x14,NOTE_CODE,0x09,0x0d, 1196 | 0xcd,0x14,NOTE_CODE,0x9d,0x0b, 1197 | 0xd4,0x14,NOTE_CODE,0x59,0x0a, 1198 | 0xeb,0x14,NOTE_CODE,0x9d,0x0b, 1199 | 0xfa,0x14,NOTE_CODE,0x81,0x0f, 1200 | 0x09,0x15,NOTE_CODE,0xa2,0x0e, 1201 | 0x18,0x15,NOTE_CODE,0x09,0x0d, 1202 | 0x54,0x15,NOTE_CODE,0x09,0x0d, 1203 | 0x63,0x15,NOTE_CODE,0xb3,0x08, 1204 | 0x72,0x15,NOTE_CODE,0xa2,0x0e, 1205 | 0x81,0x15,NOTE_CODE,0x09,0x0d, 1206 | 0x90,0x15,NOTE_CODE,0x9d,0x0b, 1207 | 0xcc,0x15,NOTE_CODE,0x9d,0x0b, 1208 | 0xdb,0x15,NOTE_CODE,0xc0,0x07, 1209 | 0xea,0x15,NOTE_CODE,0x09,0x0d, 1210 | 0xf9,0x15,NOTE_CODE,0x9d,0x0b, 1211 | 0x08,0x16,NOTE_CODE,0x59,0x0a, 1212 | 0x44,0x16,NOTE_CODE,0x59,0x0a, 1213 | 0x4b,0x16,NOTE_CODE,0x59,0x0a, 1214 | 0x53,0x16,NOTE_CODE,0xc4,0x09, 1215 | 0x5a,0x16,NOTE_CODE,0xb3,0x08, 1216 | 0x62,0x16,NOTE_CODE,0x36,0x08, 1217 | 0x80,0x16,NOTE_CODE,0xb3,0x08, 1218 | 0xcb,0x16,NOTE_CODE,0xb3,0x08, 1219 | 0xda,0x16,NOTE_CODE,0xcf,0x0d, 1220 | 0xe9,0x16,NOTE_CODE,0x9d,0x0b, 1221 | 0xf8,0x16,NOTE_CODE,0x9d,0x0b, 1222 | 0x16,0x17,NOTE_CODE,0x9d,0x0b, 1223 | 0x1d,0x17,NOTE_CODE,0x9d,0x0b, 1224 | 0x25,0x17,NOTE_CODE,0x59,0x0a, 1225 | 0x2c,0x17,NOTE_CODE,0xc4,0x09, 1226 | 0x34,0x17,NOTE_CODE,0x59,0x0a, 1227 | 0x3b,0x17,NOTE_CODE,0xc4,0x09, 1228 | 0x43,0x17,NOTE_CODE,0xb3,0x08, 1229 | 0x4a,0x17,NOTE_CODE,0x59,0x0a, 1230 | 0x52,0x17,NOTE_CODE,0xc4,0x09, 1231 | 0x59,0x17,NOTE_CODE,0xb3,0x08, 1232 | 0x61,0x17,NOTE_CODE,0x36,0x08, 1233 | 0x68,0x17,NOTE_CODE,0xc4,0x09, 1234 | 0x70,0x17,NOTE_CODE,0xb3,0x08, 1235 | 0x77,0x17,NOTE_CODE,0x84,0x06, 1236 | 0x7f,0x17,NOTE_CODE,0xb3,0x08, 1237 | 0x86,0x17,NOTE_CODE,0xc4,0x09, 1238 | 0x8e,0x17,NOTE_CODE,0x59,0x0a, 1239 | 0x95,0x17,NOTE_CODE,0x9d,0x0b, 1240 | 0x9d,0x17,NOTE_CODE,0x59,0x0a, 1241 | 0xa4,0x17,NOTE_CODE,0x9d,0x0b, 1242 | 0xac,0x17,NOTE_CODE,0x09,0x0d, 1243 | 0xb3,0x17,NOTE_CODE,0x59,0x0a, 1244 | 0xbb,0x17,NOTE_CODE,0xb3,0x08, 1245 | 0xc2,0x17,NOTE_CODE,0x09,0x0d, 1246 | 0xca,0x17,NOTE_CODE,0xcf,0x0d, 1247 | 0xd1,0x17,NOTE_CODE,0x9d,0x0b, 1248 | 0xd9,0x17,NOTE_CODE,0x09,0x0d, 1249 | 0xe0,0x17,NOTE_CODE,0xcf,0x0d, 1250 | 0xe8,0x17,NOTE_CODE,0xc4,0x09, 1251 | 0xef,0x17,NOTE_CODE,0x59,0x0a, 1252 | 0xf7,0x17,NOTE_CODE,0xc4,0x09, 1253 | 0xfe,0x17,NOTE_CODE,0xb3,0x08, 1254 | 0x06,0x18,NOTE_CODE,0x36,0x08, 1255 | 0x15,0x18,NOTE_CODE,0xc4,0x09, 1256 | 0x24,0x18,NOTE_CODE,0x84,0x06, 1257 | 0x60,0x18,NOTE_CODE,0x84,0x06, 1258 | 0xd8,0x18,NOTE_CODE,0x84,0x06, 1259 | 0x14,0x19,NOTE_CODE,0x84,0x06, 1260 | 0x23,0x19,NOTE_CODE,0x09,0x0d, 1261 | 0x32,0x19,NOTE_CODE,0x9d,0x0b, 1262 | 0x39,0x19,NOTE_CODE,0x59,0x0a, 1263 | 0x41,0x19,NOTE_CODE,0xc4,0x09, 1264 | 0x48,0x19,NOTE_CODE,0x9d,0x0b, 1265 | 0x30,0x1b,NOTE_CODE,0xc0,0x07, 1266 | 0x3f,0x1b,NOTE_CODE,0xc4,0x09, 1267 | 0x4e,0x1b,NOTE_CODE,0x51,0x07, 1268 | 0x5d,0x1b,NOTE_CODE,0xc4,0x09, 1269 | 0x6c,0x1b,NOTE_CODE,0xc4,0x09, 1270 | 0x7b,0x1b,NOTE_CODE,0x09,0x0d, 1271 | 0x8a,0x1b,NOTE_CODE,0xb3,0x08, 1272 | 0x99,0x1b,NOTE_CODE,0x9d,0x0b, 1273 | 0xa8,0x1b,NOTE_CODE,0x9d,0x0b, 1274 | 0xb7,0x1b,NOTE_CODE,0x9d,0x0b, 1275 | 0xc6,0x1b,NOTE_CODE,0xc4,0x09, 1276 | 0xd5,0x1b,NOTE_CODE,0x09,0x0d, 1277 | 0xe4,0x1b,NOTE_CODE,0x09,0x0d, 1278 | 0xf3,0x1b,NOTE_CODE,0x09,0x0d, 1279 | 0x02,0x1c,NOTE_CODE,0xf6,0x0a, 1280 | 0x11,0x1c,NOTE_CODE,0xa2,0x0e, 1281 | 0x20,0x1c,NOTE_CODE,0xa2,0x0e, 1282 | 0x27,0x1c,NOTE_CODE,0xb2,0x14, 1283 | 0x2f,0x1c,NOTE_CODE,0x88,0x13, 1284 | 0x36,0x1c,NOTE_CODE,0x67,0x11, 1285 | 0x3e,0x1c,NOTE_CODE,0x81,0x0f, 1286 | 0x3e,0x1c,NOTE_CODE,0x59,0x0a, 1287 | 0x45,0x1c,NOTE_CODE,0x88,0x13, 1288 | 0x4d,0x1c,NOTE_CODE,0xa2,0x0e, 1289 | 0x4d,0x1c,NOTE_CODE,0x9d,0x0b, 1290 | 0x54,0x1c,NOTE_CODE,0x88,0x13, 1291 | 0x5c,0x1c,NOTE_CODE,0x09,0x0d, 1292 | 0x63,0x1c,NOTE_CODE,0x9f,0x1b, 1293 | 0x6b,0x1c,NOTE_CODE,0x13,0x1a, 1294 | 0x72,0x1c,NOTE_CODE,0x3a,0x17, 1295 | 0x7a,0x1c,NOTE_CODE,0x13,0x1a, 1296 | 0x7a,0x1c,NOTE_CODE,0xa2,0x0e, 1297 | 0x81,0x1c,NOTE_CODE,0x3a,0x17, 1298 | 0x89,0x1c,NOTE_CODE,0x81,0x0f, 1299 | 0x89,0x1c,NOTE_CODE,0xb2,0x14, 1300 | 0x90,0x1c,NOTE_CODE,0x88,0x13, 1301 | 0x98,0x1c,NOTE_CODE,0x67,0x11, 1302 | 0x9f,0x1c,NOTE_CODE,0x09,0x0d, 1303 | 0xa7,0x1c,NOTE_CODE,0x9d,0x0b, 1304 | 0xae,0x1c,NOTE_CODE,0x59,0x0a, 1305 | 0xb6,0x1c,NOTE_CODE,0x67,0x11, 1306 | 0xbd,0x1c,NOTE_CODE,0xa2,0x0e, 1307 | 0xc5,0x1c,NOTE_CODE,0x9d,0x0b, 1308 | 0xcc,0x1c,NOTE_CODE,0xa2,0x0e, 1309 | 0xd4,0x1c,NOTE_CODE,0xc0,0x07, 1310 | 0xdb,0x1c,NOTE_CODE,0x9d,0x0b, 1311 | 0xe3,0x1c,NOTE_CODE,0x59,0x0a, 1312 | 0xea,0x1c,NOTE_CODE,0xc4,0x09, 1313 | 0xf2,0x1c,NOTE_CODE,0x81,0x0f, 1314 | 0xf9,0x1c,NOTE_CODE,0x09,0x0d, 1315 | 0x01,0x1d,NOTE_CODE,0x59,0x0a, 1316 | 0x08,0x1d,NOTE_CODE,0x09,0x0d, 1317 | 0x10,0x1d,NOTE_CODE,0x51,0x07, 1318 | 0x17,0x1d,NOTE_CODE,0x59,0x0a, 1319 | 0x1f,0x1d,NOTE_CODE,0xc4,0x09, 1320 | 0x26,0x1d,NOTE_CODE,0xb3,0x08, 1321 | 0x2e,0x1d,NOTE_CODE,0xa2,0x0e, 1322 | 0x35,0x1d,NOTE_CODE,0x9d,0x0b, 1323 | 0x3d,0x1d,NOTE_CODE,0xc4,0x09, 1324 | 0x44,0x1d,NOTE_CODE,0x9d,0x0b, 1325 | 0x4c,0x1d,NOTE_CODE,0x81,0x0f, 1326 | 0x4c,0x1d,NOTE_CODE,0x84,0x06, 1327 | 0x53,0x1d,NOTE_CODE,0x88,0x13, 1328 | 0x53,0x1d,NOTE_CODE,0xc0,0x07, 1329 | 0x5b,0x1d,NOTE_CODE,0x67,0x11, 1330 | 0x5b,0x1d,NOTE_CODE,0xc4,0x09, 1331 | 0x62,0x1d,NOTE_CODE,0x09,0x0d, 1332 | 0x62,0x1d,NOTE_CODE,0x81,0x0f, 1333 | 0x6a,0x1d,NOTE_CODE,0x9d,0x0b, 1334 | 0x6a,0x1d,NOTE_CODE,0xa2,0x0e, 1335 | 0x71,0x1d,NOTE_CODE,0x81,0x0f, 1336 | 0x71,0x1d,NOTE_CODE,0x09,0x0d, 1337 | 0x79,0x1d,NOTE_CODE,0xf6,0x0a, 1338 | 0x79,0x1d,NOTE_CODE,0x09,0x0d, 1339 | 0x80,0x1d,NOTE_CODE,0x9d,0x0b, 1340 | 0x80,0x1d,NOTE_CODE,0xa2,0x0e, 1341 | 0x88,0x1d,NOTE_CODE,0x09,0x0d, 1342 | 0x88,0x1d,NOTE_CODE,0x81,0x0f, 1343 | 0x8f,0x1d,NOTE_CODE,0x67,0x11, 1344 | 0x97,0x1d,NOTE_CODE,0x81,0x0f, 1345 | 0x9e,0x1d,NOTE_CODE,0x67,0x11, 1346 | 0xa6,0x1d,NOTE_CODE,0x88,0x13, 1347 | 0xad,0x1d,NOTE_CODE,0xb2,0x14, 1348 | 0xb5,0x1d,NOTE_CODE,0x88,0x13, 1349 | 0xb5,0x1d,NOTE_CODE,0x4e,0x0c, 1350 | 0xbc,0x1d,NOTE_CODE,0x67,0x11, 1351 | 0xc4,0x1d,NOTE_CODE,0x81,0x0f, 1352 | 0xc4,0x1d,NOTE_CODE,0x81,0x0f, 1353 | 0xc4,0x1d,NOTE_CODE,0x09,0x0d, 1354 | 0xd3,0x1d,NOTE_CODE,0x88,0x13, 1355 | 0xe2,0x1d,NOTE_CODE,0x67,0x11, 1356 | 0xf1,0x1d,NOTE_CODE,0x81,0x0f, 1357 | 0x00,0x1e,NOTE_CODE,0xc4,0x09, 1358 | 0x00,0x1e,NOTE_CODE,0xa2,0x0e, 1359 | 0x2d,0x1e,NOTE_CODE,0xc4,0x09, 1360 | 0x3c,0x1e,NOTE_CODE,0xc4,0x09, 1361 | 0x78,0x1e,NOTE_CODE,0xc4,0x09, 1362 | 0x2c,0x1f,NOTE_CODE,0xc4,0x09, 1363 | 0x3b,0x1f,NOTE_CODE,0x59,0x0a, 1364 | 0x4a,0x1f,NOTE_CODE,0x59,0x0a, 1365 | 0x59,0x1f,NOTE_CODE,0xc4,0x09, 1366 | 0x68,0x1f,NOTE_CODE,0xc4,0x09, 1367 | 0xfe,0x1f,REWIND_CODE}; 1368 | static unsigned char music_v3[]={ 1369 | 0x00,0x00,ENVELOPE_CODE,0x41,0xFF,0x08,0x19,0x00, 1370 | 0x63,0x05,NOTE_CODE,0x84,0x06, 1371 | 0x9f,0x05,NOTE_CODE,0xc0,0x07, 1372 | 0xcc,0x05,NOTE_CODE,0x51,0x07, 1373 | 0xdb,0x05,NOTE_CODE,0x84,0x06, 1374 | 0xea,0x05,NOTE_CODE,0xc0,0x07, 1375 | 0xf9,0x05,NOTE_CODE,0x51,0x07, 1376 | 0x08,0x06,NOTE_CODE,0x84,0x06, 1377 | 0x17,0x06,NOTE_CODE,0x27,0x06, 1378 | 0x26,0x06,NOTE_CODE,0x51,0x07, 1379 | 0x35,0x06,NOTE_CODE,0xe2,0x04, 1380 | 0x44,0x06,NOTE_CODE,0x84,0x06, 1381 | 0x53,0x06,NOTE_CODE,0xe2,0x04, 1382 | 0x62,0x06,NOTE_CODE,0x51,0x07, 1383 | 0x71,0x06,NOTE_CODE,0xe2,0x04, 1384 | 0x8f,0x06,NOTE_CODE,0xc0,0x07, 1385 | 0x9e,0x06,NOTE_CODE,0x51,0x07, 1386 | 0xa6,0x06,NOTE_CODE,0x84,0x06, 1387 | 0xad,0x06,NOTE_CODE,0x51,0x07, 1388 | 0xbc,0x06,NOTE_CODE,0xe2,0x04, 1389 | 0xcb,0x06,NOTE_CODE,0x84,0x06, 1390 | 0xda,0x06,NOTE_CODE,0xe2,0x04, 1391 | 0xe2,0x06,NOTE_CODE,0x84,0x06, 1392 | 0xe9,0x06,NOTE_CODE,0x51,0x07, 1393 | 0xf8,0x06,NOTE_CODE,0xe2,0x04, 1394 | 0x00,0x07,NOTE_CODE,0x51,0x07, 1395 | 0x07,0x07,NOTE_CODE,0xc0,0x07, 1396 | 0x16,0x07,NOTE_CODE,0x51,0x07, 1397 | 0x1e,0x07,NOTE_CODE,0x84,0x06, 1398 | 0x25,0x07,NOTE_CODE,0x51,0x07, 1399 | 0x2d,0x07,NOTE_CODE,0xe2,0x04, 1400 | 0x43,0x07,NOTE_CODE,0xc0,0x07, 1401 | 0x4b,0x07,NOTE_CODE,0x51,0x07, 1402 | 0x52,0x07,NOTE_CODE,0x84,0x06, 1403 | 0x5a,0x07,NOTE_CODE,0xc0,0x07, 1404 | 0x61,0x07,NOTE_CODE,0x51,0x07, 1405 | 0x69,0x07,NOTE_CODE,0x84,0x06, 1406 | 0x70,0x07,NOTE_CODE,0x27,0x06, 1407 | 0x78,0x07,NOTE_CODE,0x51,0x07, 1408 | 0x7f,0x07,NOTE_CODE,0x84,0x06, 1409 | 0x87,0x07,NOTE_CODE,0xe2,0x04, 1410 | 0x8e,0x07,NOTE_CODE,0x84,0x06, 1411 | 0x96,0x07,NOTE_CODE,0x51,0x07, 1412 | 0x9d,0x07,NOTE_CODE,0xc0,0x07, 1413 | 0xa5,0x07,NOTE_CODE,0xb3,0x08, 1414 | 0xac,0x07,NOTE_CODE,0xc4,0x09, 1415 | 0xb4,0x07,NOTE_CODE,0xf6,0x0a, 1416 | 0xbb,0x07,NOTE_CODE,0x9d,0x0b, 1417 | 0xbb,0x07,NOTE_CODE,0xe2,0x04, 1418 | 0xc3,0x07,NOTE_CODE,0xf6,0x0a, 1419 | 0xca,0x07,NOTE_CODE,0xc4,0x09, 1420 | 0xd2,0x07,NOTE_CODE,0x9d,0x0b, 1421 | 0xd9,0x07,NOTE_CODE,0x51,0x07, 1422 | 0xd9,0x07,NOTE_CODE,0xf6,0x0a, 1423 | 0xe1,0x07,NOTE_CODE,0xc4,0x09, 1424 | 0xe8,0x07,NOTE_CODE,0x37,0x09, 1425 | 0xf0,0x07,NOTE_CODE,0xf6,0x0a, 1426 | 0xf7,0x07,NOTE_CODE,0xce,0x05, 1427 | 0xf7,0x07,NOTE_CODE,0xc4,0x09, 1428 | 0x06,0x08,NOTE_CODE,0x51,0x07, 1429 | 0x15,0x08,NOTE_CODE,0xc4,0x09, 1430 | 0x24,0x08,NOTE_CODE,0x7b,0x05, 1431 | 0x24,0x08,NOTE_CODE,0xf6,0x0a, 1432 | 0x33,0x08,NOTE_CODE,0xe2,0x04, 1433 | 0x42,0x08,NOTE_CODE,0xce,0x05, 1434 | 0x51,0x08,NOTE_CODE,0x2c,0x05, 1435 | 0x60,0x08,NOTE_CODE,0xe2,0x04, 1436 | 0x6f,0x08,NOTE_CODE,0x9b,0x04, 1437 | 0x7e,0x08,NOTE_CODE,0x7b,0x05, 1438 | 0x8d,0x08,NOTE_CODE,0xa8,0x03, 1439 | 0x9c,0x08,NOTE_CODE,0xe2,0x04, 1440 | 0xab,0x08,NOTE_CODE,0xa8,0x03, 1441 | 0xba,0x08,NOTE_CODE,0x7b,0x05, 1442 | 0xc9,0x08,NOTE_CODE,0xa8,0x03, 1443 | 0xe7,0x08,NOTE_CODE,0xce,0x05, 1444 | 0xf6,0x08,NOTE_CODE,0x7b,0x05, 1445 | 0xfe,0x08,NOTE_CODE,0xe2,0x04, 1446 | 0x05,0x09,NOTE_CODE,0x7b,0x05, 1447 | 0x14,0x09,NOTE_CODE,0xa8,0x03, 1448 | 0x23,0x09,NOTE_CODE,0xe2,0x04, 1449 | 0x32,0x09,NOTE_CODE,0xa8,0x03, 1450 | 0x3a,0x09,NOTE_CODE,0xe2,0x04, 1451 | 0x41,0x09,NOTE_CODE,0x7b,0x05, 1452 | 0x50,0x09,NOTE_CODE,0xa8,0x03, 1453 | 0x58,0x09,NOTE_CODE,0x7b,0x05, 1454 | 0x60,0x09,NOTE_CODE,0xce,0x05, 1455 | 0x6f,0x09,NOTE_CODE,0x7b,0x05, 1456 | 0x76,0x09,NOTE_CODE,0xe2,0x04, 1457 | 0x7e,0x09,NOTE_CODE,0x7b,0x05, 1458 | 0x8d,0x09,NOTE_CODE,0xa8,0x03, 1459 | 0x9c,0x09,NOTE_CODE,0xe2,0x04, 1460 | 0xab,0x09,NOTE_CODE,0x42,0x03, 1461 | 0xba,0x09,NOTE_CODE,0xa8,0x03, 1462 | 0xd8,0x09,NOTE_CODE,0x71,0x02, 1463 | 0x14,0x0a,NOTE_CODE,0x84,0x06, 1464 | 0x1b,0x0a,NOTE_CODE,0xce,0x05, 1465 | 0x23,0x0a,NOTE_CODE,0x84,0x06, 1466 | 0x2a,0x0a,NOTE_CODE,0x51,0x07, 1467 | 0x32,0x0a,NOTE_CODE,0x84,0x06, 1468 | 0x39,0x0a,NOTE_CODE,0xce,0x05, 1469 | 0x41,0x0a,NOTE_CODE,0x2c,0x05, 1470 | 0x48,0x0a,NOTE_CODE,0xe2,0x04, 1471 | 0x50,0x0a,NOTE_CODE,0xb3,0x08, 1472 | 0x57,0x0a,NOTE_CODE,0xc0,0x07, 1473 | 0x5f,0x0a,NOTE_CODE,0xb3,0x08, 1474 | 0x66,0x0a,NOTE_CODE,0xc4,0x09, 1475 | 0x6e,0x0a,NOTE_CODE,0xb3,0x08, 1476 | 0x75,0x0a,NOTE_CODE,0xc0,0x07, 1477 | 0x7d,0x0a,NOTE_CODE,0x51,0x07, 1478 | 0x84,0x0a,NOTE_CODE,0x84,0x06, 1479 | 0x8c,0x0a,NOTE_CODE,0xce,0x05, 1480 | 0x93,0x0a,NOTE_CODE,0x2c,0x05, 1481 | 0x9b,0x0a,NOTE_CODE,0xce,0x05, 1482 | 0xa2,0x0a,NOTE_CODE,0x84,0x06, 1483 | 0xaa,0x0a,NOTE_CODE,0xce,0x05, 1484 | 0xb1,0x0a,NOTE_CODE,0x2c,0x05, 1485 | 0xb9,0x0a,NOTE_CODE,0xe2,0x04, 1486 | 0xc0,0x0a,NOTE_CODE,0x59,0x04, 1487 | 0xc8,0x0a,NOTE_CODE,0xe0,0x03, 1488 | 0xcf,0x0a,NOTE_CODE,0xc0,0x07, 1489 | 0xd7,0x0a,NOTE_CODE,0xb3,0x08, 1490 | 0xde,0x0a,NOTE_CODE,0xc4,0x09, 1491 | 0xe6,0x0a,NOTE_CODE,0x59,0x0a, 1492 | 0xf5,0x0a,NOTE_CODE,0x51,0x07, 1493 | 0xfc,0x0a,NOTE_CODE,0xc0,0x07, 1494 | 0x04,0x0b,NOTE_CODE,0xb3,0x08, 1495 | 0x0b,0x0b,NOTE_CODE,0xc4,0x09, 1496 | 0x40,0x0b,NOTE_CODE,0x84,0x06, 1497 | 0x5e,0x0b,NOTE_CODE,0xc4,0x09, 1498 | 0x7c,0x0b,NOTE_CODE,0xc0,0x07, 1499 | 0xa9,0x0b,NOTE_CODE,0x51,0x07, 1500 | 0xb8,0x0b,NOTE_CODE,0x84,0x06, 1501 | 0xbf,0x0b,NOTE_CODE,0xc0,0x07, 1502 | 0xc7,0x0b,NOTE_CODE,0x51,0x07, 1503 | 0xce,0x0b,NOTE_CODE,0x84,0x06, 1504 | 0xd6,0x0b,NOTE_CODE,0x27,0x06, 1505 | 0xdd,0x0b,NOTE_CODE,0x84,0x06, 1506 | 0xe5,0x0b,NOTE_CODE,0x7b,0x05, 1507 | 0xec,0x0b,NOTE_CODE,0x27,0x06, 1508 | 0xf4,0x0b,NOTE_CODE,0x84,0x06, 1509 | 0xfb,0x0b,NOTE_CODE,0xe2,0x04, 1510 | 0x03,0x0c,NOTE_CODE,0x7b,0x05, 1511 | 0x03,0x0c,NOTE_CODE,0x42,0x03, 1512 | 0x0a,0x0c,NOTE_CODE,0x27,0x06, 1513 | 0x12,0x0c,NOTE_CODE,0x84,0x06, 1514 | 0x12,0x0c,NOTE_CODE,0x84,0x06, 1515 | 0x19,0x0c,NOTE_CODE,0x7b,0x05, 1516 | 0x21,0x0c,NOTE_CODE,0xce,0x05, 1517 | 0x21,0x0c,NOTE_CODE,0x84,0x06, 1518 | 0x28,0x0c,NOTE_CODE,0x51,0x07, 1519 | 0x30,0x0c,NOTE_CODE,0x2c,0x05, 1520 | 0x30,0x0c,NOTE_CODE,0xc0,0x07, 1521 | 0x37,0x0c,NOTE_CODE,0xb3,0x08, 1522 | 0x3f,0x0c,NOTE_CODE,0xc0,0x07, 1523 | 0x46,0x0c,NOTE_CODE,0xb3,0x08, 1524 | 0x4e,0x0c,NOTE_CODE,0xc4,0x09, 1525 | 0x4e,0x0c,NOTE_CODE,0x96,0x02, 1526 | 0x51,0x0c,NOTE_CODE,0xb3,0x08, 1527 | 0x55,0x0c,NOTE_CODE,0xc4,0x09, 1528 | 0x59,0x0c,NOTE_CODE,0xb3,0x08, 1529 | 0x5d,0x0c,NOTE_CODE,0xc4,0x09, 1530 | 0x60,0x0c,NOTE_CODE,0xb3,0x08, 1531 | 0x64,0x0c,NOTE_CODE,0xc0,0x07, 1532 | 0x68,0x0c,NOTE_CODE,0xb3,0x08, 1533 | 0x6c,0x0c,NOTE_CODE,0x71,0x02, 1534 | 0x6c,0x0c,NOTE_CODE,0xc4,0x09, 1535 | 0x73,0x0c,NOTE_CODE,0xb3,0x08, 1536 | 0x7b,0x0c,NOTE_CODE,0xe2,0x04, 1537 | 0x7b,0x0c,NOTE_CODE,0xc4,0x09, 1538 | 0x82,0x0c,NOTE_CODE,0x59,0x0a, 1539 | 0x8a,0x0c,NOTE_CODE,0xe2,0x04, 1540 | 0x8a,0x0c,NOTE_CODE,0xc4,0x09, 1541 | 0x91,0x0c,NOTE_CODE,0xb3,0x08, 1542 | 0x99,0x0c,NOTE_CODE,0xc0,0x07, 1543 | 0xa0,0x0c,NOTE_CODE,0x51,0x07, 1544 | 0xa8,0x0c,NOTE_CODE,0xe2,0x04, 1545 | 0xa8,0x0c,NOTE_CODE,0xc0,0x07, 1546 | 0xaf,0x0c,NOTE_CODE,0xc4,0x09, 1547 | 0xb7,0x0c,NOTE_CODE,0xb3,0x08, 1548 | 0xbe,0x0c,NOTE_CODE,0xc4,0x09, 1549 | 0xc6,0x0c,NOTE_CODE,0x27,0x06, 1550 | 0xcd,0x0c,NOTE_CODE,0xc4,0x09, 1551 | 0xd5,0x0c,NOTE_CODE,0xb3,0x08, 1552 | 0xdc,0x0c,NOTE_CODE,0xc4,0x09, 1553 | 0xe4,0x0c,NOTE_CODE,0x84,0x06, 1554 | 0xeb,0x0c,NOTE_CODE,0xc4,0x09, 1555 | 0xf3,0x0c,NOTE_CODE,0xb3,0x08, 1556 | 0xfa,0x0c,NOTE_CODE,0xc4,0x09, 1557 | 0x02,0x0d,NOTE_CODE,0x27,0x06, 1558 | 0x09,0x0d,NOTE_CODE,0xc4,0x09, 1559 | 0x11,0x0d,NOTE_CODE,0xb3,0x08, 1560 | 0x18,0x0d,NOTE_CODE,0xc4,0x09, 1561 | 0x20,0x0d,NOTE_CODE,0xe2,0x04, 1562 | 0x20,0x0d,NOTE_CODE,0x84,0x06, 1563 | 0x27,0x0d,NOTE_CODE,0xc0,0x07, 1564 | 0x2f,0x0d,NOTE_CODE,0x51,0x07, 1565 | 0x36,0x0d,NOTE_CODE,0x84,0x06, 1566 | 0x3e,0x0d,NOTE_CODE,0x27,0x06, 1567 | 0x45,0x0d,NOTE_CODE,0x84,0x06, 1568 | 0x4d,0x0d,NOTE_CODE,0x7b,0x05, 1569 | 0x54,0x0d,NOTE_CODE,0x27,0x06, 1570 | 0x5c,0x0d,NOTE_CODE,0x84,0x06, 1571 | 0x63,0x0d,NOTE_CODE,0xe2,0x04, 1572 | 0x6b,0x0d,NOTE_CODE,0x7b,0x05, 1573 | 0x72,0x0d,NOTE_CODE,0x27,0x06, 1574 | 0x7a,0x0d,NOTE_CODE,0x84,0x06, 1575 | 0x81,0x0d,NOTE_CODE,0xe2,0x04, 1576 | 0x89,0x0d,NOTE_CODE,0x84,0x06, 1577 | 0x90,0x0d,NOTE_CODE,0x51,0x07, 1578 | 0x98,0x0d,NOTE_CODE,0xe2,0x04, 1579 | 0x98,0x0d,NOTE_CODE,0x84,0x06, 1580 | 0xa7,0x0d,NOTE_CODE,0xc0,0x07, 1581 | 0xb6,0x0d,NOTE_CODE,0xb3,0x08, 1582 | 0xbd,0x0d,NOTE_CODE,0xc0,0x07, 1583 | 0xc5,0x0d,NOTE_CODE,0x51,0x07, 1584 | 0xcc,0x0d,NOTE_CODE,0xb3,0x08, 1585 | 0xd4,0x0d,NOTE_CODE,0xc0,0x07, 1586 | 0xf2,0x0d,NOTE_CODE,0xc0,0x07, 1587 | 0xf2,0x0d,NOTE_CODE,0x59,0x04, 1588 | 0xf9,0x0d,NOTE_CODE,0xc4,0x09, 1589 | 0x01,0x0e,NOTE_CODE,0xb3,0x08, 1590 | 0x08,0x0e,NOTE_CODE,0xc0,0x07, 1591 | 0x10,0x0e,NOTE_CODE,0x51,0x07, 1592 | 0x10,0x0e,NOTE_CODE,0x59,0x04, 1593 | 0x2e,0x0e,NOTE_CODE,0x51,0x07, 1594 | 0x2e,0x0e,NOTE_CODE,0xe0,0x03, 1595 | 0x35,0x0e,NOTE_CODE,0xb3,0x08, 1596 | 0x3d,0x0e,NOTE_CODE,0xc0,0x07, 1597 | 0x44,0x0e,NOTE_CODE,0x51,0x07, 1598 | 0x4c,0x0e,NOTE_CODE,0x84,0x06, 1599 | 0x6a,0x0e,NOTE_CODE,0x84,0x06, 1600 | 0x6a,0x0e,NOTE_CODE,0xa8,0x03, 1601 | 0x71,0x0e,NOTE_CODE,0xc0,0x07, 1602 | 0x79,0x0e,NOTE_CODE,0x51,0x07, 1603 | 0x80,0x0e,NOTE_CODE,0x84,0x06, 1604 | 0x88,0x0e,NOTE_CODE,0xce,0x05, 1605 | 0x88,0x0e,NOTE_CODE,0xe0,0x03, 1606 | 0x97,0x0e,NOTE_CODE,0xa8,0x03, 1607 | 0xa6,0x0e,NOTE_CODE,0x42,0x03, 1608 | 0xb5,0x0e,NOTE_CODE,0x7b,0x05, 1609 | 0xc4,0x0e,NOTE_CODE,0xe7,0x02, 1610 | 0xc4,0x0e,NOTE_CODE,0xce,0x05, 1611 | 0xd3,0x0e,NOTE_CODE,0x2c,0x05, 1612 | 0xe2,0x0e,NOTE_CODE,0xe2,0x04, 1613 | 0xf1,0x0e,NOTE_CODE,0x59,0x04, 1614 | 0x00,0x0f,NOTE_CODE,0xe0,0x03, 1615 | 0x4b,0x0f,NOTE_CODE,0xb3,0x08, 1616 | 0x5a,0x0f,NOTE_CODE,0xc0,0x07, 1617 | 0x69,0x0f,NOTE_CODE,0x51,0x07, 1618 | 0x78,0x0f,NOTE_CODE,0x84,0x06, 1619 | 0x78,0x0f,NOTE_CODE,0xc0,0x07, 1620 | 0x87,0x0f,NOTE_CODE,0xc4,0x09, 1621 | 0x96,0x0f,NOTE_CODE,0xb3,0x08, 1622 | 0xa5,0x0f,NOTE_CODE,0xc0,0x07, 1623 | 0xb4,0x0f,NOTE_CODE,0xce,0x05, 1624 | 0xb4,0x0f,NOTE_CODE,0x51,0x07, 1625 | 0xc3,0x0f,NOTE_CODE,0xb3,0x08, 1626 | 0xd2,0x0f,NOTE_CODE,0xce,0x05, 1627 | 0xd2,0x0f,NOTE_CODE,0xce,0x05, 1628 | 0xf0,0x0f,NOTE_CODE,0xc0,0x07, 1629 | 0xff,0x0f,NOTE_CODE,0xce,0x05, 1630 | 0x0e,0x10,NOTE_CODE,0xb3,0x08, 1631 | 0x1d,0x10,NOTE_CODE,0xce,0x05, 1632 | 0x2c,0x10,NOTE_CODE,0xc4,0x09, 1633 | 0x3b,0x10,NOTE_CODE,0xb3,0x08, 1634 | 0x42,0x10,NOTE_CODE,0xc0,0x07, 1635 | 0x4a,0x10,NOTE_CODE,0xb3,0x08, 1636 | 0x59,0x10,NOTE_CODE,0xe2,0x04, 1637 | 0x68,0x10,NOTE_CODE,0xc0,0x07, 1638 | 0x77,0x10,NOTE_CODE,0xce,0x05, 1639 | 0x7e,0x10,NOTE_CODE,0xc0,0x07, 1640 | 0x86,0x10,NOTE_CODE,0xb3,0x08, 1641 | 0x95,0x10,NOTE_CODE,0xce,0x05, 1642 | 0x9c,0x10,NOTE_CODE,0xb3,0x08, 1643 | 0xa4,0x10,NOTE_CODE,0xc4,0x09, 1644 | 0xb3,0x10,NOTE_CODE,0xb3,0x08, 1645 | 0xba,0x10,NOTE_CODE,0xc0,0x07, 1646 | 0xc2,0x10,NOTE_CODE,0xb3,0x08, 1647 | 0xc9,0x10,NOTE_CODE,0xce,0x05, 1648 | 0xd1,0x10,NOTE_CODE,0x9d,0x0b, 1649 | 0xd8,0x10,NOTE_CODE,0x59,0x0a, 1650 | 0xe0,0x10,NOTE_CODE,0xc4,0x09, 1651 | 0xe7,0x10,NOTE_CODE,0xb3,0x08, 1652 | 0xef,0x10,NOTE_CODE,0xc0,0x07, 1653 | 0xf6,0x10,NOTE_CODE,0xc4,0x09, 1654 | 0xfe,0x10,NOTE_CODE,0xb3,0x08, 1655 | 0x05,0x11,NOTE_CODE,0xc0,0x07, 1656 | 0x0d,0x11,NOTE_CODE,0x51,0x07, 1657 | 0x14,0x11,NOTE_CODE,0xb3,0x08, 1658 | 0x1c,0x11,NOTE_CODE,0xc0,0x07, 1659 | 0x2b,0x11,NOTE_CODE,0x09,0x0d, 1660 | 0x49,0x11,NOTE_CODE,0x84,0x06, 1661 | 0x58,0x11,NOTE_CODE,0x51,0x07, 1662 | 0x67,0x11,NOTE_CODE,0x9d,0x0b, 1663 | 0x85,0x11,NOTE_CODE,0xce,0x05, 1664 | 0x94,0x11,NOTE_CODE,0x84,0x06, 1665 | 0xa3,0x11,NOTE_CODE,0x9d,0x0b, 1666 | 0xb2,0x11,NOTE_CODE,0xb3,0x08, 1667 | 0xc1,0x11,NOTE_CODE,0xf6,0x0a, 1668 | 0xc0,0x12,NOTE_CODE,0xe0,0x03, 1669 | 0xde,0x12,NOTE_CODE,0xce,0x05, 1670 | 0xfc,0x12,NOTE_CODE,0xe2,0x04, 1671 | 0x29,0x13,NOTE_CODE,0x59,0x04, 1672 | 0x38,0x13,NOTE_CODE,0xe0,0x03, 1673 | 0x47,0x13,NOTE_CODE,0xe2,0x04, 1674 | 0x56,0x13,NOTE_CODE,0x59,0x04, 1675 | 0x65,0x13,NOTE_CODE,0xe0,0x03, 1676 | 0x74,0x13,NOTE_CODE,0xa8,0x03, 1677 | 0x83,0x13,NOTE_CODE,0x59,0x04, 1678 | 0x92,0x13,NOTE_CODE,0xe7,0x02, 1679 | 0xb0,0x13,NOTE_CODE,0xe0,0x03, 1680 | 0xbf,0x13,NOTE_CODE,0xe7,0x02, 1681 | 0xce,0x13,NOTE_CODE,0x59,0x04, 1682 | 0xdd,0x13,NOTE_CODE,0xe7,0x02, 1683 | 0xec,0x13,NOTE_CODE,0xe2,0x04, 1684 | 0xfb,0x13,NOTE_CODE,0x59,0x04, 1685 | 0x02,0x14,NOTE_CODE,0xe0,0x03, 1686 | 0x0a,0x14,NOTE_CODE,0x59,0x04, 1687 | 0x19,0x14,NOTE_CODE,0xe7,0x02, 1688 | 0x28,0x14,NOTE_CODE,0xe0,0x03, 1689 | 0x37,0x14,NOTE_CODE,0xe7,0x02, 1690 | 0x3e,0x14,NOTE_CODE,0xe0,0x03, 1691 | 0x46,0x14,NOTE_CODE,0x59,0x04, 1692 | 0x55,0x14,NOTE_CODE,0xe7,0x02, 1693 | 0x5c,0x14,NOTE_CODE,0x59,0x04, 1694 | 0x64,0x14,NOTE_CODE,0xe2,0x04, 1695 | 0x73,0x14,NOTE_CODE,0x59,0x04, 1696 | 0x7a,0x14,NOTE_CODE,0xe0,0x03, 1697 | 0x82,0x14,NOTE_CODE,0x59,0x04, 1698 | 0x91,0x14,NOTE_CODE,0xe7,0x02, 1699 | 0xa0,0x14,NOTE_CODE,0xe2,0x04, 1700 | 0xaf,0x14,NOTE_CODE,0x2c,0x05, 1701 | 0xbe,0x14,NOTE_CODE,0xce,0x05, 1702 | 0xcd,0x14,NOTE_CODE,0xe7,0x02, 1703 | 0xdc,0x14,NOTE_CODE,0xe0,0x03, 1704 | 0xdc,0x14,NOTE_CODE,0xc4,0x09, 1705 | 0x18,0x15,NOTE_CODE,0x59,0x04, 1706 | 0x18,0x15,NOTE_CODE,0xc4,0x09, 1707 | 0x27,0x15,NOTE_CODE,0x84,0x06, 1708 | 0x36,0x15,NOTE_CODE,0xb3,0x08, 1709 | 0x45,0x15,NOTE_CODE,0xc0,0x07, 1710 | 0x54,0x15,NOTE_CODE,0x51,0x07, 1711 | 0x54,0x15,NOTE_CODE,0xe7,0x02, 1712 | 0x90,0x15,NOTE_CODE,0x51,0x07, 1713 | 0x90,0x15,NOTE_CODE,0xe0,0x03, 1714 | 0x9f,0x15,NOTE_CODE,0xce,0x05, 1715 | 0xae,0x15,NOTE_CODE,0xc0,0x07, 1716 | 0xbd,0x15,NOTE_CODE,0x51,0x07, 1717 | 0xcc,0x15,NOTE_CODE,0x84,0x06, 1718 | 0xcc,0x15,NOTE_CODE,0x96,0x02, 1719 | 0x08,0x16,NOTE_CODE,0x84,0x06, 1720 | 0x08,0x16,NOTE_CODE,0x73,0x03, 1721 | 0x17,0x16,NOTE_CODE,0x2c,0x05, 1722 | 0x26,0x16,NOTE_CODE,0xe7,0x06, 1723 | 0x35,0x16,NOTE_CODE,0x84,0x06, 1724 | 0x44,0x16,NOTE_CODE,0xce,0x05, 1725 | 0x44,0x16,NOTE_CODE,0x71,0x02, 1726 | 0x62,0x16,NOTE_CODE,0x84,0x06, 1727 | 0x62,0x16,NOTE_CODE,0x42,0x03, 1728 | 0x80,0x16,NOTE_CODE,0x2c,0x02, 1729 | 0x80,0x16,NOTE_CODE,0x84,0x06, 1730 | 0x87,0x16,NOTE_CODE,0x84,0x06, 1731 | 0x8f,0x16,NOTE_CODE,0x51,0x07, 1732 | 0x96,0x16,NOTE_CODE,0x36,0x08, 1733 | 0x9e,0x16,NOTE_CODE,0xb3,0x08, 1734 | 0xa5,0x16,NOTE_CODE,0xc4,0x09, 1735 | 0xad,0x16,NOTE_CODE,0x59,0x0a, 1736 | 0xb4,0x16,NOTE_CODE,0xb3,0x08, 1737 | 0xbc,0x16,NOTE_CODE,0xe7,0x06, 1738 | 0xbc,0x16,NOTE_CODE,0xe7,0x02, 1739 | 0xf8,0x16,NOTE_CODE,0x42,0x03, 1740 | 0xf8,0x16,NOTE_CODE,0x84,0x06, 1741 | 0x07,0x17,NOTE_CODE,0x51,0x07, 1742 | 0x16,0x17,NOTE_CODE,0xc0,0x07, 1743 | 0x34,0x17,NOTE_CODE,0xb3,0x08, 1744 | 0x70,0x17,NOTE_CODE,0x2c,0x02, 1745 | 0x7f,0x17,NOTE_CODE,0x42,0x03, 1746 | 0x8e,0x17,NOTE_CODE,0x59,0x04, 1747 | 0x9d,0x17,NOTE_CODE,0xe2,0x04, 1748 | 0xac,0x17,NOTE_CODE,0x2c,0x05, 1749 | 0xca,0x17,NOTE_CODE,0xce,0x05, 1750 | 0xe8,0x17,NOTE_CODE,0x84,0x06, 1751 | 0x06,0x18,NOTE_CODE,0x84,0x06, 1752 | 0x0d,0x18,NOTE_CODE,0x84,0x06, 1753 | 0x15,0x18,NOTE_CODE,0xce,0x05, 1754 | 0x1c,0x18,NOTE_CODE,0x84,0x06, 1755 | 0x24,0x18,NOTE_CODE,0x2c,0x05, 1756 | 0x2b,0x18,NOTE_CODE,0x84,0x06, 1757 | 0x33,0x18,NOTE_CODE,0xce,0x05, 1758 | 0x3a,0x18,NOTE_CODE,0x84,0x06, 1759 | 0x42,0x18,NOTE_CODE,0x1b,0x04, 1760 | 0x49,0x18,NOTE_CODE,0x84,0x06, 1761 | 0x51,0x18,NOTE_CODE,0xce,0x05, 1762 | 0x58,0x18,NOTE_CODE,0x84,0x06, 1763 | 0x60,0x18,NOTE_CODE,0x59,0x04, 1764 | 0x67,0x18,NOTE_CODE,0x84,0x06, 1765 | 0x6f,0x18,NOTE_CODE,0xce,0x05, 1766 | 0x76,0x18,NOTE_CODE,0x84,0x06, 1767 | 0x7e,0x18,NOTE_CODE,0x1b,0x04, 1768 | 0x85,0x18,NOTE_CODE,0x84,0x06, 1769 | 0x8d,0x18,NOTE_CODE,0xce,0x05, 1770 | 0x94,0x18,NOTE_CODE,0x84,0x06, 1771 | 0x9c,0x18,NOTE_CODE,0x2c,0x05, 1772 | 0xa3,0x18,NOTE_CODE,0xb3,0x08, 1773 | 0xab,0x18,NOTE_CODE,0x36,0x08, 1774 | 0xb2,0x18,NOTE_CODE,0xb3,0x08, 1775 | 0xba,0x18,NOTE_CODE,0xce,0x05, 1776 | 0xc1,0x18,NOTE_CODE,0xb3,0x08, 1777 | 0xc9,0x18,NOTE_CODE,0x36,0x08, 1778 | 0xd0,0x18,NOTE_CODE,0xb3,0x08, 1779 | 0xd8,0x18,NOTE_CODE,0x84,0x06, 1780 | 0xdf,0x18,NOTE_CODE,0xb3,0x08, 1781 | 0xe7,0x18,NOTE_CODE,0x36,0x08, 1782 | 0xee,0x18,NOTE_CODE,0xb3,0x08, 1783 | 0xf6,0x18,NOTE_CODE,0x84,0x06, 1784 | 0xfd,0x18,NOTE_CODE,0x36,0x08, 1785 | 0x05,0x19,NOTE_CODE,0x51,0x07, 1786 | 0x0c,0x19,NOTE_CODE,0x36,0x08, 1787 | 0x14,0x19,NOTE_CODE,0x59,0x04, 1788 | 0x23,0x19,NOTE_CODE,0x2c,0x05, 1789 | 0x32,0x19,NOTE_CODE,0xce,0x05, 1790 | 0x41,0x19,NOTE_CODE,0x84,0x06, 1791 | 0x50,0x19,NOTE_CODE,0x59,0x04, 1792 | 0x5f,0x19,NOTE_CODE,0x84,0x06, 1793 | 0x6e,0x19,NOTE_CODE,0x2c,0x05, 1794 | 0x7d,0x19,NOTE_CODE,0x59,0x04, 1795 | 0x8c,0x19,NOTE_CODE,0xce,0x05, 1796 | 0x9b,0x19,NOTE_CODE,0xb3,0x08, 1797 | 0xaa,0x19,NOTE_CODE,0x51,0x07, 1798 | 0xb9,0x19,NOTE_CODE,0xce,0x05, 1799 | 0xc8,0x19,NOTE_CODE,0xc0,0x07, 1800 | 0xd7,0x19,NOTE_CODE,0xce,0x05, 1801 | 0xe6,0x19,NOTE_CODE,0xe2,0x04, 1802 | 0xf5,0x19,NOTE_CODE,0xe0,0x03, 1803 | 0x04,0x1a,NOTE_CODE,0x2c,0x05, 1804 | 0x04,0x1a,NOTE_CODE,0xc0,0x07, 1805 | 0x13,0x1a,NOTE_CODE,0xc0,0x07, 1806 | 0x22,0x1a,NOTE_CODE,0x84,0x06, 1807 | 0x31,0x1a,NOTE_CODE,0x2c,0x05, 1808 | 0x40,0x1a,NOTE_CODE,0x51,0x07, 1809 | 0x4f,0x1a,NOTE_CODE,0x2c,0x05, 1810 | 0x5e,0x1a,NOTE_CODE,0x59,0x04, 1811 | 0x6d,0x1a,NOTE_CODE,0xa8,0x03, 1812 | 0x7c,0x1a,NOTE_CODE,0xe2,0x04, 1813 | 0x7c,0x1a,NOTE_CODE,0x51,0x07, 1814 | 0x8b,0x1a,NOTE_CODE,0x51,0x07, 1815 | 0x9a,0x1a,NOTE_CODE,0x27,0x06, 1816 | 0xa9,0x1a,NOTE_CODE,0xe2,0x04, 1817 | 0xb8,0x1a,NOTE_CODE,0x84,0x06, 1818 | 0xb8,0x1a,NOTE_CODE,0xa8,0x03, 1819 | 0xbf,0x1a,NOTE_CODE,0xe0,0x03, 1820 | 0xc7,0x1a,NOTE_CODE,0xa8,0x03, 1821 | 0xce,0x1a,NOTE_CODE,0x42,0x03, 1822 | 0xd6,0x1a,NOTE_CODE,0xe2,0x04, 1823 | 0xdd,0x1a,NOTE_CODE,0xa8,0x03, 1824 | 0xe5,0x1a,NOTE_CODE,0x71,0x02, 1825 | 0xec,0x1a,NOTE_CODE,0x59,0x04, 1826 | 0xf4,0x1a,NOTE_CODE,0x84,0x06, 1827 | 0xf4,0x1a,NOTE_CODE,0xe0,0x03, 1828 | 0xfb,0x1a,NOTE_CODE,0xc0,0x07, 1829 | 0x03,0x1b,NOTE_CODE,0x51,0x07, 1830 | 0x03,0x1b,NOTE_CODE,0xe2,0x04, 1831 | 0x0a,0x1b,NOTE_CODE,0x84,0x06, 1832 | 0x12,0x1b,NOTE_CODE,0x13,0x03, 1833 | 0x12,0x1b,NOTE_CODE,0xc4,0x09, 1834 | 0x19,0x1b,NOTE_CODE,0x51,0x07, 1835 | 0x21,0x1b,NOTE_CODE,0xe2,0x04, 1836 | 0x21,0x1b,NOTE_CODE,0xe2,0x04, 1837 | 0x28,0x1b,NOTE_CODE,0xb3,0x08, 1838 | 0x30,0x1b,NOTE_CODE,0x84,0x06, 1839 | 0x4e,0x1b,NOTE_CODE,0x27,0x06, 1840 | 0x6c,0x1b,NOTE_CODE,0x84,0x06, 1841 | 0x8a,0x1b,NOTE_CODE,0x51,0x07, 1842 | 0xa8,0x1b,NOTE_CODE,0xc0,0x07, 1843 | 0xc6,0x1b,NOTE_CODE,0x36,0x08, 1844 | 0xe4,0x1b,NOTE_CODE,0xb3,0x08, 1845 | 0x02,0x1c,NOTE_CODE,0x37,0x09, 1846 | 0x20,0x1c,NOTE_CODE,0xc4,0x09, 1847 | 0x4c,0x1d,NOTE_CODE,0x84,0x06, 1848 | 0x6a,0x1d,NOTE_CODE,0xc4,0x09, 1849 | 0x88,0x1d,NOTE_CODE,0xc0,0x07, 1850 | 0xb5,0x1d,NOTE_CODE,0x51,0x07, 1851 | 0xc4,0x1d,NOTE_CODE,0x84,0x06, 1852 | 0xd3,0x1d,NOTE_CODE,0xc0,0x07, 1853 | 0xe2,0x1d,NOTE_CODE,0x51,0x07, 1854 | 0xf1,0x1d,NOTE_CODE,0x84,0x06, 1855 | 0x00,0x1e,NOTE_CODE,0x27,0x06, 1856 | 0x0f,0x1e,NOTE_CODE,0x51,0x07, 1857 | 0x1e,0x1e,NOTE_CODE,0xe2,0x04, 1858 | 0x2d,0x1e,NOTE_CODE,0x27,0x06, 1859 | 0x3c,0x1e,NOTE_CODE,0x84,0x06, 1860 | 0x3c,0x1e,NOTE_CODE,0x84,0x06, 1861 | 0x4b,0x1e,NOTE_CODE,0xe2,0x04, 1862 | 0x5a,0x1e,NOTE_CODE,0xb3,0x08, 1863 | 0x5a,0x1e,NOTE_CODE,0x51,0x07, 1864 | 0x69,0x1e,NOTE_CODE,0xe2,0x04, 1865 | 0x78,0x1e,NOTE_CODE,0xc0,0x07, 1866 | 0x78,0x1e,NOTE_CODE,0xc0,0x07, 1867 | 0x87,0x1e,NOTE_CODE,0x51,0x07, 1868 | 0x8e,0x1e,NOTE_CODE,0x84,0x06, 1869 | 0x96,0x1e,NOTE_CODE,0x51,0x07, 1870 | 0x96,0x1e,NOTE_CODE,0xb3,0x08, 1871 | 0xa5,0x1e,NOTE_CODE,0xe2,0x04, 1872 | 0xb4,0x1e,NOTE_CODE,0x84,0x06, 1873 | 0xb4,0x1e,NOTE_CODE,0xc0,0x07, 1874 | 0xc3,0x1e,NOTE_CODE,0xe2,0x04, 1875 | 0xca,0x1e,NOTE_CODE,0x84,0x06, 1876 | 0xd2,0x1e,NOTE_CODE,0x51,0x07, 1877 | 0xd2,0x1e,NOTE_CODE,0x51,0x07, 1878 | 0xe1,0x1e,NOTE_CODE,0xe2,0x04, 1879 | 0xe8,0x1e,NOTE_CODE,0x51,0x07, 1880 | 0xf0,0x1e,NOTE_CODE,0x84,0x06, 1881 | 0xf0,0x1e,NOTE_CODE,0xc0,0x07, 1882 | 0xff,0x1e,NOTE_CODE,0x51,0x07, 1883 | 0x06,0x1f,NOTE_CODE,0x84,0x06, 1884 | 0x0e,0x1f,NOTE_CODE,0x51,0x07, 1885 | 0x0e,0x1f,NOTE_CODE,0x51,0x07, 1886 | 0x1d,0x1f,NOTE_CODE,0xe2,0x04, 1887 | 0x2c,0x1f,NOTE_CODE,0x84,0x06, 1888 | 0x2c,0x1f,NOTE_CODE,0x84,0x06, 1889 | 0x3b,0x1f,NOTE_CODE,0x2c,0x05, 1890 | 0x3b,0x1f,NOTE_CODE,0xc0,0x07, 1891 | 0x4a,0x1f,NOTE_CODE,0x59,0x04, 1892 | 0x4a,0x1f,NOTE_CODE,0xb3,0x08, 1893 | 0x59,0x1f,NOTE_CODE,0xe2,0x04, 1894 | 0x59,0x1f,NOTE_CODE,0x51,0x07, 1895 | 0x68,0x1f,NOTE_CODE,0x36,0x08, 1896 | 0x68,0x1f,NOTE_CODE,0x42,0x03, 1897 | 0xfe,0x1f,REWIND_CODE}; --------------------------------------------------------------------------------